@atproto/api 0.1.3 → 0.2.1
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 +1447 -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/embed/complexRecord.d.ts +24 -0
- 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/post.d.ts +33 -0
- 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/{graph/getMembers.d.ts → feed/getLikes.d.ts} +12 -14
- 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/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/{notification/updateSeen.d.ts → graph/muteActor.d.ts} +1 -1
- 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/{graph/getMemberships.d.ts → notification/listNotifications.d.ts} +13 -14
- 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/{sync/getHead.d.ts → identity/resolveHandle.d.ts} +2 -2
- 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/{app/bsky/actor/createScene.d.ts → com/atproto/server/createAccount.d.ts} +14 -2
- 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/{sync/getRecord.d.ts → server/deleteSession.d.ts} +1 -5
- package/dist/client/types/com/atproto/server/describeServer.d.ts +27 -0
- package/dist/client/types/com/atproto/{sync/getRoot.d.ts → server/getSession.d.ts} +2 -2
- package/dist/client/types/com/atproto/server/refreshSession.d.ts +24 -0
- package/dist/client/types/com/atproto/{sync/updateRepo.d.ts → server/requestAccountDelete.d.ts} +1 -3
- 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/{getCheckout.d.ts → getBlob.d.ts} +1 -1
- package/dist/client/types/com/atproto/sync/{getCommitPath.d.ts → listBlobs.d.ts} +1 -1
- 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/index.d.ts +6 -0
- package/dist/index.js +8055 -3651
- package/dist/index.js.map +4 -4
- 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/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 +1833 -1779
- 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/dist/client/types/app/bsky/feed/trend.d.ts +0 -9
- package/dist/client/types/app/bsky/graph/getAssertions.d.ts +0 -48
- package/dist/client/types/app/bsky/system/actorScene.d.ts +0 -1
- package/dist/client/types/com/atproto/repo/strongRef.d.ts +0 -8
- package/dist/client/util.d.ts +0 -2
- 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
- /package/dist/client/types/app/bsky/feed/{repost.d.ts → like.d.ts} +0 -0
|
@@ -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,309 @@ 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
|
+
maxGraphemes: number;
|
|
2338
|
+
maxLength: number;
|
|
2339
|
+
};
|
|
2340
|
+
avatar: {
|
|
2341
|
+
type: string;
|
|
2432
2342
|
};
|
|
2433
|
-
|
|
2343
|
+
viewer: {
|
|
2434
2344
|
type: string;
|
|
2345
|
+
ref: string;
|
|
2435
2346
|
};
|
|
2436
2347
|
};
|
|
2437
2348
|
};
|
|
2438
|
-
|
|
2349
|
+
profileView: {
|
|
2439
2350
|
type: string;
|
|
2440
2351
|
required: string[];
|
|
2441
2352
|
properties: {
|
|
2442
2353
|
did: {
|
|
2443
2354
|
type: string;
|
|
2355
|
+
format: string;
|
|
2356
|
+
};
|
|
2357
|
+
handle: {
|
|
2358
|
+
type: string;
|
|
2359
|
+
format: string;
|
|
2360
|
+
};
|
|
2361
|
+
displayName: {
|
|
2362
|
+
type: string;
|
|
2363
|
+
maxGraphemes: number;
|
|
2364
|
+
maxLength: number;
|
|
2365
|
+
};
|
|
2366
|
+
description: {
|
|
2367
|
+
type: string;
|
|
2368
|
+
maxGraphemes: number;
|
|
2369
|
+
maxLength: number;
|
|
2370
|
+
};
|
|
2371
|
+
avatar: {
|
|
2372
|
+
type: string;
|
|
2444
2373
|
};
|
|
2445
|
-
|
|
2374
|
+
indexedAt: {
|
|
2375
|
+
type: string;
|
|
2376
|
+
format: string;
|
|
2377
|
+
};
|
|
2378
|
+
viewer: {
|
|
2446
2379
|
type: string;
|
|
2447
2380
|
ref: string;
|
|
2448
2381
|
};
|
|
2382
|
+
};
|
|
2383
|
+
};
|
|
2384
|
+
profileViewDetailed: {
|
|
2385
|
+
type: string;
|
|
2386
|
+
required: string[];
|
|
2387
|
+
properties: {
|
|
2388
|
+
did: {
|
|
2389
|
+
type: string;
|
|
2390
|
+
format: string;
|
|
2391
|
+
};
|
|
2449
2392
|
handle: {
|
|
2450
2393
|
type: string;
|
|
2394
|
+
format: string;
|
|
2451
2395
|
};
|
|
2452
2396
|
displayName: {
|
|
2453
2397
|
type: string;
|
|
2454
|
-
|
|
2398
|
+
maxGraphemes: number;
|
|
2399
|
+
maxLength: number;
|
|
2400
|
+
};
|
|
2401
|
+
description: {
|
|
2402
|
+
type: string;
|
|
2403
|
+
maxGraphemes: number;
|
|
2404
|
+
maxLength: number;
|
|
2405
|
+
};
|
|
2406
|
+
avatar: {
|
|
2407
|
+
type: string;
|
|
2408
|
+
};
|
|
2409
|
+
banner: {
|
|
2410
|
+
type: string;
|
|
2411
|
+
};
|
|
2412
|
+
followersCount: {
|
|
2413
|
+
type: string;
|
|
2414
|
+
};
|
|
2415
|
+
followsCount: {
|
|
2416
|
+
type: string;
|
|
2417
|
+
};
|
|
2418
|
+
postsCount: {
|
|
2419
|
+
type: string;
|
|
2455
2420
|
};
|
|
2456
|
-
|
|
2421
|
+
indexedAt: {
|
|
2457
2422
|
type: string;
|
|
2423
|
+
format: string;
|
|
2458
2424
|
};
|
|
2459
2425
|
viewer: {
|
|
2460
2426
|
type: string;
|
|
@@ -2470,34 +2436,98 @@ export declare const schemaDict: {
|
|
|
2470
2436
|
};
|
|
2471
2437
|
following: {
|
|
2472
2438
|
type: string;
|
|
2439
|
+
format: string;
|
|
2473
2440
|
};
|
|
2474
2441
|
followedBy: {
|
|
2475
2442
|
type: string;
|
|
2443
|
+
format: string;
|
|
2476
2444
|
};
|
|
2477
2445
|
};
|
|
2478
2446
|
};
|
|
2479
2447
|
};
|
|
2480
2448
|
};
|
|
2481
|
-
|
|
2449
|
+
AppBskyActorGetProfile: {
|
|
2482
2450
|
lexicon: number;
|
|
2483
2451
|
id: string;
|
|
2484
2452
|
defs: {
|
|
2485
2453
|
main: {
|
|
2486
2454
|
type: string;
|
|
2487
|
-
description: string;
|
|
2488
2455
|
parameters: {
|
|
2489
2456
|
type: string;
|
|
2457
|
+
required: string[];
|
|
2490
2458
|
properties: {
|
|
2491
|
-
|
|
2459
|
+
actor: {
|
|
2460
|
+
type: string;
|
|
2461
|
+
format: string;
|
|
2462
|
+
};
|
|
2463
|
+
};
|
|
2464
|
+
};
|
|
2465
|
+
output: {
|
|
2466
|
+
encoding: string;
|
|
2467
|
+
schema: {
|
|
2468
|
+
type: string;
|
|
2469
|
+
ref: string;
|
|
2470
|
+
};
|
|
2471
|
+
};
|
|
2472
|
+
};
|
|
2473
|
+
};
|
|
2474
|
+
};
|
|
2475
|
+
AppBskyActorGetProfiles: {
|
|
2476
|
+
lexicon: number;
|
|
2477
|
+
id: string;
|
|
2478
|
+
defs: {
|
|
2479
|
+
main: {
|
|
2480
|
+
type: string;
|
|
2481
|
+
parameters: {
|
|
2482
|
+
type: string;
|
|
2483
|
+
required: string[];
|
|
2484
|
+
properties: {
|
|
2485
|
+
actors: {
|
|
2492
2486
|
type: string;
|
|
2487
|
+
items: {
|
|
2488
|
+
type: string;
|
|
2489
|
+
format: string;
|
|
2490
|
+
};
|
|
2491
|
+
maxLength: number;
|
|
2492
|
+
};
|
|
2493
|
+
};
|
|
2494
|
+
};
|
|
2495
|
+
output: {
|
|
2496
|
+
encoding: string;
|
|
2497
|
+
schema: {
|
|
2498
|
+
type: string;
|
|
2499
|
+
required: string[];
|
|
2500
|
+
properties: {
|
|
2501
|
+
profiles: {
|
|
2502
|
+
type: string;
|
|
2503
|
+
items: {
|
|
2504
|
+
type: string;
|
|
2505
|
+
ref: string;
|
|
2506
|
+
};
|
|
2507
|
+
};
|
|
2493
2508
|
};
|
|
2509
|
+
};
|
|
2510
|
+
};
|
|
2511
|
+
};
|
|
2512
|
+
};
|
|
2513
|
+
};
|
|
2514
|
+
AppBskyActorGetSuggestions: {
|
|
2515
|
+
lexicon: number;
|
|
2516
|
+
id: string;
|
|
2517
|
+
defs: {
|
|
2518
|
+
main: {
|
|
2519
|
+
type: string;
|
|
2520
|
+
description: string;
|
|
2521
|
+
parameters: {
|
|
2522
|
+
type: string;
|
|
2523
|
+
properties: {
|
|
2494
2524
|
limit: {
|
|
2495
2525
|
type: string;
|
|
2496
2526
|
minimum: number;
|
|
2497
2527
|
maximum: number;
|
|
2498
2528
|
default: number;
|
|
2499
2529
|
};
|
|
2500
|
-
|
|
2530
|
+
cursor: {
|
|
2501
2531
|
type: string;
|
|
2502
2532
|
};
|
|
2503
2533
|
};
|
|
@@ -2511,7 +2541,7 @@ export declare const schemaDict: {
|
|
|
2511
2541
|
cursor: {
|
|
2512
2542
|
type: string;
|
|
2513
2543
|
};
|
|
2514
|
-
|
|
2544
|
+
actors: {
|
|
2515
2545
|
type: string;
|
|
2516
2546
|
items: {
|
|
2517
2547
|
type: string;
|
|
@@ -2524,7 +2554,42 @@ export declare const schemaDict: {
|
|
|
2524
2554
|
};
|
|
2525
2555
|
};
|
|
2526
2556
|
};
|
|
2527
|
-
|
|
2557
|
+
AppBskyActorProfile: {
|
|
2558
|
+
lexicon: number;
|
|
2559
|
+
id: string;
|
|
2560
|
+
defs: {
|
|
2561
|
+
main: {
|
|
2562
|
+
type: string;
|
|
2563
|
+
key: string;
|
|
2564
|
+
record: {
|
|
2565
|
+
type: string;
|
|
2566
|
+
properties: {
|
|
2567
|
+
displayName: {
|
|
2568
|
+
type: string;
|
|
2569
|
+
maxGraphemes: number;
|
|
2570
|
+
maxLength: number;
|
|
2571
|
+
};
|
|
2572
|
+
description: {
|
|
2573
|
+
type: string;
|
|
2574
|
+
maxGraphemes: number;
|
|
2575
|
+
maxLength: number;
|
|
2576
|
+
};
|
|
2577
|
+
avatar: {
|
|
2578
|
+
type: string;
|
|
2579
|
+
accept: string[];
|
|
2580
|
+
maxSize: number;
|
|
2581
|
+
};
|
|
2582
|
+
banner: {
|
|
2583
|
+
type: string;
|
|
2584
|
+
accept: string[];
|
|
2585
|
+
maxSize: number;
|
|
2586
|
+
};
|
|
2587
|
+
};
|
|
2588
|
+
};
|
|
2589
|
+
};
|
|
2590
|
+
};
|
|
2591
|
+
};
|
|
2592
|
+
AppBskyActorSearchActors: {
|
|
2528
2593
|
lexicon: number;
|
|
2529
2594
|
id: string;
|
|
2530
2595
|
defs: {
|
|
@@ -2543,6 +2608,9 @@ export declare const schemaDict: {
|
|
|
2543
2608
|
maximum: number;
|
|
2544
2609
|
default: number;
|
|
2545
2610
|
};
|
|
2611
|
+
cursor: {
|
|
2612
|
+
type: string;
|
|
2613
|
+
};
|
|
2546
2614
|
};
|
|
2547
2615
|
};
|
|
2548
2616
|
output: {
|
|
@@ -2551,7 +2619,10 @@ export declare const schemaDict: {
|
|
|
2551
2619
|
type: string;
|
|
2552
2620
|
required: string[];
|
|
2553
2621
|
properties: {
|
|
2554
|
-
|
|
2622
|
+
cursor: {
|
|
2623
|
+
type: string;
|
|
2624
|
+
};
|
|
2625
|
+
actors: {
|
|
2555
2626
|
type: string;
|
|
2556
2627
|
items: {
|
|
2557
2628
|
type: string;
|
|
@@ -2564,41 +2635,24 @@ export declare const schemaDict: {
|
|
|
2564
2635
|
};
|
|
2565
2636
|
};
|
|
2566
2637
|
};
|
|
2567
|
-
|
|
2638
|
+
AppBskyActorSearchActorsTypeahead: {
|
|
2568
2639
|
lexicon: number;
|
|
2569
2640
|
id: string;
|
|
2570
2641
|
defs: {
|
|
2571
2642
|
main: {
|
|
2572
2643
|
type: string;
|
|
2573
2644
|
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
|
-
};
|
|
2645
|
+
parameters: {
|
|
2646
|
+
type: string;
|
|
2647
|
+
properties: {
|
|
2648
|
+
term: {
|
|
2649
|
+
type: string;
|
|
2650
|
+
};
|
|
2651
|
+
limit: {
|
|
2652
|
+
type: string;
|
|
2653
|
+
minimum: number;
|
|
2654
|
+
maximum: number;
|
|
2655
|
+
default: number;
|
|
2602
2656
|
};
|
|
2603
2657
|
};
|
|
2604
2658
|
};
|
|
@@ -2608,21 +2662,16 @@ export declare const schemaDict: {
|
|
|
2608
2662
|
type: string;
|
|
2609
2663
|
required: string[];
|
|
2610
2664
|
properties: {
|
|
2611
|
-
|
|
2612
|
-
type: string;
|
|
2613
|
-
};
|
|
2614
|
-
cid: {
|
|
2615
|
-
type: string;
|
|
2616
|
-
};
|
|
2617
|
-
record: {
|
|
2665
|
+
actors: {
|
|
2618
2666
|
type: string;
|
|
2667
|
+
items: {
|
|
2668
|
+
type: string;
|
|
2669
|
+
ref: string;
|
|
2670
|
+
};
|
|
2619
2671
|
};
|
|
2620
2672
|
};
|
|
2621
2673
|
};
|
|
2622
2674
|
};
|
|
2623
|
-
errors: {
|
|
2624
|
-
name: string;
|
|
2625
|
-
}[];
|
|
2626
2675
|
};
|
|
2627
2676
|
};
|
|
2628
2677
|
};
|
|
@@ -2647,6 +2696,7 @@ export declare const schemaDict: {
|
|
|
2647
2696
|
properties: {
|
|
2648
2697
|
uri: {
|
|
2649
2698
|
type: string;
|
|
2699
|
+
format: string;
|
|
2650
2700
|
};
|
|
2651
2701
|
title: {
|
|
2652
2702
|
type: string;
|
|
@@ -2657,13 +2707,11 @@ export declare const schemaDict: {
|
|
|
2657
2707
|
thumb: {
|
|
2658
2708
|
type: string;
|
|
2659
2709
|
accept: string[];
|
|
2660
|
-
maxWidth: number;
|
|
2661
|
-
maxHeight: number;
|
|
2662
2710
|
maxSize: number;
|
|
2663
2711
|
};
|
|
2664
2712
|
};
|
|
2665
2713
|
};
|
|
2666
|
-
|
|
2714
|
+
view: {
|
|
2667
2715
|
type: string;
|
|
2668
2716
|
required: string[];
|
|
2669
2717
|
properties: {
|
|
@@ -2673,12 +2721,13 @@ export declare const schemaDict: {
|
|
|
2673
2721
|
};
|
|
2674
2722
|
};
|
|
2675
2723
|
};
|
|
2676
|
-
|
|
2724
|
+
viewExternal: {
|
|
2677
2725
|
type: string;
|
|
2678
2726
|
required: string[];
|
|
2679
2727
|
properties: {
|
|
2680
2728
|
uri: {
|
|
2681
2729
|
type: string;
|
|
2730
|
+
format: string;
|
|
2682
2731
|
};
|
|
2683
2732
|
title: {
|
|
2684
2733
|
type: string;
|
|
@@ -2719,8 +2768,6 @@ export declare const schemaDict: {
|
|
|
2719
2768
|
image: {
|
|
2720
2769
|
type: string;
|
|
2721
2770
|
accept: string[];
|
|
2722
|
-
maxWidth: number;
|
|
2723
|
-
maxHeight: number;
|
|
2724
2771
|
maxSize: number;
|
|
2725
2772
|
};
|
|
2726
2773
|
alt: {
|
|
@@ -2728,7 +2775,7 @@ export declare const schemaDict: {
|
|
|
2728
2775
|
};
|
|
2729
2776
|
};
|
|
2730
2777
|
};
|
|
2731
|
-
|
|
2778
|
+
view: {
|
|
2732
2779
|
type: string;
|
|
2733
2780
|
required: string[];
|
|
2734
2781
|
properties: {
|
|
@@ -2742,7 +2789,7 @@ export declare const schemaDict: {
|
|
|
2742
2789
|
};
|
|
2743
2790
|
};
|
|
2744
2791
|
};
|
|
2745
|
-
|
|
2792
|
+
viewImage: {
|
|
2746
2793
|
type: string;
|
|
2747
2794
|
required: string[];
|
|
2748
2795
|
properties: {
|
|
@@ -2774,7 +2821,7 @@ export declare const schemaDict: {
|
|
|
2774
2821
|
};
|
|
2775
2822
|
};
|
|
2776
2823
|
};
|
|
2777
|
-
|
|
2824
|
+
view: {
|
|
2778
2825
|
type: string;
|
|
2779
2826
|
required: string[];
|
|
2780
2827
|
properties: {
|
|
@@ -2784,168 +2831,189 @@ export declare const schemaDict: {
|
|
|
2784
2831
|
};
|
|
2785
2832
|
};
|
|
2786
2833
|
};
|
|
2787
|
-
|
|
2834
|
+
viewRecord: {
|
|
2788
2835
|
type: string;
|
|
2789
2836
|
required: string[];
|
|
2790
2837
|
properties: {
|
|
2791
2838
|
uri: {
|
|
2792
2839
|
type: string;
|
|
2840
|
+
format: string;
|
|
2793
2841
|
};
|
|
2794
2842
|
cid: {
|
|
2795
2843
|
type: string;
|
|
2844
|
+
format: string;
|
|
2796
2845
|
};
|
|
2797
2846
|
author: {
|
|
2798
2847
|
type: string;
|
|
2799
2848
|
ref: string;
|
|
2800
2849
|
};
|
|
2801
|
-
|
|
2850
|
+
value: {
|
|
2851
|
+
type: string;
|
|
2852
|
+
};
|
|
2853
|
+
embeds: {
|
|
2854
|
+
type: string;
|
|
2855
|
+
items: {
|
|
2856
|
+
type: string;
|
|
2857
|
+
refs: string[];
|
|
2858
|
+
};
|
|
2859
|
+
};
|
|
2860
|
+
indexedAt: {
|
|
2802
2861
|
type: string;
|
|
2862
|
+
format: string;
|
|
2803
2863
|
};
|
|
2804
2864
|
};
|
|
2805
2865
|
};
|
|
2806
|
-
|
|
2866
|
+
viewNotFound: {
|
|
2807
2867
|
type: string;
|
|
2808
2868
|
required: string[];
|
|
2809
2869
|
properties: {
|
|
2810
2870
|
uri: {
|
|
2811
2871
|
type: string;
|
|
2872
|
+
format: string;
|
|
2812
2873
|
};
|
|
2813
2874
|
};
|
|
2814
2875
|
};
|
|
2815
2876
|
};
|
|
2816
2877
|
};
|
|
2817
|
-
|
|
2878
|
+
AppBskyEmbedRecordWithMedia: {
|
|
2818
2879
|
lexicon: number;
|
|
2819
2880
|
id: string;
|
|
2881
|
+
description: string;
|
|
2820
2882
|
defs: {
|
|
2821
2883
|
main: {
|
|
2822
2884
|
type: string;
|
|
2823
2885
|
required: string[];
|
|
2824
2886
|
properties: {
|
|
2825
|
-
|
|
2887
|
+
record: {
|
|
2826
2888
|
type: string;
|
|
2827
2889
|
ref: string;
|
|
2828
2890
|
};
|
|
2829
|
-
|
|
2891
|
+
media: {
|
|
2892
|
+
type: string;
|
|
2893
|
+
refs: string[];
|
|
2894
|
+
};
|
|
2895
|
+
};
|
|
2896
|
+
};
|
|
2897
|
+
view: {
|
|
2898
|
+
type: string;
|
|
2899
|
+
required: string[];
|
|
2900
|
+
properties: {
|
|
2901
|
+
record: {
|
|
2830
2902
|
type: string;
|
|
2831
2903
|
ref: string;
|
|
2832
2904
|
};
|
|
2833
|
-
|
|
2905
|
+
media: {
|
|
2834
2906
|
type: string;
|
|
2835
2907
|
refs: string[];
|
|
2836
2908
|
};
|
|
2837
2909
|
};
|
|
2838
2910
|
};
|
|
2839
|
-
|
|
2911
|
+
};
|
|
2912
|
+
};
|
|
2913
|
+
AppBskyFeedDefs: {
|
|
2914
|
+
lexicon: number;
|
|
2915
|
+
id: string;
|
|
2916
|
+
defs: {
|
|
2917
|
+
postView: {
|
|
2840
2918
|
type: string;
|
|
2841
2919
|
required: string[];
|
|
2842
2920
|
properties: {
|
|
2843
|
-
|
|
2921
|
+
uri: {
|
|
2922
|
+
type: string;
|
|
2923
|
+
format: string;
|
|
2924
|
+
};
|
|
2925
|
+
cid: {
|
|
2926
|
+
type: string;
|
|
2927
|
+
format: string;
|
|
2928
|
+
};
|
|
2929
|
+
author: {
|
|
2844
2930
|
type: string;
|
|
2845
2931
|
ref: string;
|
|
2846
2932
|
};
|
|
2847
|
-
|
|
2933
|
+
record: {
|
|
2934
|
+
type: string;
|
|
2935
|
+
};
|
|
2936
|
+
embed: {
|
|
2937
|
+
type: string;
|
|
2938
|
+
refs: string[];
|
|
2939
|
+
};
|
|
2940
|
+
replyCount: {
|
|
2941
|
+
type: string;
|
|
2942
|
+
};
|
|
2943
|
+
repostCount: {
|
|
2944
|
+
type: string;
|
|
2945
|
+
};
|
|
2946
|
+
likeCount: {
|
|
2947
|
+
type: string;
|
|
2948
|
+
};
|
|
2949
|
+
indexedAt: {
|
|
2950
|
+
type: string;
|
|
2951
|
+
format: string;
|
|
2952
|
+
};
|
|
2953
|
+
viewer: {
|
|
2848
2954
|
type: string;
|
|
2849
2955
|
ref: string;
|
|
2850
2956
|
};
|
|
2851
2957
|
};
|
|
2852
2958
|
};
|
|
2853
|
-
|
|
2959
|
+
viewerState: {
|
|
2960
|
+
type: string;
|
|
2961
|
+
properties: {
|
|
2962
|
+
repost: {
|
|
2963
|
+
type: string;
|
|
2964
|
+
format: string;
|
|
2965
|
+
};
|
|
2966
|
+
like: {
|
|
2967
|
+
type: string;
|
|
2968
|
+
format: string;
|
|
2969
|
+
};
|
|
2970
|
+
};
|
|
2971
|
+
};
|
|
2972
|
+
feedViewPost: {
|
|
2854
2973
|
type: string;
|
|
2855
2974
|
required: string[];
|
|
2856
2975
|
properties: {
|
|
2857
|
-
|
|
2976
|
+
post: {
|
|
2858
2977
|
type: string;
|
|
2859
2978
|
ref: string;
|
|
2860
2979
|
};
|
|
2861
|
-
|
|
2980
|
+
reply: {
|
|
2981
|
+
type: string;
|
|
2982
|
+
ref: string;
|
|
2983
|
+
};
|
|
2984
|
+
reason: {
|
|
2862
2985
|
type: string;
|
|
2986
|
+
refs: string[];
|
|
2863
2987
|
};
|
|
2864
2988
|
};
|
|
2865
2989
|
};
|
|
2866
|
-
|
|
2867
|
-
};
|
|
2868
|
-
AppBskyFeedGetAuthorFeed: {
|
|
2869
|
-
lexicon: number;
|
|
2870
|
-
id: string;
|
|
2871
|
-
defs: {
|
|
2872
|
-
main: {
|
|
2990
|
+
replyRef: {
|
|
2873
2991
|
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
|
-
};
|
|
2992
|
+
required: string[];
|
|
2993
|
+
properties: {
|
|
2994
|
+
root: {
|
|
2995
|
+
type: string;
|
|
2996
|
+
ref: string;
|
|
2891
2997
|
};
|
|
2892
|
-
|
|
2893
|
-
output: {
|
|
2894
|
-
encoding: string;
|
|
2895
|
-
schema: {
|
|
2998
|
+
parent: {
|
|
2896
2999
|
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
|
-
};
|
|
3000
|
+
ref: string;
|
|
2910
3001
|
};
|
|
2911
3002
|
};
|
|
2912
3003
|
};
|
|
2913
|
-
|
|
2914
|
-
};
|
|
2915
|
-
AppBskyFeedGetPostThread: {
|
|
2916
|
-
lexicon: number;
|
|
2917
|
-
id: string;
|
|
2918
|
-
defs: {
|
|
2919
|
-
main: {
|
|
3004
|
+
reasonRepost: {
|
|
2920
3005
|
type: string;
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
type: string;
|
|
2927
|
-
};
|
|
2928
|
-
depth: {
|
|
2929
|
-
type: string;
|
|
2930
|
-
};
|
|
3006
|
+
required: string[];
|
|
3007
|
+
properties: {
|
|
3008
|
+
by: {
|
|
3009
|
+
type: string;
|
|
3010
|
+
ref: string;
|
|
2931
3011
|
};
|
|
2932
|
-
|
|
2933
|
-
output: {
|
|
2934
|
-
encoding: string;
|
|
2935
|
-
schema: {
|
|
3012
|
+
indexedAt: {
|
|
2936
3013
|
type: string;
|
|
2937
|
-
|
|
2938
|
-
properties: {
|
|
2939
|
-
thread: {
|
|
2940
|
-
type: string;
|
|
2941
|
-
refs: string[];
|
|
2942
|
-
};
|
|
2943
|
-
};
|
|
3014
|
+
format: string;
|
|
2944
3015
|
};
|
|
2945
3016
|
};
|
|
2946
|
-
errors: {
|
|
2947
|
-
name: string;
|
|
2948
|
-
}[];
|
|
2949
3017
|
};
|
|
2950
3018
|
threadViewPost: {
|
|
2951
3019
|
type: string;
|
|
@@ -2974,6 +3042,7 @@ export declare const schemaDict: {
|
|
|
2974
3042
|
properties: {
|
|
2975
3043
|
uri: {
|
|
2976
3044
|
type: string;
|
|
3045
|
+
format: string;
|
|
2977
3046
|
};
|
|
2978
3047
|
notFound: {
|
|
2979
3048
|
type: string;
|
|
@@ -2983,62 +3052,7 @@ export declare const schemaDict: {
|
|
|
2983
3052
|
};
|
|
2984
3053
|
};
|
|
2985
3054
|
};
|
|
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: {
|
|
3055
|
+
AppBskyFeedGetAuthorFeed: {
|
|
3042
3056
|
lexicon: number;
|
|
3043
3057
|
id: string;
|
|
3044
3058
|
defs: {
|
|
@@ -3047,9 +3061,11 @@ export declare const schemaDict: {
|
|
|
3047
3061
|
description: string;
|
|
3048
3062
|
parameters: {
|
|
3049
3063
|
type: string;
|
|
3064
|
+
required: string[];
|
|
3050
3065
|
properties: {
|
|
3051
|
-
|
|
3066
|
+
actor: {
|
|
3052
3067
|
type: string;
|
|
3068
|
+
format: string;
|
|
3053
3069
|
};
|
|
3054
3070
|
limit: {
|
|
3055
3071
|
type: string;
|
|
@@ -3057,7 +3073,7 @@ export declare const schemaDict: {
|
|
|
3057
3073
|
maximum: number;
|
|
3058
3074
|
default: number;
|
|
3059
3075
|
};
|
|
3060
|
-
|
|
3076
|
+
cursor: {
|
|
3061
3077
|
type: string;
|
|
3062
3078
|
};
|
|
3063
3079
|
};
|
|
@@ -3084,7 +3100,7 @@ export declare const schemaDict: {
|
|
|
3084
3100
|
};
|
|
3085
3101
|
};
|
|
3086
3102
|
};
|
|
3087
|
-
|
|
3103
|
+
AppBskyFeedGetLikes: {
|
|
3088
3104
|
lexicon: number;
|
|
3089
3105
|
id: string;
|
|
3090
3106
|
defs: {
|
|
@@ -3096,13 +3112,11 @@ export declare const schemaDict: {
|
|
|
3096
3112
|
properties: {
|
|
3097
3113
|
uri: {
|
|
3098
3114
|
type: string;
|
|
3115
|
+
format: string;
|
|
3099
3116
|
};
|
|
3100
3117
|
cid: {
|
|
3101
3118
|
type: string;
|
|
3102
|
-
|
|
3103
|
-
direction: {
|
|
3104
|
-
type: string;
|
|
3105
|
-
enum: string[];
|
|
3119
|
+
format: string;
|
|
3106
3120
|
};
|
|
3107
3121
|
limit: {
|
|
3108
3122
|
type: string;
|
|
@@ -3110,7 +3124,7 @@ export declare const schemaDict: {
|
|
|
3110
3124
|
maximum: number;
|
|
3111
3125
|
default: number;
|
|
3112
3126
|
};
|
|
3113
|
-
|
|
3127
|
+
cursor: {
|
|
3114
3128
|
type: string;
|
|
3115
3129
|
};
|
|
3116
3130
|
};
|
|
@@ -3123,14 +3137,16 @@ export declare const schemaDict: {
|
|
|
3123
3137
|
properties: {
|
|
3124
3138
|
uri: {
|
|
3125
3139
|
type: string;
|
|
3140
|
+
format: string;
|
|
3126
3141
|
};
|
|
3127
3142
|
cid: {
|
|
3128
3143
|
type: string;
|
|
3144
|
+
format: string;
|
|
3129
3145
|
};
|
|
3130
3146
|
cursor: {
|
|
3131
3147
|
type: string;
|
|
3132
3148
|
};
|
|
3133
|
-
|
|
3149
|
+
likes: {
|
|
3134
3150
|
type: string;
|
|
3135
3151
|
items: {
|
|
3136
3152
|
type: string;
|
|
@@ -3141,19 +3157,17 @@ export declare const schemaDict: {
|
|
|
3141
3157
|
};
|
|
3142
3158
|
};
|
|
3143
3159
|
};
|
|
3144
|
-
|
|
3160
|
+
like: {
|
|
3145
3161
|
type: string;
|
|
3146
3162
|
required: string[];
|
|
3147
3163
|
properties: {
|
|
3148
|
-
direction: {
|
|
3149
|
-
type: string;
|
|
3150
|
-
enum: string[];
|
|
3151
|
-
};
|
|
3152
3164
|
indexedAt: {
|
|
3153
3165
|
type: string;
|
|
3166
|
+
format: string;
|
|
3154
3167
|
};
|
|
3155
3168
|
createdAt: {
|
|
3156
3169
|
type: string;
|
|
3170
|
+
format: string;
|
|
3157
3171
|
};
|
|
3158
3172
|
actor: {
|
|
3159
3173
|
type: string;
|
|
@@ -3163,203 +3177,142 @@ export declare const schemaDict: {
|
|
|
3163
3177
|
};
|
|
3164
3178
|
};
|
|
3165
3179
|
};
|
|
3166
|
-
|
|
3180
|
+
AppBskyFeedGetPostThread: {
|
|
3167
3181
|
lexicon: number;
|
|
3168
3182
|
id: string;
|
|
3169
3183
|
defs: {
|
|
3170
3184
|
main: {
|
|
3171
3185
|
type: string;
|
|
3172
|
-
|
|
3173
|
-
record: {
|
|
3186
|
+
parameters: {
|
|
3174
3187
|
type: string;
|
|
3175
3188
|
required: string[];
|
|
3176
3189
|
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: {
|
|
3190
|
+
uri: {
|
|
3193
3191
|
type: string;
|
|
3194
|
-
|
|
3192
|
+
format: string;
|
|
3195
3193
|
};
|
|
3196
|
-
|
|
3194
|
+
depth: {
|
|
3197
3195
|
type: string;
|
|
3198
3196
|
};
|
|
3199
3197
|
};
|
|
3200
3198
|
};
|
|
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: {
|
|
3199
|
+
output: {
|
|
3200
|
+
encoding: string;
|
|
3201
|
+
schema: {
|
|
3300
3202
|
type: string;
|
|
3203
|
+
required: string[];
|
|
3204
|
+
properties: {
|
|
3205
|
+
thread: {
|
|
3206
|
+
type: string;
|
|
3207
|
+
refs: string[];
|
|
3208
|
+
};
|
|
3209
|
+
};
|
|
3301
3210
|
};
|
|
3302
3211
|
};
|
|
3212
|
+
errors: {
|
|
3213
|
+
name: string;
|
|
3214
|
+
}[];
|
|
3303
3215
|
};
|
|
3304
3216
|
};
|
|
3305
3217
|
};
|
|
3306
|
-
|
|
3218
|
+
AppBskyFeedGetRepostedBy: {
|
|
3307
3219
|
lexicon: number;
|
|
3308
3220
|
id: string;
|
|
3309
3221
|
defs: {
|
|
3310
3222
|
main: {
|
|
3311
3223
|
type: string;
|
|
3312
|
-
|
|
3313
|
-
record: {
|
|
3224
|
+
parameters: {
|
|
3314
3225
|
type: string;
|
|
3315
3226
|
required: string[];
|
|
3316
3227
|
properties: {
|
|
3317
|
-
|
|
3228
|
+
uri: {
|
|
3318
3229
|
type: string;
|
|
3319
|
-
|
|
3230
|
+
format: string;
|
|
3320
3231
|
};
|
|
3321
|
-
|
|
3232
|
+
cid: {
|
|
3233
|
+
type: string;
|
|
3234
|
+
format: string;
|
|
3235
|
+
};
|
|
3236
|
+
limit: {
|
|
3237
|
+
type: string;
|
|
3238
|
+
minimum: number;
|
|
3239
|
+
maximum: number;
|
|
3240
|
+
default: number;
|
|
3241
|
+
};
|
|
3242
|
+
cursor: {
|
|
3322
3243
|
type: string;
|
|
3323
3244
|
};
|
|
3324
3245
|
};
|
|
3325
3246
|
};
|
|
3326
|
-
|
|
3327
|
-
};
|
|
3328
|
-
};
|
|
3329
|
-
AppBskyFeedSetVote: {
|
|
3330
|
-
lexicon: number;
|
|
3331
|
-
id: string;
|
|
3332
|
-
defs: {
|
|
3333
|
-
main: {
|
|
3334
|
-
type: string;
|
|
3335
|
-
description: string;
|
|
3336
|
-
input: {
|
|
3247
|
+
output: {
|
|
3337
3248
|
encoding: string;
|
|
3338
3249
|
schema: {
|
|
3339
3250
|
type: string;
|
|
3340
3251
|
required: string[];
|
|
3341
3252
|
properties: {
|
|
3342
|
-
|
|
3253
|
+
uri: {
|
|
3343
3254
|
type: string;
|
|
3344
|
-
|
|
3255
|
+
format: string;
|
|
3256
|
+
};
|
|
3257
|
+
cid: {
|
|
3258
|
+
type: string;
|
|
3259
|
+
format: string;
|
|
3345
3260
|
};
|
|
3346
|
-
|
|
3261
|
+
cursor: {
|
|
3262
|
+
type: string;
|
|
3263
|
+
};
|
|
3264
|
+
repostedBy: {
|
|
3347
3265
|
type: string;
|
|
3348
|
-
|
|
3266
|
+
items: {
|
|
3267
|
+
type: string;
|
|
3268
|
+
ref: string;
|
|
3269
|
+
};
|
|
3349
3270
|
};
|
|
3350
3271
|
};
|
|
3351
3272
|
};
|
|
3352
3273
|
};
|
|
3274
|
+
};
|
|
3275
|
+
};
|
|
3276
|
+
};
|
|
3277
|
+
AppBskyFeedGetTimeline: {
|
|
3278
|
+
lexicon: number;
|
|
3279
|
+
id: string;
|
|
3280
|
+
defs: {
|
|
3281
|
+
main: {
|
|
3282
|
+
type: string;
|
|
3283
|
+
description: string;
|
|
3284
|
+
parameters: {
|
|
3285
|
+
type: string;
|
|
3286
|
+
properties: {
|
|
3287
|
+
algorithm: {
|
|
3288
|
+
type: string;
|
|
3289
|
+
};
|
|
3290
|
+
limit: {
|
|
3291
|
+
type: string;
|
|
3292
|
+
minimum: number;
|
|
3293
|
+
maximum: number;
|
|
3294
|
+
default: number;
|
|
3295
|
+
};
|
|
3296
|
+
cursor: {
|
|
3297
|
+
type: string;
|
|
3298
|
+
};
|
|
3299
|
+
};
|
|
3300
|
+
};
|
|
3353
3301
|
output: {
|
|
3354
3302
|
encoding: string;
|
|
3355
3303
|
schema: {
|
|
3356
3304
|
type: string;
|
|
3305
|
+
required: string[];
|
|
3357
3306
|
properties: {
|
|
3358
|
-
|
|
3307
|
+
cursor: {
|
|
3359
3308
|
type: string;
|
|
3360
3309
|
};
|
|
3361
|
-
|
|
3310
|
+
feed: {
|
|
3362
3311
|
type: string;
|
|
3312
|
+
items: {
|
|
3313
|
+
type: string;
|
|
3314
|
+
ref: string;
|
|
3315
|
+
};
|
|
3363
3316
|
};
|
|
3364
3317
|
};
|
|
3365
3318
|
};
|
|
@@ -3367,7 +3320,7 @@ export declare const schemaDict: {
|
|
|
3367
3320
|
};
|
|
3368
3321
|
};
|
|
3369
3322
|
};
|
|
3370
|
-
|
|
3323
|
+
AppBskyFeedLike: {
|
|
3371
3324
|
lexicon: number;
|
|
3372
3325
|
id: string;
|
|
3373
3326
|
defs: {
|
|
@@ -3382,39 +3335,16 @@ export declare const schemaDict: {
|
|
|
3382
3335
|
type: string;
|
|
3383
3336
|
ref: string;
|
|
3384
3337
|
};
|
|
3385
|
-
direction: {
|
|
3386
|
-
type: string;
|
|
3387
|
-
enum: string[];
|
|
3388
|
-
};
|
|
3389
3338
|
createdAt: {
|
|
3390
3339
|
type: string;
|
|
3340
|
+
format: string;
|
|
3391
3341
|
};
|
|
3392
3342
|
};
|
|
3393
3343
|
};
|
|
3394
3344
|
};
|
|
3395
3345
|
};
|
|
3396
3346
|
};
|
|
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: {
|
|
3347
|
+
AppBskyFeedPost: {
|
|
3418
3348
|
lexicon: number;
|
|
3419
3349
|
id: string;
|
|
3420
3350
|
defs: {
|
|
@@ -3425,22 +3355,91 @@ export declare const schemaDict: {
|
|
|
3425
3355
|
type: string;
|
|
3426
3356
|
required: string[];
|
|
3427
3357
|
properties: {
|
|
3428
|
-
|
|
3358
|
+
text: {
|
|
3429
3359
|
type: string;
|
|
3360
|
+
maxLength: number;
|
|
3361
|
+
maxGraphemes: number;
|
|
3430
3362
|
};
|
|
3431
|
-
|
|
3363
|
+
entities: {
|
|
3364
|
+
type: string;
|
|
3365
|
+
description: string;
|
|
3366
|
+
items: {
|
|
3367
|
+
type: string;
|
|
3368
|
+
ref: string;
|
|
3369
|
+
};
|
|
3370
|
+
};
|
|
3371
|
+
facets: {
|
|
3372
|
+
type: string;
|
|
3373
|
+
items: {
|
|
3374
|
+
type: string;
|
|
3375
|
+
ref: string;
|
|
3376
|
+
};
|
|
3377
|
+
};
|
|
3378
|
+
reply: {
|
|
3432
3379
|
type: string;
|
|
3433
3380
|
ref: string;
|
|
3434
3381
|
};
|
|
3382
|
+
embed: {
|
|
3383
|
+
type: string;
|
|
3384
|
+
refs: string[];
|
|
3385
|
+
};
|
|
3435
3386
|
createdAt: {
|
|
3436
3387
|
type: string;
|
|
3388
|
+
format: string;
|
|
3437
3389
|
};
|
|
3438
3390
|
};
|
|
3439
3391
|
};
|
|
3440
3392
|
};
|
|
3393
|
+
replyRef: {
|
|
3394
|
+
type: string;
|
|
3395
|
+
required: string[];
|
|
3396
|
+
properties: {
|
|
3397
|
+
root: {
|
|
3398
|
+
type: string;
|
|
3399
|
+
ref: string;
|
|
3400
|
+
};
|
|
3401
|
+
parent: {
|
|
3402
|
+
type: string;
|
|
3403
|
+
ref: string;
|
|
3404
|
+
};
|
|
3405
|
+
};
|
|
3406
|
+
};
|
|
3407
|
+
entity: {
|
|
3408
|
+
type: string;
|
|
3409
|
+
description: string;
|
|
3410
|
+
required: string[];
|
|
3411
|
+
properties: {
|
|
3412
|
+
index: {
|
|
3413
|
+
type: string;
|
|
3414
|
+
ref: string;
|
|
3415
|
+
};
|
|
3416
|
+
type: {
|
|
3417
|
+
type: string;
|
|
3418
|
+
description: string;
|
|
3419
|
+
};
|
|
3420
|
+
value: {
|
|
3421
|
+
type: string;
|
|
3422
|
+
};
|
|
3423
|
+
};
|
|
3424
|
+
};
|
|
3425
|
+
textSlice: {
|
|
3426
|
+
type: string;
|
|
3427
|
+
description: string;
|
|
3428
|
+
required: string[];
|
|
3429
|
+
properties: {
|
|
3430
|
+
start: {
|
|
3431
|
+
type: string;
|
|
3432
|
+
minimum: number;
|
|
3433
|
+
};
|
|
3434
|
+
end: {
|
|
3435
|
+
type: string;
|
|
3436
|
+
minimum: number;
|
|
3437
|
+
};
|
|
3438
|
+
};
|
|
3439
|
+
};
|
|
3441
3440
|
};
|
|
3442
3441
|
};
|
|
3443
|
-
|
|
3442
|
+
AppBskyFeedRepost: {
|
|
3444
3443
|
lexicon: number;
|
|
3445
3444
|
id: string;
|
|
3446
3445
|
defs: {
|
|
@@ -3451,16 +3450,13 @@ export declare const schemaDict: {
|
|
|
3451
3450
|
type: string;
|
|
3452
3451
|
required: string[];
|
|
3453
3452
|
properties: {
|
|
3454
|
-
|
|
3455
|
-
type: string;
|
|
3456
|
-
ref: string;
|
|
3457
|
-
};
|
|
3458
|
-
assertion: {
|
|
3453
|
+
subject: {
|
|
3459
3454
|
type: string;
|
|
3460
3455
|
ref: string;
|
|
3461
3456
|
};
|
|
3462
3457
|
createdAt: {
|
|
3463
3458
|
type: string;
|
|
3459
|
+
format: string;
|
|
3464
3460
|
};
|
|
3465
3461
|
};
|
|
3466
3462
|
};
|
|
@@ -3481,10 +3477,11 @@ export declare const schemaDict: {
|
|
|
3481
3477
|
properties: {
|
|
3482
3478
|
subject: {
|
|
3483
3479
|
type: string;
|
|
3484
|
-
|
|
3480
|
+
format: string;
|
|
3485
3481
|
};
|
|
3486
3482
|
createdAt: {
|
|
3487
3483
|
type: string;
|
|
3484
|
+
format: string;
|
|
3488
3485
|
};
|
|
3489
3486
|
};
|
|
3490
3487
|
};
|
|
@@ -3502,8 +3499,9 @@ export declare const schemaDict: {
|
|
|
3502
3499
|
type: string;
|
|
3503
3500
|
required: string[];
|
|
3504
3501
|
properties: {
|
|
3505
|
-
|
|
3502
|
+
actor: {
|
|
3506
3503
|
type: string;
|
|
3504
|
+
format: string;
|
|
3507
3505
|
};
|
|
3508
3506
|
limit: {
|
|
3509
3507
|
type: string;
|
|
@@ -3511,7 +3509,7 @@ export declare const schemaDict: {
|
|
|
3511
3509
|
maximum: number;
|
|
3512
3510
|
default: number;
|
|
3513
3511
|
};
|
|
3514
|
-
|
|
3512
|
+
cursor: {
|
|
3515
3513
|
type: string;
|
|
3516
3514
|
};
|
|
3517
3515
|
};
|
|
@@ -3553,8 +3551,9 @@ export declare const schemaDict: {
|
|
|
3553
3551
|
type: string;
|
|
3554
3552
|
required: string[];
|
|
3555
3553
|
properties: {
|
|
3556
|
-
|
|
3554
|
+
actor: {
|
|
3557
3555
|
type: string;
|
|
3556
|
+
format: string;
|
|
3558
3557
|
};
|
|
3559
3558
|
limit: {
|
|
3560
3559
|
type: string;
|
|
@@ -3562,7 +3561,7 @@ export declare const schemaDict: {
|
|
|
3562
3561
|
maximum: number;
|
|
3563
3562
|
default: number;
|
|
3564
3563
|
};
|
|
3565
|
-
|
|
3564
|
+
cursor: {
|
|
3566
3565
|
type: string;
|
|
3567
3566
|
};
|
|
3568
3567
|
};
|
|
@@ -3609,7 +3608,7 @@ export declare const schemaDict: {
|
|
|
3609
3608
|
maximum: number;
|
|
3610
3609
|
default: number;
|
|
3611
3610
|
};
|
|
3612
|
-
|
|
3611
|
+
cursor: {
|
|
3613
3612
|
type: string;
|
|
3614
3613
|
};
|
|
3615
3614
|
};
|
|
@@ -3636,7 +3635,7 @@ export declare const schemaDict: {
|
|
|
3636
3635
|
};
|
|
3637
3636
|
};
|
|
3638
3637
|
};
|
|
3639
|
-
|
|
3638
|
+
AppBskyGraphMuteActor: {
|
|
3640
3639
|
lexicon: number;
|
|
3641
3640
|
id: string;
|
|
3642
3641
|
defs: {
|
|
@@ -3649,8 +3648,9 @@ export declare const schemaDict: {
|
|
|
3649
3648
|
type: string;
|
|
3650
3649
|
required: string[];
|
|
3651
3650
|
properties: {
|
|
3652
|
-
|
|
3651
|
+
actor: {
|
|
3653
3652
|
type: string;
|
|
3653
|
+
format: string;
|
|
3654
3654
|
};
|
|
3655
3655
|
};
|
|
3656
3656
|
};
|
|
@@ -3658,7 +3658,7 @@ export declare const schemaDict: {
|
|
|
3658
3658
|
};
|
|
3659
3659
|
};
|
|
3660
3660
|
};
|
|
3661
|
-
|
|
3661
|
+
AppBskyGraphUnmuteActor: {
|
|
3662
3662
|
lexicon: number;
|
|
3663
3663
|
id: string;
|
|
3664
3664
|
defs: {
|
|
@@ -3671,8 +3671,9 @@ export declare const schemaDict: {
|
|
|
3671
3671
|
type: string;
|
|
3672
3672
|
required: string[];
|
|
3673
3673
|
properties: {
|
|
3674
|
-
|
|
3674
|
+
actor: {
|
|
3675
3675
|
type: string;
|
|
3676
|
+
format: string;
|
|
3676
3677
|
};
|
|
3677
3678
|
};
|
|
3678
3679
|
};
|
|
@@ -3680,7 +3681,7 @@ export declare const schemaDict: {
|
|
|
3680
3681
|
};
|
|
3681
3682
|
};
|
|
3682
3683
|
};
|
|
3683
|
-
|
|
3684
|
+
AppBskyNotificationGetUnreadCount: {
|
|
3684
3685
|
lexicon: number;
|
|
3685
3686
|
id: string;
|
|
3686
3687
|
defs: {
|
|
@@ -3701,7 +3702,7 @@ export declare const schemaDict: {
|
|
|
3701
3702
|
};
|
|
3702
3703
|
};
|
|
3703
3704
|
};
|
|
3704
|
-
|
|
3705
|
+
AppBskyNotificationListNotifications: {
|
|
3705
3706
|
lexicon: number;
|
|
3706
3707
|
id: string;
|
|
3707
3708
|
defs: {
|
|
@@ -3716,7 +3717,7 @@ export declare const schemaDict: {
|
|
|
3716
3717
|
maximum: number;
|
|
3717
3718
|
default: number;
|
|
3718
3719
|
};
|
|
3719
|
-
|
|
3720
|
+
cursor: {
|
|
3720
3721
|
type: string;
|
|
3721
3722
|
};
|
|
3722
3723
|
};
|
|
@@ -3747,9 +3748,11 @@ export declare const schemaDict: {
|
|
|
3747
3748
|
properties: {
|
|
3748
3749
|
uri: {
|
|
3749
3750
|
type: string;
|
|
3751
|
+
format: string;
|
|
3750
3752
|
};
|
|
3751
3753
|
cid: {
|
|
3752
3754
|
type: string;
|
|
3755
|
+
format: string;
|
|
3753
3756
|
};
|
|
3754
3757
|
author: {
|
|
3755
3758
|
type: string;
|
|
@@ -3762,6 +3765,7 @@ export declare const schemaDict: {
|
|
|
3762
3765
|
};
|
|
3763
3766
|
reasonSubject: {
|
|
3764
3767
|
type: string;
|
|
3768
|
+
format: string;
|
|
3765
3769
|
};
|
|
3766
3770
|
record: {
|
|
3767
3771
|
type: string;
|
|
@@ -3771,6 +3775,7 @@ export declare const schemaDict: {
|
|
|
3771
3775
|
};
|
|
3772
3776
|
indexedAt: {
|
|
3773
3777
|
type: string;
|
|
3778
|
+
format: string;
|
|
3774
3779
|
};
|
|
3775
3780
|
};
|
|
3776
3781
|
};
|
|
@@ -3791,6 +3796,7 @@ export declare const schemaDict: {
|
|
|
3791
3796
|
properties: {
|
|
3792
3797
|
seenAt: {
|
|
3793
3798
|
type: string;
|
|
3799
|
+
format: string;
|
|
3794
3800
|
};
|
|
3795
3801
|
};
|
|
3796
3802
|
};
|
|
@@ -3798,51 +3804,103 @@ export declare const schemaDict: {
|
|
|
3798
3804
|
};
|
|
3799
3805
|
};
|
|
3800
3806
|
};
|
|
3801
|
-
|
|
3807
|
+
AppBskyRichtextFacet: {
|
|
3802
3808
|
lexicon: number;
|
|
3803
3809
|
id: string;
|
|
3804
3810
|
defs: {
|
|
3805
3811
|
main: {
|
|
3812
|
+
type: string;
|
|
3813
|
+
required: string[];
|
|
3814
|
+
properties: {
|
|
3815
|
+
index: {
|
|
3816
|
+
type: string;
|
|
3817
|
+
ref: string;
|
|
3818
|
+
};
|
|
3819
|
+
features: {
|
|
3820
|
+
type: string;
|
|
3821
|
+
items: {
|
|
3822
|
+
type: string;
|
|
3823
|
+
refs: string[];
|
|
3824
|
+
};
|
|
3825
|
+
};
|
|
3826
|
+
};
|
|
3827
|
+
};
|
|
3828
|
+
mention: {
|
|
3806
3829
|
type: string;
|
|
3807
3830
|
description: string;
|
|
3831
|
+
required: string[];
|
|
3832
|
+
properties: {
|
|
3833
|
+
did: {
|
|
3834
|
+
type: string;
|
|
3835
|
+
format: string;
|
|
3836
|
+
};
|
|
3837
|
+
};
|
|
3808
3838
|
};
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
AppBskySystemDeclRef: {
|
|
3812
|
-
lexicon: number;
|
|
3813
|
-
id: string;
|
|
3814
|
-
defs: {
|
|
3815
|
-
main: {
|
|
3839
|
+
link: {
|
|
3840
|
+
type: string;
|
|
3816
3841
|
description: string;
|
|
3842
|
+
required: string[];
|
|
3843
|
+
properties: {
|
|
3844
|
+
uri: {
|
|
3845
|
+
type: string;
|
|
3846
|
+
format: string;
|
|
3847
|
+
};
|
|
3848
|
+
};
|
|
3849
|
+
};
|
|
3850
|
+
byteSlice: {
|
|
3817
3851
|
type: string;
|
|
3852
|
+
description: string;
|
|
3818
3853
|
required: string[];
|
|
3819
3854
|
properties: {
|
|
3820
|
-
|
|
3855
|
+
byteStart: {
|
|
3821
3856
|
type: string;
|
|
3857
|
+
minimum: number;
|
|
3822
3858
|
};
|
|
3823
|
-
|
|
3859
|
+
byteEnd: {
|
|
3824
3860
|
type: string;
|
|
3825
|
-
|
|
3861
|
+
minimum: number;
|
|
3826
3862
|
};
|
|
3827
3863
|
};
|
|
3828
3864
|
};
|
|
3829
3865
|
};
|
|
3830
3866
|
};
|
|
3831
|
-
|
|
3867
|
+
AppBskyUnspeccedGetPopular: {
|
|
3832
3868
|
lexicon: number;
|
|
3833
3869
|
id: string;
|
|
3834
3870
|
defs: {
|
|
3835
3871
|
main: {
|
|
3836
|
-
description: string;
|
|
3837
3872
|
type: string;
|
|
3838
|
-
|
|
3839
|
-
|
|
3873
|
+
description: string;
|
|
3874
|
+
parameters: {
|
|
3840
3875
|
type: string;
|
|
3841
|
-
required: string[];
|
|
3842
3876
|
properties: {
|
|
3843
|
-
|
|
3877
|
+
limit: {
|
|
3878
|
+
type: string;
|
|
3879
|
+
minimum: number;
|
|
3880
|
+
maximum: number;
|
|
3881
|
+
default: number;
|
|
3882
|
+
};
|
|
3883
|
+
cursor: {
|
|
3844
3884
|
type: string;
|
|
3845
|
-
|
|
3885
|
+
};
|
|
3886
|
+
};
|
|
3887
|
+
};
|
|
3888
|
+
output: {
|
|
3889
|
+
encoding: string;
|
|
3890
|
+
schema: {
|
|
3891
|
+
type: string;
|
|
3892
|
+
required: string[];
|
|
3893
|
+
properties: {
|
|
3894
|
+
cursor: {
|
|
3895
|
+
type: string;
|
|
3896
|
+
};
|
|
3897
|
+
feed: {
|
|
3898
|
+
type: string;
|
|
3899
|
+
items: {
|
|
3900
|
+
type: string;
|
|
3901
|
+
ref: string;
|
|
3902
|
+
};
|
|
3903
|
+
};
|
|
3846
3904
|
};
|
|
3847
3905
|
};
|
|
3848
3906
|
};
|
|
@@ -3853,93 +3911,81 @@ export declare const schemaDict: {
|
|
|
3853
3911
|
export declare const schemas: LexiconDoc[];
|
|
3854
3912
|
export declare const lexicons: Lexicons;
|
|
3855
3913
|
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;
|
|
3914
|
+
ComAtprotoAdminDefs: string;
|
|
3864
3915
|
ComAtprotoAdminGetModerationAction: string;
|
|
3865
3916
|
ComAtprotoAdminGetModerationActions: string;
|
|
3866
3917
|
ComAtprotoAdminGetModerationReport: string;
|
|
3867
3918
|
ComAtprotoAdminGetModerationReports: string;
|
|
3868
3919
|
ComAtprotoAdminGetRecord: string;
|
|
3869
3920
|
ComAtprotoAdminGetRepo: string;
|
|
3870
|
-
ComAtprotoAdminModerationAction: string;
|
|
3871
|
-
ComAtprotoAdminModerationReport: string;
|
|
3872
|
-
ComAtprotoAdminRecord: string;
|
|
3873
|
-
ComAtprotoAdminRepo: string;
|
|
3874
3921
|
ComAtprotoAdminResolveModerationReports: string;
|
|
3875
3922
|
ComAtprotoAdminReverseModerationAction: string;
|
|
3876
3923
|
ComAtprotoAdminSearchRepos: string;
|
|
3877
3924
|
ComAtprotoAdminTakeModerationAction: string;
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3925
|
+
ComAtprotoIdentityResolveHandle: string;
|
|
3926
|
+
ComAtprotoIdentityUpdateHandle: string;
|
|
3927
|
+
ComAtprotoModerationCreateReport: string;
|
|
3928
|
+
ComAtprotoModerationDefs: string;
|
|
3929
|
+
ComAtprotoRepoApplyWrites: string;
|
|
3882
3930
|
ComAtprotoRepoCreateRecord: string;
|
|
3883
3931
|
ComAtprotoRepoDeleteRecord: string;
|
|
3884
|
-
|
|
3932
|
+
ComAtprotoRepoDescribeRepo: string;
|
|
3885
3933
|
ComAtprotoRepoGetRecord: string;
|
|
3886
3934
|
ComAtprotoRepoListRecords: string;
|
|
3887
3935
|
ComAtprotoRepoPutRecord: string;
|
|
3888
|
-
ComAtprotoRepoRecordRef: string;
|
|
3889
|
-
ComAtprotoRepoRepoRef: string;
|
|
3890
3936
|
ComAtprotoRepoStrongRef: string;
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3937
|
+
ComAtprotoRepoUploadBlob: string;
|
|
3938
|
+
ComAtprotoServerCreateAccount: string;
|
|
3939
|
+
ComAtprotoServerCreateInviteCode: string;
|
|
3940
|
+
ComAtprotoServerCreateSession: string;
|
|
3941
|
+
ComAtprotoServerDeleteAccount: string;
|
|
3942
|
+
ComAtprotoServerDeleteSession: string;
|
|
3943
|
+
ComAtprotoServerDescribeServer: string;
|
|
3944
|
+
ComAtprotoServerGetSession: string;
|
|
3945
|
+
ComAtprotoServerRefreshSession: string;
|
|
3946
|
+
ComAtprotoServerRequestAccountDelete: string;
|
|
3947
|
+
ComAtprotoServerRequestPasswordReset: string;
|
|
3948
|
+
ComAtprotoServerResetPassword: string;
|
|
3949
|
+
ComAtprotoSyncGetBlob: string;
|
|
3899
3950
|
ComAtprotoSyncGetBlocks: string;
|
|
3900
3951
|
ComAtprotoSyncGetCheckout: string;
|
|
3901
3952
|
ComAtprotoSyncGetCommitPath: string;
|
|
3902
3953
|
ComAtprotoSyncGetHead: string;
|
|
3903
3954
|
ComAtprotoSyncGetRecord: string;
|
|
3904
3955
|
ComAtprotoSyncGetRepo: string;
|
|
3956
|
+
ComAtprotoSyncListBlobs: string;
|
|
3905
3957
|
ComAtprotoSyncNotifyOfUpdate: string;
|
|
3906
3958
|
ComAtprotoSyncRequestCrawl: string;
|
|
3907
|
-
|
|
3959
|
+
ComAtprotoSyncSubscribeRepos: string;
|
|
3960
|
+
AppBskyActorDefs: string;
|
|
3908
3961
|
AppBskyActorGetProfile: string;
|
|
3909
3962
|
AppBskyActorGetProfiles: string;
|
|
3910
3963
|
AppBskyActorGetSuggestions: string;
|
|
3911
3964
|
AppBskyActorProfile: string;
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
AppBskyActorSearchTypeahead: string;
|
|
3915
|
-
AppBskyActorUpdateProfile: string;
|
|
3965
|
+
AppBskyActorSearchActors: string;
|
|
3966
|
+
AppBskyActorSearchActorsTypeahead: string;
|
|
3916
3967
|
AppBskyEmbedExternal: string;
|
|
3917
3968
|
AppBskyEmbedImages: string;
|
|
3918
3969
|
AppBskyEmbedRecord: string;
|
|
3919
|
-
|
|
3970
|
+
AppBskyEmbedRecordWithMedia: string;
|
|
3971
|
+
AppBskyFeedDefs: string;
|
|
3920
3972
|
AppBskyFeedGetAuthorFeed: string;
|
|
3973
|
+
AppBskyFeedGetLikes: string;
|
|
3921
3974
|
AppBskyFeedGetPostThread: string;
|
|
3922
3975
|
AppBskyFeedGetRepostedBy: string;
|
|
3923
3976
|
AppBskyFeedGetTimeline: string;
|
|
3924
|
-
|
|
3977
|
+
AppBskyFeedLike: string;
|
|
3925
3978
|
AppBskyFeedPost: string;
|
|
3926
3979
|
AppBskyFeedRepost: string;
|
|
3927
|
-
AppBskyFeedSetVote: string;
|
|
3928
|
-
AppBskyFeedVote: string;
|
|
3929
|
-
AppBskyGraphAssertCreator: string;
|
|
3930
|
-
AppBskyGraphAssertMember: string;
|
|
3931
|
-
AppBskyGraphAssertion: string;
|
|
3932
|
-
AppBskyGraphConfirmation: string;
|
|
3933
3980
|
AppBskyGraphFollow: string;
|
|
3934
3981
|
AppBskyGraphGetFollowers: string;
|
|
3935
3982
|
AppBskyGraphGetFollows: string;
|
|
3936
3983
|
AppBskyGraphGetMutes: string;
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3984
|
+
AppBskyGraphMuteActor: string;
|
|
3985
|
+
AppBskyGraphUnmuteActor: string;
|
|
3986
|
+
AppBskyNotificationGetUnreadCount: string;
|
|
3987
|
+
AppBskyNotificationListNotifications: string;
|
|
3941
3988
|
AppBskyNotificationUpdateSeen: string;
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
AppBskySystemDeclaration: string;
|
|
3989
|
+
AppBskyRichtextFacet: string;
|
|
3990
|
+
AppBskyUnspeccedGetPopular: string;
|
|
3945
3991
|
};
|