@atproto/api 0.19.9 → 0.19.10

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.
Files changed (30) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/client/index.d.ts +3 -0
  3. package/dist/client/index.d.ts.map +1 -1
  4. package/dist/client/index.js +15 -6
  5. package/dist/client/index.js.map +1 -1
  6. package/dist/client/lexicons.d.ts +182 -26
  7. package/dist/client/lexicons.d.ts.map +1 -1
  8. package/dist/client/lexicons.js +94 -13
  9. package/dist/client/lexicons.js.map +1 -1
  10. package/dist/client/types/app/bsky/actor/defs.d.ts +1 -0
  11. package/dist/client/types/app/bsky/actor/defs.d.ts.map +1 -1
  12. package/dist/client/types/app/bsky/actor/defs.js.map +1 -1
  13. package/dist/client/types/chat/bsky/convo/defs.d.ts +15 -12
  14. package/dist/client/types/chat/bsky/convo/defs.d.ts.map +1 -1
  15. package/dist/client/types/chat/bsky/convo/defs.js.map +1 -1
  16. package/dist/client/types/chat/bsky/convo/getConvoMembers.d.ts +29 -0
  17. package/dist/client/types/chat/bsky/convo/getConvoMembers.d.ts.map +1 -0
  18. package/dist/client/types/chat/bsky/convo/getConvoMembers.js +26 -0
  19. package/dist/client/types/chat/bsky/convo/getConvoMembers.js.map +1 -0
  20. package/dist/client/types/chat/bsky/group/addMembers.d.ts +2 -0
  21. package/dist/client/types/chat/bsky/group/addMembers.d.ts.map +1 -1
  22. package/dist/client/types/chat/bsky/group/addMembers.js.map +1 -1
  23. package/package.json +1 -1
  24. package/src/client/index.ts +13 -0
  25. package/src/client/lexicons.ts +108 -13
  26. package/src/client/types/app/bsky/actor/defs.ts +1 -0
  27. package/src/client/types/chat/bsky/convo/defs.ts +15 -12
  28. package/src/client/types/chat/bsky/convo/getConvoMembers.ts +54 -0
  29. package/src/client/types/chat/bsky/group/addMembers.ts +2 -0
  30. 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: {
@@ -9604,6 +9608,7 @@ export declare const schemaDict: {
9604
9608
  readonly type: "string";
9605
9609
  };
9606
9610
  readonly members: {
9611
+ 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
9612
  readonly type: "array";
9608
9613
  readonly items: {
9609
9614
  readonly type: "ref";
@@ -9644,7 +9649,7 @@ export declare const schemaDict: {
9644
9649
  readonly groupConvo: {
9645
9650
  readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
9646
9651
  readonly type: "object";
9647
- readonly required: ["name", "lockStatus"];
9652
+ readonly required: ["name", "lockStatus", "memberCount"];
9648
9653
  readonly properties: {
9649
9654
  readonly name: {
9650
9655
  readonly type: "string";
@@ -9652,6 +9657,10 @@ export declare const schemaDict: {
9652
9657
  readonly maxGraphemes: 128;
9653
9658
  readonly maxLength: 1280;
9654
9659
  };
9660
+ readonly memberCount: {
9661
+ readonly type: "integer";
9662
+ readonly description: "The total number of members in the group conversation.";
9663
+ };
9655
9664
  readonly joinLink: {
9656
9665
  readonly type: "ref";
9657
9666
  readonly ref: "lex:chat.bsky.group.defs#joinLinkView";
@@ -9850,8 +9859,9 @@ export declare const schemaDict: {
9850
9859
  readonly type: "string";
9851
9860
  };
9852
9861
  readonly message: {
9862
+ readonly description: "A system message with data of type #systemMessageDataAddMember";
9853
9863
  readonly type: "ref";
9854
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataAddMember";
9864
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9855
9865
  };
9856
9866
  };
9857
9867
  };
@@ -9867,8 +9877,9 @@ export declare const schemaDict: {
9867
9877
  readonly type: "string";
9868
9878
  };
9869
9879
  readonly message: {
9880
+ readonly description: "A system message with data of type #systemMessageDataRemoveMember";
9870
9881
  readonly type: "ref";
9871
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataRemoveMember";
9882
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9872
9883
  };
9873
9884
  };
9874
9885
  };
@@ -9884,8 +9895,9 @@ export declare const schemaDict: {
9884
9895
  readonly type: "string";
9885
9896
  };
9886
9897
  readonly message: {
9898
+ readonly description: "A system message with data of type #systemMessageDataMemberJoin";
9887
9899
  readonly type: "ref";
9888
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataMemberJoin";
9900
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9889
9901
  };
9890
9902
  };
9891
9903
  };
@@ -9901,8 +9913,9 @@ export declare const schemaDict: {
9901
9913
  readonly type: "string";
9902
9914
  };
9903
9915
  readonly message: {
9916
+ readonly description: "A system message with data of type #systemMessageDataMemberLeave";
9904
9917
  readonly type: "ref";
9905
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataMemberLeave";
9918
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9906
9919
  };
9907
9920
  };
9908
9921
  };
