@atproto/bsky 0.0.176 → 0.0.178
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist/api/app/bsky/graph/getList.js +1 -6
- package/dist/api/app/bsky/graph/getList.js.map +1 -1
- package/dist/api/app/bsky/graph/getLists.d.ts.map +1 -1
- package/dist/api/app/bsky/graph/getLists.js +16 -4
- package/dist/api/app/bsky/graph/getLists.js.map +1 -1
- package/dist/api/app/bsky/graph/getListsWithMembership.d.ts +4 -0
- package/dist/api/app/bsky/graph/getListsWithMembership.d.ts.map +1 -0
- package/dist/api/app/bsky/graph/getListsWithMembership.js +88 -0
- package/dist/api/app/bsky/graph/getListsWithMembership.js.map +1 -0
- package/dist/api/app/bsky/graph/getStarterPacksWithMembership.d.ts +4 -0
- package/dist/api/app/bsky/graph/getStarterPacksWithMembership.d.ts.map +1 -0
- package/dist/api/app/bsky/graph/getStarterPacksWithMembership.js +72 -0
- package/dist/api/app/bsky/graph/getStarterPacksWithMembership.js.map +1 -0
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/index.js +4 -0
- package/dist/api/index.js.map +1 -1
- package/dist/hydration/graph.d.ts +4 -0
- package/dist/hydration/graph.d.ts.map +1 -1
- package/dist/hydration/graph.js.map +1 -1
- package/dist/hydration/hydrator.d.ts +3 -1
- package/dist/hydration/hydrator.d.ts.map +1 -1
- package/dist/hydration/hydrator.js +27 -0
- package/dist/hydration/hydrator.js.map +1 -1
- package/dist/lexicon/index.d.ts +234 -230
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +682 -674
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +17073 -16785
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +9126 -8980
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/graph/getLists.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/graph/getLists.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.d.ts +40 -0
- package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.js +16 -0
- package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.js.map +1 -0
- package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.d.ts +38 -0
- package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.js +16 -0
- package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.js.map +1 -0
- package/dist/views/index.d.ts +2 -1
- package/dist/views/index.d.ts.map +1 -1
- package/dist/views/index.js +6 -0
- package/dist/views/index.js.map +1 -1
- package/package.json +11 -11
- package/src/api/app/bsky/graph/getList.ts +3 -5
- package/src/api/app/bsky/graph/getLists.ts +18 -5
- package/src/api/app/bsky/graph/getListsWithMembership.ts +139 -0
- package/src/api/app/bsky/graph/getStarterPacksWithMembership.ts +135 -0
- package/src/api/index.ts +4 -0
- package/src/hydration/graph.ts +8 -0
- package/src/hydration/hydrator.ts +43 -0
- package/src/lexicon/index.ts +1247 -1221
- package/src/lexicon/lexicons.ts +9494 -9341
- package/src/lexicon/types/app/bsky/graph/getLists.ts +2 -0
- package/src/lexicon/types/app/bsky/graph/getListsWithMembership.ts +63 -0
- package/src/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.ts +65 -0
- package/src/views/index.ts +11 -0
- package/tests/views/__snapshots__/lists.test.ts.snap +160 -8
- package/tests/views/lists.test.ts +270 -36
- package/tests/views/starter-packs.test.ts +132 -3
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/lexicon/index.d.ts
CHANGED
|
@@ -2,89 +2,6 @@
|
|
|
2
2
|
* GENERATED CODE - DO NOT MODIFY
|
|
3
3
|
*/
|
|
4
4
|
import { type Auth, type Options as XrpcOptions, Server as XrpcServer, type StreamConfigOrHandler, type MethodConfigOrHandler } from '@atproto/xrpc-server';
|
|
5
|
-
import * as ComAtprotoAdminDeleteAccount from './types/com/atproto/admin/deleteAccount.js';
|
|
6
|
-
import * as ComAtprotoAdminDisableAccountInvites from './types/com/atproto/admin/disableAccountInvites.js';
|
|
7
|
-
import * as ComAtprotoAdminDisableInviteCodes from './types/com/atproto/admin/disableInviteCodes.js';
|
|
8
|
-
import * as ComAtprotoAdminEnableAccountInvites from './types/com/atproto/admin/enableAccountInvites.js';
|
|
9
|
-
import * as ComAtprotoAdminGetAccountInfo from './types/com/atproto/admin/getAccountInfo.js';
|
|
10
|
-
import * as ComAtprotoAdminGetAccountInfos from './types/com/atproto/admin/getAccountInfos.js';
|
|
11
|
-
import * as ComAtprotoAdminGetInviteCodes from './types/com/atproto/admin/getInviteCodes.js';
|
|
12
|
-
import * as ComAtprotoAdminGetSubjectStatus from './types/com/atproto/admin/getSubjectStatus.js';
|
|
13
|
-
import * as ComAtprotoAdminSearchAccounts from './types/com/atproto/admin/searchAccounts.js';
|
|
14
|
-
import * as ComAtprotoAdminSendEmail from './types/com/atproto/admin/sendEmail.js';
|
|
15
|
-
import * as ComAtprotoAdminUpdateAccountEmail from './types/com/atproto/admin/updateAccountEmail.js';
|
|
16
|
-
import * as ComAtprotoAdminUpdateAccountHandle from './types/com/atproto/admin/updateAccountHandle.js';
|
|
17
|
-
import * as ComAtprotoAdminUpdateAccountPassword from './types/com/atproto/admin/updateAccountPassword.js';
|
|
18
|
-
import * as ComAtprotoAdminUpdateAccountSigningKey from './types/com/atproto/admin/updateAccountSigningKey.js';
|
|
19
|
-
import * as ComAtprotoAdminUpdateSubjectStatus from './types/com/atproto/admin/updateSubjectStatus.js';
|
|
20
|
-
import * as ComAtprotoIdentityGetRecommendedDidCredentials from './types/com/atproto/identity/getRecommendedDidCredentials.js';
|
|
21
|
-
import * as ComAtprotoIdentityRefreshIdentity from './types/com/atproto/identity/refreshIdentity.js';
|
|
22
|
-
import * as ComAtprotoIdentityRequestPlcOperationSignature from './types/com/atproto/identity/requestPlcOperationSignature.js';
|
|
23
|
-
import * as ComAtprotoIdentityResolveDid from './types/com/atproto/identity/resolveDid.js';
|
|
24
|
-
import * as ComAtprotoIdentityResolveHandle from './types/com/atproto/identity/resolveHandle.js';
|
|
25
|
-
import * as ComAtprotoIdentityResolveIdentity from './types/com/atproto/identity/resolveIdentity.js';
|
|
26
|
-
import * as ComAtprotoIdentitySignPlcOperation from './types/com/atproto/identity/signPlcOperation.js';
|
|
27
|
-
import * as ComAtprotoIdentitySubmitPlcOperation from './types/com/atproto/identity/submitPlcOperation.js';
|
|
28
|
-
import * as ComAtprotoIdentityUpdateHandle from './types/com/atproto/identity/updateHandle.js';
|
|
29
|
-
import * as ComAtprotoLabelQueryLabels from './types/com/atproto/label/queryLabels.js';
|
|
30
|
-
import * as ComAtprotoLabelSubscribeLabels from './types/com/atproto/label/subscribeLabels.js';
|
|
31
|
-
import * as ComAtprotoModerationCreateReport from './types/com/atproto/moderation/createReport.js';
|
|
32
|
-
import * as ComAtprotoRepoApplyWrites from './types/com/atproto/repo/applyWrites.js';
|
|
33
|
-
import * as ComAtprotoRepoCreateRecord from './types/com/atproto/repo/createRecord.js';
|
|
34
|
-
import * as ComAtprotoRepoDeleteRecord from './types/com/atproto/repo/deleteRecord.js';
|
|
35
|
-
import * as ComAtprotoRepoDescribeRepo from './types/com/atproto/repo/describeRepo.js';
|
|
36
|
-
import * as ComAtprotoRepoGetRecord from './types/com/atproto/repo/getRecord.js';
|
|
37
|
-
import * as ComAtprotoRepoImportRepo from './types/com/atproto/repo/importRepo.js';
|
|
38
|
-
import * as ComAtprotoRepoListMissingBlobs from './types/com/atproto/repo/listMissingBlobs.js';
|
|
39
|
-
import * as ComAtprotoRepoListRecords from './types/com/atproto/repo/listRecords.js';
|
|
40
|
-
import * as ComAtprotoRepoPutRecord from './types/com/atproto/repo/putRecord.js';
|
|
41
|
-
import * as ComAtprotoRepoUploadBlob from './types/com/atproto/repo/uploadBlob.js';
|
|
42
|
-
import * as ComAtprotoServerActivateAccount from './types/com/atproto/server/activateAccount.js';
|
|
43
|
-
import * as ComAtprotoServerCheckAccountStatus from './types/com/atproto/server/checkAccountStatus.js';
|
|
44
|
-
import * as ComAtprotoServerConfirmEmail from './types/com/atproto/server/confirmEmail.js';
|
|
45
|
-
import * as ComAtprotoServerCreateAccount from './types/com/atproto/server/createAccount.js';
|
|
46
|
-
import * as ComAtprotoServerCreateAppPassword from './types/com/atproto/server/createAppPassword.js';
|
|
47
|
-
import * as ComAtprotoServerCreateInviteCode from './types/com/atproto/server/createInviteCode.js';
|
|
48
|
-
import * as ComAtprotoServerCreateInviteCodes from './types/com/atproto/server/createInviteCodes.js';
|
|
49
|
-
import * as ComAtprotoServerCreateSession from './types/com/atproto/server/createSession.js';
|
|
50
|
-
import * as ComAtprotoServerDeactivateAccount from './types/com/atproto/server/deactivateAccount.js';
|
|
51
|
-
import * as ComAtprotoServerDeleteAccount from './types/com/atproto/server/deleteAccount.js';
|
|
52
|
-
import * as ComAtprotoServerDeleteSession from './types/com/atproto/server/deleteSession.js';
|
|
53
|
-
import * as ComAtprotoServerDescribeServer from './types/com/atproto/server/describeServer.js';
|
|
54
|
-
import * as ComAtprotoServerGetAccountInviteCodes from './types/com/atproto/server/getAccountInviteCodes.js';
|
|
55
|
-
import * as ComAtprotoServerGetServiceAuth from './types/com/atproto/server/getServiceAuth.js';
|
|
56
|
-
import * as ComAtprotoServerGetSession from './types/com/atproto/server/getSession.js';
|
|
57
|
-
import * as ComAtprotoServerListAppPasswords from './types/com/atproto/server/listAppPasswords.js';
|
|
58
|
-
import * as ComAtprotoServerRefreshSession from './types/com/atproto/server/refreshSession.js';
|
|
59
|
-
import * as ComAtprotoServerRequestAccountDelete from './types/com/atproto/server/requestAccountDelete.js';
|
|
60
|
-
import * as ComAtprotoServerRequestEmailConfirmation from './types/com/atproto/server/requestEmailConfirmation.js';
|
|
61
|
-
import * as ComAtprotoServerRequestEmailUpdate from './types/com/atproto/server/requestEmailUpdate.js';
|
|
62
|
-
import * as ComAtprotoServerRequestPasswordReset from './types/com/atproto/server/requestPasswordReset.js';
|
|
63
|
-
import * as ComAtprotoServerReserveSigningKey from './types/com/atproto/server/reserveSigningKey.js';
|
|
64
|
-
import * as ComAtprotoServerResetPassword from './types/com/atproto/server/resetPassword.js';
|
|
65
|
-
import * as ComAtprotoServerRevokeAppPassword from './types/com/atproto/server/revokeAppPassword.js';
|
|
66
|
-
import * as ComAtprotoServerUpdateEmail from './types/com/atproto/server/updateEmail.js';
|
|
67
|
-
import * as ComAtprotoSyncGetBlob from './types/com/atproto/sync/getBlob.js';
|
|
68
|
-
import * as ComAtprotoSyncGetBlocks from './types/com/atproto/sync/getBlocks.js';
|
|
69
|
-
import * as ComAtprotoSyncGetCheckout from './types/com/atproto/sync/getCheckout.js';
|
|
70
|
-
import * as ComAtprotoSyncGetHead from './types/com/atproto/sync/getHead.js';
|
|
71
|
-
import * as ComAtprotoSyncGetHostStatus from './types/com/atproto/sync/getHostStatus.js';
|
|
72
|
-
import * as ComAtprotoSyncGetLatestCommit from './types/com/atproto/sync/getLatestCommit.js';
|
|
73
|
-
import * as ComAtprotoSyncGetRecord from './types/com/atproto/sync/getRecord.js';
|
|
74
|
-
import * as ComAtprotoSyncGetRepo from './types/com/atproto/sync/getRepo.js';
|
|
75
|
-
import * as ComAtprotoSyncGetRepoStatus from './types/com/atproto/sync/getRepoStatus.js';
|
|
76
|
-
import * as ComAtprotoSyncListBlobs from './types/com/atproto/sync/listBlobs.js';
|
|
77
|
-
import * as ComAtprotoSyncListHosts from './types/com/atproto/sync/listHosts.js';
|
|
78
|
-
import * as ComAtprotoSyncListRepos from './types/com/atproto/sync/listRepos.js';
|
|
79
|
-
import * as ComAtprotoSyncListReposByCollection from './types/com/atproto/sync/listReposByCollection.js';
|
|
80
|
-
import * as ComAtprotoSyncNotifyOfUpdate from './types/com/atproto/sync/notifyOfUpdate.js';
|
|
81
|
-
import * as ComAtprotoSyncRequestCrawl from './types/com/atproto/sync/requestCrawl.js';
|
|
82
|
-
import * as ComAtprotoSyncSubscribeRepos from './types/com/atproto/sync/subscribeRepos.js';
|
|
83
|
-
import * as ComAtprotoTempAddReservedHandle from './types/com/atproto/temp/addReservedHandle.js';
|
|
84
|
-
import * as ComAtprotoTempCheckHandleAvailability from './types/com/atproto/temp/checkHandleAvailability.js';
|
|
85
|
-
import * as ComAtprotoTempCheckSignupQueue from './types/com/atproto/temp/checkSignupQueue.js';
|
|
86
|
-
import * as ComAtprotoTempFetchLabels from './types/com/atproto/temp/fetchLabels.js';
|
|
87
|
-
import * as ComAtprotoTempRequestPhoneVerification from './types/com/atproto/temp/requestPhoneVerification.js';
|
|
88
5
|
import * as AppBskyActorGetPreferences from './types/app/bsky/actor/getPreferences.js';
|
|
89
6
|
import * as AppBskyActorGetProfile from './types/app/bsky/actor/getProfile.js';
|
|
90
7
|
import * as AppBskyActorGetProfiles from './types/app/bsky/actor/getProfiles.js';
|
|
@@ -119,10 +36,12 @@ import * as AppBskyGraphGetList from './types/app/bsky/graph/getList.js';
|
|
|
119
36
|
import * as AppBskyGraphGetListBlocks from './types/app/bsky/graph/getListBlocks.js';
|
|
120
37
|
import * as AppBskyGraphGetListMutes from './types/app/bsky/graph/getListMutes.js';
|
|
121
38
|
import * as AppBskyGraphGetLists from './types/app/bsky/graph/getLists.js';
|
|
39
|
+
import * as AppBskyGraphGetListsWithMembership from './types/app/bsky/graph/getListsWithMembership.js';
|
|
122
40
|
import * as AppBskyGraphGetMutes from './types/app/bsky/graph/getMutes.js';
|
|
123
41
|
import * as AppBskyGraphGetRelationships from './types/app/bsky/graph/getRelationships.js';
|
|
124
42
|
import * as AppBskyGraphGetStarterPack from './types/app/bsky/graph/getStarterPack.js';
|
|
125
43
|
import * as AppBskyGraphGetStarterPacks from './types/app/bsky/graph/getStarterPacks.js';
|
|
44
|
+
import * as AppBskyGraphGetStarterPacksWithMembership from './types/app/bsky/graph/getStarterPacksWithMembership.js';
|
|
126
45
|
import * as AppBskyGraphGetSuggestedFollowsByActor from './types/app/bsky/graph/getSuggestedFollowsByActor.js';
|
|
127
46
|
import * as AppBskyGraphMuteActor from './types/app/bsky/graph/muteActor.js';
|
|
128
47
|
import * as AppBskyGraphMuteActorList from './types/app/bsky/graph/muteActorList.js';
|
|
@@ -187,15 +106,89 @@ import * as ChatBskyConvoUpdateRead from './types/chat/bsky/convo/updateRead.js'
|
|
|
187
106
|
import * as ChatBskyModerationGetActorMetadata from './types/chat/bsky/moderation/getActorMetadata.js';
|
|
188
107
|
import * as ChatBskyModerationGetMessageContext from './types/chat/bsky/moderation/getMessageContext.js';
|
|
189
108
|
import * as ChatBskyModerationUpdateActorAccess from './types/chat/bsky/moderation/updateActorAccess.js';
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
109
|
+
import * as ComAtprotoAdminDeleteAccount from './types/com/atproto/admin/deleteAccount.js';
|
|
110
|
+
import * as ComAtprotoAdminDisableAccountInvites from './types/com/atproto/admin/disableAccountInvites.js';
|
|
111
|
+
import * as ComAtprotoAdminDisableInviteCodes from './types/com/atproto/admin/disableInviteCodes.js';
|
|
112
|
+
import * as ComAtprotoAdminEnableAccountInvites from './types/com/atproto/admin/enableAccountInvites.js';
|
|
113
|
+
import * as ComAtprotoAdminGetAccountInfo from './types/com/atproto/admin/getAccountInfo.js';
|
|
114
|
+
import * as ComAtprotoAdminGetAccountInfos from './types/com/atproto/admin/getAccountInfos.js';
|
|
115
|
+
import * as ComAtprotoAdminGetInviteCodes from './types/com/atproto/admin/getInviteCodes.js';
|
|
116
|
+
import * as ComAtprotoAdminGetSubjectStatus from './types/com/atproto/admin/getSubjectStatus.js';
|
|
117
|
+
import * as ComAtprotoAdminSearchAccounts from './types/com/atproto/admin/searchAccounts.js';
|
|
118
|
+
import * as ComAtprotoAdminSendEmail from './types/com/atproto/admin/sendEmail.js';
|
|
119
|
+
import * as ComAtprotoAdminUpdateAccountEmail from './types/com/atproto/admin/updateAccountEmail.js';
|
|
120
|
+
import * as ComAtprotoAdminUpdateAccountHandle from './types/com/atproto/admin/updateAccountHandle.js';
|
|
121
|
+
import * as ComAtprotoAdminUpdateAccountPassword from './types/com/atproto/admin/updateAccountPassword.js';
|
|
122
|
+
import * as ComAtprotoAdminUpdateAccountSigningKey from './types/com/atproto/admin/updateAccountSigningKey.js';
|
|
123
|
+
import * as ComAtprotoAdminUpdateSubjectStatus from './types/com/atproto/admin/updateSubjectStatus.js';
|
|
124
|
+
import * as ComAtprotoIdentityGetRecommendedDidCredentials from './types/com/atproto/identity/getRecommendedDidCredentials.js';
|
|
125
|
+
import * as ComAtprotoIdentityRefreshIdentity from './types/com/atproto/identity/refreshIdentity.js';
|
|
126
|
+
import * as ComAtprotoIdentityRequestPlcOperationSignature from './types/com/atproto/identity/requestPlcOperationSignature.js';
|
|
127
|
+
import * as ComAtprotoIdentityResolveDid from './types/com/atproto/identity/resolveDid.js';
|
|
128
|
+
import * as ComAtprotoIdentityResolveHandle from './types/com/atproto/identity/resolveHandle.js';
|
|
129
|
+
import * as ComAtprotoIdentityResolveIdentity from './types/com/atproto/identity/resolveIdentity.js';
|
|
130
|
+
import * as ComAtprotoIdentitySignPlcOperation from './types/com/atproto/identity/signPlcOperation.js';
|
|
131
|
+
import * as ComAtprotoIdentitySubmitPlcOperation from './types/com/atproto/identity/submitPlcOperation.js';
|
|
132
|
+
import * as ComAtprotoIdentityUpdateHandle from './types/com/atproto/identity/updateHandle.js';
|
|
133
|
+
import * as ComAtprotoLabelQueryLabels from './types/com/atproto/label/queryLabels.js';
|
|
134
|
+
import * as ComAtprotoLabelSubscribeLabels from './types/com/atproto/label/subscribeLabels.js';
|
|
135
|
+
import * as ComAtprotoModerationCreateReport from './types/com/atproto/moderation/createReport.js';
|
|
136
|
+
import * as ComAtprotoRepoApplyWrites from './types/com/atproto/repo/applyWrites.js';
|
|
137
|
+
import * as ComAtprotoRepoCreateRecord from './types/com/atproto/repo/createRecord.js';
|
|
138
|
+
import * as ComAtprotoRepoDeleteRecord from './types/com/atproto/repo/deleteRecord.js';
|
|
139
|
+
import * as ComAtprotoRepoDescribeRepo from './types/com/atproto/repo/describeRepo.js';
|
|
140
|
+
import * as ComAtprotoRepoGetRecord from './types/com/atproto/repo/getRecord.js';
|
|
141
|
+
import * as ComAtprotoRepoImportRepo from './types/com/atproto/repo/importRepo.js';
|
|
142
|
+
import * as ComAtprotoRepoListMissingBlobs from './types/com/atproto/repo/listMissingBlobs.js';
|
|
143
|
+
import * as ComAtprotoRepoListRecords from './types/com/atproto/repo/listRecords.js';
|
|
144
|
+
import * as ComAtprotoRepoPutRecord from './types/com/atproto/repo/putRecord.js';
|
|
145
|
+
import * as ComAtprotoRepoUploadBlob from './types/com/atproto/repo/uploadBlob.js';
|
|
146
|
+
import * as ComAtprotoServerActivateAccount from './types/com/atproto/server/activateAccount.js';
|
|
147
|
+
import * as ComAtprotoServerCheckAccountStatus from './types/com/atproto/server/checkAccountStatus.js';
|
|
148
|
+
import * as ComAtprotoServerConfirmEmail from './types/com/atproto/server/confirmEmail.js';
|
|
149
|
+
import * as ComAtprotoServerCreateAccount from './types/com/atproto/server/createAccount.js';
|
|
150
|
+
import * as ComAtprotoServerCreateAppPassword from './types/com/atproto/server/createAppPassword.js';
|
|
151
|
+
import * as ComAtprotoServerCreateInviteCode from './types/com/atproto/server/createInviteCode.js';
|
|
152
|
+
import * as ComAtprotoServerCreateInviteCodes from './types/com/atproto/server/createInviteCodes.js';
|
|
153
|
+
import * as ComAtprotoServerCreateSession from './types/com/atproto/server/createSession.js';
|
|
154
|
+
import * as ComAtprotoServerDeactivateAccount from './types/com/atproto/server/deactivateAccount.js';
|
|
155
|
+
import * as ComAtprotoServerDeleteAccount from './types/com/atproto/server/deleteAccount.js';
|
|
156
|
+
import * as ComAtprotoServerDeleteSession from './types/com/atproto/server/deleteSession.js';
|
|
157
|
+
import * as ComAtprotoServerDescribeServer from './types/com/atproto/server/describeServer.js';
|
|
158
|
+
import * as ComAtprotoServerGetAccountInviteCodes from './types/com/atproto/server/getAccountInviteCodes.js';
|
|
159
|
+
import * as ComAtprotoServerGetServiceAuth from './types/com/atproto/server/getServiceAuth.js';
|
|
160
|
+
import * as ComAtprotoServerGetSession from './types/com/atproto/server/getSession.js';
|
|
161
|
+
import * as ComAtprotoServerListAppPasswords from './types/com/atproto/server/listAppPasswords.js';
|
|
162
|
+
import * as ComAtprotoServerRefreshSession from './types/com/atproto/server/refreshSession.js';
|
|
163
|
+
import * as ComAtprotoServerRequestAccountDelete from './types/com/atproto/server/requestAccountDelete.js';
|
|
164
|
+
import * as ComAtprotoServerRequestEmailConfirmation from './types/com/atproto/server/requestEmailConfirmation.js';
|
|
165
|
+
import * as ComAtprotoServerRequestEmailUpdate from './types/com/atproto/server/requestEmailUpdate.js';
|
|
166
|
+
import * as ComAtprotoServerRequestPasswordReset from './types/com/atproto/server/requestPasswordReset.js';
|
|
167
|
+
import * as ComAtprotoServerReserveSigningKey from './types/com/atproto/server/reserveSigningKey.js';
|
|
168
|
+
import * as ComAtprotoServerResetPassword from './types/com/atproto/server/resetPassword.js';
|
|
169
|
+
import * as ComAtprotoServerRevokeAppPassword from './types/com/atproto/server/revokeAppPassword.js';
|
|
170
|
+
import * as ComAtprotoServerUpdateEmail from './types/com/atproto/server/updateEmail.js';
|
|
171
|
+
import * as ComAtprotoSyncGetBlob from './types/com/atproto/sync/getBlob.js';
|
|
172
|
+
import * as ComAtprotoSyncGetBlocks from './types/com/atproto/sync/getBlocks.js';
|
|
173
|
+
import * as ComAtprotoSyncGetCheckout from './types/com/atproto/sync/getCheckout.js';
|
|
174
|
+
import * as ComAtprotoSyncGetHead from './types/com/atproto/sync/getHead.js';
|
|
175
|
+
import * as ComAtprotoSyncGetHostStatus from './types/com/atproto/sync/getHostStatus.js';
|
|
176
|
+
import * as ComAtprotoSyncGetLatestCommit from './types/com/atproto/sync/getLatestCommit.js';
|
|
177
|
+
import * as ComAtprotoSyncGetRecord from './types/com/atproto/sync/getRecord.js';
|
|
178
|
+
import * as ComAtprotoSyncGetRepo from './types/com/atproto/sync/getRepo.js';
|
|
179
|
+
import * as ComAtprotoSyncGetRepoStatus from './types/com/atproto/sync/getRepoStatus.js';
|
|
180
|
+
import * as ComAtprotoSyncListBlobs from './types/com/atproto/sync/listBlobs.js';
|
|
181
|
+
import * as ComAtprotoSyncListHosts from './types/com/atproto/sync/listHosts.js';
|
|
182
|
+
import * as ComAtprotoSyncListRepos from './types/com/atproto/sync/listRepos.js';
|
|
183
|
+
import * as ComAtprotoSyncListReposByCollection from './types/com/atproto/sync/listReposByCollection.js';
|
|
184
|
+
import * as ComAtprotoSyncNotifyOfUpdate from './types/com/atproto/sync/notifyOfUpdate.js';
|
|
185
|
+
import * as ComAtprotoSyncRequestCrawl from './types/com/atproto/sync/requestCrawl.js';
|
|
186
|
+
import * as ComAtprotoSyncSubscribeRepos from './types/com/atproto/sync/subscribeRepos.js';
|
|
187
|
+
import * as ComAtprotoTempAddReservedHandle from './types/com/atproto/temp/addReservedHandle.js';
|
|
188
|
+
import * as ComAtprotoTempCheckHandleAvailability from './types/com/atproto/temp/checkHandleAvailability.js';
|
|
189
|
+
import * as ComAtprotoTempCheckSignupQueue from './types/com/atproto/temp/checkSignupQueue.js';
|
|
190
|
+
import * as ComAtprotoTempFetchLabels from './types/com/atproto/temp/fetchLabels.js';
|
|
191
|
+
import * as ComAtprotoTempRequestPhoneVerification from './types/com/atproto/temp/requestPhoneVerification.js';
|
|
199
192
|
export declare const APP_BSKY_ACTOR: {
|
|
200
193
|
StatusLive: string;
|
|
201
194
|
};
|
|
@@ -220,151 +213,23 @@ export declare const APP_BSKY_GRAPH: {
|
|
|
220
213
|
DefsCuratelist: string;
|
|
221
214
|
DefsReferencelist: string;
|
|
222
215
|
};
|
|
216
|
+
export declare const COM_ATPROTO_MODERATION: {
|
|
217
|
+
DefsReasonSpam: string;
|
|
218
|
+
DefsReasonViolation: string;
|
|
219
|
+
DefsReasonMisleading: string;
|
|
220
|
+
DefsReasonSexual: string;
|
|
221
|
+
DefsReasonRude: string;
|
|
222
|
+
DefsReasonOther: string;
|
|
223
|
+
DefsReasonAppeal: string;
|
|
224
|
+
};
|
|
223
225
|
export declare function createServer(options?: XrpcOptions): Server;
|
|
224
226
|
export declare class Server {
|
|
225
227
|
xrpc: XrpcServer;
|
|
226
|
-
com: ComNS;
|
|
227
228
|
app: AppNS;
|
|
228
229
|
chat: ChatNS;
|
|
230
|
+
com: ComNS;
|
|
229
231
|
constructor(options?: XrpcOptions);
|
|
230
232
|
}
|
|
231
|
-
export declare class ComNS {
|
|
232
|
-
_server: Server;
|
|
233
|
-
atproto: ComAtprotoNS;
|
|
234
|
-
constructor(server: Server);
|
|
235
|
-
}
|
|
236
|
-
export declare class ComAtprotoNS {
|
|
237
|
-
_server: Server;
|
|
238
|
-
admin: ComAtprotoAdminNS;
|
|
239
|
-
identity: ComAtprotoIdentityNS;
|
|
240
|
-
label: ComAtprotoLabelNS;
|
|
241
|
-
lexicon: ComAtprotoLexiconNS;
|
|
242
|
-
moderation: ComAtprotoModerationNS;
|
|
243
|
-
repo: ComAtprotoRepoNS;
|
|
244
|
-
server: ComAtprotoServerNS;
|
|
245
|
-
sync: ComAtprotoSyncNS;
|
|
246
|
-
temp: ComAtprotoTempNS;
|
|
247
|
-
constructor(server: Server);
|
|
248
|
-
}
|
|
249
|
-
export declare class ComAtprotoAdminNS {
|
|
250
|
-
_server: Server;
|
|
251
|
-
constructor(server: Server);
|
|
252
|
-
deleteAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminDeleteAccount.QueryParams, ComAtprotoAdminDeleteAccount.HandlerInput, ComAtprotoAdminDeleteAccount.HandlerOutput>): void;
|
|
253
|
-
disableAccountInvites<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminDisableAccountInvites.QueryParams, ComAtprotoAdminDisableAccountInvites.HandlerInput, ComAtprotoAdminDisableAccountInvites.HandlerOutput>): void;
|
|
254
|
-
disableInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminDisableInviteCodes.QueryParams, ComAtprotoAdminDisableInviteCodes.HandlerInput, ComAtprotoAdminDisableInviteCodes.HandlerOutput>): void;
|
|
255
|
-
enableAccountInvites<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminEnableAccountInvites.QueryParams, ComAtprotoAdminEnableAccountInvites.HandlerInput, ComAtprotoAdminEnableAccountInvites.HandlerOutput>): void;
|
|
256
|
-
getAccountInfo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetAccountInfo.QueryParams, ComAtprotoAdminGetAccountInfo.HandlerInput, ComAtprotoAdminGetAccountInfo.HandlerOutput>): void;
|
|
257
|
-
getAccountInfos<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetAccountInfos.QueryParams, ComAtprotoAdminGetAccountInfos.HandlerInput, ComAtprotoAdminGetAccountInfos.HandlerOutput>): void;
|
|
258
|
-
getInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetInviteCodes.QueryParams, ComAtprotoAdminGetInviteCodes.HandlerInput, ComAtprotoAdminGetInviteCodes.HandlerOutput>): void;
|
|
259
|
-
getSubjectStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetSubjectStatus.QueryParams, ComAtprotoAdminGetSubjectStatus.HandlerInput, ComAtprotoAdminGetSubjectStatus.HandlerOutput>): void;
|
|
260
|
-
searchAccounts<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminSearchAccounts.QueryParams, ComAtprotoAdminSearchAccounts.HandlerInput, ComAtprotoAdminSearchAccounts.HandlerOutput>): void;
|
|
261
|
-
sendEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminSendEmail.QueryParams, ComAtprotoAdminSendEmail.HandlerInput, ComAtprotoAdminSendEmail.HandlerOutput>): void;
|
|
262
|
-
updateAccountEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountEmail.QueryParams, ComAtprotoAdminUpdateAccountEmail.HandlerInput, ComAtprotoAdminUpdateAccountEmail.HandlerOutput>): void;
|
|
263
|
-
updateAccountHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountHandle.QueryParams, ComAtprotoAdminUpdateAccountHandle.HandlerInput, ComAtprotoAdminUpdateAccountHandle.HandlerOutput>): void;
|
|
264
|
-
updateAccountPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountPassword.QueryParams, ComAtprotoAdminUpdateAccountPassword.HandlerInput, ComAtprotoAdminUpdateAccountPassword.HandlerOutput>): void;
|
|
265
|
-
updateAccountSigningKey<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountSigningKey.QueryParams, ComAtprotoAdminUpdateAccountSigningKey.HandlerInput, ComAtprotoAdminUpdateAccountSigningKey.HandlerOutput>): void;
|
|
266
|
-
updateSubjectStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateSubjectStatus.QueryParams, ComAtprotoAdminUpdateSubjectStatus.HandlerInput, ComAtprotoAdminUpdateSubjectStatus.HandlerOutput>): void;
|
|
267
|
-
}
|
|
268
|
-
export declare class ComAtprotoIdentityNS {
|
|
269
|
-
_server: Server;
|
|
270
|
-
constructor(server: Server);
|
|
271
|
-
getRecommendedDidCredentials<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityGetRecommendedDidCredentials.QueryParams, ComAtprotoIdentityGetRecommendedDidCredentials.HandlerInput, ComAtprotoIdentityGetRecommendedDidCredentials.HandlerOutput>): void;
|
|
272
|
-
refreshIdentity<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityRefreshIdentity.QueryParams, ComAtprotoIdentityRefreshIdentity.HandlerInput, ComAtprotoIdentityRefreshIdentity.HandlerOutput>): void;
|
|
273
|
-
requestPlcOperationSignature<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityRequestPlcOperationSignature.QueryParams, ComAtprotoIdentityRequestPlcOperationSignature.HandlerInput, ComAtprotoIdentityRequestPlcOperationSignature.HandlerOutput>): void;
|
|
274
|
-
resolveDid<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityResolveDid.QueryParams, ComAtprotoIdentityResolveDid.HandlerInput, ComAtprotoIdentityResolveDid.HandlerOutput>): void;
|
|
275
|
-
resolveHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityResolveHandle.QueryParams, ComAtprotoIdentityResolveHandle.HandlerInput, ComAtprotoIdentityResolveHandle.HandlerOutput>): void;
|
|
276
|
-
resolveIdentity<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityResolveIdentity.QueryParams, ComAtprotoIdentityResolveIdentity.HandlerInput, ComAtprotoIdentityResolveIdentity.HandlerOutput>): void;
|
|
277
|
-
signPlcOperation<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentitySignPlcOperation.QueryParams, ComAtprotoIdentitySignPlcOperation.HandlerInput, ComAtprotoIdentitySignPlcOperation.HandlerOutput>): void;
|
|
278
|
-
submitPlcOperation<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentitySubmitPlcOperation.QueryParams, ComAtprotoIdentitySubmitPlcOperation.HandlerInput, ComAtprotoIdentitySubmitPlcOperation.HandlerOutput>): void;
|
|
279
|
-
updateHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityUpdateHandle.QueryParams, ComAtprotoIdentityUpdateHandle.HandlerInput, ComAtprotoIdentityUpdateHandle.HandlerOutput>): void;
|
|
280
|
-
}
|
|
281
|
-
export declare class ComAtprotoLabelNS {
|
|
282
|
-
_server: Server;
|
|
283
|
-
constructor(server: Server);
|
|
284
|
-
queryLabels<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoLabelQueryLabels.QueryParams, ComAtprotoLabelQueryLabels.HandlerInput, ComAtprotoLabelQueryLabels.HandlerOutput>): void;
|
|
285
|
-
subscribeLabels<A extends Auth = void>(cfg: StreamConfigOrHandler<A, ComAtprotoLabelSubscribeLabels.QueryParams, ComAtprotoLabelSubscribeLabels.HandlerOutput>): void;
|
|
286
|
-
}
|
|
287
|
-
export declare class ComAtprotoLexiconNS {
|
|
288
|
-
_server: Server;
|
|
289
|
-
constructor(server: Server);
|
|
290
|
-
}
|
|
291
|
-
export declare class ComAtprotoModerationNS {
|
|
292
|
-
_server: Server;
|
|
293
|
-
constructor(server: Server);
|
|
294
|
-
createReport<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoModerationCreateReport.QueryParams, ComAtprotoModerationCreateReport.HandlerInput, ComAtprotoModerationCreateReport.HandlerOutput>): void;
|
|
295
|
-
}
|
|
296
|
-
export declare class ComAtprotoRepoNS {
|
|
297
|
-
_server: Server;
|
|
298
|
-
constructor(server: Server);
|
|
299
|
-
applyWrites<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoApplyWrites.QueryParams, ComAtprotoRepoApplyWrites.HandlerInput, ComAtprotoRepoApplyWrites.HandlerOutput>): void;
|
|
300
|
-
createRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoCreateRecord.QueryParams, ComAtprotoRepoCreateRecord.HandlerInput, ComAtprotoRepoCreateRecord.HandlerOutput>): void;
|
|
301
|
-
deleteRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoDeleteRecord.QueryParams, ComAtprotoRepoDeleteRecord.HandlerInput, ComAtprotoRepoDeleteRecord.HandlerOutput>): void;
|
|
302
|
-
describeRepo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoDescribeRepo.QueryParams, ComAtprotoRepoDescribeRepo.HandlerInput, ComAtprotoRepoDescribeRepo.HandlerOutput>): void;
|
|
303
|
-
getRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoGetRecord.QueryParams, ComAtprotoRepoGetRecord.HandlerInput, ComAtprotoRepoGetRecord.HandlerOutput>): void;
|
|
304
|
-
importRepo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoImportRepo.QueryParams, ComAtprotoRepoImportRepo.HandlerInput, ComAtprotoRepoImportRepo.HandlerOutput>): void;
|
|
305
|
-
listMissingBlobs<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoListMissingBlobs.QueryParams, ComAtprotoRepoListMissingBlobs.HandlerInput, ComAtprotoRepoListMissingBlobs.HandlerOutput>): void;
|
|
306
|
-
listRecords<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoListRecords.QueryParams, ComAtprotoRepoListRecords.HandlerInput, ComAtprotoRepoListRecords.HandlerOutput>): void;
|
|
307
|
-
putRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoPutRecord.QueryParams, ComAtprotoRepoPutRecord.HandlerInput, ComAtprotoRepoPutRecord.HandlerOutput>): void;
|
|
308
|
-
uploadBlob<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoUploadBlob.QueryParams, ComAtprotoRepoUploadBlob.HandlerInput, ComAtprotoRepoUploadBlob.HandlerOutput>): void;
|
|
309
|
-
}
|
|
310
|
-
export declare class ComAtprotoServerNS {
|
|
311
|
-
_server: Server;
|
|
312
|
-
constructor(server: Server);
|
|
313
|
-
activateAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerActivateAccount.QueryParams, ComAtprotoServerActivateAccount.HandlerInput, ComAtprotoServerActivateAccount.HandlerOutput>): void;
|
|
314
|
-
checkAccountStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCheckAccountStatus.QueryParams, ComAtprotoServerCheckAccountStatus.HandlerInput, ComAtprotoServerCheckAccountStatus.HandlerOutput>): void;
|
|
315
|
-
confirmEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerConfirmEmail.QueryParams, ComAtprotoServerConfirmEmail.HandlerInput, ComAtprotoServerConfirmEmail.HandlerOutput>): void;
|
|
316
|
-
createAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateAccount.QueryParams, ComAtprotoServerCreateAccount.HandlerInput, ComAtprotoServerCreateAccount.HandlerOutput>): void;
|
|
317
|
-
createAppPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateAppPassword.QueryParams, ComAtprotoServerCreateAppPassword.HandlerInput, ComAtprotoServerCreateAppPassword.HandlerOutput>): void;
|
|
318
|
-
createInviteCode<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateInviteCode.QueryParams, ComAtprotoServerCreateInviteCode.HandlerInput, ComAtprotoServerCreateInviteCode.HandlerOutput>): void;
|
|
319
|
-
createInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateInviteCodes.QueryParams, ComAtprotoServerCreateInviteCodes.HandlerInput, ComAtprotoServerCreateInviteCodes.HandlerOutput>): void;
|
|
320
|
-
createSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateSession.QueryParams, ComAtprotoServerCreateSession.HandlerInput, ComAtprotoServerCreateSession.HandlerOutput>): void;
|
|
321
|
-
deactivateAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDeactivateAccount.QueryParams, ComAtprotoServerDeactivateAccount.HandlerInput, ComAtprotoServerDeactivateAccount.HandlerOutput>): void;
|
|
322
|
-
deleteAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDeleteAccount.QueryParams, ComAtprotoServerDeleteAccount.HandlerInput, ComAtprotoServerDeleteAccount.HandlerOutput>): void;
|
|
323
|
-
deleteSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDeleteSession.QueryParams, ComAtprotoServerDeleteSession.HandlerInput, ComAtprotoServerDeleteSession.HandlerOutput>): void;
|
|
324
|
-
describeServer<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDescribeServer.QueryParams, ComAtprotoServerDescribeServer.HandlerInput, ComAtprotoServerDescribeServer.HandlerOutput>): void;
|
|
325
|
-
getAccountInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerGetAccountInviteCodes.QueryParams, ComAtprotoServerGetAccountInviteCodes.HandlerInput, ComAtprotoServerGetAccountInviteCodes.HandlerOutput>): void;
|
|
326
|
-
getServiceAuth<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerGetServiceAuth.QueryParams, ComAtprotoServerGetServiceAuth.HandlerInput, ComAtprotoServerGetServiceAuth.HandlerOutput>): void;
|
|
327
|
-
getSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerGetSession.QueryParams, ComAtprotoServerGetSession.HandlerInput, ComAtprotoServerGetSession.HandlerOutput>): void;
|
|
328
|
-
listAppPasswords<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerListAppPasswords.QueryParams, ComAtprotoServerListAppPasswords.HandlerInput, ComAtprotoServerListAppPasswords.HandlerOutput>): void;
|
|
329
|
-
refreshSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRefreshSession.QueryParams, ComAtprotoServerRefreshSession.HandlerInput, ComAtprotoServerRefreshSession.HandlerOutput>): void;
|
|
330
|
-
requestAccountDelete<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestAccountDelete.QueryParams, ComAtprotoServerRequestAccountDelete.HandlerInput, ComAtprotoServerRequestAccountDelete.HandlerOutput>): void;
|
|
331
|
-
requestEmailConfirmation<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestEmailConfirmation.QueryParams, ComAtprotoServerRequestEmailConfirmation.HandlerInput, ComAtprotoServerRequestEmailConfirmation.HandlerOutput>): void;
|
|
332
|
-
requestEmailUpdate<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestEmailUpdate.QueryParams, ComAtprotoServerRequestEmailUpdate.HandlerInput, ComAtprotoServerRequestEmailUpdate.HandlerOutput>): void;
|
|
333
|
-
requestPasswordReset<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestPasswordReset.QueryParams, ComAtprotoServerRequestPasswordReset.HandlerInput, ComAtprotoServerRequestPasswordReset.HandlerOutput>): void;
|
|
334
|
-
reserveSigningKey<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerReserveSigningKey.QueryParams, ComAtprotoServerReserveSigningKey.HandlerInput, ComAtprotoServerReserveSigningKey.HandlerOutput>): void;
|
|
335
|
-
resetPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerResetPassword.QueryParams, ComAtprotoServerResetPassword.HandlerInput, ComAtprotoServerResetPassword.HandlerOutput>): void;
|
|
336
|
-
revokeAppPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRevokeAppPassword.QueryParams, ComAtprotoServerRevokeAppPassword.HandlerInput, ComAtprotoServerRevokeAppPassword.HandlerOutput>): void;
|
|
337
|
-
updateEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerUpdateEmail.QueryParams, ComAtprotoServerUpdateEmail.HandlerInput, ComAtprotoServerUpdateEmail.HandlerOutput>): void;
|
|
338
|
-
}
|
|
339
|
-
export declare class ComAtprotoSyncNS {
|
|
340
|
-
_server: Server;
|
|
341
|
-
constructor(server: Server);
|
|
342
|
-
getBlob<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetBlob.QueryParams, ComAtprotoSyncGetBlob.HandlerInput, ComAtprotoSyncGetBlob.HandlerOutput>): void;
|
|
343
|
-
getBlocks<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetBlocks.QueryParams, ComAtprotoSyncGetBlocks.HandlerInput, ComAtprotoSyncGetBlocks.HandlerOutput>): void;
|
|
344
|
-
getCheckout<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetCheckout.QueryParams, ComAtprotoSyncGetCheckout.HandlerInput, ComAtprotoSyncGetCheckout.HandlerOutput>): void;
|
|
345
|
-
getHead<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetHead.QueryParams, ComAtprotoSyncGetHead.HandlerInput, ComAtprotoSyncGetHead.HandlerOutput>): void;
|
|
346
|
-
getHostStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetHostStatus.QueryParams, ComAtprotoSyncGetHostStatus.HandlerInput, ComAtprotoSyncGetHostStatus.HandlerOutput>): void;
|
|
347
|
-
getLatestCommit<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetLatestCommit.QueryParams, ComAtprotoSyncGetLatestCommit.HandlerInput, ComAtprotoSyncGetLatestCommit.HandlerOutput>): void;
|
|
348
|
-
getRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetRecord.QueryParams, ComAtprotoSyncGetRecord.HandlerInput, ComAtprotoSyncGetRecord.HandlerOutput>): void;
|
|
349
|
-
getRepo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetRepo.QueryParams, ComAtprotoSyncGetRepo.HandlerInput, ComAtprotoSyncGetRepo.HandlerOutput>): void;
|
|
350
|
-
getRepoStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetRepoStatus.QueryParams, ComAtprotoSyncGetRepoStatus.HandlerInput, ComAtprotoSyncGetRepoStatus.HandlerOutput>): void;
|
|
351
|
-
listBlobs<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListBlobs.QueryParams, ComAtprotoSyncListBlobs.HandlerInput, ComAtprotoSyncListBlobs.HandlerOutput>): void;
|
|
352
|
-
listHosts<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListHosts.QueryParams, ComAtprotoSyncListHosts.HandlerInput, ComAtprotoSyncListHosts.HandlerOutput>): void;
|
|
353
|
-
listRepos<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListRepos.QueryParams, ComAtprotoSyncListRepos.HandlerInput, ComAtprotoSyncListRepos.HandlerOutput>): void;
|
|
354
|
-
listReposByCollection<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListReposByCollection.QueryParams, ComAtprotoSyncListReposByCollection.HandlerInput, ComAtprotoSyncListReposByCollection.HandlerOutput>): void;
|
|
355
|
-
notifyOfUpdate<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncNotifyOfUpdate.QueryParams, ComAtprotoSyncNotifyOfUpdate.HandlerInput, ComAtprotoSyncNotifyOfUpdate.HandlerOutput>): void;
|
|
356
|
-
requestCrawl<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncRequestCrawl.QueryParams, ComAtprotoSyncRequestCrawl.HandlerInput, ComAtprotoSyncRequestCrawl.HandlerOutput>): void;
|
|
357
|
-
subscribeRepos<A extends Auth = void>(cfg: StreamConfigOrHandler<A, ComAtprotoSyncSubscribeRepos.QueryParams, ComAtprotoSyncSubscribeRepos.HandlerOutput>): void;
|
|
358
|
-
}
|
|
359
|
-
export declare class ComAtprotoTempNS {
|
|
360
|
-
_server: Server;
|
|
361
|
-
constructor(server: Server);
|
|
362
|
-
addReservedHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempAddReservedHandle.QueryParams, ComAtprotoTempAddReservedHandle.HandlerInput, ComAtprotoTempAddReservedHandle.HandlerOutput>): void;
|
|
363
|
-
checkHandleAvailability<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempCheckHandleAvailability.QueryParams, ComAtprotoTempCheckHandleAvailability.HandlerInput, ComAtprotoTempCheckHandleAvailability.HandlerOutput>): void;
|
|
364
|
-
checkSignupQueue<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempCheckSignupQueue.QueryParams, ComAtprotoTempCheckSignupQueue.HandlerInput, ComAtprotoTempCheckSignupQueue.HandlerOutput>): void;
|
|
365
|
-
fetchLabels<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempFetchLabels.QueryParams, ComAtprotoTempFetchLabels.HandlerInput, ComAtprotoTempFetchLabels.HandlerOutput>): void;
|
|
366
|
-
requestPhoneVerification<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempRequestPhoneVerification.QueryParams, ComAtprotoTempRequestPhoneVerification.HandlerInput, ComAtprotoTempRequestPhoneVerification.HandlerOutput>): void;
|
|
367
|
-
}
|
|
368
233
|
export declare class AppNS {
|
|
369
234
|
_server: Server;
|
|
370
235
|
bsky: AppBskyNS;
|
|
@@ -432,10 +297,12 @@ export declare class AppBskyGraphNS {
|
|
|
432
297
|
getListBlocks<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetListBlocks.QueryParams, AppBskyGraphGetListBlocks.HandlerInput, AppBskyGraphGetListBlocks.HandlerOutput>): void;
|
|
433
298
|
getListMutes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetListMutes.QueryParams, AppBskyGraphGetListMutes.HandlerInput, AppBskyGraphGetListMutes.HandlerOutput>): void;
|
|
434
299
|
getLists<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetLists.QueryParams, AppBskyGraphGetLists.HandlerInput, AppBskyGraphGetLists.HandlerOutput>): void;
|
|
300
|
+
getListsWithMembership<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetListsWithMembership.QueryParams, AppBskyGraphGetListsWithMembership.HandlerInput, AppBskyGraphGetListsWithMembership.HandlerOutput>): void;
|
|
435
301
|
getMutes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetMutes.QueryParams, AppBskyGraphGetMutes.HandlerInput, AppBskyGraphGetMutes.HandlerOutput>): void;
|
|
436
302
|
getRelationships<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetRelationships.QueryParams, AppBskyGraphGetRelationships.HandlerInput, AppBskyGraphGetRelationships.HandlerOutput>): void;
|
|
437
303
|
getStarterPack<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetStarterPack.QueryParams, AppBskyGraphGetStarterPack.HandlerInput, AppBskyGraphGetStarterPack.HandlerOutput>): void;
|
|
438
304
|
getStarterPacks<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetStarterPacks.QueryParams, AppBskyGraphGetStarterPacks.HandlerInput, AppBskyGraphGetStarterPacks.HandlerOutput>): void;
|
|
305
|
+
getStarterPacksWithMembership<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetStarterPacksWithMembership.QueryParams, AppBskyGraphGetStarterPacksWithMembership.HandlerInput, AppBskyGraphGetStarterPacksWithMembership.HandlerOutput>): void;
|
|
439
306
|
getSuggestedFollowsByActor<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphGetSuggestedFollowsByActor.QueryParams, AppBskyGraphGetSuggestedFollowsByActor.HandlerInput, AppBskyGraphGetSuggestedFollowsByActor.HandlerOutput>): void;
|
|
440
307
|
muteActor<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphMuteActor.QueryParams, AppBskyGraphMuteActor.HandlerInput, AppBskyGraphMuteActor.HandlerOutput>): void;
|
|
441
308
|
muteActorList<A extends Auth = void>(cfg: MethodConfigOrHandler<A, AppBskyGraphMuteActorList.QueryParams, AppBskyGraphMuteActorList.HandlerInput, AppBskyGraphMuteActorList.HandlerOutput>): void;
|
|
@@ -545,4 +412,141 @@ export declare class ChatBskyModerationNS {
|
|
|
545
412
|
getMessageContext<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ChatBskyModerationGetMessageContext.QueryParams, ChatBskyModerationGetMessageContext.HandlerInput, ChatBskyModerationGetMessageContext.HandlerOutput>): void;
|
|
546
413
|
updateActorAccess<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ChatBskyModerationUpdateActorAccess.QueryParams, ChatBskyModerationUpdateActorAccess.HandlerInput, ChatBskyModerationUpdateActorAccess.HandlerOutput>): void;
|
|
547
414
|
}
|
|
415
|
+
export declare class ComNS {
|
|
416
|
+
_server: Server;
|
|
417
|
+
atproto: ComAtprotoNS;
|
|
418
|
+
constructor(server: Server);
|
|
419
|
+
}
|
|
420
|
+
export declare class ComAtprotoNS {
|
|
421
|
+
_server: Server;
|
|
422
|
+
admin: ComAtprotoAdminNS;
|
|
423
|
+
identity: ComAtprotoIdentityNS;
|
|
424
|
+
label: ComAtprotoLabelNS;
|
|
425
|
+
lexicon: ComAtprotoLexiconNS;
|
|
426
|
+
moderation: ComAtprotoModerationNS;
|
|
427
|
+
repo: ComAtprotoRepoNS;
|
|
428
|
+
server: ComAtprotoServerNS;
|
|
429
|
+
sync: ComAtprotoSyncNS;
|
|
430
|
+
temp: ComAtprotoTempNS;
|
|
431
|
+
constructor(server: Server);
|
|
432
|
+
}
|
|
433
|
+
export declare class ComAtprotoAdminNS {
|
|
434
|
+
_server: Server;
|
|
435
|
+
constructor(server: Server);
|
|
436
|
+
deleteAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminDeleteAccount.QueryParams, ComAtprotoAdminDeleteAccount.HandlerInput, ComAtprotoAdminDeleteAccount.HandlerOutput>): void;
|
|
437
|
+
disableAccountInvites<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminDisableAccountInvites.QueryParams, ComAtprotoAdminDisableAccountInvites.HandlerInput, ComAtprotoAdminDisableAccountInvites.HandlerOutput>): void;
|
|
438
|
+
disableInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminDisableInviteCodes.QueryParams, ComAtprotoAdminDisableInviteCodes.HandlerInput, ComAtprotoAdminDisableInviteCodes.HandlerOutput>): void;
|
|
439
|
+
enableAccountInvites<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminEnableAccountInvites.QueryParams, ComAtprotoAdminEnableAccountInvites.HandlerInput, ComAtprotoAdminEnableAccountInvites.HandlerOutput>): void;
|
|
440
|
+
getAccountInfo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetAccountInfo.QueryParams, ComAtprotoAdminGetAccountInfo.HandlerInput, ComAtprotoAdminGetAccountInfo.HandlerOutput>): void;
|
|
441
|
+
getAccountInfos<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetAccountInfos.QueryParams, ComAtprotoAdminGetAccountInfos.HandlerInput, ComAtprotoAdminGetAccountInfos.HandlerOutput>): void;
|
|
442
|
+
getInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetInviteCodes.QueryParams, ComAtprotoAdminGetInviteCodes.HandlerInput, ComAtprotoAdminGetInviteCodes.HandlerOutput>): void;
|
|
443
|
+
getSubjectStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminGetSubjectStatus.QueryParams, ComAtprotoAdminGetSubjectStatus.HandlerInput, ComAtprotoAdminGetSubjectStatus.HandlerOutput>): void;
|
|
444
|
+
searchAccounts<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminSearchAccounts.QueryParams, ComAtprotoAdminSearchAccounts.HandlerInput, ComAtprotoAdminSearchAccounts.HandlerOutput>): void;
|
|
445
|
+
sendEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminSendEmail.QueryParams, ComAtprotoAdminSendEmail.HandlerInput, ComAtprotoAdminSendEmail.HandlerOutput>): void;
|
|
446
|
+
updateAccountEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountEmail.QueryParams, ComAtprotoAdminUpdateAccountEmail.HandlerInput, ComAtprotoAdminUpdateAccountEmail.HandlerOutput>): void;
|
|
447
|
+
updateAccountHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountHandle.QueryParams, ComAtprotoAdminUpdateAccountHandle.HandlerInput, ComAtprotoAdminUpdateAccountHandle.HandlerOutput>): void;
|
|
448
|
+
updateAccountPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountPassword.QueryParams, ComAtprotoAdminUpdateAccountPassword.HandlerInput, ComAtprotoAdminUpdateAccountPassword.HandlerOutput>): void;
|
|
449
|
+
updateAccountSigningKey<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateAccountSigningKey.QueryParams, ComAtprotoAdminUpdateAccountSigningKey.HandlerInput, ComAtprotoAdminUpdateAccountSigningKey.HandlerOutput>): void;
|
|
450
|
+
updateSubjectStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoAdminUpdateSubjectStatus.QueryParams, ComAtprotoAdminUpdateSubjectStatus.HandlerInput, ComAtprotoAdminUpdateSubjectStatus.HandlerOutput>): void;
|
|
451
|
+
}
|
|
452
|
+
export declare class ComAtprotoIdentityNS {
|
|
453
|
+
_server: Server;
|
|
454
|
+
constructor(server: Server);
|
|
455
|
+
getRecommendedDidCredentials<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityGetRecommendedDidCredentials.QueryParams, ComAtprotoIdentityGetRecommendedDidCredentials.HandlerInput, ComAtprotoIdentityGetRecommendedDidCredentials.HandlerOutput>): void;
|
|
456
|
+
refreshIdentity<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityRefreshIdentity.QueryParams, ComAtprotoIdentityRefreshIdentity.HandlerInput, ComAtprotoIdentityRefreshIdentity.HandlerOutput>): void;
|
|
457
|
+
requestPlcOperationSignature<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityRequestPlcOperationSignature.QueryParams, ComAtprotoIdentityRequestPlcOperationSignature.HandlerInput, ComAtprotoIdentityRequestPlcOperationSignature.HandlerOutput>): void;
|
|
458
|
+
resolveDid<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityResolveDid.QueryParams, ComAtprotoIdentityResolveDid.HandlerInput, ComAtprotoIdentityResolveDid.HandlerOutput>): void;
|
|
459
|
+
resolveHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityResolveHandle.QueryParams, ComAtprotoIdentityResolveHandle.HandlerInput, ComAtprotoIdentityResolveHandle.HandlerOutput>): void;
|
|
460
|
+
resolveIdentity<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityResolveIdentity.QueryParams, ComAtprotoIdentityResolveIdentity.HandlerInput, ComAtprotoIdentityResolveIdentity.HandlerOutput>): void;
|
|
461
|
+
signPlcOperation<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentitySignPlcOperation.QueryParams, ComAtprotoIdentitySignPlcOperation.HandlerInput, ComAtprotoIdentitySignPlcOperation.HandlerOutput>): void;
|
|
462
|
+
submitPlcOperation<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentitySubmitPlcOperation.QueryParams, ComAtprotoIdentitySubmitPlcOperation.HandlerInput, ComAtprotoIdentitySubmitPlcOperation.HandlerOutput>): void;
|
|
463
|
+
updateHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoIdentityUpdateHandle.QueryParams, ComAtprotoIdentityUpdateHandle.HandlerInput, ComAtprotoIdentityUpdateHandle.HandlerOutput>): void;
|
|
464
|
+
}
|
|
465
|
+
export declare class ComAtprotoLabelNS {
|
|
466
|
+
_server: Server;
|
|
467
|
+
constructor(server: Server);
|
|
468
|
+
queryLabels<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoLabelQueryLabels.QueryParams, ComAtprotoLabelQueryLabels.HandlerInput, ComAtprotoLabelQueryLabels.HandlerOutput>): void;
|
|
469
|
+
subscribeLabels<A extends Auth = void>(cfg: StreamConfigOrHandler<A, ComAtprotoLabelSubscribeLabels.QueryParams, ComAtprotoLabelSubscribeLabels.HandlerOutput>): void;
|
|
470
|
+
}
|
|
471
|
+
export declare class ComAtprotoLexiconNS {
|
|
472
|
+
_server: Server;
|
|
473
|
+
constructor(server: Server);
|
|
474
|
+
}
|
|
475
|
+
export declare class ComAtprotoModerationNS {
|
|
476
|
+
_server: Server;
|
|
477
|
+
constructor(server: Server);
|
|
478
|
+
createReport<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoModerationCreateReport.QueryParams, ComAtprotoModerationCreateReport.HandlerInput, ComAtprotoModerationCreateReport.HandlerOutput>): void;
|
|
479
|
+
}
|
|
480
|
+
export declare class ComAtprotoRepoNS {
|
|
481
|
+
_server: Server;
|
|
482
|
+
constructor(server: Server);
|
|
483
|
+
applyWrites<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoApplyWrites.QueryParams, ComAtprotoRepoApplyWrites.HandlerInput, ComAtprotoRepoApplyWrites.HandlerOutput>): void;
|
|
484
|
+
createRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoCreateRecord.QueryParams, ComAtprotoRepoCreateRecord.HandlerInput, ComAtprotoRepoCreateRecord.HandlerOutput>): void;
|
|
485
|
+
deleteRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoDeleteRecord.QueryParams, ComAtprotoRepoDeleteRecord.HandlerInput, ComAtprotoRepoDeleteRecord.HandlerOutput>): void;
|
|
486
|
+
describeRepo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoDescribeRepo.QueryParams, ComAtprotoRepoDescribeRepo.HandlerInput, ComAtprotoRepoDescribeRepo.HandlerOutput>): void;
|
|
487
|
+
getRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoGetRecord.QueryParams, ComAtprotoRepoGetRecord.HandlerInput, ComAtprotoRepoGetRecord.HandlerOutput>): void;
|
|
488
|
+
importRepo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoImportRepo.QueryParams, ComAtprotoRepoImportRepo.HandlerInput, ComAtprotoRepoImportRepo.HandlerOutput>): void;
|
|
489
|
+
listMissingBlobs<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoListMissingBlobs.QueryParams, ComAtprotoRepoListMissingBlobs.HandlerInput, ComAtprotoRepoListMissingBlobs.HandlerOutput>): void;
|
|
490
|
+
listRecords<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoListRecords.QueryParams, ComAtprotoRepoListRecords.HandlerInput, ComAtprotoRepoListRecords.HandlerOutput>): void;
|
|
491
|
+
putRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoPutRecord.QueryParams, ComAtprotoRepoPutRecord.HandlerInput, ComAtprotoRepoPutRecord.HandlerOutput>): void;
|
|
492
|
+
uploadBlob<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoRepoUploadBlob.QueryParams, ComAtprotoRepoUploadBlob.HandlerInput, ComAtprotoRepoUploadBlob.HandlerOutput>): void;
|
|
493
|
+
}
|
|
494
|
+
export declare class ComAtprotoServerNS {
|
|
495
|
+
_server: Server;
|
|
496
|
+
constructor(server: Server);
|
|
497
|
+
activateAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerActivateAccount.QueryParams, ComAtprotoServerActivateAccount.HandlerInput, ComAtprotoServerActivateAccount.HandlerOutput>): void;
|
|
498
|
+
checkAccountStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCheckAccountStatus.QueryParams, ComAtprotoServerCheckAccountStatus.HandlerInput, ComAtprotoServerCheckAccountStatus.HandlerOutput>): void;
|
|
499
|
+
confirmEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerConfirmEmail.QueryParams, ComAtprotoServerConfirmEmail.HandlerInput, ComAtprotoServerConfirmEmail.HandlerOutput>): void;
|
|
500
|
+
createAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateAccount.QueryParams, ComAtprotoServerCreateAccount.HandlerInput, ComAtprotoServerCreateAccount.HandlerOutput>): void;
|
|
501
|
+
createAppPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateAppPassword.QueryParams, ComAtprotoServerCreateAppPassword.HandlerInput, ComAtprotoServerCreateAppPassword.HandlerOutput>): void;
|
|
502
|
+
createInviteCode<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateInviteCode.QueryParams, ComAtprotoServerCreateInviteCode.HandlerInput, ComAtprotoServerCreateInviteCode.HandlerOutput>): void;
|
|
503
|
+
createInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateInviteCodes.QueryParams, ComAtprotoServerCreateInviteCodes.HandlerInput, ComAtprotoServerCreateInviteCodes.HandlerOutput>): void;
|
|
504
|
+
createSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerCreateSession.QueryParams, ComAtprotoServerCreateSession.HandlerInput, ComAtprotoServerCreateSession.HandlerOutput>): void;
|
|
505
|
+
deactivateAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDeactivateAccount.QueryParams, ComAtprotoServerDeactivateAccount.HandlerInput, ComAtprotoServerDeactivateAccount.HandlerOutput>): void;
|
|
506
|
+
deleteAccount<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDeleteAccount.QueryParams, ComAtprotoServerDeleteAccount.HandlerInput, ComAtprotoServerDeleteAccount.HandlerOutput>): void;
|
|
507
|
+
deleteSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDeleteSession.QueryParams, ComAtprotoServerDeleteSession.HandlerInput, ComAtprotoServerDeleteSession.HandlerOutput>): void;
|
|
508
|
+
describeServer<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerDescribeServer.QueryParams, ComAtprotoServerDescribeServer.HandlerInput, ComAtprotoServerDescribeServer.HandlerOutput>): void;
|
|
509
|
+
getAccountInviteCodes<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerGetAccountInviteCodes.QueryParams, ComAtprotoServerGetAccountInviteCodes.HandlerInput, ComAtprotoServerGetAccountInviteCodes.HandlerOutput>): void;
|
|
510
|
+
getServiceAuth<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerGetServiceAuth.QueryParams, ComAtprotoServerGetServiceAuth.HandlerInput, ComAtprotoServerGetServiceAuth.HandlerOutput>): void;
|
|
511
|
+
getSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerGetSession.QueryParams, ComAtprotoServerGetSession.HandlerInput, ComAtprotoServerGetSession.HandlerOutput>): void;
|
|
512
|
+
listAppPasswords<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerListAppPasswords.QueryParams, ComAtprotoServerListAppPasswords.HandlerInput, ComAtprotoServerListAppPasswords.HandlerOutput>): void;
|
|
513
|
+
refreshSession<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRefreshSession.QueryParams, ComAtprotoServerRefreshSession.HandlerInput, ComAtprotoServerRefreshSession.HandlerOutput>): void;
|
|
514
|
+
requestAccountDelete<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestAccountDelete.QueryParams, ComAtprotoServerRequestAccountDelete.HandlerInput, ComAtprotoServerRequestAccountDelete.HandlerOutput>): void;
|
|
515
|
+
requestEmailConfirmation<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestEmailConfirmation.QueryParams, ComAtprotoServerRequestEmailConfirmation.HandlerInput, ComAtprotoServerRequestEmailConfirmation.HandlerOutput>): void;
|
|
516
|
+
requestEmailUpdate<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestEmailUpdate.QueryParams, ComAtprotoServerRequestEmailUpdate.HandlerInput, ComAtprotoServerRequestEmailUpdate.HandlerOutput>): void;
|
|
517
|
+
requestPasswordReset<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRequestPasswordReset.QueryParams, ComAtprotoServerRequestPasswordReset.HandlerInput, ComAtprotoServerRequestPasswordReset.HandlerOutput>): void;
|
|
518
|
+
reserveSigningKey<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerReserveSigningKey.QueryParams, ComAtprotoServerReserveSigningKey.HandlerInput, ComAtprotoServerReserveSigningKey.HandlerOutput>): void;
|
|
519
|
+
resetPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerResetPassword.QueryParams, ComAtprotoServerResetPassword.HandlerInput, ComAtprotoServerResetPassword.HandlerOutput>): void;
|
|
520
|
+
revokeAppPassword<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerRevokeAppPassword.QueryParams, ComAtprotoServerRevokeAppPassword.HandlerInput, ComAtprotoServerRevokeAppPassword.HandlerOutput>): void;
|
|
521
|
+
updateEmail<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoServerUpdateEmail.QueryParams, ComAtprotoServerUpdateEmail.HandlerInput, ComAtprotoServerUpdateEmail.HandlerOutput>): void;
|
|
522
|
+
}
|
|
523
|
+
export declare class ComAtprotoSyncNS {
|
|
524
|
+
_server: Server;
|
|
525
|
+
constructor(server: Server);
|
|
526
|
+
getBlob<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetBlob.QueryParams, ComAtprotoSyncGetBlob.HandlerInput, ComAtprotoSyncGetBlob.HandlerOutput>): void;
|
|
527
|
+
getBlocks<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetBlocks.QueryParams, ComAtprotoSyncGetBlocks.HandlerInput, ComAtprotoSyncGetBlocks.HandlerOutput>): void;
|
|
528
|
+
getCheckout<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetCheckout.QueryParams, ComAtprotoSyncGetCheckout.HandlerInput, ComAtprotoSyncGetCheckout.HandlerOutput>): void;
|
|
529
|
+
getHead<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetHead.QueryParams, ComAtprotoSyncGetHead.HandlerInput, ComAtprotoSyncGetHead.HandlerOutput>): void;
|
|
530
|
+
getHostStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetHostStatus.QueryParams, ComAtprotoSyncGetHostStatus.HandlerInput, ComAtprotoSyncGetHostStatus.HandlerOutput>): void;
|
|
531
|
+
getLatestCommit<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetLatestCommit.QueryParams, ComAtprotoSyncGetLatestCommit.HandlerInput, ComAtprotoSyncGetLatestCommit.HandlerOutput>): void;
|
|
532
|
+
getRecord<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetRecord.QueryParams, ComAtprotoSyncGetRecord.HandlerInput, ComAtprotoSyncGetRecord.HandlerOutput>): void;
|
|
533
|
+
getRepo<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetRepo.QueryParams, ComAtprotoSyncGetRepo.HandlerInput, ComAtprotoSyncGetRepo.HandlerOutput>): void;
|
|
534
|
+
getRepoStatus<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncGetRepoStatus.QueryParams, ComAtprotoSyncGetRepoStatus.HandlerInput, ComAtprotoSyncGetRepoStatus.HandlerOutput>): void;
|
|
535
|
+
listBlobs<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListBlobs.QueryParams, ComAtprotoSyncListBlobs.HandlerInput, ComAtprotoSyncListBlobs.HandlerOutput>): void;
|
|
536
|
+
listHosts<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListHosts.QueryParams, ComAtprotoSyncListHosts.HandlerInput, ComAtprotoSyncListHosts.HandlerOutput>): void;
|
|
537
|
+
listRepos<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListRepos.QueryParams, ComAtprotoSyncListRepos.HandlerInput, ComAtprotoSyncListRepos.HandlerOutput>): void;
|
|
538
|
+
listReposByCollection<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncListReposByCollection.QueryParams, ComAtprotoSyncListReposByCollection.HandlerInput, ComAtprotoSyncListReposByCollection.HandlerOutput>): void;
|
|
539
|
+
notifyOfUpdate<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncNotifyOfUpdate.QueryParams, ComAtprotoSyncNotifyOfUpdate.HandlerInput, ComAtprotoSyncNotifyOfUpdate.HandlerOutput>): void;
|
|
540
|
+
requestCrawl<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoSyncRequestCrawl.QueryParams, ComAtprotoSyncRequestCrawl.HandlerInput, ComAtprotoSyncRequestCrawl.HandlerOutput>): void;
|
|
541
|
+
subscribeRepos<A extends Auth = void>(cfg: StreamConfigOrHandler<A, ComAtprotoSyncSubscribeRepos.QueryParams, ComAtprotoSyncSubscribeRepos.HandlerOutput>): void;
|
|
542
|
+
}
|
|
543
|
+
export declare class ComAtprotoTempNS {
|
|
544
|
+
_server: Server;
|
|
545
|
+
constructor(server: Server);
|
|
546
|
+
addReservedHandle<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempAddReservedHandle.QueryParams, ComAtprotoTempAddReservedHandle.HandlerInput, ComAtprotoTempAddReservedHandle.HandlerOutput>): void;
|
|
547
|
+
checkHandleAvailability<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempCheckHandleAvailability.QueryParams, ComAtprotoTempCheckHandleAvailability.HandlerInput, ComAtprotoTempCheckHandleAvailability.HandlerOutput>): void;
|
|
548
|
+
checkSignupQueue<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempCheckSignupQueue.QueryParams, ComAtprotoTempCheckSignupQueue.HandlerInput, ComAtprotoTempCheckSignupQueue.HandlerOutput>): void;
|
|
549
|
+
fetchLabels<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempFetchLabels.QueryParams, ComAtprotoTempFetchLabels.HandlerInput, ComAtprotoTempFetchLabels.HandlerOutput>): void;
|
|
550
|
+
requestPhoneVerification<A extends Auth = void>(cfg: MethodConfigOrHandler<A, ComAtprotoTempRequestPhoneVerification.QueryParams, ComAtprotoTempRequestPhoneVerification.HandlerInput, ComAtprotoTempRequestPhoneVerification.HandlerOutput>): void;
|
|
551
|
+
}
|
|
548
552
|
//# sourceMappingURL=index.d.ts.map
|