@atproto/ozone 0.1.171 → 0.1.172

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 +9 -0
  2. package/dist/lexicon/index.d.ts +2 -0
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +4 -0
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +182 -26
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +94 -13
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/actor/defs.d.ts +1 -0
  11. package/dist/lexicon/types/app/bsky/actor/defs.d.ts.map +1 -1
  12. package/dist/lexicon/types/app/bsky/actor/defs.js.map +1 -1
  13. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +15 -12
  14. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
  15. package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
  16. package/dist/lexicon/types/chat/bsky/convo/getConvoMembers.d.ts +26 -0
  17. package/dist/lexicon/types/chat/bsky/convo/getConvoMembers.d.ts.map +1 -0
  18. package/dist/lexicon/types/chat/bsky/convo/getConvoMembers.js +7 -0
  19. package/dist/lexicon/types/chat/bsky/convo/getConvoMembers.js.map +1 -0
  20. package/dist/lexicon/types/chat/bsky/group/addMembers.d.ts +2 -0
  21. package/dist/lexicon/types/chat/bsky/group/addMembers.d.ts.map +1 -1
  22. package/dist/lexicon/types/chat/bsky/group/addMembers.js.map +1 -1
  23. package/package.json +5 -5
  24. package/src/lexicon/index.ts +13 -0
  25. package/src/lexicon/lexicons.ts +108 -13
  26. package/src/lexicon/types/app/bsky/actor/defs.ts +1 -0
  27. package/src/lexicon/types/chat/bsky/convo/defs.ts +15 -12
  28. package/src/lexicon/types/chat/bsky/convo/getConvoMembers.ts +44 -0
  29. package/src/lexicon/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
  };
@@ -21003,6 +21081,10 @@ export declare const schemas: ({
21003
21081
  readonly type: "string";
21004
21082
  readonly knownValues: ["all", "none", "following"];
21005
21083
  };
21084
+ readonly allowGroupInvites: {
21085
+ readonly type: "string";
21086
+ readonly knownValues: ["all", "none", "following"];
21087
+ };
21006
21088
  };
21007
21089
  };
