···173173import type * as SoSprkNotificationRegisterPush from "./types/so/sprk/notification/registerPush.ts";
174174import type * as SoSprkNotificationPutPreferences from "./types/so/sprk/notification/putPreferences.ts";
175175import type * as SoSprkNotificationUpdateSeen from "./types/so/sprk/notification/updateSeen.ts";
176176+import type * as SoSprkNotificationUnregisterPush from "./types/so/sprk/notification/unregisterPush.ts";
176177import type * as SoSprkNotificationListNotifications from "./types/so/sprk/notification/listNotifications.ts";
177178import type * as SoSprkNotificationGetUnreadCount from "./types/so/sprk/notification/getUnreadCount.ts";
178179import type * as SoSprkGraphGetSuggestedFollowsByActor from "./types/so/sprk/graph/getSuggestedFollowsByActor.ts";
···27482749 >,
27492750 ) {
27502751 const nsid = "so.sprk.notification.updateSeen"; // @ts-ignore - dynamically generated
27522752+ return this._server.xrpc.method(nsid, cfg);
27532753+ }
27542754+27552755+ unregisterPush<A extends Auth = void>(
27562756+ cfg: MethodConfigOrHandler<
27572757+ A,
27582758+ SoSprkNotificationUnregisterPush.QueryParams,
27592759+ SoSprkNotificationUnregisterPush.HandlerInput,
27602760+ SoSprkNotificationUnregisterPush.HandlerOutput
27612761+ >,
27622762+ ) {
27632763+ const nsid = "so.sprk.notification.unregisterPush"; // @ts-ignore - dynamically generated
27512764 return this._server.xrpc.method(nsid, cfg);
27522765 }
27532766