Skip to content

Commit

Permalink
recodegen
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Dec 16, 2024
1 parent c4ddbcc commit a8d02b2
Show file tree
Hide file tree
Showing 8 changed files with 1,506 additions and 1,506 deletions.
228 changes: 114 additions & 114 deletions packages/api/src/client/index.ts

Large diffs are not rendered by default.

648 changes: 324 additions & 324 deletions packages/api/src/client/lexicons.ts

Large diffs are not rendered by default.

96 changes: 48 additions & 48 deletions packages/bsky/src/lexicon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ import * as AppBskyFeedDescribeFeedGenerator from './types/app/bsky/feed/describ
import * as AppBskyFeedGetActorFeeds from './types/app/bsky/feed/getActorFeeds'
import * as AppBskyFeedGetActorLikes from './types/app/bsky/feed/getActorLikes'
import * as AppBskyFeedGetAuthorFeed from './types/app/bsky/feed/getAuthorFeed'
import * as AppBskyFeedGetFeed from './types/app/bsky/feed/getFeed'
import * as AppBskyFeedGetFeedGenerator from './types/app/bsky/feed/getFeedGenerator'
import * as AppBskyFeedGetFeedGenerators from './types/app/bsky/feed/getFeedGenerators'
import * as AppBskyFeedGetFeed from './types/app/bsky/feed/getFeed'
import * as AppBskyFeedGetFeedSkeleton from './types/app/bsky/feed/getFeedSkeleton'
import * as AppBskyFeedGetLikes from './types/app/bsky/feed/getLikes'
import * as AppBskyFeedGetListFeed from './types/app/bsky/feed/getListFeed'
import * as AppBskyFeedGetPosts from './types/app/bsky/feed/getPosts'
import * as AppBskyFeedGetPostThread from './types/app/bsky/feed/getPostThread'
import * as AppBskyFeedGetPosts from './types/app/bsky/feed/getPosts'
import * as AppBskyFeedGetQuotes from './types/app/bsky/feed/getQuotes'
import * as AppBskyFeedGetRepostedBy from './types/app/bsky/feed/getRepostedBy'
import * as AppBskyFeedGetSuggestedFeeds from './types/app/bsky/feed/getSuggestedFeeds'
Expand All @@ -114,8 +114,8 @@ import * as AppBskyGraphGetBlocks from './types/app/bsky/graph/getBlocks'
import * as AppBskyGraphGetFollowers from './types/app/bsky/graph/getFollowers'
import * as AppBskyGraphGetFollows from './types/app/bsky/graph/getFollows'
import * as AppBskyGraphGetKnownFollowers from './types/app/bsky/graph/getKnownFollowers'
import * as AppBskyGraphGetListBlocks from './types/app/bsky/graph/getListBlocks'
import * as AppBskyGraphGetList from './types/app/bsky/graph/getList'
import * as AppBskyGraphGetListBlocks from './types/app/bsky/graph/getListBlocks'
import * as AppBskyGraphGetListMutes from './types/app/bsky/graph/getListMutes'
import * as AppBskyGraphGetLists from './types/app/bsky/graph/getLists'
import * as AppBskyGraphGetMutes from './types/app/bsky/graph/getMutes'
Expand Down Expand Up @@ -150,15 +150,15 @@ import * as AppBskyVideoUploadVideo from './types/app/bsky/video/uploadVideo'
import * as ChatBskyActorDeleteAccount from './types/chat/bsky/actor/deleteAccount'
import * as ChatBskyActorExportAccountData from './types/chat/bsky/actor/exportAccountData'
import * as ChatBskyConvoDeleteMessageForSelf from './types/chat/bsky/convo/deleteMessageForSelf'
import * as ChatBskyConvoGetConvoForMembers from './types/chat/bsky/convo/getConvoForMembers'
import * as ChatBskyConvoGetConvo from './types/chat/bsky/convo/getConvo'
import * as ChatBskyConvoGetConvoForMembers from './types/chat/bsky/convo/getConvoForMembers'
import * as ChatBskyConvoGetLog from './types/chat/bsky/convo/getLog'
import * as ChatBskyConvoGetMessages from './types/chat/bsky/convo/getMessages'
import * as ChatBskyConvoLeaveConvo from './types/chat/bsky/convo/leaveConvo'
import * as ChatBskyConvoListConvos from './types/chat/bsky/convo/listConvos'
import * as ChatBskyConvoMuteConvo from './types/chat/bsky/convo/muteConvo'
import * as ChatBskyConvoSendMessageBatch from './types/chat/bsky/convo/sendMessageBatch'
import * as ChatBskyConvoSendMessage from './types/chat/bsky/convo/sendMessage'
import * as ChatBskyConvoSendMessageBatch from './types/chat/bsky/convo/sendMessageBatch'
import * as ChatBskyConvoUnmuteConvo from './types/chat/bsky/convo/unmuteConvo'
import * as ChatBskyConvoUpdateRead from './types/chat/bsky/convo/updateRead'
import * as ChatBskyModerationGetActorMetadata from './types/chat/bsky/moderation/getActorMetadata'
Expand Down Expand Up @@ -1319,6 +1319,17 @@ export class AppBskyFeedNS {
return this._server.xrpc.method(nsid, cfg)
}

getFeed<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
AppBskyFeedGetFeed.Handler<ExtractAuth<AV>>,
AppBskyFeedGetFeed.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'app.bsky.feed.getFeed' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