@@ -9918,8 +9931,9 @@ export declare const schemaDict: {
9918
9931
  readonly type: "string";
9919
9932
  };
9920
9933
  readonly message: {
9934
+ readonly description: "A system message with data of type #systemMessageDataLockConvo";
9921
9935
  readonly type: "ref";
9922
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataLockConvo";
9936
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9923
9937
  };
9924
9938
  };
9925
9939
  };
@@ -9935,8 +9949,9 @@ export declare const schemaDict: {
9935
9949
  readonly type: "string";
9936
9950
  };
9937
9951
  readonly message: {
9952
+ readonly description: "A system message with data of type #systemMessageDataUnlockConvo";
9938
9953
  readonly type: "ref";
9939
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataUnlockConvo";
9954
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9940
9955
  };
9941
9956
  };
9942
9957
  };
@@ -9952,8 +9967,9 @@ export declare const schemaDict: {
9952
9967
  readonly type: "string";
9953
9968
  };
9954
9969
  readonly message: {
9970
+ readonly description: "A system message with data of type #systemMessageDataLockConvoPermanently";
9955
9971
  readonly type: "ref";
9956
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataLockConvoPermanently";
9972
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9957
9973
  };
9958
9974
  };
9959
9975
  };
@@ -9969,8 +9985,9 @@ export declare const schemaDict: {
9969
9985
  readonly type: "string";
9970
9986
  };
9971
9987
  readonly message: {
9988
+ readonly description: "A system message with data of type #systemMessageDataEditGroup";
9972
9989
  readonly type: "ref";
9973
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEditGroup";
9990
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9974
9991
  };
9975
9992
  };
9976
9993
  };
@@ -9986,8 +10003,9 @@ export declare const schemaDict: {
9986
10003
  readonly type: "string";
9987
10004
  };
9988
10005
  readonly message: {
10006
+ readonly description: "A system message with data of type #systemMessageDataCreateJoinLink";
9989
10007
  readonly type: "ref";
9990
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataCreateJoinLink";
10008
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
9991
10009
  };
9992
10010
  };
9993
10011
  };
@@ -10003,8 +10021,9 @@ export declare const schemaDict: {
10003
10021
  readonly type: "string";
10004
10022
  };
10005
10023
  readonly message: {
10024
+ readonly description: "A system message with data of type #systemMessageDataEditJoinLink";
10006
10025
  readonly type: "ref";
10007
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEditJoinLink";
10026
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
10008
10027
  };
10009
10028
  };
10010
10029
  };
@@ -10020,8 +10039,9 @@ export declare const schemaDict: {
10020
10039
  readonly type: "string";
10021
10040
  };
10022
10041
  readonly message: {
10042
+ readonly description: "A system message with data of type #systemMessageDataEnableJoinLink";
10023
10043
  readonly type: "ref";
10024
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEnableJoinLink";
10044
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
10025
10045
  };
10026
10046
  };
10027
10047
  };
@@ -10037,8 +10057,9 @@ export declare const schemaDict: {
10037
10057
  readonly type: "string";
10038
10058
  };
10039
10059
  readonly message: {
10060
+ readonly description: "A system message with data of type #systemMessageDataDisableJoinLink";
10040
10061
  readonly type: "ref";
10041
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataDisableJoinLink";
10062
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
10042
10063
  };
