@atproto/api 0.19.9 → 0.19.11
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 +16 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +15 -6
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +380 -64
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +193 -31
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/actor/defs.d.ts +1 -0
- package/dist/client/types/app/bsky/actor/defs.d.ts.map +1 -1
- package/dist/client/types/app/bsky/actor/defs.js.map +1 -1
- package/dist/client/types/chat/bsky/actor/defs.d.ts +8 -2
- package/dist/client/types/chat/bsky/actor/defs.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/actor/defs.js +9 -0
- package/dist/client/types/chat/bsky/actor/defs.js.map +1 -1
- package/dist/client/types/chat/bsky/convo/defs.d.ts +45 -22
- package/dist/client/types/chat/bsky/convo/defs.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/convo/defs.js +9 -0
- package/dist/client/types/chat/bsky/convo/defs.js.map +1 -1
- package/dist/client/types/chat/bsky/convo/getConvoMembers.d.ts +29 -0
- package/dist/client/types/chat/bsky/convo/getConvoMembers.d.ts.map +1 -0
- package/dist/client/types/chat/bsky/convo/getConvoMembers.js +26 -0
- package/dist/client/types/chat/bsky/convo/getConvoMembers.js.map +1 -0
- package/dist/client/types/chat/bsky/convo/getMessages.d.ts +3 -0
- package/dist/client/types/chat/bsky/convo/getMessages.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/convo/getMessages.js.map +1 -1
- package/dist/client/types/chat/bsky/group/addMembers.d.ts +2 -0
- package/dist/client/types/chat/bsky/group/addMembers.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/group/addMembers.js.map +1 -1
- package/package.json +3 -3
- package/src/client/index.ts +13 -0
- package/src/client/lexicons.ts +209 -31
- package/src/client/types/app/bsky/actor/defs.ts +1 -0
- package/src/client/types/chat/bsky/actor/defs.ts +17 -1
- package/src/client/types/chat/bsky/convo/defs.ts +58 -22
- package/src/client/types/chat/bsky/convo/getConvoMembers.ts +54 -0
- package/src/client/types/chat/bsky/convo/getMessages.ts +3 -0
- package/src/client/types/chat/bsky/group/addMembers.ts +2 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/client/lexicons.js
CHANGED
|
@@ -263,6 +263,10 @@ exports.schemaDict = {
|
|
|
263
263
|
type: 'string',
|
|
264
264
|
knownValues: ['all', 'none', 'following'],
|
|
265
265
|
},
|
|
266
|
+
allowGroupInvites: {
|
|
267
|
+
type: 'string',
|
|
268
|
+
knownValues: ['all', 'none', 'following'],
|
|
269
|
+
},
|
|
266
270
|
},
|
|
267
271
|
},
|
|
268
272
|
profileAssociatedGerm: {
|
|
@@ -9397,6 +9401,7 @@ exports.schemaDict = {
|
|
|
9397
9401
|
refs: [
|
|
9398
9402
|
'lex:chat.bsky.actor.defs#directConvoMember',
|
|
9399
9403
|
'lex:chat.bsky.actor.defs#groupConvoMember',
|
|
9404
|
+
'lex:chat.bsky.actor.defs#pastGroupConvoMember',
|
|
9400
9405
|
],
|
|
9401
9406
|
},
|
|
9402
9407
|
},
|
|
@@ -9407,7 +9412,7 @@ exports.schemaDict = {
|
|
|
9407
9412
|
properties: {},
|
|
9408
9413
|
},
|
|
9409
9414
|
groupConvoMember: {
|
|
9410
|
-
description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
|
|
9415
|
+
description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.',
|
|
9411
9416
|
type: 'object',
|
|
9412
9417
|
required: ['role'],
|
|
9413
9418
|
properties: {
|
|
@@ -9423,6 +9428,12 @@ exports.schemaDict = {
|
|
|
9423
9428
|
},
|
|
9424
9429
|
},
|
|
9425
9430
|
},
|
|
9431
|
+
pastGroupConvoMember: {
|
|
9432
|
+
description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.',
|
|
9433
|
+
type: 'object',
|
|
9434
|
+
required: [],
|
|
9435
|
+
properties: {},
|
|
9436
|
+
},
|
|
9426
9437
|
},
|
|
9427
9438
|
},
|
|
9428
9439
|
ChatBskyActorDeleteAccount: {
|
|
@@ -9658,6 +9669,16 @@ exports.schemaDict = {
|
|
|
9658
9669
|
},
|
|
9659
9670
|
},
|
|
9660
9671
|
},
|
|
9672
|
+
systemMessageReferredUser: {
|
|
9673
|
+
type: 'object',
|
|
9674
|
+
required: ['did'],
|
|
9675
|
+
properties: {
|
|
9676
|
+
did: {
|
|
9677
|
+
type: 'string',
|
|
9678
|
+
format: 'did',
|
|
9679
|
+
},
|
|
9680
|
+
},
|
|
9681
|
+
},
|
|
9661
9682
|
systemMessageView: {
|
|
9662
9683
|
description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
|
|
9663
9684
|
type: 'object',
|
|
@@ -9700,7 +9721,7 @@ exports.schemaDict = {
|
|
|
9700
9721
|
member: {
|
|
9701
9722
|
description: 'Current view of the member who was added.',
|
|
9702
9723
|
type: 'ref',
|
|
9703
|
-
ref: 'lex:chat.bsky.
|
|
9724
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9704
9725
|
},
|
|
9705
9726
|
role: {
|
|
9706
9727
|
description: "Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.",
|
|
@@ -9709,7 +9730,7 @@ exports.schemaDict = {
|
|
|
9709
9730
|
},
|
|
9710
9731
|
addedBy: {
|
|
9711
9732
|
type: 'ref',
|
|
9712
|
-
ref: 'lex:chat.bsky.
|
|
9733
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9713
9734
|
},
|
|
9714
9735
|
},
|
|
9715
9736
|
},
|
|
@@ -9721,11 +9742,11 @@ exports.schemaDict = {
|
|
|
9721
9742
|
member: {
|
|
9722
9743
|
description: 'Current view of the member who was removed.',
|
|
9723
9744
|
type: 'ref',
|
|
9724
|
-
ref: 'lex:chat.bsky.
|
|
9745
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9725
9746
|
},
|
|
9726
9747
|
removedBy: {
|
|
9727
9748
|
type: 'ref',
|
|
9728
|
-
ref: 'lex:chat.bsky.
|
|
9749
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9729
9750
|
},
|
|
9730
9751
|
},
|
|
9731
9752
|
},
|
|
@@ -9737,7 +9758,7 @@ exports.schemaDict = {
|
|
|
9737
9758
|
member: {
|
|
9738
9759
|
description: 'Current view of the member who joined.',
|
|
9739
9760
|
type: 'ref',
|
|
9740
|
-
ref: 'lex:chat.bsky.
|
|
9761
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9741
9762
|
},
|
|
9742
9763
|
role: {
|
|
9743
9764
|
description: "Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.",
|
|
@@ -9747,7 +9768,7 @@ exports.schemaDict = {
|
|
|
9747
9768
|
approvedBy: {
|
|
9748
9769
|
description: 'If join link was configured to require approval, this will be set to who approved the request. Undefined if approval was not required.',
|
|
9749
9770
|
type: 'ref',
|
|
9750
|
-
ref: 'lex:chat.bsky.
|
|
9771
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9751
9772
|
},
|
|
9752
9773
|
},
|
|
9753
9774
|
},
|
|
@@ -9759,7 +9780,7 @@ exports.schemaDict = {
|
|
|
9759
9780
|
member: {
|
|
9760
9781
|
description: 'Current view of the member who left the group.',
|
|
9761
9782
|
type: 'ref',
|
|
9762
|
-
ref: 'lex:chat.bsky.
|
|
9783
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9763
9784
|
},
|
|
9764
9785
|
},
|
|
9765
9786
|
},
|
|
@@ -9771,7 +9792,7 @@ exports.schemaDict = {
|
|
|
9771
9792
|
lockedBy: {
|
|
9772
9793
|
description: 'Current view of the member who locked the group.',
|
|
9773
9794
|
type: 'ref',
|
|
9774
|
-
ref: 'lex:chat.bsky.
|
|
9795
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9775
9796
|
},
|
|
9776
9797
|
},
|
|
9777
9798
|
},
|
|
@@ -9783,7 +9804,7 @@ exports.schemaDict = {
|
|
|
9783
9804
|
unlockedBy: {
|
|
9784
9805
|
description: 'Current view of the member who unlocked the group.',
|
|
9785
9806
|
type: 'ref',
|
|
9786
|
-
ref: 'lex:chat.bsky.
|
|
9807
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9787
9808
|
},
|
|
9788
9809
|
},
|
|
9789
9810
|
},
|
|
@@ -9795,7 +9816,7 @@ exports.schemaDict = {
|
|
|
9795
9816
|
lockedBy: {
|
|
9796
9817
|
description: 'Current view of the member who locked the group.',
|
|
9797
9818
|
type: 'ref',
|
|
9798
|
-
ref: 'lex:chat.bsky.
|
|
9819
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageReferredUser',
|
|
9799
9820
|
},
|
|
9800
9821
|
},
|
|
9801
9822
|
},
|
|
@@ -9915,6 +9936,7 @@ exports.schemaDict = {
|
|
|
9915
9936
|
type: 'string',
|
|
9916
9937
|
},
|
|
9917
9938
|
members: {
|
|
9939
|
+
description: 'Members of this conversation. For direct convos, it will be an immutable list of the 2 members. For group convos, it will a list of important members (the first few members, the viewer, the member who invited the viewer, the member who sent the last message, the member who sent the last reaction), but will not contain the full list of members. Use chat.bsky.convo.getConvoMembers to list all members.',
|
|
9918
9940
|
type: 'array',
|
|
9919
9941
|
items: {
|
|
9920
9942
|
type: 'ref',
|
|
@@ -9962,7 +9984,7 @@ exports.schemaDict = {
|
|
|
9962
9984
|
groupConvo: {
|
|
9963
9985
|
description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
|
|
9964
9986
|
type: 'object',
|
|
9965
|
-
required: ['name', 'lockStatus'],
|
|
9987
|
+
required: ['name', 'lockStatus', 'memberCount'],
|
|
9966
9988
|
properties: {
|
|
9967
9989
|
name: {
|
|
9968
9990
|
type: 'string',
|
|
@@ -9970,6 +9992,10 @@ exports.schemaDict = {
|
|
|
9970
9992
|
maxGraphemes: 128,
|
|
9971
9993
|
maxLength: 1280,
|
|
9972
9994
|
},
|
|
9995
|
+
memberCount: {
|
|
9996
|
+
type: 'integer',
|
|
9997
|
+
description: 'The total number of members in the group conversation.',
|
|
9998
|
+
},
|
|
9973
9999
|
joinLink: {
|
|
9974
10000
|
type: 'ref',
|
|
9975
10001
|
ref: 'lex:chat.bsky.group.defs#joinLinkView',
|
|
@@ -10179,7 +10205,7 @@ exports.schemaDict = {
|
|
|
10179
10205
|
logAddMember: {
|
|
10180
10206
|
description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member was added to a group convo. The member who was added gets a logBeginConvo (to create the convo) but also a logAddMember (to show the system message as the first message the user sees).',
|
|
10181
10207
|
type: 'object',
|
|
10182
|
-
required: ['rev', 'convoId', 'message'],
|
|
10208
|
+
required: ['rev', 'convoId', 'message', 'relatedProfiles'],
|
|
10183
10209
|
properties: {
|
|
10184
10210
|
rev: {
|
|
10185
10211
|
type: 'string',
|
|
@@ -10188,15 +10214,24 @@ exports.schemaDict = {
|
|
|
10188
10214
|
type: 'string',
|
|
10189
10215
|
},
|
|
10190
10216
|
message: {
|
|
10217
|
+
description: 'A system message with data of type #systemMessageDataAddMember',
|
|
10191
10218
|
type: 'ref',
|
|
10192
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10219
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10220
|
+
},
|
|
10221
|
+
relatedProfiles: {
|
|
10222
|
+
description: 'Profiles referred in the system message.',
|
|
10223
|
+
type: 'array',
|
|
10224
|
+
items: {
|
|
10225
|
+
type: 'ref',
|
|
10226
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10227
|
+
},
|
|
10193
10228
|
},
|
|
10194
10229
|
},
|
|
10195
10230
|
},
|
|
10196
10231
|
logRemoveMember: {
|
|
10197
10232
|
description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member was removed from a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logRemoveMember (because they already left, so can't see the system message).",
|
|
10198
10233
|
type: 'object',
|
|
10199
|
-
required: ['rev', 'convoId', 'message'],
|
|
10234
|
+
required: ['rev', 'convoId', 'message', 'relatedProfiles'],
|
|
10200
10235
|
properties: {
|
|
10201
10236
|
rev: {
|
|
10202
10237
|
type: 'string',
|
|
@@ -10205,15 +10240,24 @@ exports.schemaDict = {
|
|
|
10205
10240
|
type: 'string',
|
|
10206
10241
|
},
|
|
10207
10242
|
message: {
|
|
10243
|
+
description: 'A system message with data of type #systemMessageDataRemoveMember',
|
|
10208
10244
|
type: 'ref',
|
|
10209
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10245
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10246
|
+
},
|
|
10247
|
+
relatedProfiles: {
|
|
10248
|
+
description: 'Profiles referred in the system message.',
|
|
10249
|
+
type: 'array',
|
|
10250
|
+
items: {
|
|
10251
|
+
type: 'ref',
|
|
10252
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10253
|
+
},
|
|
10210
10254
|
},
|
|
10211
10255
|
},
|
|
10212
10256
|
},
|
|
10213
10257
|
logMemberJoin: {
|
|
10214
10258
|
description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member joined a group convo via join link. The member who was added gets a logBeginConvo (to create the convo) but also a logMemberJoin (to show the system message as the first message the user sees).',
|
|
10215
10259
|
type: 'object',
|
|
10216
|
-
required: ['rev', 'convoId', 'message'],
|
|
10260
|
+
required: ['rev', 'convoId', 'message', 'relatedProfiles'],
|
|
10217
10261
|
properties: {
|
|
10218
10262
|
rev: {
|
|
10219
10263
|
type: 'string',
|
|
@@ -10222,15 +10266,24 @@ exports.schemaDict = {
|
|
|
10222
10266
|
type: 'string',
|
|
10223
10267
|
},
|
|
10224
10268
|
message: {
|
|
10269
|
+
description: 'A system message with data of type #systemMessageDataMemberJoin',
|
|
10225
10270
|
type: 'ref',
|
|
10226
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10271
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10272
|
+
},
|
|
10273
|
+
relatedProfiles: {
|
|
10274
|
+
description: 'Profiles referred in the system message.',
|
|
10275
|
+
type: 'array',
|
|
10276
|
+
items: {
|
|
10277
|
+
type: 'ref',
|
|
10278
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10279
|
+
},
|
|
10227
10280
|
},
|
|
10228
10281
|
},
|
|
10229
10282
|
},
|
|
10230
10283
|
logMemberLeave: {
|
|
10231
10284
|
description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member voluntarily left a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logMemberLeave (because they already left, so can't see the system message).",
|
|
10232
10285
|
type: 'object',
|
|
10233
|
-
required: ['rev', 'convoId', 'message'],
|
|
10286
|
+
required: ['rev', 'convoId', 'message', 'relatedProfiles'],
|
|
10234
10287
|
properties: {
|
|
10235
10288
|
rev: {
|
|
10236
10289
|
type: 'string',
|
|
@@ -10239,15 +10292,24 @@ exports.schemaDict = {
|
|
|
10239
10292
|
type: 'string',
|
|
10240
10293
|
},
|
|
10241
10294
|
message: {
|
|
10295
|
+
description: 'A system message with data of type #systemMessageDataMemberLeave',
|
|
10242
10296
|
type: 'ref',
|
|
10243
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10297
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10298
|
+
},
|
|
10299
|
+
relatedProfiles: {
|
|
10300
|
+
description: 'Profiles referred in the system message.',
|
|
10301
|
+
type: 'array',
|
|
10302
|
+
items: {
|
|
10303
|
+
type: 'ref',
|
|
10304
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10305
|
+
},
|
|
10244
10306
|
},
|
|
10245
10307
|
},
|
|
10246
10308
|
},
|
|
10247
10309
|
logLockConvo: {
|
|
10248
10310
|
description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked.',
|
|
10249
10311
|
type: 'object',
|
|
10250
|
-
required: ['rev', 'convoId', 'message'],
|
|
10312
|
+
required: ['rev', 'convoId', 'message', 'relatedProfiles'],
|
|
10251
10313
|
properties: {
|
|
10252
10314
|
rev: {
|
|
10253
10315
|
type: 'string',
|
|
@@ -10256,15 +10318,24 @@ exports.schemaDict = {
|
|
|
10256
10318
|
type: 'string',
|
|
10257
10319
|
},
|
|
10258
10320
|
message: {
|
|
10321
|
+
description: 'A system message with data of type #systemMessageDataLockConvo',
|
|
10259
10322
|
type: 'ref',
|
|
10260
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10323
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10324
|
+
},
|
|
10325
|
+
relatedProfiles: {
|
|
10326
|
+
description: 'Profiles referred in the system message.',
|
|
10327
|
+
type: 'array',
|
|
10328
|
+
items: {
|
|
10329
|
+
type: 'ref',
|
|
10330
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10331
|
+
},
|
|
10261
10332
|
},
|
|
10262
10333
|
},
|
|
10263
10334
|
},
|
|
10264
10335
|
logUnlockConvo: {
|
|
10265
10336
|
description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was unlocked.',
|
|
10266
10337
|
type: 'object',
|
|
10267
|
-
required: ['rev', 'convoId', 'message'],
|
|
10338
|
+
required: ['rev', 'convoId', 'message', 'relatedProfiles'],
|
|
10268
10339
|
properties: {
|
|
10269
10340
|
rev: {
|
|
10270
10341
|
type: 'string',
|
|
@@ -10273,15 +10344,24 @@ exports.schemaDict = {
|
|
|
10273
10344
|
type: 'string',
|
|
10274
10345
|
},
|
|
10275
10346
|
message: {
|
|
10347
|
+
description: 'A system message with data of type #systemMessageDataUnlockConvo',
|
|
10276
10348
|
type: 'ref',
|
|
10277
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10349
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10350
|
+
},
|
|
10351
|
+
relatedProfiles: {
|
|
10352
|
+
description: 'Profiles referred in the system message.',
|
|
10353
|
+
type: 'array',
|
|
10354
|
+
items: {
|
|
10355
|
+
type: 'ref',
|
|
10356
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10357
|
+
},
|
|
10278
10358
|
},
|
|
10279
10359
|
},
|
|
10280
10360
|
},
|
|
10281
10361
|
logLockConvoPermanently: {
|
|
10282
10362
|
description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked permanently.',
|
|
10283
10363
|
type: 'object',
|
|
10284
|
-
required: ['rev', 'convoId', 'message'],
|
|
10364
|
+
required: ['rev', 'convoId', 'message', 'relatedProfiles'],
|
|
10285
10365
|
properties: {
|
|
10286
10366
|
rev: {
|
|
10287
10367
|
type: 'string',
|
|
@@ -10290,8 +10370,17 @@ exports.schemaDict = {
|
|
|
10290
10370
|
type: 'string',
|
|
10291
10371
|
},
|
|
10292
10372
|
message: {
|
|
10373
|
+
description: 'A system message with data of type #systemMessageDataLockConvoPermanently',
|
|
10293
10374
|
type: 'ref',
|
|
10294
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10375
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10376
|
+
},
|
|
10377
|
+
relatedProfiles: {
|
|
10378
|
+
description: 'Profiles referred in the system message.',
|
|
10379
|
+
type: 'array',
|
|
10380
|
+
items: {
|
|
10381
|
+
type: 'ref',
|
|
10382
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10383
|
+
},
|
|
10295
10384
|
},
|
|
10296
10385
|
},
|
|
10297
10386
|
},
|
|
@@ -10307,8 +10396,9 @@ exports.schemaDict = {
|
|
|
10307
10396
|
type: 'string',
|
|
10308
10397
|
},
|
|
10309
10398
|
message: {
|
|
10399
|
+
description: 'A system message with data of type #systemMessageDataEditGroup',
|
|
10310
10400
|
type: 'ref',
|
|
10311
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10401
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10312
10402
|
},
|
|
10313
10403
|
},
|
|
10314
10404
|
},
|
|
@@ -10324,8 +10414,9 @@ exports.schemaDict = {
|
|
|
10324
10414
|
type: 'string',
|
|
10325
10415
|
},
|
|
10326
10416
|
message: {
|
|
10417
|
+
description: 'A system message with data of type #systemMessageDataCreateJoinLink',
|
|
10327
10418
|
type: 'ref',
|
|
10328
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10419
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10329
10420
|
},
|
|
10330
10421
|
},
|
|
10331
10422
|
},
|
|
@@ -10341,8 +10432,9 @@ exports.schemaDict = {
|
|
|
10341
10432
|
type: 'string',
|
|
10342
10433
|
},
|
|
10343
10434
|
message: {
|
|
10435
|
+
description: 'A system message with data of type #systemMessageDataEditJoinLink',
|
|
10344
10436
|
type: 'ref',
|
|
10345
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10437
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10346
10438
|
},
|
|
10347
10439
|
},
|
|
10348
10440
|
},
|
|
@@ -10358,8 +10450,9 @@ exports.schemaDict = {
|
|
|
10358
10450
|
type: 'string',
|
|
10359
10451
|
},
|
|
10360
10452
|
message: {
|
|
10453
|
+
description: 'A system message with data of type #systemMessageDataEnableJoinLink',
|
|
10361
10454
|
type: 'ref',
|
|
10362
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10455
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10363
10456
|
},
|
|
10364
10457
|
},
|
|
10365
10458
|
},
|
|
@@ -10375,8 +10468,9 @@ exports.schemaDict = {
|
|
|
10375
10468
|
type: 'string',
|
|
10376
10469
|
},
|
|
10377
10470
|
message: {
|
|
10471
|
+
description: 'A system message with data of type #systemMessageDataDisableJoinLink',
|
|
10378
10472
|
type: 'ref',
|
|
10379
|
-
ref: 'lex:chat.bsky.convo.defs#
|
|
10473
|
+
ref: 'lex:chat.bsky.convo.defs#systemMessageView',
|
|
10380
10474
|
},
|
|
10381
10475
|
},
|
|
10382
10476
|
},
|
|
@@ -10623,6 +10717,58 @@ exports.schemaDict = {
|
|
|
10623
10717
|
},
|
|
10624
10718
|
},
|
|
10625
10719
|
},
|
|
10720
|
+
ChatBskyConvoGetConvoMembers: {
|
|
10721
|
+
lexicon: 1,
|
|
10722
|
+
id: 'chat.bsky.convo.getConvoMembers',
|
|
10723
|
+
defs: {
|
|
10724
|
+
main: {
|
|
10725
|
+
type: 'query',
|
|
10726
|
+
description: 'Returns a paginated list of members from a conversation.',
|
|
10727
|
+
errors: [
|
|
10728
|
+
{
|
|
10729
|
+
name: 'InvalidConvo',
|
|
10730
|
+
},
|
|
10731
|
+
],
|
|
10732
|
+
parameters: {
|
|
10733
|
+
type: 'params',
|
|
10734
|
+
required: ['convoId'],
|
|
10735
|
+
properties: {
|
|
10736
|
+
convoId: {
|
|
10737
|
+
type: 'string',
|
|
10738
|
+
},
|
|
10739
|
+
limit: {
|
|
10740
|
+
type: 'integer',
|
|
10741
|
+
minimum: 1,
|
|
10742
|
+
maximum: 100,
|
|
10743
|
+
default: 50,
|
|
10744
|
+
},
|
|
10745
|
+
cursor: {
|
|
10746
|
+
type: 'string',
|
|
10747
|
+
},
|
|
10748
|
+
},
|
|
10749
|
+
},
|
|
10750
|
+
output: {
|
|
10751
|
+
encoding: 'application/json',
|
|
10752
|
+
schema: {
|
|
10753
|
+
type: 'object',
|
|
10754
|
+
required: ['members'],
|
|
10755
|
+
properties: {
|
|
10756
|
+
cursor: {
|
|
10757
|
+
type: 'string',
|
|
10758
|
+
},
|
|
10759
|
+
members: {
|
|
10760
|
+
type: 'array',
|
|
10761
|
+
items: {
|
|
10762
|
+
type: 'ref',
|
|
10763
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10764
|
+
},
|
|
10765
|
+
},
|
|
10766
|
+
},
|
|
10767
|
+
},
|
|
10768
|
+
},
|
|
10769
|
+
},
|
|
10770
|
+
},
|
|
10771
|
+
},
|
|
10626
10772
|
ChatBskyConvoGetLog: {
|
|
10627
10773
|
lexicon: 1,
|
|
10628
10774
|
id: 'chat.bsky.convo.getLog',
|
|
@@ -10738,6 +10884,14 @@ exports.schemaDict = {
|
|
|
10738
10884
|
],
|
|
10739
10885
|
},
|
|
10740
10886
|
},
|
|
10887
|
+
relatedProfiles: {
|
|
10888
|
+
description: 'Set of all members who authored or reacted to the returned messages. Members referred to by system messages are also included.',
|
|
10889
|
+
type: 'array',
|
|
10890
|
+
items: {
|
|
10891
|
+
type: 'ref',
|
|
10892
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
10893
|
+
},
|
|
10894
|
+
},
|
|
10741
10895
|
},
|
|
10742
10896
|
},
|
|
10743
10897
|
},
|
|
@@ -11373,6 +11527,13 @@ exports.schemaDict = {
|
|
|
11373
11527
|
type: 'ref',
|
|
11374
11528
|
ref: 'lex:chat.bsky.convo.defs#convoView',
|
|
11375
11529
|
},
|
|
11530
|
+
addedMembers: {
|
|
11531
|
+
type: 'array',
|
|
11532
|
+
items: {
|
|
11533
|
+
type: 'ref',
|
|
11534
|
+
ref: 'lex:chat.bsky.actor.defs#profileViewBasic',
|
|
11535
|
+
},
|
|
11536
|
+
},
|
|
11376
11537
|
},
|
|
11377
11538
|
},
|
|
11378
11539
|
},
|
|
@@ -22137,6 +22298,7 @@ exports.ids = {
|
|
|
22137
22298
|
ChatBskyConvoGetConvo: 'chat.bsky.convo.getConvo',
|
|
22138
22299
|
ChatBskyConvoGetConvoAvailability: 'chat.bsky.convo.getConvoAvailability',
|
|
22139
22300
|
ChatBskyConvoGetConvoForMembers: 'chat.bsky.convo.getConvoForMembers',
|
|
22301
|
+
ChatBskyConvoGetConvoMembers: 'chat.bsky.convo.getConvoMembers',
|
|
22140
22302
|
ChatBskyConvoGetLog: 'chat.bsky.convo.getLog',
|
|
22141
22303
|
ChatBskyConvoGetMessages: 'chat.bsky.convo.getMessages',
|
|
22142
22304
|
ChatBskyConvoLeaveConvo: 'chat.bsky.convo.leaveConvo',
|