21008
21090
  readonly profileAssociatedGerm: {
@@ -30198,6 +30280,7 @@ export declare const schemas: ({
30198
30280
  readonly type: "string";
30199
30281
  };
30200
30282
  readonly members: {
30283
+ 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.";
30201
30284
  readonly type: "array";
30202
30285
  readonly items: {
30203
30286
  readonly type: "ref";
@@ -30238,7 +30321,7 @@ export declare const schemas: ({
30238
30321
  readonly groupConvo: {
30239
30322
  readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here].";
30240
30323
  readonly type: "object";
30241
- readonly required: ["name", "lockStatus"];
30324
+ readonly required: ["name", "lockStatus", "memberCount"];
30242
30325
  readonly properties: {
30243
30326
  readonly name: {
30244
30327
  readonly type: "string";
@@ -30246,6 +30329,10 @@ export declare const schemas: ({
30246
30329
  readonly maxGraphemes: 128;
30247
30330
  readonly maxLength: 1280;
30248
30331
  };
30332
+ readonly memberCount: {
30333
+ readonly type: "integer";
30334
+ readonly description: "The total number of members in the group conversation.";
30335
+ };
30249
30336
  readonly joinLink: {
30250
30337
  readonly type: "ref";
30251
30338
  readonly ref: "lex:chat.bsky.group.defs#joinLinkView";
@@ -30444,8 +30531,9 @@ export declare const schemas: ({
30444
30531
  readonly type: "string";
30445
30532
  };
30446
30533
  readonly message: {
30534
+ readonly description: "A system message with data of type #systemMessageDataAddMember";
30447
30535
  readonly type: "ref";
30448
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataAddMember";
30536
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30449
30537
  };
30450
30538
  };
30451
30539
  };
@@ -30461,8 +30549,9 @@ export declare const schemas: ({
30461
30549
  readonly type: "string";
30462
30550
  };
30463
30551
  readonly message: {
30552
+ readonly description: "A system message with data of type #systemMessageDataRemoveMember";
30464
30553
  readonly type: "ref";
30465
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataRemoveMember";
30554
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30466
30555
  };
30467
30556
  };
30468
30557
  };
@@ -30478,8 +30567,9 @@ export declare const schemas: ({
30478
30567
  readonly type: "string";
30479
30568
  };
30480
30569
  readonly message: {
30570
+ readonly description: "A system message with data of type #systemMessageDataMemberJoin";
30481
30571
  readonly type: "ref";
30482
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataMemberJoin";
30572
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30483
30573
  };
30484
30574
  };
30485
30575
  };
@@ -30495,8 +30585,9 @@ export declare const schemas: ({
30495
30585
  readonly type: "string";
30496
30586
  };
30497
30587
  readonly message: {
30588
+ readonly description: "A system message with data of type #systemMessageDataMemberLeave";
30498
30589
  readonly type: "ref";
30499
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataMemberLeave";
30590
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30500
30591
  };
30501
30592
  };
30502
30593
  };
@@ -30512,8 +30603,9 @@ export declare const schemas: ({
30512
30603
  readonly type: "string";
30513
30604
  };
30514
30605
  readonly message: {
30606
+ readonly description: "A system message with data of type #systemMessageDataLockConvo";
30515
30607
  readonly type: "ref";
30516
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataLockConvo";
30608
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30517
30609
  };
30518
30610
  };
30519
30611
  };
@@ -30529,8 +30621,9 @@ export declare const schemas: ({
30529
30621
  readonly type: "string";
30530
30622
  };
30531
30623
  readonly message: {
30624
+ readonly description: "A system message with data of type #systemMessageDataUnlockConvo";
30532
30625
  readonly type: "ref";
30533
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataUnlockConvo";
30626
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30534
30627
  };
30535
30628
  };
30536
30629
  };
@@ -30546,8 +30639,9 @@ export declare const schemas: ({
30546
30639
  readonly type: "string";
30547
30640
  };
30548
30641
  readonly message: {
30642
+ readonly description: "A system message with data of type #systemMessageDataLockConvoPermanently";
30549
30643
  readonly type: "ref";
30550
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataLockConvoPermanently";
30644
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30551
30645
  };
30552
30646
  };
30553
30647
  };
@@ -30563,8 +30657,9 @@ export declare const schemas: ({
30563
30657
  readonly type: "string";
30564
30658
  };
30565
30659
  readonly message: {
30660
+ readonly description: "A system message with data of type #systemMessageDataEditGroup";
30566
30661
  readonly type: "ref";
30567
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEditGroup";
30662
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30568
30663
  };
30569
30664
  };
30570
30665
  };
@@ -30580,8 +30675,9 @@ export declare const schemas: ({
30580
30675
  readonly type: "string";
30581
30676
  };
30582
30677
  readonly message: {
30678
+ readonly description: "A system message with data of type #systemMessageDataCreateJoinLink";
30583
30679
  readonly type: "ref";
30584
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataCreateJoinLink";
30680
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30585
30681
  };
30586
30682
  };
30587
30683
  };
@@ -30597,8 +30693,9 @@ export declare const schemas: ({
30597
30693
  readonly type: "string";
30598
30694
  };
30599
30695
  readonly message: {
30696
+ readonly description: "A system message with data of type #systemMessageDataEditJoinLink";
30600
30697
  readonly type: "ref";
30601
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEditJoinLink";
30698
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30602
30699
  };
30603
30700
  };
30604
30701
  };
@@ -30614,8 +30711,9 @@ export declare const schemas: ({
30614
30711
  readonly type: "string";
30615
30712
  };
30616
30713
  readonly message: {
30714
+ readonly description: "A system message with data of type #systemMessageDataEnableJoinLink";
30617
30715
  readonly type: "ref";
30618
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataEnableJoinLink";
30716
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30619
30717
  };
30620
30718
  };