getFeedGenerator<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
Expand All @@ -1341,17 +1352,6 @@ export class AppBskyFeedNS {
return this._server.xrpc.method(nsid, cfg)
}

getFeed<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
AppBskyFeedGetFeed.Handler<ExtractAuth<AV>>,
AppBskyFeedGetFeed.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'app.bsky.feed.getFeed' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

getFeedSkeleton<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
Expand Down Expand Up @@ -1385,25 +1385,25 @@ export class AppBskyFeedNS {
return this._server.xrpc.method(nsid, cfg)
}

getPosts<AV extends AuthVerifier>(
getPostThread<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
AppBskyFeedGetPosts.Handler<ExtractAuth<AV>>,
AppBskyFeedGetPosts.HandlerReqCtx<ExtractAuth<AV>>
AppBskyFeedGetPostThread.Handler<ExtractAuth<AV>>,
AppBskyFeedGetPostThread.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'app.bsky.feed.getPosts' // @ts-ignore
const nsid = 'app.bsky.feed.getPostThread' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

getPostThread<AV extends AuthVerifier>(
getPosts<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
AppBskyFeedGetPostThread.Handler<ExtractAuth<AV>>,
AppBskyFeedGetPostThread.HandlerReqCtx<ExtractAuth<AV>>
AppBskyFeedGetPosts.Handler<ExtractAuth<AV>>,
AppBskyFeedGetPosts.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'app.bsky.feed.getPostThread' // @ts-ignore
const nsid = 'app.bsky.feed.getPosts' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

Expand Down Expand Up @@ -1536,25 +1536,25 @@ export class AppBskyGraphNS {
return this._server.xrpc.method(nsid, cfg)
}

getListBlocks<AV extends AuthVerifier>(
getList<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
AppBskyGraphGetListBlocks.Handler<ExtractAuth<AV>>,
AppBskyGraphGetListBlocks.HandlerReqCtx<ExtractAuth<AV>>
AppBskyGraphGetList.Handler<ExtractAuth<AV>>,
AppBskyGraphGetList.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'app.bsky.graph.getListBlocks' // @ts-ignore
const nsid = 'app.bsky.graph.getList' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

getList<AV extends AuthVerifier>(
getListBlocks<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
AppBskyGraphGetList.Handler<ExtractAuth<AV>>,
AppBskyGraphGetList.HandlerReqCtx<ExtractAuth<AV>>
AppBskyGraphGetListBlocks.Handler<ExtractAuth<AV>>,
AppBskyGraphGetListBlocks.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'app.bsky.graph.getList' // @ts-ignore
const nsid = 'app.bsky.graph.getListBlocks' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

Expand Down Expand Up @@ -2012,25 +2012,25 @@ export class ChatBskyConvoNS {
return this._server.xrpc.method(nsid, cfg)
}

getConvoForMembers<AV extends AuthVerifier>(
getConvo<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
ChatBskyConvoGetConvoForMembers.Handler<ExtractAuth<AV>>,
ChatBskyConvoGetConvoForMembers.HandlerReqCtx<ExtractAuth<AV>>
ChatBskyConvoGetConvo.Handler<ExtractAuth<AV>>,
ChatBskyConvoGetConvo.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'chat.bsky.convo.getConvoForMembers' // @ts-ignore
const nsid = 'chat.bsky.convo.getConvo' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

getConvo<AV extends AuthVerifier>(
getConvoForMembers<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
ChatBskyConvoGetConvo.Handler<ExtractAuth<AV>>,
ChatBskyConvoGetConvo.HandlerReqCtx<ExtractAuth<AV>>
ChatBskyConvoGetConvoForMembers.Handler<ExtractAuth<AV>>,
ChatBskyConvoGetConvoForMembers.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'chat.bsky.convo.getConvo' // @ts-ignore
const nsid = 'chat.bsky.convo.getConvoForMembers' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

Expand Down Expand Up @@ -2089,25 +2089,25 @@ export class ChatBskyConvoNS {
return this._server.xrpc.method(nsid, cfg)
}

sendMessageBatch<AV extends AuthVerifier>(
sendMessage<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
ChatBskyConvoSendMessageBatch.Handler<ExtractAuth<AV>>,
ChatBskyConvoSendMessageBatch.HandlerReqCtx<ExtractAuth<AV>>
ChatBskyConvoSendMessage.Handler<ExtractAuth<AV>>,
ChatBskyConvoSendMessage.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'chat.bsky.convo.sendMessageBatch' // @ts-ignore
const nsid = 'chat.bsky.convo.sendMessage' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

sendMessage<AV extends AuthVerifier>(
sendMessageBatch<AV extends AuthVerifier>(
cfg: ConfigOf<
AV,
ChatBskyConvoSendMessage.Handler<ExtractAuth<AV>>,
ChatBskyConvoSendMessage.HandlerReqCtx<ExtractAuth<AV>>
ChatBskyConvoSendMessageBatch.Handler<ExtractAuth<AV>>,
ChatBskyConvoSendMessageBatch.HandlerReqCtx<ExtractAuth<AV>>
>,
) {
const nsid = 'chat.bsky.convo.sendMessage' // @ts-ignore
const nsid = 'chat.bsky.convo.sendMessageBatch' // @ts-ignore
return this._server.xrpc.method(nsid, cfg)
}

Expand Down
Loading

0 comments on commit a8d02b2

Please sign in to comment.