···216216import type * as SoSprkActorGetProfiles from "./types/so/sprk/actor/getProfiles.ts";
217217import type * as SoSprkActorGetPreferences from "./types/so/sprk/actor/getPreferences.ts";
218218import type * as SoSprkStoryGetTimeline from "./types/so/sprk/story/getTimeline.ts";
219219+import type * as SoSprkStoryGetArchive from "./types/so/sprk/story/getArchive.ts";
219220import type * as SoSprkStoryGetStories from "./types/so/sprk/story/getStories.ts";
220221import type * as SoSprkLabelerGetServices from "./types/so/sprk/labeler/getServices.ts";
221222import type * as ComAtprotoTempDereferenceScope from "./types/com/atproto/temp/dereferenceScope.ts";
···33133314 >,
33143315 ) {
33153316 const nsid = "so.sprk.story.getTimeline"; // @ts-ignore - dynamically generated
33173317+ return this._server.xrpc.method(nsid, cfg);
33183318+ }
33193319+33203320+ getArchive<A extends Auth = void>(
33213321+ cfg: MethodConfigOrHandler<
33223322+ A,
33233323+ SoSprkStoryGetArchive.QueryParams,
33243324+ SoSprkStoryGetArchive.HandlerInput,
33253325+ SoSprkStoryGetArchive.HandlerOutput
33263326+ >,
33273327+ ) {
33283328+ const nsid = "so.sprk.story.getArchive"; // @ts-ignore - dynamically generated
33163329 return this._server.xrpc.method(nsid, cfg);
33173330 }
33183331