30621
30719
  };
@@ -30631,8 +30729,9 @@ export declare const schemas: ({
30631
30729
  readonly type: "string";
30632
30730
  };
30633
30731
  readonly message: {
30732
+ readonly description: "A system message with data of type #systemMessageDataDisableJoinLink";
30634
30733
  readonly type: "ref";
30635
- readonly ref: "lex:chat.bsky.convo.defs#systemMessageDataDisableJoinLink";
30734
+ readonly ref: "lex:chat.bsky.convo.defs#systemMessageView";
30636
30735
  };
30637
30736
  };
30638
30737
  };
@@ -30863,6 +30962,55 @@ export declare const schemas: ({
30863
30962
  };
30864
30963
  };
30865
30964
  };
30965
+ } | {
30966
+ readonly lexicon: 1;
30967
+ readonly id: "chat.bsky.convo.getConvoMembers";
30968
+ readonly defs: {
30969
+ readonly main: {
30970
+ readonly type: "query";
30971
+ readonly description: "Returns a paginated list of members from a conversation.";
30972
+ readonly errors: [{
30973
+ readonly name: "InvalidConvo";
30974
+ }];
30975
+ readonly parameters: {
30976
+ readonly type: "params";
30977
+ readonly required: ["convoId"];
30978
+ readonly properties: {
30979
+ readonly convoId: {
30980
+ readonly type: "string";
30981
+ };
30982
+ readonly limit: {
30983
+ readonly type: "integer";
30984
+ readonly minimum: 1;
30985
+ readonly maximum: 100;
30986
+ readonly default: 50;
30987
+ };
30988
+ readonly cursor: {
30989
+ readonly type: "string";
30990
+ };
30991
+ };
30992
+ };
30993
+ readonly output: {
30994
+ readonly encoding: "application/json";
30995
+ readonly schema: {
30996
+ readonly type: "object";
30997
+ readonly required: ["members"];
30998
+ readonly properties: {
30999
+ readonly cursor: {
31000
+ readonly type: "string";
31001
+ };
31002
+ readonly members: {
31003
+ readonly type: "array";
31004
+ readonly items: {
31005
+ readonly type: "ref";
31006
+ readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
31007
+ };
31008
+ };
31009
+ };
31010
+ };
31011
+ };
31012
+ };
31013
+ };
30866
31014
  } | {
30867
31015
  readonly lexicon: 1;
30868
31016
  readonly id: "chat.bsky.convo.getLog";
@@ -31525,6 +31673,13 @@ export declare const schemas: ({
31525
31673
  readonly type: "ref";
31526
31674
  readonly ref: "lex:chat.bsky.convo.defs#convoView";
31527
31675
  };
31676
+ readonly addedMembers: {
31677
+ readonly type: "array";
31678
+ readonly items: {
31679
+ readonly type: "ref";
31680
+ readonly ref: "lex:chat.bsky.actor.defs#profileViewBasic";
31681
+ };
31682
+ };
31528
31683
  };
31529
31684
  };
31530
31685
  };
@@ -41320,6 +41475,7 @@ export declare const ids: {
41320
41475
  readonly ChatBskyConvoGetConvo: "chat.bsky.convo.getConvo";
41321
41476
  readonly ChatBskyConvoGetConvoAvailability: "chat.bsky.convo.getConvoAvailability";
41322
41477
  readonly ChatBskyConvoGetConvoForMembers: "chat.bsky.convo.getConvoForMembers";
41478
+ readonly ChatBskyConvoGetConvoMembers: "chat.bsky.convo.getConvoMembers";
41323
41479
  readonly ChatBskyConvoGetLog: "chat.bsky.convo.getLog";
41324
41480
  readonly ChatBskyConvoGetMessages: "chat.bsky.convo.getMessages";
41325
41481
  readonly ChatBskyConvoLeaveConvo: "chat.bsky.convo.leaveConvo";