@atproto/api 0.20.16 → 0.20.18

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 (54) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/client/index.d.ts +18 -0
  3. package/dist/client/index.d.ts.map +1 -1
  4. package/dist/client/index.js +28 -0
  5. package/dist/client/index.js.map +1 -1
  6. package/dist/client/lexicons.d.ts +906 -134
  7. package/dist/client/lexicons.d.ts.map +1 -1
  8. package/dist/client/lexicons.js +460 -67
  9. package/dist/client/lexicons.js.map +1 -1
  10. package/dist/client/types/app/bsky/feed/searchPostsV2.d.ts +88 -0
  11. package/dist/client/types/app/bsky/feed/searchPostsV2.d.ts.map +1 -0
  12. package/dist/client/types/app/bsky/feed/searchPostsV2.js +21 -0
  13. package/dist/client/types/app/bsky/feed/searchPostsV2.js.map +1 -0
  14. package/dist/client/types/app/bsky/notification/defs.d.ts +1 -0
  15. package/dist/client/types/app/bsky/notification/defs.d.ts.map +1 -1
  16. package/dist/client/types/app/bsky/notification/defs.js.map +1 -1
  17. package/dist/client/types/chat/bsky/actor/declaration.d.ts +1 -1
  18. package/dist/client/types/chat/bsky/actor/declaration.d.ts.map +1 -1
  19. package/dist/client/types/chat/bsky/actor/declaration.js.map +1 -1
  20. package/dist/client/types/chat/bsky/actor/defs.d.ts +2 -3
  21. package/dist/client/types/chat/bsky/actor/defs.d.ts.map +1 -1
  22. package/dist/client/types/chat/bsky/actor/defs.js.map +1 -1
  23. package/dist/client/types/chat/bsky/convo/defs.d.ts +32 -35
  24. package/dist/client/types/chat/bsky/convo/defs.d.ts.map +1 -1
  25. package/dist/client/types/chat/bsky/convo/defs.js.map +1 -1
  26. package/dist/client/types/chat/bsky/moderation/defs.d.ts +3 -3
  27. package/dist/client/types/chat/bsky/moderation/defs.d.ts.map +1 -1
  28. package/dist/client/types/chat/bsky/moderation/defs.js.map +1 -1
  29. package/dist/client/types/chat/bsky/notification/defs.d.ts +19 -0
  30. package/dist/client/types/chat/bsky/notification/defs.d.ts.map +1 -0
  31. package/dist/client/types/chat/bsky/notification/defs.js +19 -0
  32. package/dist/client/types/chat/bsky/notification/defs.js.map +1 -0
  33. package/dist/client/types/chat/bsky/notification/getPreferences.d.ts +21 -0
  34. package/dist/client/types/chat/bsky/notification/getPreferences.d.ts.map +1 -0
  35. package/dist/client/types/chat/bsky/notification/getPreferences.js +8 -0
  36. package/dist/client/types/chat/bsky/notification/getPreferences.js.map +1 -0
  37. package/dist/client/types/chat/bsky/notification/putPreferences.d.ts +26 -0
  38. package/dist/client/types/chat/bsky/notification/putPreferences.d.ts.map +1 -0
  39. package/dist/client/types/chat/bsky/notification/putPreferences.js +8 -0
  40. package/dist/client/types/chat/bsky/notification/putPreferences.js.map +1 -0
  41. package/dist/client/types/tools/ozone/report/defs.d.ts +1 -0
  42. package/dist/client/types/tools/ozone/report/defs.d.ts.map +1 -1
  43. package/dist/client/types/tools/ozone/report/defs.js.map +1 -1
  44. package/dist/client/types/tools/ozone/report/queryActivities.d.ts +33 -0
  45. package/dist/client/types/tools/ozone/report/queryActivities.d.ts.map +1 -0
  46. package/dist/client/types/tools/ozone/report/queryActivities.js +8 -0
  47. package/dist/client/types/tools/ozone/report/queryActivities.js.map +1 -0
  48. package/package.json +2 -1
  49. package/tests/atp-agent.test.ts +1 -1
  50. package/tests/dispatcher.test.ts +5 -10
  51. package/tests/errors.test.ts +1 -1
  52. package/tests/moderation-prefs.test.ts +1 -1
  53. package/tests/util/echo-server.ts +18 -2
  54. package/tsconfig.build.tsbuildinfo +1 -1
@@ -4866,6 +4866,228 @@ export declare const schemaDict: {
4866
4866
  };
4867
4867
  };
4868
4868
  };
