@atproto/api 0.9.8 → 0.10.0
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 +10 -0
- package/dist/bsky-agent.d.ts +6 -1
- package/dist/client/index.d.ts +30 -9
- package/dist/client/lexicons.d.ts +392 -110
- package/dist/client/types/app/bsky/actor/defs.d.ts +20 -0
- package/dist/client/types/com/atproto/identity/getRecommendedDidCredentials.d.ts +20 -0
- package/dist/client/types/com/atproto/{temp/pushBlob.d.ts → identity/requestPlcOperationSignature.d.ts} +1 -3
- package/dist/client/types/com/atproto/identity/signPlcOperation.d.ts +26 -0
- package/dist/client/types/com/atproto/identity/submitPlcOperation.d.ts +17 -0
- package/dist/client/types/com/atproto/{temp → repo}/importRepo.d.ts +0 -2
- package/dist/client/types/com/atproto/repo/listMissingBlobs.d.ts +28 -0
- package/dist/client/types/com/atproto/server/activateAccount.d.ts +13 -0
- package/dist/client/types/com/atproto/server/checkAccountStatus.d.ts +25 -0
- package/dist/client/types/com/atproto/server/deactivateAccount.d.ts +17 -0
- package/dist/client/types/com/atproto/server/describeServer.d.ts +1 -0
- package/dist/client/types/com/atproto/server/getServiceAuth.d.ts +18 -0
- package/dist/client/types/com/atproto/sync/subscribeRepos.d.ts +8 -0
- package/dist/index.js +991 -538
- package/dist/index.js.map +3 -3
- package/dist/types.d.ts +3 -0
- package/package.json +2 -2
- package/src/bsky-agent.ts +136 -0
- package/src/client/index.ts +140 -39
- package/src/client/lexicons.ts +429 -138
- package/src/client/types/app/bsky/actor/defs.ts +59 -0
- package/src/client/types/app/bsky/feed/post.ts +1 -1
- package/src/client/types/com/atproto/identity/getRecommendedDidCredentials.ts +37 -0
- package/src/client/types/com/atproto/identity/requestPlcOperationSignature.ts +28 -0
- package/src/client/types/com/atproto/identity/signPlcOperation.ts +44 -0
- package/src/client/types/com/atproto/{temp/pushBlob.ts → identity/submitPlcOperation.ts} +6 -6
- package/src/client/types/com/atproto/{temp → repo}/importRepo.ts +1 -5
- package/src/client/types/com/atproto/repo/listMissingBlobs.ts +55 -0
- package/src/client/types/com/atproto/server/activateAccount.ts +28 -0
- package/src/client/types/com/atproto/server/checkAccountStatus.ts +41 -0
- package/src/client/types/com/atproto/server/deactivateAccount.ts +33 -0
- package/src/client/types/com/atproto/server/describeServer.ts +1 -0
- package/src/client/types/com/atproto/server/getServiceAuth.ts +36 -0
- package/src/client/types/com/atproto/sync/subscribeRepos.ts +23 -3
- package/src/types.ts +3 -0
- package/tests/agent.test.ts +1 -0
- package/tests/bsky-agent.test.ts +183 -0
- package/dist/client/types/com/atproto/temp/transferAccount.d.ts +0 -48
- package/src/client/types/com/atproto/temp/transferAccount.ts +0 -92
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atproto/api
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#2170](https://github.com/bluesky-social/atproto/pull/2170) [`4c511b3d9`](https://github.com/bluesky-social/atproto/commit/4c511b3d9de41ffeae3fc11db941e7df04f4468a) Thanks [@dholms](https://github.com/dholms)! - Add lexicons and methods for account migration
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#2195](https://github.com/bluesky-social/atproto/pull/2195) [`b60719480`](https://github.com/bluesky-social/atproto/commit/b60719480f5f00bffd074a40e8ddc03aa93d137d) Thanks [@estrattonbailey](https://github.com/estrattonbailey)! - Add muted words/tags and hidden posts prefs and methods"
|
|
12
|
+
|
|
3
13
|
## 0.9.8
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/bsky-agent.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AtpAgent } from './agent';
|
|
2
|
-
import { AppBskyFeedPost, AppBskyActorProfile } from './client';
|
|
2
|
+
import { AppBskyFeedPost, AppBskyActorProfile, AppBskyActorDefs } from './client';
|
|
3
3
|
import { BskyPreferences, BskyLabelPreference, BskyFeedViewPreference, BskyThreadViewPreference, BskyInterestsPreference } from './types';
|
|
4
4
|
declare global {
|
|
5
5
|
interface Array<T> {
|
|
@@ -85,4 +85,9 @@ export declare class BskyAgent extends AtpAgent {
|
|
|
85
85
|
setFeedViewPrefs(feed: string, pref: Partial<BskyFeedViewPreference>): Promise<void>;
|
|
86
86
|
setThreadViewPrefs(pref: Partial<BskyThreadViewPreference>): Promise<void>;
|
|
87
87
|
setInterestsPref(pref: Partial<BskyInterestsPreference>): Promise<void>;
|
|
88
|
+
upsertMutedWords(mutedWords: AppBskyActorDefs.MutedWord[]): Promise<void>;
|
|
89
|
+
updateMutedWord(mutedWord: AppBskyActorDefs.MutedWord): Promise<void>;
|
|
90
|
+
removeMutedWord(mutedWord: AppBskyActorDefs.MutedWord): Promise<void>;
|
|
91
|
+
hidePost(postUri: string): Promise<void>;
|
|
92
|
+
unhidePost(postUri: string): Promise<void>;
|
|
88
93
|
}
|
package/dist/client/index.d.ts
CHANGED
|
@@ -22,7 +22,11 @@ import * as ComAtprotoAdminUpdateAccountEmail from './types/com/atproto/admin/up
|
|
|
22
22
|
import * as ComAtprotoAdminUpdateAccountHandle from './types/com/atproto/admin/updateAccountHandle';
|
|
23
23
|
import * as ComAtprotoAdminUpdateCommunicationTemplate from './types/com/atproto/admin/updateCommunicationTemplate';
|
|
24
24
|
import * as ComAtprotoAdminUpdateSubjectStatus from './types/com/atproto/admin/updateSubjectStatus';
|
|
25
|
+
import * as ComAtprotoIdentityGetRecommendedDidCredentials from './types/com/atproto/identity/getRecommendedDidCredentials';
|
|
26
|
+
import * as ComAtprotoIdentityRequestPlcOperationSignature from './types/com/atproto/identity/requestPlcOperationSignature';
|
|
25
27
|
import * as ComAtprotoIdentityResolveHandle from './types/com/atproto/identity/resolveHandle';
|
|
28
|
+
import * as ComAtprotoIdentitySignPlcOperation from './types/com/atproto/identity/signPlcOperation';
|
|
29
|
+
import * as ComAtprotoIdentitySubmitPlcOperation from './types/com/atproto/identity/submitPlcOperation';
|
|
26
30
|
import * as ComAtprotoIdentityUpdateHandle from './types/com/atproto/identity/updateHandle';
|
|
27
31
|
import * as ComAtprotoLabelQueryLabels from './types/com/atproto/label/queryLabels';
|
|
28
32
|
import * as ComAtprotoModerationCreateReport from './types/com/atproto/moderation/createReport';
|
|
@@ -31,19 +35,25 @@ import * as ComAtprotoRepoCreateRecord from './types/com/atproto/repo/createReco
|
|
|
31
35
|
import * as ComAtprotoRepoDeleteRecord from './types/com/atproto/repo/deleteRecord';
|
|
32
36
|
import * as ComAtprotoRepoDescribeRepo from './types/com/atproto/repo/describeRepo';
|
|
33
37
|
import * as ComAtprotoRepoGetRecord from './types/com/atproto/repo/getRecord';
|
|
38
|
+
import * as ComAtprotoRepoImportRepo from './types/com/atproto/repo/importRepo';
|
|
39
|
+
import * as ComAtprotoRepoListMissingBlobs from './types/com/atproto/repo/listMissingBlobs';
|
|
34
40
|
import * as ComAtprotoRepoListRecords from './types/com/atproto/repo/listRecords';
|
|
35
41
|
import * as ComAtprotoRepoPutRecord from './types/com/atproto/repo/putRecord';
|
|
36
42
|
import * as ComAtprotoRepoUploadBlob from './types/com/atproto/repo/uploadBlob';
|
|
43
|
+
import * as ComAtprotoServerActivateAccount from './types/com/atproto/server/activateAccount';
|
|
44
|
+
import * as ComAtprotoServerCheckAccountStatus from './types/com/atproto/server/checkAccountStatus';
|
|
37
45
|
import * as ComAtprotoServerConfirmEmail from './types/com/atproto/server/confirmEmail';
|
|
38
46
|
import * as ComAtprotoServerCreateAccount from './types/com/atproto/server/createAccount';
|
|
39
47
|
import * as ComAtprotoServerCreateAppPassword from './types/com/atproto/server/createAppPassword';
|
|
40
48
|
import * as ComAtprotoServerCreateInviteCode from './types/com/atproto/server/createInviteCode';
|
|
41
49
|
import * as ComAtprotoServerCreateInviteCodes from './types/com/atproto/server/createInviteCodes';
|
|
42
50
|
import * as ComAtprotoServerCreateSession from './types/com/atproto/server/createSession';
|
|
51
|
+
import * as ComAtprotoServerDeactivateAccount from './types/com/atproto/server/deactivateAccount';
|
|
43
52
|
import * as ComAtprotoServerDeleteAccount from './types/com/atproto/server/deleteAccount';
|
|
44
53
|
import * as ComAtprotoServerDeleteSession from './types/com/atproto/server/deleteSession';
|
|
45
54
|
import * as ComAtprotoServerDescribeServer from './types/com/atproto/server/describeServer';
|
|
46
55
|
import * as ComAtprotoServerGetAccountInviteCodes from './types/com/atproto/server/getAccountInviteCodes';
|
|
56
|
+
import * as ComAtprotoServerGetServiceAuth from './types/com/atproto/server/getServiceAuth';
|
|
47
57
|
import * as ComAtprotoServerGetSession from './types/com/atproto/server/getSession';
|
|
48
58
|
import * as ComAtprotoServerListAppPasswords from './types/com/atproto/server/listAppPasswords';
|
|
49
59
|
import * as ComAtprotoServerRefreshSession from './types/com/atproto/server/refreshSession';
|
|
@@ -68,10 +78,7 @@ import * as ComAtprotoSyncNotifyOfUpdate from './types/com/atproto/sync/notifyOf
|
|
|
68
78
|
import * as ComAtprotoSyncRequestCrawl from './types/com/atproto/sync/requestCrawl';
|
|
69
79
|
import * as ComAtprotoTempCheckSignupQueue from './types/com/atproto/temp/checkSignupQueue';
|
|
70
80
|
import * as ComAtprotoTempFetchLabels from './types/com/atproto/temp/fetchLabels';
|
|
71
|
-
import * as ComAtprotoTempImportRepo from './types/com/atproto/temp/importRepo';
|
|
72
|
-
import * as ComAtprotoTempPushBlob from './types/com/atproto/temp/pushBlob';
|
|
73
81
|
import * as ComAtprotoTempRequestPhoneVerification from './types/com/atproto/temp/requestPhoneVerification';
|
|
74
|
-
import * as ComAtprotoTempTransferAccount from './types/com/atproto/temp/transferAccount';
|
|
75
82
|
import * as AppBskyActorGetPreferences from './types/app/bsky/actor/getPreferences';
|
|
76
83
|
import * as AppBskyActorGetProfile from './types/app/bsky/actor/getProfile';
|
|
77
84
|
import * as AppBskyActorGetProfiles from './types/app/bsky/actor/getProfiles';
|
|
@@ -152,7 +159,11 @@ export * as ComAtprotoAdminUpdateAccountEmail from './types/com/atproto/admin/up
|
|
|
152
159
|
export * as ComAtprotoAdminUpdateAccountHandle from './types/com/atproto/admin/updateAccountHandle';
|
|
153
160
|
export * as ComAtprotoAdminUpdateCommunicationTemplate from './types/com/atproto/admin/updateCommunicationTemplate';
|
|
154
161
|
export * as ComAtprotoAdminUpdateSubjectStatus from './types/com/atproto/admin/updateSubjectStatus';
|
|
162
|
+
export * as ComAtprotoIdentityGetRecommendedDidCredentials from './types/com/atproto/identity/getRecommendedDidCredentials';
|
|
163
|
+
export * as ComAtprotoIdentityRequestPlcOperationSignature from './types/com/atproto/identity/requestPlcOperationSignature';
|
|
155
164
|
export * as ComAtprotoIdentityResolveHandle from './types/com/atproto/identity/resolveHandle';
|
|
165
|
+
export * as ComAtprotoIdentitySignPlcOperation from './types/com/atproto/identity/signPlcOperation';
|
|
166
|
+
export * as ComAtprotoIdentitySubmitPlcOperation from './types/com/atproto/identity/submitPlcOperation';
|
|
156
167
|
export * as ComAtprotoIdentityUpdateHandle from './types/com/atproto/identity/updateHandle';
|
|
157
168
|
export * as ComAtprotoLabelDefs from './types/com/atproto/label/defs';
|
|
158
169
|
export * as ComAtprotoLabelQueryLabels from './types/com/atproto/label/queryLabels';
|
|
@@ -164,21 +175,27 @@ export * as ComAtprotoRepoCreateRecord from './types/com/atproto/repo/createReco
|
|
|
164
175
|
export * as ComAtprotoRepoDeleteRecord from './types/com/atproto/repo/deleteRecord';
|
|
165
176
|
export * as ComAtprotoRepoDescribeRepo from './types/com/atproto/repo/describeRepo';
|
|
166
177
|
export * as ComAtprotoRepoGetRecord from './types/com/atproto/repo/getRecord';
|
|
178
|
+
export * as ComAtprotoRepoImportRepo from './types/com/atproto/repo/importRepo';
|
|
179
|
+
export * as ComAtprotoRepoListMissingBlobs from './types/com/atproto/repo/listMissingBlobs';
|
|
167
180
|
export * as ComAtprotoRepoListRecords from './types/com/atproto/repo/listRecords';
|
|
168
181
|
export * as ComAtprotoRepoPutRecord from './types/com/atproto/repo/putRecord';
|
|
169
182
|
export * as ComAtprotoRepoStrongRef from './types/com/atproto/repo/strongRef';
|
|
170
183
|
export * as ComAtprotoRepoUploadBlob from './types/com/atproto/repo/uploadBlob';
|
|
184
|
+
export * as ComAtprotoServerActivateAccount from './types/com/atproto/server/activateAccount';
|
|
185
|
+
export * as ComAtprotoServerCheckAccountStatus from './types/com/atproto/server/checkAccountStatus';
|
|
171
186
|
export * as ComAtprotoServerConfirmEmail from './types/com/atproto/server/confirmEmail';
|
|
172
187
|
export * as ComAtprotoServerCreateAccount from './types/com/atproto/server/createAccount';
|
|
173
188
|
export * as ComAtprotoServerCreateAppPassword from './types/com/atproto/server/createAppPassword';
|
|
174
189
|
export * as ComAtprotoServerCreateInviteCode from './types/com/atproto/server/createInviteCode';
|
|
175
190
|
export * as ComAtprotoServerCreateInviteCodes from './types/com/atproto/server/createInviteCodes';
|
|
176
191
|
export * as ComAtprotoServerCreateSession from './types/com/atproto/server/createSession';
|
|
192
|
+
export * as ComAtprotoServerDeactivateAccount from './types/com/atproto/server/deactivateAccount';
|
|
177
193
|
export * as ComAtprotoServerDefs from './types/com/atproto/server/defs';
|
|
178
194
|
export * as ComAtprotoServerDeleteAccount from './types/com/atproto/server/deleteAccount';
|
|
179
195
|
export * as ComAtprotoServerDeleteSession from './types/com/atproto/server/deleteSession';
|
|
180
196
|
export * as ComAtprotoServerDescribeServer from './types/com/atproto/server/describeServer';
|
|
181
197
|
export * as ComAtprotoServerGetAccountInviteCodes from './types/com/atproto/server/getAccountInviteCodes';
|
|
198
|
+
export * as ComAtprotoServerGetServiceAuth from './types/com/atproto/server/getServiceAuth';
|
|
182
199
|
export * as ComAtprotoServerGetSession from './types/com/atproto/server/getSession';
|
|
183
200
|
export * as ComAtprotoServerListAppPasswords from './types/com/atproto/server/listAppPasswords';
|
|
184
201
|
export * as ComAtprotoServerRefreshSession from './types/com/atproto/server/refreshSession';
|
|
@@ -204,10 +221,7 @@ export * as ComAtprotoSyncRequestCrawl from './types/com/atproto/sync/requestCra
|
|
|
204
221
|
export * as ComAtprotoSyncSubscribeRepos from './types/com/atproto/sync/subscribeRepos';
|
|
205
222
|
export * as ComAtprotoTempCheckSignupQueue from './types/com/atproto/temp/checkSignupQueue';
|
|
206
223
|
export * as ComAtprotoTempFetchLabels from './types/com/atproto/temp/fetchLabels';
|
|
207
|
-
export * as ComAtprotoTempImportRepo from './types/com/atproto/temp/importRepo';
|
|
208
|
-
export * as ComAtprotoTempPushBlob from './types/com/atproto/temp/pushBlob';
|
|
209
224
|
export * as ComAtprotoTempRequestPhoneVerification from './types/com/atproto/temp/requestPhoneVerification';
|
|
210
|
-
export * as ComAtprotoTempTransferAccount from './types/com/atproto/temp/transferAccount';
|
|
211
225
|
export * as AppBskyActorDefs from './types/app/bsky/actor/defs';
|
|
212
226
|
export * as AppBskyActorGetPreferences from './types/app/bsky/actor/getPreferences';
|
|
213
227
|
export * as AppBskyActorGetProfile from './types/app/bsky/actor/getProfile';
|
|
@@ -351,7 +365,11 @@ export declare class ComAtprotoAdminNS {
|
|
|
351
365
|
export declare class ComAtprotoIdentityNS {
|
|
352
366
|
_service: AtpServiceClient;
|
|
353
367
|
constructor(service: AtpServiceClient);
|
|
368
|
+
getRecommendedDidCredentials(params?: ComAtprotoIdentityGetRecommendedDidCredentials.QueryParams, opts?: ComAtprotoIdentityGetRecommendedDidCredentials.CallOptions): Promise<ComAtprotoIdentityGetRecommendedDidCredentials.Response>;
|
|
369
|
+
requestPlcOperationSignature(data?: ComAtprotoIdentityRequestPlcOperationSignature.InputSchema, opts?: ComAtprotoIdentityRequestPlcOperationSignature.CallOptions): Promise<ComAtprotoIdentityRequestPlcOperationSignature.Response>;
|
|
354
370
|
resolveHandle(params?: ComAtprotoIdentityResolveHandle.QueryParams, opts?: ComAtprotoIdentityResolveHandle.CallOptions): Promise<ComAtprotoIdentityResolveHandle.Response>;
|
|
371
|
+
signPlcOperation(data?: ComAtprotoIdentitySignPlcOperation.InputSchema, opts?: ComAtprotoIdentitySignPlcOperation.CallOptions): Promise<ComAtprotoIdentitySignPlcOperation.Response>;
|
|
372
|
+
submitPlcOperation(data?: ComAtprotoIdentitySubmitPlcOperation.InputSchema, opts?: ComAtprotoIdentitySubmitPlcOperation.CallOptions): Promise<ComAtprotoIdentitySubmitPlcOperation.Response>;
|
|
355
373
|
updateHandle(data?: ComAtprotoIdentityUpdateHandle.InputSchema, opts?: ComAtprotoIdentityUpdateHandle.CallOptions): Promise<ComAtprotoIdentityUpdateHandle.Response>;
|
|
356
374
|
}
|
|
357
375
|
export declare class ComAtprotoLabelNS {
|
|
@@ -372,6 +390,8 @@ export declare class ComAtprotoRepoNS {
|
|
|
372
390
|
deleteRecord(data?: ComAtprotoRepoDeleteRecord.InputSchema, opts?: ComAtprotoRepoDeleteRecord.CallOptions): Promise<ComAtprotoRepoDeleteRecord.Response>;
|
|
373
391
|
describeRepo(params?: ComAtprotoRepoDescribeRepo.QueryParams, opts?: ComAtprotoRepoDescribeRepo.CallOptions): Promise<ComAtprotoRepoDescribeRepo.Response>;
|
|
374
392
|
getRecord(params?: ComAtprotoRepoGetRecord.QueryParams, opts?: ComAtprotoRepoGetRecord.CallOptions): Promise<ComAtprotoRepoGetRecord.Response>;
|
|
393
|
+
importRepo(data?: ComAtprotoRepoImportRepo.InputSchema, opts?: ComAtprotoRepoImportRepo.CallOptions): Promise<ComAtprotoRepoImportRepo.Response>;
|
|
394
|
+
listMissingBlobs(params?: ComAtprotoRepoListMissingBlobs.QueryParams, opts?: ComAtprotoRepoListMissingBlobs.CallOptions): Promise<ComAtprotoRepoListMissingBlobs.Response>;
|
|
375
395
|
listRecords(params?: ComAtprotoRepoListRecords.QueryParams, opts?: ComAtprotoRepoListRecords.CallOptions): Promise<ComAtprotoRepoListRecords.Response>;
|
|
376
396
|
putRecord(data?: ComAtprotoRepoPutRecord.InputSchema, opts?: ComAtprotoRepoPutRecord.CallOptions): Promise<ComAtprotoRepoPutRecord.Response>;
|
|
377
397
|
uploadBlob(data?: ComAtprotoRepoUploadBlob.InputSchema, opts?: ComAtprotoRepoUploadBlob.CallOptions): Promise<ComAtprotoRepoUploadBlob.Response>;
|
|
@@ -379,16 +399,20 @@ export declare class ComAtprotoRepoNS {
|
|
|
379
399
|
export declare class ComAtprotoServerNS {
|
|
380
400
|
_service: AtpServiceClient;
|
|
381
401
|
constructor(service: AtpServiceClient);
|
|
402
|
+
activateAccount(data?: ComAtprotoServerActivateAccount.InputSchema, opts?: ComAtprotoServerActivateAccount.CallOptions): Promise<ComAtprotoServerActivateAccount.Response>;
|
|
403
|
+
checkAccountStatus(params?: ComAtprotoServerCheckAccountStatus.QueryParams, opts?: ComAtprotoServerCheckAccountStatus.CallOptions): Promise<ComAtprotoServerCheckAccountStatus.Response>;
|
|
382
404
|
confirmEmail(data?: ComAtprotoServerConfirmEmail.InputSchema, opts?: ComAtprotoServerConfirmEmail.CallOptions): Promise<ComAtprotoServerConfirmEmail.Response>;
|
|
383
405
|
createAccount(data?: ComAtprotoServerCreateAccount.InputSchema, opts?: ComAtprotoServerCreateAccount.CallOptions): Promise<ComAtprotoServerCreateAccount.Response>;
|
|
384
406
|
createAppPassword(data?: ComAtprotoServerCreateAppPassword.InputSchema, opts?: ComAtprotoServerCreateAppPassword.CallOptions): Promise<ComAtprotoServerCreateAppPassword.Response>;
|
|
385
407
|
createInviteCode(data?: ComAtprotoServerCreateInviteCode.InputSchema, opts?: ComAtprotoServerCreateInviteCode.CallOptions): Promise<ComAtprotoServerCreateInviteCode.Response>;
|
|
386
408
|
createInviteCodes(data?: ComAtprotoServerCreateInviteCodes.InputSchema, opts?: ComAtprotoServerCreateInviteCodes.CallOptions): Promise<ComAtprotoServerCreateInviteCodes.Response>;
|
|
387
409
|
createSession(data?: ComAtprotoServerCreateSession.InputSchema, opts?: ComAtprotoServerCreateSession.CallOptions): Promise<ComAtprotoServerCreateSession.Response>;
|
|
410
|
+
deactivateAccount(data?: ComAtprotoServerDeactivateAccount.InputSchema, opts?: ComAtprotoServerDeactivateAccount.CallOptions): Promise<ComAtprotoServerDeactivateAccount.Response>;
|
|
388
411
|
deleteAccount(data?: ComAtprotoServerDeleteAccount.InputSchema, opts?: ComAtprotoServerDeleteAccount.CallOptions): Promise<ComAtprotoServerDeleteAccount.Response>;
|
|
389
412
|
deleteSession(data?: ComAtprotoServerDeleteSession.InputSchema, opts?: ComAtprotoServerDeleteSession.CallOptions): Promise<ComAtprotoServerDeleteSession.Response>;
|
|
390
413
|
describeServer(params?: ComAtprotoServerDescribeServer.QueryParams, opts?: ComAtprotoServerDescribeServer.CallOptions): Promise<ComAtprotoServerDescribeServer.Response>;
|
|
391
414
|
getAccountInviteCodes(params?: ComAtprotoServerGetAccountInviteCodes.QueryParams, opts?: ComAtprotoServerGetAccountInviteCodes.CallOptions): Promise<ComAtprotoServerGetAccountInviteCodes.Response>;
|
|
415
|
+
getServiceAuth(params?: ComAtprotoServerGetServiceAuth.QueryParams, opts?: ComAtprotoServerGetServiceAuth.CallOptions): Promise<ComAtprotoServerGetServiceAuth.Response>;
|
|
392
416
|
getSession(params?: ComAtprotoServerGetSession.QueryParams, opts?: ComAtprotoServerGetSession.CallOptions): Promise<ComAtprotoServerGetSession.Response>;
|
|
393
417
|
listAppPasswords(params?: ComAtprotoServerListAppPasswords.QueryParams, opts?: ComAtprotoServerListAppPasswords.CallOptions): Promise<ComAtprotoServerListAppPasswords.Response>;
|
|
394
418
|
refreshSession(data?: ComAtprotoServerRefreshSession.InputSchema, opts?: ComAtprotoServerRefreshSession.CallOptions): Promise<ComAtprotoServerRefreshSession.Response>;
|
|
@@ -421,10 +445,7 @@ export declare class ComAtprotoTempNS {
|
|
|
421
445
|
constructor(service: AtpServiceClient);
|
|
422
446
|
checkSignupQueue(params?: ComAtprotoTempCheckSignupQueue.QueryParams, opts?: ComAtprotoTempCheckSignupQueue.CallOptions): Promise<ComAtprotoTempCheckSignupQueue.Response>;
|
|
423
447
|
fetchLabels(params?: ComAtprotoTempFetchLabels.QueryParams, opts?: ComAtprotoTempFetchLabels.CallOptions): Promise<ComAtprotoTempFetchLabels.Response>;
|
|
424
|
-
importRepo(data?: ComAtprotoTempImportRepo.InputSchema, opts?: ComAtprotoTempImportRepo.CallOptions): Promise<ComAtprotoTempImportRepo.Response>;
|
|
425
|
-
pushBlob(data?: ComAtprotoTempPushBlob.InputSchema, opts?: ComAtprotoTempPushBlob.CallOptions): Promise<ComAtprotoTempPushBlob.Response>;
|
|
426
448
|
requestPhoneVerification(data?: ComAtprotoTempRequestPhoneVerification.InputSchema, opts?: ComAtprotoTempRequestPhoneVerification.CallOptions): Promise<ComAtprotoTempRequestPhoneVerification.Response>;
|
|
427
|
-
transferAccount(data?: ComAtprotoTempTransferAccount.InputSchema, opts?: ComAtprotoTempTransferAccount.CallOptions): Promise<ComAtprotoTempTransferAccount.Response>;
|
|
428
449
|
}
|
|
429
450
|
export declare class AppNS {
|
|
430
451
|
_service: AtpServiceClient;
|