@atproto/ozone 0.2.6 → 0.2.7

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 (31) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/lexicon/index.d.ts +2 -0
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +4 -0
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +602 -140
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +304 -69
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts +87 -0
  11. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts.map +1 -0
  12. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js +5 -0
  13. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js.map +1 -0
  14. package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts +1 -1
  15. package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts.map +1 -1
  16. package/dist/lexicon/types/chat/bsky/actor/declaration.js.map +1 -1
  17. package/dist/lexicon/types/chat/bsky/actor/defs.d.ts +2 -3
  18. package/dist/lexicon/types/chat/bsky/actor/defs.d.ts.map +1 -1
  19. package/dist/lexicon/types/chat/bsky/actor/defs.js.map +1 -1
  20. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +39 -36
  21. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
  22. package/dist/lexicon/types/chat/bsky/convo/defs.js +7 -0
  23. package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
  24. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts +2 -2
  25. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts.map +1 -1
  26. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.js.map +1 -1
  27. package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts +3 -3
  28. package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts.map +1 -1
  29. package/dist/lexicon/types/chat/bsky/moderation/defs.js.map +1 -1
  30. package/package.json +13 -13
  31. package/tsconfig.build.tsbuildinfo +1 -1
@@ -5061,6 +5061,239 @@ export const schemaDict = {
5061
5061
  },
5062
5062
  },
5063
5063
  },