4869
+ readonly AppBskyFeedSearchPostsV2: {
4870
+ readonly lexicon: 1;
4871
+ readonly id: 'app.bsky.feed.searchPostsV2';
4872
+ readonly defs: {
4873
+ readonly main: {
4874
+ readonly type: 'query';
4875
+ readonly description: 'Find posts matching a search query or filters, returning search hits for matching post records.';
4876
+ readonly parameters: {
4877
+ readonly type: 'params';
4878
+ readonly required: ["sort"];
4879
+ readonly properties: {
4880
+ readonly cursor: {
4881
+ readonly type: 'string';
4882
+ readonly description: 'Optional pagination cursor.';
4883
+ };
4884
+ readonly limit: {
4885
+ readonly type: 'integer';
4886
+ readonly minimum: 1;
4887
+ readonly maximum: 100;
4888
+ readonly default: 25;
4889
+ readonly description: 'Maximum number of results to return.';
4890
+ };
4891
+ readonly query: {
4892
+ readonly type: 'string';
4893
+ readonly description: 'Search query string. A query or at least one filter is required.';
4894
+ };
4895
+ readonly sort: {
4896
+ readonly type: 'string';
4897
+ readonly knownValues: ["recent", "top"];
4898
+ readonly description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.";
4899
+ };
4900
+ readonly authors: {
4901
+ readonly type: 'array';
4902
+ readonly items: {
4903
+ readonly type: 'string';
4904
+ readonly format: 'at-identifier';
4905
+ };
4906
+ readonly description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.';
4907
+ };
4908
+ readonly mentions: {
4909
+ readonly type: 'array';
4910
+ readonly items: {
4911
+ readonly type: 'string';
4912
+ readonly format: 'at-identifier';
4913
+ };
4914
+ readonly description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
4915
+ };
4916
+ readonly domains: {
4917
+ readonly type: 'array';
4918
+ readonly items: {
4919
+ readonly type: 'string';
4920
+ };
4921
+ readonly description: 'Include posts that link to any of these domains.';
4922
+ };
4923
+ readonly urls: {
4924
+ readonly type: 'array';
4925
+ readonly items: {
4926
+ readonly type: 'string';
4927
+ readonly format: 'uri';
4928
+ };
4929
+ readonly description: 'Include posts that link to any of these URLs.';
4930
+ };
4931
+ readonly embeddedAtUris: {
4932
+ readonly type: 'array';
4933
+ readonly items: {
4934
+ readonly type: 'string';
4935
+ readonly format: 'at-uri';
4936
+ };
4937
+ readonly description: 'Include posts that embed any of these AT URIs.';
4938
+ };
4939
+ readonly hashtags: {
4940
+ readonly type: 'array';
4941
+ readonly items: {
4942
+ readonly type: 'string';
4943
+ readonly maxLength: 640;
4944
+ readonly maxGraphemes: 64;
4945
+ };
4946
+ readonly description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
4947
+ };
4948
+ readonly excludeAuthors: {
4949
+ readonly type: 'array';
4950
+ readonly items: {
4951
+ readonly type: 'string';
4952
+ readonly format: 'at-identifier';
4953
+ };
4954
+ readonly description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.';
4955
+ };
4956
+ readonly excludeMentions: {
4957
+ readonly type: 'array';
4958
+ readonly items: {
4959
+ readonly type: 'string';
4960
+ readonly format: 'at-identifier';
4961
+ };
4962
+ readonly description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
4963
+ };
4964
+ readonly excludeDomains: {
4965
+ readonly type: 'array';
4966
+ readonly items: {
4967
+ readonly type: 'string';
4968
+ };
4969
+ readonly description: 'Exclude posts that link to any of these domains.';
4970
+ };
4971
+ readonly excludeUrls: {
4972
+ readonly type: 'array';
4973
+ readonly items: {
4974
+ readonly type: 'string';
4975
+ readonly format: 'uri';
4976
+ };
4977
+ readonly description: 'Exclude posts that link to any of these URLs.';
4978
+ };
4979
+ readonly excludeEmbeddedAtUris: {
4980
+ readonly type: 'array';
4981
+ readonly items: {
4982
+ readonly type: 'string';
4983
+ readonly format: 'at-uri';
4984
+ };
4985
+ readonly description: 'Exclude posts that embed any of these AT URIs.';
4986
+ };
4987
+ readonly excludeHashtags: {
4988
+ readonly type: 'array';
4989
+ readonly items: {
4990
+ readonly type: 'string';
4991
+ readonly maxLength: 640;
4992
+ readonly maxGraphemes: 64;
4993
+ };
4994
+ readonly description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
4995
+ };
4996
+ readonly since: {
4997
+ readonly type: 'string';
4998
+ readonly format: 'datetime';
4999
+ readonly description: 'Include posts indexed at or after this timestamp.';
5000
+ };
5001
+ readonly until: {
5002
+ readonly type: 'string';
5003
+ readonly format: 'datetime';
5004
+ readonly description: 'Include posts indexed before this timestamp. Defaults to the current time.';
5005
+ };
5006
+ readonly allTime: {
5007
+ readonly type: 'boolean';
5008
+ readonly description: 'Search the full index instead of the recent-post window.';
5009
+ };
5010
+ readonly language: {
5011
+ readonly type: 'string';
5012
+ readonly format: 'language';
5013
+ readonly description: 'Include posts whose language matches this language code.';
5014
+ };
5015
+ readonly hasMedia: {
5016
+ readonly type: 'boolean';
5017
+ readonly description: 'Include only posts with media.';
5018
+ };
5019
+ readonly hasVideo: {
5020
+ readonly type: 'boolean';
5021
+ readonly description: 'Include only posts with video.';
5022
+ };
5023
+ readonly replyParentUri: {
5024
+ readonly type: 'string';
5025
+ readonly format: 'at-uri';
5026
+ readonly description: 'Include only direct replies to this parent post URI.';
5027
+ };
5028
+ readonly threadRootUri: {
5029
+ readonly type: 'string';
5030
+ readonly format: 'at-uri';
5031
+ readonly description: 'Include only posts in the thread rooted at this post URI.';
5032
+ };
5033
+ readonly excludeReplies: {
5034
+ readonly type: 'boolean';
5035
+ readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
5036
+ };
5037
+ readonly repliesOnly: {
5038
+ readonly type: 'boolean';
5039
+ readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
5040
+ };
5041
+ readonly following: {
5042
+ readonly type: 'boolean';
5043
+ readonly description: 'Include only posts from accounts followed by the viewer.';
5044
+ };
5045
+ readonly queryLanguage: {
5046
+ readonly type: 'string';
5047
+ readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
5048
+ readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
5049
+ };
5050
+ };
5051
+ };
5052
+ readonly output: {
5053
+ readonly encoding: 'application/json';
5054
+ readonly schema: {
5055
+ readonly type: 'object';
5056
+ readonly required: ["posts"];
5057
+ readonly properties: {
5058
+ readonly cursor: {
5059
+ readonly type: 'string';
5060
+ readonly description: 'Cursor for the next page of results.';
5061
+ };
5062
+ readonly hitsTotal: {
5063
+ readonly type: 'integer';
5064
+ readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
5065
+ };
5066
+ readonly posts: {
5067
+ readonly type: 'array';
5068
+ readonly items: {
5069
+ readonly type: 'ref';
5070
+ readonly ref: 'lex:app.bsky.feed.defs#postView';
5071
+ };
5072
+ readonly description: 'Hydrated views of matching posts.';
5073
+ };
5074
+ readonly detectedQueryLanguages: {
5075
+ readonly type: 'array';
5076
+ readonly items: {
5077
+ readonly type: 'string';
5078
+ readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
5079
+ };
5080
+ readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
5081
+ };
5082
+ };
5083
+ };
5084
+ };
5085
+ readonly errors: [{
5086
+ readonly name: 'BadQueryString';
5087
+ }];
5088
+ };
5089
+ };
5090
+ };
4869
5091
  readonly AppBskyFeedSendInteractions: {
4870
5092
  readonly lexicon: 1;
4871
5093
  readonly id: 'app.bsky.feed.sendInteractions';
@@ -6805,6 +7027,7 @@ export declare const schemaDict: {
6805
7027
  };
6806
7028
  readonly chatPreference: {
6807
7029
  readonly type: 'object';
7030
+ readonly description: 'Deprecated: use chat.bsky.notification preferences instead. This will only return a default value.';
6808
7031
  readonly required: ["include", "push"];
6809
7032
  readonly properties: {
6810
7033
  readonly include: {
@@ -6851,6 +7074,7 @@ export declare const schemaDict: {
6851
7074
  readonly chat: {
6852
7075
  readonly type: 'ref';
6853
7076
  readonly ref: 'lex:app.bsky.notification.defs#chatPreference';
7077
+ readonly description: 'Deprecated: use chat.bsky.notification preferences instead. This will only return a default value.';
6854
7078
  };
6855
7079
  readonly follow: {
6856
7080
  readonly type: 'ref';
@@ -7225,6 +7449,7 @@ export declare const schemaDict: {
7225
7449
  readonly chat: {
7226
7450
  readonly type: 'ref';
7227
7451
  readonly ref: 'lex:app.bsky.notification.defs#chatPreference';
7452
+ readonly description: "Deprecated: use chat.bsky.notification preferences instead. Setting this won't stick and the default values will be returned.";
7228
7453
  };
7229
7454
  readonly follow: {
7230
7455
  readonly type: 'ref';
@@ -9332,7 +9557,7 @@ export declare const schemaDict: {
9332
9557
  readonly knownValues: ["all", "none", "following"];
9333
9558
  };
9334
9559
  readonly allowGroupInvites: {
9335
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Declaration about group chat invitation preferences for the record owner.';
9560
+ readonly description: 'Declaration about group chat invitation preferences for the record owner.';
9336
9561
  readonly type: 'string';
9337
9562
  readonly knownValues: ["all", "none", "following"];
9338
9563
  };
@@ -9405,12 +9630,11 @@ export declare const schemaDict: {
9405
9630
  };
9406
9631
  };
9407
9632
  readonly directConvoMember: {
9408
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
9409
9633
  readonly type: 'object';
9410
9634
  readonly properties: {};
9411
9635
  };
9412
9636
  readonly groupConvoMember: {
9413
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.';
9637
+ readonly description: 'A current group convo member.';
9414
9638
  readonly type: 'object';
9415
9639
  readonly required: ["role"];
9416
9640
  readonly properties: {
@@ -9427,7 +9651,7 @@ export declare const schemaDict: {
9427
9651
  };
9428
9652
  };
9429
9653
  readonly pastGroupConvoMember: {
9430
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.';
9654
+ readonly description: 'A past group convo member.';
9431
9655
  readonly type: 'object';
9432
9656
  readonly required: [];
9433
9657
  readonly properties: {};
@@ -9734,7 +9958,6 @@ export declare const schemaDict: {
9734
9958
  };
9735
9959
  };
9736
9960
  readonly systemMessageView: {
9737
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
9738
9961
  readonly type: 'object';
9739
9962
  readonly required: ["id", "rev", "sentAt", "data"];
9740
9963
  readonly properties: {
@@ -9755,7 +9978,7 @@ export declare const schemaDict: {
9755
9978
  };
9756
9979
  };
9757
9980
  readonly systemMessageDataAddMember: {
9758
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was added to the group convo.';
9981
+ readonly description: 'System message indicating a user was added to the group convo.';
9759
9982
  readonly type: 'object';
9760
9983
  readonly required: ["member", "role", "addedBy"];
9761
9984
  readonly properties: {
@@ -9776,7 +9999,7 @@ export declare const schemaDict: {
9776
9999
  };
9777
10000
  };
9778
10001
  readonly systemMessageDataRemoveMember: {
9779
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was removed from the group convo.';
10002
+ readonly description: 'System message indicating a user was removed from the group convo.';
9780
10003
  readonly type: 'object';
9781
10004
  readonly required: ["member", "removedBy"];
9782
10005
  readonly properties: {
@@ -9792,7 +10015,7 @@ export declare const schemaDict: {
9792
10015
  };
9793
10016
  };
9794
10017
  readonly systemMessageDataMemberJoin: {
9795
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user joined the group convo via join link.';
10018
+ readonly description: 'System message indicating a user joined the group convo via join link.';
9796
10019
  readonly type: 'object';
9797
10020
  readonly required: ["member", "role"];
9798
10021
  readonly properties: {
@@ -9814,7 +10037,7 @@ export declare const schemaDict: {
9814
10037
  };
9815
10038
  };
9816
10039
  readonly systemMessageDataMemberLeave: {
9817
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user voluntarily left the group convo.';
10040
+ readonly description: 'System message indicating a user voluntarily left the group convo.';
9818
10041
  readonly type: 'object';
9819
10042
  readonly required: ["member"];
9820
10043
  readonly properties: {
@@ -9826,7 +10049,7 @@ export declare const schemaDict: {
9826
10049
  };
9827
10050
  };
9828
10051
  readonly systemMessageDataLockConvo: {
9829
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked.';
10052
+ readonly description: 'System message indicating the group convo was locked.';
9830
10053
  readonly type: 'object';
9831
10054
  readonly required: ["lockedBy"];
9832
10055
  readonly properties: {
@@ -9838,7 +10061,7 @@ export declare const schemaDict: {
9838
10061
  };
9839
10062
  };
9840
10063
  readonly systemMessageDataUnlockConvo: {
9841
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was unlocked.';
10064
+ readonly description: 'System message indicating the group convo was unlocked.';
9842
10065
  readonly type: 'object';
9843
10066
  readonly required: ["unlockedBy"];
9844
10067
  readonly properties: {
@@ -9850,7 +10073,7 @@ export declare const schemaDict: {
9850
10073
  };
9851
10074
  };
9852
10075
  readonly systemMessageDataLockConvoPermanently: {
9853
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked permanently.';
10076
+ readonly description: 'System message indicating the group convo was locked permanently.';
9854
10077
  readonly type: 'object';
9855
10078
  readonly required: ["lockedBy"];
9856
10079
  readonly properties: {
@@ -9862,7 +10085,7 @@ export declare const schemaDict: {
9862
10085
  };
9863
10086
  };
9864
10087
  readonly systemMessageDataEditGroup: {
9865
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group info was edited.';
10088
+ readonly description: 'System message indicating the group info was edited.';
9866
10089
  readonly type: 'object';
9867
10090
  readonly properties: {
9868
10091
  readonly oldName: {
@@ -9876,22 +10099,22 @@ export declare const schemaDict: {
9876
10099
  };
9877
10100
  };
9878
10101
  readonly systemMessageDataCreateJoinLink: {
9879
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was created.';
10102
+ readonly description: 'System message indicating the group join link was created.';
9880
10103
  readonly type: 'object';
9881
10104
  readonly properties: {};
9882
10105
  };
9883
10106
  readonly systemMessageDataEditJoinLink: {
9884
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was edited.';
10107
+ readonly description: 'System message indicating the group join link was edited.';
9885
10108
  readonly type: 'object';
9886
10109
  readonly properties: {};
9887
10110
  };
9888
10111
  readonly systemMessageDataEnableJoinLink: {
9889
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was enabled.';
10112
+ readonly description: 'System message indicating the group join link was enabled.';
9890
10113
  readonly type: 'object';
9891
10114
  readonly properties: {};
9892
10115
  };
9893
10116
  readonly systemMessageDataDisableJoinLink: {
9894
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was disabled.';
10117
+ readonly description: 'System message indicating the group join link was disabled.';
9895
10118
  readonly type: 'object';
9896
10119
  readonly properties: {};
9897
10120
  };
@@ -10011,12 +10234,10 @@ export declare const schemaDict: {
10011
10234
  };
10012
10235
  };
10013
10236
  readonly directConvo: {
10014
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
10015
10237
  readonly type: 'object';
10016
10238
  readonly properties: {};
10017
10239
  };
10018
10240
  readonly groupConvo: {
10019
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
10020
10241
  readonly type: 'object';
10021
10242
  readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
10022
10243
  readonly properties: {
@@ -10244,7 +10465,7 @@ export declare const schemaDict: {
10244
10465
  };
10245
10466
  };
10246
10467
  readonly logReadConvo: {
10247
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a convo was read up to a certain message.';
10468
+ readonly description: 'Event indicating a convo was read up to a certain message.';
10248
10469
  readonly type: 'object';
10249
10470
  readonly required: ["rev", "convoId", "message"];
10250
10471
  readonly properties: {
@@ -10261,7 +10482,7 @@ export declare const schemaDict: {
10261
10482
  };
10262
10483
  };
10263
10484
  readonly logAddMember: {
10264
- 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).';
10485
+ readonly description: '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).';
10265
10486
  readonly type: 'object';
10266
10487
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
10267
10488
  readonly properties: {
@@ -10287,7 +10508,7 @@ export declare const schemaDict: {
10287
10508
  };
10288
10509
  };
10289
10510
  readonly logRemoveMember: {
10290
- 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).";
10511
+ readonly description: "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).";
10291
10512
  readonly type: 'object';
10292
10513
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
10293
10514
  readonly properties: {
@@ -10313,7 +10534,7 @@ export declare const schemaDict: {
10313
10534
  };
10314
10535
  };
10315
10536
  readonly logMemberJoin: {
10316
- 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).';
10537
+ readonly description: '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).';
10317
10538
  readonly type: 'object';
10318
10539
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
10319
10540
  readonly properties: {
@@ -10339,7 +10560,7 @@ export declare const schemaDict: {
10339
10560
  };
10340
10561
  };
10341
10562
  readonly logMemberLeave: {
10342
- 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).";
10563
+ readonly description: "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).";
10343
10564
  readonly type: 'object';
10344
10565
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
10345
10566
  readonly properties: {
@@ -10365,7 +10586,7 @@ export declare const schemaDict: {
10365
10586
  };
10366
10587
  };
10367
10588
  readonly logLockConvo: {
10368
- 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.';
10589
+ readonly description: 'Event indicating a group convo was locked.';
10369
10590
  readonly type: 'object';
10370
10591
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
10371
10592
  readonly properties: {
@@ -10391,7 +10612,7 @@ export declare const schemaDict: {
10391
10612
  };
10392
10613
  };
10393
10614
  readonly logUnlockConvo: {
10394
- 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.';
10615
+ readonly description: 'Event indicating a group convo was unlocked.';
10395
10616
  readonly type: 'object';
10396
10617
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
10397
10618
  readonly properties: {
@@ -10417,7 +10638,7 @@ export declare const schemaDict: {
10417
10638
  };
10418
10639
  };
10419
10640
  readonly logLockConvoPermanently: {
10420
- 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.';
10641
+ readonly description: 'Event indicating a group convo was locked permanently.';
10421
10642
  readonly type: 'object';
10422
10643
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
10423
10644
  readonly properties: {
@@ -10443,7 +10664,7 @@ export declare const schemaDict: {
10443
10664
  };
10444
10665
  };
10445
10666
  readonly logEditGroup: {
10446
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating info about group convo was edited.';
10667
+ readonly description: 'Event indicating info about group convo was edited.';
10447
10668
  readonly type: 'object';
10448
10669
  readonly required: ["rev", "convoId", "message"];
10449
10670
  readonly properties: {
@@ -10461,7 +10682,7 @@ export declare const schemaDict: {
10461
10682
  };
10462
10683
  };
10463
10684
  readonly logCreateJoinLink: {
10464
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was created for a group convo.';
10685
+ readonly description: 'Event indicating a join link was created for a group convo.';
10465
10686
  readonly type: 'object';
10466
10687
  readonly required: ["rev", "convoId", "message"];
10467
10688
  readonly properties: {
@@ -10479,7 +10700,7 @@ export declare const schemaDict: {
10479
10700
  };
10480
10701
  };
10481
10702
  readonly logEditJoinLink: {
10482
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a settings about a join link for a group convo were edited.';
10703
+ readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
10483
10704
  readonly type: 'object';
10484
10705
  readonly required: ["rev", "convoId", "message"];
10485
10706
  readonly properties: {
@@ -10497,7 +10718,7 @@ export declare const schemaDict: {
10497
10718
  };
10498
10719
  };
10499
10720
  readonly logEnableJoinLink: {
10500
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was enabled for a group convo.';
10721
+ readonly description: 'Event indicating a join link was enabled for a group convo.';
10501
10722
  readonly type: 'object';
10502
10723
  readonly required: ["rev", "convoId", "message"];
10503
10724
  readonly properties: {
@@ -10515,7 +10736,7 @@ export declare const schemaDict: {
10515
10736
  };
10516
10737
  };
10517
10738
  readonly logDisableJoinLink: {
10518
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was disabled for a group convo.';
10739
+ readonly description: 'Event indicating a join link was disabled for a group convo.';
10519
10740
  readonly type: 'object';
10520
10741
  readonly required: ["rev", "convoId", "message"];
10521
10742
  readonly properties: {
@@ -10533,7 +10754,7 @@ export declare const schemaDict: {
10533
10754
  };
10534
10755
  };
10535
10756
  readonly logIncomingJoinRequest: {
10536
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
10757
+ readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
10537
10758
  readonly type: 'object';
10538
10759
  readonly required: ["rev", "convoId", "member"];
10539
10760
  readonly properties: {
@@ -10551,7 +10772,7 @@ export declare const schemaDict: {
10551
10772
  };
10552
10773
  };
10553
10774
  readonly logApproveJoinRequest: {
10554
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
10775
+ readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
10555
10776
  readonly type: 'object';
10556
10777
  readonly required: ["rev", "convoId", "member"];
10557
10778
  readonly properties: {
@@ -10569,7 +10790,7 @@ export declare const schemaDict: {
10569
10790
  };
10570
10791
  };
10571
10792
  readonly logRejectJoinRequest: {
10572
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was rejected by the viewer. Only the owner gets this.';
10793
+ readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
10573
10794
  readonly type: 'object';
10574
10795
  readonly required: ["rev", "convoId", "member"];
10575
10796
  readonly properties: {
@@ -10587,7 +10808,7 @@ export declare const schemaDict: {
10587
10808
  };
10588
10809
  };
10589
10810
  readonly logOutgoingJoinRequest: {
10590
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was made by the requester. Only requester actor gets this.';
10811
+ readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
10591
10812
  readonly type: 'object';
10592
10813
  readonly required: ["rev", "convoId"];
10593
10814
  readonly properties: {
@@ -10600,7 +10821,7 @@ export declare const schemaDict: {
10600
10821
  };
10601
10822
  };
10602
10823
  readonly logWithdrawIncomingJoinRequest: {
10603
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a prospective member withdrew their join request. Only the owner gets this.';
10824
+ readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
10604
10825
  readonly type: 'object';
10605
10826
  readonly required: ["rev", "convoId", "member"];
10606
10827
  readonly properties: {
@@ -10618,7 +10839,7 @@ export declare const schemaDict: {
10618
10839
  };
10619
10840
  };
10620
10841
  readonly logWithdrawOutgoingJoinRequest: {
10621
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
10842
+ readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
10622
10843
  readonly type: 'object';
10623
10844
  readonly required: ["rev", "convoId"];
10624
10845
  readonly properties: {
@@ -10631,7 +10852,7 @@ export declare const schemaDict: {
10631
10852
  };
10632
10853
  };
10633
10854
  readonly logReadJoinRequests: {
10634
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating the group owner marked join requests as read. Only the owner gets this.';
10855
+ readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
10635
10856
  readonly type: 'object';
10636
10857
  readonly required: ["rev", "convoId"];
10637
10858
  readonly properties: {
@@ -10961,7 +11182,7 @@ export declare const schemaDict: {
10961
11182
  readonly defs: {
10962
11183
  readonly main: {
10963
11184
  readonly type: 'query';
10964
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Returns unread conversation counts for conversations that are unlocked, not muted, split by convo status. Direct convos are excluded when a block relationship exists between the actor and the other member, or when the other member's account is deleted or deactivated. Group convos are considered unread if they have unread join request counts.";
11185
+ readonly description: "Returns unread conversation counts for conversations that are unlocked, not muted, split by convo status. Direct convos are excluded when a block relationship exists between the actor and the other member, or when the other member's account is deleted or deactivated. Group convos are considered unread if they have unread join request counts.";
10965
11186
  readonly parameters: {
10966
11187
  readonly type: 'params';
10967
11188
  readonly properties: {
@@ -11041,7 +11262,7 @@ export declare const schemaDict: {
11041
11262
  readonly defs: {
11042
11263
  readonly main: {
11043
11264
  readonly type: 'query';
11044
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests made by the user are returned as joinRequestConvoView.';
11265
+ readonly description: 'Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests made by the user are returned as joinRequestConvoView.';
11045
11266
  readonly parameters: {
11046
11267
  readonly type: 'params';
11047
11268
  readonly properties: {
@@ -11146,7 +11367,7 @@ export declare const schemaDict: {
11146
11367
  readonly defs: {
11147
11368
  readonly main: {
11148
11369
  readonly type: 'procedure';
11149
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Locks a group convo so no more content (messages, reactions) can be added to it.';
11370
+ readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
11150
11371
  readonly errors: [{
11151
11372
  readonly name: 'ConvoLocked';
11152
11373
  }, {
@@ -11386,7 +11607,7 @@ export declare const schemaDict: {
11386
11607
  readonly defs: {
11387
11608
  readonly main: {
11388
11609
  readonly type: 'procedure';
11389
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Unlocks a group convo so it is able to receive new content.';
11610
+ readonly description: 'Unlocks a group convo so it is able to receive new content.';
11390
11611
  readonly errors: [{
11391
11612
  readonly name: 'InvalidConvo';
11392
11613
  }, {
@@ -11539,7 +11760,7 @@ export declare const schemaDict: {
11539
11760
  readonly ChatBskyEmbedJoinLink: {
11540
11761
  readonly lexicon: 1;
11541
11762
  readonly id: 'chat.bsky.embed.joinLink';
11542
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A join link embedded in a chat message.';
11763
+ readonly description: 'A join link embedded in a chat message.';
11543
11764
  readonly defs: {
11544
11765
  readonly main: {
11545
11766
  readonly type: 'object';
@@ -11569,7 +11790,7 @@ export declare const schemaDict: {
11569
11790
  readonly defs: {
11570
11791
  readonly main: {
11571
11792
  readonly type: 'procedure';
11572
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.";
11793
+ readonly description: "Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.";
11573
11794
  readonly errors: [{
11574
11795
  readonly name: 'AccountSuspended';
11575
11796
  }, {
@@ -11640,7 +11861,7 @@ export declare const schemaDict: {
11640
11861
  readonly defs: {
11641
11862
  readonly main: {
11642
11863
  readonly type: 'procedure';
11643
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
11864
+ readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
11644
11865
  readonly errors: [{
11645
11866
  readonly name: 'InvalidConvo';
11646
11867
  }, {
@@ -11686,7 +11907,7 @@ export declare const schemaDict: {
11686
11907
  readonly defs: {
11687
11908
  readonly main: {
11688
11909
  readonly type: 'procedure';
11689
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'request' membership for all members, except the owner who is 'accepted'.";
11910
+ readonly description: "Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'request' membership for all members, except the owner who is 'accepted'.";
11690
11911
  readonly errors: [{
11691
11912
  readonly name: 'AccountSuspended';
11692
11913
  }, {
@@ -11747,7 +11968,7 @@ export declare const schemaDict: {
11747
11968
  readonly defs: {
11748
11969
  readonly main: {
11749
11970
  readonly type: 'procedure';
11750
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Creates a join link for the group convo.';
11971
+ readonly description: 'Creates a join link for the group convo.';
11751
11972
  readonly errors: [{
11752
11973
  readonly name: 'EnabledJoinLinkAlreadyExists';
11753
11974
  }, {
@@ -11794,7 +12015,6 @@ export declare const schemaDict: {
11794
12015
  readonly ChatBskyGroupDefs: {
11795
12016
  readonly lexicon: 1;
11796
12017
  readonly id: 'chat.bsky.group.defs';
11797
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
11798
12018
  readonly defs: {
11799
12019
  readonly linkEnabledStatus: {
11800
12020
  readonly type: 'string';
@@ -11953,7 +12173,7 @@ export declare const schemaDict: {
11953
12173
  readonly defs: {
11954
12174
  readonly main: {
11955
12175
  readonly type: 'procedure';
11956
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Disables the active join link for the group convo.';
12176
+ readonly description: 'Disables the active join link for the group convo.';
11957
12177
  readonly errors: [{
11958
12178
  readonly name: 'InvalidConvo';
11959
12179
  }, {
@@ -11995,7 +12215,7 @@ export declare const schemaDict: {
11995
12215
  readonly defs: {
11996
12216
  readonly main: {
11997
12217
  readonly type: 'procedure';
11998
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Edits group settings.';
12218
+ readonly description: 'Edits group settings.';
11999
12219
  readonly errors: [{
12000
12220
  readonly name: 'ConvoLocked';
12001
12221
  }, {
@@ -12043,7 +12263,7 @@ export declare const schemaDict: {
12043
12263
  readonly defs: {
12044
12264
  readonly main: {
12045
12265
  readonly type: 'procedure';
12046
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Edits the existing join link settings for the group convo.';
12266
+ readonly description: 'Edits the existing join link settings for the group convo.';
12047
12267
  readonly errors: [{
12048
12268
  readonly name: 'InvalidConvo';
12049
12269
  }, {
@@ -12092,7 +12312,7 @@ export declare const schemaDict: {
12092
12312
  readonly defs: {
12093
12313
  readonly main: {
12094
12314
  readonly type: 'procedure';
12095
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Re-enables a previously disabled join link for the group convo.';
12315
+ readonly description: 'Re-enables a previously disabled join link for the group convo.';
12096
12316
  readonly errors: [{
12097
12317
  readonly name: 'InvalidConvo';
12098
12318
  }, {
@@ -12136,7 +12356,7 @@ export declare const schemaDict: {
12136
12356
  readonly defs: {
12137
12357
  readonly main: {
12138
12358
  readonly type: 'query';
12139
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Get public information about groups from join links. The output array matches the input codes one-to-one by position (and each view also carries its 'code'). Disabled codes return a disabledJoinLinkPreviewView, and codes that do not map to a previewable link return an invalidJoinLinkPreviewView.";
12359
+ readonly description: "Get public information about groups from join links. The output array matches the input codes one-to-one by position (and each view also carries its 'code'). Disabled codes return a disabledJoinLinkPreviewView, and codes that do not map to a previewable link return an invalidJoinLinkPreviewView.";
12140
12360
  readonly parameters: {
12141
12361
  readonly type: 'params';
12142
12362
  readonly required: ["codes"];
@@ -12176,7 +12396,7 @@ export declare const schemaDict: {
12176
12396
  readonly defs: {
12177
12397
  readonly main: {
12178
12398
  readonly type: 'query';
12179
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view.";
12399
+ readonly description: "Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view.";
12180
12400
  readonly errors: [{
12181
12401
  readonly name: 'InvalidConvo';
12182
12402
  }, {
@@ -12228,7 +12448,7 @@ export declare const schemaDict: {
12228
12448
  readonly defs: {
12229
12449
  readonly main: {
12230
12450
  readonly type: 'query';
12231
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a page of group conversations that both the requester and the specified actor are members of.';
12451
+ readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
12232
12452
  readonly parameters: {
12233
12453
  readonly type: 'params';
12234
12454
  readonly required: ["subject"];
@@ -12276,7 +12496,7 @@ export declare const schemaDict: {
12276
12496
  readonly defs: {
12277
12497
  readonly main: {
12278
12498
  readonly type: 'procedure';
12279
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
12499
+ readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
12280
12500
  readonly errors: [{
12281
12501
  readonly name: 'InvalidConvo';
12282
12502
  }, {
@@ -12315,7 +12535,7 @@ export declare const schemaDict: {
12315
12535
  readonly defs: {
12316
12536
  readonly main: {
12317
12537
  readonly type: 'procedure';
12318
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Removes members from a group. This deletes convo memberships, doesn't just set a status.";
12538
+ readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
12319
12539
  readonly errors: [{
12320
12540
  readonly name: 'InvalidConvo';
12321
12541
  }, {
@@ -12363,7 +12583,7 @@ export declare const schemaDict: {
12363
12583
  readonly defs: {
12364
12584
  readonly main: {
12365
12585
  readonly type: 'procedure';
12366
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
12586
+ readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
12367
12587
  readonly errors: [{
12368
12588
  readonly name: 'ConvoLocked';
12369
12589
  }, {
@@ -12416,7 +12636,7 @@ export declare const schemaDict: {
12416
12636
  readonly defs: {
12417
12637
  readonly main: {
12418
12638
  readonly type: 'procedure';
12419
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Marks all join requests as read for the group owner.';
12639
+ readonly description: 'Marks all join requests as read for the group owner.';
12420
12640
  readonly errors: [{
12421
12641
  readonly name: 'InvalidConvo';
12422
12642
  }, {
@@ -12451,7 +12671,7 @@ export declare const schemaDict: {
12451
12671
  readonly defs: {
12452
12672
  readonly main: {
12453
12673
  readonly type: 'procedure';
12454
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
12674
+ readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
12455
12675
  readonly errors: [{
12456
12676
  readonly name: 'InvalidJoinRequest';
12457
12677
  }];
@@ -12483,7 +12703,7 @@ export declare const schemaDict: {
12483
12703
  readonly id: 'chat.bsky.moderation.defs';
12484
12704
  readonly defs: {
12485
12705
  readonly convoView: {
12486
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A view of a conversation for moderation purposes. Unlike chat.bsky.convo.defs#convoView, it does not include viewer-specific data (such as muted, unreadCount, status, lastMessage, lastReaction), since the requester is a moderator and not a member of the conversation. The member list is not included; use chat.bsky.moderation.getConvoMembers to list members.';
12706
+ readonly description: 'A view of a conversation for moderation purposes. Unlike chat.bsky.convo.defs#convoView, it does not include viewer-specific data (such as muted, unreadCount, status, lastMessage, lastReaction), since the requester is a moderator and not a member of the conversation. The member list is not included; use chat.bsky.moderation.getConvoMembers to list members.';
12487
12707
  readonly type: 'object';
12488
12708
  readonly required: ["id", "rev"];
12489
12709
  readonly properties: {
@@ -12501,12 +12721,12 @@ export declare const schemaDict: {
12501
12721
  };
12502
12722
  };
12503
12723
  readonly directConvo: {
12504
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Data specific to a direct conversation, for moderation purposes.';
12724
+ readonly description: 'Data specific to a direct conversation, for moderation purposes.';
12505
12725
  readonly type: 'object';
12506
12726
  readonly properties: {};
12507
12727
  };
12508
12728
  readonly groupConvo: {
12509
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Data specific to a group conversation, for moderation purposes. Unlike chat.bsky.convo.defs#groupConvo, it does not include viewer-specific data (such as unreadJoinRequestCount), since the requester is a moderator and not a member of the conversation.';
12729
+ readonly description: 'Data specific to a group conversation, for moderation purposes. Unlike chat.bsky.convo.defs#groupConvo, it does not include viewer-specific data (such as unreadJoinRequestCount), since the requester is a moderator and not a member of the conversation.';
12510
12730
  readonly type: 'object';
12511
12731
  readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
12512
12732
  readonly properties: {
@@ -12609,7 +12829,7 @@ export declare const schemaDict: {
12609
12829
  readonly defs: {
12610
12830
  readonly main: {
12611
12831
  readonly type: 'query';
12612
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.';
12832
+ readonly description: 'Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.';
12613
12833
  readonly errors: [{
12614
12834
  readonly name: 'InvalidConvo';
12615
12835
  }];
@@ -12644,7 +12864,7 @@ export declare const schemaDict: {
12644
12864
  readonly defs: {
12645
12865
  readonly main: {
12646
12866
  readonly type: 'query';
12647
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a paginated list of members from a conversation, for moderation purposes. Does not require the requester to be a member of the conversation.';
12867
+ readonly description: 'Returns a paginated list of members from a conversation, for moderation purposes. Does not require the requester to be a member of the conversation.';
12648
12868
  readonly errors: [{
12649
12869
  readonly name: 'InvalidConvo';
12650
12870
  }];
@@ -12694,7 +12914,7 @@ export declare const schemaDict: {
12694
12914
  readonly defs: {
12695
12915
  readonly main: {
12696
12916
  readonly type: 'query';
12697
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.';
12917
+ readonly description: 'Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.';
12698
12918
  readonly parameters: {
12699
12919
  readonly type: 'params';
12700
12920
  readonly required: ["convoIds"];
@@ -13344,6 +13564,101 @@ export declare const schemaDict: {
13344
13564
  };
13345
13565
  };
13346
13566
  };
13567
+ readonly ChatBskyNotificationDefs: {
13568
+ readonly lexicon: 1;
13569
+ readonly id: 'chat.bsky.notification.defs';
13570
+ readonly defs: {
13571
+ readonly preferences: {
13572
+ readonly type: 'object';
13573
+ readonly required: ["chat", "chatRequest"];
13574
+ readonly properties: {
13575
+ readonly chat: {
13576
+ readonly type: 'ref';
13577
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
13578
+ };
13579
+ readonly chatRequest: {
13580
+ readonly type: 'ref';
13581
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
13582
+ };
13583
+ };
13584
+ };
13585
+ readonly chatPreference: {
13586
+ readonly type: 'object';
13587
+ readonly required: ["include", "push"];
13588
+ readonly properties: {
13589
+ readonly include: {
13590
+ readonly type: 'string';
13591
+ readonly knownValues: ["all", "follows"];
13592
+ };
13593
+ readonly push: {
13594
+ readonly type: 'boolean';
13595
+ };
13596
+ };
13597
+ };
13598
+ };
13599
+ };
13600
+ readonly ChatBskyNotificationGetPreferences: {
13601
+ readonly lexicon: 1;
13602
+ readonly id: 'chat.bsky.notification.getPreferences';
13603
+ readonly defs: {
13604
+ readonly main: {
13605
+ readonly type: 'query';
13606
+ readonly description: "Get the requesting account's chat notification preferences. Defaults are returned for accounts that have not set any preferences. Requires auth.";
13607
+ readonly output: {
13608
+ readonly encoding: 'application/json';
13609
+ readonly schema: {
13610
+ readonly type: 'object';
13611
+ readonly required: ["preferences"];
13612
+ readonly properties: {
13613
+ readonly preferences: {
13614
+ readonly type: 'ref';
13615
+ readonly ref: 'lex:chat.bsky.notification.defs#preferences';
13616
+ };
13617
+ };
13618
+ };
13619
+ };
13620
+ };
13621
+ };
13622
+ };
13623
+ readonly ChatBskyNotificationPutPreferences: {
13624
+ readonly lexicon: 1;
13625
+ readonly id: 'chat.bsky.notification.putPreferences';
13626
+ readonly defs: {
13627
+ readonly main: {
13628
+ readonly type: 'procedure';
13629
+ readonly description: "Set the requesting account's chat notification preferences. Only the provided preferences are updated; omitted preferences are left unchanged.";
13630
+ readonly input: {
13631
+ readonly encoding: 'application/json';
13632
+ readonly schema: {
13633
+ readonly type: 'object';
13634
+ readonly properties: {
13635
+ readonly chat: {
13636
+ readonly type: 'ref';
13637
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
13638
+ };
13639
+ readonly chatRequest: {
13640
+ readonly type: 'ref';
13641
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
13642
+ };
13643
+ };
13644
+ };
13645
+ };
13646
+ readonly output: {
13647
+ readonly encoding: 'application/json';
13648
+ readonly schema: {
13649
+ readonly type: 'object';
13650
+ readonly required: ["preferences"];
13651
+ readonly properties: {
13652
+ readonly preferences: {
13653
+ readonly type: 'ref';
13654
+ readonly ref: 'lex:chat.bsky.notification.defs#preferences';
13655
+ };
13656
+ };
13657
+ };
13658
+ };
13659
+ };
13660
+ };
13661
+ };
13347
13662
  readonly ComAtprotoAdminDefs: {
13348
13663
  readonly lexicon: 1;
13349
13664
  readonly id: 'com.atproto.admin.defs';
@@ -21617,6 +21932,11 @@ export declare const schemaDict: {
21617
21932
  readonly ref: 'lex:tools.ozone.team.defs#member';
21618
21933
  readonly description: 'Full member record of the moderator who created this activity';
21619
21934
  };
21935
+ readonly report: {
21936
+ readonly type: 'ref';
21937
+ readonly ref: 'lex:tools.ozone.report.defs#reportView';
21938
+ readonly description: 'Full view of the report this activity belongs to.';
21939
+ };
21620
21940
  readonly createdAt: {
21621
21941
  readonly type: 'string';
21622
21942
  readonly format: 'datetime';
@@ -22025,6 +22345,72 @@ export declare const schemaDict: {
22025
22345
  };
22026
22346
  };
22027
22347
  };
22348
+ readonly ToolsOzoneReportQueryActivities: {
22349
+ readonly lexicon: 1;
22350
+ readonly id: 'tools.ozone.report.queryActivities';
22351
+ readonly defs: {
22352
+ readonly main: {
22353
+ readonly type: 'query';
22354
+ readonly description: 'Query report activities across all reports, ordered by createdAt. Used by downstream pollers; for per-report activity history use listActivities.';
22355
+ readonly parameters: {
22356
+ readonly type: 'params';
22357
+ readonly properties: {
22358
+ readonly activityTypes: {
22359
+ readonly type: 'array';
22360
+ readonly items: {
22361
+ readonly type: 'string';
22362
+ };
22363
+ readonly description: 'Filter to specific activity types (e.g. closeActivity, escalationActivity). If omitted, all types are returned.';
22364
+ };
22365
+ readonly createdAfter: {
22366
+ readonly type: 'string';
22367
+ readonly format: 'datetime';
22368
+ readonly description: 'Retrieve activities created at or after a given timestamp';
22369
+ };
22370
+ readonly createdBefore: {
22371
+ readonly type: 'string';
22372
+ readonly format: 'datetime';
22373
+ readonly description: 'Retrieve activities created at or before a given timestamp';
22374
+ };
22375
+ readonly sortDirection: {
22376
+ readonly type: 'string';
22377
+ readonly default: 'desc';
22378
+ readonly enum: ["asc", "desc"];
22379
+ };
22380
+ readonly limit: {
22381
+ readonly type: 'integer';
22382
+ readonly minimum: 1;
22383
+ readonly maximum: 100;
22384
+ readonly default: 50;
22385
+ };
22386
+ readonly cursor: {
22387
+ readonly type: 'string';
22388
+ readonly description: 'Cursor of the form `<createdAtMs>::<activityId>`.';
22389
+ };
22390
+ };
22391
+ };
22392
+ readonly output: {
22393
+ readonly encoding: 'application/json';
22394
+ readonly schema: {
22395
+ readonly type: 'object';
22396
+ readonly required: ["activities"];
22397
+ readonly properties: {
22398
+ readonly activities: {
22399
+ readonly type: 'array';
22400
+ readonly items: {
22401
+ readonly type: 'ref';
22402
+ readonly ref: 'lex:tools.ozone.report.defs#reportActivityView';
22403
+ };
22404
+ };
22405
+ readonly cursor: {
22406
+ readonly type: 'string';
22407
+ };
22408
+ };
22409
+ };
22410
+ };
22411
+ };
22412
+ };
22413
+ };
22028
22414
  readonly ToolsOzoneReportQueryReports: {
22029
22415
  readonly lexicon: 1;
22030
22416
  readonly id: 'tools.ozone.report.queryReports';
@@ -28752,6 +29138,227 @@ export declare const schemas: ({
28752
29138
  }];
28753
29139
  };
28754
29140
  };
29141
+ } | {
29142
+ readonly lexicon: 1;
29143
+ readonly id: 'app.bsky.feed.searchPostsV2';
29144
+ readonly defs: {
29145
+ readonly main: {
29146
+ readonly type: 'query';
29147
+ readonly description: 'Find posts matching a search query or filters, returning search hits for matching post records.';
29148
+ readonly parameters: {
29149
+ readonly type: 'params';
29150
+ readonly required: ["sort"];
29151
+ readonly properties: {
29152
+ readonly cursor: {
29153
+ readonly type: 'string';
29154
+ readonly description: 'Optional pagination cursor.';
29155
+ };
29156
+ readonly limit: {
29157
+ readonly type: 'integer';
29158
+ readonly minimum: 1;
29159
+ readonly maximum: 100;
29160
+ readonly default: 25;
29161
+ readonly description: 'Maximum number of results to return.';
29162
+ };
29163
+ readonly query: {
29164
+ readonly type: 'string';
29165
+ readonly description: 'Search query string. A query or at least one filter is required.';
29166
+ };
29167
+ readonly sort: {
29168
+ readonly type: 'string';
29169
+ readonly knownValues: ["recent", "top"];
29170
+ readonly description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.";
29171
+ };
29172
+ readonly authors: {
29173
+ readonly type: 'array';
29174
+ readonly items: {
29175
+ readonly type: 'string';
29176
+ readonly format: 'at-identifier';
29177
+ };
29178
+ readonly description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.';
29179
+ };
29180
+ readonly mentions: {
29181
+ readonly type: 'array';
29182
+ readonly items: {
29183
+ readonly type: 'string';
29184
+ readonly format: 'at-identifier';
29185
+ };
29186
+ readonly description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
29187
+ };
29188
+ readonly domains: {
29189
+ readonly type: 'array';
29190
+ readonly items: {
29191
+ readonly type: 'string';
29192
+ };
29193
+ readonly description: 'Include posts that link to any of these domains.';
29194
+ };
29195
+ readonly urls: {
29196
+ readonly type: 'array';
29197
+ readonly items: {
29198
+ readonly type: 'string';
29199
+ readonly format: 'uri';
29200
+ };
29201
+ readonly description: 'Include posts that link to any of these URLs.';
29202
+ };
29203
+ readonly embeddedAtUris: {
29204
+ readonly type: 'array';
29205
+ readonly items: {
29206
+ readonly type: 'string';
29207
+ readonly format: 'at-uri';
29208
+ };
29209
+ readonly description: 'Include posts that embed any of these AT URIs.';
29210
+ };
29211
+ readonly hashtags: {
29212
+ readonly type: 'array';
29213
+ readonly items: {
29214
+ readonly type: 'string';
29215
+ readonly maxLength: 640;
29216
+ readonly maxGraphemes: 64;
29217
+ };
29218
+ readonly description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
29219
+ };
29220
+ readonly excludeAuthors: {
29221
+ readonly type: 'array';
29222
+ readonly items: {
29223
+ readonly type: 'string';
29224
+ readonly format: 'at-identifier';
29225
+ };
29226
+ readonly description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.';
29227
+ };
29228
+ readonly excludeMentions: {
29229
+ readonly type: 'array';
29230
+ readonly items: {
29231
+ readonly type: 'string';
29232
+ readonly format: 'at-identifier';
29233
+ };
29234
+ readonly description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
29235
+ };
29236
+ readonly excludeDomains: {
29237
+ readonly type: 'array';
29238
+ readonly items: {
29239
+ readonly type: 'string';
29240
+ };
29241
+ readonly description: 'Exclude posts that link to any of these domains.';
29242
+ };
29243
+ readonly excludeUrls: {
29244
+ readonly type: 'array';
29245
+ readonly items: {
29246
+ readonly type: 'string';
29247
+ readonly format: 'uri';
29248
+ };
29249
+ readonly description: 'Exclude posts that link to any of these URLs.';
29250
+ };
29251
+ readonly excludeEmbeddedAtUris: {
29252
+ readonly type: 'array';
29253
+ readonly items: {
29254
+ readonly type: 'string';
29255
+ readonly format: 'at-uri';
29256
+ };
29257
+ readonly description: 'Exclude posts that embed any of these AT URIs.';
29258
+ };
29259
+ readonly excludeHashtags: {
29260
+ readonly type: 'array';
29261
+ readonly items: {
29262
+ readonly type: 'string';
29263
+ readonly maxLength: 640;
29264
+ readonly maxGraphemes: 64;
29265
+ };
29266
+ readonly description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
29267
+ };
29268
+ readonly since: {
29269
+ readonly type: 'string';
29270
+ readonly format: 'datetime';
29271
+ readonly description: 'Include posts indexed at or after this timestamp.';
29272
+ };
29273
+ readonly until: {
29274
+ readonly type: 'string';
29275
+ readonly format: 'datetime';
29276
+ readonly description: 'Include posts indexed before this timestamp. Defaults to the current time.';
29277
+ };
29278
+ readonly allTime: {
29279
+ readonly type: 'boolean';
29280
+ readonly description: 'Search the full index instead of the recent-post window.';
29281
+ };
29282
+ readonly language: {
29283
+ readonly type: 'string';
29284
+ readonly format: 'language';
29285
+ readonly description: 'Include posts whose language matches this language code.';
29286
+ };
29287
+ readonly hasMedia: {
29288
+ readonly type: 'boolean';
29289
+ readonly description: 'Include only posts with media.';
29290
+ };
29291
+ readonly hasVideo: {
29292
+ readonly type: 'boolean';
29293
+ readonly description: 'Include only posts with video.';
29294
+ };
29295
+ readonly replyParentUri: {
29296
+ readonly type: 'string';
29297
+ readonly format: 'at-uri';
29298
+ readonly description: 'Include only direct replies to this parent post URI.';
29299
+ };
29300
+ readonly threadRootUri: {
29301
+ readonly type: 'string';
29302
+ readonly format: 'at-uri';
29303
+ readonly description: 'Include only posts in the thread rooted at this post URI.';
29304
+ };
29305
+ readonly excludeReplies: {
29306
+ readonly type: 'boolean';
29307
+ readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
29308
+ };
29309
+ readonly repliesOnly: {
29310
+ readonly type: 'boolean';
29311
+ readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
29312
+ };
29313
+ readonly following: {
29314
+ readonly type: 'boolean';
29315
+ readonly description: 'Include only posts from accounts followed by the viewer.';
29316
+ };
29317
+ readonly queryLanguage: {
29318
+ readonly type: 'string';
29319
+ readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
29320
+ readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
29321
+ };
29322
+ };
29323
+ };
29324
+ readonly output: {
29325
+ readonly encoding: 'application/json';
29326
+ readonly schema: {
29327
+ readonly type: 'object';
29328
+ readonly required: ["posts"];
29329
+ readonly properties: {
29330
+ readonly cursor: {
29331
+ readonly type: 'string';
29332
+ readonly description: 'Cursor for the next page of results.';
29333
+ };
29334
+ readonly hitsTotal: {
29335
+ readonly type: 'integer';
29336
+ readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
29337
+ };
29338
+ readonly posts: {
29339
+ readonly type: 'array';
29340
+ readonly items: {
29341
+ readonly type: 'ref';
29342
+ readonly ref: 'lex:app.bsky.feed.defs#postView';
29343
+ };
29344
+ readonly description: 'Hydrated views of matching posts.';
29345
+ };
29346
+ readonly detectedQueryLanguages: {
29347
+ readonly type: 'array';
29348
+ readonly items: {
29349
+ readonly type: 'string';
29350
+ readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
29351
+ };
29352
+ readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
29353
+ };
29354
+ };
29355
+ };
29356
+ };
29357
+ readonly errors: [{
29358
+ readonly name: 'BadQueryString';
29359
+ }];
29360
+ };
29361
+ };
28755
29362
  } | {
28756
29363
  readonly lexicon: 1;
28757
29364
  readonly id: 'app.bsky.feed.sendInteractions';
@@ -30654,6 +31261,7 @@ export declare const schemas: ({
30654
31261
  };
30655
31262
  readonly chatPreference: {
30656
31263
  readonly type: 'object';
31264
+ readonly description: 'Deprecated: use chat.bsky.notification preferences instead. This will only return a default value.';
30657
31265
  readonly required: ["include", "push"];
30658
31266
  readonly properties: {
30659
31267
  readonly include: {
@@ -30700,6 +31308,7 @@ export declare const schemas: ({
30700
31308
  readonly chat: {
30701
31309
  readonly type: 'ref';
30702
31310
  readonly ref: 'lex:app.bsky.notification.defs#chatPreference';
31311
+ readonly description: 'Deprecated: use chat.bsky.notification preferences instead. This will only return a default value.';
30703
31312
  };
30704
31313
  readonly follow: {
30705
31314
  readonly type: 'ref';
@@ -31067,6 +31676,7 @@ export declare const schemas: ({
31067
31676
  readonly chat: {
31068
31677
  readonly type: 'ref';
31069
31678
  readonly ref: 'lex:app.bsky.notification.defs#chatPreference';
31679
+ readonly description: "Deprecated: use chat.bsky.notification preferences instead. Setting this won't stick and the default values will be returned.";
31070
31680
  };
31071
31681
  readonly follow: {
31072
31682
  readonly type: 'ref';
@@ -33134,7 +33744,7 @@ export declare const schemas: ({
33134
33744
  readonly knownValues: ["all", "none", "following"];
33135
33745
  };
33136
33746
  readonly allowGroupInvites: {
33137
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Declaration about group chat invitation preferences for the record owner.';
33747
+ readonly description: 'Declaration about group chat invitation preferences for the record owner.';
33138
33748
  readonly type: 'string';
33139
33749
  readonly knownValues: ["all", "none", "following"];
33140
33750
  };
@@ -33206,12 +33816,11 @@ export declare const schemas: ({
33206
33816
  };
33207
33817
  };
33208
33818
  readonly directConvoMember: {
33209
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
33210
33819
  readonly type: 'object';
33211
33820
  readonly properties: {};
33212
33821
  };
33213
33822
  readonly groupConvoMember: {
33214
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.';
33823
+ readonly description: 'A current group convo member.';
33215
33824
  readonly type: 'object';
33216
33825
  readonly required: ["role"];
33217
33826
  readonly properties: {
@@ -33228,7 +33837,7 @@ export declare const schemas: ({
33228
33837
  };
33229
33838
  };
33230
33839
  readonly pastGroupConvoMember: {
33231
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.';
33840
+ readonly description: 'A past group convo member.';
33232
33841
  readonly type: 'object';
33233
33842
  readonly required: [];
33234
33843
  readonly properties: {};
@@ -33529,7 +34138,6 @@ export declare const schemas: ({
33529
34138
  };
33530
34139
  };
33531
34140
  readonly systemMessageView: {
33532
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
33533
34141
  readonly type: 'object';
33534
34142
  readonly required: ["id", "rev", "sentAt", "data"];
33535
34143
  readonly properties: {
@@ -33550,7 +34158,7 @@ export declare const schemas: ({
33550
34158
  };
33551
34159
  };
33552
34160
  readonly systemMessageDataAddMember: {
33553
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was added to the group convo.';
34161
+ readonly description: 'System message indicating a user was added to the group convo.';
33554
34162
  readonly type: 'object';
33555
34163
  readonly required: ["member", "role", "addedBy"];
33556
34164
  readonly properties: {
@@ -33571,7 +34179,7 @@ export declare const schemas: ({
33571
34179
  };
33572
34180
  };
33573
34181
  readonly systemMessageDataRemoveMember: {
33574
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was removed from the group convo.';
34182
+ readonly description: 'System message indicating a user was removed from the group convo.';
33575
34183
  readonly type: 'object';
33576
34184
  readonly required: ["member", "removedBy"];
33577
34185
  readonly properties: {
@@ -33587,7 +34195,7 @@ export declare const schemas: ({
33587
34195
  };
33588
34196
  };
33589
34197
  readonly systemMessageDataMemberJoin: {
33590
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user joined the group convo via join link.';
34198
+ readonly description: 'System message indicating a user joined the group convo via join link.';
33591
34199
  readonly type: 'object';
33592
34200
  readonly required: ["member", "role"];
33593
34201
  readonly properties: {
@@ -33609,7 +34217,7 @@ export declare const schemas: ({
33609
34217
  };
33610
34218
  };
33611
34219
  readonly systemMessageDataMemberLeave: {
33612
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user voluntarily left the group convo.';
34220
+ readonly description: 'System message indicating a user voluntarily left the group convo.';
33613
34221
  readonly type: 'object';
33614
34222
  readonly required: ["member"];
33615
34223
  readonly properties: {
@@ -33621,7 +34229,7 @@ export declare const schemas: ({
33621
34229
  };
33622
34230
  };
33623
34231
  readonly systemMessageDataLockConvo: {
33624
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked.';
34232
+ readonly description: 'System message indicating the group convo was locked.';
33625
34233
  readonly type: 'object';
33626
34234
  readonly required: ["lockedBy"];
33627
34235
  readonly properties: {
@@ -33633,7 +34241,7 @@ export declare const schemas: ({
33633
34241
  };
33634
34242
  };
33635
34243
  readonly systemMessageDataUnlockConvo: {
33636
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was unlocked.';
34244
+ readonly description: 'System message indicating the group convo was unlocked.';
33637
34245
  readonly type: 'object';
33638
34246
  readonly required: ["unlockedBy"];
33639
34247
  readonly properties: {
@@ -33645,7 +34253,7 @@ export declare const schemas: ({
33645
34253
  };
33646
34254
  };
33647
34255
  readonly systemMessageDataLockConvoPermanently: {
33648
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked permanently.';
34256
+ readonly description: 'System message indicating the group convo was locked permanently.';
33649
34257
  readonly type: 'object';
33650
34258
  readonly required: ["lockedBy"];
33651
34259
  readonly properties: {
@@ -33657,7 +34265,7 @@ export declare const schemas: ({
33657
34265
  };
33658
34266
  };
33659
34267
  readonly systemMessageDataEditGroup: {
33660
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group info was edited.';
34268
+ readonly description: 'System message indicating the group info was edited.';
33661
34269
  readonly type: 'object';
33662
34270
  readonly properties: {
33663
34271
  readonly oldName: {
@@ -33671,22 +34279,22 @@ export declare const schemas: ({
33671
34279
  };
33672
34280
  };
33673
34281
  readonly systemMessageDataCreateJoinLink: {
33674
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was created.';
34282
+ readonly description: 'System message indicating the group join link was created.';
33675
34283
  readonly type: 'object';
33676
34284
  readonly properties: {};
33677
34285
  };
33678
34286
  readonly systemMessageDataEditJoinLink: {
33679
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was edited.';
34287
+ readonly description: 'System message indicating the group join link was edited.';
33680
34288
  readonly type: 'object';
33681
34289
  readonly properties: {};
33682
34290
  };
33683
34291
  readonly systemMessageDataEnableJoinLink: {
33684
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was enabled.';
34292
+ readonly description: 'System message indicating the group join link was enabled.';
33685
34293
  readonly type: 'object';
33686
34294
  readonly properties: {};
33687
34295
  };
33688
34296
  readonly systemMessageDataDisableJoinLink: {
33689
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was disabled.';
34297
+ readonly description: 'System message indicating the group join link was disabled.';
33690
34298
  readonly type: 'object';
33691
34299
  readonly properties: {};
33692
34300
  };
@@ -33806,12 +34414,10 @@ export declare const schemas: ({
33806
34414
  };
33807
34415
  };
33808
34416
  readonly directConvo: {
33809
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
33810
34417
  readonly type: 'object';
33811
34418
  readonly properties: {};
33812
34419
  };
33813
34420
  readonly groupConvo: {
33814
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
33815
34421
  readonly type: 'object';
33816
34422
  readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
33817
34423
  readonly properties: {
@@ -34039,7 +34645,7 @@ export declare const schemas: ({
34039
34645
  };
34040
34646
  };
34041
34647
  readonly logReadConvo: {
34042
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a convo was read up to a certain message.';
34648
+ readonly description: 'Event indicating a convo was read up to a certain message.';
34043
34649
  readonly type: 'object';
34044
34650
  readonly required: ["rev", "convoId", "message"];
34045
34651
  readonly properties: {
@@ -34056,7 +34662,7 @@ export declare const schemas: ({
34056
34662
  };
34057
34663
  };
34058
34664
  readonly logAddMember: {
34059
- 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).';
34665
+ readonly description: '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).';
34060
34666
  readonly type: 'object';
34061
34667
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
34062
34668
  readonly properties: {
@@ -34082,7 +34688,7 @@ export declare const schemas: ({
34082
34688
  };
34083
34689
  };
34084
34690
  readonly logRemoveMember: {
34085
- 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).";
34691
+ readonly description: "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).";
34086
34692
  readonly type: 'object';
34087
34693
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
34088
34694
  readonly properties: {
@@ -34108,7 +34714,7 @@ export declare const schemas: ({
34108
34714
  };
34109
34715
  };
34110
34716
  readonly logMemberJoin: {
34111
- 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).';
34717
+ readonly description: '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).';
34112
34718
  readonly type: 'object';
34113
34719
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
34114
34720
  readonly properties: {
@@ -34134,7 +34740,7 @@ export declare const schemas: ({
34134
34740
  };
34135
34741
  };
34136
34742
  readonly logMemberLeave: {
34137
- 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).";
34743
+ readonly description: "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).";
34138
34744
  readonly type: 'object';
34139
34745
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
34140
34746
  readonly properties: {
@@ -34160,7 +34766,7 @@ export declare const schemas: ({
34160
34766
  };
34161
34767
  };
34162
34768
  readonly logLockConvo: {
34163
- 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.';
34769
+ readonly description: 'Event indicating a group convo was locked.';
34164
34770
  readonly type: 'object';
34165
34771
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
34166
34772
  readonly properties: {
@@ -34186,7 +34792,7 @@ export declare const schemas: ({
34186
34792
  };
34187
34793
  };
34188
34794
  readonly logUnlockConvo: {
34189
- 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.';
34795
+ readonly description: 'Event indicating a group convo was unlocked.';
34190
34796
  readonly type: 'object';
34191
34797
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
34192
34798
  readonly properties: {
@@ -34212,7 +34818,7 @@ export declare const schemas: ({
34212
34818
  };
34213
34819
  };
34214
34820
  readonly logLockConvoPermanently: {
34215
- 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.';
34821
+ readonly description: 'Event indicating a group convo was locked permanently.';
34216
34822
  readonly type: 'object';
34217
34823
  readonly required: ["rev", "convoId", "message", "relatedProfiles"];
34218
34824
  readonly properties: {
@@ -34238,7 +34844,7 @@ export declare const schemas: ({
34238
34844
  };
34239
34845
  };
34240
34846
  readonly logEditGroup: {
34241
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating info about group convo was edited.';
34847
+ readonly description: 'Event indicating info about group convo was edited.';
34242
34848
  readonly type: 'object';
34243
34849
  readonly required: ["rev", "convoId", "message"];
34244
34850
  readonly properties: {
@@ -34256,7 +34862,7 @@ export declare const schemas: ({
34256
34862
  };
34257
34863
  };
34258
34864
  readonly logCreateJoinLink: {
34259
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was created for a group convo.';
34865
+ readonly description: 'Event indicating a join link was created for a group convo.';
34260
34866
  readonly type: 'object';
34261
34867
  readonly required: ["rev", "convoId", "message"];
34262
34868
  readonly properties: {
@@ -34274,7 +34880,7 @@ export declare const schemas: ({
34274
34880
  };
34275
34881
  };
34276
34882
  readonly logEditJoinLink: {
34277
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a settings about a join link for a group convo were edited.';
34883
+ readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
34278
34884
  readonly type: 'object';
34279
34885
  readonly required: ["rev", "convoId", "message"];
34280
34886
  readonly properties: {
@@ -34292,7 +34898,7 @@ export declare const schemas: ({
34292
34898
  };
34293
34899
  };
34294
34900
  readonly logEnableJoinLink: {
34295
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was enabled for a group convo.';
34901
+ readonly description: 'Event indicating a join link was enabled for a group convo.';
34296
34902
  readonly type: 'object';
34297
34903
  readonly required: ["rev", "convoId", "message"];
34298
34904
  readonly properties: {
@@ -34310,7 +34916,7 @@ export declare const schemas: ({
34310
34916
  };
34311
34917
  };
34312
34918
  readonly logDisableJoinLink: {
34313
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was disabled for a group convo.';
34919
+ readonly description: 'Event indicating a join link was disabled for a group convo.';
34314
34920
  readonly type: 'object';
34315
34921
  readonly required: ["rev", "convoId", "message"];
34316
34922
  readonly properties: {
@@ -34328,7 +34934,7 @@ export declare const schemas: ({
34328
34934
  };
34329
34935
  };
34330
34936
  readonly logIncomingJoinRequest: {
34331
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
34937
+ readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
34332
34938
  readonly type: 'object';
34333
34939
  readonly required: ["rev", "convoId", "member"];
34334
34940
  readonly properties: {
@@ -34346,7 +34952,7 @@ export declare const schemas: ({
34346
34952
  };
34347
34953
  };
34348
34954
  readonly logApproveJoinRequest: {
34349
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
34955
+ readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
34350
34956
  readonly type: 'object';
34351
34957
  readonly required: ["rev", "convoId", "member"];
34352
34958
  readonly properties: {
@@ -34364,7 +34970,7 @@ export declare const schemas: ({
34364
34970
  };
34365
34971
  };
34366
34972
  readonly logRejectJoinRequest: {
34367
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was rejected by the viewer. Only the owner gets this.';
34973
+ readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
34368
34974
  readonly type: 'object';
34369
34975
  readonly required: ["rev", "convoId", "member"];
34370
34976
  readonly properties: {
@@ -34382,7 +34988,7 @@ export declare const schemas: ({
34382
34988
  };
34383
34989
  };
34384
34990
  readonly logOutgoingJoinRequest: {
34385
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was made by the requester. Only requester actor gets this.';
34991
+ readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
34386
34992
  readonly type: 'object';
34387
34993
  readonly required: ["rev", "convoId"];
34388
34994
  readonly properties: {
@@ -34395,7 +35001,7 @@ export declare const schemas: ({
34395
35001
  };
34396
35002
  };
34397
35003
  readonly logWithdrawIncomingJoinRequest: {
34398
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a prospective member withdrew their join request. Only the owner gets this.';
35004
+ readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
34399
35005
  readonly type: 'object';
34400
35006
  readonly required: ["rev", "convoId", "member"];
34401
35007
  readonly properties: {
@@ -34413,7 +35019,7 @@ export declare const schemas: ({
34413
35019
  };
34414
35020
  };
34415
35021
  readonly logWithdrawOutgoingJoinRequest: {
34416
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
35022
+ readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
34417
35023
  readonly type: 'object';
34418
35024
  readonly required: ["rev", "convoId"];
34419
35025
  readonly properties: {
@@ -34426,7 +35032,7 @@ export declare const schemas: ({
34426
35032
  };
34427
35033
  };
34428
35034
  readonly logReadJoinRequests: {
34429
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating the group owner marked join requests as read. Only the owner gets this.';
35035
+ readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
34430
35036
  readonly type: 'object';
34431
35037
  readonly required: ["rev", "convoId"];
34432
35038
  readonly properties: {
@@ -34748,7 +35354,7 @@ export declare const schemas: ({
34748
35354
  readonly defs: {
34749
35355
  readonly main: {
34750
35356
  readonly type: 'query';
34751
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Returns unread conversation counts for conversations that are unlocked, not muted, split by convo status. Direct convos are excluded when a block relationship exists between the actor and the other member, or when the other member's account is deleted or deactivated. Group convos are considered unread if they have unread join request counts.";
35357
+ readonly description: "Returns unread conversation counts for conversations that are unlocked, not muted, split by convo status. Direct convos are excluded when a block relationship exists between the actor and the other member, or when the other member's account is deleted or deactivated. Group convos are considered unread if they have unread join request counts.";
34752
35358
  readonly parameters: {
34753
35359
  readonly type: 'params';
34754
35360
  readonly properties: {
@@ -34826,7 +35432,7 @@ export declare const schemas: ({
34826
35432
  readonly defs: {
34827
35433
  readonly main: {
34828
35434
  readonly type: 'query';
34829
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests made by the user are returned as joinRequestConvoView.';
35435
+ readonly description: 'Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests made by the user are returned as joinRequestConvoView.';
34830
35436
  readonly parameters: {
34831
35437
  readonly type: 'params';
34832
35438
  readonly properties: {
@@ -34929,7 +35535,7 @@ export declare const schemas: ({
34929
35535
  readonly defs: {
34930
35536
  readonly main: {
34931
35537
  readonly type: 'procedure';
34932
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Locks a group convo so no more content (messages, reactions) can be added to it.';
35538
+ readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
34933
35539
  readonly errors: [{
34934
35540
  readonly name: 'ConvoLocked';
34935
35541
  }, {
@@ -35164,7 +35770,7 @@ export declare const schemas: ({
35164
35770
  readonly defs: {
35165
35771
  readonly main: {
35166
35772
  readonly type: 'procedure';
35167
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Unlocks a group convo so it is able to receive new content.';
35773
+ readonly description: 'Unlocks a group convo so it is able to receive new content.';
35168
35774
  readonly errors: [{
35169
35775
  readonly name: 'InvalidConvo';
35170
35776
  }, {
@@ -35313,7 +35919,7 @@ export declare const schemas: ({
35313
35919
  } | {
35314
35920
  readonly lexicon: 1;
35315
35921
  readonly id: 'chat.bsky.embed.joinLink';
35316
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A join link embedded in a chat message.';
35922
+ readonly description: 'A join link embedded in a chat message.';
35317
35923
  readonly defs: {
35318
35924
  readonly main: {
35319
35925
  readonly type: 'object';
@@ -35342,7 +35948,7 @@ export declare const schemas: ({
35342
35948
  readonly defs: {
35343
35949
  readonly main: {
35344
35950
  readonly type: 'procedure';
35345
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.";
35951
+ readonly description: "Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.";
35346
35952
  readonly errors: [{
35347
35953
  readonly name: 'AccountSuspended';
35348
35954
  }, {
@@ -35412,7 +36018,7 @@ export declare const schemas: ({
35412
36018
  readonly defs: {
35413
36019
  readonly main: {
35414
36020
  readonly type: 'procedure';
35415
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
36021
+ readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
35416
36022
  readonly errors: [{
35417
36023
  readonly name: 'InvalidConvo';
35418
36024
  }, {
@@ -35457,7 +36063,7 @@ export declare const schemas: ({
35457
36063
  readonly defs: {
35458
36064
  readonly main: {
35459
36065
  readonly type: 'procedure';
35460
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'request' membership for all members, except the owner who is 'accepted'.";
36066
+ readonly description: "Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'request' membership for all members, except the owner who is 'accepted'.";
35461
36067
  readonly errors: [{
35462
36068
  readonly name: 'AccountSuspended';
35463
36069
  }, {
@@ -35517,7 +36123,7 @@ export declare const schemas: ({
35517
36123
  readonly defs: {
35518
36124
  readonly main: {
35519
36125
  readonly type: 'procedure';
35520
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Creates a join link for the group convo.';
36126
+ readonly description: 'Creates a join link for the group convo.';
35521
36127
  readonly errors: [{
35522
36128
  readonly name: 'EnabledJoinLinkAlreadyExists';
35523
36129
  }, {
@@ -35563,7 +36169,6 @@ export declare const schemas: ({
35563
36169
  } | {
35564
36170
  readonly lexicon: 1;
35565
36171
  readonly id: 'chat.bsky.group.defs';
35566
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
35567
36172
  readonly defs: {
35568
36173
  readonly linkEnabledStatus: {
35569
36174
  readonly type: 'string';
@@ -35721,7 +36326,7 @@ export declare const schemas: ({
35721
36326
  readonly defs: {
35722
36327
  readonly main: {
35723
36328
  readonly type: 'procedure';
35724
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Disables the active join link for the group convo.';
36329
+ readonly description: 'Disables the active join link for the group convo.';
35725
36330
  readonly errors: [{
35726
36331
  readonly name: 'InvalidConvo';
35727
36332
  }, {
@@ -35762,7 +36367,7 @@ export declare const schemas: ({
35762
36367
  readonly defs: {
35763
36368
  readonly main: {
35764
36369
  readonly type: 'procedure';
35765
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Edits group settings.';
36370
+ readonly description: 'Edits group settings.';
35766
36371
  readonly errors: [{
35767
36372
  readonly name: 'ConvoLocked';
35768
36373
  }, {
@@ -35809,7 +36414,7 @@ export declare const schemas: ({
35809
36414
  readonly defs: {
35810
36415
  readonly main: {
35811
36416
  readonly type: 'procedure';
35812
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Edits the existing join link settings for the group convo.';
36417
+ readonly description: 'Edits the existing join link settings for the group convo.';
35813
36418
  readonly errors: [{
35814
36419
  readonly name: 'InvalidConvo';
35815
36420
  }, {
@@ -35857,7 +36462,7 @@ export declare const schemas: ({
35857
36462
  readonly defs: {
35858
36463
  readonly main: {
35859
36464
  readonly type: 'procedure';
35860
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Re-enables a previously disabled join link for the group convo.';
36465
+ readonly description: 'Re-enables a previously disabled join link for the group convo.';
35861
36466
  readonly errors: [{
35862
36467
  readonly name: 'InvalidConvo';
35863
36468
  }, {
@@ -35900,7 +36505,7 @@ export declare const schemas: ({
35900
36505
  readonly defs: {
35901
36506
  readonly main: {
35902
36507
  readonly type: 'query';
35903
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Get public information about groups from join links. The output array matches the input codes one-to-one by position (and each view also carries its 'code'). Disabled codes return a disabledJoinLinkPreviewView, and codes that do not map to a previewable link return an invalidJoinLinkPreviewView.";
36508
+ readonly description: "Get public information about groups from join links. The output array matches the input codes one-to-one by position (and each view also carries its 'code'). Disabled codes return a disabledJoinLinkPreviewView, and codes that do not map to a previewable link return an invalidJoinLinkPreviewView.";
35904
36509
  readonly parameters: {
35905
36510
  readonly type: 'params';
35906
36511
  readonly required: ["codes"];
@@ -35939,7 +36544,7 @@ export declare const schemas: ({
35939
36544
  readonly defs: {
35940
36545
  readonly main: {
35941
36546
  readonly type: 'query';
35942
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view.";
36547
+ readonly description: "Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view.";
35943
36548
  readonly errors: [{
35944
36549
  readonly name: 'InvalidConvo';
35945
36550
  }, {
@@ -35990,7 +36595,7 @@ export declare const schemas: ({
35990
36595
  readonly defs: {
35991
36596
  readonly main: {
35992
36597
  readonly type: 'query';
35993
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a page of group conversations that both the requester and the specified actor are members of.';
36598
+ readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
35994
36599
  readonly parameters: {
35995
36600
  readonly type: 'params';
35996
36601
  readonly required: ["subject"];
@@ -36037,7 +36642,7 @@ export declare const schemas: ({
36037
36642
  readonly defs: {
36038
36643
  readonly main: {
36039
36644
  readonly type: 'procedure';
36040
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
36645
+ readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
36041
36646
  readonly errors: [{
36042
36647
  readonly name: 'InvalidConvo';
36043
36648
  }, {
@@ -36075,7 +36680,7 @@ export declare const schemas: ({
36075
36680
  readonly defs: {
36076
36681
  readonly main: {
36077
36682
  readonly type: 'procedure';
36078
- readonly description: "[NOTE: This is under active development and should be considered unstable while this note is here]. Removes members from a group. This deletes convo memberships, doesn't just set a status.";
36683
+ readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
36079
36684
  readonly errors: [{
36080
36685
  readonly name: 'InvalidConvo';
36081
36686
  }, {
@@ -36122,7 +36727,7 @@ export declare const schemas: ({
36122
36727
  readonly defs: {
36123
36728
  readonly main: {
36124
36729
  readonly type: 'procedure';
36125
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
36730
+ readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
36126
36731
  readonly errors: [{
36127
36732
  readonly name: 'ConvoLocked';
36128
36733
  }, {
@@ -36174,7 +36779,7 @@ export declare const schemas: ({
36174
36779
  readonly defs: {
36175
36780
  readonly main: {
36176
36781
  readonly type: 'procedure';
36177
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Marks all join requests as read for the group owner.';
36782
+ readonly description: 'Marks all join requests as read for the group owner.';
36178
36783
  readonly errors: [{
36179
36784
  readonly name: 'InvalidConvo';
36180
36785
  }, {
@@ -36208,7 +36813,7 @@ export declare const schemas: ({
36208
36813
  readonly defs: {
36209
36814
  readonly main: {
36210
36815
  readonly type: 'procedure';
36211
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
36816
+ readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
36212
36817
  readonly errors: [{
36213
36818
  readonly name: 'InvalidJoinRequest';
36214
36819
  }];
@@ -36239,7 +36844,7 @@ export declare const schemas: ({
36239
36844
  readonly id: 'chat.bsky.moderation.defs';
36240
36845
  readonly defs: {
36241
36846
  readonly convoView: {
36242
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A view of a conversation for moderation purposes. Unlike chat.bsky.convo.defs#convoView, it does not include viewer-specific data (such as muted, unreadCount, status, lastMessage, lastReaction), since the requester is a moderator and not a member of the conversation. The member list is not included; use chat.bsky.moderation.getConvoMembers to list members.';
36847
+ readonly description: 'A view of a conversation for moderation purposes. Unlike chat.bsky.convo.defs#convoView, it does not include viewer-specific data (such as muted, unreadCount, status, lastMessage, lastReaction), since the requester is a moderator and not a member of the conversation. The member list is not included; use chat.bsky.moderation.getConvoMembers to list members.';
36243
36848
  readonly type: 'object';
36244
36849
  readonly required: ["id", "rev"];
36245
36850
  readonly properties: {
@@ -36257,12 +36862,12 @@ export declare const schemas: ({
36257
36862
  };
36258
36863
  };
36259
36864
  readonly directConvo: {
36260
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Data specific to a direct conversation, for moderation purposes.';
36865
+ readonly description: 'Data specific to a direct conversation, for moderation purposes.';
36261
36866
  readonly type: 'object';
36262
36867
  readonly properties: {};
36263
36868
  };
36264
36869
  readonly groupConvo: {
36265
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Data specific to a group conversation, for moderation purposes. Unlike chat.bsky.convo.defs#groupConvo, it does not include viewer-specific data (such as unreadJoinRequestCount), since the requester is a moderator and not a member of the conversation.';
36870
+ readonly description: 'Data specific to a group conversation, for moderation purposes. Unlike chat.bsky.convo.defs#groupConvo, it does not include viewer-specific data (such as unreadJoinRequestCount), since the requester is a moderator and not a member of the conversation.';
36266
36871
  readonly type: 'object';
36267
36872
  readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
36268
36873
  readonly properties: {
@@ -36363,7 +36968,7 @@ export declare const schemas: ({
36363
36968
  readonly defs: {
36364
36969
  readonly main: {
36365
36970
  readonly type: 'query';
36366
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.';
36971
+ readonly description: 'Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.';
36367
36972
  readonly errors: [{
36368
36973
  readonly name: 'InvalidConvo';
36369
36974
  }];
@@ -36397,7 +37002,7 @@ export declare const schemas: ({
36397
37002
  readonly defs: {
36398
37003
  readonly main: {
36399
37004
  readonly type: 'query';
36400
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a paginated list of members from a conversation, for moderation purposes. Does not require the requester to be a member of the conversation.';
37005
+ readonly description: 'Returns a paginated list of members from a conversation, for moderation purposes. Does not require the requester to be a member of the conversation.';
36401
37006
  readonly errors: [{
36402
37007
  readonly name: 'InvalidConvo';
36403
37008
  }];
@@ -36446,7 +37051,7 @@ export declare const schemas: ({
36446
37051
  readonly defs: {
36447
37052
  readonly main: {
36448
37053
  readonly type: 'query';
36449
- readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.';
37054
+ readonly description: 'Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.';
36450
37055
  readonly parameters: {
36451
37056
  readonly type: 'params';
36452
37057
  readonly required: ["convoIds"];
@@ -37092,6 +37697,98 @@ export declare const schemas: ({
37092
37697
  };
37093
37698
  };
37094
37699
  };
37700
+ } | {
37701
+ readonly lexicon: 1;
37702
+ readonly id: 'chat.bsky.notification.defs';
37703
+ readonly defs: {
37704
+ readonly preferences: {
37705
+ readonly type: 'object';
37706
+ readonly required: ["chat", "chatRequest"];
37707
+ readonly properties: {
37708
+ readonly chat: {
37709
+ readonly type: 'ref';
37710
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
37711
+ };
37712
+ readonly chatRequest: {
37713
+ readonly type: 'ref';
37714
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
37715
+ };
37716
+ };
37717
+ };
37718
+ readonly chatPreference: {
37719
+ readonly type: 'object';
37720
+ readonly required: ["include", "push"];
37721
+ readonly properties: {
37722
+ readonly include: {
37723
+ readonly type: 'string';
37724
+ readonly knownValues: ["all", "follows"];
37725
+ };
37726
+ readonly push: {
37727
+ readonly type: 'boolean';
37728
+ };
37729
+ };
37730
+ };
37731
+ };
37732
+ } | {
37733
+ readonly lexicon: 1;
37734
+ readonly id: 'chat.bsky.notification.getPreferences';
37735
+ readonly defs: {
37736
+ readonly main: {
37737
+ readonly type: 'query';
37738
+ readonly description: "Get the requesting account's chat notification preferences. Defaults are returned for accounts that have not set any preferences. Requires auth.";
37739
+ readonly output: {
37740
+ readonly encoding: 'application/json';
37741
+ readonly schema: {
37742
+ readonly type: 'object';
37743
+ readonly required: ["preferences"];
37744
+ readonly properties: {
37745
+ readonly preferences: {
37746
+ readonly type: 'ref';
37747
+ readonly ref: 'lex:chat.bsky.notification.defs#preferences';
37748
+ };
37749
+ };
37750
+ };
37751
+ };
37752
+ };
37753
+ };
37754
+ } | {
37755
+ readonly lexicon: 1;
37756
+ readonly id: 'chat.bsky.notification.putPreferences';
37757
+ readonly defs: {
37758
+ readonly main: {
37759
+ readonly type: 'procedure';
37760
+ readonly description: "Set the requesting account's chat notification preferences. Only the provided preferences are updated; omitted preferences are left unchanged.";
37761
+ readonly input: {
37762
+ readonly encoding: 'application/json';
37763
+ readonly schema: {
37764
+ readonly type: 'object';
37765
+ readonly properties: {
37766
+ readonly chat: {
37767
+ readonly type: 'ref';
37768
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
37769
+ };
37770
+ readonly chatRequest: {
37771
+ readonly type: 'ref';
37772
+ readonly ref: 'lex:chat.bsky.notification.defs#chatPreference';
37773
+ };
37774
+ };
37775
+ };
37776
+ };
37777
+ readonly output: {
37778
+ readonly encoding: 'application/json';
37779
+ readonly schema: {
37780
+ readonly type: 'object';
37781
+ readonly required: ["preferences"];
37782
+ readonly properties: {
37783
+ readonly preferences: {
37784
+ readonly type: 'ref';
37785
+ readonly ref: 'lex:chat.bsky.notification.defs#preferences';
37786
+ };
37787
+ };
37788
+ };
37789
+ };
37790
+ };
37791
+ };
37095
37792
  } | {
37096
37793
  readonly lexicon: 1;
37097
37794
  readonly id: 'com.atproto.admin.defs';
@@ -45236,6 +45933,11 @@ export declare const schemas: ({
45236
45933
  readonly ref: 'lex:tools.ozone.team.defs#member';
45237
45934
  readonly description: 'Full member record of the moderator who created this activity';
45238
45935
  };
45936
+ readonly report: {
45937
+ readonly type: 'ref';
45938
+ readonly ref: 'lex:tools.ozone.report.defs#reportView';
45939
+ readonly description: 'Full view of the report this activity belongs to.';
45940
+ };
45239
45941
  readonly createdAt: {
45240
45942
  readonly type: 'string';
45241
45943
  readonly format: 'datetime';
@@ -45637,6 +46339,71 @@ export declare const schemas: ({
45637
46339
  };
45638
46340
  };
45639
46341
  };
46342
+ } | {
46343
+ readonly lexicon: 1;
46344
+ readonly id: 'tools.ozone.report.queryActivities';
46345
+ readonly defs: {
46346
+ readonly main: {
46347
+ readonly type: 'query';
46348
+ readonly description: 'Query report activities across all reports, ordered by createdAt. Used by downstream pollers; for per-report activity history use listActivities.';
46349
+ readonly parameters: {
46350
+ readonly type: 'params';
46351
+ readonly properties: {
46352
+ readonly activityTypes: {
46353
+ readonly type: 'array';
46354
+ readonly items: {
46355
+ readonly type: 'string';
46356
+ };
46357
+ readonly description: 'Filter to specific activity types (e.g. closeActivity, escalationActivity). If omitted, all types are returned.';
46358
+ };
46359
+ readonly createdAfter: {
46360
+ readonly type: 'string';
46361
+ readonly format: 'datetime';
46362
+ readonly description: 'Retrieve activities created at or after a given timestamp';
46363
+ };
46364
+ readonly createdBefore: {
46365
+ readonly type: 'string';
46366
+ readonly format: 'datetime';
46367
+ readonly description: 'Retrieve activities created at or before a given timestamp';
46368
+ };
46369
+ readonly sortDirection: {
46370
+ readonly type: 'string';
46371
+ readonly default: 'desc';
46372
+ readonly enum: ["asc", "desc"];
46373
+ };
46374
+ readonly limit: {
46375
+ readonly type: 'integer';
46376
+ readonly minimum: 1;
46377
+ readonly maximum: 100;
46378
+ readonly default: 50;
46379
+ };
46380
+ readonly cursor: {
46381
+ readonly type: 'string';
46382
+ readonly description: 'Cursor of the form `<createdAtMs>::<activityId>`.';
46383
+ };
46384
+ };
46385
+ };
46386
+ readonly output: {
46387
+ readonly encoding: 'application/json';
46388
+ readonly schema: {
46389
+ readonly type: 'object';
46390
+ readonly required: ["activities"];
46391
+ readonly properties: {
46392
+ readonly activities: {
46393
+ readonly type: 'array';
46394
+ readonly items: {
46395
+ readonly type: 'ref';
46396
+ readonly ref: 'lex:tools.ozone.report.defs#reportActivityView';
46397
+ };
46398
+ };
46399
+ readonly cursor: {
46400
+ readonly type: 'string';
46401
+ };
46402
+ };
46403
+ };
46404
+ };
46405
+ };
46406
+ };
45640
46407
  } | {
45641
46408
  readonly lexicon: 1;
45642
46409
  readonly id: 'tools.ozone.report.queryReports';
@@ -47600,6 +48367,7 @@ export declare const ids: {
47600
48367
  readonly AppBskyFeedPostgate: 'app.bsky.feed.postgate';
47601
48368
  readonly AppBskyFeedRepost: 'app.bsky.feed.repost';
47602
48369
  readonly AppBskyFeedSearchPosts: 'app.bsky.feed.searchPosts';
48370
+ readonly AppBskyFeedSearchPostsV2: 'app.bsky.feed.searchPostsV2';
47603
48371
  readonly AppBskyFeedSendInteractions: 'app.bsky.feed.sendInteractions';
47604
48372
  readonly AppBskyFeedThreadgate: 'app.bsky.feed.threadgate';
47605
48373
  readonly AppBskyGraphBlock: 'app.bsky.graph.block';
@@ -47738,6 +48506,9 @@ export declare const ids: {
47738
48506
  readonly ChatBskyModerationGetMessageContext: 'chat.bsky.moderation.getMessageContext';
47739
48507
  readonly ChatBskyModerationSubscribeModEvents: 'chat.bsky.moderation.subscribeModEvents';
47740
48508
  readonly ChatBskyModerationUpdateActorAccess: 'chat.bsky.moderation.updateActorAccess';
48509
+ readonly ChatBskyNotificationDefs: 'chat.bsky.notification.defs';
48510
+ readonly ChatBskyNotificationGetPreferences: 'chat.bsky.notification.getPreferences';
48511
+ readonly ChatBskyNotificationPutPreferences: 'chat.bsky.notification.putPreferences';
47741
48512
  readonly ComAtprotoAdminDefs: 'com.atproto.admin.defs';
47742
48513
  readonly ComAtprotoAdminDeleteAccount: 'com.atproto.admin.deleteAccount';
47743
48514
  readonly ComAtprotoAdminDisableAccountInvites: 'com.atproto.admin.disableAccountInvites';
@@ -47874,6 +48645,7 @@ export declare const ids: {
47874
48645
  readonly ToolsOzoneReportGetLiveStats: 'tools.ozone.report.getLiveStats';
47875
48646
  readonly ToolsOzoneReportGetReport: 'tools.ozone.report.getReport';
47876
48647
  readonly ToolsOzoneReportListActivities: 'tools.ozone.report.listActivities';
48648
+ readonly ToolsOzoneReportQueryActivities: 'tools.ozone.report.queryActivities';
47877
48649
  readonly ToolsOzoneReportQueryReports: 'tools.ozone.report.queryReports';
47878
48650
  readonly ToolsOzoneReportReassignQueue: 'tools.ozone.report.reassignQueue';
47879
48651
  readonly ToolsOzoneReportRefreshStats: 'tools.ozone.report.refreshStats';