10043
10064
  };
10044
10065
  };
@@ -10274,6 +10295,56 @@ export declare const schemaDict: {
10274
10295
  };
10275
10296
  };
10276
10297
  };
10298
+ readonly ChatBskyConvoGetConvoMembers: {
10299
+ readonly lexicon: 1;
10300
+ readonly id: "chat.bsky.convo.getConvoMembers";
10301
+ readonly defs: {
10302
+ readonly main: {
10303
+ readonly type: "query";
10304
+ readonly description: "Returns a paginated list of members from a conversation.";
10305
+ readonly errors: [{
10306
+ readonly name: "InvalidConvo";
10307
+ }];
10308
+ readonly parameters: {
10309
+ readonly type: "params";
10310
+ readonly required: ["convoId"];
10311
+ readonly properties: {
10312
+ readonly convoId: {
10313
+ readonly type: "string";
10314
+ };
10315
+ readonly limit: {
10316
+ readonly type: "integer";
10317
+ readonly minimum: 1;
10318
+ readonly maximum: 100;
10319
+ readonly default: 50;
10320
+ };
10321
+ readonly cursor: {
10322
+ readonly type: "string";
10323
+ };
10324
+ };
10325
+ };
10326
+ readonly output: {
10327
+ readonly encoding: "application/json";
10328
+ readonly schema: {
10329
+ readonly type: "object";
10330
+ readonly required: ["members"];
10331
+ readonly properties: {
10332
+ readonly cursor: {
10333
+ readonly type: "string";
10334
+ };
10335
+ readonly members: {
10336
+ readonly type: "array";
10337
+ readonly items: {
10338
+ readonly type: "ref";
10339
+ readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
10340
+ };
10341
+ };
10342
+ };
10343
+ };
10344
+ };
10345
+ };
10346
+ };
10347
+ };
10277
10348
  readonly ChatBskyConvoGetLog: {
10278
10349
  readonly lexicon: 1;
10279
10350
  readonly id: "chat.bsky.convo.getLog";
@@ -10950,6 +11021,13 @@ export declare const schemaDict: {
10950
11021
  readonly type: "ref";
10951
11022
  readonly ref: "lex:chat.bsky.convo.defs#convoView";
10952
11023
  };
11024
+ readonly addedMembers: {
11025
+ readonly type: "array";
11026
+ readonly items: {
11027
+ readonly type: "ref";
11028
+ readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
11029
+ };
11030
+ };
10953
11031
  };
10954
11032
  };
10955
11033
  };
@@ -21067,6 +21145,10 @@ export declare const schemas: ({
21067
21145
  readonly type: "string";
21068
21146
  readonly knownValues: ["all", "none", "following"];
21069
21147
  };
21148
+ readonly allowGroupInvites: {
21149
+ readonly type: "string";
21150
+ readonly knownValues: ["all", "none", "following"];
21151
+ };
21070
21152
  };
21071
21153
  };