5064
+ AppBskyFeedSearchPostsV2: {
5065
+ lexicon: 1,
5066
+ id: 'app.bsky.feed.searchPostsV2',
5067
+ defs: {
5068
+ main: {
5069
+ type: 'query',
5070
+ description: 'Find posts matching a search query or filters, returning search hits for matching post records.',
5071
+ parameters: {
5072
+ type: 'params',
5073
+ required: [],
5074
+ properties: {
5075
+ cursor: {
5076
+ type: 'string',
5077
+ description: 'Optional pagination cursor.',
5078
+ },
5079
+ limit: {
5080
+ type: 'integer',
5081
+ minimum: 1,
5082
+ maximum: 100,
5083
+ default: 25,
5084
+ description: 'Maximum number of results to return.',
5085
+ },
5086
+ query: {
5087
+ type: 'string',
5088
+ description: 'Search query string. A query or at least one filter is required.',
5089
+ },
5090
+ sort: {
5091
+ type: 'string',
5092
+ knownValues: ['recent', 'top'],
5093
+ description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.",
5094
+ },
5095
+ authors: {
5096
+ type: 'array',
5097
+ items: {
5098
+ type: 'string',
5099
+ format: 'at-identifier',
5100
+ },
5101
+ description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.',
5102
+ },
5103
+ mentions: {
5104
+ type: 'array',
5105
+ items: {
5106
+ type: 'string',
5107
+ format: 'at-identifier',
5108
+ },
5109
+ description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.',
5110
+ },
5111
+ domains: {
5112
+ type: 'array',
5113
+ items: {
5114
+ type: 'string',
5115
+ },
5116
+ description: 'Include posts that link to any of these domains.',
5117
+ },
5118
+ urls: {
5119
+ type: 'array',
5120
+ items: {
5121
+ type: 'string',
5122
+ format: 'uri',
5123
+ },
5124
+ description: 'Include posts that link to any of these URLs.',
5125
+ },
5126
+ embeddedAtUris: {
5127
+ type: 'array',
5128
+ items: {
5129
+ type: 'string',
5130
+ format: 'at-uri',
5131
+ },
5132
+ description: 'Include posts that embed any of these AT URIs.',
5133
+ },
5134
+ hashtags: {
5135
+ type: 'array',
5136
+ items: {
5137
+ type: 'string',
5138
+ maxLength: 640,
5139
+ maxGraphemes: 64,
5140
+ },
5141
+ description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.',
5142
+ },
5143
+ excludeAuthors: {
5144
+ type: 'array',
5145
+ items: {
5146
+ type: 'string',
5147
+ format: 'at-identifier',
5148
+ },
5149
+ description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.',
5150
+ },
5151
+ excludeMentions: {
5152
+ type: 'array',
5153
+ items: {
5154
+ type: 'string',
5155
+ format: 'at-identifier',
5156
+ },
5157
+ description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.',
5158
+ },
5159
+ excludeDomains: {
5160
+ type: 'array',
5161
+ items: {
5162
+ type: 'string',
5163
+ },
5164
+ description: 'Exclude posts that link to any of these domains.',
5165
+ },
5166
+ excludeUrls: {
5167
+ type: 'array',
5168
+ items: {
5169
+ type: 'string',
5170
+ format: 'uri',
5171
+ },
5172
+ description: 'Exclude posts that link to any of these URLs.',
5173
+ },
5174
+ excludeEmbeddedAtUris: {
5175
+ type: 'array',
5176
+ items: {
5177
+ type: 'string',
5178
+ format: 'at-uri',
5179
+ },
5180
+ description: 'Exclude posts that embed any of these AT URIs.',
5181
+ },
5182
+ excludeHashtags: {
5183
+ type: 'array',
5184
+ items: {
5185
+ type: 'string',
5186
+ maxLength: 640,
5187
+ maxGraphemes: 64,
5188
+ },
5189
+ description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.',
5190
+ },
5191
+ since: {
5192
+ type: 'string',
5193
+ description: 'Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD).',
5194
+ },
5195
+ until: {
5196
+ type: 'string',
5197
+ description: 'Include posts indexed before this timestamp. Defaults to the current time. Can be a datetime, or just an ISO date (YYYY-MM-DD).',
5198
+ },
5199
+ allTime: {
5200
+ type: 'boolean',
5201
+ description: 'Search the full index instead of the recent-post window.',
5202
+ },
5203
+ languages: {
5204
+ type: 'array',
5205
+ items: {
5206
+ type: 'string',
5207
+ format: 'language',
5208
+ },
5209
+ description: 'Include posts whose language matches any of these language codes.',
5210
+ },
5211
+ excludeLanguages: {
5212
+ type: 'array',
5213
+ items: {
5214
+ type: 'string',
5215
+ format: 'language',
5216
+ },
5217
+ description: 'Exclude posts whose language matches any of these language codes.',
5218
+ },
5219
+ hasMedia: {
5220
+ type: 'boolean',
5221
+ description: 'Include only posts with media.',
5222
+ },
5223
+ hasVideo: {
5224
+ type: 'boolean',
5225
+ description: 'Include only posts with video.',
5226
+ },
5227
+ replyParentUri: {
5228
+ type: 'string',
5229
+ format: 'at-uri',
5230
+ description: 'Include only direct replies to this parent post URI.',
5231
+ },
5232
+ threadRootUri: {
5233
+ type: 'string',
5234
+ format: 'at-uri',
5235
+ description: 'Include only posts in the thread rooted at this post URI.',
5236
+ },
5237
+ excludeReplies: {
5238
+ type: 'boolean',
5239
+ description: 'Exclude replies from results. Mutually exclusive with repliesOnly.',
5240
+ },
5241
+ repliesOnly: {
5242
+ type: 'boolean',
5243
+ description: 'Include only replies. Mutually exclusive with excludeReplies.',
5244
+ },
5245
+ following: {
5246
+ type: 'boolean',
5247
+ description: 'Include only posts from accounts followed by the viewer.',
5248
+ },
5249
+ queryLanguage: {
5250
+ type: 'string',
5251
+ knownValues: ['ja', 'zh', 'ko', 'th', 'ar'],
5252
+ description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.',
5253
+ },
5254
+ },
5255
+ },
5256
+ output: {
5257
+ encoding: 'application/json',
5258
+ schema: {
5259
+ type: 'object',
5260
+ required: ['posts'],
5261
+ properties: {
5262
+ cursor: {
5263
+ type: 'string',
5264
+ description: 'Cursor for the next page of results.',
5265
+ },
5266
+ hitsTotal: {
5267
+ type: 'integer',
5268
+ description: 'Estimated total number of matching hits. May be rounded or truncated.',
5269
+ },
5270
+ posts: {
5271
+ type: 'array',
5272
+ items: {
5273
+ type: 'ref',
5274
+ ref: 'lex:app.bsky.feed.defs#postView',
5275
+ },
5276
+ description: 'Hydrated views of matching posts.',
5277
+ },
5278
+ detectedQueryLanguages: {
5279
+ type: 'array',
5280
+ items: {
5281
+ type: 'string',
5282
+ knownValues: ['ja', 'zh', 'ko', 'th', 'ar'],
5283
+ },
5284
+ description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.',
5285
+ },
5286
+ },
5287
+ },
5288
+ },
5289
+ errors: [
5290
+ {
5291
+ name: 'BadQueryString',
5292
+ },
5293
+ ],
5294
+ },
5295
+ },
5296
+ },
5064
5297
  AppBskyFeedSendInteractions: {
5065
5298
  lexicon: 1,
5066
5299
  id: 'app.bsky.feed.sendInteractions',
@@ -9623,7 +9856,7 @@ export const schemaDict = {
9623
9856
  knownValues: ['all', 'none', 'following'],
9624
9857
  },
9625
9858
  allowGroupInvites: {
9626
- 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.',
9859
+ description: 'Declaration about group chat invitation preferences for the record owner.',
9627
9860
  type: 'string',
9628
9861
  knownValues: ['all', 'none', 'following'],
9629
9862
  },
@@ -9700,12 +9933,11 @@ export const schemaDict = {
9700
9933
  },
9701
9934
  },
