@clioplaylists/clio 0.1.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/dist/.env +7 -0
- package/dist/api/com/clioplaylists/alpha/actor/getProfile.js +37 -0
- package/dist/api/com/clioplaylists/alpha/feed/getSongs.js +37 -0
- package/dist/api/health.js +32 -0
- package/dist/api/index.js +43 -0
- package/dist/api/util.js +17 -0
- package/dist/auth-verifier.js +473 -0
- package/dist/client.js +40 -0
- package/dist/config.js +65 -0
- package/dist/context.js +19 -0
- package/dist/dataplane/bsync/index.js +150 -0
- package/dist/dataplane/client.js +165 -0
- package/dist/dataplane/index.js +18 -0
- package/dist/dataplane/server/background.js +51 -0
- package/dist/dataplane/server/db/database-schema.js +2 -0
- package/dist/dataplane/server/db/db.js +228 -0
- package/dist/dataplane/server/db/index.js +17 -0
- package/dist/dataplane/server/db/migrations/20230309T045948368Z-init.js +117 -0
- package/dist/dataplane/server/db/migrations/20230420T211446071Z-did-cache.js +15 -0
- package/dist/dataplane/server/db/migrations/index.js +41 -0
- package/dist/dataplane/server/db/migrations/provider.js +31 -0
- package/dist/dataplane/server/db/pagination.js +144 -0
- package/dist/dataplane/server/db/tables/actor-sync.js +4 -0
- package/dist/dataplane/server/db/tables/actor.js +4 -0
- package/dist/dataplane/server/db/tables/artist-list-item.js +4 -0
- package/dist/dataplane/server/db/tables/artist.js +4 -0
- package/dist/dataplane/server/db/tables/playlist-idea.js +4 -0
- package/dist/dataplane/server/db/tables/playlist-item.js +4 -0
- package/dist/dataplane/server/db/tables/playlist.js +4 -0
- package/dist/dataplane/server/db/tables/profile.js +4 -0
- package/dist/dataplane/server/db/tables/record.js +4 -0
- package/dist/dataplane/server/db/tables/song.js +4 -0
- package/dist/dataplane/server/db/types.js +2 -0
- package/dist/dataplane/server/db/util.js +48 -0
- package/dist/dataplane/server/index.js +52 -0
- package/dist/dataplane/server/indexing/index.js +321 -0
- package/dist/dataplane/server/indexing/plugins/playlist-idea.js +163 -0
- package/dist/dataplane/server/indexing/plugins/profile.js +81 -0
- package/dist/dataplane/server/indexing/processor.js +90 -0
- package/dist/dataplane/server/routes/blocks.js +95 -0
- package/dist/dataplane/server/routes/feed-gens.js +56 -0
- package/dist/dataplane/server/routes/feeds.js +128 -0
- package/dist/dataplane/server/routes/follows.js +122 -0
- package/dist/dataplane/server/routes/identity.js +56 -0
- package/dist/dataplane/server/routes/index.js +19 -0
- package/dist/dataplane/server/routes/interactions.js +111 -0
- package/dist/dataplane/server/routes/labels.js +73 -0
- package/dist/dataplane/server/routes/likes.js +76 -0
- package/dist/dataplane/server/routes/lists.js +77 -0
- package/dist/dataplane/server/routes/moderation.js +92 -0
- package/dist/dataplane/server/routes/mutes.js +166 -0
- package/dist/dataplane/server/routes/notifs.js +137 -0
- package/dist/dataplane/server/routes/posts.js +19 -0
- package/dist/dataplane/server/routes/profile.js +61 -0
- package/dist/dataplane/server/routes/quotes.js +26 -0
- package/dist/dataplane/server/routes/records.js +88 -0
- package/dist/dataplane/server/routes/relationships.js +157 -0
- package/dist/dataplane/server/routes/reposts.js +59 -0
- package/dist/dataplane/server/routes/search.js +70 -0
- package/dist/dataplane/server/routes/starter-packs.js +24 -0
- package/dist/dataplane/server/routes/suggestions.js +134 -0
- package/dist/dataplane/server/routes/sync.js +14 -0
- package/dist/dataplane/server/routes/threads.js +31 -0
- package/dist/dataplane/server/subscription.js +114 -0
- package/dist/dataplane/server/util.js +117 -0
- package/dist/error.js +14 -0
- package/dist/index.js +115 -0
- package/dist/lexicons/index.js +638 -0
- package/dist/lexicons/lexicons.js +4551 -0
- package/dist/lexicons/types/com/atproto/admin/defs.js +54 -0
- package/dist/lexicons/types/com/atproto/admin/deleteAccount.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/disableAccountInvites.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/disableInviteCodes.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/enableAccountInvites.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/getAccountInfo.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/getAccountInfos.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/getInviteCodes.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/getSubjectStatus.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/searchAccounts.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/sendEmail.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/updateAccountEmail.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/updateAccountHandle.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/updateAccountPassword.js +2 -0
- package/dist/lexicons/types/com/atproto/admin/updateSubjectStatus.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/defs.js +14 -0
- package/dist/lexicons/types/com/atproto/identity/getRecommendedDidCredentials.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/refreshIdentity.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/requestPlcOperationSignature.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/resolveDid.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/resolveHandle.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/resolveIdentity.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/signPlcOperation.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/submitPlcOperation.js +2 -0
- package/dist/lexicons/types/com/atproto/identity/updateHandle.js +2 -0
- package/dist/lexicons/types/com/atproto/label/defs.js +54 -0
- package/dist/lexicons/types/com/atproto/label/queryLabels.js +2 -0
- package/dist/lexicons/types/com/atproto/label/subscribeLabels.js +24 -0
- package/dist/lexicons/types/com/atproto/lexicon/schema.js +15 -0
- package/dist/lexicons/types/com/atproto/moderation/createReport.js +2 -0
- package/dist/lexicons/types/com/atproto/moderation/defs.js +20 -0
- package/dist/lexicons/types/com/atproto/repo/applyWrites.js +64 -0
- package/dist/lexicons/types/com/atproto/repo/createRecord.js +2 -0
- package/dist/lexicons/types/com/atproto/repo/defs.js +14 -0
- package/dist/lexicons/types/com/atproto/repo/deleteRecord.js +2 -0
- package/dist/lexicons/types/com/atproto/repo/describeRepo.js +2 -0
- package/dist/lexicons/types/com/atproto/repo/getRecord.js +2 -0
- package/dist/lexicons/types/com/atproto/repo/importRepo.js +2 -0
- package/dist/lexicons/types/com/atproto/repo/listMissingBlobs.js +14 -0
- package/dist/lexicons/types/com/atproto/repo/listRecords.js +14 -0
- package/dist/lexicons/types/com/atproto/repo/putRecord.js +2 -0
- package/dist/lexicons/types/com/atproto/repo/strongRef.js +15 -0
- package/dist/lexicons/types/com/atproto/repo/uploadBlob.js +2 -0
- package/dist/lexicons/types/com/atproto/server/activateAccount.js +2 -0
- package/dist/lexicons/types/com/atproto/server/checkAccountStatus.js +2 -0
- package/dist/lexicons/types/com/atproto/server/confirmEmail.js +2 -0
- package/dist/lexicons/types/com/atproto/server/createAccount.js +2 -0
- package/dist/lexicons/types/com/atproto/server/createAppPassword.js +14 -0
- package/dist/lexicons/types/com/atproto/server/createInviteCode.js +2 -0
- package/dist/lexicons/types/com/atproto/server/createInviteCodes.js +14 -0
- package/dist/lexicons/types/com/atproto/server/createSession.js +2 -0
- package/dist/lexicons/types/com/atproto/server/deactivateAccount.js +2 -0
- package/dist/lexicons/types/com/atproto/server/defs.js +24 -0
- package/dist/lexicons/types/com/atproto/server/deleteAccount.js +2 -0
- package/dist/lexicons/types/com/atproto/server/deleteSession.js +2 -0
- package/dist/lexicons/types/com/atproto/server/describeServer.js +24 -0
- package/dist/lexicons/types/com/atproto/server/getAccountInviteCodes.js +2 -0
- package/dist/lexicons/types/com/atproto/server/getServiceAuth.js +2 -0
- package/dist/lexicons/types/com/atproto/server/getSession.js +2 -0
- package/dist/lexicons/types/com/atproto/server/listAppPasswords.js +14 -0
- package/dist/lexicons/types/com/atproto/server/refreshSession.js +2 -0
- package/dist/lexicons/types/com/atproto/server/requestAccountDelete.js +2 -0
- package/dist/lexicons/types/com/atproto/server/requestEmailConfirmation.js +2 -0
- package/dist/lexicons/types/com/atproto/server/requestEmailUpdate.js +2 -0
- package/dist/lexicons/types/com/atproto/server/requestPasswordReset.js +2 -0
- package/dist/lexicons/types/com/atproto/server/reserveSigningKey.js +2 -0
- package/dist/lexicons/types/com/atproto/server/resetPassword.js +2 -0
- package/dist/lexicons/types/com/atproto/server/revokeAppPassword.js +2 -0
- package/dist/lexicons/types/com/atproto/server/updateEmail.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getBlob.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getBlocks.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getCheckout.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getHead.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getLatestCommit.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getRecord.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getRepo.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/getRepoStatus.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/listBlobs.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/listRepos.js +14 -0
- package/dist/lexicons/types/com/atproto/sync/listReposByCollection.js +14 -0
- package/dist/lexicons/types/com/atproto/sync/notifyOfUpdate.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/requestCrawl.js +2 -0
- package/dist/lexicons/types/com/atproto/sync/subscribeRepos.js +64 -0
- package/dist/lexicons/types/com/atproto/temp/addReservedHandle.js +2 -0
- package/dist/lexicons/types/com/atproto/temp/checkSignupQueue.js +2 -0
- package/dist/lexicons/types/com/atproto/temp/fetchLabels.js +2 -0
- package/dist/lexicons/types/com/atproto/temp/requestPhoneVerification.js +2 -0
- package/dist/lexicons/types/com/clioplaylists/alpha/actor/profile.js +15 -0
- package/dist/lexicons/types/com/clioplaylists/alpha/feed/defs.js +24 -0
- package/dist/lexicons/types/com/clioplaylists/alpha/feed/getSongs.js +2 -0
- package/dist/lexicons/types/com/clioplaylists/alpha/feed/playlistIdea.js +35 -0
- package/dist/lexicons/types/com/clioplaylists/alpha/feed/song.js +25 -0
- package/dist/lexicons/util.js +13 -0
- package/dist/logger.js +26 -0
- package/dist/rpc/clio_connect.js +110 -0
- package/dist/rpc/clio_pb.js +1365 -0
- package/dist/start.js +13 -0
- package/dist/util/retry.js +16 -0
- package/dist/util/uris.js +7 -0
- package/dist/util.js +119 -0
- package/package.json +73 -0
|
@@ -0,0 +1,638 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ComAtprotoTempNS = exports.ComAtprotoSyncNS = exports.ComAtprotoServerNS = exports.ComAtprotoRepoNS = exports.ComAtprotoModerationNS = exports.ComAtprotoLexiconNS = exports.ComAtprotoLabelNS = exports.ComAtprotoIdentityNS = exports.ComAtprotoAdminNS = exports.ComAtprotoNS = exports.ComClioplaylistsAlphaFeedNS = exports.ComClioplaylistsAlphaActorNS = exports.ComClioplaylistsAlphaNS = exports.ComClioplaylistsNS = exports.ComNS = exports.Server = exports.COM_ATPROTO_MODERATION = void 0;
|
|
4
|
+
exports.createServer = createServer;
|
|
5
|
+
/**
|
|
6
|
+
* GENERATED CODE - DO NOT MODIFY
|
|
7
|
+
*/
|
|
8
|
+
const xrpc_server_1 = require("@atproto/xrpc-server");
|
|
9
|
+
const lexicons_1 = require("./lexicons");
|
|
10
|
+
exports.COM_ATPROTO_MODERATION = {
|
|
11
|
+
DefsReasonSpam: 'com.atproto.moderation.defs#reasonSpam',
|
|
12
|
+
DefsReasonViolation: 'com.atproto.moderation.defs#reasonViolation',
|
|
13
|
+
DefsReasonMisleading: 'com.atproto.moderation.defs#reasonMisleading',
|
|
14
|
+
DefsReasonSexual: 'com.atproto.moderation.defs#reasonSexual',
|
|
15
|
+
DefsReasonRude: 'com.atproto.moderation.defs#reasonRude',
|
|
16
|
+
DefsReasonOther: 'com.atproto.moderation.defs#reasonOther',
|
|
17
|
+
DefsReasonAppeal: 'com.atproto.moderation.defs#reasonAppeal',
|
|
18
|
+
};
|
|
19
|
+
function createServer(options) {
|
|
20
|
+
return new Server(options);
|
|
21
|
+
}
|
|
22
|
+
class Server {
|
|
23
|
+
constructor(options) {
|
|
24
|
+
Object.defineProperty(this, "xrpc", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
configurable: true,
|
|
27
|
+
writable: true,
|
|
28
|
+
value: void 0
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(this, "com", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
configurable: true,
|
|
33
|
+
writable: true,
|
|
34
|
+
value: void 0
|
|
35
|
+
});
|
|
36
|
+
this.xrpc = (0, xrpc_server_1.createServer)(lexicons_1.schemas, options);
|
|
37
|
+
this.com = new ComNS(this);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.Server = Server;
|
|
41
|
+
class ComNS {
|
|
42
|
+
constructor(server) {
|
|
43
|
+
Object.defineProperty(this, "_server", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
configurable: true,
|
|
46
|
+
writable: true,
|
|
47
|
+
value: void 0
|
|
48
|
+
});
|
|
49
|
+
Object.defineProperty(this, "clioplaylists", {
|
|
50
|
+
enumerable: true,
|
|
51
|
+
configurable: true,
|
|
52
|
+
writable: true,
|
|
53
|
+
value: void 0
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(this, "atproto", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
configurable: true,
|
|
58
|
+
writable: true,
|
|
59
|
+
value: void 0
|
|
60
|
+
});
|
|
61
|
+
this._server = server;
|
|
62
|
+
this.clioplaylists = new ComClioplaylistsNS(server);
|
|
63
|
+
this.atproto = new ComAtprotoNS(server);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
exports.ComNS = ComNS;
|
|
67
|
+
class ComClioplaylistsNS {
|
|
68
|
+
constructor(server) {
|
|
69
|
+
Object.defineProperty(this, "_server", {
|
|
70
|
+
enumerable: true,
|
|
71
|
+
configurable: true,
|
|
72
|
+
writable: true,
|
|
73
|
+
value: void 0
|
|
74
|
+
});
|
|
75
|
+
Object.defineProperty(this, "alpha", {
|
|
76
|
+
enumerable: true,
|
|
77
|
+
configurable: true,
|
|
78
|
+
writable: true,
|
|
79
|
+
value: void 0
|
|
80
|
+
});
|
|
81
|
+
this._server = server;
|
|
82
|
+
this.alpha = new ComClioplaylistsAlphaNS(server);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
exports.ComClioplaylistsNS = ComClioplaylistsNS;
|
|
86
|
+
class ComClioplaylistsAlphaNS {
|
|
87
|
+
constructor(server) {
|
|
88
|
+
Object.defineProperty(this, "_server", {
|
|
89
|
+
enumerable: true,
|
|
90
|
+
configurable: true,
|
|
91
|
+
writable: true,
|
|
92
|
+
value: void 0
|
|
93
|
+
});
|
|
94
|
+
Object.defineProperty(this, "actor", {
|
|
95
|
+
enumerable: true,
|
|
96
|
+
configurable: true,
|
|
97
|
+
writable: true,
|
|
98
|
+
value: void 0
|
|
99
|
+
});
|
|
100
|
+
Object.defineProperty(this, "feed", {
|
|
101
|
+
enumerable: true,
|
|
102
|
+
configurable: true,
|
|
103
|
+
writable: true,
|
|
104
|
+
value: void 0
|
|
105
|
+
});
|
|
106
|
+
this._server = server;
|
|
107
|
+
this.actor = new ComClioplaylistsAlphaActorNS(server);
|
|
108
|
+
this.feed = new ComClioplaylistsAlphaFeedNS(server);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
exports.ComClioplaylistsAlphaNS = ComClioplaylistsAlphaNS;
|
|
112
|
+
class ComClioplaylistsAlphaActorNS {
|
|
113
|
+
constructor(server) {
|
|
114
|
+
Object.defineProperty(this, "_server", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
configurable: true,
|
|
117
|
+
writable: true,
|
|
118
|
+
value: void 0
|
|
119
|
+
});
|
|
120
|
+
this._server = server;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
exports.ComClioplaylistsAlphaActorNS = ComClioplaylistsAlphaActorNS;
|
|
124
|
+
class ComClioplaylistsAlphaFeedNS {
|
|
125
|
+
constructor(server) {
|
|
126
|
+
Object.defineProperty(this, "_server", {
|
|
127
|
+
enumerable: true,
|
|
128
|
+
configurable: true,
|
|
129
|
+
writable: true,
|
|
130
|
+
value: void 0
|
|
131
|
+
});
|
|
132
|
+
this._server = server;
|
|
133
|
+
}
|
|
134
|
+
getSongs(cfg) {
|
|
135
|
+
const nsid = 'com.clioplaylists.alpha.feed.getSongs'; // @ts-ignore
|
|
136
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
exports.ComClioplaylistsAlphaFeedNS = ComClioplaylistsAlphaFeedNS;
|
|
140
|
+
class ComAtprotoNS {
|
|
141
|
+
constructor(server) {
|
|
142
|
+
Object.defineProperty(this, "_server", {
|
|
143
|
+
enumerable: true,
|
|
144
|
+
configurable: true,
|
|
145
|
+
writable: true,
|
|
146
|
+
value: void 0
|
|
147
|
+
});
|
|
148
|
+
Object.defineProperty(this, "admin", {
|
|
149
|
+
enumerable: true,
|
|
150
|
+
configurable: true,
|
|
151
|
+
writable: true,
|
|
152
|
+
value: void 0
|
|
153
|
+
});
|
|
154
|
+
Object.defineProperty(this, "identity", {
|
|
155
|
+
enumerable: true,
|
|
156
|
+
configurable: true,
|
|
157
|
+
writable: true,
|
|
158
|
+
value: void 0
|
|
159
|
+
});
|
|
160
|
+
Object.defineProperty(this, "label", {
|
|
161
|
+
enumerable: true,
|
|
162
|
+
configurable: true,
|
|
163
|
+
writable: true,
|
|
164
|
+
value: void 0
|
|
165
|
+
});
|
|
166
|
+
Object.defineProperty(this, "lexicon", {
|
|
167
|
+
enumerable: true,
|
|
168
|
+
configurable: true,
|
|
169
|
+
writable: true,
|
|
170
|
+
value: void 0
|
|
171
|
+
});
|
|
172
|
+
Object.defineProperty(this, "moderation", {
|
|
173
|
+
enumerable: true,
|
|
174
|
+
configurable: true,
|
|
175
|
+
writable: true,
|
|
176
|
+
value: void 0
|
|
177
|
+
});
|
|
178
|
+
Object.defineProperty(this, "repo", {
|
|
179
|
+
enumerable: true,
|
|
180
|
+
configurable: true,
|
|
181
|
+
writable: true,
|
|
182
|
+
value: void 0
|
|
183
|
+
});
|
|
184
|
+
Object.defineProperty(this, "server", {
|
|
185
|
+
enumerable: true,
|
|
186
|
+
configurable: true,
|
|
187
|
+
writable: true,
|
|
188
|
+
value: void 0
|
|
189
|
+
});
|
|
190
|
+
Object.defineProperty(this, "sync", {
|
|
191
|
+
enumerable: true,
|
|
192
|
+
configurable: true,
|
|
193
|
+
writable: true,
|
|
194
|
+
value: void 0
|
|
195
|
+
});
|
|
196
|
+
Object.defineProperty(this, "temp", {
|
|
197
|
+
enumerable: true,
|
|
198
|
+
configurable: true,
|
|
199
|
+
writable: true,
|
|
200
|
+
value: void 0
|
|
201
|
+
});
|
|
202
|
+
this._server = server;
|
|
203
|
+
this.admin = new ComAtprotoAdminNS(server);
|
|
204
|
+
this.identity = new ComAtprotoIdentityNS(server);
|
|
205
|
+
this.label = new ComAtprotoLabelNS(server);
|
|
206
|
+
this.lexicon = new ComAtprotoLexiconNS(server);
|
|
207
|
+
this.moderation = new ComAtprotoModerationNS(server);
|
|
208
|
+
this.repo = new ComAtprotoRepoNS(server);
|
|
209
|
+
this.server = new ComAtprotoServerNS(server);
|
|
210
|
+
this.sync = new ComAtprotoSyncNS(server);
|
|
211
|
+
this.temp = new ComAtprotoTempNS(server);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
exports.ComAtprotoNS = ComAtprotoNS;
|
|
215
|
+
class ComAtprotoAdminNS {
|
|
216
|
+
constructor(server) {
|
|
217
|
+
Object.defineProperty(this, "_server", {
|
|
218
|
+
enumerable: true,
|
|
219
|
+
configurable: true,
|
|
220
|
+
writable: true,
|
|
221
|
+
value: void 0
|
|
222
|
+
});
|
|
223
|
+
this._server = server;
|
|
224
|
+
}
|
|
225
|
+
deleteAccount(cfg) {
|
|
226
|
+
const nsid = 'com.atproto.admin.deleteAccount'; // @ts-ignore
|
|
227
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
228
|
+
}
|
|
229
|
+
disableAccountInvites(cfg) {
|
|
230
|
+
const nsid = 'com.atproto.admin.disableAccountInvites'; // @ts-ignore
|
|
231
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
232
|
+
}
|
|
233
|
+
disableInviteCodes(cfg) {
|
|
234
|
+
const nsid = 'com.atproto.admin.disableInviteCodes'; // @ts-ignore
|
|
235
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
236
|
+
}
|
|
237
|
+
enableAccountInvites(cfg) {
|
|
238
|
+
const nsid = 'com.atproto.admin.enableAccountInvites'; // @ts-ignore
|
|
239
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
240
|
+
}
|
|
241
|
+
getAccountInfo(cfg) {
|
|
242
|
+
const nsid = 'com.atproto.admin.getAccountInfo'; // @ts-ignore
|
|
243
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
244
|
+
}
|
|
245
|
+
getAccountInfos(cfg) {
|
|
246
|
+
const nsid = 'com.atproto.admin.getAccountInfos'; // @ts-ignore
|
|
247
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
248
|
+
}
|
|
249
|
+
getInviteCodes(cfg) {
|
|
250
|
+
const nsid = 'com.atproto.admin.getInviteCodes'; // @ts-ignore
|
|
251
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
252
|
+
}
|
|
253
|
+
getSubjectStatus(cfg) {
|
|
254
|
+
const nsid = 'com.atproto.admin.getSubjectStatus'; // @ts-ignore
|
|
255
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
256
|
+
}
|
|
257
|
+
searchAccounts(cfg) {
|
|
258
|
+
const nsid = 'com.atproto.admin.searchAccounts'; // @ts-ignore
|
|
259
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
260
|
+
}
|
|
261
|
+
sendEmail(cfg) {
|
|
262
|
+
const nsid = 'com.atproto.admin.sendEmail'; // @ts-ignore
|
|
263
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
264
|
+
}
|
|
265
|
+
updateAccountEmail(cfg) {
|
|
266
|
+
const nsid = 'com.atproto.admin.updateAccountEmail'; // @ts-ignore
|
|
267
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
268
|
+
}
|
|
269
|
+
updateAccountHandle(cfg) {
|
|
270
|
+
const nsid = 'com.atproto.admin.updateAccountHandle'; // @ts-ignore
|
|
271
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
272
|
+
}
|
|
273
|
+
updateAccountPassword(cfg) {
|
|
274
|
+
const nsid = 'com.atproto.admin.updateAccountPassword'; // @ts-ignore
|
|
275
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
276
|
+
}
|
|
277
|
+
updateSubjectStatus(cfg) {
|
|
278
|
+
const nsid = 'com.atproto.admin.updateSubjectStatus'; // @ts-ignore
|
|
279
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
exports.ComAtprotoAdminNS = ComAtprotoAdminNS;
|
|
283
|
+
class ComAtprotoIdentityNS {
|
|
284
|
+
constructor(server) {
|
|
285
|
+
Object.defineProperty(this, "_server", {
|
|
286
|
+
enumerable: true,
|
|
287
|
+
configurable: true,
|
|
288
|
+
writable: true,
|
|
289
|
+
value: void 0
|
|
290
|
+
});
|
|
291
|
+
this._server = server;
|
|
292
|
+
}
|
|
293
|
+
getRecommendedDidCredentials(cfg) {
|
|
294
|
+
const nsid = 'com.atproto.identity.getRecommendedDidCredentials'; // @ts-ignore
|
|
295
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
296
|
+
}
|
|
297
|
+
refreshIdentity(cfg) {
|
|
298
|
+
const nsid = 'com.atproto.identity.refreshIdentity'; // @ts-ignore
|
|
299
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
300
|
+
}
|
|
301
|
+
requestPlcOperationSignature(cfg) {
|
|
302
|
+
const nsid = 'com.atproto.identity.requestPlcOperationSignature'; // @ts-ignore
|
|
303
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
304
|
+
}
|
|
305
|
+
resolveDid(cfg) {
|
|
306
|
+
const nsid = 'com.atproto.identity.resolveDid'; // @ts-ignore
|
|
307
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
308
|
+
}
|
|
309
|
+
resolveHandle(cfg) {
|
|
310
|
+
const nsid = 'com.atproto.identity.resolveHandle'; // @ts-ignore
|
|
311
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
312
|
+
}
|
|
313
|
+
resolveIdentity(cfg) {
|
|
314
|
+
const nsid = 'com.atproto.identity.resolveIdentity'; // @ts-ignore
|
|
315
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
316
|
+
}
|
|
317
|
+
signPlcOperation(cfg) {
|
|
318
|
+
const nsid = 'com.atproto.identity.signPlcOperation'; // @ts-ignore
|
|
319
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
320
|
+
}
|
|
321
|
+
submitPlcOperation(cfg) {
|
|
322
|
+
const nsid = 'com.atproto.identity.submitPlcOperation'; // @ts-ignore
|
|
323
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
324
|
+
}
|
|
325
|
+
updateHandle(cfg) {
|
|
326
|
+
const nsid = 'com.atproto.identity.updateHandle'; // @ts-ignore
|
|
327
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
exports.ComAtprotoIdentityNS = ComAtprotoIdentityNS;
|
|
331
|
+
class ComAtprotoLabelNS {
|
|
332
|
+
constructor(server) {
|
|
333
|
+
Object.defineProperty(this, "_server", {
|
|
334
|
+
enumerable: true,
|
|
335
|
+
configurable: true,
|
|
336
|
+
writable: true,
|
|
337
|
+
value: void 0
|
|
338
|
+
});
|
|
339
|
+
this._server = server;
|
|
340
|
+
}
|
|
341
|
+
queryLabels(cfg) {
|
|
342
|
+
const nsid = 'com.atproto.label.queryLabels'; // @ts-ignore
|
|
343
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
344
|
+
}
|
|
345
|
+
subscribeLabels(cfg) {
|
|
346
|
+
const nsid = 'com.atproto.label.subscribeLabels'; // @ts-ignore
|
|
347
|
+
return this._server.xrpc.streamMethod(nsid, cfg);
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
exports.ComAtprotoLabelNS = ComAtprotoLabelNS;
|
|
351
|
+
class ComAtprotoLexiconNS {
|
|
352
|
+
constructor(server) {
|
|
353
|
+
Object.defineProperty(this, "_server", {
|
|
354
|
+
enumerable: true,
|
|
355
|
+
configurable: true,
|
|
356
|
+
writable: true,
|
|
357
|
+
value: void 0
|
|
358
|
+
});
|
|
359
|
+
this._server = server;
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
exports.ComAtprotoLexiconNS = ComAtprotoLexiconNS;
|
|
363
|
+
class ComAtprotoModerationNS {
|
|
364
|
+
constructor(server) {
|
|
365
|
+
Object.defineProperty(this, "_server", {
|
|
366
|
+
enumerable: true,
|
|
367
|
+
configurable: true,
|
|
368
|
+
writable: true,
|
|
369
|
+
value: void 0
|
|
370
|
+
});
|
|
371
|
+
this._server = server;
|
|
372
|
+
}
|
|
373
|
+
createReport(cfg) {
|
|
374
|
+
const nsid = 'com.atproto.moderation.createReport'; // @ts-ignore
|
|
375
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
exports.ComAtprotoModerationNS = ComAtprotoModerationNS;
|
|
379
|
+
class ComAtprotoRepoNS {
|
|
380
|
+
constructor(server) {
|
|
381
|
+
Object.defineProperty(this, "_server", {
|
|
382
|
+
enumerable: true,
|
|
383
|
+
configurable: true,
|
|
384
|
+
writable: true,
|
|
385
|
+
value: void 0
|
|
386
|
+
});
|
|
387
|
+
this._server = server;
|
|
388
|
+
}
|
|
389
|
+
applyWrites(cfg) {
|
|
390
|
+
const nsid = 'com.atproto.repo.applyWrites'; // @ts-ignore
|
|
391
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
392
|
+
}
|
|
393
|
+
createRecord(cfg) {
|
|
394
|
+
const nsid = 'com.atproto.repo.createRecord'; // @ts-ignore
|
|
395
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
396
|
+
}
|
|
397
|
+
deleteRecord(cfg) {
|
|
398
|
+
const nsid = 'com.atproto.repo.deleteRecord'; // @ts-ignore
|
|
399
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
400
|
+
}
|
|
401
|
+
describeRepo(cfg) {
|
|
402
|
+
const nsid = 'com.atproto.repo.describeRepo'; // @ts-ignore
|
|
403
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
404
|
+
}
|
|
405
|
+
getRecord(cfg) {
|
|
406
|
+
const nsid = 'com.atproto.repo.getRecord'; // @ts-ignore
|
|
407
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
408
|
+
}
|
|
409
|
+
importRepo(cfg) {
|
|
410
|
+
const nsid = 'com.atproto.repo.importRepo'; // @ts-ignore
|
|
411
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
412
|
+
}
|
|
413
|
+
listMissingBlobs(cfg) {
|
|
414
|
+
const nsid = 'com.atproto.repo.listMissingBlobs'; // @ts-ignore
|
|
415
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
416
|
+
}
|
|
417
|
+
listRecords(cfg) {
|
|
418
|
+
const nsid = 'com.atproto.repo.listRecords'; // @ts-ignore
|
|
419
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
420
|
+
}
|
|
421
|
+
putRecord(cfg) {
|
|
422
|
+
const nsid = 'com.atproto.repo.putRecord'; // @ts-ignore
|
|
423
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
424
|
+
}
|
|
425
|
+
uploadBlob(cfg) {
|
|
426
|
+
const nsid = 'com.atproto.repo.uploadBlob'; // @ts-ignore
|
|
427
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
exports.ComAtprotoRepoNS = ComAtprotoRepoNS;
|
|
431
|
+
class ComAtprotoServerNS {
|
|
432
|
+
constructor(server) {
|
|
433
|
+
Object.defineProperty(this, "_server", {
|
|
434
|
+
enumerable: true,
|
|
435
|
+
configurable: true,
|
|
436
|
+
writable: true,
|
|
437
|
+
value: void 0
|
|
438
|
+
});
|
|
439
|
+
this._server = server;
|
|
440
|
+
}
|
|
441
|
+
activateAccount(cfg) {
|
|
442
|
+
const nsid = 'com.atproto.server.activateAccount'; // @ts-ignore
|
|
443
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
444
|
+
}
|
|
445
|
+
checkAccountStatus(cfg) {
|
|
446
|
+
const nsid = 'com.atproto.server.checkAccountStatus'; // @ts-ignore
|
|
447
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
448
|
+
}
|
|
449
|
+
confirmEmail(cfg) {
|
|
450
|
+
const nsid = 'com.atproto.server.confirmEmail'; // @ts-ignore
|
|
451
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
452
|
+
}
|
|
453
|
+
createAccount(cfg) {
|
|
454
|
+
const nsid = 'com.atproto.server.createAccount'; // @ts-ignore
|
|
455
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
456
|
+
}
|
|
457
|
+
createAppPassword(cfg) {
|
|
458
|
+
const nsid = 'com.atproto.server.createAppPassword'; // @ts-ignore
|
|
459
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
460
|
+
}
|
|
461
|
+
createInviteCode(cfg) {
|
|
462
|
+
const nsid = 'com.atproto.server.createInviteCode'; // @ts-ignore
|
|
463
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
464
|
+
}
|
|
465
|
+
createInviteCodes(cfg) {
|
|
466
|
+
const nsid = 'com.atproto.server.createInviteCodes'; // @ts-ignore
|
|
467
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
468
|
+
}
|
|
469
|
+
createSession(cfg) {
|
|
470
|
+
const nsid = 'com.atproto.server.createSession'; // @ts-ignore
|
|
471
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
472
|
+
}
|
|
473
|
+
deactivateAccount(cfg) {
|
|
474
|
+
const nsid = 'com.atproto.server.deactivateAccount'; // @ts-ignore
|
|
475
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
476
|
+
}
|
|
477
|
+
deleteAccount(cfg) {
|
|
478
|
+
const nsid = 'com.atproto.server.deleteAccount'; // @ts-ignore
|
|
479
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
480
|
+
}
|
|
481
|
+
deleteSession(cfg) {
|
|
482
|
+
const nsid = 'com.atproto.server.deleteSession'; // @ts-ignore
|
|
483
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
484
|
+
}
|
|
485
|
+
describeServer(cfg) {
|
|
486
|
+
const nsid = 'com.atproto.server.describeServer'; // @ts-ignore
|
|
487
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
488
|
+
}
|
|
489
|
+
getAccountInviteCodes(cfg) {
|
|
490
|
+
const nsid = 'com.atproto.server.getAccountInviteCodes'; // @ts-ignore
|
|
491
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
492
|
+
}
|
|
493
|
+
getServiceAuth(cfg) {
|
|
494
|
+
const nsid = 'com.atproto.server.getServiceAuth'; // @ts-ignore
|
|
495
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
496
|
+
}
|
|
497
|
+
getSession(cfg) {
|
|
498
|
+
const nsid = 'com.atproto.server.getSession'; // @ts-ignore
|
|
499
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
500
|
+
}
|
|
501
|
+
listAppPasswords(cfg) {
|
|
502
|
+
const nsid = 'com.atproto.server.listAppPasswords'; // @ts-ignore
|
|
503
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
504
|
+
}
|
|
505
|
+
refreshSession(cfg) {
|
|
506
|
+
const nsid = 'com.atproto.server.refreshSession'; // @ts-ignore
|
|
507
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
508
|
+
}
|
|
509
|
+
requestAccountDelete(cfg) {
|
|
510
|
+
const nsid = 'com.atproto.server.requestAccountDelete'; // @ts-ignore
|
|
511
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
512
|
+
}
|
|
513
|
+
requestEmailConfirmation(cfg) {
|
|
514
|
+
const nsid = 'com.atproto.server.requestEmailConfirmation'; // @ts-ignore
|
|
515
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
516
|
+
}
|
|
517
|
+
requestEmailUpdate(cfg) {
|
|
518
|
+
const nsid = 'com.atproto.server.requestEmailUpdate'; // @ts-ignore
|
|
519
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
520
|
+
}
|
|
521
|
+
requestPasswordReset(cfg) {
|
|
522
|
+
const nsid = 'com.atproto.server.requestPasswordReset'; // @ts-ignore
|
|
523
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
524
|
+
}
|
|
525
|
+
reserveSigningKey(cfg) {
|
|
526
|
+
const nsid = 'com.atproto.server.reserveSigningKey'; // @ts-ignore
|
|
527
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
528
|
+
}
|
|
529
|
+
resetPassword(cfg) {
|
|
530
|
+
const nsid = 'com.atproto.server.resetPassword'; // @ts-ignore
|
|
531
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
532
|
+
}
|
|
533
|
+
revokeAppPassword(cfg) {
|
|
534
|
+
const nsid = 'com.atproto.server.revokeAppPassword'; // @ts-ignore
|
|
535
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
536
|
+
}
|
|
537
|
+
updateEmail(cfg) {
|
|
538
|
+
const nsid = 'com.atproto.server.updateEmail'; // @ts-ignore
|
|
539
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
exports.ComAtprotoServerNS = ComAtprotoServerNS;
|
|
543
|
+
class ComAtprotoSyncNS {
|
|
544
|
+
constructor(server) {
|
|
545
|
+
Object.defineProperty(this, "_server", {
|
|
546
|
+
enumerable: true,
|
|
547
|
+
configurable: true,
|
|
548
|
+
writable: true,
|
|
549
|
+
value: void 0
|
|
550
|
+
});
|
|
551
|
+
this._server = server;
|
|
552
|
+
}
|
|
553
|
+
getBlob(cfg) {
|
|
554
|
+
const nsid = 'com.atproto.sync.getBlob'; // @ts-ignore
|
|
555
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
556
|
+
}
|
|
557
|
+
getBlocks(cfg) {
|
|
558
|
+
const nsid = 'com.atproto.sync.getBlocks'; // @ts-ignore
|
|
559
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
560
|
+
}
|
|
561
|
+
getCheckout(cfg) {
|
|
562
|
+
const nsid = 'com.atproto.sync.getCheckout'; // @ts-ignore
|
|
563
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
564
|
+
}
|
|
565
|
+
getHead(cfg) {
|
|
566
|
+
const nsid = 'com.atproto.sync.getHead'; // @ts-ignore
|
|
567
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
568
|
+
}
|
|
569
|
+
getLatestCommit(cfg) {
|
|
570
|
+
const nsid = 'com.atproto.sync.getLatestCommit'; // @ts-ignore
|
|
571
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
572
|
+
}
|
|
573
|
+
getRecord(cfg) {
|
|
574
|
+
const nsid = 'com.atproto.sync.getRecord'; // @ts-ignore
|
|
575
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
576
|
+
}
|
|
577
|
+
getRepo(cfg) {
|
|
578
|
+
const nsid = 'com.atproto.sync.getRepo'; // @ts-ignore
|
|
579
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
580
|
+
}
|
|
581
|
+
getRepoStatus(cfg) {
|
|
582
|
+
const nsid = 'com.atproto.sync.getRepoStatus'; // @ts-ignore
|
|
583
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
584
|
+
}
|
|
585
|
+
listBlobs(cfg) {
|
|
586
|
+
const nsid = 'com.atproto.sync.listBlobs'; // @ts-ignore
|
|
587
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
588
|
+
}
|
|
589
|
+
listRepos(cfg) {
|
|
590
|
+
const nsid = 'com.atproto.sync.listRepos'; // @ts-ignore
|
|
591
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
592
|
+
}
|
|
593
|
+
listReposByCollection(cfg) {
|
|
594
|
+
const nsid = 'com.atproto.sync.listReposByCollection'; // @ts-ignore
|
|
595
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
596
|
+
}
|
|
597
|
+
notifyOfUpdate(cfg) {
|
|
598
|
+
const nsid = 'com.atproto.sync.notifyOfUpdate'; // @ts-ignore
|
|
599
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
600
|
+
}
|
|
601
|
+
requestCrawl(cfg) {
|
|
602
|
+
const nsid = 'com.atproto.sync.requestCrawl'; // @ts-ignore
|
|
603
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
604
|
+
}
|
|
605
|
+
subscribeRepos(cfg) {
|
|
606
|
+
const nsid = 'com.atproto.sync.subscribeRepos'; // @ts-ignore
|
|
607
|
+
return this._server.xrpc.streamMethod(nsid, cfg);
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
exports.ComAtprotoSyncNS = ComAtprotoSyncNS;
|
|
611
|
+
class ComAtprotoTempNS {
|
|
612
|
+
constructor(server) {
|
|
613
|
+
Object.defineProperty(this, "_server", {
|
|
614
|
+
enumerable: true,
|
|
615
|
+
configurable: true,
|
|
616
|
+
writable: true,
|
|
617
|
+
value: void 0
|
|
618
|
+
});
|
|
619
|
+
this._server = server;
|
|
620
|
+
}
|
|
621
|
+
addReservedHandle(cfg) {
|
|
622
|
+
const nsid = 'com.atproto.temp.addReservedHandle'; // @ts-ignore
|
|
623
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
624
|
+
}
|
|
625
|
+
checkSignupQueue(cfg) {
|
|
626
|
+
const nsid = 'com.atproto.temp.checkSignupQueue'; // @ts-ignore
|
|
627
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
628
|
+
}
|
|
629
|
+
fetchLabels(cfg) {
|
|
630
|
+
const nsid = 'com.atproto.temp.fetchLabels'; // @ts-ignore
|
|
631
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
632
|
+
}
|
|
633
|
+
requestPhoneVerification(cfg) {
|
|
634
|
+
const nsid = 'com.atproto.temp.requestPhoneVerification'; // @ts-ignore
|
|
635
|
+
return this._server.xrpc.method(nsid, cfg);
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
exports.ComAtprotoTempNS = ComAtprotoTempNS;
|