21072
21154
  readonly profileAssociatedGerm: {
@@ -30262,6 +30344,7 @@ export declare const schemas: ({
30262
30344
  readonly type: "string";
30263
30345
  };
30264
30346
  readonly members: {
30347
+ 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
30348
  readonly type: "array";
30266
30349
  readonly items: {
30267
30350
  readonly type: "ref";
@@ -30302,7 +30385,7 @@ export declare const schemas: ({
30302
30385
  readonly groupConvo: {
30303
30386
  readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
30304
30387
  readonly type: "object";
30305
- readonly required: ["name", "lockStatus"];
30388
+ readonly required: ["name", "lockStatus", "memberCount"];
30306
30389
  readonly properties: {
30307
30390
  readonly name: {
30308
30391
  readonly type: "string";
@@ -30310,6 +30393,10 @@ export declare const schemas: ({
30310
30393
  readonly maxGraphemes: 128;
30311
30394
  readonly maxLength: 1280;
30312
30395
  };
30396
+ readonly memberCount: {
30397
+ readonly type: "integer";
30398
+ readonly description: "The total number of members in the group conversation.";
30399
+ };
30313
30400
  readonly joinLink: {
30314
30401
  readonly type: "ref";
30315
30402
  readonly ref: "lex:chat.bsky.group.defs#joinLinkView";
@@ -30508,8 +30595,9 @@ export declare const schemas: ({
30508
30595
  readonly type: "string";
30509
30596
  };
30510
30597
  readonly message: {
30598
+ readonly description: "A system message with data of type #systemMessageDataAddMember";
30511
30599
  readonly type: "ref";
30512
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataAddMember";
30600
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30513
30601
  };
30514
30602
  };
30515
30603
  };
@@ -30525,8 +30613,9 @@ export declare const schemas: ({
30525
30613
  readonly type: "string";
30526
30614
  };
30527
30615
  readonly message: {
30616
+ readonly description: "A system message with data of type #systemMessageDataRemoveMember";
30528
30617
  readonly type: "ref";
30529
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataRemoveMember";
30618
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30530
30619
  };
30531
30620
  };
30532
30621
  };
@@ -30542,8 +30631,9 @@ export declare const schemas: ({
30542
30631
  readonly type: "string";
30543
30632
  };
30544
30633
  readonly message: {
30634
+ readonly description: "A system message with data of type #systemMessageDataMemberJoin";
30545
30635
  readonly type: "ref";
30546
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataMemberJoin";
30636
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30547
30637
  };
30548
30638
  };
30549
30639
  };
@@ -30559,8 +30649,9 @@ export declare const schemas: ({
30559
30649
  readonly type: "string";
30560
30650
  };
30561
30651
  readonly message: {
30652
+ readonly description: "A system message with data of type #systemMessageDataMemberLeave";
30562
30653
  readonly type: "ref";
30563
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataMemberLeave";
30654
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30564
30655
  };
30565
30656
  };
30566
30657
  };
@@ -30576,8 +30667,9 @@ export declare const schemas: ({
30576
30667
  readonly type: "string";
30577
30668
  };
30578
30669
  readonly message: {
30670
+ readonly description: "A system message with data of type #systemMessageDataLockConvo";
30579
30671
  readonly type: "ref";
30580
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataLockConvo";
30672
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30581
30673
  };
30582
30674
  };
30583
30675
  };
@@ -30593,8 +30685,9 @@ export declare const schemas: ({
30593
30685
  readonly type: "string";
30594
30686
  };
30595
30687
  readonly message: {
30688
+ readonly description: "A system message with data of type #systemMessageDataUnlockConvo";
30596
30689
  readonly type: "ref";
30597
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataUnlockConvo";
30690
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30598
30691
  };
30599
30692
  };
30600
30693
  };
@@ -30610,8 +30703,9 @@ export declare const schemas: ({
30610
30703
  readonly type: "string";
30611
30704
  };
30612
30705
  readonly message: {
30706
+ readonly description: "A system message with data of type #systemMessageDataLockConvoPermanently";
30613
30707
  readonly type: "ref";
30614
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataLockConvoPermanently";
30708
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30615
30709
  };
30616
30710
  };
30617
30711
  };
@@ -30627,8 +30721,9 @@ export declare const schemas: ({
30627
30721
  readonly type: "string";
30628
30722
  };
30629
30723
  readonly message: {
30724
+ readonly description: "A system message with data of type #systemMessageDataEditGroup";
30630
30725
  readonly type: "ref";
30631
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEditGroup";
30726
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30632
30727
  };
30633
30728
  };
30634
30729
  };
@@ -30644,8 +30739,9 @@ export declare const schemas: ({
30644
30739
  readonly type: "string";
30645
30740
  };
30646
30741
  readonly message: {
30742
+ readonly description: "A system message with data of type #systemMessageDataCreateJoinLink";
30647
30743
  readonly type: "ref";
30648
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataCreateJoinLink";
30744
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30649
30745
  };
30650
30746
  };
30651
30747
  };
@@ -30661,8 +30757,9 @@ export declare const schemas: ({
30661
30757
  readonly type: "string";
30662
30758
  };
30663
30759
  readonly message: {
30760
+ readonly description: "A system message with data of type #systemMessageDataEditJoinLink";
30664
30761
  readonly type: "ref";
30665
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEditJoinLink";
30762
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30666
30763
  };
30667
30764
  };
30668
30765
  };
@@ -30678,8 +30775,9 @@ export declare const schemas: ({
30678
30775
  readonly type: "string";
30679
30776
  };
30680
30777
  readonly message: {
30778
+ readonly description: "A system message with data of type #systemMessageDataEnableJoinLink";
30681
30779
  readonly type: "ref";
30682
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEnableJoinLink";
30780
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30683
30781
  };
30684
30782
  };
30685
30783
  };