9702
9935
  directConvoMember: {
9703
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
9704
9936
  type: 'object',
9705
9937
  properties: {},
9706
9938
  },
9707
9939
  groupConvoMember: {
9708
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.',
9940
+ description: 'A current group convo member.',
9709
9941
  type: 'object',
9710
9942
  required: ['role'],
9711
9943
  properties: {
@@ -9722,7 +9954,7 @@ export const schemaDict = {
9722
9954
  },
9723
9955
  },
9724
9956
  pastGroupConvoMember: {
9725
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.',
9957
+ description: 'A past group convo member.',
9726
9958
  type: 'object',
9727
9959
  required: [],
9728
9960
  properties: {},
@@ -10020,6 +10252,7 @@ export const schemaDict = {
10020
10252
  refs: [
10021
10253
  'lex:chat.bsky.convo.defs#messageView',
10022
10254
  'lex:chat.bsky.convo.defs#deletedMessageView',
10255
+ 'lex:chat.bsky.convo.defs#messageBeforeUserJoinedGroupView',
10023
10256
  ],
10024
10257
  },
10025
10258
  sender: {
@@ -10043,7 +10276,6 @@ export const schemaDict = {
10043
10276
  },
10044
10277
  },
10045
10278
  systemMessageView: {
10046
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
10047
10279
  type: 'object',
10048
10280
  required: ['id', 'rev', 'sentAt', 'data'],
10049
10281
  properties: {
@@ -10077,7 +10309,7 @@ export const schemaDict = {
10077
10309
  },
10078
10310
  },
10079
10311
  systemMessageDataAddMember: {
10080
- 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.',
10312
+ description: 'System message indicating a user was added to the group convo.',
10081
10313
  type: 'object',
10082
10314
  required: ['member', 'role', 'addedBy'],
10083
10315
  properties: {
@@ -10098,7 +10330,7 @@ export const schemaDict = {
10098
10330
  },
10099
10331
  },
10100
10332
  systemMessageDataRemoveMember: {
10101
- 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.',
10333
+ description: 'System message indicating a user was removed from the group convo.',
10102
10334
  type: 'object',
10103
10335
  required: ['member', 'removedBy'],
10104
10336
  properties: {
@@ -10114,7 +10346,7 @@ export const schemaDict = {
10114
10346
  },
10115
10347
  },
10116
10348
  systemMessageDataMemberJoin: {
10117
- 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.',
10349
+ description: 'System message indicating a user joined the group convo via join link.',
10118
10350
  type: 'object',
10119
10351
  required: ['member', 'role'],
10120
10352
  properties: {
@@ -10136,7 +10368,7 @@ export const schemaDict = {
10136
10368
  },
10137
10369
  },
10138
10370
  systemMessageDataMemberLeave: {
10139
- 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.',
10371
+ description: 'System message indicating a user voluntarily left the group convo.',
10140
10372
  type: 'object',
10141
10373
  required: ['member'],
10142
10374
  properties: {
@@ -10148,7 +10380,7 @@ export const schemaDict = {
10148
10380
  },
10149
10381
  },
10150
10382
  systemMessageDataLockConvo: {
10151
- 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.',
10383
+ description: 'System message indicating the group convo was locked.',
10152
10384
  type: 'object',
10153
10385
  required: ['lockedBy'],
10154
10386
  properties: {
@@ -10160,7 +10392,7 @@ export const schemaDict = {
10160
10392
  },
10161
10393
  },
10162
10394
  systemMessageDataUnlockConvo: {
10163
- 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.',
10395
+ description: 'System message indicating the group convo was unlocked.',
10164
10396
  type: 'object',
10165
10397
  required: ['unlockedBy'],
10166
10398
  properties: {
@@ -10172,7 +10404,7 @@ export const schemaDict = {
10172
10404
  },
10173
10405
  },
10174
10406
  systemMessageDataLockConvoPermanently: {
10175
- 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.',
10407
+ description: 'System message indicating the group convo was locked permanently.',
10176
10408
  type: 'object',
10177
10409
  required: ['lockedBy'],
10178
10410
  properties: {
@@ -10184,7 +10416,7 @@ export const schemaDict = {
10184
10416
  },
10185
10417
  },
10186
10418
  systemMessageDataEditGroup: {
10187
- 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.',
10419
+ description: 'System message indicating the group info was edited.',
10188
10420
  type: 'object',
10189
10421
  properties: {
10190
10422
  oldName: {
@@ -10198,22 +10430,22 @@ export const schemaDict = {
10198
10430
  },
10199
10431
  },
10200
10432
  systemMessageDataCreateJoinLink: {
10201
- 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.',
10433
+ description: 'System message indicating the group join link was created.',
10202
10434
  type: 'object',
10203
10435
  properties: {},
10204
10436
  },
10205
10437
  systemMessageDataEditJoinLink: {
10206
- 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.',
10438
+ description: 'System message indicating the group join link was edited.',
10207
10439
  type: 'object',
10208
10440
  properties: {},
10209
10441
  },
10210
10442
  systemMessageDataEnableJoinLink: {
10211
- 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.',
10443
+ description: 'System message indicating the group join link was enabled.',
10212
10444
  type: 'object',
10213
10445
  properties: {},
10214
10446
  },
10215
10447
  systemMessageDataDisableJoinLink: {
10216
- 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.',
10448
+ description: 'System message indicating the group join link was disabled.',
10217
10449
  type: 'object',
10218
10450
  properties: {},
10219
10451
  },
@@ -10237,6 +10469,11 @@ export const schemaDict = {
10237
10469
  },
10238
10470
  },
10239
10471
  },
10472
+ messageBeforeUserJoinedGroupView: {
10473
+ description: "Placeholder embedded in place of a reply's parent message when that parent was sent before the viewer joined the group convo. The viewer has no access to that history, so no message data is carried.",
10474
+ type: 'object',
10475
+ properties: {},
10476
+ },
10240
10477
  messageViewSender: {
10241
10478
  type: 'object',
10242
10479
  required: ['did'],
@@ -10340,12 +10577,10 @@ export const schemaDict = {
10340
10577
  },
10341
10578
  },
10342
10579
  directConvo: {
10343
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
10344
10580
  type: 'object',
10345
10581
  properties: {},
10346
10582
  },
10347
10583
  groupConvo: {
10348
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
10349
10584
  type: 'object',
10350
10585
  required: [
10351
10586
  'createdAt',
@@ -10596,7 +10831,7 @@ export const schemaDict = {
10596
10831
  },
10597
10832
  },
10598
10833
  logReadConvo: {
10599
- 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.',
10834
+ description: 'Event indicating a convo was read up to a certain message.',
10600
10835
  type: 'object',
10601
10836
  required: ['rev', 'convoId', 'message'],
10602
10837
  properties: {
@@ -10617,7 +10852,7 @@ export const schemaDict = {
10617
10852
  },
10618
10853
  },
10619
10854
  logAddMember: {
10620
- 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).',
10855
+ 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).',
10621
10856
  type: 'object',
10622
10857
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10623
10858
  properties: {
@@ -10643,7 +10878,7 @@ export const schemaDict = {
10643
10878
  },
10644
10879
  },
10645
10880
  logRemoveMember: {
10646
- 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).",
10881
+ 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).",
10647
10882
  type: 'object',
10648
10883
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10649
10884
  properties: {
@@ -10669,7 +10904,7 @@ export const schemaDict = {
10669
10904
  },
10670
10905
  },
10671
10906
  logMemberJoin: {
10672
- 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).',
10907
+ 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).',
10673
10908
  type: 'object',
10674
10909
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10675
10910
  properties: {
@@ -10695,7 +10930,7 @@ export const schemaDict = {
10695
10930
  },
10696
10931
  },
10697
10932
  logMemberLeave: {
10698
- 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).",
10933
+ 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).",
10699
10934
  type: 'object',
10700
10935
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10701
10936
  properties: {
@@ -10721,7 +10956,7 @@ export const schemaDict = {
10721
10956
  },
10722
10957
  },
10723
10958
  logLockConvo: {
10724
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked.',
10959
+ description: 'Event indicating a group convo was locked.',
10725
10960
  type: 'object',
10726
10961
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10727
10962
  properties: {
@@ -10747,7 +10982,7 @@ export const schemaDict = {
10747
10982
  },
10748
10983
  },
10749
10984
  logUnlockConvo: {
10750
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was unlocked.',
10985
+ description: 'Event indicating a group convo was unlocked.',
10751
10986
  type: 'object',
10752
10987
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10753
10988
  properties: {
@@ -10773,7 +11008,7 @@ export const schemaDict = {
10773
11008
  },
10774
11009
  },
10775
11010
  logLockConvoPermanently: {
10776
- 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.',
11011
+ description: 'Event indicating a group convo was locked permanently.',
10777
11012
  type: 'object',
10778
11013
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10779
11014
  properties: {
@@ -10799,7 +11034,7 @@ export const schemaDict = {
10799
11034
  },
10800
11035
  },
10801
11036
  logEditGroup: {
10802
- 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.',
11037
+ description: 'Event indicating info about group convo was edited.',
10803
11038
  type: 'object',
10804
11039
  required: ['rev', 'convoId', 'message'],
10805
11040
  properties: {
@@ -10817,7 +11052,7 @@ export const schemaDict = {
10817
11052
  },
10818
11053
  },
10819
11054
  logCreateJoinLink: {
10820
- 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.',
11055
+ description: 'Event indicating a join link was created for a group convo.',
10821
11056
  type: 'object',
10822
11057
  required: ['rev', 'convoId', 'message'],
10823
11058
  properties: {
@@ -10835,7 +11070,7 @@ export const schemaDict = {
10835
11070
  },
10836
11071
  },
10837
11072
  logEditJoinLink: {
10838
- 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.',
11073
+ description: 'Event indicating a settings about a join link for a group convo were edited.',
10839
11074
  type: 'object',
10840
11075
  required: ['rev', 'convoId', 'message'],
10841
11076
  properties: {
@@ -10853,7 +11088,7 @@ export const schemaDict = {
10853
11088
  },
10854
11089
  },
10855
11090
  logEnableJoinLink: {
10856
- 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.',
11091
+ description: 'Event indicating a join link was enabled for a group convo.',
10857
11092
  type: 'object',
10858
11093
  required: ['rev', 'convoId', 'message'],
10859
11094
  properties: {
@@ -10871,7 +11106,7 @@ export const schemaDict = {
10871
11106
  },
10872
11107
  },
10873
11108
  logDisableJoinLink: {
10874
- 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.',
11109
+ description: 'Event indicating a join link was disabled for a group convo.',
10875
11110
  type: 'object',
10876
11111
  required: ['rev', 'convoId', 'message'],
10877
11112
  properties: {
@@ -10889,7 +11124,7 @@ export const schemaDict = {
10889
11124
  },
10890
11125
  },
10891
11126
  logIncomingJoinRequest: {
10892
- 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.',
11127
+ description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.',
10893
11128
  type: 'object',
10894
11129
  required: ['rev', 'convoId', 'member'],
10895
11130
  properties: {
@@ -10907,7 +11142,7 @@ export const schemaDict = {
10907
11142
  },
10908
11143
  },
10909
11144
  logApproveJoinRequest: {
10910
- 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.',
11145
+ description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.',
10911
11146
  type: 'object',
10912
11147
  required: ['rev', 'convoId', 'member'],
10913
11148
  properties: {
@@ -10925,7 +11160,7 @@ export const schemaDict = {
10925
11160
  },
10926
11161
  },
10927
11162
  logRejectJoinRequest: {
10928
- 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.',
11163
+ description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.',
10929
11164
  type: 'object',
10930
11165
  required: ['rev', 'convoId', 'member'],
10931
11166
  properties: {
@@ -10943,7 +11178,7 @@ export const schemaDict = {
10943
11178
  },
10944
11179
  },
10945
11180
  logOutgoingJoinRequest: {
10946
- 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.',
11181
+ description: 'Event indicating a join request was made by the requester. Only requester actor gets this.',
10947
11182
  type: 'object',
10948
11183
  required: ['rev', 'convoId'],
10949
11184
  properties: {
@@ -10956,7 +11191,7 @@ export const schemaDict = {
10956
11191
  },
10957
11192
  },
10958
11193
  logWithdrawIncomingJoinRequest: {
10959
- 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.',
11194
+ description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.',
10960
11195
  type: 'object',
10961
11196
  required: ['rev', 'convoId', 'member'],
10962
11197
  properties: {
@@ -10974,7 +11209,7 @@ export const schemaDict = {
10974
11209
  },
10975
11210
  },
10976
11211
  logWithdrawOutgoingJoinRequest: {
10977
- 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.',
11212
+ description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.',
10978
11213
  type: 'object',
10979
11214
  required: ['rev', 'convoId'],
10980
11215
  properties: {
@@ -10987,7 +11222,7 @@ export const schemaDict = {
10987
11222
  },
10988
11223
  },
10989
11224
  logReadJoinRequests: {
10990
- 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.',
11225
+ description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.',
10991
11226
  type: 'object',
10992
11227
  required: ['rev', 'convoId'],
10993
11228
  properties: {
@@ -11368,7 +11603,7 @@ export const schemaDict = {
11368
11603
  defs: {
11369
11604
  main: {
11370
11605
  type: 'query',
11371
- 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.",
11606
+ 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.",
11372
11607
  parameters: {
11373
11608
  type: 'params',
11374
11609
  properties: {
@@ -11387,11 +11622,11 @@ export const schemaDict = {
11387
11622
  properties: {
11388
11623
  unreadAcceptedConvos: {
11389
11624
  type: 'integer',
11390
- description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at 31, where 31 means more than 30.',
11625
+ description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at 100, where 100 means more than 99.',
11391
11626
  },
11392
11627
  unreadRequestConvos: {
11393
11628
  type: 'integer',
11394
- description: 'Number of unread, unlocked request convos. Includes convos with unread messages, but not with unread join request, since only the owner of a group has join requests to read, and the group would necessarily be accepted. Capped at 11, where 11 means more than 10.',
11629
+ description: 'Number of unread, unlocked request convos. Includes convos with unread messages, but not with unread join request, since only the owner of a group has join requests to read, and the group would necessarily be accepted. Capped at 100, where 100 means more than 99.',
11395
11630
  },
11396
11631
  },
11397
11632
  },
@@ -11451,7 +11686,7 @@ export const schemaDict = {
11451
11686
  defs: {
11452
11687
  main: {
11453
11688
  type: 'query',
11454
- 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.',
11689
+ 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.',
11455
11690
  parameters: {
11456
11691
  type: 'params',
11457
11692
  properties: {
@@ -11559,7 +11794,7 @@ export const schemaDict = {
11559
11794
  defs: {
11560
11795
  main: {
11561
11796
  type: 'procedure',
11562
- 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.',
11797
+ description: 'Locks a group convo so no more content (messages, reactions) can be added to it.',
11563
11798
  errors: [
11564
11799
  {
11565
11800
  name: 'ConvoLocked',
@@ -11818,7 +12053,7 @@ export const schemaDict = {
11818
12053
  defs: {
11819
12054
  main: {
11820
12055
  type: 'procedure',
11821
- 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.',
12056
+ description: 'Unlocks a group convo so it is able to receive new content.',
11822
12057
  errors: [
11823
12058
  {
11824
12059
  name: 'InvalidConvo',
@@ -11979,7 +12214,7 @@ export const schemaDict = {
11979
12214
  ChatBskyEmbedJoinLink: {
11980
12215
  lexicon: 1,
11981
12216
  id: 'chat.bsky.embed.joinLink',
11982
- 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.',
12217
+ description: 'A join link embedded in a chat message.',
11983
12218
  defs: {
11984
12219
  main: {
11985
12220
  type: 'object',
@@ -12013,7 +12248,7 @@ export const schemaDict = {
12013
12248
  defs: {
12014
12249
  main: {
12015
12250
  type: 'procedure',
12016
- 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.",
12251
+ description: "Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.",
12017
12252
  errors: [
12018
12253
  {
12019
12254
  name: 'AccountSuspended',
@@ -12095,7 +12330,7 @@ export const schemaDict = {
12095
12330
  defs: {
12096
12331
  main: {
12097
12332
  type: 'procedure',
12098
- 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.',
12333
+ description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.',
12099
12334
  errors: [
12100
12335
  {
12101
12336
  name: 'InvalidConvo',
@@ -12145,7 +12380,7 @@ export const schemaDict = {
12145
12380
  defs: {
12146
12381
  main: {
12147
12382
  type: 'procedure',
12148
- 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'.",
12383
+ 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'.",
12149
12384
  errors: [
12150
12385
  {
12151
12386
  name: 'AccountSuspended',
@@ -12214,7 +12449,7 @@ export const schemaDict = {
12214
12449
  defs: {
12215
12450
  main: {
12216
12451
  type: 'procedure',
12217
- 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.',
12452
+ description: 'Creates a join link for the group convo.',
12218
12453
  errors: [
12219
12454
  {
12220
12455
  name: 'EnabledJoinLinkAlreadyExists',
@@ -12265,7 +12500,6 @@ export const schemaDict = {
12265
12500
  ChatBskyGroupDefs: {
12266
12501
  lexicon: 1,
12267
12502
  id: 'chat.bsky.group.defs',
12268
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
12269
12503
  defs: {
12270
12504
  linkEnabledStatus: {
12271
12505
  type: 'string',
@@ -12446,7 +12680,7 @@ export const schemaDict = {
12446
12680
  defs: {
12447
12681
  main: {
12448
12682
  type: 'procedure',
12449
- 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.',
12683
+ description: 'Disables the active join link for the group convo.',
12450
12684
  errors: [
12451
12685
  {
12452
12686
  name: 'InvalidConvo',
@@ -12492,7 +12726,7 @@ export const schemaDict = {
12492
12726
  defs: {
12493
12727
  main: {
12494
12728
  type: 'procedure',
12495
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Edits group settings.',
12729
+ description: 'Edits group settings.',
12496
12730
  errors: [
12497
12731
  {
12498
12732
  name: 'ConvoLocked',
@@ -12544,7 +12778,7 @@ export const schemaDict = {
12544
12778
  defs: {
12545
12779
  main: {
12546
12780
  type: 'procedure',
12547
- 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.',
12781
+ description: 'Edits the existing join link settings for the group convo.',
12548
12782
  errors: [
12549
12783
  {
12550
12784
  name: 'InvalidConvo',
@@ -12597,7 +12831,7 @@ export const schemaDict = {
12597
12831
  defs: {
12598
12832
  main: {
12599
12833
  type: 'procedure',
12600
- 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.',
12834
+ description: 'Re-enables a previously disabled join link for the group convo.',
12601
12835
  errors: [
12602
12836
  {
12603
12837
  name: 'InvalidConvo',
@@ -12646,7 +12880,7 @@ export const schemaDict = {
12646
12880
  defs: {
12647
12881
  main: {
12648
12882
  type: 'query',
12649
- 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.",
12883
+ 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.",
12650
12884
  parameters: {
12651
12885
  type: 'params',
12652
12886
  required: ['codes'],
@@ -12690,7 +12924,7 @@ export const schemaDict = {
12690
12924
  defs: {
12691
12925
  main: {
12692
12926
  type: 'query',
12693
- 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.",
12927
+ 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.",
12694
12928
  errors: [
12695
12929
  {
12696
12930
  name: 'InvalidConvo',
@@ -12745,7 +12979,7 @@ export const schemaDict = {
12745
12979
  defs: {
12746
12980
  main: {
12747
12981
  type: 'query',
12748
- 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.',
12982
+ description: 'Returns a page of group conversations that both the requester and the specified actor are members of.',
12749
12983
  parameters: {
12750
12984
  type: 'params',
12751
12985
  required: ['subject'],
@@ -12793,7 +13027,7 @@ export const schemaDict = {
12793
13027
  defs: {
12794
13028
  main: {
12795
13029
  type: 'procedure',
12796
- 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.',
13030
+ description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.',
12797
13031
  errors: [
12798
13032
  {
12799
13033
  name: 'InvalidConvo',
@@ -12835,7 +13069,7 @@ export const schemaDict = {
12835
13069
  defs: {
12836
13070
  main: {
12837
13071
  type: 'procedure',
12838
- 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.",
13072
+ description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.",
12839
13073
  errors: [
12840
13074
  {
12841
13075
  name: 'InvalidConvo',
@@ -12886,7 +13120,7 @@ export const schemaDict = {
12886
13120
  defs: {
12887
13121
  main: {
12888
13122
  type: 'procedure',
12889
- 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.',
13123
+ description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.',
12890
13124
  errors: [
12891
13125
  {
12892
13126
  name: 'ConvoLocked',
@@ -12946,7 +13180,7 @@ export const schemaDict = {
12946
13180
  defs: {
12947
13181
  main: {
12948
13182
  type: 'procedure',
12949
- 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.',
13183
+ description: 'Marks all join requests as read for the group owner.',
12950
13184
  errors: [
12951
13185
  {
12952
13186
  name: 'InvalidConvo',
@@ -12984,7 +13218,7 @@ export const schemaDict = {
12984
13218
  defs: {
12985
13219
  main: {
12986
13220
  type: 'procedure',
12987
- 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.',
13221
+ description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.',
12988
13222
  errors: [
12989
13223
  {
12990
13224
  name: 'InvalidJoinRequest',
@@ -13018,7 +13252,7 @@ export const schemaDict = {
13018
13252
  id: 'chat.bsky.moderation.defs',
13019
13253
  defs: {
13020
13254
  convoView: {
13021
- 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.',
13255
+ 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.',
13022
13256
  type: 'object',
13023
13257
  required: ['id', 'rev'],
13024
13258
  properties: {
@@ -13039,12 +13273,12 @@ export const schemaDict = {
13039
13273
  },
13040
13274
  },
13041
13275
  directConvo: {
13042
- 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.',
13276
+ description: 'Data specific to a direct conversation, for moderation purposes.',
13043
13277
  type: 'object',
13044
13278
  properties: {},
13045
13279
  },
13046
13280
  groupConvo: {
13047
- 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.',
13281
+ 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.',
13048
13282
  type: 'object',
13049
13283
  required: [
13050
13284
  'createdAt',
@@ -13159,7 +13393,7 @@ export const schemaDict = {
13159
13393
  defs: {
13160
13394
  main: {
13161
13395
  type: 'query',
13162
- 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.',
13396
+ description: 'Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.',
13163
13397
  errors: [
13164
13398
  {
13165
13399
  name: 'InvalidConvo',
@@ -13196,7 +13430,7 @@ export const schemaDict = {
13196
13430
  defs: {
13197
13431
  main: {
13198
13432
  type: 'query',
13199
- 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.',
13433
+ 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.',
13200
13434
  errors: [
13201
13435
  {
13202
13436
  name: 'InvalidConvo',
@@ -13248,7 +13482,7 @@ export const schemaDict = {
13248
13482
  defs: {
13249
13483
  main: {
13250
13484
  type: 'query',
13251
- 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.',
13485
+ 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.',
13252
13486
  parameters: {
13253
13487
  type: 'params',
13254
13488
  required: ['convoIds'],
@@ -25551,6 +25785,7 @@ export const ids = {
25551
25785
  AppBskyFeedPostgate: 'app.bsky.feed.postgate',
25552
25786
  AppBskyFeedRepost: 'app.bsky.feed.repost',
25553
25787
  AppBskyFeedSearchPosts: 'app.bsky.feed.searchPosts',
25788
+ AppBskyFeedSearchPostsV2: 'app.bsky.feed.searchPostsV2',
25554
25789
  AppBskyFeedSendInteractions: 'app.bsky.feed.sendInteractions',
25555
25790
  AppBskyFeedThreadgate: 'app.bsky.feed.threadgate',
25556
25791
  AppBskyGraphBlock: 'app.bsky.graph.block',