@atproto/api 0.1.3 → 0.2.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/README.md +179 -25
- package/build.js +2 -1
- package/dist/agent.d.ts +11 -6
- package/dist/bsky-agent.d.ts +43 -0
- package/dist/client/index.d.ts +117 -215
- package/dist/client/lexicons.d.ts +1440 -1401
- package/dist/client/types/app/bsky/actor/defs.d.ts +47 -0
- package/dist/client/types/app/bsky/actor/getProfile.d.ts +2 -2
- package/dist/client/types/app/bsky/actor/getProfiles.d.ts +2 -2
- package/dist/client/types/app/bsky/actor/getSuggestions.d.ts +2 -2
- package/dist/client/types/app/bsky/actor/profile.d.ts +4 -60
- package/dist/client/types/app/bsky/actor/searchActors.d.ts +22 -0
- package/dist/client/types/app/bsky/actor/searchActorsTypeahead.d.ts +20 -0
- package/dist/client/types/app/bsky/actor/updateProfile.d.ts +3 -10
- package/dist/client/types/app/bsky/embed/external.d.ts +9 -13
- package/dist/client/types/app/bsky/embed/images.d.ts +9 -13
- package/dist/client/types/app/bsky/embed/record.d.ts +21 -13
- package/dist/client/types/app/bsky/embed/recordWithMedia.d.ts +24 -0
- package/dist/client/types/app/bsky/feed/defs.d.ts +77 -0
- package/dist/client/types/app/bsky/feed/getAuthorFeed.d.ts +4 -4
- package/dist/client/types/app/bsky/feed/getLikes.d.ts +34 -0
- package/dist/client/types/app/bsky/feed/getPostThread.d.ts +2 -24
- package/dist/client/types/app/bsky/feed/getRepostedBy.d.ts +3 -3
- package/dist/client/types/app/bsky/feed/getTimeline.d.ts +3 -3
- package/dist/client/types/app/bsky/feed/like.d.ts +9 -0
- package/dist/client/types/app/bsky/feed/post.d.ts +4 -29
- package/dist/client/types/app/bsky/graph/follow.d.ts +1 -2
- package/dist/client/types/app/bsky/graph/getFollowers.d.ts +5 -5
- package/dist/client/types/app/bsky/graph/getFollows.d.ts +5 -5
- package/dist/client/types/app/bsky/graph/getMutes.d.ts +3 -3
- package/dist/client/types/app/bsky/graph/muteActor.d.ts +17 -0
- package/dist/client/types/app/bsky/graph/unmuteActor.d.ts +17 -0
- package/dist/client/types/app/bsky/notification/getUnreadCount.d.ts +17 -0
- package/dist/client/types/app/bsky/notification/listNotifications.d.ts +35 -0
- package/dist/client/types/app/bsky/richtext/facet.d.ts +30 -0
- package/dist/client/types/app/bsky/unspecced/getPopular.d.ts +21 -0
- package/dist/client/types/com/atproto/admin/defs.d.ts +181 -0
- package/dist/client/types/com/atproto/admin/getModerationAction.d.ts +2 -2
- package/dist/client/types/com/atproto/admin/getModerationActions.d.ts +3 -3
- package/dist/client/types/com/atproto/admin/getModerationReport.d.ts +2 -2
- package/dist/client/types/com/atproto/admin/getModerationReports.d.ts +3 -3
- package/dist/client/types/com/atproto/admin/getRecord.d.ts +2 -2
- package/dist/client/types/com/atproto/admin/getRepo.d.ts +2 -2
- package/dist/client/types/com/atproto/admin/resolveModerationReports.d.ts +2 -2
- package/dist/client/types/com/atproto/admin/reverseModerationAction.d.ts +2 -2
- package/dist/client/types/com/atproto/admin/searchRepos.d.ts +3 -3
- package/dist/client/types/com/atproto/admin/takeModerationAction.d.ts +5 -6
- package/dist/client/types/com/atproto/identity/resolveHandle.d.ts +18 -0
- package/dist/client/types/com/atproto/identity/updateHandle.d.ts +17 -0
- package/dist/client/types/com/atproto/moderation/createReport.d.ts +38 -0
- package/dist/client/types/com/atproto/moderation/defs.d.ts +3 -0
- package/dist/client/types/com/atproto/repo/applyWrites.d.ts +47 -0
- package/dist/client/types/com/atproto/repo/createRecord.d.ts +7 -2
- package/dist/client/types/com/atproto/repo/deleteRecord.d.ts +7 -2
- package/dist/client/types/com/atproto/repo/describeRepo.d.ts +22 -0
- package/dist/client/types/com/atproto/repo/getRecord.d.ts +1 -1
- package/dist/client/types/com/atproto/repo/listRecords.d.ts +3 -3
- package/dist/client/types/com/atproto/repo/putRecord.d.ts +7 -2
- package/dist/client/types/com/atproto/repo/uploadBlob.d.ts +20 -0
- package/dist/client/types/com/atproto/server/createAccount.d.ts +44 -0
- package/dist/client/types/com/atproto/server/createInviteCode.d.ts +22 -0
- package/dist/client/types/com/atproto/server/createSession.d.ts +29 -0
- package/dist/client/types/com/atproto/server/deleteAccount.d.ts +25 -0
- package/dist/client/types/com/atproto/server/deleteSession.d.ts +13 -0
- package/dist/client/types/com/atproto/server/describeServer.d.ts +27 -0
- package/dist/client/types/com/atproto/server/getSession.d.ts +18 -0
- package/dist/client/types/com/atproto/server/refreshSession.d.ts +24 -0
- package/dist/client/types/com/atproto/server/requestAccountDelete.d.ts +13 -0
- package/dist/client/types/com/atproto/server/requestPasswordReset.d.ts +17 -0
- package/dist/client/types/com/atproto/server/resetPassword.d.ts +24 -0
- package/dist/client/types/com/atproto/sync/getBlob.d.ts +15 -0
- package/dist/client/types/com/atproto/sync/listBlobs.d.ts +20 -0
- package/dist/client/types/com/atproto/sync/notifyOfUpdate.d.ts +1 -0
- package/dist/client/types/com/atproto/sync/requestCrawl.d.ts +1 -1
- package/dist/client/types/com/atproto/sync/subscribeAllRepos.d.ts +9 -1
- package/dist/client/types/com/atproto/sync/subscribeRepos.d.ts +58 -0
- package/dist/helpers/bsky.d.ts +20 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +8046 -3649
- package/dist/index.js.map +4 -4
- package/dist/mixins/bsky.d.ts +23 -0
- package/dist/rich-text/detection.d.ts +4 -0
- package/dist/rich-text/rich-text.d.ts +39 -0
- package/dist/rich-text/sanitization.d.ts +4 -0
- package/dist/rich-text/sanitize.d.ts +4 -0
- package/dist/rich-text/unicode.d.ts +11 -0
- package/dist/types.d.ts +2 -2
- package/docs/rn-fetch-handler.ts +88 -0
- package/package.json +4 -1
- package/src/agent.ts +51 -15
- package/src/bsky-agent.ts +228 -0
- package/src/client/index.ts +330 -581
- package/src/client/lexicons.ts +1824 -1777
- package/src/client/types/app/bsky/actor/defs.ts +97 -0
- package/src/client/types/app/bsky/actor/getProfile.ts +4 -3
- package/src/client/types/app/bsky/actor/getProfiles.ts +4 -3
- package/src/client/types/app/bsky/actor/getSuggestions.ts +4 -3
- package/src/client/types/app/bsky/actor/profile.ts +5 -95
- package/src/client/types/app/bsky/actor/{searchTypeahead.ts → searchActors.ts} +6 -3
- package/src/client/types/app/bsky/actor/{search.ts → searchActorsTypeahead.ts} +4 -5
- package/src/client/types/app/bsky/embed/external.ts +14 -13
- package/src/client/types/app/bsky/embed/images.ts +14 -15
- package/src/client/types/app/bsky/embed/record.ts +32 -25
- package/src/client/types/app/bsky/embed/recordWithMedia.ts +53 -0
- package/src/client/types/app/bsky/feed/defs.ts +156 -0
- package/src/client/types/app/bsky/feed/getAuthorFeed.ts +6 -5
- package/src/client/types/app/bsky/feed/{getVotes.ts → getLikes.ts} +11 -12
- package/src/client/types/app/bsky/feed/getPostThread.ts +5 -48
- package/src/client/types/app/bsky/feed/getRepostedBy.ts +5 -4
- package/src/client/types/app/bsky/feed/getTimeline.ts +5 -4
- package/src/client/types/app/bsky/feed/{vote.ts → like.ts} +4 -4
- package/src/client/types/app/bsky/feed/post.ts +10 -52
- package/src/client/types/app/bsky/feed/repost.ts +2 -1
- package/src/client/types/app/bsky/graph/follow.ts +3 -3
- package/src/client/types/app/bsky/graph/getFollowers.ts +7 -6
- package/src/client/types/app/bsky/graph/getFollows.ts +7 -6
- package/src/client/types/app/bsky/graph/getMutes.ts +5 -4
- package/src/client/types/app/bsky/graph/{mute.ts → muteActor.ts} +3 -2
- package/src/client/types/app/bsky/graph/{unmute.ts → unmuteActor.ts} +3 -2
- package/src/client/types/app/bsky/notification/{getCount.ts → getUnreadCount.ts} +2 -1
- package/src/client/types/app/bsky/notification/{list.ts → listNotifications.ts} +13 -9
- package/src/client/types/app/bsky/notification/updateSeen.ts +2 -1
- package/src/client/types/app/bsky/richtext/facet.ts +81 -0
- package/src/client/types/app/bsky/unspecced/getPopular.ts +38 -0
- package/src/client/types/com/atproto/admin/defs.ts +366 -0
- package/src/client/types/com/atproto/admin/getModerationAction.ts +4 -3
- package/src/client/types/com/atproto/admin/getModerationActions.ts +5 -4
- package/src/client/types/com/atproto/admin/getModerationReport.ts +4 -3
- package/src/client/types/com/atproto/admin/getModerationReports.ts +5 -4
- package/src/client/types/com/atproto/admin/getRecord.ts +4 -3
- package/src/client/types/com/atproto/admin/getRepo.ts +4 -3
- package/src/client/types/com/atproto/admin/resolveModerationReports.ts +4 -3
- package/src/client/types/com/atproto/admin/reverseModerationAction.ts +4 -3
- package/src/client/types/com/atproto/admin/searchRepos.ts +5 -4
- package/src/client/types/com/atproto/admin/takeModerationAction.ts +10 -10
- package/src/client/types/com/atproto/{handle/resolve.ts → identity/resolveHandle.ts} +2 -1
- package/src/client/types/com/atproto/{handle/update.ts → identity/updateHandle.ts} +2 -1
- package/src/client/types/com/atproto/{report/create.ts → moderation/createReport.ts} +10 -10
- package/src/client/types/com/atproto/moderation/defs.ts +17 -0
- package/src/client/types/com/atproto/repo/{batchWrite.ts → applyWrites.ts} +21 -12
- package/src/client/types/com/atproto/repo/createRecord.ts +15 -3
- package/src/client/types/com/atproto/repo/deleteRecord.ts +15 -3
- package/src/client/types/com/atproto/repo/{describe.ts → describeRepo.ts} +3 -2
- package/src/client/types/com/atproto/repo/getRecord.ts +4 -3
- package/src/client/types/com/atproto/repo/listRecords.ts +7 -6
- package/src/client/types/com/atproto/repo/putRecord.ts +18 -6
- package/src/client/types/com/atproto/repo/strongRef.ts +2 -1
- package/src/client/types/com/atproto/{blob/upload.ts → repo/uploadBlob.ts} +3 -2
- package/src/client/types/com/atproto/{account/create.ts → server/createAccount.ts} +9 -1
- package/src/client/types/com/atproto/{account → server}/createInviteCode.ts +2 -1
- package/src/client/types/com/atproto/{session/create.ts → server/createSession.ts} +2 -1
- package/src/client/types/com/atproto/{account/delete.ts → server/deleteAccount.ts} +2 -1
- package/src/client/types/com/atproto/{account/requestDelete.ts → server/deleteSession.ts} +2 -1
- package/src/client/types/com/atproto/server/{getAccountsConfig.ts → describeServer.ts} +4 -3
- package/src/client/types/com/atproto/{session/get.ts → server/getSession.ts} +2 -1
- package/src/client/types/com/atproto/{session/refresh.ts → server/refreshSession.ts} +2 -1
- package/src/client/types/com/atproto/{session/delete.ts → server/requestAccountDelete.ts} +2 -1
- package/src/client/types/com/atproto/{account → server}/requestPasswordReset.ts +2 -1
- package/src/client/types/com/atproto/{account → server}/resetPassword.ts +2 -1
- package/src/client/types/com/atproto/sync/getBlob.ts +33 -0
- package/src/client/types/com/atproto/sync/getBlocks.ts +2 -1
- package/src/client/types/com/atproto/sync/getCheckout.ts +2 -1
- package/src/client/types/com/atproto/sync/getCommitPath.ts +2 -1
- package/src/client/types/com/atproto/sync/getHead.ts +2 -1
- package/src/client/types/com/atproto/sync/getRecord.ts +2 -1
- package/src/client/types/com/atproto/sync/getRepo.ts +2 -1
- package/src/client/types/com/atproto/sync/listBlobs.ts +40 -0
- package/src/client/types/com/atproto/sync/notifyOfUpdate.ts +6 -2
- package/src/client/types/com/atproto/sync/requestCrawl.ts +3 -2
- package/src/client/types/com/atproto/sync/subscribeRepos.ts +131 -0
- package/src/index.ts +12 -0
- package/src/rich-text/detection.ts +83 -0
- package/src/rich-text/rich-text.ts +401 -0
- package/src/rich-text/sanitization.ts +40 -0
- package/src/rich-text/unicode.ts +47 -0
- package/src/types.ts +2 -2
- package/tests/agent.test.ts +10 -6
- package/tests/bsky-agent.test.ts +140 -0
- package/tests/errors.test.ts +4 -4
- package/tests/rich-text-detection.test.ts +229 -0
- package/tests/rich-text-sanitization.test.ts +211 -0
- package/tests/rich-text.test.ts +661 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/src/client/types/app/bsky/actor/ref.ts +0 -64
- package/src/client/types/app/bsky/actor/updateProfile.ts +0 -71
- package/src/client/types/app/bsky/feed/feedViewPost.ts +0 -64
- package/src/client/types/app/bsky/feed/setVote.ts +0 -40
- package/src/client/types/app/bsky/graph/assertCreator.ts +0 -9
- package/src/client/types/app/bsky/graph/assertMember.ts +0 -9
- package/src/client/types/app/bsky/graph/assertion.ts +0 -27
- package/src/client/types/app/bsky/graph/confirmation.ts +0 -28
- package/src/client/types/app/bsky/system/actorUser.ts +0 -9
- package/src/client/types/app/bsky/system/declRef.ts +0 -26
- package/src/client/types/app/bsky/system/declaration.ts +0 -24
- package/src/client/types/com/atproto/account/get.ts +0 -26
- package/src/client/types/com/atproto/admin/blob.ts +0 -84
- package/src/client/types/com/atproto/admin/moderationAction.ts +0 -118
- package/src/client/types/com/atproto/admin/moderationReport.ts +0 -64
- package/src/client/types/com/atproto/admin/record.ts +0 -92
- package/src/client/types/com/atproto/admin/repo.ts +0 -103
- package/src/client/types/com/atproto/repo/recordRef.ts +0 -25
- package/src/client/types/com/atproto/repo/repoRef.ts +0 -24
- package/src/client/types/com/atproto/report/reasonType.ts +0 -16
- package/src/client/types/com/atproto/report/subject.ts +0 -66
- package/src/client/types/com/atproto/sync/subscribeAllRepos.ts +0 -7
|
@@ -1,474 +1,10 @@
|
|
|
1
1
|
import { LexiconDoc, Lexicons } from '@atproto/lexicon';
|
|
2
2
|
export declare const schemaDict: {
|
|
3
|
-
|
|
3
|
+
ComAtprotoAdminDefs: {
|
|
4
4
|
lexicon: number;
|
|
5
5
|
id: string;
|
|
6
6
|
defs: {
|
|
7
|
-
|
|
8
|
-
type: string;
|
|
9
|
-
description: string;
|
|
10
|
-
input: {
|
|
11
|
-
encoding: string;
|
|
12
|
-
schema: {
|
|
13
|
-
type: string;
|
|
14
|
-
required: string[];
|
|
15
|
-
properties: {
|
|
16
|
-
email: {
|
|
17
|
-
type: string;
|
|
18
|
-
};
|
|
19
|
-
handle: {
|
|
20
|
-
type: string;
|
|
21
|
-
};
|
|
22
|
-
inviteCode: {
|
|
23
|
-
type: string;
|
|
24
|
-
};
|
|
25
|
-
password: {
|
|
26
|
-
type: string;
|
|
27
|
-
};
|
|
28
|
-
recoveryKey: {
|
|
29
|
-
type: string;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
output: {
|
|
35
|
-
encoding: string;
|
|
36
|
-
schema: {
|
|
37
|
-
type: string;
|
|
38
|
-
required: string[];
|
|
39
|
-
properties: {
|
|
40
|
-
accessJwt: {
|
|
41
|
-
type: string;
|
|
42
|
-
};
|
|
43
|
-
refreshJwt: {
|
|
44
|
-
type: string;
|
|
45
|
-
};
|
|
46
|
-
handle: {
|
|
47
|
-
type: string;
|
|
48
|
-
};
|
|
49
|
-
did: {
|
|
50
|
-
type: string;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
errors: {
|
|
56
|
-
name: string;
|
|
57
|
-
}[];
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
ComAtprotoAccountCreateInviteCode: {
|
|
62
|
-
lexicon: number;
|
|
63
|
-
id: string;
|
|
64
|
-
defs: {
|
|
65
|
-
main: {
|
|
66
|
-
type: string;
|
|
67
|
-
description: string;
|
|
68
|
-
input: {
|
|
69
|
-
encoding: string;
|
|
70
|
-
schema: {
|
|
71
|
-
type: string;
|
|
72
|
-
required: string[];
|
|
73
|
-
properties: {
|
|
74
|
-
useCount: {
|
|
75
|
-
type: string;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
|
-
};
|
|
79
|
-
};
|
|
80
|
-
output: {
|
|
81
|
-
encoding: string;
|
|
82
|
-
schema: {
|
|
83
|
-
type: string;
|
|
84
|
-
required: string[];
|
|
85
|
-
properties: {
|
|
86
|
-
code: {
|
|
87
|
-
type: string;
|
|
88
|
-
};
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
};
|
|
95
|
-
ComAtprotoAccountDelete: {
|
|
96
|
-
lexicon: number;
|
|
97
|
-
id: string;
|
|
98
|
-
defs: {
|
|
99
|
-
main: {
|
|
100
|
-
type: string;
|
|
101
|
-
description: string;
|
|
102
|
-
input: {
|
|
103
|
-
encoding: string;
|
|
104
|
-
schema: {
|
|
105
|
-
type: string;
|
|
106
|
-
required: string[];
|
|
107
|
-
properties: {
|
|
108
|
-
did: {
|
|
109
|
-
type: string;
|
|
110
|
-
};
|
|
111
|
-
password: {
|
|
112
|
-
type: string;
|
|
113
|
-
};
|
|
114
|
-
token: {
|
|
115
|
-
type: string;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
|
-
};
|
|
119
|
-
};
|
|
120
|
-
errors: {
|
|
121
|
-
name: string;
|
|
122
|
-
}[];
|
|
123
|
-
};
|
|
124
|
-
};
|
|
125
|
-
};
|
|
126
|
-
ComAtprotoAccountGet: {
|
|
127
|
-
lexicon: number;
|
|
128
|
-
id: string;
|
|
129
|
-
defs: {
|
|
130
|
-
main: {
|
|
131
|
-
type: string;
|
|
132
|
-
description: string;
|
|
133
|
-
};
|
|
134
|
-
};
|
|
135
|
-
};
|
|
136
|
-
ComAtprotoAccountRequestDelete: {
|
|
137
|
-
lexicon: number;
|
|
138
|
-
id: string;
|
|
139
|
-
defs: {
|
|
140
|
-
main: {
|
|
141
|
-
type: string;
|
|
142
|
-
description: string;
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
};
|
|
146
|
-
ComAtprotoAccountRequestPasswordReset: {
|
|
147
|
-
lexicon: number;
|
|
148
|
-
id: string;
|
|
149
|
-
defs: {
|
|
150
|
-
main: {
|
|
151
|
-
type: string;
|
|
152
|
-
description: string;
|
|
153
|
-
input: {
|
|
154
|
-
encoding: string;
|
|
155
|
-
schema: {
|
|
156
|
-
type: string;
|
|
157
|
-
required: string[];
|
|
158
|
-
properties: {
|
|
159
|
-
email: {
|
|
160
|
-
type: string;
|
|
161
|
-
};
|
|
162
|
-
};
|
|
163
|
-
};
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
|
-
};
|
|
167
|
-
};
|
|
168
|
-
ComAtprotoAccountResetPassword: {
|
|
169
|
-
lexicon: number;
|
|
170
|
-
id: string;
|
|
171
|
-
defs: {
|
|
172
|
-
main: {
|
|
173
|
-
type: string;
|
|
174
|
-
description: string;
|
|
175
|
-
input: {
|
|
176
|
-
encoding: string;
|
|
177
|
-
schema: {
|
|
178
|
-
type: string;
|
|
179
|
-
required: string[];
|
|
180
|
-
properties: {
|
|
181
|
-
token: {
|
|
182
|
-
type: string;
|
|
183
|
-
};
|
|
184
|
-
password: {
|
|
185
|
-
type: string;
|
|
186
|
-
};
|
|
187
|
-
};
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
errors: {
|
|
191
|
-
name: string;
|
|
192
|
-
}[];
|
|
193
|
-
};
|
|
194
|
-
};
|
|
195
|
-
};
|
|
196
|
-
ComAtprotoAdminBlob: {
|
|
197
|
-
lexicon: number;
|
|
198
|
-
id: string;
|
|
199
|
-
defs: {
|
|
200
|
-
view: {
|
|
201
|
-
type: string;
|
|
202
|
-
required: string[];
|
|
203
|
-
properties: {
|
|
204
|
-
cid: {
|
|
205
|
-
type: string;
|
|
206
|
-
};
|
|
207
|
-
mimeType: {
|
|
208
|
-
type: string;
|
|
209
|
-
};
|
|
210
|
-
size: {
|
|
211
|
-
type: string;
|
|
212
|
-
};
|
|
213
|
-
createdAt: {
|
|
214
|
-
type: string;
|
|
215
|
-
};
|
|
216
|
-
details: {
|
|
217
|
-
type: string;
|
|
218
|
-
refs: string[];
|
|
219
|
-
};
|
|
220
|
-
moderation: {
|
|
221
|
-
type: string;
|
|
222
|
-
ref: string;
|
|
223
|
-
};
|
|
224
|
-
};
|
|
225
|
-
};
|
|
226
|
-
imageDetails: {
|
|
227
|
-
type: string;
|
|
228
|
-
required: string[];
|
|
229
|
-
properties: {
|
|
230
|
-
width: {
|
|
231
|
-
type: string;
|
|
232
|
-
};
|
|
233
|
-
height: {
|
|
234
|
-
type: string;
|
|
235
|
-
};
|
|
236
|
-
};
|
|
237
|
-
};
|
|
238
|
-
videoDetails: {
|
|
239
|
-
type: string;
|
|
240
|
-
required: string[];
|
|
241
|
-
properties: {
|
|
242
|
-
width: {
|
|
243
|
-
type: string;
|
|
244
|
-
};
|
|
245
|
-
height: {
|
|
246
|
-
type: string;
|
|
247
|
-
};
|
|
248
|
-
length: {
|
|
249
|
-
type: string;
|
|
250
|
-
};
|
|
251
|
-
};
|
|
252
|
-
};
|
|
253
|
-
moderation: {
|
|
254
|
-
type: string;
|
|
255
|
-
required: never[];
|
|
256
|
-
properties: {
|
|
257
|
-
currentAction: {
|
|
258
|
-
type: string;
|
|
259
|
-
ref: string;
|
|
260
|
-
};
|
|
261
|
-
};
|
|
262
|
-
};
|
|
263
|
-
};
|
|
264
|
-
};
|
|
265
|
-
ComAtprotoAdminGetModerationAction: {
|
|
266
|
-
lexicon: number;
|
|
267
|
-
id: string;
|
|
268
|
-
defs: {
|
|
269
|
-
main: {
|
|
270
|
-
type: string;
|
|
271
|
-
description: string;
|
|
272
|
-
parameters: {
|
|
273
|
-
type: string;
|
|
274
|
-
required: string[];
|
|
275
|
-
properties: {
|
|
276
|
-
id: {
|
|
277
|
-
type: string;
|
|
278
|
-
};
|
|
279
|
-
};
|
|
280
|
-
};
|
|
281
|
-
output: {
|
|
282
|
-
encoding: string;
|
|
283
|
-
schema: {
|
|
284
|
-
type: string;
|
|
285
|
-
ref: string;
|
|
286
|
-
};
|
|
287
|
-
};
|
|
288
|
-
};
|
|
289
|
-
};
|
|
290
|
-
};
|
|
291
|
-
ComAtprotoAdminGetModerationActions: {
|
|
292
|
-
lexicon: number;
|
|
293
|
-
id: string;
|
|
294
|
-
defs: {
|
|
295
|
-
main: {
|
|
296
|
-
type: string;
|
|
297
|
-
description: string;
|
|
298
|
-
parameters: {
|
|
299
|
-
type: string;
|
|
300
|
-
properties: {
|
|
301
|
-
subject: {
|
|
302
|
-
type: string;
|
|
303
|
-
};
|
|
304
|
-
limit: {
|
|
305
|
-
type: string;
|
|
306
|
-
minimum: number;
|
|
307
|
-
maximum: number;
|
|
308
|
-
default: number;
|
|
309
|
-
};
|
|
310
|
-
before: {
|
|
311
|
-
type: string;
|
|
312
|
-
};
|
|
313
|
-
};
|
|
314
|
-
};
|
|
315
|
-
output: {
|
|
316
|
-
encoding: string;
|
|
317
|
-
schema: {
|
|
318
|
-
type: string;
|
|
319
|
-
required: string[];
|
|
320
|
-
properties: {
|
|
321
|
-
cursor: {
|
|
322
|
-
type: string;
|
|
323
|
-
};
|
|
324
|
-
actions: {
|
|
325
|
-
type: string;
|
|
326
|
-
items: {
|
|
327
|
-
type: string;
|
|
328
|
-
ref: string;
|
|
329
|
-
};
|
|
330
|
-
};
|
|
331
|
-
};
|
|
332
|
-
};
|
|
333
|
-
};
|
|
334
|
-
};
|
|
335
|
-
};
|
|
336
|
-
};
|
|
337
|
-
ComAtprotoAdminGetModerationReport: {
|
|
338
|
-
lexicon: number;
|
|
339
|
-
id: string;
|
|
340
|
-
defs: {
|
|
341
|
-
main: {
|
|
342
|
-
type: string;
|
|
343
|
-
description: string;
|
|
344
|
-
parameters: {
|
|
345
|
-
type: string;
|
|
346
|
-
required: string[];
|
|
347
|
-
properties: {
|
|
348
|
-
id: {
|
|
349
|
-
type: string;
|
|
350
|
-
};
|
|
351
|
-
};
|
|
352
|
-
};
|
|
353
|
-
output: {
|
|
354
|
-
encoding: string;
|
|
355
|
-
schema: {
|
|
356
|
-
type: string;
|
|
357
|
-
ref: string;
|
|
358
|
-
};
|
|
359
|
-
};
|
|
360
|
-
};
|
|
361
|
-
};
|
|
362
|
-
};
|
|
363
|
-
ComAtprotoAdminGetModerationReports: {
|
|
364
|
-
lexicon: number;
|
|
365
|
-
id: string;
|
|
366
|
-
defs: {
|
|
367
|
-
main: {
|
|
368
|
-
type: string;
|
|
369
|
-
description: string;
|
|
370
|
-
parameters: {
|
|
371
|
-
type: string;
|
|
372
|
-
properties: {
|
|
373
|
-
subject: {
|
|
374
|
-
type: string;
|
|
375
|
-
};
|
|
376
|
-
resolved: {
|
|
377
|
-
type: string;
|
|
378
|
-
};
|
|
379
|
-
limit: {
|
|
380
|
-
type: string;
|
|
381
|
-
minimum: number;
|
|
382
|
-
maximum: number;
|
|
383
|
-
default: number;
|
|
384
|
-
};
|
|
385
|
-
before: {
|
|
386
|
-
type: string;
|
|
387
|
-
};
|
|
388
|
-
};
|
|
389
|
-
};
|
|
390
|
-
output: {
|
|
391
|
-
encoding: string;
|
|
392
|
-
schema: {
|
|
393
|
-
type: string;
|
|
394
|
-
required: string[];
|
|
395
|
-
properties: {
|
|
396
|
-
cursor: {
|
|
397
|
-
type: string;
|
|
398
|
-
};
|
|
399
|
-
reports: {
|
|
400
|
-
type: string;
|
|
401
|
-
items: {
|
|
402
|
-
type: string;
|
|
403
|
-
ref: string;
|
|
404
|
-
};
|
|
405
|
-
};
|
|
406
|
-
};
|
|
407
|
-
};
|
|
408
|
-
};
|
|
409
|
-
};
|
|
410
|
-
};
|
|
411
|
-
};
|
|
412
|
-
ComAtprotoAdminGetRecord: {
|
|
413
|
-
lexicon: number;
|
|
414
|
-
id: string;
|
|
415
|
-
defs: {
|
|
416
|
-
main: {
|
|
417
|
-
type: string;
|
|
418
|
-
description: string;
|
|
419
|
-
parameters: {
|
|
420
|
-
type: string;
|
|
421
|
-
required: string[];
|
|
422
|
-
properties: {
|
|
423
|
-
uri: {
|
|
424
|
-
type: string;
|
|
425
|
-
};
|
|
426
|
-
cid: {
|
|
427
|
-
type: string;
|
|
428
|
-
};
|
|
429
|
-
};
|
|
430
|
-
};
|
|
431
|
-
output: {
|
|
432
|
-
encoding: string;
|
|
433
|
-
schema: {
|
|
434
|
-
type: string;
|
|
435
|
-
ref: string;
|
|
436
|
-
};
|
|
437
|
-
};
|
|
438
|
-
};
|
|
439
|
-
};
|
|
440
|
-
};
|
|
441
|
-
ComAtprotoAdminGetRepo: {
|
|
442
|
-
lexicon: number;
|
|
443
|
-
id: string;
|
|
444
|
-
defs: {
|
|
445
|
-
main: {
|
|
446
|
-
type: string;
|
|
447
|
-
description: string;
|
|
448
|
-
parameters: {
|
|
449
|
-
type: string;
|
|
450
|
-
required: string[];
|
|
451
|
-
properties: {
|
|
452
|
-
did: {
|
|
453
|
-
type: string;
|
|
454
|
-
};
|
|
455
|
-
};
|
|
456
|
-
};
|
|
457
|
-
output: {
|
|
458
|
-
encoding: string;
|
|
459
|
-
schema: {
|
|
460
|
-
type: string;
|
|
461
|
-
ref: string;
|
|
462
|
-
};
|
|
463
|
-
};
|
|
464
|
-
};
|
|
465
|
-
};
|
|
466
|
-
};
|
|
467
|
-
ComAtprotoAdminModerationAction: {
|
|
468
|
-
lexicon: number;
|
|
469
|
-
id: string;
|
|
470
|
-
defs: {
|
|
471
|
-
view: {
|
|
7
|
+
actionView: {
|
|
472
8
|
type: string;
|
|
473
9
|
required: string[];
|
|
474
10
|
properties: {
|
|
@@ -494,9 +30,11 @@ export declare const schemaDict: {
|
|
|
494
30
|
};
|
|
495
31
|
createdBy: {
|
|
496
32
|
type: string;
|
|
33
|
+
format: string;
|
|
497
34
|
};
|
|
498
35
|
createdAt: {
|
|
499
36
|
type: string;
|
|
37
|
+
format: string;
|
|
500
38
|
};
|
|
501
39
|
reversal: {
|
|
502
40
|
type: string;
|
|
@@ -510,7 +48,7 @@ export declare const schemaDict: {
|
|
|
510
48
|
};
|
|
511
49
|
};
|
|
512
50
|
};
|
|
513
|
-
|
|
51
|
+
actionViewDetail: {
|
|
514
52
|
type: string;
|
|
515
53
|
required: string[];
|
|
516
54
|
properties: {
|
|
@@ -537,9 +75,11 @@ export declare const schemaDict: {
|
|
|
537
75
|
};
|
|
538
76
|
createdBy: {
|
|
539
77
|
type: string;
|
|
78
|
+
format: string;
|
|
540
79
|
};
|
|
541
80
|
createdAt: {
|
|
542
81
|
type: string;
|
|
82
|
+
format: string;
|
|
543
83
|
};
|
|
544
84
|
reversal: {
|
|
545
85
|
type: string;
|
|
@@ -554,7 +94,7 @@ export declare const schemaDict: {
|
|
|
554
94
|
};
|
|
555
95
|
};
|
|
556
96
|
};
|
|
557
|
-
|
|
97
|
+
actionViewCurrent: {
|
|
558
98
|
type: string;
|
|
559
99
|
required: string[];
|
|
560
100
|
properties: {
|
|
@@ -567,7 +107,7 @@ export declare const schemaDict: {
|
|
|
567
107
|
};
|
|
568
108
|
};
|
|
569
109
|
};
|
|
570
|
-
|
|
110
|
+
actionReversal: {
|
|
571
111
|
type: string;
|
|
572
112
|
required: string[];
|
|
573
113
|
properties: {
|
|
@@ -576,9 +116,11 @@ export declare const schemaDict: {
|
|
|
576
116
|
};
|
|
577
117
|
createdBy: {
|
|
578
118
|
type: string;
|
|
119
|
+
format: string;
|
|
579
120
|
};
|
|
580
121
|
createdAt: {
|
|
581
122
|
type: string;
|
|
123
|
+
format: string;
|
|
582
124
|
};
|
|
583
125
|
};
|
|
584
126
|
};
|
|
@@ -598,13 +140,7 @@ export declare const schemaDict: {
|
|
|
598
140
|
type: string;
|
|
599
141
|
description: string;
|
|
600
142
|
};
|
|
601
|
-
|
|
602
|
-
};
|
|
603
|
-
ComAtprotoAdminModerationReport: {
|
|
604
|
-
lexicon: number;
|
|
605
|
-
id: string;
|
|
606
|
-
defs: {
|
|
607
|
-
view: {
|
|
143
|
+
reportView: {
|
|
608
144
|
type: string;
|
|
609
145
|
required: string[];
|
|
610
146
|
properties: {
|
|
@@ -622,11 +158,13 @@ export declare const schemaDict: {
|
|
|
622
158
|
type: string;
|
|
623
159
|
refs: string[];
|
|
624
160
|
};
|
|
625
|
-
|
|
161
|
+
reportedBy: {
|
|
626
162
|
type: string;
|
|
163
|
+
format: string;
|
|
627
164
|
};
|
|
628
165
|
createdAt: {
|
|
629
166
|
type: string;
|
|
167
|
+
format: string;
|
|
630
168
|
};
|
|
631
169
|
resolvedByActionIds: {
|
|
632
170
|
type: string;
|
|
@@ -636,54 +174,124 @@ export declare const schemaDict: {
|
|
|
636
174
|
};
|
|
637
175
|
};
|
|
638
176
|
};
|
|
639
|
-
|
|
177
|
+
reportViewDetail: {
|
|
640
178
|
type: string;
|
|
641
179
|
required: string[];
|
|
642
180
|
properties: {
|
|
643
181
|
id: {
|
|
644
182
|
type: string;
|
|
645
183
|
};
|
|
646
|
-
reasonType: {
|
|
184
|
+
reasonType: {
|
|
185
|
+
type: string;
|
|
186
|
+
ref: string;
|
|
187
|
+
};
|
|
188
|
+
reason: {
|
|
189
|
+
type: string;
|
|
190
|
+
};
|
|
191
|
+
subject: {
|
|
192
|
+
type: string;
|
|
193
|
+
refs: string[];
|
|
194
|
+
};
|
|
195
|
+
reportedBy: {
|
|
196
|
+
type: string;
|
|
197
|
+
format: string;
|
|
198
|
+
};
|
|
199
|
+
createdAt: {
|
|
200
|
+
type: string;
|
|
201
|
+
format: string;
|
|
202
|
+
};
|
|
203
|
+
resolvedByActions: {
|
|
204
|
+
type: string;
|
|
205
|
+
items: {
|
|
206
|
+
type: string;
|
|
207
|
+
ref: string;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
repoView: {
|
|
213
|
+
type: string;
|
|
214
|
+
required: string[];
|
|
215
|
+
properties: {
|
|
216
|
+
did: {
|
|
217
|
+
type: string;
|
|
218
|
+
format: string;
|
|
219
|
+
};
|
|
220
|
+
handle: {
|
|
221
|
+
type: string;
|
|
222
|
+
format: string;
|
|
223
|
+
};
|
|
224
|
+
email: {
|
|
225
|
+
type: string;
|
|
226
|
+
};
|
|
227
|
+
relatedRecords: {
|
|
228
|
+
type: string;
|
|
229
|
+
items: {
|
|
230
|
+
type: string;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
indexedAt: {
|
|
234
|
+
type: string;
|
|
235
|
+
format: string;
|
|
236
|
+
};
|
|
237
|
+
moderation: {
|
|
238
|
+
type: string;
|
|
239
|
+
ref: string;
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
repoViewDetail: {
|
|
244
|
+
type: string;
|
|
245
|
+
required: string[];
|
|
246
|
+
properties: {
|
|
247
|
+
did: {
|
|
248
|
+
type: string;
|
|
249
|
+
format: string;
|
|
250
|
+
};
|
|
251
|
+
handle: {
|
|
647
252
|
type: string;
|
|
648
|
-
|
|
253
|
+
format: string;
|
|
649
254
|
};
|
|
650
|
-
|
|
255
|
+
email: {
|
|
651
256
|
type: string;
|
|
652
257
|
};
|
|
653
|
-
|
|
258
|
+
relatedRecords: {
|
|
654
259
|
type: string;
|
|
655
|
-
|
|
260
|
+
items: {
|
|
261
|
+
type: string;
|
|
262
|
+
};
|
|
656
263
|
};
|
|
657
|
-
|
|
264
|
+
indexedAt: {
|
|
658
265
|
type: string;
|
|
266
|
+
format: string;
|
|
659
267
|
};
|
|
660
|
-
|
|
268
|
+
moderation: {
|
|
661
269
|
type: string;
|
|
270
|
+
ref: string;
|
|
662
271
|
};
|
|
663
|
-
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
repoRef: {
|
|
275
|
+
type: string;
|
|
276
|
+
required: string[];
|
|
277
|
+
properties: {
|
|
278
|
+
did: {
|
|
664
279
|
type: string;
|
|
665
|
-
|
|
666
|
-
type: string;
|
|
667
|
-
ref: string;
|
|
668
|
-
};
|
|
280
|
+
format: string;
|
|
669
281
|
};
|
|
670
282
|
};
|
|
671
283
|
};
|
|
672
|
-
|
|
673
|
-
};
|
|
674
|
-
ComAtprotoAdminRecord: {
|
|
675
|
-
lexicon: number;
|
|
676
|
-
id: string;
|
|
677
|
-
defs: {
|
|
678
|
-
view: {
|
|
284
|
+
recordView: {
|
|
679
285
|
type: string;
|
|
680
286
|
required: string[];
|
|
681
287
|
properties: {
|
|
682
288
|
uri: {
|
|
683
289
|
type: string;
|
|
290
|
+
format: string;
|
|
684
291
|
};
|
|
685
292
|
cid: {
|
|
686
293
|
type: string;
|
|
294
|
+
format: string;
|
|
687
295
|
};
|
|
688
296
|
value: {
|
|
689
297
|
type: string;
|
|
@@ -692,10 +300,12 @@ export declare const schemaDict: {
|
|
|
692
300
|
type: string;
|
|
693
301
|
items: {
|
|
694
302
|
type: string;
|
|
303
|
+
format: string;
|
|
695
304
|
};
|
|
696
305
|
};
|
|
697
306
|
indexedAt: {
|
|
698
307
|
type: string;
|
|
308
|
+
format: string;
|
|
699
309
|
};
|
|
700
310
|
moderation: {
|
|
701
311
|
type: string;
|
|
@@ -707,15 +317,17 @@ export declare const schemaDict: {
|
|
|
707
317
|
};
|
|
708
318
|
};
|
|
709
319
|
};
|
|
710
|
-
|
|
320
|
+
recordViewDetail: {
|
|
711
321
|
type: string;
|
|
712
322
|
required: string[];
|
|
713
323
|
properties: {
|
|
714
324
|
uri: {
|
|
715
325
|
type: string;
|
|
326
|
+
format: string;
|
|
716
327
|
};
|
|
717
328
|
cid: {
|
|
718
329
|
type: string;
|
|
330
|
+
format: string;
|
|
719
331
|
};
|
|
720
332
|
value: {
|
|
721
333
|
type: string;
|
|
@@ -729,6 +341,7 @@ export declare const schemaDict: {
|
|
|
729
341
|
};
|
|
730
342
|
indexedAt: {
|
|
731
343
|
type: string;
|
|
344
|
+
format: string;
|
|
732
345
|
};
|
|
733
346
|
moderation: {
|
|
734
347
|
type: string;
|
|
@@ -774,34 +387,27 @@ export declare const schemaDict: {
|
|
|
774
387
|
};
|
|
775
388
|
};
|
|
776
389
|
};
|
|
777
|
-
|
|
778
|
-
};
|
|
779
|
-
ComAtprotoAdminRepo: {
|
|
780
|
-
lexicon: number;
|
|
781
|
-
id: string;
|
|
782
|
-
defs: {
|
|
783
|
-
view: {
|
|
390
|
+
blobView: {
|
|
784
391
|
type: string;
|
|
785
392
|
required: string[];
|
|
786
393
|
properties: {
|
|
787
|
-
|
|
394
|
+
cid: {
|
|
788
395
|
type: string;
|
|
396
|
+
format: string;
|
|
789
397
|
};
|
|
790
|
-
|
|
398
|
+
mimeType: {
|
|
791
399
|
type: string;
|
|
792
400
|
};
|
|
793
|
-
|
|
401
|
+
size: {
|
|
794
402
|
type: string;
|
|
795
|
-
ref: string;
|
|
796
403
|
};
|
|
797
|
-
|
|
404
|
+
createdAt: {
|
|
798
405
|
type: string;
|
|
799
|
-
|
|
800
|
-
type: string;
|
|
801
|
-
};
|
|
406
|
+
format: string;
|
|
802
407
|
};
|
|
803
|
-
|
|
408
|
+
details: {
|
|
804
409
|
type: string;
|
|
410
|
+
refs: string[];
|
|
805
411
|
};
|
|
806
412
|
moderation: {
|
|
807
413
|
type: string;
|
|
@@ -809,75 +415,235 @@ export declare const schemaDict: {
|
|
|
809
415
|
};
|
|
810
416
|
};
|
|
811
417
|
};
|
|
812
|
-
|
|
418
|
+
imageDetails: {
|
|
813
419
|
type: string;
|
|
814
420
|
required: string[];
|
|
815
421
|
properties: {
|
|
816
|
-
|
|
422
|
+
width: {
|
|
817
423
|
type: string;
|
|
818
424
|
};
|
|
819
|
-
|
|
425
|
+
height: {
|
|
426
|
+
type: string;
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
videoDetails: {
|
|
431
|
+
type: string;
|
|
432
|
+
required: string[];
|
|
433
|
+
properties: {
|
|
434
|
+
width: {
|
|
820
435
|
type: string;
|
|
821
436
|
};
|
|
822
|
-
|
|
437
|
+
height: {
|
|
823
438
|
type: string;
|
|
824
|
-
ref: string;
|
|
825
439
|
};
|
|
826
|
-
|
|
440
|
+
length: {
|
|
827
441
|
type: string;
|
|
828
|
-
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
ComAtprotoAdminGetModerationAction: {
|
|
448
|
+
lexicon: number;
|
|
449
|
+
id: string;
|
|
450
|
+
defs: {
|
|
451
|
+
main: {
|
|
452
|
+
type: string;
|
|
453
|
+
description: string;
|
|
454
|
+
parameters: {
|
|
455
|
+
type: string;
|
|
456
|
+
required: string[];
|
|
457
|
+
properties: {
|
|
458
|
+
id: {
|
|
829
459
|
type: string;
|
|
830
460
|
};
|
|
831
461
|
};
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
462
|
+
};
|
|
463
|
+
output: {
|
|
464
|
+
encoding: string;
|
|
465
|
+
schema: {
|
|
836
466
|
type: string;
|
|
837
467
|
ref: string;
|
|
838
468
|
};
|
|
839
469
|
};
|
|
840
470
|
};
|
|
841
|
-
|
|
471
|
+
};
|
|
472
|
+
};
|
|
473
|
+
ComAtprotoAdminGetModerationActions: {
|
|
474
|
+
lexicon: number;
|
|
475
|
+
id: string;
|
|
476
|
+
defs: {
|
|
477
|
+
main: {
|
|
842
478
|
type: string;
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
479
|
+
description: string;
|
|
480
|
+
parameters: {
|
|
481
|
+
type: string;
|
|
482
|
+
properties: {
|
|
483
|
+
subject: {
|
|
484
|
+
type: string;
|
|
485
|
+
};
|
|
486
|
+
limit: {
|
|
487
|
+
type: string;
|
|
488
|
+
minimum: number;
|
|
489
|
+
maximum: number;
|
|
490
|
+
default: number;
|
|
491
|
+
};
|
|
492
|
+
cursor: {
|
|
493
|
+
type: string;
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
output: {
|
|
498
|
+
encoding: string;
|
|
499
|
+
schema: {
|
|
846
500
|
type: string;
|
|
501
|
+
required: string[];
|
|
502
|
+
properties: {
|
|
503
|
+
cursor: {
|
|
504
|
+
type: string;
|
|
505
|
+
};
|
|
506
|
+
actions: {
|
|
507
|
+
type: string;
|
|
508
|
+
items: {
|
|
509
|
+
type: string;
|
|
510
|
+
ref: string;
|
|
511
|
+
};
|
|
512
|
+
};
|
|
513
|
+
};
|
|
847
514
|
};
|
|
848
515
|
};
|
|
849
516
|
};
|
|
850
|
-
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
ComAtprotoAdminGetModerationReport: {
|
|
520
|
+
lexicon: number;
|
|
521
|
+
id: string;
|
|
522
|
+
defs: {
|
|
523
|
+
main: {
|
|
851
524
|
type: string;
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
525
|
+
description: string;
|
|
526
|
+
parameters: {
|
|
527
|
+
type: string;
|
|
528
|
+
required: string[];
|
|
529
|
+
properties: {
|
|
530
|
+
id: {
|
|
531
|
+
type: string;
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
};
|
|
535
|
+
output: {
|
|
536
|
+
encoding: string;
|
|
537
|
+
schema: {
|
|
855
538
|
type: string;
|
|
856
539
|
ref: string;
|
|
857
540
|
};
|
|
858
541
|
};
|
|
859
542
|
};
|
|
860
|
-
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
ComAtprotoAdminGetModerationReports: {
|
|
546
|
+
lexicon: number;
|
|
547
|
+
id: string;
|
|
548
|
+
defs: {
|
|
549
|
+
main: {
|
|
861
550
|
type: string;
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
551
|
+
description: string;
|
|
552
|
+
parameters: {
|
|
553
|
+
type: string;
|
|
554
|
+
properties: {
|
|
555
|
+
subject: {
|
|
556
|
+
type: string;
|
|
557
|
+
};
|
|
558
|
+
resolved: {
|
|
559
|
+
type: string;
|
|
560
|
+
};
|
|
561
|
+
limit: {
|
|
562
|
+
type: string;
|
|
563
|
+
minimum: number;
|
|
564
|
+
maximum: number;
|
|
565
|
+
default: number;
|
|
566
|
+
};
|
|
567
|
+
cursor: {
|
|
568
|
+
type: string;
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
output: {
|
|
573
|
+
encoding: string;
|
|
574
|
+
schema: {
|
|
865
575
|
type: string;
|
|
866
|
-
|
|
576
|
+
required: string[];
|
|
577
|
+
properties: {
|
|
578
|
+
cursor: {
|
|
579
|
+
type: string;
|
|
580
|
+
};
|
|
581
|
+
reports: {
|
|
582
|
+
type: string;
|
|
583
|
+
items: {
|
|
584
|
+
type: string;
|
|
585
|
+
ref: string;
|
|
586
|
+
};
|
|
587
|
+
};
|
|
588
|
+
};
|
|
867
589
|
};
|
|
868
|
-
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
ComAtprotoAdminGetRecord: {
|
|
595
|
+
lexicon: number;
|
|
596
|
+
id: string;
|
|
597
|
+
defs: {
|
|
598
|
+
main: {
|
|
599
|
+
type: string;
|
|
600
|
+
description: string;
|
|
601
|
+
parameters: {
|
|
602
|
+
type: string;
|
|
603
|
+
required: string[];
|
|
604
|
+
properties: {
|
|
605
|
+
uri: {
|
|
606
|
+
type: string;
|
|
607
|
+
format: string;
|
|
608
|
+
};
|
|
609
|
+
cid: {
|
|
610
|
+
type: string;
|
|
611
|
+
format: string;
|
|
612
|
+
};
|
|
613
|
+
};
|
|
614
|
+
};
|
|
615
|
+
output: {
|
|
616
|
+
encoding: string;
|
|
617
|
+
schema: {
|
|
869
618
|
type: string;
|
|
870
|
-
|
|
619
|
+
ref: string;
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
};
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
ComAtprotoAdminGetRepo: {
|
|
626
|
+
lexicon: number;
|
|
627
|
+
id: string;
|
|
628
|
+
defs: {
|
|
629
|
+
main: {
|
|
630
|
+
type: string;
|
|
631
|
+
description: string;
|
|
632
|
+
parameters: {
|
|
633
|
+
type: string;
|
|
634
|
+
required: string[];
|
|
635
|
+
properties: {
|
|
636
|
+
did: {
|
|
871
637
|
type: string;
|
|
872
|
-
|
|
638
|
+
format: string;
|
|
873
639
|
};
|
|
874
640
|
};
|
|
875
|
-
|
|
641
|
+
};
|
|
642
|
+
output: {
|
|
643
|
+
encoding: string;
|
|
644
|
+
schema: {
|
|
876
645
|
type: string;
|
|
877
|
-
|
|
878
|
-
type: string;
|
|
879
|
-
ref: string;
|
|
880
|
-
};
|
|
646
|
+
ref: string;
|
|
881
647
|
};
|
|
882
648
|
};
|
|
883
649
|
};
|
|
@@ -907,6 +673,7 @@ export declare const schemaDict: {
|
|
|
907
673
|
};
|
|
908
674
|
createdBy: {
|
|
909
675
|
type: string;
|
|
676
|
+
format: string;
|
|
910
677
|
};
|
|
911
678
|
};
|
|
912
679
|
};
|
|
@@ -942,6 +709,7 @@ export declare const schemaDict: {
|
|
|
942
709
|
};
|
|
943
710
|
createdBy: {
|
|
944
711
|
type: string;
|
|
712
|
+
format: string;
|
|
945
713
|
};
|
|
946
714
|
};
|
|
947
715
|
};
|
|
@@ -975,7 +743,7 @@ export declare const schemaDict: {
|
|
|
975
743
|
maximum: number;
|
|
976
744
|
default: number;
|
|
977
745
|
};
|
|
978
|
-
|
|
746
|
+
cursor: {
|
|
979
747
|
type: string;
|
|
980
748
|
};
|
|
981
749
|
};
|
|
@@ -1027,6 +795,7 @@ export declare const schemaDict: {
|
|
|
1027
795
|
type: string;
|
|
1028
796
|
items: {
|
|
1029
797
|
type: string;
|
|
798
|
+
format: string;
|
|
1030
799
|
};
|
|
1031
800
|
};
|
|
1032
801
|
reason: {
|
|
@@ -1034,6 +803,7 @@ export declare const schemaDict: {
|
|
|
1034
803
|
};
|
|
1035
804
|
createdBy: {
|
|
1036
805
|
type: string;
|
|
806
|
+
format: string;
|
|
1037
807
|
};
|
|
1038
808
|
};
|
|
1039
809
|
};
|
|
@@ -1051,15 +821,22 @@ export declare const schemaDict: {
|
|
|
1051
821
|
};
|
|
1052
822
|
};
|
|
1053
823
|
};
|
|
1054
|
-
|
|
824
|
+
ComAtprotoIdentityResolveHandle: {
|
|
1055
825
|
lexicon: number;
|
|
1056
826
|
id: string;
|
|
1057
827
|
defs: {
|
|
1058
828
|
main: {
|
|
1059
829
|
type: string;
|
|
1060
830
|
description: string;
|
|
1061
|
-
|
|
1062
|
-
|
|
831
|
+
parameters: {
|
|
832
|
+
type: string;
|
|
833
|
+
properties: {
|
|
834
|
+
handle: {
|
|
835
|
+
type: string;
|
|
836
|
+
format: string;
|
|
837
|
+
description: string;
|
|
838
|
+
};
|
|
839
|
+
};
|
|
1063
840
|
};
|
|
1064
841
|
output: {
|
|
1065
842
|
encoding: string;
|
|
@@ -1067,8 +844,9 @@ export declare const schemaDict: {
|
|
|
1067
844
|
type: string;
|
|
1068
845
|
required: string[];
|
|
1069
846
|
properties: {
|
|
1070
|
-
|
|
847
|
+
did: {
|
|
1071
848
|
type: string;
|
|
849
|
+
format: string;
|
|
1072
850
|
};
|
|
1073
851
|
};
|
|
1074
852
|
};
|
|
@@ -1076,30 +854,22 @@ export declare const schemaDict: {
|
|
|
1076
854
|
};
|
|
1077
855
|
};
|
|
1078
856
|
};
|
|
1079
|
-
|
|
857
|
+
ComAtprotoIdentityUpdateHandle: {
|
|
1080
858
|
lexicon: number;
|
|
1081
859
|
id: string;
|
|
1082
860
|
defs: {
|
|
1083
861
|
main: {
|
|
1084
862
|
type: string;
|
|
1085
863
|
description: string;
|
|
1086
|
-
|
|
1087
|
-
type: string;
|
|
1088
|
-
properties: {
|
|
1089
|
-
handle: {
|
|
1090
|
-
type: string;
|
|
1091
|
-
description: string;
|
|
1092
|
-
};
|
|
1093
|
-
};
|
|
1094
|
-
};
|
|
1095
|
-
output: {
|
|
864
|
+
input: {
|
|
1096
865
|
encoding: string;
|
|
1097
866
|
schema: {
|
|
1098
867
|
type: string;
|
|
1099
868
|
required: string[];
|
|
1100
869
|
properties: {
|
|
1101
|
-
|
|
870
|
+
handle: {
|
|
1102
871
|
type: string;
|
|
872
|
+
format: string;
|
|
1103
873
|
};
|
|
1104
874
|
};
|
|
1105
875
|
};
|
|
@@ -1107,7 +877,7 @@ export declare const schemaDict: {
|
|
|
1107
877
|
};
|
|
1108
878
|
};
|
|
1109
879
|
};
|
|
1110
|
-
|
|
880
|
+
ComAtprotoModerationCreateReport: {
|
|
1111
881
|
lexicon: number;
|
|
1112
882
|
id: string;
|
|
1113
883
|
defs: {
|
|
@@ -1120,8 +890,47 @@ export declare const schemaDict: {
|
|
|
1120
890
|
type: string;
|
|
1121
891
|
required: string[];
|
|
1122
892
|
properties: {
|
|
1123
|
-
|
|
893
|
+
reasonType: {
|
|
894
|
+
type: string;
|
|
895
|
+
ref: string;
|
|
896
|
+
};
|
|
897
|
+
reason: {
|
|
898
|
+
type: string;
|
|
899
|
+
};
|
|
900
|
+
subject: {
|
|
901
|
+
type: string;
|
|
902
|
+
refs: string[];
|
|
903
|
+
};
|
|
904
|
+
};
|
|
905
|
+
};
|
|
906
|
+
};
|
|
907
|
+
output: {
|
|
908
|
+
encoding: string;
|
|
909
|
+
schema: {
|
|
910
|
+
type: string;
|
|
911
|
+
required: string[];
|
|
912
|
+
properties: {
|
|
913
|
+
id: {
|
|
914
|
+
type: string;
|
|
915
|
+
};
|
|
916
|
+
reasonType: {
|
|
917
|
+
type: string;
|
|
918
|
+
ref: string;
|
|
919
|
+
};
|
|
920
|
+
reason: {
|
|
921
|
+
type: string;
|
|
922
|
+
};
|
|
923
|
+
subject: {
|
|
1124
924
|
type: string;
|
|
925
|
+
refs: string[];
|
|
926
|
+
};
|
|
927
|
+
reportedBy: {
|
|
928
|
+
type: string;
|
|
929
|
+
format: string;
|
|
930
|
+
};
|
|
931
|
+
createdAt: {
|
|
932
|
+
type: string;
|
|
933
|
+
format: string;
|
|
1125
934
|
};
|
|
1126
935
|
};
|
|
1127
936
|
};
|
|
@@ -1129,7 +938,25 @@ export declare const schemaDict: {
|
|
|
1129
938
|
};
|
|
1130
939
|
};
|
|
1131
940
|
};
|
|
1132
|
-
|
|
941
|
+
ComAtprotoModerationDefs: {
|
|
942
|
+
lexicon: number;
|
|
943
|
+
id: string;
|
|
944
|
+
defs: {
|
|
945
|
+
reasonType: {
|
|
946
|
+
type: string;
|
|
947
|
+
knownValues: string[];
|
|
948
|
+
};
|
|
949
|
+
reasonSpam: {
|
|
950
|
+
type: string;
|
|
951
|
+
description: string;
|
|
952
|
+
};
|
|
953
|
+
reasonOther: {
|
|
954
|
+
type: string;
|
|
955
|
+
description: string;
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
};
|
|
959
|
+
ComAtprotoRepoApplyWrites: {
|
|
1133
960
|
lexicon: number;
|
|
1134
961
|
id: string;
|
|
1135
962
|
defs: {
|
|
@@ -1142,8 +969,9 @@ export declare const schemaDict: {
|
|
|
1142
969
|
type: string;
|
|
1143
970
|
required: string[];
|
|
1144
971
|
properties: {
|
|
1145
|
-
|
|
972
|
+
repo: {
|
|
1146
973
|
type: string;
|
|
974
|
+
format: string;
|
|
1147
975
|
description: string;
|
|
1148
976
|
};
|
|
1149
977
|
validate: {
|
|
@@ -1159,20 +987,25 @@ export declare const schemaDict: {
|
|
|
1159
987
|
closed: boolean;
|
|
1160
988
|
};
|
|
1161
989
|
};
|
|
990
|
+
swapCommit: {
|
|
991
|
+
type: string;
|
|
992
|
+
format: string;
|
|
993
|
+
};
|
|
1162
994
|
};
|
|
1163
995
|
};
|
|
1164
996
|
};
|
|
997
|
+
errors: {
|
|
998
|
+
name: string;
|
|
999
|
+
}[];
|
|
1165
1000
|
};
|
|
1166
1001
|
create: {
|
|
1167
1002
|
type: string;
|
|
1003
|
+
description: string;
|
|
1168
1004
|
required: string[];
|
|
1169
1005
|
properties: {
|
|
1170
|
-
action: {
|
|
1171
|
-
type: string;
|
|
1172
|
-
const: string;
|
|
1173
|
-
};
|
|
1174
1006
|
collection: {
|
|
1175
1007
|
type: string;
|
|
1008
|
+
format: string;
|
|
1176
1009
|
};
|
|
1177
1010
|
rkey: {
|
|
1178
1011
|
type: string;
|
|
@@ -1184,14 +1017,12 @@ export declare const schemaDict: {
|
|
|
1184
1017
|
};
|
|
1185
1018
|
update: {
|
|
1186
1019
|
type: string;
|
|
1020
|
+
description: string;
|
|
1187
1021
|
required: string[];
|
|
1188
1022
|
properties: {
|
|
1189
|
-
action: {
|
|
1190
|
-
type: string;
|
|
1191
|
-
const: string;
|
|
1192
|
-
};
|
|
1193
1023
|
collection: {
|
|
1194
1024
|
type: string;
|
|
1025
|
+
format: string;
|
|
1195
1026
|
};
|
|
1196
1027
|
rkey: {
|
|
1197
1028
|
type: string;
|
|
@@ -1203,14 +1034,12 @@ export declare const schemaDict: {
|
|
|
1203
1034
|
};
|
|
1204
1035
|
delete: {
|
|
1205
1036
|
type: string;
|
|
1037
|
+
description: string;
|
|
1206
1038
|
required: string[];
|
|
1207
1039
|
properties: {
|
|
1208
|
-
action: {
|
|
1209
|
-
type: string;
|
|
1210
|
-
const: string;
|
|
1211
|
-
};
|
|
1212
1040
|
collection: {
|
|
1213
1041
|
type: string;
|
|
1042
|
+
format: string;
|
|
1214
1043
|
};
|
|
1215
1044
|
rkey: {
|
|
1216
1045
|
type: string;
|
|
@@ -1232,11 +1061,17 @@ export declare const schemaDict: {
|
|
|
1232
1061
|
type: string;
|
|
1233
1062
|
required: string[];
|
|
1234
1063
|
properties: {
|
|
1235
|
-
|
|
1064
|
+
repo: {
|
|
1236
1065
|
type: string;
|
|
1066
|
+
format: string;
|
|
1237
1067
|
description: string;
|
|
1238
1068
|
};
|
|
1239
1069
|
collection: {
|
|
1070
|
+
type: string;
|
|
1071
|
+
format: string;
|
|
1072
|
+
description: string;
|
|
1073
|
+
};
|
|
1074
|
+
rkey: {
|
|
1240
1075
|
type: string;
|
|
1241
1076
|
description: string;
|
|
1242
1077
|
};
|
|
@@ -1249,6 +1084,11 @@ export declare const schemaDict: {
|
|
|
1249
1084
|
type: string;
|
|
1250
1085
|
description: string;
|
|
1251
1086
|
};
|
|
1087
|
+
swapCommit: {
|
|
1088
|
+
type: string;
|
|
1089
|
+
format: string;
|
|
1090
|
+
description: string;
|
|
1091
|
+
};
|
|
1252
1092
|
};
|
|
1253
1093
|
};
|
|
1254
1094
|
};
|
|
@@ -1260,13 +1100,18 @@ export declare const schemaDict: {
|
|
|
1260
1100
|
properties: {
|
|
1261
1101
|
uri: {
|
|
1262
1102
|
type: string;
|
|
1103
|
+
format: string;
|
|
1263
1104
|
};
|
|
1264
1105
|
cid: {
|
|
1265
1106
|
type: string;
|
|
1107
|
+
format: string;
|
|
1266
1108
|
};
|
|
1267
1109
|
};
|
|
1268
1110
|
};
|
|
1269
1111
|
};
|
|
1112
|
+
errors: {
|
|
1113
|
+
name: string;
|
|
1114
|
+
}[];
|
|
1270
1115
|
};
|
|
1271
1116
|
};
|
|
1272
1117
|
};
|
|
@@ -1283,25 +1128,40 @@ export declare const schemaDict: {
|
|
|
1283
1128
|
type: string;
|
|
1284
1129
|
required: string[];
|
|
1285
1130
|
properties: {
|
|
1286
|
-
|
|
1131
|
+
repo: {
|
|
1287
1132
|
type: string;
|
|
1133
|
+
format: string;
|
|
1288
1134
|
description: string;
|
|
1289
1135
|
};
|
|
1290
1136
|
collection: {
|
|
1291
1137
|
type: string;
|
|
1138
|
+
format: string;
|
|
1292
1139
|
description: string;
|
|
1293
1140
|
};
|
|
1294
1141
|
rkey: {
|
|
1295
1142
|
type: string;
|
|
1296
1143
|
description: string;
|
|
1297
1144
|
};
|
|
1145
|
+
swapRecord: {
|
|
1146
|
+
type: string;
|
|
1147
|
+
format: string;
|
|
1148
|
+
description: string;
|
|
1149
|
+
};
|
|
1150
|
+
swapCommit: {
|
|
1151
|
+
type: string;
|
|
1152
|
+
format: string;
|
|
1153
|
+
description: string;
|
|
1154
|
+
};
|
|
1298
1155
|
};
|
|
1299
1156
|
};
|
|
1300
1157
|
};
|
|
1158
|
+
errors: {
|
|
1159
|
+
name: string;
|
|
1160
|
+
}[];
|
|
1301
1161
|
};
|
|
1302
1162
|
};
|
|
1303
1163
|
};
|
|
1304
|
-
|
|
1164
|
+
ComAtprotoRepoDescribeRepo: {
|
|
1305
1165
|
lexicon: number;
|
|
1306
1166
|
id: string;
|
|
1307
1167
|
defs: {
|
|
@@ -1312,8 +1172,9 @@ export declare const schemaDict: {
|
|
|
1312
1172
|
type: string;
|
|
1313
1173
|
required: string[];
|
|
1314
1174
|
properties: {
|
|
1315
|
-
|
|
1175
|
+
repo: {
|
|
1316
1176
|
type: string;
|
|
1177
|
+
format: string;
|
|
1317
1178
|
description: string;
|
|
1318
1179
|
};
|
|
1319
1180
|
};
|
|
@@ -1326,9 +1187,11 @@ export declare const schemaDict: {
|
|
|
1326
1187
|
properties: {
|
|
1327
1188
|
handle: {
|
|
1328
1189
|
type: string;
|
|
1190
|
+
format: string;
|
|
1329
1191
|
};
|
|
1330
1192
|
did: {
|
|
1331
1193
|
type: string;
|
|
1194
|
+
format: string;
|
|
1332
1195
|
};
|
|
1333
1196
|
didDoc: {
|
|
1334
1197
|
type: string;
|
|
@@ -1337,6 +1200,7 @@ export declare const schemaDict: {
|
|
|
1337
1200
|
type: string;
|
|
1338
1201
|
items: {
|
|
1339
1202
|
type: string;
|
|
1203
|
+
format: string;
|
|
1340
1204
|
};
|
|
1341
1205
|
};
|
|
1342
1206
|
handleIsCorrect: {
|
|
@@ -1359,12 +1223,14 @@ export declare const schemaDict: {
|
|
|
1359
1223
|
type: string;
|
|
1360
1224
|
required: string[];
|
|
1361
1225
|
properties: {
|
|
1362
|
-
|
|
1226
|
+
repo: {
|
|
1363
1227
|
type: string;
|
|
1228
|
+
format: string;
|
|
1364
1229
|
description: string;
|
|
1365
1230
|
};
|
|
1366
1231
|
collection: {
|
|
1367
1232
|
type: string;
|
|
1233
|
+
format: string;
|
|
1368
1234
|
description: string;
|
|
1369
1235
|
};
|
|
1370
1236
|
rkey: {
|
|
@@ -1373,6 +1239,7 @@ export declare const schemaDict: {
|
|
|
1373
1239
|
};
|
|
1374
1240
|
cid: {
|
|
1375
1241
|
type: string;
|
|
1242
|
+
format: string;
|
|
1376
1243
|
description: string;
|
|
1377
1244
|
};
|
|
1378
1245
|
};
|
|
@@ -1385,9 +1252,11 @@ export declare const schemaDict: {
|
|
|
1385
1252
|
properties: {
|
|
1386
1253
|
uri: {
|
|
1387
1254
|
type: string;
|
|
1255
|
+
format: string;
|
|
1388
1256
|
};
|
|
1389
1257
|
cid: {
|
|
1390
1258
|
type: string;
|
|
1259
|
+
format: string;
|
|
1391
1260
|
};
|
|
1392
1261
|
value: {
|
|
1393
1262
|
type: string;
|
|
@@ -1409,12 +1278,14 @@ export declare const schemaDict: {
|
|
|
1409
1278
|
type: string;
|
|
1410
1279
|
required: string[];
|
|
1411
1280
|
properties: {
|
|
1412
|
-
|
|
1281
|
+
repo: {
|
|
1413
1282
|
type: string;
|
|
1283
|
+
format: string;
|
|
1414
1284
|
description: string;
|
|
1415
1285
|
};
|
|
1416
1286
|
collection: {
|
|
1417
1287
|
type: string;
|
|
1288
|
+
format: string;
|
|
1418
1289
|
description: string;
|
|
1419
1290
|
};
|
|
1420
1291
|
limit: {
|
|
@@ -1424,11 +1295,11 @@ export declare const schemaDict: {
|
|
|
1424
1295
|
default: number;
|
|
1425
1296
|
description: string;
|
|
1426
1297
|
};
|
|
1427
|
-
|
|
1298
|
+
rkeyStart: {
|
|
1428
1299
|
type: string;
|
|
1429
1300
|
description: string;
|
|
1430
1301
|
};
|
|
1431
|
-
|
|
1302
|
+
rkeyEnd: {
|
|
1432
1303
|
type: string;
|
|
1433
1304
|
description: string;
|
|
1434
1305
|
};
|
|
@@ -1464,9 +1335,11 @@ export declare const schemaDict: {
|
|
|
1464
1335
|
properties: {
|
|
1465
1336
|
uri: {
|
|
1466
1337
|
type: string;
|
|
1338
|
+
format: string;
|
|
1467
1339
|
};
|
|
1468
1340
|
cid: {
|
|
1469
1341
|
type: string;
|
|
1342
|
+
format: string;
|
|
1470
1343
|
};
|
|
1471
1344
|
value: {
|
|
1472
1345
|
type: string;
|
|
@@ -1487,13 +1360,16 @@ export declare const schemaDict: {
|
|
|
1487
1360
|
schema: {
|
|
1488
1361
|
type: string;
|
|
1489
1362
|
required: string[];
|
|
1363
|
+
nullable: string[];
|
|
1490
1364
|
properties: {
|
|
1491
|
-
|
|
1365
|
+
repo: {
|
|
1492
1366
|
type: string;
|
|
1367
|
+
format: string;
|
|
1493
1368
|
description: string;
|
|
1494
1369
|
};
|
|
1495
1370
|
collection: {
|
|
1496
1371
|
type: string;
|
|
1372
|
+
format: string;
|
|
1497
1373
|
description: string;
|
|
1498
1374
|
};
|
|
1499
1375
|
rkey: {
|
|
@@ -1509,6 +1385,16 @@ export declare const schemaDict: {
|
|
|
1509
1385
|
type: string;
|
|
1510
1386
|
description: string;
|
|
1511
1387
|
};
|
|
1388
|
+
swapRecord: {
|
|
1389
|
+
type: string;
|
|
1390
|
+
format: string;
|
|
1391
|
+
description: string;
|
|
1392
|
+
};
|
|
1393
|
+
swapCommit: {
|
|
1394
|
+
type: string;
|
|
1395
|
+
format: string;
|
|
1396
|
+
description: string;
|
|
1397
|
+
};
|
|
1512
1398
|
};
|
|
1513
1399
|
};
|
|
1514
1400
|
};
|
|
@@ -1520,17 +1406,22 @@ export declare const schemaDict: {
|
|
|
1520
1406
|
properties: {
|
|
1521
1407
|
uri: {
|
|
1522
1408
|
type: string;
|
|
1409
|
+
format: string;
|
|
1523
1410
|
};
|
|
1524
1411
|
cid: {
|
|
1525
1412
|
type: string;
|
|
1413
|
+
format: string;
|
|
1526
1414
|
};
|
|
1527
1415
|
};
|
|
1528
1416
|
};
|
|
1529
1417
|
};
|
|
1418
|
+
errors: {
|
|
1419
|
+
name: string;
|
|
1420
|
+
}[];
|
|
1530
1421
|
};
|
|
1531
1422
|
};
|
|
1532
1423
|
};
|
|
1533
|
-
|
|
1424
|
+
ComAtprotoRepoStrongRef: {
|
|
1534
1425
|
lexicon: number;
|
|
1535
1426
|
id: string;
|
|
1536
1427
|
description: string;
|
|
@@ -1541,50 +1432,103 @@ export declare const schemaDict: {
|
|
|
1541
1432
|
properties: {
|
|
1542
1433
|
uri: {
|
|
1543
1434
|
type: string;
|
|
1435
|
+
format: string;
|
|
1544
1436
|
};
|
|
1545
1437
|
cid: {
|
|
1546
1438
|
type: string;
|
|
1439
|
+
format: string;
|
|
1547
1440
|
};
|
|
1548
1441
|
};
|
|
1549
1442
|
};
|
|
1550
1443
|
};
|
|
1551
1444
|
};
|
|
1552
|
-
|
|
1445
|
+
ComAtprotoRepoUploadBlob: {
|
|
1553
1446
|
lexicon: number;
|
|
1554
1447
|
id: string;
|
|
1555
|
-
description: string;
|
|
1556
1448
|
defs: {
|
|
1557
1449
|
main: {
|
|
1558
1450
|
type: string;
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1451
|
+
description: string;
|
|
1452
|
+
input: {
|
|
1453
|
+
encoding: string;
|
|
1454
|
+
};
|
|
1455
|
+
output: {
|
|
1456
|
+
encoding: string;
|
|
1457
|
+
schema: {
|
|
1562
1458
|
type: string;
|
|
1459
|
+
required: string[];
|
|
1460
|
+
properties: {
|
|
1461
|
+
blob: {
|
|
1462
|
+
type: string;
|
|
1463
|
+
};
|
|
1464
|
+
};
|
|
1563
1465
|
};
|
|
1564
1466
|
};
|
|
1565
1467
|
};
|
|
1566
1468
|
};
|
|
1567
1469
|
};
|
|
1568
|
-
|
|
1470
|
+
ComAtprotoServerCreateAccount: {
|
|
1569
1471
|
lexicon: number;
|
|
1570
1472
|
id: string;
|
|
1571
|
-
description: string;
|
|
1572
1473
|
defs: {
|
|
1573
1474
|
main: {
|
|
1574
1475
|
type: string;
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1476
|
+
description: string;
|
|
1477
|
+
input: {
|
|
1478
|
+
encoding: string;
|
|
1479
|
+
schema: {
|
|
1578
1480
|
type: string;
|
|
1481
|
+
required: string[];
|
|
1482
|
+
properties: {
|
|
1483
|
+
email: {
|
|
1484
|
+
type: string;
|
|
1485
|
+
};
|
|
1486
|
+
handle: {
|
|
1487
|
+
type: string;
|
|
1488
|
+
format: string;
|
|
1489
|
+
};
|
|
1490
|
+
inviteCode: {
|
|
1491
|
+
type: string;
|
|
1492
|
+
};
|
|
1493
|
+
password: {
|
|
1494
|
+
type: string;
|
|
1495
|
+
};
|
|
1496
|
+
recoveryKey: {
|
|
1497
|
+
type: string;
|
|
1498
|
+
};
|
|
1499
|
+
};
|
|
1579
1500
|
};
|
|
1580
|
-
|
|
1501
|
+
};
|
|
1502
|
+
output: {
|
|
1503
|
+
encoding: string;
|
|
1504
|
+
schema: {
|
|
1581
1505
|
type: string;
|
|
1506
|
+
required: string[];
|
|
1507
|
+
properties: {
|
|
1508
|
+
accessJwt: {
|
|
1509
|
+
type: string;
|
|
1510
|
+
};
|
|
1511
|
+
refreshJwt: {
|
|
1512
|
+
type: string;
|
|
1513
|
+
};
|
|
1514
|
+
handle: {
|
|
1515
|
+
type: string;
|
|
1516
|
+
format: string;
|
|
1517
|
+
};
|
|
1518
|
+
did: {
|
|
1519
|
+
type: string;
|
|
1520
|
+
format: string;
|
|
1521
|
+
};
|
|
1522
|
+
};
|
|
1582
1523
|
};
|
|
1583
1524
|
};
|
|
1525
|
+
errors: {
|
|
1526
|
+
name: string;
|
|
1527
|
+
}[];
|
|
1584
1528
|
};
|
|
1585
1529
|
};
|
|
1586
1530
|
};
|
|
1587
|
-
|
|
1531
|
+
ComAtprotoServerCreateInviteCode: {
|
|
1588
1532
|
lexicon: number;
|
|
1589
1533
|
id: string;
|
|
1590
1534
|
defs: {
|
|
@@ -1597,121 +1541,122 @@ export declare const schemaDict: {
|
|
|
1597
1541
|
type: string;
|
|
1598
1542
|
required: string[];
|
|
1599
1543
|
properties: {
|
|
1600
|
-
|
|
1601
|
-
type: string;
|
|
1602
|
-
ref: string;
|
|
1603
|
-
};
|
|
1604
|
-
reason: {
|
|
1544
|
+
useCount: {
|
|
1605
1545
|
type: string;
|
|
1606
1546
|
};
|
|
1607
|
-
|
|
1547
|
+
};
|
|
1548
|
+
};
|
|
1549
|
+
};
|
|
1550
|
+
output: {
|
|
1551
|
+
encoding: string;
|
|
1552
|
+
schema: {
|
|
1553
|
+
type: string;
|
|
1554
|
+
required: string[];
|
|
1555
|
+
properties: {
|
|
1556
|
+
code: {
|
|
1608
1557
|
type: string;
|
|
1609
|
-
refs: string[];
|
|
1610
1558
|
};
|
|
1611
1559
|
};
|
|
1612
1560
|
};
|
|
1613
1561
|
};
|
|
1614
|
-
|
|
1562
|
+
};
|
|
1563
|
+
};
|
|
1564
|
+
};
|
|
1565
|
+
ComAtprotoServerCreateSession: {
|
|
1566
|
+
lexicon: number;
|
|
1567
|
+
id: string;
|
|
1568
|
+
defs: {
|
|
1569
|
+
main: {
|
|
1570
|
+
type: string;
|
|
1571
|
+
description: string;
|
|
1572
|
+
input: {
|
|
1615
1573
|
encoding: string;
|
|
1616
1574
|
schema: {
|
|
1617
1575
|
type: string;
|
|
1618
1576
|
required: string[];
|
|
1619
1577
|
properties: {
|
|
1620
|
-
|
|
1578
|
+
identifier: {
|
|
1621
1579
|
type: string;
|
|
1580
|
+
description: string;
|
|
1622
1581
|
};
|
|
1623
|
-
|
|
1582
|
+
password: {
|
|
1624
1583
|
type: string;
|
|
1625
|
-
ref: string;
|
|
1626
1584
|
};
|
|
1627
|
-
|
|
1585
|
+
};
|
|
1586
|
+
};
|
|
1587
|
+
};
|
|
1588
|
+
output: {
|
|
1589
|
+
encoding: string;
|
|
1590
|
+
schema: {
|
|
1591
|
+
type: string;
|
|
1592
|
+
required: string[];
|
|
1593
|
+
properties: {
|
|
1594
|
+
accessJwt: {
|
|
1628
1595
|
type: string;
|
|
1629
1596
|
};
|
|
1630
|
-
|
|
1597
|
+
refreshJwt: {
|
|
1631
1598
|
type: string;
|
|
1632
|
-
refs: string[];
|
|
1633
1599
|
};
|
|
1634
|
-
|
|
1600
|
+
handle: {
|
|
1635
1601
|
type: string;
|
|
1602
|
+
format: string;
|
|
1636
1603
|
};
|
|
1637
|
-
|
|
1604
|
+
did: {
|
|
1638
1605
|
type: string;
|
|
1606
|
+
format: string;
|
|
1639
1607
|
};
|
|
1640
1608
|
};
|
|
1641
1609
|
};
|
|
1642
1610
|
};
|
|
1611
|
+
errors: {
|
|
1612
|
+
name: string;
|
|
1613
|
+
}[];
|
|
1643
1614
|
};
|
|
1644
1615
|
};
|
|
1645
1616
|
};
|
|
1646
|
-
|
|
1617
|
+
ComAtprotoServerDeleteAccount: {
|
|
1647
1618
|
lexicon: number;
|
|
1648
1619
|
id: string;
|
|
1649
1620
|
defs: {
|
|
1650
1621
|
main: {
|
|
1651
|
-
type: string;
|
|
1652
|
-
knownValues: string[];
|
|
1653
|
-
};
|
|
1654
|
-
spam: {
|
|
1655
|
-
type: string;
|
|
1656
|
-
description: string;
|
|
1657
|
-
};
|
|
1658
|
-
other: {
|
|
1659
1622
|
type: string;
|
|
1660
1623
|
description: string;
|
|
1624
|
+
input: {
|
|
1625
|
+
encoding: string;
|
|
1626
|
+
schema: {
|
|
1627
|
+
type: string;
|
|
1628
|
+
required: string[];
|
|
1629
|
+
properties: {
|
|
1630
|
+
did: {
|
|
1631
|
+
type: string;
|
|
1632
|
+
format: string;
|
|
1633
|
+
};
|
|
1634
|
+
password: {
|
|
1635
|
+
type: string;
|
|
1636
|
+
};
|
|
1637
|
+
token: {
|
|
1638
|
+
type: string;
|
|
1639
|
+
};
|
|
1640
|
+
};
|
|
1641
|
+
};
|
|
1642
|
+
};
|
|
1643
|
+
errors: {
|
|
1644
|
+
name: string;
|
|
1645
|
+
}[];
|
|
1661
1646
|
};
|
|
1662
1647
|
};
|
|
1663
1648
|
};
|
|
1664
|
-
|
|
1649
|
+
ComAtprotoServerDeleteSession: {
|
|
1665
1650
|
lexicon: number;
|
|
1666
1651
|
id: string;
|
|
1667
1652
|
defs: {
|
|
1668
|
-
|
|
1669
|
-
type: string;
|
|
1670
|
-
required: string[];
|
|
1671
|
-
properties: {
|
|
1672
|
-
did: {
|
|
1673
|
-
type: string;
|
|
1674
|
-
description: string;
|
|
1675
|
-
};
|
|
1676
|
-
};
|
|
1677
|
-
};
|
|
1678
|
-
record: {
|
|
1679
|
-
type: string;
|
|
1680
|
-
required: string[];
|
|
1681
|
-
properties: {
|
|
1682
|
-
did: {
|
|
1683
|
-
type: string;
|
|
1684
|
-
description: string;
|
|
1685
|
-
};
|
|
1686
|
-
collection: {
|
|
1687
|
-
type: string;
|
|
1688
|
-
description: string;
|
|
1689
|
-
};
|
|
1690
|
-
rkey: {
|
|
1691
|
-
type: string;
|
|
1692
|
-
description: string;
|
|
1693
|
-
};
|
|
1694
|
-
cid: {
|
|
1695
|
-
type: string;
|
|
1696
|
-
description: string;
|
|
1697
|
-
};
|
|
1698
|
-
};
|
|
1699
|
-
};
|
|
1700
|
-
recordRef: {
|
|
1653
|
+
main: {
|
|
1701
1654
|
type: string;
|
|
1702
|
-
|
|
1703
|
-
properties: {
|
|
1704
|
-
uri: {
|
|
1705
|
-
type: string;
|
|
1706
|
-
};
|
|
1707
|
-
cid: {
|
|
1708
|
-
type: string;
|
|
1709
|
-
};
|
|
1710
|
-
};
|
|
1655
|
+
description: string;
|
|
1711
1656
|
};
|
|
1712
1657
|
};
|
|
1713
1658
|
};
|
|
1714
|
-
|
|
1659
|
+
ComAtprotoServerDescribeServer: {
|
|
1715
1660
|
lexicon: number;
|
|
1716
1661
|
id: string;
|
|
1717
1662
|
defs: {
|
|
@@ -1754,29 +1699,40 @@ export declare const schemaDict: {
|
|
|
1754
1699
|
};
|
|
1755
1700
|
};
|
|
1756
1701
|
};
|
|
1757
|
-
|
|
1702
|
+
ComAtprotoServerGetSession: {
|
|
1758
1703
|
lexicon: number;
|
|
1759
1704
|
id: string;
|
|
1760
1705
|
defs: {
|
|
1761
1706
|
main: {
|
|
1762
1707
|
type: string;
|
|
1763
1708
|
description: string;
|
|
1764
|
-
|
|
1709
|
+
output: {
|
|
1765
1710
|
encoding: string;
|
|
1766
1711
|
schema: {
|
|
1767
1712
|
type: string;
|
|
1768
1713
|
required: string[];
|
|
1769
1714
|
properties: {
|
|
1770
|
-
|
|
1715
|
+
handle: {
|
|
1771
1716
|
type: string;
|
|
1772
|
-
|
|
1717
|
+
format: string;
|
|
1773
1718
|
};
|
|
1774
|
-
|
|
1719
|
+
did: {
|
|
1775
1720
|
type: string;
|
|
1721
|
+
format: string;
|
|
1776
1722
|
};
|
|
1777
1723
|
};
|
|
1778
1724
|
};
|
|
1779
1725
|
};
|
|
1726
|
+
};
|
|
1727
|
+
};
|
|
1728
|
+
};
|
|
1729
|
+
ComAtprotoServerRefreshSession: {
|
|
1730
|
+
lexicon: number;
|
|
1731
|
+
id: string;
|
|
1732
|
+
defs: {
|
|
1733
|
+
main: {
|
|
1734
|
+
type: string;
|
|
1735
|
+
description: string;
|
|
1780
1736
|
output: {
|
|
1781
1737
|
encoding: string;
|
|
1782
1738
|
schema: {
|
|
@@ -1791,9 +1747,11 @@ export declare const schemaDict: {
|
|
|
1791
1747
|
};
|
|
1792
1748
|
handle: {
|
|
1793
1749
|
type: string;
|
|
1750
|
+
format: string;
|
|
1794
1751
|
};
|
|
1795
1752
|
did: {
|
|
1796
1753
|
type: string;
|
|
1754
|
+
format: string;
|
|
1797
1755
|
};
|
|
1798
1756
|
};
|
|
1799
1757
|
};
|
|
@@ -1804,7 +1762,7 @@ export declare const schemaDict: {
|
|
|
1804
1762
|
};
|
|
1805
1763
|
};
|
|
1806
1764
|
};
|
|
1807
|
-
|
|
1765
|
+
ComAtprotoServerRequestAccountDelete: {
|
|
1808
1766
|
lexicon: number;
|
|
1809
1767
|
id: string;
|
|
1810
1768
|
defs: {
|
|
@@ -1814,23 +1772,20 @@ export declare const schemaDict: {
|
|
|
1814
1772
|
};
|
|
1815
1773
|
};
|
|
1816
1774
|
};
|
|
1817
|
-
|
|
1775
|
+
ComAtprotoServerRequestPasswordReset: {
|
|
1818
1776
|
lexicon: number;
|
|
1819
1777
|
id: string;
|
|
1820
1778
|
defs: {
|
|
1821
1779
|
main: {
|
|
1822
1780
|
type: string;
|
|
1823
1781
|
description: string;
|
|
1824
|
-
|
|
1782
|
+
input: {
|
|
1825
1783
|
encoding: string;
|
|
1826
1784
|
schema: {
|
|
1827
1785
|
type: string;
|
|
1828
1786
|
required: string[];
|
|
1829
1787
|
properties: {
|
|
1830
|
-
|
|
1831
|
-
type: string;
|
|
1832
|
-
};
|
|
1833
|
-
did: {
|
|
1788
|
+
email: {
|
|
1834
1789
|
type: string;
|
|
1835
1790
|
};
|
|
1836
1791
|
};
|
|
@@ -1839,29 +1794,23 @@ export declare const schemaDict: {
|
|
|
1839
1794
|
};
|
|
1840
1795
|
};
|
|
1841
1796
|
};
|
|
1842
|
-
|
|
1797
|
+
ComAtprotoServerResetPassword: {
|
|
1843
1798
|
lexicon: number;
|
|
1844
1799
|
id: string;
|
|
1845
1800
|
defs: {
|
|
1846
1801
|
main: {
|
|
1847
1802
|
type: string;
|
|
1848
1803
|
description: string;
|
|
1849
|
-
|
|
1804
|
+
input: {
|
|
1850
1805
|
encoding: string;
|
|
1851
1806
|
schema: {
|
|
1852
1807
|
type: string;
|
|
1853
1808
|
required: string[];
|
|
1854
1809
|
properties: {
|
|
1855
|
-
|
|
1856
|
-
type: string;
|
|
1857
|
-
};
|
|
1858
|
-
refreshJwt: {
|
|
1859
|
-
type: string;
|
|
1860
|
-
};
|
|
1861
|
-
handle: {
|
|
1810
|
+
token: {
|
|
1862
1811
|
type: string;
|
|
1863
1812
|
};
|
|
1864
|
-
|
|
1813
|
+
password: {
|
|
1865
1814
|
type: string;
|
|
1866
1815
|
};
|
|
1867
1816
|
};
|
|
@@ -1873,6 +1822,35 @@ export declare const schemaDict: {
|
|
|
1873
1822
|
};
|
|
1874
1823
|
};
|
|
1875
1824
|
};
|
|
1825
|
+
ComAtprotoSyncGetBlob: {
|
|
1826
|
+
lexicon: number;
|
|
1827
|
+
id: string;
|
|
1828
|
+
defs: {
|
|
1829
|
+
main: {
|
|
1830
|
+
type: string;
|
|
1831
|
+
description: string;
|
|
1832
|
+
parameters: {
|
|
1833
|
+
type: string;
|
|
1834
|
+
required: string[];
|
|
1835
|
+
properties: {
|
|
1836
|
+
did: {
|
|
1837
|
+
type: string;
|
|
1838
|
+
format: string;
|
|
1839
|
+
description: string;
|
|
1840
|
+
};
|
|
1841
|
+
cid: {
|
|
1842
|
+
type: string;
|
|
1843
|
+
format: string;
|
|
1844
|
+
description: string;
|
|
1845
|
+
};
|
|
1846
|
+
};
|
|
1847
|
+
};
|
|
1848
|
+
output: {
|
|
1849
|
+
encoding: string;
|
|
1850
|
+
};
|
|
1851
|
+
};
|
|
1852
|
+
};
|
|
1853
|
+
};
|
|
1876
1854
|
ComAtprotoSyncGetBlocks: {
|
|
1877
1855
|
lexicon: number;
|
|
1878
1856
|
id: string;
|
|
@@ -1886,12 +1864,14 @@ export declare const schemaDict: {
|
|
|
1886
1864
|
properties: {
|
|
1887
1865
|
did: {
|
|
1888
1866
|
type: string;
|
|
1867
|
+
format: string;
|
|
1889
1868
|
description: string;
|
|
1890
1869
|
};
|
|
1891
1870
|
cids: {
|
|
1892
1871
|
type: string;
|
|
1893
1872
|
items: {
|
|
1894
1873
|
type: string;
|
|
1874
|
+
format: string;
|
|
1895
1875
|
};
|
|
1896
1876
|
};
|
|
1897
1877
|
};
|
|
@@ -1915,10 +1895,12 @@ export declare const schemaDict: {
|
|
|
1915
1895
|
properties: {
|
|
1916
1896
|
did: {
|
|
1917
1897
|
type: string;
|
|
1898
|
+
format: string;
|
|
1918
1899
|
description: string;
|
|
1919
1900
|
};
|
|
1920
1901
|
commit: {
|
|
1921
1902
|
type: string;
|
|
1903
|
+
format: string;
|
|
1922
1904
|
description: string;
|
|
1923
1905
|
};
|
|
1924
1906
|
};
|
|
@@ -1942,14 +1924,17 @@ export declare const schemaDict: {
|
|
|
1942
1924
|
properties: {
|
|
1943
1925
|
did: {
|
|
1944
1926
|
type: string;
|
|
1927
|
+
format: string;
|
|
1945
1928
|
description: string;
|
|
1946
1929
|
};
|
|
1947
1930
|
latest: {
|
|
1948
1931
|
type: string;
|
|
1932
|
+
format: string;
|
|
1949
1933
|
description: string;
|
|
1950
1934
|
};
|
|
1951
1935
|
earliest: {
|
|
1952
1936
|
type: string;
|
|
1937
|
+
format: string;
|
|
1953
1938
|
description: string;
|
|
1954
1939
|
};
|
|
1955
1940
|
};
|
|
@@ -1964,6 +1949,7 @@ export declare const schemaDict: {
|
|
|
1964
1949
|
type: string;
|
|
1965
1950
|
items: {
|
|
1966
1951
|
type: string;
|
|
1952
|
+
format: string;
|
|
1967
1953
|
};
|
|
1968
1954
|
};
|
|
1969
1955
|
};
|
|
@@ -1985,6 +1971,7 @@ export declare const schemaDict: {
|
|
|
1985
1971
|
properties: {
|
|
1986
1972
|
did: {
|
|
1987
1973
|
type: string;
|
|
1974
|
+
format: string;
|
|
1988
1975
|
description: string;
|
|
1989
1976
|
};
|
|
1990
1977
|
};
|
|
@@ -1997,6 +1984,7 @@ export declare const schemaDict: {
|
|
|
1997
1984
|
properties: {
|
|
1998
1985
|
root: {
|
|
1999
1986
|
type: string;
|
|
1987
|
+
format: string;
|
|
2000
1988
|
};
|
|
2001
1989
|
};
|
|
2002
1990
|
};
|
|
@@ -2017,190 +2005,88 @@ export declare const schemaDict: {
|
|
|
2017
2005
|
properties: {
|
|
2018
2006
|
did: {
|
|
2019
2007
|
type: string;
|
|
2008
|
+
format: string;
|
|
2020
2009
|
description: string;
|
|
2021
2010
|
};
|
|
2022
2011
|
collection: {
|
|
2023
2012
|
type: string;
|
|
2013
|
+
format: string;
|
|
2024
2014
|
};
|
|
2025
2015
|
rkey: {
|
|
2026
2016
|
type: string;
|
|
2027
2017
|
};
|
|
2028
|
-
commit: {
|
|
2029
|
-
type: string;
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
};
|
|
2033
|
-
};
|
|
2034
|
-
output: {
|
|
2035
|
-
encoding: string;
|
|
2036
|
-
};
|
|
2037
|
-
};
|
|
2038
|
-
};
|
|
2039
|
-
};
|
|
2040
|
-
ComAtprotoSyncGetRepo: {
|
|
2041
|
-
lexicon: number;
|
|
2042
|
-
id: string;
|
|
2043
|
-
defs: {
|
|
2044
|
-
main: {
|
|
2045
|
-
type: string;
|
|
2046
|
-
description: string;
|
|
2047
|
-
parameters: {
|
|
2048
|
-
type: string;
|
|
2049
|
-
required: string[];
|
|
2050
|
-
properties: {
|
|
2051
|
-
did: {
|
|
2052
|
-
type: string;
|
|
2053
|
-
description: string;
|
|
2054
|
-
};
|
|
2055
|
-
earliest: {
|
|
2056
|
-
type: string;
|
|
2057
|
-
description: string;
|
|
2058
|
-
};
|
|
2059
|
-
latest: {
|
|
2060
|
-
type: string;
|
|
2061
|
-
description: string;
|
|
2062
|
-
};
|
|
2063
|
-
};
|
|
2064
|
-
};
|
|
2065
|
-
output: {
|
|
2066
|
-
encoding: string;
|
|
2067
|
-
};
|
|
2068
|
-
};
|
|
2069
|
-
};
|
|
2070
|
-
};
|
|
2071
|
-
ComAtprotoSyncNotifyOfUpdate: {
|
|
2072
|
-
lexicon: number;
|
|
2073
|
-
id: string;
|
|
2074
|
-
defs: {
|
|
2075
|
-
main: {
|
|
2076
|
-
type: string;
|
|
2077
|
-
description: string;
|
|
2078
|
-
};
|
|
2079
|
-
};
|
|
2080
|
-
};
|
|
2081
|
-
ComAtprotoSyncRequestCrawl: {
|
|
2082
|
-
lexicon: number;
|
|
2083
|
-
id: string;
|
|
2084
|
-
defs: {
|
|
2085
|
-
main: {
|
|
2086
|
-
type: string;
|
|
2087
|
-
description: string;
|
|
2088
|
-
parameters: {
|
|
2089
|
-
type: string;
|
|
2090
|
-
required: string[];
|
|
2091
|
-
properties: {
|
|
2092
|
-
host: {
|
|
2093
|
-
type: string;
|
|
2094
|
-
description: string;
|
|
2095
|
-
};
|
|
2096
|
-
};
|
|
2097
|
-
};
|
|
2098
|
-
};
|
|
2099
|
-
};
|
|
2100
|
-
};
|
|
2101
|
-
ComAtprotoSyncSubscribeAllRepos: {
|
|
2102
|
-
lexicon: number;
|
|
2103
|
-
id: string;
|
|
2104
|
-
defs: {
|
|
2105
|
-
main: {
|
|
2106
|
-
type: string;
|
|
2107
|
-
description: string;
|
|
2108
|
-
parameters: {
|
|
2109
|
-
type: string;
|
|
2110
|
-
properties: {
|
|
2111
|
-
cursor: {
|
|
2112
|
-
type: string;
|
|
2113
|
-
description: string;
|
|
2114
|
-
};
|
|
2115
|
-
};
|
|
2116
|
-
};
|
|
2117
|
-
message: {
|
|
2118
|
-
schema: {
|
|
2119
|
-
type: string;
|
|
2120
|
-
required: string[];
|
|
2121
|
-
nullable: string[];
|
|
2122
|
-
properties: {
|
|
2123
|
-
seq: {
|
|
2124
|
-
type: string;
|
|
2125
|
-
};
|
|
2126
|
-
event: {
|
|
2127
|
-
type: string;
|
|
2128
|
-
knownValues: string[];
|
|
2129
|
-
};
|
|
2130
|
-
repo: {
|
|
2131
|
-
type: string;
|
|
2132
|
-
};
|
|
2133
|
-
commit: {
|
|
2134
|
-
type: string;
|
|
2135
|
-
};
|
|
2136
|
-
prev: {
|
|
2137
|
-
type: string;
|
|
2138
|
-
};
|
|
2139
|
-
blocks: {
|
|
2140
|
-
type: string;
|
|
2141
|
-
};
|
|
2142
|
-
blobs: {
|
|
2143
|
-
type: string;
|
|
2144
|
-
items: {
|
|
2145
|
-
type: string;
|
|
2146
|
-
};
|
|
2147
|
-
};
|
|
2148
|
-
time: {
|
|
2149
|
-
type: string;
|
|
2150
|
-
};
|
|
2018
|
+
commit: {
|
|
2019
|
+
type: string;
|
|
2020
|
+
format: string;
|
|
2021
|
+
description: string;
|
|
2151
2022
|
};
|
|
2152
2023
|
};
|
|
2153
2024
|
};
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
}
|
|
2157
|
-
errors: {
|
|
2158
|
-
name: string;
|
|
2159
|
-
}[];
|
|
2025
|
+
output: {
|
|
2026
|
+
encoding: string;
|
|
2027
|
+
};
|
|
2160
2028
|
};
|
|
2161
2029
|
};
|
|
2162
2030
|
};
|
|
2163
|
-
|
|
2031
|
+
ComAtprotoSyncGetRepo: {
|
|
2164
2032
|
lexicon: number;
|
|
2165
2033
|
id: string;
|
|
2166
2034
|
defs: {
|
|
2167
2035
|
main: {
|
|
2168
2036
|
type: string;
|
|
2037
|
+
description: string;
|
|
2169
2038
|
parameters: {
|
|
2170
2039
|
type: string;
|
|
2171
2040
|
required: string[];
|
|
2172
2041
|
properties: {
|
|
2173
|
-
|
|
2042
|
+
did: {
|
|
2174
2043
|
type: string;
|
|
2044
|
+
format: string;
|
|
2045
|
+
description: string;
|
|
2046
|
+
};
|
|
2047
|
+
earliest: {
|
|
2048
|
+
type: string;
|
|
2049
|
+
format: string;
|
|
2050
|
+
description: string;
|
|
2051
|
+
};
|
|
2052
|
+
latest: {
|
|
2053
|
+
type: string;
|
|
2054
|
+
format: string;
|
|
2055
|
+
description: string;
|
|
2175
2056
|
};
|
|
2176
2057
|
};
|
|
2177
2058
|
};
|
|
2178
2059
|
output: {
|
|
2179
2060
|
encoding: string;
|
|
2180
|
-
schema: {
|
|
2181
|
-
type: string;
|
|
2182
|
-
ref: string;
|
|
2183
|
-
};
|
|
2184
2061
|
};
|
|
2185
2062
|
};
|
|
2186
2063
|
};
|
|
2187
2064
|
};
|
|
2188
|
-
|
|
2065
|
+
ComAtprotoSyncListBlobs: {
|
|
2189
2066
|
lexicon: number;
|
|
2190
2067
|
id: string;
|
|
2191
2068
|
defs: {
|
|
2192
2069
|
main: {
|
|
2193
2070
|
type: string;
|
|
2071
|
+
description: string;
|
|
2194
2072
|
parameters: {
|
|
2195
2073
|
type: string;
|
|
2196
2074
|
required: string[];
|
|
2197
2075
|
properties: {
|
|
2198
|
-
|
|
2076
|
+
did: {
|
|
2199
2077
|
type: string;
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2078
|
+
format: string;
|
|
2079
|
+
description: string;
|
|
2080
|
+
};
|
|
2081
|
+
latest: {
|
|
2082
|
+
type: string;
|
|
2083
|
+
format: string;
|
|
2084
|
+
description: string;
|
|
2085
|
+
};
|
|
2086
|
+
earliest: {
|
|
2087
|
+
type: string;
|
|
2088
|
+
format: string;
|
|
2089
|
+
description: string;
|
|
2204
2090
|
};
|
|
2205
2091
|
};
|
|
2206
2092
|
};
|
|
@@ -2210,11 +2096,11 @@ export declare const schemaDict: {
|
|
|
2210
2096
|
type: string;
|
|
2211
2097
|
required: string[];
|
|
2212
2098
|
properties: {
|
|
2213
|
-
|
|
2099
|
+
cids: {
|
|
2214
2100
|
type: string;
|
|
2215
2101
|
items: {
|
|
2216
2102
|
type: string;
|
|
2217
|
-
|
|
2103
|
+
format: string;
|
|
2218
2104
|
};
|
|
2219
2105
|
};
|
|
2220
2106
|
};
|
|
@@ -2223,7 +2109,7 @@ export declare const schemaDict: {
|
|
|
2223
2109
|
};
|
|
2224
2110
|
};
|
|
2225
2111
|
};
|
|
2226
|
-
|
|
2112
|
+
ComAtprotoSyncNotifyOfUpdate: {
|
|
2227
2113
|
lexicon: number;
|
|
2228
2114
|
id: string;
|
|
2229
2115
|
defs: {
|
|
@@ -2232,229 +2118,304 @@ export declare const schemaDict: {
|
|
|
2232
2118
|
description: string;
|
|
2233
2119
|
parameters: {
|
|
2234
2120
|
type: string;
|
|
2121
|
+
required: string[];
|
|
2235
2122
|
properties: {
|
|
2236
|
-
|
|
2237
|
-
type: string;
|
|
2238
|
-
minimum: number;
|
|
2239
|
-
maximum: number;
|
|
2240
|
-
default: number;
|
|
2241
|
-
};
|
|
2242
|
-
cursor: {
|
|
2123
|
+
hostname: {
|
|
2243
2124
|
type: string;
|
|
2244
|
-
|
|
2245
|
-
};
|
|
2246
|
-
};
|
|
2247
|
-
output: {
|
|
2248
|
-
encoding: string;
|
|
2249
|
-
schema: {
|
|
2250
|
-
type: string;
|
|
2251
|
-
required: string[];
|
|
2252
|
-
properties: {
|
|
2253
|
-
cursor: {
|
|
2254
|
-
type: string;
|
|
2255
|
-
};
|
|
2256
|
-
actors: {
|
|
2257
|
-
type: string;
|
|
2258
|
-
items: {
|
|
2259
|
-
type: string;
|
|
2260
|
-
ref: string;
|
|
2261
|
-
};
|
|
2262
|
-
};
|
|
2125
|
+
description: string;
|
|
2263
2126
|
};
|
|
2264
2127
|
};
|
|
2265
2128
|
};
|
|
2266
2129
|
};
|
|
2267
2130
|
};
|
|
2268
2131
|
};
|
|
2269
|
-
|
|
2132
|
+
ComAtprotoSyncRequestCrawl: {
|
|
2270
2133
|
lexicon: number;
|
|
2271
2134
|
id: string;
|
|
2272
2135
|
defs: {
|
|
2273
2136
|
main: {
|
|
2274
2137
|
type: string;
|
|
2275
|
-
|
|
2276
|
-
|
|
2138
|
+
description: string;
|
|
2139
|
+
parameters: {
|
|
2277
2140
|
type: string;
|
|
2278
2141
|
required: string[];
|
|
2279
2142
|
properties: {
|
|
2280
|
-
|
|
2281
|
-
type: string;
|
|
2282
|
-
maxLength: number;
|
|
2283
|
-
};
|
|
2284
|
-
description: {
|
|
2285
|
-
type: string;
|
|
2286
|
-
maxLength: number;
|
|
2287
|
-
};
|
|
2288
|
-
avatar: {
|
|
2143
|
+
hostname: {
|
|
2289
2144
|
type: string;
|
|
2290
|
-
|
|
2291
|
-
maxWidth: number;
|
|
2292
|
-
maxHeight: number;
|
|
2293
|
-
maxSize: number;
|
|
2145
|
+
description: string;
|
|
2294
2146
|
};
|
|
2295
|
-
|
|
2147
|
+
};
|
|
2148
|
+
};
|
|
2149
|
+
};
|
|
2150
|
+
};
|
|
2151
|
+
};
|
|
2152
|
+
ComAtprotoSyncSubscribeRepos: {
|
|
2153
|
+
lexicon: number;
|
|
2154
|
+
id: string;
|
|
2155
|
+
defs: {
|
|
2156
|
+
main: {
|
|
2157
|
+
type: string;
|
|
2158
|
+
description: string;
|
|
2159
|
+
parameters: {
|
|
2160
|
+
type: string;
|
|
2161
|
+
properties: {
|
|
2162
|
+
cursor: {
|
|
2296
2163
|
type: string;
|
|
2297
|
-
|
|
2298
|
-
maxWidth: number;
|
|
2299
|
-
maxHeight: number;
|
|
2300
|
-
maxSize: number;
|
|
2164
|
+
description: string;
|
|
2301
2165
|
};
|
|
2302
2166
|
};
|
|
2303
2167
|
};
|
|
2168
|
+
message: {
|
|
2169
|
+
schema: {
|
|
2170
|
+
type: string;
|
|
2171
|
+
refs: string[];
|
|
2172
|
+
};
|
|
2173
|
+
};
|
|
2174
|
+
errors: {
|
|
2175
|
+
name: string;
|
|
2176
|
+
}[];
|
|
2304
2177
|
};
|
|
2305
|
-
|
|
2178
|
+
commit: {
|
|
2306
2179
|
type: string;
|
|
2307
2180
|
required: string[];
|
|
2181
|
+
nullable: string[];
|
|
2308
2182
|
properties: {
|
|
2309
|
-
|
|
2183
|
+
seq: {
|
|
2310
2184
|
type: string;
|
|
2311
2185
|
};
|
|
2312
|
-
|
|
2186
|
+
rebase: {
|
|
2313
2187
|
type: string;
|
|
2314
|
-
ref: string;
|
|
2315
2188
|
};
|
|
2316
|
-
|
|
2189
|
+
tooBig: {
|
|
2317
2190
|
type: string;
|
|
2318
2191
|
};
|
|
2319
|
-
|
|
2192
|
+
repo: {
|
|
2320
2193
|
type: string;
|
|
2321
|
-
|
|
2194
|
+
format: string;
|
|
2322
2195
|
};
|
|
2323
|
-
|
|
2196
|
+
commit: {
|
|
2324
2197
|
type: string;
|
|
2325
|
-
maxLength: number;
|
|
2326
2198
|
};
|
|
2327
|
-
|
|
2199
|
+
prev: {
|
|
2328
2200
|
type: string;
|
|
2329
2201
|
};
|
|
2330
|
-
|
|
2202
|
+
blocks: {
|
|
2331
2203
|
type: string;
|
|
2204
|
+
description: string;
|
|
2205
|
+
maxLength: number;
|
|
2332
2206
|
};
|
|
2333
|
-
|
|
2207
|
+
ops: {
|
|
2334
2208
|
type: string;
|
|
2209
|
+
items: {
|
|
2210
|
+
type: string;
|
|
2211
|
+
ref: string;
|
|
2212
|
+
};
|
|
2213
|
+
maxLength: number;
|
|
2335
2214
|
};
|
|
2336
|
-
|
|
2215
|
+
blobs: {
|
|
2337
2216
|
type: string;
|
|
2217
|
+
items: {
|
|
2218
|
+
type: string;
|
|
2219
|
+
};
|
|
2338
2220
|
};
|
|
2339
|
-
|
|
2221
|
+
time: {
|
|
2340
2222
|
type: string;
|
|
2223
|
+
format: string;
|
|
2341
2224
|
};
|
|
2342
|
-
|
|
2225
|
+
};
|
|
2226
|
+
};
|
|
2227
|
+
handle: {
|
|
2228
|
+
type: string;
|
|
2229
|
+
required: string[];
|
|
2230
|
+
properties: {
|
|
2231
|
+
seq: {
|
|
2343
2232
|
type: string;
|
|
2344
2233
|
};
|
|
2345
|
-
|
|
2234
|
+
did: {
|
|
2346
2235
|
type: string;
|
|
2236
|
+
format: string;
|
|
2347
2237
|
};
|
|
2348
|
-
|
|
2238
|
+
handle: {
|
|
2349
2239
|
type: string;
|
|
2350
|
-
|
|
2240
|
+
format: string;
|
|
2351
2241
|
};
|
|
2352
|
-
|
|
2242
|
+
time: {
|
|
2353
2243
|
type: string;
|
|
2354
|
-
|
|
2355
|
-
description: string;
|
|
2244
|
+
format: string;
|
|
2356
2245
|
};
|
|
2357
2246
|
};
|
|
2358
2247
|
};
|
|
2359
|
-
|
|
2248
|
+
migrate: {
|
|
2360
2249
|
type: string;
|
|
2361
2250
|
required: string[];
|
|
2251
|
+
nullable: string[];
|
|
2362
2252
|
properties: {
|
|
2363
|
-
|
|
2364
|
-
type: string;
|
|
2365
|
-
};
|
|
2366
|
-
declaration: {
|
|
2253
|
+
seq: {
|
|
2367
2254
|
type: string;
|
|
2368
|
-
ref: string;
|
|
2369
2255
|
};
|
|
2370
|
-
|
|
2256
|
+
did: {
|
|
2371
2257
|
type: string;
|
|
2258
|
+
format: string;
|
|
2372
2259
|
};
|
|
2373
|
-
|
|
2260
|
+
migrateTo: {
|
|
2374
2261
|
type: string;
|
|
2375
|
-
maxLength: number;
|
|
2376
2262
|
};
|
|
2377
|
-
|
|
2263
|
+
time: {
|
|
2378
2264
|
type: string;
|
|
2379
|
-
|
|
2265
|
+
format: string;
|
|
2380
2266
|
};
|
|
2381
|
-
|
|
2267
|
+
};
|
|
2268
|
+
};
|
|
2269
|
+
tombstone: {
|
|
2270
|
+
type: string;
|
|
2271
|
+
required: string[];
|
|
2272
|
+
properties: {
|
|
2273
|
+
seq: {
|
|
2382
2274
|
type: string;
|
|
2383
2275
|
};
|
|
2384
|
-
|
|
2276
|
+
did: {
|
|
2385
2277
|
type: string;
|
|
2278
|
+
format: string;
|
|
2386
2279
|
};
|
|
2387
|
-
|
|
2280
|
+
time: {
|
|
2388
2281
|
type: string;
|
|
2389
|
-
|
|
2282
|
+
format: string;
|
|
2390
2283
|
};
|
|
2391
2284
|
};
|
|
2392
2285
|
};
|
|
2393
|
-
|
|
2286
|
+
info: {
|
|
2394
2287
|
type: string;
|
|
2288
|
+
required: string[];
|
|
2395
2289
|
properties: {
|
|
2396
|
-
|
|
2397
|
-
type: string;
|
|
2398
|
-
};
|
|
2399
|
-
following: {
|
|
2290
|
+
name: {
|
|
2400
2291
|
type: string;
|
|
2292
|
+
knownValues: string[];
|
|
2401
2293
|
};
|
|
2402
|
-
|
|
2294
|
+
message: {
|
|
2403
2295
|
type: string;
|
|
2404
2296
|
};
|
|
2405
2297
|
};
|
|
2406
2298
|
};
|
|
2407
|
-
|
|
2299
|
+
repoOp: {
|
|
2408
2300
|
type: string;
|
|
2409
|
-
|
|
2301
|
+
required: string[];
|
|
2302
|
+
nullable: string[];
|
|
2410
2303
|
properties: {
|
|
2411
|
-
|
|
2304
|
+
action: {
|
|
2412
2305
|
type: string;
|
|
2306
|
+
knownValues: string[];
|
|
2413
2307
|
};
|
|
2414
|
-
|
|
2308
|
+
path: {
|
|
2309
|
+
type: string;
|
|
2310
|
+
};
|
|
2311
|
+
cid: {
|
|
2415
2312
|
type: string;
|
|
2416
2313
|
};
|
|
2417
2314
|
};
|
|
2418
2315
|
};
|
|
2419
2316
|
};
|
|
2420
2317
|
};
|
|
2421
|
-
|
|
2318
|
+
AppBskyActorDefs: {
|
|
2422
2319
|
lexicon: number;
|
|
2423
2320
|
id: string;
|
|
2424
2321
|
description: string;
|
|
2425
2322
|
defs: {
|
|
2426
|
-
|
|
2323
|
+
profileViewBasic: {
|
|
2427
2324
|
type: string;
|
|
2428
2325
|
required: string[];
|
|
2429
2326
|
properties: {
|
|
2430
2327
|
did: {
|
|
2431
2328
|
type: string;
|
|
2329
|
+
format: string;
|
|
2330
|
+
};
|
|
2331
|
+
handle: {
|
|
2332
|
+
type: string;
|
|
2333
|
+
format: string;
|
|
2334
|
+
};
|
|
2335
|
+
displayName: {
|
|
2336
|
+
type: string;
|
|
2337
|
+
maxLength: number;
|
|
2338
|
+
};
|
|
2339
|
+
avatar: {
|
|
2340
|
+
type: string;
|
|
2432
2341
|
};
|
|
2433
|
-
|
|
2342
|
+
viewer: {
|
|
2434
2343
|
type: string;
|
|
2344
|
+
ref: string;
|
|
2435
2345
|
};
|
|
2436
2346
|
};
|
|
2437
2347
|
};
|
|
2438
|
-
|
|
2348
|
+
profileView: {
|
|
2439
2349
|
type: string;
|
|
2440
2350
|
required: string[];
|
|
2441
2351
|
properties: {
|
|
2442
2352
|
did: {
|
|
2443
2353
|
type: string;
|
|
2354
|
+
format: string;
|
|
2355
|
+
};
|
|
2356
|
+
handle: {
|
|
2357
|
+
type: string;
|
|
2358
|
+
format: string;
|
|
2359
|
+
};
|
|
2360
|
+
displayName: {
|
|
2361
|
+
type: string;
|
|
2362
|
+
maxLength: number;
|
|
2363
|
+
};
|
|
2364
|
+
description: {
|
|
2365
|
+
type: string;
|
|
2366
|
+
maxLength: number;
|
|
2367
|
+
};
|
|
2368
|
+
avatar: {
|
|
2369
|
+
type: string;
|
|
2444
2370
|
};
|
|
2445
|
-
|
|
2371
|
+
indexedAt: {
|
|
2372
|
+
type: string;
|
|
2373
|
+
format: string;
|
|
2374
|
+
};
|
|
2375
|
+
viewer: {
|
|
2446
2376
|
type: string;
|
|
2447
2377
|
ref: string;
|
|
2448
2378
|
};
|
|
2379
|
+
};
|
|
2380
|
+
};
|
|
2381
|
+
profileViewDetailed: {
|
|
2382
|
+
type: string;
|
|
2383
|
+
required: string[];
|
|
2384
|
+
properties: {
|
|
2385
|
+
did: {
|
|
2386
|
+
type: string;
|
|
2387
|
+
format: string;
|
|
2388
|
+
};
|
|
2449
2389
|
handle: {
|
|
2450
2390
|
type: string;
|
|
2391
|
+
format: string;
|
|
2451
2392
|
};
|
|
2452
2393
|
displayName: {
|
|
2453
2394
|
type: string;
|
|
2454
|
-
maxLength: number;
|
|
2395
|
+
maxLength: number;
|
|
2396
|
+
};
|
|
2397
|
+
description: {
|
|
2398
|
+
type: string;
|
|
2399
|
+
maxLength: number;
|
|
2400
|
+
};
|
|
2401
|
+
avatar: {
|
|
2402
|
+
type: string;
|
|
2403
|
+
};
|
|
2404
|
+
banner: {
|
|
2405
|
+
type: string;
|
|
2406
|
+
};
|
|
2407
|
+
followersCount: {
|
|
2408
|
+
type: string;
|
|
2409
|
+
};
|
|
2410
|
+
followsCount: {
|
|
2411
|
+
type: string;
|
|
2412
|
+
};
|
|
2413
|
+
postsCount: {
|
|
2414
|
+
type: string;
|
|
2455
2415
|
};
|
|
2456
|
-
|
|
2416
|
+
indexedAt: {
|
|
2457
2417
|
type: string;
|
|
2418
|
+
format: string;
|
|
2458
2419
|
};
|
|
2459
2420
|
viewer: {
|
|
2460
2421
|
type: string;
|
|
@@ -2470,34 +2431,98 @@ export declare const schemaDict: {
|
|
|
2470
2431
|
};
|
|
2471
2432
|
following: {
|
|
2472
2433
|
type: string;
|
|
2434
|
+
format: string;
|
|
2473
2435
|
};
|
|
2474
2436
|
followedBy: {
|
|
2475
2437
|
type: string;
|
|
2438
|
+
format: string;
|
|
2476
2439
|
};
|
|
2477
2440
|
};
|
|
2478
2441
|
};
|
|
2479
2442
|
};
|
|
2480
2443
|
};
|
|
2481
|
-
|
|
2444
|
+
AppBskyActorGetProfile: {
|
|
2482
2445
|
lexicon: number;
|
|
2483
2446
|
id: string;
|
|
2484
2447
|
defs: {
|
|
2485
2448
|
main: {
|
|
2486
2449
|
type: string;
|
|
2487
|
-
description: string;
|
|
2488
2450
|
parameters: {
|
|
2489
2451
|
type: string;
|
|
2452
|
+
required: string[];
|
|
2490
2453
|
properties: {
|
|
2491
|
-
|
|
2454
|
+
actor: {
|
|
2455
|
+
type: string;
|
|
2456
|
+
format: string;
|
|
2457
|
+
};
|
|
2458
|
+
};
|
|
2459
|
+
};
|
|
2460
|
+
output: {
|
|
2461
|
+
encoding: string;
|
|
2462
|
+
schema: {
|
|
2463
|
+
type: string;
|
|
2464
|
+
ref: string;
|
|
2465
|
+
};
|
|
2466
|
+
};
|
|
2467
|
+
};
|
|
2468
|
+
};
|
|
2469
|
+
};
|
|
2470
|
+
AppBskyActorGetProfiles: {
|
|
2471
|
+
lexicon: number;
|
|
2472
|
+
id: string;
|
|
2473
|
+
defs: {
|
|
2474
|
+
main: {
|
|
2475
|
+
type: string;
|
|
2476
|
+
parameters: {
|
|
2477
|
+
type: string;
|
|
2478
|
+
required: string[];
|
|
2479
|
+
properties: {
|
|
2480
|
+
actors: {
|
|
2492
2481
|
type: string;
|
|
2482
|
+
items: {
|
|
2483
|
+
type: string;
|
|
2484
|
+
format: string;
|
|
2485
|
+
};
|
|
2486
|
+
maxLength: number;
|
|
2487
|
+
};
|
|
2488
|
+
};
|
|
2489
|
+
};
|
|
2490
|
+
output: {
|
|
2491
|
+
encoding: string;
|
|
2492
|
+
schema: {
|
|
2493
|
+
type: string;
|
|
2494
|
+
required: string[];
|
|
2495
|
+
properties: {
|
|
2496
|
+
profiles: {
|
|
2497
|
+
type: string;
|
|
2498
|
+
items: {
|
|
2499
|
+
type: string;
|
|
2500
|
+
ref: string;
|
|
2501
|
+
};
|
|
2502
|
+
};
|
|
2493
2503
|
};
|
|
2504
|
+
};
|
|
2505
|
+
};
|
|
2506
|
+
};
|
|
2507
|
+
};
|
|
2508
|
+
};
|
|
2509
|
+
AppBskyActorGetSuggestions: {
|
|
2510
|
+
lexicon: number;
|
|
2511
|
+
id: string;
|
|
2512
|
+
defs: {
|
|
2513
|
+
main: {
|
|
2514
|
+
type: string;
|
|
2515
|
+
description: string;
|
|
2516
|
+
parameters: {
|
|
2517
|
+
type: string;
|
|
2518
|
+
properties: {
|
|
2494
2519
|
limit: {
|
|
2495
2520
|
type: string;
|
|
2496
2521
|
minimum: number;
|
|
2497
2522
|
maximum: number;
|
|
2498
2523
|
default: number;
|
|
2499
2524
|
};
|
|
2500
|
-
|
|
2525
|
+
cursor: {
|
|
2501
2526
|
type: string;
|
|
2502
2527
|
};
|
|
2503
2528
|
};
|
|
@@ -2511,7 +2536,7 @@ export declare const schemaDict: {
|
|
|
2511
2536
|
cursor: {
|
|
2512
2537
|
type: string;
|
|
2513
2538
|
};
|
|
2514
|
-
|
|
2539
|
+
actors: {
|
|
2515
2540
|
type: string;
|
|
2516
2541
|
items: {
|
|
2517
2542
|
type: string;
|
|
@@ -2524,7 +2549,40 @@ export declare const schemaDict: {
|
|
|
2524
2549
|
};
|
|
2525
2550
|
};
|
|
2526
2551
|
};
|
|
2527
|
-
|
|
2552
|
+
AppBskyActorProfile: {
|
|
2553
|
+
lexicon: number;
|
|
2554
|
+
id: string;
|
|
2555
|
+
defs: {
|
|
2556
|
+
main: {
|
|
2557
|
+
type: string;
|
|
2558
|
+
key: string;
|
|
2559
|
+
record: {
|
|
2560
|
+
type: string;
|
|
2561
|
+
properties: {
|
|
2562
|
+
displayName: {
|
|
2563
|
+
type: string;
|
|
2564
|
+
maxLength: number;
|
|
2565
|
+
};
|
|
2566
|
+
description: {
|
|
2567
|
+
type: string;
|
|
2568
|
+
maxLength: number;
|
|
2569
|
+
};
|
|
2570
|
+
avatar: {
|
|
2571
|
+
type: string;
|
|
2572
|
+
accept: string[];
|
|
2573
|
+
maxSize: number;
|
|
2574
|
+
};
|
|
2575
|
+
banner: {
|
|
2576
|
+
type: string;
|
|
2577
|
+
accept: string[];
|
|
2578
|
+
maxSize: number;
|
|
2579
|
+
};
|
|
2580
|
+
};
|
|
2581
|
+
};
|
|
2582
|
+
};
|
|
2583
|
+
};
|
|
2584
|
+
};
|
|
2585
|
+
AppBskyActorSearchActors: {
|
|
2528
2586
|
lexicon: number;
|
|
2529
2587
|
id: string;
|
|
2530
2588
|
defs: {
|
|
@@ -2543,6 +2601,9 @@ export declare const schemaDict: {
|
|
|
2543
2601
|
maximum: number;
|
|
2544
2602
|
default: number;
|
|
2545
2603
|
};
|
|
2604
|
+
cursor: {
|
|
2605
|
+
type: string;
|
|
2606
|
+
};
|
|
2546
2607
|
};
|
|
2547
2608
|
};
|
|
2548
2609
|
output: {
|
|
@@ -2551,7 +2612,10 @@ export declare const schemaDict: {
|
|
|
2551
2612
|
type: string;
|
|
2552
2613
|
required: string[];
|
|
2553
2614
|
properties: {
|
|
2554
|
-
|
|
2615
|
+
cursor: {
|
|
2616
|
+
type: string;
|
|
2617
|
+
};
|
|
2618
|
+
actors: {
|
|
2555
2619
|
type: string;
|
|
2556
2620
|
items: {
|
|
2557
2621
|
type: string;
|
|
@@ -2564,41 +2628,24 @@ export declare const schemaDict: {
|
|
|
2564
2628
|
};
|
|
2565
2629
|
};
|
|
2566
2630
|
};
|
|
2567
|
-
|
|
2631
|
+
AppBskyActorSearchActorsTypeahead: {
|
|
2568
2632
|
lexicon: number;
|
|
2569
2633
|
id: string;
|
|
2570
2634
|
defs: {
|
|
2571
2635
|
main: {
|
|
2572
2636
|
type: string;
|
|
2573
2637
|
description: string;
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
type: string;
|
|
2586
|
-
maxLength: number;
|
|
2587
|
-
};
|
|
2588
|
-
avatar: {
|
|
2589
|
-
type: string;
|
|
2590
|
-
accept: string[];
|
|
2591
|
-
maxWidth: number;
|
|
2592
|
-
maxHeight: number;
|
|
2593
|
-
maxSize: number;
|
|
2594
|
-
};
|
|
2595
|
-
banner: {
|
|
2596
|
-
type: string;
|
|
2597
|
-
accept: string[];
|
|
2598
|
-
maxWidth: number;
|
|
2599
|
-
maxHeight: number;
|
|
2600
|
-
maxSize: number;
|
|
2601
|
-
};
|
|
2638
|
+
parameters: {
|
|
2639
|
+
type: string;
|
|
2640
|
+
properties: {
|
|
2641
|
+
term: {
|
|
2642
|
+
type: string;
|
|
2643
|
+
};
|
|
2644
|
+
limit: {
|
|
2645
|
+
type: string;
|
|
2646
|
+
minimum: number;
|
|
2647
|
+
maximum: number;
|
|
2648
|
+
default: number;
|
|
2602
2649
|
};
|
|
2603
2650
|
};
|
|
2604
2651
|
};
|
|
@@ -2608,21 +2655,16 @@ export declare const schemaDict: {
|
|
|
2608
2655
|
type: string;
|
|
2609
2656
|
required: string[];
|
|
2610
2657
|
properties: {
|
|
2611
|
-
|
|
2612
|
-
type: string;
|
|
2613
|
-
};
|
|
2614
|
-
cid: {
|
|
2615
|
-
type: string;
|
|
2616
|
-
};
|
|
2617
|
-
record: {
|
|
2658
|
+
actors: {
|
|
2618
2659
|
type: string;
|
|
2660
|
+
items: {
|
|
2661
|
+
type: string;
|
|
2662
|
+
ref: string;
|
|
2663
|
+
};
|
|
2619
2664
|
};
|
|
2620
2665
|
};
|
|
2621
2666
|
};
|
|
2622
2667
|
};
|
|
2623
|
-
errors: {
|
|
2624
|
-
name: string;
|
|
2625
|
-
}[];
|
|
2626
2668
|
};
|
|
2627
2669
|
};
|
|
2628
2670
|
};
|
|
@@ -2647,6 +2689,7 @@ export declare const schemaDict: {
|
|
|
2647
2689
|
properties: {
|
|
2648
2690
|
uri: {
|
|
2649
2691
|
type: string;
|
|
2692
|
+
format: string;
|
|
2650
2693
|
};
|
|
2651
2694
|
title: {
|
|
2652
2695
|
type: string;
|
|
@@ -2657,13 +2700,11 @@ export declare const schemaDict: {
|
|
|
2657
2700
|
thumb: {
|
|
2658
2701
|
type: string;
|
|
2659
2702
|
accept: string[];
|
|
2660
|
-
maxWidth: number;
|
|
2661
|
-
maxHeight: number;
|
|
2662
2703
|
maxSize: number;
|
|
2663
2704
|
};
|
|
2664
2705
|
};
|
|
2665
2706
|
};
|
|
2666
|
-
|
|
2707
|
+
view: {
|
|
2667
2708
|
type: string;
|
|
2668
2709
|
required: string[];
|
|
2669
2710
|
properties: {
|
|
@@ -2673,12 +2714,13 @@ export declare const schemaDict: {
|
|
|
2673
2714
|
};
|
|
2674
2715
|
};
|
|
2675
2716
|
};
|
|
2676
|
-
|
|
2717
|
+
viewExternal: {
|
|
2677
2718
|
type: string;
|
|
2678
2719
|
required: string[];
|
|
2679
2720
|
properties: {
|
|
2680
2721
|
uri: {
|
|
2681
2722
|
type: string;
|
|
2723
|
+
format: string;
|
|
2682
2724
|
};
|
|
2683
2725
|
title: {
|
|
2684
2726
|
type: string;
|
|
@@ -2719,8 +2761,6 @@ export declare const schemaDict: {
|
|
|
2719
2761
|
image: {
|
|
2720
2762
|
type: string;
|
|
2721
2763
|
accept: string[];
|
|
2722
|
-
maxWidth: number;
|
|
2723
|
-
maxHeight: number;
|
|
2724
2764
|
maxSize: number;
|
|
2725
2765
|
};
|
|
2726
2766
|
alt: {
|
|
@@ -2728,7 +2768,7 @@ export declare const schemaDict: {
|
|
|
2728
2768
|
};
|
|
2729
2769
|
};
|
|
2730
2770
|
};
|
|
2731
|
-
|
|
2771
|
+
view: {
|
|
2732
2772
|
type: string;
|
|
2733
2773
|
required: string[];
|
|
2734
2774
|
properties: {
|
|
@@ -2742,7 +2782,7 @@ export declare const schemaDict: {
|
|
|
2742
2782
|
};
|
|
2743
2783
|
};
|
|
2744
2784
|
};
|
|
2745
|
-
|
|
2785
|
+
viewImage: {
|
|
2746
2786
|
type: string;
|
|
2747
2787
|
required: string[];
|
|
2748
2788
|
properties: {
|
|
@@ -2774,7 +2814,7 @@ export declare const schemaDict: {
|
|
|
2774
2814
|
};
|
|
2775
2815
|
};
|
|
2776
2816
|
};
|
|
2777
|
-
|
|
2817
|
+
view: {
|
|
2778
2818
|
type: string;
|
|
2779
2819
|
required: string[];
|
|
2780
2820
|
properties: {
|
|
@@ -2784,168 +2824,189 @@ export declare const schemaDict: {
|
|
|
2784
2824
|
};
|
|
2785
2825
|
};
|
|
2786
2826
|
};
|
|
2787
|
-
|
|
2827
|
+
viewRecord: {
|
|
2788
2828
|
type: string;
|
|
2789
2829
|
required: string[];
|
|
2790
2830
|
properties: {
|
|
2791
2831
|
uri: {
|
|
2792
2832
|
type: string;
|
|
2833
|
+
format: string;
|
|
2793
2834
|
};
|
|
2794
2835
|
cid: {
|
|
2795
2836
|
type: string;
|
|
2837
|
+
format: string;
|
|
2796
2838
|
};
|
|
2797
2839
|
author: {
|
|
2798
2840
|
type: string;
|
|
2799
2841
|
ref: string;
|
|
2800
2842
|
};
|
|
2801
|
-
|
|
2843
|
+
value: {
|
|
2844
|
+
type: string;
|
|
2845
|
+
};
|
|
2846
|
+
embeds: {
|
|
2847
|
+
type: string;
|
|
2848
|
+
items: {
|
|
2849
|
+
type: string;
|
|
2850
|
+
refs: string[];
|
|
2851
|
+
};
|
|
2852
|
+
};
|
|
2853
|
+
indexedAt: {
|
|
2802
2854
|
type: string;
|
|
2855
|
+
format: string;
|
|
2803
2856
|
};
|
|
2804
2857
|
};
|
|
2805
2858
|
};
|
|
2806
|
-
|
|
2859
|
+
viewNotFound: {
|
|
2807
2860
|
type: string;
|
|
2808
2861
|
required: string[];
|
|
2809
2862
|
properties: {
|
|
2810
2863
|
uri: {
|
|
2811
2864
|
type: string;
|
|
2865
|
+
format: string;
|
|
2812
2866
|
};
|
|
2813
2867
|
};
|
|
2814
2868
|
};
|
|
2815
2869
|
};
|
|
2816
2870
|
};
|
|
2817
|
-
|
|
2871
|
+
AppBskyEmbedRecordWithMedia: {
|
|
2818
2872
|
lexicon: number;
|
|
2819
2873
|
id: string;
|
|
2874
|
+
description: string;
|
|
2820
2875
|
defs: {
|
|
2821
2876
|
main: {
|
|
2822
2877
|
type: string;
|
|
2823
2878
|
required: string[];
|
|
2824
2879
|
properties: {
|
|
2825
|
-
|
|
2880
|
+
record: {
|
|
2826
2881
|
type: string;
|
|
2827
2882
|
ref: string;
|
|
2828
2883
|
};
|
|
2829
|
-
|
|
2884
|
+
media: {
|
|
2885
|
+
type: string;
|
|
2886
|
+
refs: string[];
|
|
2887
|
+
};
|
|
2888
|
+
};
|
|
2889
|
+
};
|
|
2890
|
+
view: {
|
|
2891
|
+
type: string;
|
|
2892
|
+
required: string[];
|
|
2893
|
+
properties: {
|
|
2894
|
+
record: {
|
|
2830
2895
|
type: string;
|
|
2831
2896
|
ref: string;
|
|
2832
2897
|
};
|
|
2833
|
-
|
|
2898
|
+
media: {
|
|
2834
2899
|
type: string;
|
|
2835
2900
|
refs: string[];
|
|
2836
2901
|
};
|
|
2837
2902
|
};
|
|
2838
2903
|
};
|
|
2839
|
-
|
|
2904
|
+
};
|
|
2905
|
+
};
|
|
2906
|
+
AppBskyFeedDefs: {
|
|
2907
|
+
lexicon: number;
|
|
2908
|
+
id: string;
|
|
2909
|
+
defs: {
|
|
2910
|
+
postView: {
|
|
2840
2911
|
type: string;
|
|
2841
2912
|
required: string[];
|
|
2842
2913
|
properties: {
|
|
2843
|
-
|
|
2914
|
+
uri: {
|
|
2915
|
+
type: string;
|
|
2916
|
+
format: string;
|
|
2917
|
+
};
|
|
2918
|
+
cid: {
|
|
2919
|
+
type: string;
|
|
2920
|
+
format: string;
|
|
2921
|
+
};
|
|
2922
|
+
author: {
|
|
2844
2923
|
type: string;
|
|
2845
2924
|
ref: string;
|
|
2846
2925
|
};
|
|
2847
|
-
|
|
2926
|
+
record: {
|
|
2927
|
+
type: string;
|
|
2928
|
+
};
|
|
2929
|
+
embed: {
|
|
2930
|
+
type: string;
|
|
2931
|
+
refs: string[];
|
|
2932
|
+
};
|
|
2933
|
+
replyCount: {
|
|
2934
|
+
type: string;
|
|
2935
|
+
};
|
|
2936
|
+
repostCount: {
|
|
2937
|
+
type: string;
|
|
2938
|
+
};
|
|
2939
|
+
likeCount: {
|
|
2940
|
+
type: string;
|
|
2941
|
+
};
|
|
2942
|
+
indexedAt: {
|
|
2943
|
+
type: string;
|
|
2944
|
+
format: string;
|
|
2945
|
+
};
|
|
2946
|
+
viewer: {
|
|
2848
2947
|
type: string;
|
|
2849
2948
|
ref: string;
|
|
2850
2949
|
};
|
|
2851
2950
|
};
|
|
2852
2951
|
};
|
|
2853
|
-
|
|
2952
|
+
viewerState: {
|
|
2953
|
+
type: string;
|
|
2954
|
+
properties: {
|
|
2955
|
+
repost: {
|
|
2956
|
+
type: string;
|
|
2957
|
+
format: string;
|
|
2958
|
+
};
|
|
2959
|
+
like: {
|
|
2960
|
+
type: string;
|
|
2961
|
+
format: string;
|
|
2962
|
+
};
|
|
2963
|
+
};
|
|
2964
|
+
};
|
|
2965
|
+
feedViewPost: {
|
|
2854
2966
|
type: string;
|
|
2855
2967
|
required: string[];
|
|
2856
2968
|
properties: {
|
|
2857
|
-
|
|
2969
|
+
post: {
|
|
2858
2970
|
type: string;
|
|
2859
2971
|
ref: string;
|
|
2860
2972
|
};
|
|
2861
|
-
|
|
2973
|
+
reply: {
|
|
2974
|
+
type: string;
|
|
2975
|
+
ref: string;
|
|
2976
|
+
};
|
|
2977
|
+
reason: {
|
|
2862
2978
|
type: string;
|
|
2979
|
+
refs: string[];
|
|
2863
2980
|
};
|
|
2864
2981
|
};
|
|
2865
2982
|
};
|
|
2866
|
-
|
|
2867
|
-
};
|
|
2868
|
-
AppBskyFeedGetAuthorFeed: {
|
|
2869
|
-
lexicon: number;
|
|
2870
|
-
id: string;
|
|
2871
|
-
defs: {
|
|
2872
|
-
main: {
|
|
2983
|
+
replyRef: {
|
|
2873
2984
|
type: string;
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
author: {
|
|
2880
|
-
type: string;
|
|
2881
|
-
};
|
|
2882
|
-
limit: {
|
|
2883
|
-
type: string;
|
|
2884
|
-
minimum: number;
|
|
2885
|
-
maximum: number;
|
|
2886
|
-
default: number;
|
|
2887
|
-
};
|
|
2888
|
-
before: {
|
|
2889
|
-
type: string;
|
|
2890
|
-
};
|
|
2985
|
+
required: string[];
|
|
2986
|
+
properties: {
|
|
2987
|
+
root: {
|
|
2988
|
+
type: string;
|
|
2989
|
+
ref: string;
|
|
2891
2990
|
};
|
|
2892
|
-
|
|
2893
|
-
output: {
|
|
2894
|
-
encoding: string;
|
|
2895
|
-
schema: {
|
|
2991
|
+
parent: {
|
|
2896
2992
|
type: string;
|
|
2897
|
-
|
|
2898
|
-
properties: {
|
|
2899
|
-
cursor: {
|
|
2900
|
-
type: string;
|
|
2901
|
-
};
|
|
2902
|
-
feed: {
|
|
2903
|
-
type: string;
|
|
2904
|
-
items: {
|
|
2905
|
-
type: string;
|
|
2906
|
-
ref: string;
|
|
2907
|
-
};
|
|
2908
|
-
};
|
|
2909
|
-
};
|
|
2993
|
+
ref: string;
|
|
2910
2994
|
};
|
|
2911
2995
|
};
|
|
2912
2996
|
};
|
|
2913
|
-
|
|
2914
|
-
};
|
|
2915
|
-
AppBskyFeedGetPostThread: {
|
|
2916
|
-
lexicon: number;
|
|
2917
|
-
id: string;
|
|
2918
|
-
defs: {
|
|
2919
|
-
main: {
|
|
2997
|
+
reasonRepost: {
|
|
2920
2998
|
type: string;
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
type: string;
|
|
2927
|
-
};
|
|
2928
|
-
depth: {
|
|
2929
|
-
type: string;
|
|
2930
|
-
};
|
|
2999
|
+
required: string[];
|
|
3000
|
+
properties: {
|
|
3001
|
+
by: {
|
|
3002
|
+
type: string;
|
|
3003
|
+
ref: string;
|
|
2931
3004
|
};
|
|
2932
|
-
|
|
2933
|
-
output: {
|
|
2934
|
-
encoding: string;
|
|
2935
|
-
schema: {
|
|
3005
|
+
indexedAt: {
|
|
2936
3006
|
type: string;
|
|
2937
|
-
|
|
2938
|
-
properties: {
|
|
2939
|
-
thread: {
|
|
2940
|
-
type: string;
|
|
2941
|
-
refs: string[];
|
|
2942
|
-
};
|
|
2943
|
-
};
|
|
3007
|
+
format: string;
|
|
2944
3008
|
};
|
|
2945
3009
|
};
|
|
2946
|
-
errors: {
|
|
2947
|
-
name: string;
|
|
2948
|
-
}[];
|
|
2949
3010
|
};
|
|
2950
3011
|
threadViewPost: {
|
|
2951
3012
|
type: string;
|
|
@@ -2974,6 +3035,7 @@ export declare const schemaDict: {
|
|
|
2974
3035
|
properties: {
|
|
2975
3036
|
uri: {
|
|
2976
3037
|
type: string;
|
|
3038
|
+
format: string;
|
|
2977
3039
|
};
|
|
2978
3040
|
notFound: {
|
|
2979
3041
|
type: string;
|
|
@@ -2983,62 +3045,7 @@ export declare const schemaDict: {
|
|
|
2983
3045
|
};
|
|
2984
3046
|
};
|
|
2985
3047
|
};
|
|
2986
|
-
|
|
2987
|
-
lexicon: number;
|
|
2988
|
-
id: string;
|
|
2989
|
-
defs: {
|
|
2990
|
-
main: {
|
|
2991
|
-
type: string;
|
|
2992
|
-
parameters: {
|
|
2993
|
-
type: string;
|
|
2994
|
-
required: string[];
|
|
2995
|
-
properties: {
|
|
2996
|
-
uri: {
|
|
2997
|
-
type: string;
|
|
2998
|
-
};
|
|
2999
|
-
cid: {
|
|
3000
|
-
type: string;
|
|
3001
|
-
};
|
|
3002
|
-
limit: {
|
|
3003
|
-
type: string;
|
|
3004
|
-
minimum: number;
|
|
3005
|
-
maximum: number;
|
|
3006
|
-
default: number;
|
|
3007
|
-
};
|
|
3008
|
-
before: {
|
|
3009
|
-
type: string;
|
|
3010
|
-
};
|
|
3011
|
-
};
|
|
3012
|
-
};
|
|
3013
|
-
output: {
|
|
3014
|
-
encoding: string;
|
|
3015
|
-
schema: {
|
|
3016
|
-
type: string;
|
|
3017
|
-
required: string[];
|
|
3018
|
-
properties: {
|
|
3019
|
-
uri: {
|
|
3020
|
-
type: string;
|
|
3021
|
-
};
|
|
3022
|
-
cid: {
|
|
3023
|
-
type: string;
|
|
3024
|
-
};
|
|
3025
|
-
cursor: {
|
|
3026
|
-
type: string;
|
|
3027
|
-
};
|
|
3028
|
-
repostedBy: {
|
|
3029
|
-
type: string;
|
|
3030
|
-
items: {
|
|
3031
|
-
type: string;
|
|
3032
|
-
ref: string;
|
|
3033
|
-
};
|
|
3034
|
-
};
|
|
3035
|
-
};
|
|
3036
|
-
};
|
|
3037
|
-
};
|
|
3038
|
-
};
|
|
3039
|
-
};
|
|
3040
|
-
};
|
|
3041
|
-
AppBskyFeedGetTimeline: {
|
|
3048
|
+
AppBskyFeedGetAuthorFeed: {
|
|
3042
3049
|
lexicon: number;
|
|
3043
3050
|
id: string;
|
|
3044
3051
|
defs: {
|
|
@@ -3047,9 +3054,11 @@ export declare const schemaDict: {
|
|
|
3047
3054
|
description: string;
|
|
3048
3055
|
parameters: {
|
|
3049
3056
|
type: string;
|
|
3057
|
+
required: string[];
|
|
3050
3058
|
properties: {
|
|
3051
|
-
|
|
3059
|
+
actor: {
|
|
3052
3060
|
type: string;
|
|
3061
|
+
format: string;
|
|
3053
3062
|
};
|
|
3054
3063
|
limit: {
|
|
3055
3064
|
type: string;
|
|
@@ -3057,7 +3066,7 @@ export declare const schemaDict: {
|
|
|
3057
3066
|
maximum: number;
|
|
3058
3067
|
default: number;
|
|
3059
3068
|
};
|
|
3060
|
-
|
|
3069
|
+
cursor: {
|
|
3061
3070
|
type: string;
|
|
3062
3071
|
};
|
|
3063
3072
|
};
|
|
@@ -3084,7 +3093,7 @@ export declare const schemaDict: {
|
|
|
3084
3093
|
};
|
|
3085
3094
|
};
|
|
3086
3095
|
};
|
|
3087
|
-
|
|
3096
|
+
AppBskyFeedGetLikes: {
|
|
3088
3097
|
lexicon: number;
|
|
3089
3098
|
id: string;
|
|
3090
3099
|
defs: {
|
|
@@ -3096,13 +3105,11 @@ export declare const schemaDict: {
|
|
|
3096
3105
|
properties: {
|
|
3097
3106
|
uri: {
|
|
3098
3107
|
type: string;
|
|
3108
|
+
format: string;
|
|
3099
3109
|
};
|
|
3100
3110
|
cid: {
|
|
3101
3111
|
type: string;
|
|
3102
|
-
|
|
3103
|
-
direction: {
|
|
3104
|
-
type: string;
|
|
3105
|
-
enum: string[];
|
|
3112
|
+
format: string;
|
|
3106
3113
|
};
|
|
3107
3114
|
limit: {
|
|
3108
3115
|
type: string;
|
|
@@ -3110,7 +3117,7 @@ export declare const schemaDict: {
|
|
|
3110
3117
|
maximum: number;
|
|
3111
3118
|
default: number;
|
|
3112
3119
|
};
|
|
3113
|
-
|
|
3120
|
+
cursor: {
|
|
3114
3121
|
type: string;
|
|
3115
3122
|
};
|
|
3116
3123
|
};
|
|
@@ -3123,14 +3130,16 @@ export declare const schemaDict: {
|
|
|
3123
3130
|
properties: {
|
|
3124
3131
|
uri: {
|
|
3125
3132
|
type: string;
|
|
3133
|
+
format: string;
|
|
3126
3134
|
};
|
|
3127
3135
|
cid: {
|
|
3128
3136
|
type: string;
|
|
3137
|
+
format: string;
|
|
3129
3138
|
};
|
|
3130
3139
|
cursor: {
|
|
3131
3140
|
type: string;
|
|
3132
3141
|
};
|
|
3133
|
-
|
|
3142
|
+
likes: {
|
|
3134
3143
|
type: string;
|
|
3135
3144
|
items: {
|
|
3136
3145
|
type: string;
|
|
@@ -3141,19 +3150,17 @@ export declare const schemaDict: {
|
|
|
3141
3150
|
};
|
|
3142
3151
|
};
|
|
3143
3152
|
};
|
|
3144
|
-
|
|
3153
|
+
like: {
|
|
3145
3154
|
type: string;
|
|
3146
3155
|
required: string[];
|
|
3147
3156
|
properties: {
|
|
3148
|
-
direction: {
|
|
3149
|
-
type: string;
|
|
3150
|
-
enum: string[];
|
|
3151
|
-
};
|
|
3152
3157
|
indexedAt: {
|
|
3153
3158
|
type: string;
|
|
3159
|
+
format: string;
|
|
3154
3160
|
};
|
|
3155
3161
|
createdAt: {
|
|
3156
3162
|
type: string;
|
|
3163
|
+
format: string;
|
|
3157
3164
|
};
|
|
3158
3165
|
actor: {
|
|
3159
3166
|
type: string;
|
|
@@ -3163,203 +3170,142 @@ export declare const schemaDict: {
|
|
|
3163
3170
|
};
|
|
3164
3171
|
};
|
|
3165
3172
|
};
|
|
3166
|
-
|
|
3173
|
+
AppBskyFeedGetPostThread: {
|
|
3167
3174
|
lexicon: number;
|
|
3168
3175
|
id: string;
|
|
3169
3176
|
defs: {
|
|
3170
3177
|
main: {
|
|
3171
3178
|
type: string;
|
|
3172
|
-
|
|
3173
|
-
record: {
|
|
3179
|
+
parameters: {
|
|
3174
3180
|
type: string;
|
|
3175
3181
|
required: string[];
|
|
3176
3182
|
properties: {
|
|
3177
|
-
|
|
3178
|
-
type: string;
|
|
3179
|
-
maxLength: number;
|
|
3180
|
-
};
|
|
3181
|
-
entities: {
|
|
3182
|
-
type: string;
|
|
3183
|
-
items: {
|
|
3184
|
-
type: string;
|
|
3185
|
-
ref: string;
|
|
3186
|
-
};
|
|
3187
|
-
};
|
|
3188
|
-
reply: {
|
|
3189
|
-
type: string;
|
|
3190
|
-
ref: string;
|
|
3191
|
-
};
|
|
3192
|
-
embed: {
|
|
3183
|
+
uri: {
|
|
3193
3184
|
type: string;
|
|
3194
|
-
|
|
3185
|
+
format: string;
|
|
3195
3186
|
};
|
|
3196
|
-
|
|
3187
|
+
depth: {
|
|
3197
3188
|
type: string;
|
|
3198
3189
|
};
|
|
3199
3190
|
};
|
|
3200
3191
|
};
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
required: string[];
|
|
3205
|
-
properties: {
|
|
3206
|
-
root: {
|
|
3207
|
-
type: string;
|
|
3208
|
-
ref: string;
|
|
3209
|
-
};
|
|
3210
|
-
parent: {
|
|
3211
|
-
type: string;
|
|
3212
|
-
ref: string;
|
|
3213
|
-
};
|
|
3214
|
-
};
|
|
3215
|
-
};
|
|
3216
|
-
entity: {
|
|
3217
|
-
type: string;
|
|
3218
|
-
required: string[];
|
|
3219
|
-
properties: {
|
|
3220
|
-
index: {
|
|
3221
|
-
type: string;
|
|
3222
|
-
ref: string;
|
|
3223
|
-
};
|
|
3224
|
-
type: {
|
|
3225
|
-
type: string;
|
|
3226
|
-
description: string;
|
|
3227
|
-
};
|
|
3228
|
-
value: {
|
|
3229
|
-
type: string;
|
|
3230
|
-
};
|
|
3231
|
-
};
|
|
3232
|
-
};
|
|
3233
|
-
textSlice: {
|
|
3234
|
-
type: string;
|
|
3235
|
-
description: string;
|
|
3236
|
-
required: string[];
|
|
3237
|
-
properties: {
|
|
3238
|
-
start: {
|
|
3239
|
-
type: string;
|
|
3240
|
-
minimum: number;
|
|
3241
|
-
};
|
|
3242
|
-
end: {
|
|
3243
|
-
type: string;
|
|
3244
|
-
minimum: number;
|
|
3245
|
-
};
|
|
3246
|
-
};
|
|
3247
|
-
};
|
|
3248
|
-
view: {
|
|
3249
|
-
type: string;
|
|
3250
|
-
required: string[];
|
|
3251
|
-
properties: {
|
|
3252
|
-
uri: {
|
|
3253
|
-
type: string;
|
|
3254
|
-
};
|
|
3255
|
-
cid: {
|
|
3256
|
-
type: string;
|
|
3257
|
-
};
|
|
3258
|
-
author: {
|
|
3259
|
-
type: string;
|
|
3260
|
-
ref: string;
|
|
3261
|
-
};
|
|
3262
|
-
record: {
|
|
3263
|
-
type: string;
|
|
3264
|
-
};
|
|
3265
|
-
embed: {
|
|
3266
|
-
type: string;
|
|
3267
|
-
refs: string[];
|
|
3268
|
-
};
|
|
3269
|
-
replyCount: {
|
|
3270
|
-
type: string;
|
|
3271
|
-
};
|
|
3272
|
-
repostCount: {
|
|
3273
|
-
type: string;
|
|
3274
|
-
};
|
|
3275
|
-
upvoteCount: {
|
|
3276
|
-
type: string;
|
|
3277
|
-
};
|
|
3278
|
-
downvoteCount: {
|
|
3279
|
-
type: string;
|
|
3280
|
-
};
|
|
3281
|
-
indexedAt: {
|
|
3282
|
-
type: string;
|
|
3283
|
-
};
|
|
3284
|
-
viewer: {
|
|
3285
|
-
type: string;
|
|
3286
|
-
ref: string;
|
|
3287
|
-
};
|
|
3288
|
-
};
|
|
3289
|
-
};
|
|
3290
|
-
viewerState: {
|
|
3291
|
-
type: string;
|
|
3292
|
-
properties: {
|
|
3293
|
-
repost: {
|
|
3294
|
-
type: string;
|
|
3295
|
-
};
|
|
3296
|
-
upvote: {
|
|
3297
|
-
type: string;
|
|
3298
|
-
};
|
|
3299
|
-
downvote: {
|
|
3192
|
+
output: {
|
|
3193
|
+
encoding: string;
|
|
3194
|
+
schema: {
|
|
3300
3195
|
type: string;
|
|
3196
|
+
required: string[];
|
|
3197
|
+
properties: {
|
|
3198
|
+
thread: {
|
|
3199
|
+
type: string;
|
|
3200
|
+
refs: string[];
|
|
3201
|
+
};
|
|
3202
|
+
};
|
|
3301
3203
|
};
|
|
3302
3204
|
};
|
|
3205
|
+
errors: {
|
|
3206
|
+
name: string;
|
|
3207
|
+
}[];
|
|
3303
3208
|
};
|
|
3304
3209
|
};
|
|
3305
3210
|
};
|
|
3306
|
-
|
|
3211
|
+
AppBskyFeedGetRepostedBy: {
|
|
3307
3212
|
lexicon: number;
|
|
3308
3213
|
id: string;
|
|
3309
3214
|
defs: {
|
|
3310
3215
|
main: {
|
|
3311
3216
|
type: string;
|
|
3312
|
-
|
|
3313
|
-
record: {
|
|
3217
|
+
parameters: {
|
|
3314
3218
|
type: string;
|
|
3315
3219
|
required: string[];
|
|
3316
3220
|
properties: {
|
|
3317
|
-
|
|
3221
|
+
uri: {
|
|
3318
3222
|
type: string;
|
|
3319
|
-
|
|
3223
|
+
format: string;
|
|
3320
3224
|
};
|
|
3321
|
-
|
|
3225
|
+
cid: {
|
|
3226
|
+
type: string;
|
|
3227
|
+
format: string;
|
|
3228
|
+
};
|
|
3229
|
+
limit: {
|
|
3230
|
+
type: string;
|
|
3231
|
+
minimum: number;
|
|
3232
|
+
maximum: number;
|
|
3233
|
+
default: number;
|
|
3234
|
+
};
|
|
3235
|
+
cursor: {
|
|
3322
3236
|
type: string;
|
|
3323
3237
|
};
|
|
3324
3238
|
};
|
|
3325
3239
|
};
|
|
3326
|
-
|
|
3327
|
-
};
|
|
3328
|
-
};
|
|
3329
|
-
AppBskyFeedSetVote: {
|
|
3330
|
-
lexicon: number;
|
|
3331
|
-
id: string;
|
|
3332
|
-
defs: {
|
|
3333
|
-
main: {
|
|
3334
|
-
type: string;
|
|
3335
|
-
description: string;
|
|
3336
|
-
input: {
|
|
3240
|
+
output: {
|
|
3337
3241
|
encoding: string;
|
|
3338
3242
|
schema: {
|
|
3339
3243
|
type: string;
|
|
3340
3244
|
required: string[];
|
|
3341
3245
|
properties: {
|
|
3342
|
-
|
|
3246
|
+
uri: {
|
|
3343
3247
|
type: string;
|
|
3344
|
-
|
|
3248
|
+
format: string;
|
|
3249
|
+
};
|
|
3250
|
+
cid: {
|
|
3251
|
+
type: string;
|
|
3252
|
+
format: string;
|
|
3345
3253
|
};
|
|
3346
|
-
|
|
3254
|
+
cursor: {
|
|
3255
|
+
type: string;
|
|
3256
|
+
};
|
|
3257
|
+
repostedBy: {
|
|
3347
3258
|
type: string;
|
|
3348
|
-
|
|
3259
|
+
items: {
|
|
3260
|
+
type: string;
|
|
3261
|
+
ref: string;
|
|
3262
|
+
};
|
|
3349
3263
|
};
|
|
3350
3264
|
};
|
|
3351
3265
|
};
|
|
3352
3266
|
};
|
|
3267
|
+
};
|
|
3268
|
+
};
|
|
3269
|
+
};
|
|
3270
|
+
AppBskyFeedGetTimeline: {
|
|
3271
|
+
lexicon: number;
|
|
3272
|
+
id: string;
|
|
3273
|
+
defs: {
|
|
3274
|
+
main: {
|
|
3275
|
+
type: string;
|
|
3276
|
+
description: string;
|
|
3277
|
+
parameters: {
|
|
3278
|
+
type: string;
|
|
3279
|
+
properties: {
|
|
3280
|
+
algorithm: {
|
|
3281
|
+
type: string;
|
|
3282
|
+
};
|
|
3283
|
+
limit: {
|
|
3284
|
+
type: string;
|
|
3285
|
+
minimum: number;
|
|
3286
|
+
maximum: number;
|
|
3287
|
+
default: number;
|
|
3288
|
+
};
|
|
3289
|
+
cursor: {
|
|
3290
|
+
type: string;
|
|
3291
|
+
};
|
|
3292
|
+
};
|
|
3293
|
+
};
|
|
3353
3294
|
output: {
|
|
3354
3295
|
encoding: string;
|
|
3355
3296
|
schema: {
|
|
3356
3297
|
type: string;
|
|
3298
|
+
required: string[];
|
|
3357
3299
|
properties: {
|
|
3358
|
-
|
|
3300
|
+
cursor: {
|
|
3359
3301
|
type: string;
|
|
3360
3302
|
};
|
|
3361
|
-
|
|
3303
|
+
feed: {
|
|
3362
3304
|
type: string;
|
|
3305
|
+
items: {
|
|
3306
|
+
type: string;
|
|
3307
|
+
ref: string;
|
|
3308
|
+
};
|
|
3363
3309
|
};
|
|
3364
3310
|
};
|
|
3365
3311
|
};
|
|
@@ -3367,7 +3313,7 @@ export declare const schemaDict: {
|
|
|
3367
3313
|
};
|
|
3368
3314
|
};
|
|
3369
3315
|
};
|
|
3370
|
-
|
|
3316
|
+
AppBskyFeedLike: {
|
|
3371
3317
|
lexicon: number;
|
|
3372
3318
|
id: string;
|
|
3373
3319
|
defs: {
|
|
@@ -3382,39 +3328,16 @@ export declare const schemaDict: {
|
|
|
3382
3328
|
type: string;
|
|
3383
3329
|
ref: string;
|
|
3384
3330
|
};
|
|
3385
|
-
direction: {
|
|
3386
|
-
type: string;
|
|
3387
|
-
enum: string[];
|
|
3388
|
-
};
|
|
3389
3331
|
createdAt: {
|
|
3390
3332
|
type: string;
|
|
3333
|
+
format: string;
|
|
3391
3334
|
};
|
|
3392
3335
|
};
|
|
3393
3336
|
};
|
|
3394
3337
|
};
|
|
3395
3338
|
};
|
|
3396
3339
|
};
|
|
3397
|
-
|
|
3398
|
-
lexicon: number;
|
|
3399
|
-
id: string;
|
|
3400
|
-
defs: {
|
|
3401
|
-
main: {
|
|
3402
|
-
type: string;
|
|
3403
|
-
description: string;
|
|
3404
|
-
};
|
|
3405
|
-
};
|
|
3406
|
-
};
|
|
3407
|
-
AppBskyGraphAssertMember: {
|
|
3408
|
-
lexicon: number;
|
|
3409
|
-
id: string;
|
|
3410
|
-
defs: {
|
|
3411
|
-
main: {
|
|
3412
|
-
type: string;
|
|
3413
|
-
description: string;
|
|
3414
|
-
};
|
|
3415
|
-
};
|
|
3416
|
-
};
|
|
3417
|
-
AppBskyGraphAssertion: {
|
|
3340
|
+
AppBskyFeedPost: {
|
|
3418
3341
|
lexicon: number;
|
|
3419
3342
|
id: string;
|
|
3420
3343
|
defs: {
|
|
@@ -3425,22 +3348,91 @@ export declare const schemaDict: {
|
|
|
3425
3348
|
type: string;
|
|
3426
3349
|
required: string[];
|
|
3427
3350
|
properties: {
|
|
3428
|
-
|
|
3351
|
+
text: {
|
|
3429
3352
|
type: string;
|
|
3353
|
+
maxLength: number;
|
|
3354
|
+
maxGraphemes: number;
|
|
3430
3355
|
};
|
|
3431
|
-
|
|
3356
|
+
entities: {
|
|
3357
|
+
type: string;
|
|
3358
|
+
description: string;
|
|
3359
|
+
items: {
|
|
3360
|
+
type: string;
|
|
3361
|
+
ref: string;
|
|
3362
|
+
};
|
|
3363
|
+
};
|
|
3364
|
+
facets: {
|
|
3365
|
+
type: string;
|
|
3366
|
+
items: {
|
|
3367
|
+
type: string;
|
|
3368
|
+
ref: string;
|
|
3369
|
+
};
|
|
3370
|
+
};
|
|
3371
|
+
reply: {
|
|
3432
3372
|
type: string;
|
|
3433
3373
|
ref: string;
|
|
3434
3374
|
};
|
|
3375
|
+
embed: {
|
|
3376
|
+
type: string;
|
|
3377
|
+
refs: string[];
|
|
3378
|
+
};
|
|
3435
3379
|
createdAt: {
|
|
3436
3380
|
type: string;
|
|
3381
|
+
format: string;
|
|
3437
3382
|
};
|
|
3438
3383
|
};
|
|
3439
3384
|
};
|
|
3440
3385
|
};
|
|
3386
|
+
replyRef: {
|
|
3387
|
+
type: string;
|
|
3388
|
+
required: string[];
|
|
3389
|
+
properties: {
|
|
3390
|
+
root: {
|
|
3391
|
+
type: string;
|
|
3392
|
+
ref: string;
|
|
3393
|
+
};
|
|
3394
|
+
parent: {
|
|
3395
|
+
type: string;
|
|
3396
|
+
ref: string;
|
|
3397
|
+
};
|
|
3398
|
+
};
|
|
3399
|
+
};
|
|
3400
|
+
entity: {
|
|
3401
|
+
type: string;
|
|
3402
|
+
description: string;
|
|
3403
|
+
required: string[];
|
|
3404
|
+
properties: {
|
|
3405
|
+
index: {
|
|
3406
|
+
type: string;
|
|
3407
|
+
ref: string;
|
|
3408
|
+
};
|
|
3409
|
+
type: {
|
|
3410
|
+
type: string;
|
|
3411
|
+
description: string;
|
|
3412
|
+
};
|
|
3413
|
+
value: {
|
|
3414
|
+
type: string;
|
|
3415
|
+
};
|
|
3416
|
+
};
|
|
3417
|
+
};
|
|
3418
|
+
textSlice: {
|
|
3419
|
+
type: string;
|
|
3420
|
+
description: string;
|
|
3421
|
+
required: string[];
|
|
3422
|
+
properties: {
|
|
3423
|
+
start: {
|
|
3424
|
+
type: string;
|
|
3425
|
+
minimum: number;
|
|
3426
|
+
};
|
|
3427
|
+
end: {
|
|
3428
|
+
type: string;
|
|
3429
|
+
minimum: number;
|
|
3430
|
+
};
|
|
3431
|
+
};
|
|
3432
|
+
};
|
|
3441
3433
|
};
|
|
3442
3434
|
};
|
|
3443
|
-
|
|
3435
|
+
AppBskyFeedRepost: {
|
|
3444
3436
|
lexicon: number;
|
|
3445
3437
|
id: string;
|
|
3446
3438
|
defs: {
|
|
@@ -3451,16 +3443,13 @@ export declare const schemaDict: {
|
|
|
3451
3443
|
type: string;
|
|
3452
3444
|
required: string[];
|
|
3453
3445
|
properties: {
|
|
3454
|
-
|
|
3455
|
-
type: string;
|
|
3456
|
-
ref: string;
|
|
3457
|
-
};
|
|
3458
|
-
assertion: {
|
|
3446
|
+
subject: {
|
|
3459
3447
|
type: string;
|
|
3460
3448
|
ref: string;
|
|
3461
3449
|
};
|
|
3462
3450
|
createdAt: {
|
|
3463
3451
|
type: string;
|
|
3452
|
+
format: string;
|
|
3464
3453
|
};
|
|
3465
3454
|
};
|
|
3466
3455
|
};
|
|
@@ -3481,10 +3470,11 @@ export declare const schemaDict: {
|
|
|
3481
3470
|
properties: {
|
|
3482
3471
|
subject: {
|
|
3483
3472
|
type: string;
|
|
3484
|
-
|
|
3473
|
+
format: string;
|
|
3485
3474
|
};
|
|
3486
3475
|
createdAt: {
|
|
3487
3476
|
type: string;
|
|
3477
|
+
format: string;
|
|
3488
3478
|
};
|
|
3489
3479
|
};
|
|
3490
3480
|
};
|
|
@@ -3502,8 +3492,9 @@ export declare const schemaDict: {
|
|
|
3502
3492
|
type: string;
|
|
3503
3493
|
required: string[];
|
|
3504
3494
|
properties: {
|
|
3505
|
-
|
|
3495
|
+
actor: {
|
|
3506
3496
|
type: string;
|
|
3497
|
+
format: string;
|
|
3507
3498
|
};
|
|
3508
3499
|
limit: {
|
|
3509
3500
|
type: string;
|
|
@@ -3511,7 +3502,7 @@ export declare const schemaDict: {
|
|
|
3511
3502
|
maximum: number;
|
|
3512
3503
|
default: number;
|
|
3513
3504
|
};
|
|
3514
|
-
|
|
3505
|
+
cursor: {
|
|
3515
3506
|
type: string;
|
|
3516
3507
|
};
|
|
3517
3508
|
};
|
|
@@ -3553,8 +3544,9 @@ export declare const schemaDict: {
|
|
|
3553
3544
|
type: string;
|
|
3554
3545
|
required: string[];
|
|
3555
3546
|
properties: {
|
|
3556
|
-
|
|
3547
|
+
actor: {
|
|
3557
3548
|
type: string;
|
|
3549
|
+
format: string;
|
|
3558
3550
|
};
|
|
3559
3551
|
limit: {
|
|
3560
3552
|
type: string;
|
|
@@ -3562,7 +3554,7 @@ export declare const schemaDict: {
|
|
|
3562
3554
|
maximum: number;
|
|
3563
3555
|
default: number;
|
|
3564
3556
|
};
|
|
3565
|
-
|
|
3557
|
+
cursor: {
|
|
3566
3558
|
type: string;
|
|
3567
3559
|
};
|
|
3568
3560
|
};
|
|
@@ -3609,7 +3601,7 @@ export declare const schemaDict: {
|
|
|
3609
3601
|
maximum: number;
|
|
3610
3602
|
default: number;
|
|
3611
3603
|
};
|
|
3612
|
-
|
|
3604
|
+
cursor: {
|
|
3613
3605
|
type: string;
|
|
3614
3606
|
};
|
|
3615
3607
|
};
|
|
@@ -3636,7 +3628,7 @@ export declare const schemaDict: {
|
|
|
3636
3628
|
};
|
|
3637
3629
|
};
|
|
3638
3630
|
};
|
|
3639
|
-
|
|
3631
|
+
AppBskyGraphMuteActor: {
|
|
3640
3632
|
lexicon: number;
|
|
3641
3633
|
id: string;
|
|
3642
3634
|
defs: {
|
|
@@ -3649,8 +3641,9 @@ export declare const schemaDict: {
|
|
|
3649
3641
|
type: string;
|
|
3650
3642
|
required: string[];
|
|
3651
3643
|
properties: {
|
|
3652
|
-
|
|
3644
|
+
actor: {
|
|
3653
3645
|
type: string;
|
|
3646
|
+
format: string;
|
|
3654
3647
|
};
|
|
3655
3648
|
};
|
|
3656
3649
|
};
|
|
@@ -3658,7 +3651,7 @@ export declare const schemaDict: {
|
|
|
3658
3651
|
};
|
|
3659
3652
|
};
|
|
3660
3653
|
};
|
|
3661
|
-
|
|
3654
|
+
AppBskyGraphUnmuteActor: {
|
|
3662
3655
|
lexicon: number;
|
|
3663
3656
|
id: string;
|
|
3664
3657
|
defs: {
|
|
@@ -3671,8 +3664,9 @@ export declare const schemaDict: {
|
|
|
3671
3664
|
type: string;
|
|
3672
3665
|
required: string[];
|
|
3673
3666
|
properties: {
|
|
3674
|
-
|
|
3667
|
+
actor: {
|
|
3675
3668
|
type: string;
|
|
3669
|
+
format: string;
|
|
3676
3670
|
};
|
|
3677
3671
|
};
|
|
3678
3672
|
};
|
|
@@ -3680,7 +3674,7 @@ export declare const schemaDict: {
|
|
|
3680
3674
|
};
|
|
3681
3675
|
};
|
|
3682
3676
|
};
|
|
3683
|
-
|
|
3677
|
+
AppBskyNotificationGetUnreadCount: {
|
|
3684
3678
|
lexicon: number;
|
|
3685
3679
|
id: string;
|
|
3686
3680
|
defs: {
|
|
@@ -3701,7 +3695,7 @@ export declare const schemaDict: {
|
|
|
3701
3695
|
};
|
|
3702
3696
|
};
|
|
3703
3697
|
};
|
|
3704
|
-
|
|
3698
|
+
AppBskyNotificationListNotifications: {
|
|
3705
3699
|
lexicon: number;
|
|
3706
3700
|
id: string;
|
|
3707
3701
|
defs: {
|
|
@@ -3716,7 +3710,7 @@ export declare const schemaDict: {
|
|
|
3716
3710
|
maximum: number;
|
|
3717
3711
|
default: number;
|
|
3718
3712
|
};
|
|
3719
|
-
|
|
3713
|
+
cursor: {
|
|
3720
3714
|
type: string;
|
|
3721
3715
|
};
|
|
3722
3716
|
};
|
|
@@ -3747,9 +3741,11 @@ export declare const schemaDict: {
|
|
|
3747
3741
|
properties: {
|
|
3748
3742
|
uri: {
|
|
3749
3743
|
type: string;
|
|
3744
|
+
format: string;
|
|
3750
3745
|
};
|
|
3751
3746
|
cid: {
|
|
3752
3747
|
type: string;
|
|
3748
|
+
format: string;
|
|
3753
3749
|
};
|
|
3754
3750
|
author: {
|
|
3755
3751
|
type: string;
|
|
@@ -3762,6 +3758,7 @@ export declare const schemaDict: {
|
|
|
3762
3758
|
};
|
|
3763
3759
|
reasonSubject: {
|
|
3764
3760
|
type: string;
|
|
3761
|
+
format: string;
|
|
3765
3762
|
};
|
|
3766
3763
|
record: {
|
|
3767
3764
|
type: string;
|
|
@@ -3771,6 +3768,7 @@ export declare const schemaDict: {
|
|
|
3771
3768
|
};
|
|
3772
3769
|
indexedAt: {
|
|
3773
3770
|
type: string;
|
|
3771
|
+
format: string;
|
|
3774
3772
|
};
|
|
3775
3773
|
};
|
|
3776
3774
|
};
|
|
@@ -3791,6 +3789,7 @@ export declare const schemaDict: {
|
|
|
3791
3789
|
properties: {
|
|
3792
3790
|
seenAt: {
|
|
3793
3791
|
type: string;
|
|
3792
|
+
format: string;
|
|
3794
3793
|
};
|
|
3795
3794
|
};
|
|
3796
3795
|
};
|
|
@@ -3798,51 +3797,103 @@ export declare const schemaDict: {
|
|
|
3798
3797
|
};
|
|
3799
3798
|
};
|
|
3800
3799
|
};
|
|
3801
|
-
|
|
3800
|
+
AppBskyRichtextFacet: {
|
|
3802
3801
|
lexicon: number;
|
|
3803
3802
|
id: string;
|
|
3804
3803
|
defs: {
|
|
3805
3804
|
main: {
|
|
3805
|
+
type: string;
|
|
3806
|
+
required: string[];
|
|
3807
|
+
properties: {
|
|
3808
|
+
index: {
|
|
3809
|
+
type: string;
|
|
3810
|
+
ref: string;
|
|
3811
|
+
};
|
|
3812
|
+
features: {
|
|
3813
|
+
type: string;
|
|
3814
|
+
items: {
|
|
3815
|
+
type: string;
|
|
3816
|
+
refs: string[];
|
|
3817
|
+
};
|
|
3818
|
+
};
|
|
3819
|
+
};
|
|
3820
|
+
};
|
|
3821
|
+
mention: {
|
|
3806
3822
|
type: string;
|
|
3807
3823
|
description: string;
|
|
3824
|
+
required: string[];
|
|
3825
|
+
properties: {
|
|
3826
|
+
did: {
|
|
3827
|
+
type: string;
|
|
3828
|
+
format: string;
|
|
3829
|
+
};
|
|
3830
|
+
};
|
|
3808
3831
|
};
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
AppBskySystemDeclRef: {
|
|
3812
|
-
lexicon: number;
|
|
3813
|
-
id: string;
|
|
3814
|
-
defs: {
|
|
3815
|
-
main: {
|
|
3832
|
+
link: {
|
|
3833
|
+
type: string;
|
|
3816
3834
|
description: string;
|
|
3835
|
+
required: string[];
|
|
3836
|
+
properties: {
|
|
3837
|
+
uri: {
|
|
3838
|
+
type: string;
|
|
3839
|
+
format: string;
|
|
3840
|
+
};
|
|
3841
|
+
};
|
|
3842
|
+
};
|
|
3843
|
+
byteSlice: {
|
|
3817
3844
|
type: string;
|
|
3845
|
+
description: string;
|
|
3818
3846
|
required: string[];
|
|
3819
3847
|
properties: {
|
|
3820
|
-
|
|
3848
|
+
byteStart: {
|
|
3821
3849
|
type: string;
|
|
3850
|
+
minimum: number;
|
|
3822
3851
|
};
|
|
3823
|
-
|
|
3852
|
+
byteEnd: {
|
|
3824
3853
|
type: string;
|
|
3825
|
-
|
|
3854
|
+
minimum: number;
|
|
3826
3855
|
};
|
|
3827
3856
|
};
|
|
3828
3857
|
};
|
|
3829
3858
|
};
|
|
3830
3859
|
};
|
|
3831
|
-
|
|
3860
|
+
AppBskyUnspeccedGetPopular: {
|
|
3832
3861
|
lexicon: number;
|
|
3833
3862
|
id: string;
|
|
3834
3863
|
defs: {
|
|
3835
3864
|
main: {
|
|
3836
|
-
description: string;
|
|
3837
3865
|
type: string;
|
|
3838
|
-
|
|
3839
|
-
|
|
3866
|
+
description: string;
|
|
3867
|
+
parameters: {
|
|
3840
3868
|
type: string;
|
|
3841
|
-
required: string[];
|
|
3842
3869
|
properties: {
|
|
3843
|
-
|
|
3870
|
+
limit: {
|
|
3871
|
+
type: string;
|
|
3872
|
+
minimum: number;
|
|
3873
|
+
maximum: number;
|
|
3874
|
+
default: number;
|
|
3875
|
+
};
|
|
3876
|
+
cursor: {
|
|
3844
3877
|
type: string;
|
|
3845
|
-
|
|
3878
|
+
};
|
|
3879
|
+
};
|
|
3880
|
+
};
|
|
3881
|
+
output: {
|
|
3882
|
+
encoding: string;
|
|
3883
|
+
schema: {
|
|
3884
|
+
type: string;
|
|
3885
|
+
required: string[];
|
|
3886
|
+
properties: {
|
|
3887
|
+
cursor: {
|
|
3888
|
+
type: string;
|
|
3889
|
+
};
|
|
3890
|
+
feed: {
|
|
3891
|
+
type: string;
|
|
3892
|
+
items: {
|
|
3893
|
+
type: string;
|
|
3894
|
+
ref: string;
|
|
3895
|
+
};
|
|
3896
|
+
};
|
|
3846
3897
|
};
|
|
3847
3898
|
};
|
|
3848
3899
|
};
|
|
@@ -3853,93 +3904,81 @@ export declare const schemaDict: {
|
|
|
3853
3904
|
export declare const schemas: LexiconDoc[];
|
|
3854
3905
|
export declare const lexicons: Lexicons;
|
|
3855
3906
|
export declare const ids: {
|
|
3856
|
-
|
|
3857
|
-
ComAtprotoAccountCreateInviteCode: string;
|
|
3858
|
-
ComAtprotoAccountDelete: string;
|
|
3859
|
-
ComAtprotoAccountGet: string;
|
|
3860
|
-
ComAtprotoAccountRequestDelete: string;
|
|
3861
|
-
ComAtprotoAccountRequestPasswordReset: string;
|
|
3862
|
-
ComAtprotoAccountResetPassword: string;
|
|
3863
|
-
ComAtprotoAdminBlob: string;
|
|
3907
|
+
ComAtprotoAdminDefs: string;
|
|
3864
3908
|
ComAtprotoAdminGetModerationAction: string;
|
|
3865
3909
|
ComAtprotoAdminGetModerationActions: string;
|
|
3866
3910
|
ComAtprotoAdminGetModerationReport: string;
|
|
3867
3911
|
ComAtprotoAdminGetModerationReports: string;
|
|
3868
3912
|
ComAtprotoAdminGetRecord: string;
|
|
3869
3913
|
ComAtprotoAdminGetRepo: string;
|
|
3870
|
-
ComAtprotoAdminModerationAction: string;
|
|
3871
|
-
ComAtprotoAdminModerationReport: string;
|
|
3872
|
-
ComAtprotoAdminRecord: string;
|
|
3873
|
-
ComAtprotoAdminRepo: string;
|
|
3874
3914
|
ComAtprotoAdminResolveModerationReports: string;
|
|
3875
3915
|
ComAtprotoAdminReverseModerationAction: string;
|
|
3876
3916
|
ComAtprotoAdminSearchRepos: string;
|
|
3877
3917
|
ComAtprotoAdminTakeModerationAction: string;
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3918
|
+
ComAtprotoIdentityResolveHandle: string;
|
|
3919
|
+
ComAtprotoIdentityUpdateHandle: string;
|
|
3920
|
+
ComAtprotoModerationCreateReport: string;
|
|
3921
|
+
ComAtprotoModerationDefs: string;
|
|
3922
|
+
ComAtprotoRepoApplyWrites: string;
|
|
3882
3923
|
ComAtprotoRepoCreateRecord: string;
|
|
3883
3924
|
ComAtprotoRepoDeleteRecord: string;
|
|
3884
|
-
|
|
3925
|
+
ComAtprotoRepoDescribeRepo: string;
|
|
3885
3926
|
ComAtprotoRepoGetRecord: string;
|
|
3886
3927
|
ComAtprotoRepoListRecords: string;
|
|
3887
3928
|
ComAtprotoRepoPutRecord: string;
|
|
3888
|
-
ComAtprotoRepoRecordRef: string;
|
|
3889
|
-
ComAtprotoRepoRepoRef: string;
|
|
3890
3929
|
ComAtprotoRepoStrongRef: string;
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3930
|
+
ComAtprotoRepoUploadBlob: string;
|
|
3931
|
+
ComAtprotoServerCreateAccount: string;
|
|
3932
|
+
ComAtprotoServerCreateInviteCode: string;
|
|
3933
|
+
ComAtprotoServerCreateSession: string;
|
|
3934
|
+
ComAtprotoServerDeleteAccount: string;
|
|
3935
|
+
ComAtprotoServerDeleteSession: string;
|
|
3936
|
+
ComAtprotoServerDescribeServer: string;
|
|
3937
|
+
ComAtprotoServerGetSession: string;
|
|
3938
|
+
ComAtprotoServerRefreshSession: string;
|
|
3939
|
+
ComAtprotoServerRequestAccountDelete: string;
|
|
3940
|
+
ComAtprotoServerRequestPasswordReset: string;
|
|
3941
|
+
ComAtprotoServerResetPassword: string;
|
|
3942
|
+
ComAtprotoSyncGetBlob: string;
|
|
3899
3943
|
ComAtprotoSyncGetBlocks: string;
|
|
3900
3944
|
ComAtprotoSyncGetCheckout: string;
|
|
3901
3945
|
ComAtprotoSyncGetCommitPath: string;
|
|
3902
3946
|
ComAtprotoSyncGetHead: string;
|
|
3903
3947
|
ComAtprotoSyncGetRecord: string;
|
|
3904
3948
|
ComAtprotoSyncGetRepo: string;
|
|
3949
|
+
ComAtprotoSyncListBlobs: string;
|
|
3905
3950
|
ComAtprotoSyncNotifyOfUpdate: string;
|
|
3906
3951
|
ComAtprotoSyncRequestCrawl: string;
|
|
3907
|
-
|
|
3952
|
+
ComAtprotoSyncSubscribeRepos: string;
|
|
3953
|
+
AppBskyActorDefs: string;
|
|
3908
3954
|
AppBskyActorGetProfile: string;
|
|
3909
3955
|
AppBskyActorGetProfiles: string;
|
|
3910
3956
|
AppBskyActorGetSuggestions: string;
|
|
3911
3957
|
AppBskyActorProfile: string;
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
AppBskyActorSearchTypeahead: string;
|
|
3915
|
-
AppBskyActorUpdateProfile: string;
|
|
3958
|
+
AppBskyActorSearchActors: string;
|
|
3959
|
+
AppBskyActorSearchActorsTypeahead: string;
|
|
3916
3960
|
AppBskyEmbedExternal: string;
|
|
3917
3961
|
AppBskyEmbedImages: string;
|
|
3918
3962
|
AppBskyEmbedRecord: string;
|
|
3919
|
-
|
|
3963
|
+
AppBskyEmbedRecordWithMedia: string;
|
|
3964
|
+
AppBskyFeedDefs: string;
|
|
3920
3965
|
AppBskyFeedGetAuthorFeed: string;
|
|
3966
|
+
AppBskyFeedGetLikes: string;
|
|
3921
3967
|
AppBskyFeedGetPostThread: string;
|
|
3922
3968
|
AppBskyFeedGetRepostedBy: string;
|
|
3923
3969
|
AppBskyFeedGetTimeline: string;
|
|
3924
|
-
|
|
3970
|
+
AppBskyFeedLike: string;
|
|
3925
3971
|
AppBskyFeedPost: string;
|
|
3926
3972
|
AppBskyFeedRepost: string;
|
|
3927
|
-
AppBskyFeedSetVote: string;
|
|
3928
|
-
AppBskyFeedVote: string;
|
|
3929
|
-
AppBskyGraphAssertCreator: string;
|
|
3930
|
-
AppBskyGraphAssertMember: string;
|
|
3931
|
-
AppBskyGraphAssertion: string;
|
|
3932
|
-
AppBskyGraphConfirmation: string;
|
|
3933
3973
|
AppBskyGraphFollow: string;
|
|
3934
3974
|
AppBskyGraphGetFollowers: string;
|
|
3935
3975
|
AppBskyGraphGetFollows: string;
|
|
3936
3976
|
AppBskyGraphGetMutes: string;
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3977
|
+
AppBskyGraphMuteActor: string;
|
|
3978
|
+
AppBskyGraphUnmuteActor: string;
|
|
3979
|
+
AppBskyNotificationGetUnreadCount: string;
|
|
3980
|
+
AppBskyNotificationListNotifications: string;
|
|
3941
3981
|
AppBskyNotificationUpdateSeen: string;
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
AppBskySystemDeclaration: string;
|
|
3982
|
+
AppBskyRichtextFacet: string;
|
|
3983
|
+
AppBskyUnspeccedGetPopular: string;
|
|
3945
3984
|
};
|