@@ -30695,8 +30793,9 @@ export declare const schemas: ({
30695
30793
  readonly type: "string";
30696
30794
  };
30697
30795
  readonly message: {
30796
+ readonly description: "A system message with data of type #systemMessageDataDisableJoinLink";
30698
30797
  readonly type: "ref";
30699
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataDisableJoinLink";
30798
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30700
30799
  };
30701
30800
  };
30702
30801
  };
@@ -30927,6 +31026,55 @@ export declare const schemas: ({
30927
31026
  };
30928
31027
  };
30929
31028
  };
31029
+ } | {
31030
+ readonly lexicon: 1;
31031
+ readonly id: "chat.bsky.convo.getConvoMembers";
31032
+ readonly defs: {
31033
+ readonly main: {
31034
+ readonly type: "query";
31035
+ readonly description: "Returns a paginated list of members from a conversation.";
31036
+ readonly errors: [{
31037
+ readonly name: "InvalidConvo";
31038
+ }];
31039
+ readonly parameters: {
31040
+ readonly type: "params";
31041
+ readonly required: ["convoId"];
31042
+ readonly properties: {
31043
+ readonly convoId: {
31044
+ readonly type: "string";
31045
+ };
31046
+ readonly limit: {
31047
+ readonly type: "integer";
31048
+ readonly minimum: 1;
31049
+ readonly maximum: 100;
31050
+ readonly default: 50;
31051
+ };
31052
+ readonly cursor: {
31053
+ readonly type: "string";
31054
+ };
31055
+ };
31056
+ };
31057
+ readonly output: {
31058
+ readonly encoding: "application/json";
31059
+ readonly schema: {
31060
+ readonly type: "object";
31061
+ readonly required: ["members"];
31062
+ readonly properties: {
31063
+ readonly cursor: {
31064
+ readonly type: "string";
31065
+ };
31066
+ readonly members: {
31067
+ readonly type: "array";
31068
+ readonly items: {
31069
+ readonly type: "ref";
31070
+ readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
31071
+ };
31072
+ };
31073
+ };
31074
+ };
31075
+ };
31076
+ };
31077
+ };
30930
31078
  } | {
30931
31079
  readonly lexicon: 1;
30932
31080
  readonly id: "chat.bsky.convo.getLog";
@@ -31589,6 +31737,13 @@ export declare const schemas: ({
31589
31737
  readonly type: "ref";
31590
31738
  readonly ref: "lex:chat.bsky.convo.defs#convoView";
31591
31739
  };
31740
+ readonly addedMembers: {
31741
+ readonly type: "array";
31742
+ readonly items: {
31743
+ readonly type: "ref";
31744
+ readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
31745
+ };
31746
+ };
31592
31747
  };
31593
31748
  };
31594
31749
  };
@@ -41447,6 +41602,7 @@ export declare const ids: {
41447
41602
  readonly ChatBskyConvoGetConvo: "chat.bsky.convo.getConvo";
41448
41603
  readonly ChatBskyConvoGetConvoAvailability: "chat.bsky.convo.getConvoAvailability";
41449
41604
  readonly ChatBskyConvoGetConvoForMembers: "chat.bsky.convo.getConvoForMembers";
41605
+ readonly ChatBskyConvoGetConvoMembers: "chat.bsky.convo.getConvoMembers";
41450
41606
  readonly ChatBskyConvoGetLog: "chat.bsky.convo.getLog";
41451
41607
  readonly ChatBskyConvoGetMessages: "chat.bsky.convo.getMessages";
41452
41608
  readonly ChatBskyConvoLeaveConvo: "chat.bsky.convo.leaveConvo";