@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
|
@@ -258,6 +258,10 @@ export declare const schemaDict: {
|
|
|
258
258
|
readonly type: "string";
|
|
259
259
|
readonly knownValues: ["all", "none", "following"];
|
|
260
260
|
};
|
|
261
|
+
readonly allowGroupInvites: {
|
|
262
|
+
readonly type: "string";
|
|
263
|
+
readonly knownValues: ["all", "none", "following"];
|
|
264
|
+
};
|
|
261
265
|
};
|
|
262
266
|
};
|
|
263
267
|
readonly profileAssociatedGerm: {
|
|
@@ -9107,7 +9111,7 @@ export declare const schemaDict: {
|
|
|
9107
9111
|
readonly kind: {
|
|
9108
9112
|
readonly description: "Union field that has data specific to different kinds of convos.";
|
|
9109
9113
|
readonly type: "union";
|
|
9110
|
-
readonly refs: ["lex:chat.bsky.actor.defs#directConvoMember", "lex:chat.bsky.actor.defs#groupConvoMember"];
|
|
9114
|
+
readonly refs: ["lex:chat.bsky.actor.defs#directConvoMember", "lex:chat.bsky.actor.defs#groupConvoMember", "lex:chat.bsky.actor.defs#pastGroupConvoMember"];
|
|
9111
9115
|
};
|
|
9112
9116
|
};
|
|
9113
9117
|
};
|
|
@@ -9117,7 +9121,7 @@ export declare const schemaDict: {
|
|
|
9117
9121
|
readonly properties: {};
|
|
9118
9122
|
};
|
|
9119
9123
|
readonly groupConvoMember: {
|
|
9120
|
-
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
|
|
9124
|
+
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.";
|
|
9121
9125
|
readonly type: "object";
|
|
9122
9126
|
readonly required: ["role"];
|
|
9123
9127
|
readonly properties: {
|
|
@@ -9133,6 +9137,12 @@ export declare const schemaDict: {
|
|
|
9133
9137
|
};
|
|
9134
9138
|
};
|
|
9135
9139
|
};
|
|
9140
|
+
readonly pastGroupConvoMember: {
|
|
9141
|
+
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.";
|
|
9142
|
+
readonly type: "object";
|
|
9143
|
+
readonly required: [];
|
|
9144
|
+
readonly properties: {};
|
|
9145
|
+
};
|
|
9136
9146
|
};
|
|
9137
9147
|
};
|
|
9138
9148
|
readonly ChatBskyActorDeleteAccount: {
|
|
@@ -9360,6 +9370,16 @@ export declare const schemaDict: {
|
|
|
9360
9370
|
};
|
|
9361
9371
|
};
|
|
9362
9372
|
};
|
|
9373
|
+
readonly systemMessageReferredUser: {
|
|
9374
|
+
readonly type: "object";
|
|
9375
|
+
readonly required: ["did"];
|
|
9376
|
+
readonly properties: {
|
|
9377
|
+
readonly did: {
|
|
9378
|
+
readonly type: "string";
|
|
9379
|
+
readonly format: "did";
|
|
9380
|
+
};
|
|
9381
|
+
};
|
|
9382
|
+
};
|
|
9363
9383
|
readonly systemMessageView: {
|
|
9364
9384
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
|
|
9365
9385
|
readonly type: "object";
|
|
@@ -9389,7 +9409,7 @@ export declare const schemaDict: {
|
|
|
9389
9409
|
readonly member: {
|
|
9390
9410
|
readonly description: "Current view of the member who was added.";
|
|
9391
9411
|
readonly type: "ref";
|
|
9392
|
-
readonly ref: "lex:chat.bsky.
|
|
9412
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9393
9413
|
};
|
|
9394
9414
|
readonly role: {
|
|
9395
9415
|
readonly description: "Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.";
|
|
@@ -9398,7 +9418,7 @@ export declare const schemaDict: {
|
|
|
9398
9418
|
};
|
|
9399
9419
|
readonly addedBy: {
|
|
9400
9420
|
readonly type: "ref";
|
|
9401
|
-
readonly ref: "lex:chat.bsky.
|
|
9421
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9402
9422
|
};
|
|
9403
9423
|
};
|
|
9404
9424
|
};
|
|
@@ -9410,11 +9430,11 @@ export declare const schemaDict: {
|
|
|
9410
9430
|
readonly member: {
|
|
9411
9431
|
readonly description: "Current view of the member who was removed.";
|
|
9412
9432
|
readonly type: "ref";
|
|
9413
|
-
readonly ref: "lex:chat.bsky.
|
|
9433
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9414
9434
|
};
|
|
9415
9435
|
readonly removedBy: {
|
|
9416
9436
|
readonly type: "ref";
|
|
9417
|
-
readonly ref: "lex:chat.bsky.
|
|
9437
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9418
9438
|
};
|
|
9419
9439
|
};
|
|
9420
9440
|
};
|
|
@@ -9426,7 +9446,7 @@ export declare const schemaDict: {
|
|
|
9426
9446
|
readonly member: {
|
|
9427
9447
|
readonly description: "Current view of the member who joined.";
|
|
9428
9448
|
readonly type: "ref";
|
|
9429
|
-
readonly ref: "lex:chat.bsky.
|
|
9449
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9430
9450
|
};
|
|
9431
9451
|
readonly role: {
|
|
9432
9452
|
readonly description: "Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.";
|
|
@@ -9436,7 +9456,7 @@ export declare const schemaDict: {
|
|
|
9436
9456
|
readonly approvedBy: {
|
|
9437
9457
|
readonly description: "If join link was configured to require approval, this will be set to who approved the request. Undefined if approval was not required.";
|
|
9438
9458
|
readonly type: "ref";
|
|
9439
|
-
readonly ref: "lex:chat.bsky.
|
|
9459
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9440
9460
|
};
|
|
9441
9461
|
};
|
|
9442
9462
|
};
|
|
@@ -9448,7 +9468,7 @@ export declare const schemaDict: {
|
|
|
9448
9468
|
readonly member: {
|
|
9449
9469
|
readonly description: "Current view of the member who left the group.";
|
|
9450
9470
|
readonly type: "ref";
|
|
9451
|
-
readonly ref: "lex:chat.bsky.
|
|
9471
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9452
9472
|
};
|
|
9453
9473
|
};
|
|
9454
9474
|
};
|
|
@@ -9460,7 +9480,7 @@ export declare const schemaDict: {
|
|
|
9460
9480
|
readonly lockedBy: {
|
|
9461
9481
|
readonly description: "Current view of the member who locked the group.";
|
|
9462
9482
|
readonly type: "ref";
|
|
9463
|
-
readonly ref: "lex:chat.bsky.
|
|
9483
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9464
9484
|
};
|
|
9465
9485
|
};
|
|
9466
9486
|
};
|
|
@@ -9472,7 +9492,7 @@ export declare const schemaDict: {
|
|
|
9472
9492
|
readonly unlockedBy: {
|
|
9473
9493
|
readonly description: "Current view of the member who unlocked the group.";
|
|
9474
9494
|
readonly type: "ref";
|
|
9475
|
-
readonly ref: "lex:chat.bsky.
|
|
9495
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9476
9496
|
};
|
|
9477
9497
|
};
|
|
9478
9498
|
};
|
|
@@ -9484,7 +9504,7 @@ export declare const schemaDict: {
|
|
|
9484
9504
|
readonly lockedBy: {
|
|
9485
9505
|
readonly description: "Current view of the member who locked the group.";
|
|
9486
9506
|
readonly type: "ref";
|
|
9487
|
-
readonly ref: "lex:chat.bsky.
|
|
9507
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
9488
9508
|
};
|
|
9489
9509
|
};
|
|
9490
9510
|
};
|
|
@@ -9604,6 +9624,7 @@ export declare const schemaDict: {
|
|
|
9604
9624
|
readonly type: "string";
|
|
9605
9625
|
};
|
|
9606
9626
|
readonly members: {
|
|
9627
|
+
readonly 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.";
|
|
9607
9628
|
readonly type: "array";
|
|
9608
9629
|
readonly items: {
|
|
9609
9630
|
readonly type: "ref";
|
|
@@ -9644,7 +9665,7 @@ export declare const schemaDict: {
|
|
|
9644
9665
|
readonly groupConvo: {
|
|
9645
9666
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
|
|
9646
9667
|
readonly type: "object";
|
|
9647
|
-
readonly required: ["name", "lockStatus"];
|
|
9668
|
+
readonly required: ["name", "lockStatus", "memberCount"];
|
|
9648
9669
|
readonly properties: {
|
|
9649
9670
|
readonly name: {
|
|
9650
9671
|
readonly type: "string";
|
|
@@ -9652,6 +9673,10 @@ export declare const schemaDict: {
|
|
|
9652
9673
|
readonly maxGraphemes: 128;
|
|
9653
9674
|
readonly maxLength: 1280;
|
|
9654
9675
|
};
|
|
9676
|
+
readonly memberCount: {
|
|
9677
|
+
readonly type: "integer";
|
|
9678
|
+
readonly description: "The total number of members in the group conversation.";
|
|
9679
|
+
};
|
|
9655
9680
|
readonly joinLink: {
|
|
9656
9681
|
readonly type: "ref";
|
|
9657
9682
|
readonly ref: "lex:chat.bsky.group.defs#joinLinkView";
|
|
@@ -9841,7 +9866,7 @@ export declare const schemaDict: {
|
|
|
9841
9866
|
readonly logAddMember: {
|
|
9842
9867
|
readonly 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).";
|
|
9843
9868
|
readonly type: "object";
|
|
9844
|
-
readonly required: ["rev", "convoId", "message"];
|
|
9869
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
9845
9870
|
readonly properties: {
|
|
9846
9871
|
readonly rev: {
|
|
9847
9872
|
readonly type: "string";
|
|
@@ -9850,15 +9875,24 @@ export declare const schemaDict: {
|
|
|
9850
9875
|
readonly type: "string";
|
|
9851
9876
|
};
|
|
9852
9877
|
readonly message: {
|
|
9878
|
+
readonly description: "A system message with data of type #systemMessageDataAddMember";
|
|
9853
9879
|
readonly type: "ref";
|
|
9854
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
9880
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
9881
|
+
};
|
|
9882
|
+
readonly relatedProfiles: {
|
|
9883
|
+
readonly description: "Profiles referred in the system message.";
|
|
9884
|
+
readonly type: "array";
|
|
9885
|
+
readonly items: {
|
|
9886
|
+
readonly type: "ref";
|
|
9887
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
9888
|
+
};
|
|
9855
9889
|
};
|
|
9856
9890
|
};
|
|
9857
9891
|
};
|
|
9858
9892
|
readonly logRemoveMember: {
|
|
9859
9893
|
readonly 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).";
|
|
9860
9894
|
readonly type: "object";
|
|
9861
|
-
readonly required: ["rev", "convoId", "message"];
|
|
9895
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
9862
9896
|
readonly properties: {
|
|
9863
9897
|
readonly rev: {
|
|
9864
9898
|
readonly type: "string";
|
|
@@ -9867,15 +9901,24 @@ export declare const schemaDict: {
|
|
|
9867
9901
|
readonly type: "string";
|
|
9868
9902
|
};
|
|
9869
9903
|
readonly message: {
|
|
9904
|
+
readonly description: "A system message with data of type #systemMessageDataRemoveMember";
|
|
9870
9905
|
readonly type: "ref";
|
|
9871
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
9906
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
9907
|
+
};
|
|
9908
|
+
readonly relatedProfiles: {
|
|
9909
|
+
readonly description: "Profiles referred in the system message.";
|
|
9910
|
+
readonly type: "array";
|
|
9911
|
+
readonly items: {
|
|
9912
|
+
readonly type: "ref";
|
|
9913
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
9914
|
+
};
|
|
9872
9915
|
};
|
|
9873
9916
|
};
|
|
9874
9917
|
};
|
|
9875
9918
|
readonly logMemberJoin: {
|
|
9876
9919
|
readonly 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).";
|
|
9877
9920
|
readonly type: "object";
|
|
9878
|
-
readonly required: ["rev", "convoId", "message"];
|
|
9921
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
9879
9922
|
readonly properties: {
|
|
9880
9923
|
readonly rev: {
|
|
9881
9924
|
readonly type: "string";
|
|
@@ -9884,15 +9927,24 @@ export declare const schemaDict: {
|
|
|
9884
9927
|
readonly type: "string";
|
|
9885
9928
|
};
|
|
9886
9929
|
readonly message: {
|
|
9930
|
+
readonly description: "A system message with data of type #systemMessageDataMemberJoin";
|
|
9887
9931
|
readonly type: "ref";
|
|
9888
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
9932
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
9933
|
+
};
|
|
9934
|
+
readonly relatedProfiles: {
|
|
9935
|
+
readonly description: "Profiles referred in the system message.";
|
|
9936
|
+
readonly type: "array";
|
|
9937
|
+
readonly items: {
|
|
9938
|
+
readonly type: "ref";
|
|
9939
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
9940
|
+
};
|
|
9889
9941
|
};
|
|
9890
9942
|
};
|
|
9891
9943
|
};
|
|
9892
9944
|
readonly logMemberLeave: {
|
|
9893
9945
|
readonly 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).";
|
|
9894
9946
|
readonly type: "object";
|
|
9895
|
-
readonly required: ["rev", "convoId", "message"];
|
|
9947
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
9896
9948
|
readonly properties: {
|
|
9897
9949
|
readonly rev: {
|
|
9898
9950
|
readonly type: "string";
|
|
@@ -9901,15 +9953,24 @@ export declare const schemaDict: {
|
|
|
9901
9953
|
readonly type: "string";
|
|
9902
9954
|
};
|
|
9903
9955
|
readonly message: {
|
|
9956
|
+
readonly description: "A system message with data of type #systemMessageDataMemberLeave";
|
|
9904
9957
|
readonly type: "ref";
|
|
9905
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
9958
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
9959
|
+
};
|
|
9960
|
+
readonly relatedProfiles: {
|
|
9961
|
+
readonly description: "Profiles referred in the system message.";
|
|
9962
|
+
readonly type: "array";
|
|
9963
|
+
readonly items: {
|
|
9964
|
+
readonly type: "ref";
|
|
9965
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
9966
|
+
};
|
|
9906
9967
|
};
|
|
9907
9968
|
};
|
|
9908
9969
|
};
|
|
9909
9970
|
readonly logLockConvo: {
|
|
9910
9971
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked.";
|
|
9911
9972
|
readonly type: "object";
|
|
9912
|
-
readonly required: ["rev", "convoId", "message"];
|
|
9973
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
9913
9974
|
readonly properties: {
|
|
9914
9975
|
readonly rev: {
|
|
9915
9976
|
readonly type: "string";
|
|
@@ -9918,15 +9979,24 @@ export declare const schemaDict: {
|
|
|
9918
9979
|
readonly type: "string";
|
|
9919
9980
|
};
|
|
9920
9981
|
readonly message: {
|
|
9982
|
+
readonly description: "A system message with data of type #systemMessageDataLockConvo";
|
|
9921
9983
|
readonly type: "ref";
|
|
9922
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
9984
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
9985
|
+
};
|
|
9986
|
+
readonly relatedProfiles: {
|
|
9987
|
+
readonly description: "Profiles referred in the system message.";
|
|
9988
|
+
readonly type: "array";
|
|
9989
|
+
readonly items: {
|
|
9990
|
+
readonly type: "ref";
|
|
9991
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
9992
|
+
};
|
|
9923
9993
|
};
|
|
9924
9994
|
};
|
|
9925
9995
|
};
|
|
9926
9996
|
readonly logUnlockConvo: {
|
|
9927
9997
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was unlocked.";
|
|
9928
9998
|
readonly type: "object";
|
|
9929
|
-
readonly required: ["rev", "convoId", "message"];
|
|
9999
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
9930
10000
|
readonly properties: {
|
|
9931
10001
|
readonly rev: {
|
|
9932
10002
|
readonly type: "string";
|
|
@@ -9935,15 +10005,24 @@ export declare const schemaDict: {
|
|
|
9935
10005
|
readonly type: "string";
|
|
9936
10006
|
};
|
|
9937
10007
|
readonly message: {
|
|
10008
|
+
readonly description: "A system message with data of type #systemMessageDataUnlockConvo";
|
|
9938
10009
|
readonly type: "ref";
|
|
9939
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
10010
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
10011
|
+
};
|
|
10012
|
+
readonly relatedProfiles: {
|
|
10013
|
+
readonly description: "Profiles referred in the system message.";
|
|
10014
|
+
readonly type: "array";
|
|
10015
|
+
readonly items: {
|
|
10016
|
+
readonly type: "ref";
|
|
10017
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
10018
|
+
};
|
|
9940
10019
|
};
|
|
9941
10020
|
};
|
|
9942
10021
|
};
|
|
9943
10022
|
readonly logLockConvoPermanently: {
|
|
9944
10023
|
readonly 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.";
|
|
9945
10024
|
readonly type: "object";
|
|
9946
|
-
readonly required: ["rev", "convoId", "message"];
|
|
10025
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
9947
10026
|
readonly properties: {
|
|
9948
10027
|
readonly rev: {
|
|
9949
10028
|
readonly type: "string";
|
|
@@ -9952,8 +10031,17 @@ export declare const schemaDict: {
|
|
|
9952
10031
|
readonly type: "string";
|
|
9953
10032
|
};
|
|
9954
10033
|
readonly message: {
|
|
10034
|
+
readonly description: "A system message with data of type #systemMessageDataLockConvoPermanently";
|
|
9955
10035
|
readonly type: "ref";
|
|
9956
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
10036
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
10037
|
+
};
|
|
10038
|
+
readonly relatedProfiles: {
|
|
10039
|
+
readonly description: "Profiles referred in the system message.";
|
|
10040
|
+
readonly type: "array";
|
|
10041
|
+
readonly items: {
|
|
10042
|
+
readonly type: "ref";
|
|
10043
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
10044
|
+
};
|
|
9957
10045
|
};
|
|
9958
10046
|
};
|
|
9959
10047
|
};
|
|
@@ -9969,8 +10057,9 @@ export declare const schemaDict: {
|
|
|
9969
10057
|
readonly type: "string";
|
|
9970
10058
|
};
|
|
9971
10059
|
readonly message: {
|
|
10060
|
+
readonly description: "A system message with data of type #systemMessageDataEditGroup";
|
|
9972
10061
|
readonly type: "ref";
|
|
9973
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
10062
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
9974
10063
|
};
|
|
9975
10064
|
};
|
|
9976
10065
|
};
|
|
@@ -9986,8 +10075,9 @@ export declare const schemaDict: {
|
|
|
9986
10075
|
readonly type: "string";
|
|
9987
10076
|
};
|
|
9988
10077
|
readonly message: {
|
|
10078
|
+
readonly description: "A system message with data of type #systemMessageDataCreateJoinLink";
|
|
9989
10079
|
readonly type: "ref";
|
|
9990
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
10080
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
9991
10081
|
};
|
|
9992
10082
|
};
|
|
9993
10083
|
};
|
|
@@ -10003,8 +10093,9 @@ export declare const schemaDict: {
|
|
|
10003
10093
|
readonly type: "string";
|
|
10004
10094
|
};
|
|
10005
10095
|
readonly message: {
|
|
10096
|
+
readonly description: "A system message with data of type #systemMessageDataEditJoinLink";
|
|
10006
10097
|
readonly type: "ref";
|
|
10007
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
10098
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
10008
10099
|
};
|
|
10009
10100
|
};
|
|
10010
10101
|
};
|
|
@@ -10020,8 +10111,9 @@ export declare const schemaDict: {
|
|
|
10020
10111
|
readonly type: "string";
|
|
10021
10112
|
};
|
|
10022
10113
|
readonly message: {
|
|
10114
|
+
readonly description: "A system message with data of type #systemMessageDataEnableJoinLink";
|
|
10023
10115
|
readonly type: "ref";
|
|
10024
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
10116
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
10025
10117
|
};
|
|
10026
10118
|
};
|
|
10027
10119
|
};
|
|
@@ -10037,8 +10129,9 @@ export declare const schemaDict: {
|
|
|
10037
10129
|
readonly type: "string";
|
|
10038
10130
|
};
|
|
10039
10131
|
readonly message: {
|
|
10132
|
+
readonly description: "A system message with data of type #systemMessageDataDisableJoinLink";
|
|
10040
10133
|
readonly type: "ref";
|
|
10041
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
10134
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
10042
10135
|
};
|
|
10043
10136
|
};
|
|
10044
10137
|
};
|
|
@@ -10274,6 +10367,56 @@ export declare const schemaDict: {
|
|
|
10274
10367
|
};
|
|
10275
10368
|
};
|
|
10276
10369
|
};
|
|
10370
|
+
readonly ChatBskyConvoGetConvoMembers: {
|
|
10371
|
+
readonly lexicon: 1;
|
|
10372
|
+
readonly id: "chat.bsky.convo.getConvoMembers";
|
|
10373
|
+
readonly defs: {
|
|
10374
|
+
readonly main: {
|
|
10375
|
+
readonly type: "query";
|
|
10376
|
+
readonly description: "Returns a paginated list of members from a conversation.";
|
|
10377
|
+
readonly errors: [{
|
|
10378
|
+
readonly name: "InvalidConvo";
|
|
10379
|
+
}];
|
|
10380
|
+
readonly parameters: {
|
|
10381
|
+
readonly type: "params";
|
|
10382
|
+
readonly required: ["convoId"];
|
|
10383
|
+
readonly properties: {
|
|
10384
|
+
readonly convoId: {
|
|
10385
|
+
readonly type: "string";
|
|
10386
|
+
};
|
|
10387
|
+
readonly limit: {
|
|
10388
|
+
readonly type: "integer";
|
|
10389
|
+
readonly minimum: 1;
|
|
10390
|
+
readonly maximum: 100;
|
|
10391
|
+
readonly default: 50;
|
|
10392
|
+
};
|
|
10393
|
+
readonly cursor: {
|
|
10394
|
+
readonly type: "string";
|
|
10395
|
+
};
|
|
10396
|
+
};
|
|
10397
|
+
};
|
|
10398
|
+
readonly output: {
|
|
10399
|
+
readonly encoding: "application/json";
|
|
10400
|
+
readonly schema: {
|
|
10401
|
+
readonly type: "object";
|
|
10402
|
+
readonly required: ["members"];
|
|
10403
|
+
readonly properties: {
|
|
10404
|
+
readonly cursor: {
|
|
10405
|
+
readonly type: "string";
|
|
10406
|
+
};
|
|
10407
|
+
readonly members: {
|
|
10408
|
+
readonly type: "array";
|
|
10409
|
+
readonly items: {
|
|
10410
|
+
readonly type: "ref";
|
|
10411
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
10412
|
+
};
|
|
10413
|
+
};
|
|
10414
|
+
};
|
|
10415
|
+
};
|
|
10416
|
+
};
|
|
10417
|
+
};
|
|
10418
|
+
};
|
|
10419
|
+
};
|
|
10277
10420
|
readonly ChatBskyConvoGetLog: {
|
|
10278
10421
|
readonly lexicon: 1;
|
|
10279
10422
|
readonly id: "chat.bsky.convo.getLog";
|
|
@@ -10355,6 +10498,14 @@ export declare const schemaDict: {
|
|
|
10355
10498
|
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#systemMessageView"];
|
|
10356
10499
|
};
|
|
10357
10500
|
};
|
|
10501
|
+
readonly relatedProfiles: {
|
|
10502
|
+
readonly description: "Set of all members who authored or reacted to the returned messages. Members referred to by system messages are also included.";
|
|
10503
|
+
readonly type: "array";
|
|
10504
|
+
readonly items: {
|
|
10505
|
+
readonly type: "ref";
|
|
10506
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
10507
|
+
};
|
|
10508
|
+
};
|
|
10358
10509
|
};
|
|
10359
10510
|
};
|
|
10360
10511
|
};
|
|
@@ -10950,6 +11101,13 @@ export declare const schemaDict: {
|
|
|
10950
11101
|
readonly type: "ref";
|
|
10951
11102
|
readonly ref: "lex:chat.bsky.convo.defs#convoView";
|
|
10952
11103
|
};
|
|
11104
|
+
readonly addedMembers: {
|
|
11105
|
+
readonly type: "array";
|
|
11106
|
+
readonly items: {
|
|
11107
|
+
readonly type: "ref";
|
|
11108
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
11109
|
+
};
|
|
11110
|
+
};
|
|
10953
11111
|
};
|
|
10954
11112
|
};
|
|
10955
11113
|
};
|
|
@@ -21067,6 +21225,10 @@ export declare const schemas: ({
|
|
|
21067
21225
|
readonly type: "string";
|
|
21068
21226
|
readonly knownValues: ["all", "none", "following"];
|
|
21069
21227
|
};
|
|
21228
|
+
readonly allowGroupInvites: {
|
|
21229
|
+
readonly type: "string";
|
|
21230
|
+
readonly knownValues: ["all", "none", "following"];
|
|
21231
|
+
};
|
|
21070
21232
|
};
|
|
21071
21233
|
};
|
|
21072
21234
|
readonly profileAssociatedGerm: {
|
|
@@ -29770,7 +29932,7 @@ export declare const schemas: ({
|
|
|
29770
29932
|
readonly kind: {
|
|
29771
29933
|
readonly description: "Union field that has data specific to different kinds of convos.";
|
|
29772
29934
|
readonly type: "union";
|
|
29773
|
-
readonly refs: ["lex:chat.bsky.actor.defs#directConvoMember", "lex:chat.bsky.actor.defs#groupConvoMember"];
|
|
29935
|
+
readonly refs: ["lex:chat.bsky.actor.defs#directConvoMember", "lex:chat.bsky.actor.defs#groupConvoMember", "lex:chat.bsky.actor.defs#pastGroupConvoMember"];
|
|
29774
29936
|
};
|
|
29775
29937
|
};
|
|
29776
29938
|
};
|
|
@@ -29780,7 +29942,7 @@ export declare const schemas: ({
|
|
|
29780
29942
|
readonly properties: {};
|
|
29781
29943
|
};
|
|
29782
29944
|
readonly groupConvoMember: {
|
|
29783
|
-
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
|
|
29945
|
+
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.";
|
|
29784
29946
|
readonly type: "object";
|
|
29785
29947
|
readonly required: ["role"];
|
|
29786
29948
|
readonly properties: {
|
|
@@ -29796,6 +29958,12 @@ export declare const schemas: ({
|
|
|
29796
29958
|
};
|
|
29797
29959
|
};
|
|
29798
29960
|
};
|
|
29961
|
+
readonly pastGroupConvoMember: {
|
|
29962
|
+
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.";
|
|
29963
|
+
readonly type: "object";
|
|
29964
|
+
readonly required: [];
|
|
29965
|
+
readonly properties: {};
|
|
29966
|
+
};
|
|
29799
29967
|
};
|
|
29800
29968
|
} | {
|
|
29801
29969
|
readonly lexicon: 1;
|
|
@@ -30018,6 +30186,16 @@ export declare const schemas: ({
|
|
|
30018
30186
|
};
|
|
30019
30187
|
};
|
|
30020
30188
|
};
|
|
30189
|
+
readonly systemMessageReferredUser: {
|
|
30190
|
+
readonly type: "object";
|
|
30191
|
+
readonly required: ["did"];
|
|
30192
|
+
readonly properties: {
|
|
30193
|
+
readonly did: {
|
|
30194
|
+
readonly type: "string";
|
|
30195
|
+
readonly format: "did";
|
|
30196
|
+
};
|
|
30197
|
+
};
|
|
30198
|
+
};
|
|
30021
30199
|
readonly systemMessageView: {
|
|
30022
30200
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
|
|
30023
30201
|
readonly type: "object";
|
|
@@ -30047,7 +30225,7 @@ export declare const schemas: ({
|
|
|
30047
30225
|
readonly member: {
|
|
30048
30226
|
readonly description: "Current view of the member who was added.";
|
|
30049
30227
|
readonly type: "ref";
|
|
30050
|
-
readonly ref: "lex:chat.bsky.
|
|
30228
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30051
30229
|
};
|
|
30052
30230
|
readonly role: {
|
|
30053
30231
|
readonly description: "Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.";
|
|
@@ -30056,7 +30234,7 @@ export declare const schemas: ({
|
|
|
30056
30234
|
};
|
|
30057
30235
|
readonly addedBy: {
|
|
30058
30236
|
readonly type: "ref";
|
|
30059
|
-
readonly ref: "lex:chat.bsky.
|
|
30237
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30060
30238
|
};
|
|
30061
30239
|
};
|
|
30062
30240
|
};
|
|
@@ -30068,11 +30246,11 @@ export declare const schemas: ({
|
|
|
30068
30246
|
readonly member: {
|
|
30069
30247
|
readonly description: "Current view of the member who was removed.";
|
|
30070
30248
|
readonly type: "ref";
|
|
30071
|
-
readonly ref: "lex:chat.bsky.
|
|
30249
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30072
30250
|
};
|
|
30073
30251
|
readonly removedBy: {
|
|
30074
30252
|
readonly type: "ref";
|
|
30075
|
-
readonly ref: "lex:chat.bsky.
|
|
30253
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30076
30254
|
};
|
|
30077
30255
|
};
|
|
30078
30256
|
};
|
|
@@ -30084,7 +30262,7 @@ export declare const schemas: ({
|
|
|
30084
30262
|
readonly member: {
|
|
30085
30263
|
readonly description: "Current view of the member who joined.";
|
|
30086
30264
|
readonly type: "ref";
|
|
30087
|
-
readonly ref: "lex:chat.bsky.
|
|
30265
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30088
30266
|
};
|
|
30089
30267
|
readonly role: {
|
|
30090
30268
|
readonly description: "Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.";
|
|
@@ -30094,7 +30272,7 @@ export declare const schemas: ({
|
|
|
30094
30272
|
readonly approvedBy: {
|
|
30095
30273
|
readonly description: "If join link was configured to require approval, this will be set to who approved the request. Undefined if approval was not required.";
|
|
30096
30274
|
readonly type: "ref";
|
|
30097
|
-
readonly ref: "lex:chat.bsky.
|
|
30275
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30098
30276
|
};
|
|
30099
30277
|
};
|
|
30100
30278
|
};
|
|
@@ -30106,7 +30284,7 @@ export declare const schemas: ({
|
|
|
30106
30284
|
readonly member: {
|
|
30107
30285
|
readonly description: "Current view of the member who left the group.";
|
|
30108
30286
|
readonly type: "ref";
|
|
30109
|
-
readonly ref: "lex:chat.bsky.
|
|
30287
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30110
30288
|
};
|
|
30111
30289
|
};
|
|
30112
30290
|
};
|
|
@@ -30118,7 +30296,7 @@ export declare const schemas: ({
|
|
|
30118
30296
|
readonly lockedBy: {
|
|
30119
30297
|
readonly description: "Current view of the member who locked the group.";
|
|
30120
30298
|
readonly type: "ref";
|
|
30121
|
-
readonly ref: "lex:chat.bsky.
|
|
30299
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30122
30300
|
};
|
|
30123
30301
|
};
|
|
30124
30302
|
};
|
|
@@ -30130,7 +30308,7 @@ export declare const schemas: ({
|
|
|
30130
30308
|
readonly unlockedBy: {
|
|
30131
30309
|
readonly description: "Current view of the member who unlocked the group.";
|
|
30132
30310
|
readonly type: "ref";
|
|
30133
|
-
readonly ref: "lex:chat.bsky.
|
|
30311
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30134
30312
|
};
|
|
30135
30313
|
};
|
|
30136
30314
|
};
|
|
@@ -30142,7 +30320,7 @@ export declare const schemas: ({
|
|
|
30142
30320
|
readonly lockedBy: {
|
|
30143
30321
|
readonly description: "Current view of the member who locked the group.";
|
|
30144
30322
|
readonly type: "ref";
|
|
30145
|
-
readonly ref: "lex:chat.bsky.
|
|
30323
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageReferredUser";
|
|
30146
30324
|
};
|
|
30147
30325
|
};
|
|
30148
30326
|
};
|
|
@@ -30262,6 +30440,7 @@ export declare const schemas: ({
|
|
|
30262
30440
|
readonly type: "string";
|
|
30263
30441
|
};
|
|
30264
30442
|
readonly members: {
|
|
30443
|
+
readonly 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.";
|
|
30265
30444
|
readonly type: "array";
|
|
30266
30445
|
readonly items: {
|
|
30267
30446
|
readonly type: "ref";
|
|
@@ -30302,7 +30481,7 @@ export declare const schemas: ({
|
|
|
30302
30481
|
readonly groupConvo: {
|
|
30303
30482
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
|
|
30304
30483
|
readonly type: "object";
|
|
30305
|
-
readonly required: ["name", "lockStatus"];
|
|
30484
|
+
readonly required: ["name", "lockStatus", "memberCount"];
|
|
30306
30485
|
readonly properties: {
|
|
30307
30486
|
readonly name: {
|
|
30308
30487
|
readonly type: "string";
|
|
@@ -30310,6 +30489,10 @@ export declare const schemas: ({
|
|
|
30310
30489
|
readonly maxGraphemes: 128;
|
|
30311
30490
|
readonly maxLength: 1280;
|
|
30312
30491
|
};
|
|
30492
|
+
readonly memberCount: {
|
|
30493
|
+
readonly type: "integer";
|
|
30494
|
+
readonly description: "The total number of members in the group conversation.";
|
|
30495
|
+
};
|
|
30313
30496
|
readonly joinLink: {
|
|
30314
30497
|
readonly type: "ref";
|
|
30315
30498
|
readonly ref: "lex:chat.bsky.group.defs#joinLinkView";
|
|
@@ -30499,7 +30682,7 @@ export declare const schemas: ({
|
|
|
30499
30682
|
readonly logAddMember: {
|
|
30500
30683
|
readonly 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).";
|
|
30501
30684
|
readonly type: "object";
|
|
30502
|
-
readonly required: ["rev", "convoId", "message"];
|
|
30685
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
30503
30686
|
readonly properties: {
|
|
30504
30687
|
readonly rev: {
|
|
30505
30688
|
readonly type: "string";
|
|
@@ -30508,15 +30691,24 @@ export declare const schemas: ({
|
|
|
30508
30691
|
readonly type: "string";
|
|
30509
30692
|
};
|
|
30510
30693
|
readonly message: {
|
|
30694
|
+
readonly description: "A system message with data of type #systemMessageDataAddMember";
|
|
30511
30695
|
readonly type: "ref";
|
|
30512
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30696
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30697
|
+
};
|
|
30698
|
+
readonly relatedProfiles: {
|
|
30699
|
+
readonly description: "Profiles referred in the system message.";
|
|
30700
|
+
readonly type: "array";
|
|
30701
|
+
readonly items: {
|
|
30702
|
+
readonly type: "ref";
|
|
30703
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
30704
|
+
};
|
|
30513
30705
|
};
|
|
30514
30706
|
};
|
|
30515
30707
|
};
|
|
30516
30708
|
readonly logRemoveMember: {
|
|
30517
30709
|
readonly 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).";
|
|
30518
30710
|
readonly type: "object";
|
|
30519
|
-
readonly required: ["rev", "convoId", "message"];
|
|
30711
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
30520
30712
|
readonly properties: {
|
|
30521
30713
|
readonly rev: {
|
|
30522
30714
|
readonly type: "string";
|
|
@@ -30525,15 +30717,24 @@ export declare const schemas: ({
|
|
|
30525
30717
|
readonly type: "string";
|
|
30526
30718
|
};
|
|
30527
30719
|
readonly message: {
|
|
30720
|
+
readonly description: "A system message with data of type #systemMessageDataRemoveMember";
|
|
30528
30721
|
readonly type: "ref";
|
|
30529
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30722
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30723
|
+
};
|
|
30724
|
+
readonly relatedProfiles: {
|
|
30725
|
+
readonly description: "Profiles referred in the system message.";
|
|
30726
|
+
readonly type: "array";
|
|
30727
|
+
readonly items: {
|
|
30728
|
+
readonly type: "ref";
|
|
30729
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
30730
|
+
};
|
|
30530
30731
|
};
|
|
30531
30732
|
};
|
|
30532
30733
|
};
|
|
30533
30734
|
readonly logMemberJoin: {
|
|
30534
30735
|
readonly 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).";
|
|
30535
30736
|
readonly type: "object";
|
|
30536
|
-
readonly required: ["rev", "convoId", "message"];
|
|
30737
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
30537
30738
|
readonly properties: {
|
|
30538
30739
|
readonly rev: {
|
|
30539
30740
|
readonly type: "string";
|
|
@@ -30542,15 +30743,24 @@ export declare const schemas: ({
|
|
|
30542
30743
|
readonly type: "string";
|
|
30543
30744
|
};
|
|
30544
30745
|
readonly message: {
|
|
30746
|
+
readonly description: "A system message with data of type #systemMessageDataMemberJoin";
|
|
30545
30747
|
readonly type: "ref";
|
|
30546
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30748
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30749
|
+
};
|
|
30750
|
+
readonly relatedProfiles: {
|
|
30751
|
+
readonly description: "Profiles referred in the system message.";
|
|
30752
|
+
readonly type: "array";
|
|
30753
|
+
readonly items: {
|
|
30754
|
+
readonly type: "ref";
|
|
30755
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
30756
|
+
};
|
|
30547
30757
|
};
|
|
30548
30758
|
};
|
|
30549
30759
|
};
|
|
30550
30760
|
readonly logMemberLeave: {
|
|
30551
30761
|
readonly 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).";
|
|
30552
30762
|
readonly type: "object";
|
|
30553
|
-
readonly required: ["rev", "convoId", "message"];
|
|
30763
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
30554
30764
|
readonly properties: {
|
|
30555
30765
|
readonly rev: {
|
|
30556
30766
|
readonly type: "string";
|
|
@@ -30559,15 +30769,24 @@ export declare const schemas: ({
|
|
|
30559
30769
|
readonly type: "string";
|
|
30560
30770
|
};
|
|
30561
30771
|
readonly message: {
|
|
30772
|
+
readonly description: "A system message with data of type #systemMessageDataMemberLeave";
|
|
30562
30773
|
readonly type: "ref";
|
|
30563
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30774
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30775
|
+
};
|
|
30776
|
+
readonly relatedProfiles: {
|
|
30777
|
+
readonly description: "Profiles referred in the system message.";
|
|
30778
|
+
readonly type: "array";
|
|
30779
|
+
readonly items: {
|
|
30780
|
+
readonly type: "ref";
|
|
30781
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
30782
|
+
};
|
|
30564
30783
|
};
|
|
30565
30784
|
};
|
|
30566
30785
|
};
|
|
30567
30786
|
readonly logLockConvo: {
|
|
30568
30787
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked.";
|
|
30569
30788
|
readonly type: "object";
|
|
30570
|
-
readonly required: ["rev", "convoId", "message"];
|
|
30789
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
30571
30790
|
readonly properties: {
|
|
30572
30791
|
readonly rev: {
|
|
30573
30792
|
readonly type: "string";
|
|
@@ -30576,15 +30795,24 @@ export declare const schemas: ({
|
|
|
30576
30795
|
readonly type: "string";
|
|
30577
30796
|
};
|
|
30578
30797
|
readonly message: {
|
|
30798
|
+
readonly description: "A system message with data of type #systemMessageDataLockConvo";
|
|
30579
30799
|
readonly type: "ref";
|
|
30580
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30800
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30801
|
+
};
|
|
30802
|
+
readonly relatedProfiles: {
|
|
30803
|
+
readonly description: "Profiles referred in the system message.";
|
|
30804
|
+
readonly type: "array";
|
|
30805
|
+
readonly items: {
|
|
30806
|
+
readonly type: "ref";
|
|
30807
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
30808
|
+
};
|
|
30581
30809
|
};
|
|
30582
30810
|
};
|
|
30583
30811
|
};
|
|
30584
30812
|
readonly logUnlockConvo: {
|
|
30585
30813
|
readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was unlocked.";
|
|
30586
30814
|
readonly type: "object";
|
|
30587
|
-
readonly required: ["rev", "convoId", "message"];
|
|
30815
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
30588
30816
|
readonly properties: {
|
|
30589
30817
|
readonly rev: {
|
|
30590
30818
|
readonly type: "string";
|
|
@@ -30593,15 +30821,24 @@ export declare const schemas: ({
|
|
|
30593
30821
|
readonly type: "string";
|
|
30594
30822
|
};
|
|
30595
30823
|
readonly message: {
|
|
30824
|
+
readonly description: "A system message with data of type #systemMessageDataUnlockConvo";
|
|
30596
30825
|
readonly type: "ref";
|
|
30597
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30826
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30827
|
+
};
|
|
30828
|
+
readonly relatedProfiles: {
|
|
30829
|
+
readonly description: "Profiles referred in the system message.";
|
|
30830
|
+
readonly type: "array";
|
|
30831
|
+
readonly items: {
|
|
30832
|
+
readonly type: "ref";
|
|
30833
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
30834
|
+
};
|
|
30598
30835
|
};
|
|
30599
30836
|
};
|
|
30600
30837
|
};
|
|
30601
30838
|
readonly logLockConvoPermanently: {
|
|
30602
30839
|
readonly 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.";
|
|
30603
30840
|
readonly type: "object";
|
|
30604
|
-
readonly required: ["rev", "convoId", "message"];
|
|
30841
|
+
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
30605
30842
|
readonly properties: {
|
|
30606
30843
|
readonly rev: {
|
|
30607
30844
|
readonly type: "string";
|
|
@@ -30610,8 +30847,17 @@ export declare const schemas: ({
|
|
|
30610
30847
|
readonly type: "string";
|
|
30611
30848
|
};
|
|
30612
30849
|
readonly message: {
|
|
30850
|
+
readonly description: "A system message with data of type #systemMessageDataLockConvoPermanently";
|
|
30613
30851
|
readonly type: "ref";
|
|
30614
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30852
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30853
|
+
};
|
|
30854
|
+
readonly relatedProfiles: {
|
|
30855
|
+
readonly description: "Profiles referred in the system message.";
|
|
30856
|
+
readonly type: "array";
|
|
30857
|
+
readonly items: {
|
|
30858
|
+
readonly type: "ref";
|
|
30859
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
30860
|
+
};
|
|
30615
30861
|
};
|
|
30616
30862
|
};
|
|
30617
30863
|
};
|
|
@@ -30627,8 +30873,9 @@ export declare const schemas: ({
|
|
|
30627
30873
|
readonly type: "string";
|
|
30628
30874
|
};
|
|
30629
30875
|
readonly message: {
|
|
30876
|
+
readonly description: "A system message with data of type #systemMessageDataEditGroup";
|
|
30630
30877
|
readonly type: "ref";
|
|
30631
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30878
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30632
30879
|
};
|
|
30633
30880
|
};
|
|
30634
30881
|
};
|
|
@@ -30644,8 +30891,9 @@ export declare const schemas: ({
|
|
|
30644
30891
|
readonly type: "string";
|
|
30645
30892
|
};
|
|
30646
30893
|
readonly message: {
|
|
30894
|
+
readonly description: "A system message with data of type #systemMessageDataCreateJoinLink";
|
|
30647
30895
|
readonly type: "ref";
|
|
30648
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30896
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30649
30897
|
};
|
|
30650
30898
|
};
|
|
30651
30899
|
};
|
|
@@ -30661,8 +30909,9 @@ export declare const schemas: ({
|
|
|
30661
30909
|
readonly type: "string";
|
|
30662
30910
|
};
|
|
30663
30911
|
readonly message: {
|
|
30912
|
+
readonly description: "A system message with data of type #systemMessageDataEditJoinLink";
|
|
30664
30913
|
readonly type: "ref";
|
|
30665
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30914
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30666
30915
|
};
|
|
30667
30916
|
};
|
|
30668
30917
|
};
|
|
@@ -30678,8 +30927,9 @@ export declare const schemas: ({
|
|
|
30678
30927
|
readonly type: "string";
|
|
30679
30928
|
};
|
|
30680
30929
|
readonly message: {
|
|
30930
|
+
readonly description: "A system message with data of type #systemMessageDataEnableJoinLink";
|
|
30681
30931
|
readonly type: "ref";
|
|
30682
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30932
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30683
30933
|
};
|
|
30684
30934
|
};
|
|
30685
30935
|
};
|
|
@@ -30695,8 +30945,9 @@ export declare const schemas: ({
|
|
|
30695
30945
|
readonly type: "string";
|
|
30696
30946
|
};
|
|
30697
30947
|
readonly message: {
|
|
30948
|
+
readonly description: "A system message with data of type #systemMessageDataDisableJoinLink";
|
|
30698
30949
|
readonly type: "ref";
|
|
30699
|
-
readonly ref: "lex:chat.bsky.convo.defs#
|
|
30950
|
+
readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
|
|
30700
30951
|
};
|
|
30701
30952
|
};
|
|
30702
30953
|
};
|
|
@@ -30927,6 +31178,55 @@ export declare const schemas: ({
|
|
|
30927
31178
|
};
|
|
30928
31179
|
};
|
|
30929
31180
|
};
|
|
31181
|
+
} | {
|
|
31182
|
+
readonly lexicon: 1;
|
|
31183
|
+
readonly id: "chat.bsky.convo.getConvoMembers";
|
|
31184
|
+
readonly defs: {
|
|
31185
|
+
readonly main: {
|
|
31186
|
+
readonly type: "query";
|
|
31187
|
+
readonly description: "Returns a paginated list of members from a conversation.";
|
|
31188
|
+
readonly errors: [{
|
|
31189
|
+
readonly name: "InvalidConvo";
|
|
31190
|
+
}];
|
|
31191
|
+
readonly parameters: {
|
|
31192
|
+
readonly type: "params";
|
|
31193
|
+
readonly required: ["convoId"];
|
|
31194
|
+
readonly properties: {
|
|
31195
|
+
readonly convoId: {
|
|
31196
|
+
readonly type: "string";
|
|
31197
|
+
};
|
|
31198
|
+
readonly limit: {
|
|
31199
|
+
readonly type: "integer";
|
|
31200
|
+
readonly minimum: 1;
|
|
31201
|
+
readonly maximum: 100;
|
|
31202
|
+
readonly default: 50;
|
|
31203
|
+
};
|
|
31204
|
+
readonly cursor: {
|
|
31205
|
+
readonly type: "string";
|
|
31206
|
+
};
|
|
31207
|
+
};
|
|
31208
|
+
};
|
|
31209
|
+
readonly output: {
|
|
31210
|
+
readonly encoding: "application/json";
|
|
31211
|
+
readonly schema: {
|
|
31212
|
+
readonly type: "object";
|
|
31213
|
+
readonly required: ["members"];
|
|
31214
|
+
readonly properties: {
|
|
31215
|
+
readonly cursor: {
|
|
31216
|
+
readonly type: "string";
|
|
31217
|
+
};
|
|
31218
|
+
readonly members: {
|
|
31219
|
+
readonly type: "array";
|
|
31220
|
+
readonly items: {
|
|
31221
|
+
readonly type: "ref";
|
|
31222
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
31223
|
+
};
|
|
31224
|
+
};
|
|
31225
|
+
};
|
|
31226
|
+
};
|
|
31227
|
+
};
|
|
31228
|
+
};
|
|
31229
|
+
};
|
|
30930
31230
|
} | {
|
|
30931
31231
|
readonly lexicon: 1;
|
|
30932
31232
|
readonly id: "chat.bsky.convo.getLog";
|
|
@@ -31007,6 +31307,14 @@ export declare const schemas: ({
|
|
|
31007
31307
|
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#systemMessageView"];
|
|
31008
31308
|
};
|
|
31009
31309
|
};
|
|
31310
|
+
readonly relatedProfiles: {
|
|
31311
|
+
readonly description: "Set of all members who authored or reacted to the returned messages. Members referred to by system messages are also included.";
|
|
31312
|
+
readonly type: "array";
|
|
31313
|
+
readonly items: {
|
|
31314
|
+
readonly type: "ref";
|
|
31315
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
31316
|
+
};
|
|
31317
|
+
};
|
|
31010
31318
|
};
|
|
31011
31319
|
};
|
|
31012
31320
|
};
|
|
@@ -31589,6 +31897,13 @@ export declare const schemas: ({
|
|
|
31589
31897
|
readonly type: "ref";
|
|
31590
31898
|
readonly ref: "lex:chat.bsky.convo.defs#convoView";
|
|
31591
31899
|
};
|
|
31900
|
+
readonly addedMembers: {
|
|
31901
|
+
readonly type: "array";
|
|
31902
|
+
readonly items: {
|
|
31903
|
+
readonly type: "ref";
|
|
31904
|
+
readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
|
|
31905
|
+
};
|
|
31906
|
+
};
|
|
31592
31907
|
};
|
|
31593
31908
|
};
|
|
31594
31909
|
};
|
|
@@ -41447,6 +41762,7 @@ export declare const ids: {
|
|
|
41447
41762
|
readonly ChatBskyConvoGetConvo: "chat.bsky.convo.getConvo";
|
|
41448
41763
|
readonly ChatBskyConvoGetConvoAvailability: "chat.bsky.convo.getConvoAvailability";
|
|
41449
41764
|
readonly ChatBskyConvoGetConvoForMembers: "chat.bsky.convo.getConvoForMembers";
|
|
41765
|
+
readonly ChatBskyConvoGetConvoMembers: "chat.bsky.convo.getConvoMembers";
|
|
41450
41766
|
readonly ChatBskyConvoGetLog: "chat.bsky.convo.getLog";
|
|
41451
41767
|
readonly ChatBskyConvoGetMessages: "chat.bsky.convo.getMessages";
|
|
41452
41768
|
readonly ChatBskyConvoLeaveConvo: "chat.bsky.convo.leaveConvo";
|