@atproto/pds 0.4.110 → 0.4.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/lexicon/index.d.ts +6 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +12 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +534 -4
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +287 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/addReaction.d.ts +43 -0
- package/dist/lexicon/types/chat/bsky/convo/addReaction.d.ts.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/addReaction.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/addReaction.js.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +45 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.js +45 -0
- package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/getLog.d.ts +1 -1
- package/dist/lexicon/types/chat/bsky/convo/getLog.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.d.ts +43 -0
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.d.ts.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.js.map +1 -0
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts +14 -0
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/defs.js +9 -0
- package/dist/lexicon/types/tools/ozone/moderation/defs.js.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.d.ts +36 -0
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.d.ts.map +1 -0
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.js +7 -0
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.js.map +1 -0
- package/package.json +4 -4
- package/src/lexicon/index.ts +36 -0
- package/src/lexicon/lexicons.ts +295 -0
- package/src/lexicon/types/chat/bsky/convo/addReaction.ts +63 -0
- package/src/lexicon/types/chat/bsky/convo/defs.ts +86 -0
- package/src/lexicon/types/chat/bsky/convo/getLog.ts +5 -0
- package/src/lexicon/types/chat/bsky/convo/removeReaction.ts +60 -0
- package/src/lexicon/types/tools/ozone/moderation/defs.ts +21 -0
- package/src/lexicon/types/tools/ozone/moderation/getSubjects.ts +54 -0
- package/tsconfig.build.tsbuildinfo +1 -1
@@ -9718,6 +9718,61 @@ export declare const schemaDict: {
|
|
9718
9718
|
};
|
9719
9719
|
};
|
9720
9720
|
};
|
9721
|
+
readonly ChatBskyConvoAddReaction: {
|
9722
|
+
readonly lexicon: 1;
|
9723
|
+
readonly id: "chat.bsky.convo.addReaction";
|
9724
|
+
readonly defs: {
|
9725
|
+
readonly main: {
|
9726
|
+
readonly type: "procedure";
|
9727
|
+
readonly description: "Adds an emoji reaction to a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in a single reaction.";
|
9728
|
+
readonly input: {
|
9729
|
+
readonly encoding: "application/json";
|
9730
|
+
readonly schema: {
|
9731
|
+
readonly type: "object";
|
9732
|
+
readonly required: ["convoId", "messageId", "value"];
|
9733
|
+
readonly properties: {
|
9734
|
+
readonly convoId: {
|
9735
|
+
readonly type: "string";
|
9736
|
+
};
|
9737
|
+
readonly messageId: {
|
9738
|
+
readonly type: "string";
|
9739
|
+
};
|
9740
|
+
readonly value: {
|
9741
|
+
readonly type: "string";
|
9742
|
+
readonly minLength: 1;
|
9743
|
+
readonly maxLength: 32;
|
9744
|
+
readonly minGraphemes: 1;
|
9745
|
+
readonly maxGraphemes: 1;
|
9746
|
+
};
|
9747
|
+
};
|
9748
|
+
};
|
9749
|
+
};
|
9750
|
+
readonly output: {
|
9751
|
+
readonly encoding: "application/json";
|
9752
|
+
readonly schema: {
|
9753
|
+
readonly type: "object";
|
9754
|
+
readonly required: ["message"];
|
9755
|
+
readonly properties: {
|
9756
|
+
readonly message: {
|
9757
|
+
readonly type: "ref";
|
9758
|
+
readonly ref: "lex:chat.bsky.convo.defs#messageView";
|
9759
|
+
};
|
9760
|
+
};
|
9761
|
+
};
|
9762
|
+
};
|
9763
|
+
readonly errors: [{
|
9764
|
+
readonly name: "ReactionMessageDeleted";
|
9765
|
+
readonly description: "Indicates that the message has been deleted and reactions can no longer be added/removed.";
|
9766
|
+
}, {
|
9767
|
+
readonly name: "ReactionLimitReached";
|
9768
|
+
readonly description: "Indicates that the message has the maximum number of reactions allowed for a single user, and the requested reaction wasn't yet present. If it was already present, the request will not fail since it is idempotent.";
|
9769
|
+
}, {
|
9770
|
+
readonly name: "ReactionInvalidValue";
|
9771
|
+
readonly description: "Indicates the value for the reaction is not acceptable. In general, this means it is not an emoji.";
|
9772
|
+
}];
|
9773
|
+
};
|
9774
|
+
};
|
9775
|
+
};
|
9721
9776
|
readonly ChatBskyConvoDefs: {
|
9722
9777
|
readonly lexicon: 1;
|
9723
9778
|
readonly id: "chat.bsky.convo.defs";
|
@@ -9788,6 +9843,13 @@ export declare const schemaDict: {
|
|
9788
9843
|
readonly type: "union";
|
9789
9844
|
readonly refs: ["lex:app.bsky.embed.record#view"];
|
9790
9845
|
};
|
9846
|
+
readonly reactions: {
|
9847
|
+
readonly type: "array";
|
9848
|
+
readonly items: {
|
9849
|
+
readonly type: "ref";
|
9850
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
9851
|
+
};
|
9852
|
+
};
|
9791
9853
|
readonly sender: {
|
9792
9854
|
readonly type: "ref";
|
9793
9855
|
readonly ref: "lex:chat.bsky.convo.defs#messageViewSender";
|
@@ -9828,6 +9890,47 @@ export declare const schemaDict: {
|
|
9828
9890
|
};
|
9829
9891
|
};
|
9830
9892
|
};
|
9893
|
+
readonly reactionView: {
|
9894
|
+
readonly type: "object";
|
9895
|
+
readonly required: ["value", "sender", "createdAt"];
|
9896
|
+
readonly properties: {
|
9897
|
+
readonly value: {
|
9898
|
+
readonly type: "string";
|
9899
|
+
};
|
9900
|
+
readonly sender: {
|
9901
|
+
readonly type: "ref";
|
9902
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionViewSender";
|
9903
|
+
};
|
9904
|
+
readonly createdAt: {
|
9905
|
+
readonly type: "string";
|
9906
|
+
readonly format: "datetime";
|
9907
|
+
};
|
9908
|
+
};
|
9909
|
+
};
|
9910
|
+
readonly reactionViewSender: {
|
9911
|
+
readonly type: "object";
|
9912
|
+
readonly required: ["did"];
|
9913
|
+
readonly properties: {
|
9914
|
+
readonly did: {
|
9915
|
+
readonly type: "string";
|
9916
|
+
readonly format: "did";
|
9917
|
+
};
|
9918
|
+
};
|
9919
|
+
};
|
9920
|
+
readonly messageAndReactionView: {
|
9921
|
+
readonly type: "object";
|
9922
|
+
readonly required: ["message", "reaction"];
|
9923
|
+
readonly properties: {
|
9924
|
+
readonly message: {
|
9925
|
+
readonly type: "ref";
|
9926
|
+
readonly ref: "lex:chat.bsky.convo.defs#messageView";
|
9927
|
+
};
|
9928
|
+
readonly reaction: {
|
9929
|
+
readonly type: "ref";
|
9930
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
9931
|
+
};
|
9932
|
+
};
|
9933
|
+
};
|
9831
9934
|
readonly convoView: {
|
9832
9935
|
readonly type: "object";
|
9833
9936
|
readonly required: ["id", "rev", "members", "muted", "unreadCount"];
|
@@ -9847,7 +9950,7 @@ export declare const schemaDict: {
|
|
9847
9950
|
};
|
9848
9951
|
readonly lastMessage: {
|
9849
9952
|
readonly type: "union";
|
9850
|
-
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
9953
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageAndReactionView"];
|
9851
9954
|
};
|
9852
9955
|
readonly muted: {
|
9853
9956
|
readonly type: "boolean";
|
@@ -9969,6 +10072,46 @@ export declare const schemaDict: {
|
|
9969
10072
|
};
|
9970
10073
|
};
|
9971
10074
|
};
|
10075
|
+
readonly logAddReaction: {
|
10076
|
+
readonly type: "object";
|
10077
|
+
readonly required: ["rev", "convoId", "message", "reaction"];
|
10078
|
+
readonly properties: {
|
10079
|
+
readonly rev: {
|
10080
|
+
readonly type: "string";
|
10081
|
+
};
|
10082
|
+
readonly convoId: {
|
10083
|
+
readonly type: "string";
|
10084
|
+
};
|
10085
|
+
readonly message: {
|
10086
|
+
readonly type: "union";
|
10087
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
10088
|
+
};
|
10089
|
+
readonly reaction: {
|
10090
|
+
readonly type: "ref";
|
10091
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
10092
|
+
};
|
10093
|
+
};
|
10094
|
+
};
|
10095
|
+
readonly logRemoveReaction: {
|
10096
|
+
readonly type: "object";
|
10097
|
+
readonly required: ["rev", "convoId", "message", "reaction"];
|
10098
|
+
readonly properties: {
|
10099
|
+
readonly rev: {
|
10100
|
+
readonly type: "string";
|
10101
|
+
};
|
10102
|
+
readonly convoId: {
|
10103
|
+
readonly type: "string";
|
10104
|
+
};
|
10105
|
+
readonly message: {
|
10106
|
+
readonly type: "union";
|
10107
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
10108
|
+
};
|
10109
|
+
readonly reaction: {
|
10110
|
+
readonly type: "ref";
|
10111
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
10112
|
+
};
|
10113
|
+
};
|
10114
|
+
};
|
9972
10115
|
};
|
9973
10116
|
};
|
9974
10117
|
readonly ChatBskyConvoDeleteMessageForSelf: {
|
@@ -10139,7 +10282,7 @@ export declare const schemaDict: {
|
|
10139
10282
|
readonly type: "array";
|
10140
10283
|
readonly items: {
|
10141
10284
|
readonly type: "union";
|
10142
|
-
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logAcceptConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage"];
|
10285
|
+
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logAcceptConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logMuteConvo", "lex:chat.bsky.convo.defs#logUnmuteConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage", "lex:chat.bsky.convo.defs#logReadMessage", "lex:chat.bsky.convo.defs#logAddReaction", "lex:chat.bsky.convo.defs#logRemoveReaction"];
|
10143
10286
|
};
|
10144
10287
|
};
|
10145
10288
|
};
|
@@ -10314,6 +10457,58 @@ export declare const schemaDict: {
|
|
10314
10457
|
};
|
10315
10458
|
};
|
10316
10459
|
};
|
10460
|
+
readonly ChatBskyConvoRemoveReaction: {
|
10461
|
+
readonly lexicon: 1;
|
10462
|
+
readonly id: "chat.bsky.convo.removeReaction";
|
10463
|
+
readonly defs: {
|
10464
|
+
readonly main: {
|
10465
|
+
readonly type: "procedure";
|
10466
|
+
readonly description: "Removes an emoji reaction from a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in that reaction not being present, even if it already wasn't.";
|
10467
|
+
readonly input: {
|
10468
|
+
readonly encoding: "application/json";
|
10469
|
+
readonly schema: {
|
10470
|
+
readonly type: "object";
|
10471
|
+
readonly required: ["convoId", "messageId", "value"];
|
10472
|
+
readonly properties: {
|
10473
|
+
readonly convoId: {
|
10474
|
+
readonly type: "string";
|
10475
|
+
};
|
10476
|
+
readonly messageId: {
|
10477
|
+
readonly type: "string";
|
10478
|
+
};
|
10479
|
+
readonly value: {
|
10480
|
+
readonly type: "string";
|
10481
|
+
readonly minLength: 1;
|
10482
|
+
readonly maxLength: 32;
|
10483
|
+
readonly minGraphemes: 1;
|
10484
|
+
readonly maxGraphemes: 1;
|
10485
|
+
};
|
10486
|
+
};
|
10487
|
+
};
|
10488
|
+
};
|
10489
|
+
readonly output: {
|
10490
|
+
readonly encoding: "application/json";
|
10491
|
+
readonly schema: {
|
10492
|
+
readonly type: "object";
|
10493
|
+
readonly required: ["message"];
|
10494
|
+
readonly properties: {
|
10495
|
+
readonly message: {
|
10496
|
+
readonly type: "ref";
|
10497
|
+
readonly ref: "lex:chat.bsky.convo.defs#messageView";
|
10498
|
+
};
|
10499
|
+
};
|
10500
|
+
};
|
10501
|
+
};
|
10502
|
+
readonly errors: [{
|
10503
|
+
readonly name: "ReactionMessageDeleted";
|
10504
|
+
readonly description: "Indicates that the message has been deleted and reactions can no longer be added/removed.";
|
10505
|
+
}, {
|
10506
|
+
readonly name: "ReactionInvalidValue";
|
10507
|
+
readonly description: "Indicates the value for the reaction is not acceptable. In general, this means it is not an emoji.";
|
10508
|
+
}];
|
10509
|
+
};
|
10510
|
+
};
|
10511
|
+
};
|
10317
10512
|
readonly ChatBskyConvoSendMessage: {
|
10318
10513
|
readonly lexicon: 1;
|
10319
10514
|
readonly id: "chat.bsky.convo.sendMessage";
|
@@ -11019,6 +11214,36 @@ export declare const schemaDict: {
|
|
11019
11214
|
};
|
11020
11215
|
};
|
11021
11216
|
};
|
11217
|
+
readonly subjectView: {
|
11218
|
+
readonly description: "Detailed view of a subject. For record subjects, the author's repo and profile will be returned.";
|
11219
|
+
readonly type: "object";
|
11220
|
+
readonly required: ["type", "subject"];
|
11221
|
+
readonly properties: {
|
11222
|
+
readonly type: {
|
11223
|
+
readonly type: "ref";
|
11224
|
+
readonly ref: "lex:com.atproto.moderation.defs#subjectType";
|
11225
|
+
};
|
11226
|
+
readonly subject: {
|
11227
|
+
readonly type: "string";
|
11228
|
+
};
|
11229
|
+
readonly status: {
|
11230
|
+
readonly type: "ref";
|
11231
|
+
readonly ref: "lex:tools.ozone.moderation.defs#subjectStatusView";
|
11232
|
+
};
|
11233
|
+
readonly repo: {
|
11234
|
+
readonly type: "ref";
|
11235
|
+
readonly ref: "lex:tools.ozone.moderation.defs#repoViewDetail";
|
11236
|
+
};
|
11237
|
+
readonly profile: {
|
11238
|
+
readonly type: "union";
|
11239
|
+
readonly refs: [];
|
11240
|
+
};
|
11241
|
+
readonly record: {
|
11242
|
+
readonly type: "ref";
|
11243
|
+
readonly ref: "lex:tools.ozone.moderation.defs#recordViewDetail";
|
11244
|
+
};
|
11245
|
+
};
|
11246
|
+
};
|
11022
11247
|
readonly accountStats: {
|
11023
11248
|
readonly description: "Statistics about a particular account subject";
|
11024
11249
|
readonly type: "object";
|
@@ -12057,6 +12282,46 @@ export declare const schemaDict: {
|
|
12057
12282
|
};
|
12058
12283
|
};
|
12059
12284
|
};
|
12285
|
+
readonly ToolsOzoneModerationGetSubjects: {
|
12286
|
+
readonly lexicon: 1;
|
12287
|
+
readonly id: "tools.ozone.moderation.getSubjects";
|
12288
|
+
readonly defs: {
|
12289
|
+
readonly main: {
|
12290
|
+
readonly type: "query";
|
12291
|
+
readonly description: "Get details about subjects.";
|
12292
|
+
readonly parameters: {
|
12293
|
+
readonly type: "params";
|
12294
|
+
readonly required: ["subjects"];
|
12295
|
+
readonly properties: {
|
12296
|
+
readonly subjects: {
|
12297
|
+
readonly type: "array";
|
12298
|
+
readonly maxLength: 100;
|
12299
|
+
readonly minLength: 1;
|
12300
|
+
readonly items: {
|
12301
|
+
readonly type: "string";
|
12302
|
+
};
|
12303
|
+
};
|
12304
|
+
};
|
12305
|
+
};
|
12306
|
+
readonly output: {
|
12307
|
+
readonly encoding: "application/json";
|
12308
|
+
readonly schema: {
|
12309
|
+
readonly type: "object";
|
12310
|
+
readonly required: ["subjects"];
|
12311
|
+
readonly properties: {
|
12312
|
+
readonly subjects: {
|
12313
|
+
readonly type: "array";
|
12314
|
+
readonly items: {
|
12315
|
+
readonly type: "ref";
|
12316
|
+
readonly ref: "lex:tools.ozone.moderation.defs#subjectView";
|
12317
|
+
};
|
12318
|
+
};
|
12319
|
+
};
|
12320
|
+
};
|
12321
|
+
};
|
12322
|
+
};
|
12323
|
+
};
|
12324
|
+
};
|
12060
12325
|
readonly ToolsOzoneModerationQueryEvents: {
|
12061
12326
|
readonly lexicon: 1;
|
12062
12327
|
readonly id: "tools.ozone.moderation.queryEvents";
|
@@ -22916,6 +23181,60 @@ export declare const schemas: ({
|
|
22916
23181
|
};
|
22917
23182
|
};
|
22918
23183
|
};
|
23184
|
+
} | {
|
23185
|
+
readonly lexicon: 1;
|
23186
|
+
readonly id: "chat.bsky.convo.addReaction";
|
23187
|
+
readonly defs: {
|
23188
|
+
readonly main: {
|
23189
|
+
readonly type: "procedure";
|
23190
|
+
readonly description: "Adds an emoji reaction to a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in a single reaction.";
|
23191
|
+
readonly input: {
|
23192
|
+
readonly encoding: "application/json";
|
23193
|
+
readonly schema: {
|
23194
|
+
readonly type: "object";
|
23195
|
+
readonly required: ["convoId", "messageId", "value"];
|
23196
|
+
readonly properties: {
|
23197
|
+
readonly convoId: {
|
23198
|
+
readonly type: "string";
|
23199
|
+
};
|
23200
|
+
readonly messageId: {
|
23201
|
+
readonly type: "string";
|
23202
|
+
};
|
23203
|
+
readonly value: {
|
23204
|
+
readonly type: "string";
|
23205
|
+
readonly minLength: 1;
|
23206
|
+
readonly maxLength: 32;
|
23207
|
+
readonly minGraphemes: 1;
|
23208
|
+
readonly maxGraphemes: 1;
|
23209
|
+
};
|
23210
|
+
};
|
23211
|
+
};
|
23212
|
+
};
|
23213
|
+
readonly output: {
|
23214
|
+
readonly encoding: "application/json";
|
23215
|
+
readonly schema: {
|
23216
|
+
readonly type: "object";
|
23217
|
+
readonly required: ["message"];
|
23218
|
+
readonly properties: {
|
23219
|
+
readonly message: {
|
23220
|
+
readonly type: "ref";
|
23221
|
+
readonly ref: "lex:chat.bsky.convo.defs#messageView";
|
23222
|
+
};
|
23223
|
+
};
|
23224
|
+
};
|
23225
|
+
};
|
23226
|
+
readonly errors: [{
|
23227
|
+
readonly name: "ReactionMessageDeleted";
|
23228
|
+
readonly description: "Indicates that the message has been deleted and reactions can no longer be added/removed.";
|
23229
|
+
}, {
|
23230
|
+
readonly name: "ReactionLimitReached";
|
23231
|
+
readonly description: "Indicates that the message has the maximum number of reactions allowed for a single user, and the requested reaction wasn't yet present. If it was already present, the request will not fail since it is idempotent.";
|
23232
|
+
}, {
|
23233
|
+
readonly name: "ReactionInvalidValue";
|
23234
|
+
readonly description: "Indicates the value for the reaction is not acceptable. In general, this means it is not an emoji.";
|
23235
|
+
}];
|
23236
|
+
};
|
23237
|
+
};
|
22919
23238
|
} | {
|
22920
23239
|
readonly lexicon: 1;
|
22921
23240
|
readonly id: "chat.bsky.convo.defs";
|
@@ -22986,6 +23305,13 @@ export declare const schemas: ({
|
|
22986
23305
|
readonly type: "union";
|
22987
23306
|
readonly refs: ["lex:app.bsky.embed.record#view"];
|
22988
23307
|
};
|
23308
|
+
readonly reactions: {
|
23309
|
+
readonly type: "array";
|
23310
|
+
readonly items: {
|
23311
|
+
readonly type: "ref";
|
23312
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
23313
|
+
};
|
23314
|
+
};
|
22989
23315
|
readonly sender: {
|
22990
23316
|
readonly type: "ref";
|
22991
23317
|
readonly ref: "lex:chat.bsky.convo.defs#messageViewSender";
|
@@ -23026,6 +23352,47 @@ export declare const schemas: ({
|
|
23026
23352
|
};
|
23027
23353
|
};
|
23028
23354
|
};
|
23355
|
+
readonly reactionView: {
|
23356
|
+
readonly type: "object";
|
23357
|
+
readonly required: ["value", "sender", "createdAt"];
|
23358
|
+
readonly properties: {
|
23359
|
+
readonly value: {
|
23360
|
+
readonly type: "string";
|
23361
|
+
};
|
23362
|
+
readonly sender: {
|
23363
|
+
readonly type: "ref";
|
23364
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionViewSender";
|
23365
|
+
};
|
23366
|
+
readonly createdAt: {
|
23367
|
+
readonly type: "string";
|
23368
|
+
readonly format: "datetime";
|
23369
|
+
};
|
23370
|
+
};
|
23371
|
+
};
|
23372
|
+
readonly reactionViewSender: {
|
23373
|
+
readonly type: "object";
|
23374
|
+
readonly required: ["did"];
|
23375
|
+
readonly properties: {
|
23376
|
+
readonly did: {
|
23377
|
+
readonly type: "string";
|
23378
|
+
readonly format: "did";
|
23379
|
+
};
|
23380
|
+
};
|
23381
|
+
};
|
23382
|
+
readonly messageAndReactionView: {
|
23383
|
+
readonly type: "object";
|
23384
|
+
readonly required: ["message", "reaction"];
|
23385
|
+
readonly properties: {
|
23386
|
+
readonly message: {
|
23387
|
+
readonly type: "ref";
|
23388
|
+
readonly ref: "lex:chat.bsky.convo.defs#messageView";
|
23389
|
+
};
|
23390
|
+
readonly reaction: {
|
23391
|
+
readonly type: "ref";
|
23392
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
23393
|
+
};
|
23394
|
+
};
|
23395
|
+
};
|
23029
23396
|
readonly convoView: {
|
23030
23397
|
readonly type: "object";
|
23031
23398
|
readonly required: ["id", "rev", "members", "muted", "unreadCount"];
|
@@ -23045,7 +23412,7 @@ export declare const schemas: ({
|
|
23045
23412
|
};
|
23046
23413
|
readonly lastMessage: {
|
23047
23414
|
readonly type: "union";
|
23048
|
-
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
23415
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageAndReactionView"];
|
23049
23416
|
};
|
23050
23417
|
readonly muted: {
|
23051
23418
|
readonly type: "boolean";
|
@@ -23167,6 +23534,46 @@ export declare const schemas: ({
|
|
23167
23534
|
};
|
23168
23535
|
};
|
23169
23536
|
};
|
23537
|
+
readonly logAddReaction: {
|
23538
|
+
readonly type: "object";
|
23539
|
+
readonly required: ["rev", "convoId", "message", "reaction"];
|
23540
|
+
readonly properties: {
|
23541
|
+
readonly rev: {
|
23542
|
+
readonly type: "string";
|
23543
|
+
};
|
23544
|
+
readonly convoId: {
|
23545
|
+
readonly type: "string";
|
23546
|
+
};
|
23547
|
+
readonly message: {
|
23548
|
+
readonly type: "union";
|
23549
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
23550
|
+
};
|
23551
|
+
readonly reaction: {
|
23552
|
+
readonly type: "ref";
|
23553
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
23554
|
+
};
|
23555
|
+
};
|
23556
|
+
};
|
23557
|
+
readonly logRemoveReaction: {
|
23558
|
+
readonly type: "object";
|
23559
|
+
readonly required: ["rev", "convoId", "message", "reaction"];
|
23560
|
+
readonly properties: {
|
23561
|
+
readonly rev: {
|
23562
|
+
readonly type: "string";
|
23563
|
+
};
|
23564
|
+
readonly convoId: {
|
23565
|
+
readonly type: "string";
|
23566
|
+
};
|
23567
|
+
readonly message: {
|
23568
|
+
readonly type: "union";
|
23569
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
23570
|
+
};
|
23571
|
+
readonly reaction: {
|
23572
|
+
readonly type: "ref";
|
23573
|
+
readonly ref: "lex:chat.bsky.convo.defs#reactionView";
|
23574
|
+
};
|
23575
|
+
};
|
23576
|
+
};
|
23170
23577
|
};
|
23171
23578
|
} | {
|
23172
23579
|
readonly lexicon: 1;
|
@@ -23332,7 +23739,7 @@ export declare const schemas: ({
|
|
23332
23739
|
readonly type: "array";
|
23333
23740
|
readonly items: {
|
23334
23741
|
readonly type: "union";
|
23335
|
-
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logAcceptConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage"];
|
23742
|
+
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logAcceptConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logMuteConvo", "lex:chat.bsky.convo.defs#logUnmuteConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage", "lex:chat.bsky.convo.defs#logReadMessage", "lex:chat.bsky.convo.defs#logAddReaction", "lex:chat.bsky.convo.defs#logRemoveReaction"];
|
23336
23743
|
};
|
23337
23744
|
};
|
23338
23745
|
};
|
@@ -23502,6 +23909,57 @@ export declare const schemas: ({
|
|
23502
23909
|
};
|
23503
23910
|
};
|
23504
23911
|
};
|
23912
|
+
} | {
|
23913
|
+
readonly lexicon: 1;
|
23914
|
+
readonly id: "chat.bsky.convo.removeReaction";
|
23915
|
+
readonly defs: {
|
23916
|
+
readonly main: {
|
23917
|
+
readonly type: "procedure";
|
23918
|
+
readonly description: "Removes an emoji reaction from a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in that reaction not being present, even if it already wasn't.";
|
23919
|
+
readonly input: {
|
23920
|
+
readonly encoding: "application/json";
|
23921
|
+
readonly schema: {
|
23922
|
+
readonly type: "object";
|
23923
|
+
readonly required: ["convoId", "messageId", "value"];
|
23924
|
+
readonly properties: {
|
23925
|
+
readonly convoId: {
|
23926
|
+
readonly type: "string";
|
23927
|
+
};
|
23928
|
+
readonly messageId: {
|
23929
|
+
readonly type: "string";
|
23930
|
+
};
|
23931
|
+
readonly value: {
|
23932
|
+
readonly type: "string";
|
23933
|
+
readonly minLength: 1;
|
23934
|
+
readonly maxLength: 32;
|
23935
|
+
readonly minGraphemes: 1;
|
23936
|
+
readonly maxGraphemes: 1;
|
23937
|
+
};
|
23938
|
+
};
|
23939
|
+
};
|
23940
|
+
};
|
23941
|
+
readonly output: {
|
23942
|
+
readonly encoding: "application/json";
|
23943
|
+
readonly schema: {
|
23944
|
+
readonly type: "object";
|
23945
|
+
readonly required: ["message"];
|
23946
|
+
readonly properties: {
|
23947
|
+
readonly message: {
|
23948
|
+
readonly type: "ref";
|
23949
|
+
readonly ref: "lex:chat.bsky.convo.defs#messageView";
|
23950
|
+
};
|
23951
|
+
};
|
23952
|
+
};
|
23953
|
+
};
|
23954
|
+
readonly errors: [{
|
23955
|
+
readonly name: "ReactionMessageDeleted";
|
23956
|
+
readonly description: "Indicates that the message has been deleted and reactions can no longer be added/removed.";
|
23957
|
+
}, {
|
23958
|
+
readonly name: "ReactionInvalidValue";
|
23959
|
+
readonly description: "Indicates the value for the reaction is not acceptable. In general, this means it is not an emoji.";
|
23960
|
+
}];
|
23961
|
+
};
|
23962
|
+
};
|
23505
23963
|
} | {
|
23506
23964
|
readonly lexicon: 1;
|
23507
23965
|
readonly id: "chat.bsky.convo.sendMessage";
|
@@ -24194,6 +24652,36 @@ export declare const schemas: ({
|
|
24194
24652
|
};
|
24195
24653
|
};
|
24196
24654
|
};
|
24655
|
+
readonly subjectView: {
|
24656
|
+
readonly description: "Detailed view of a subject. For record subjects, the author's repo and profile will be returned.";
|
24657
|
+
readonly type: "object";
|
24658
|
+
readonly required: ["type", "subject"];
|
24659
|
+
readonly properties: {
|
24660
|
+
readonly type: {
|
24661
|
+
readonly type: "ref";
|
24662
|
+
readonly ref: "lex:com.atproto.moderation.defs#subjectType";
|
24663
|
+
};
|
24664
|
+
readonly subject: {
|
24665
|
+
readonly type: "string";
|
24666
|
+
};
|
24667
|
+
readonly status: {
|
24668
|
+
readonly type: "ref";
|
24669
|
+
readonly ref: "lex:tools.ozone.moderation.defs#subjectStatusView";
|
24670
|
+
};
|
24671
|
+
readonly repo: {
|
24672
|
+
readonly type: "ref";
|
24673
|
+
readonly ref: "lex:tools.ozone.moderation.defs#repoViewDetail";
|
24674
|
+
};
|
24675
|
+
readonly profile: {
|
24676
|
+
readonly type: "union";
|
24677
|
+
readonly refs: [];
|
24678
|
+
};
|
24679
|
+
readonly record: {
|
24680
|
+
readonly type: "ref";
|
24681
|
+
readonly ref: "lex:tools.ozone.moderation.defs#recordViewDetail";
|
24682
|
+
};
|
24683
|
+
};
|
24684
|
+
};
|
24197
24685
|
readonly accountStats: {
|
24198
24686
|
readonly description: "Statistics about a particular account subject";
|
24199
24687
|
readonly type: "object";
|
@@ -25224,6 +25712,45 @@ export declare const schemas: ({
|
|
25224
25712
|
};
|
25225
25713
|
};
|
25226
25714
|
};
|
25715
|
+
} | {
|
25716
|
+
readonly lexicon: 1;
|
25717
|
+
readonly id: "tools.ozone.moderation.getSubjects";
|
25718
|
+
readonly defs: {
|
25719
|
+
readonly main: {
|
25720
|
+
readonly type: "query";
|
25721
|
+
readonly description: "Get details about subjects.";
|
25722
|
+
readonly parameters: {
|
25723
|
+
readonly type: "params";
|
25724
|
+
readonly required: ["subjects"];
|
25725
|
+
readonly properties: {
|
25726
|
+
readonly subjects: {
|
25727
|
+
readonly type: "array";
|
25728
|
+
readonly maxLength: 100;
|
25729
|
+
readonly minLength: 1;
|
25730
|
+
readonly items: {
|
25731
|
+
readonly type: "string";
|
25732
|
+
};
|
25733
|
+
};
|
25734
|
+
};
|
25735
|
+
};
|
25736
|
+
readonly output: {
|
25737
|
+
readonly encoding: "application/json";
|
25738
|
+
readonly schema: {
|
25739
|
+
readonly type: "object";
|
25740
|
+
readonly required: ["subjects"];
|
25741
|
+
readonly properties: {
|
25742
|
+
readonly subjects: {
|
25743
|
+
readonly type: "array";
|
25744
|
+
readonly items: {
|
25745
|
+
readonly type: "ref";
|
25746
|
+
readonly ref: "lex:tools.ozone.moderation.defs#subjectView";
|
25747
|
+
};
|
25748
|
+
};
|
25749
|
+
};
|
25750
|
+
};
|
25751
|
+
};
|
25752
|
+
};
|
25753
|
+
};
|
25227
25754
|
} | {
|
25228
25755
|
readonly lexicon: 1;
|
25229
25756
|
readonly id: "tools.ozone.moderation.queryEvents";
|
@@ -26716,6 +27243,7 @@ export declare const ids: {
|
|
26716
27243
|
readonly ChatBskyActorDeleteAccount: "chat.bsky.actor.deleteAccount";
|
26717
27244
|
readonly ChatBskyActorExportAccountData: "chat.bsky.actor.exportAccountData";
|
26718
27245
|
readonly ChatBskyConvoAcceptConvo: "chat.bsky.convo.acceptConvo";
|
27246
|
+
readonly ChatBskyConvoAddReaction: "chat.bsky.convo.addReaction";
|
26719
27247
|
readonly ChatBskyConvoDefs: "chat.bsky.convo.defs";
|
26720
27248
|
readonly ChatBskyConvoDeleteMessageForSelf: "chat.bsky.convo.deleteMessageForSelf";
|
26721
27249
|
readonly ChatBskyConvoGetConvo: "chat.bsky.convo.getConvo";
|
@@ -26726,6 +27254,7 @@ export declare const ids: {
|
|
26726
27254
|
readonly ChatBskyConvoLeaveConvo: "chat.bsky.convo.leaveConvo";
|
26727
27255
|
readonly ChatBskyConvoListConvos: "chat.bsky.convo.listConvos";
|
26728
27256
|
readonly ChatBskyConvoMuteConvo: "chat.bsky.convo.muteConvo";
|
27257
|
+
readonly ChatBskyConvoRemoveReaction: "chat.bsky.convo.removeReaction";
|
26729
27258
|
readonly ChatBskyConvoSendMessage: "chat.bsky.convo.sendMessage";
|
26730
27259
|
readonly ChatBskyConvoSendMessageBatch: "chat.bsky.convo.sendMessageBatch";
|
26731
27260
|
readonly ChatBskyConvoUnmuteConvo: "chat.bsky.convo.unmuteConvo";
|
@@ -26747,6 +27276,7 @@ export declare const ids: {
|
|
26747
27276
|
readonly ToolsOzoneModerationGetRepo: "tools.ozone.moderation.getRepo";
|
26748
27277
|
readonly ToolsOzoneModerationGetReporterStats: "tools.ozone.moderation.getReporterStats";
|
26749
27278
|
readonly ToolsOzoneModerationGetRepos: "tools.ozone.moderation.getRepos";
|
27279
|
+
readonly ToolsOzoneModerationGetSubjects: "tools.ozone.moderation.getSubjects";
|
26750
27280
|
readonly ToolsOzoneModerationQueryEvents: "tools.ozone.moderation.queryEvents";
|
26751
27281
|
readonly ToolsOzoneModerationQueryStatuses: "tools.ozone.moderation.queryStatuses";
|
26752
27282
|
readonly ToolsOzoneModerationSearchRepos: "tools.ozone.moderation.searchRepos";
|