@atproto/ozone 0.2.6 → 0.2.8

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 (34) hide show
  1. package/CHANGELOG.md +27 -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 +630 -152
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +318 -75
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/ageassurance/defs.d.ts +2 -0
  11. package/dist/lexicon/types/app/bsky/ageassurance/defs.d.ts.map +1 -1
  12. package/dist/lexicon/types/app/bsky/ageassurance/defs.js.map +1 -1
  13. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts +87 -0
  14. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts.map +1 -0
  15. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js +5 -0
  16. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js.map +1 -0
  17. package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts +1 -1
  18. package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts.map +1 -1
  19. package/dist/lexicon/types/chat/bsky/actor/declaration.js.map +1 -1
  20. package/dist/lexicon/types/chat/bsky/actor/defs.d.ts +2 -3
  21. package/dist/lexicon/types/chat/bsky/actor/defs.d.ts.map +1 -1
  22. package/dist/lexicon/types/chat/bsky/actor/defs.js.map +1 -1
  23. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +39 -36
  24. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
  25. package/dist/lexicon/types/chat/bsky/convo/defs.js +7 -0
  26. package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
  27. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts +2 -2
  28. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts.map +1 -1
  29. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.js.map +1 -1
  30. package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts +3 -3
  31. package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts.map +1 -1
  32. package/dist/lexicon/types/chat/bsky/moderation/defs.js.map +1 -1
  33. package/package.json +13 -13
  34. package/tsconfig.build.tsbuildinfo +1 -1
@@ -1379,6 +1379,14 @@ export const schemaDict = {
1379
1379
  type: 'integer',
1380
1380
  description: 'The minimum age (as a whole integer) required to use Bluesky in this region.',
1381
1381
  },
1382
+ additionalVerificationMethods: {
1383
+ type: 'array',
1384
+ description: 'Verification methods permitted in this region in addition to the third-party (KWS) flow, which is always supported. `device` permits using the native on-device age APIs (e.g. Apple Declared Age Range, Google Play Age Signals).',
1385
+ items: {
1386
+ type: 'string',
1387
+ knownValues: ['device'],
1388
+ },
1389
+ },
1382
1390
  rules: {
1383
1391
  type: 'array',
1384
1392
  description: 'The ordered list of Age Assurance rules that apply to this region. Rules should be applied in order, and the first matching rule determines the access level granted. The rules array should always include a default rule as the last item.',
@@ -5061,6 +5069,239 @@ export const schemaDict = {
5061
5069
  },
5062
5070
  },
5063
5071
  },
5072
+ AppBskyFeedSearchPostsV2: {
5073
+ lexicon: 1,
5074
+ id: 'app.bsky.feed.searchPostsV2',
5075
+ defs: {
5076
+ main: {
5077
+ type: 'query',
5078
+ description: 'Find posts matching a search query or filters, returning search hits for matching post records.',
5079
+ parameters: {
5080
+ type: 'params',
5081
+ required: [],
5082
+ properties: {
5083
+ cursor: {
5084
+ type: 'string',
5085
+ description: 'Optional pagination cursor.',
5086
+ },
5087
+ limit: {
5088
+ type: 'integer',
5089
+ minimum: 1,
5090
+ maximum: 100,
5091
+ default: 25,
5092
+ description: 'Maximum number of results to return.',
5093
+ },
5094
+ query: {
5095
+ type: 'string',
5096
+ description: 'Search query string. A query or at least one filter is required.',
5097
+ },
5098
+ sort: {
5099
+ type: 'string',
5100
+ knownValues: ['recent', 'top'],
5101
+ description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.",
5102
+ },
5103
+ authors: {
5104
+ type: 'array',
5105
+ items: {
5106
+ type: 'string',
5107
+ format: 'at-identifier',
5108
+ },
5109
+ description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.',
5110
+ },
5111
+ mentions: {
5112
+ type: 'array',
5113
+ items: {
5114
+ type: 'string',
5115
+ format: 'at-identifier',
5116
+ },
5117
+ description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.',
5118
+ },
5119
+ domains: {
5120
+ type: 'array',
5121
+ items: {
5122
+ type: 'string',
5123
+ },
5124
+ description: 'Include posts that link to any of these domains.',
5125
+ },
5126
+ urls: {
5127
+ type: 'array',
5128
+ items: {
5129
+ type: 'string',
5130
+ format: 'uri',
5131
+ },
5132
+ description: 'Include posts that link to any of these URLs.',
5133
+ },
5134
+ embeddedAtUris: {
5135
+ type: 'array',
5136
+ items: {
5137
+ type: 'string',
5138
+ format: 'at-uri',
5139
+ },
5140
+ description: 'Include posts that embed any of these AT URIs.',
5141
+ },
5142
+ hashtags: {
5143
+ type: 'array',
5144
+ items: {
5145
+ type: 'string',
5146
+ maxLength: 640,
5147
+ maxGraphemes: 64,
5148
+ },
5149
+ description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.',
5150
+ },
5151
+ excludeAuthors: {
5152
+ type: 'array',
5153
+ items: {
5154
+ type: 'string',
5155
+ format: 'at-identifier',
5156
+ },
5157
+ description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.',
5158
+ },
5159
+ excludeMentions: {
5160
+ type: 'array',
5161
+ items: {
5162
+ type: 'string',
5163
+ format: 'at-identifier',
5164
+ },
5165
+ description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.',
5166
+ },
5167
+ excludeDomains: {
5168
+ type: 'array',
5169
+ items: {
5170
+ type: 'string',
5171
+ },
5172
+ description: 'Exclude posts that link to any of these domains.',
5173
+ },
5174
+ excludeUrls: {
5175
+ type: 'array',
5176
+ items: {
5177
+ type: 'string',
5178
+ format: 'uri',
5179
+ },
5180
+ description: 'Exclude posts that link to any of these URLs.',
5181
+ },
5182
+ excludeEmbeddedAtUris: {
5183
+ type: 'array',
5184
+ items: {
5185
+ type: 'string',
5186
+ format: 'at-uri',
5187
+ },
5188
+ description: 'Exclude posts that embed any of these AT URIs.',
5189
+ },
5190
+ excludeHashtags: {
5191
+ type: 'array',
5192
+ items: {
5193
+ type: 'string',
5194
+ maxLength: 640,
5195
+ maxGraphemes: 64,
5196
+ },
5197
+ description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.',
5198
+ },
5199
+ since: {
5200
+ type: 'string',
5201
+ description: 'Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD).',
5202
+ },
5203
+ until: {
5204
+ type: 'string',
5205
+ description: 'Include posts indexed before this timestamp. Defaults to the current time. Can be a datetime, or just an ISO date (YYYY-MM-DD).',
5206
+ },
5207
+ allTime: {
5208
+ type: 'boolean',
5209
+ description: 'Search the full index instead of the recent-post window.',
5210
+ },
5211
+ languages: {
5212
+ type: 'array',
5213
+ items: {
5214
+ type: 'string',
5215
+ format: 'language',
5216
+ },
5217
+ description: 'Include posts whose language matches any of these language codes.',
5218
+ },
5219
+ excludeLanguages: {
5220
+ type: 'array',
5221
+ items: {
5222
+ type: 'string',
5223
+ format: 'language',
5224
+ },
5225
+ description: 'Exclude posts whose language matches any of these language codes.',
5226
+ },
5227
+ hasMedia: {
5228
+ type: 'boolean',
5229
+ description: 'Include only posts with media.',
5230
+ },
5231
+ hasVideo: {
5232
+ type: 'boolean',
5233
+ description: 'Include only posts with video.',
5234
+ },
5235
+ replyParentUri: {
5236
+ type: 'string',
5237
+ format: 'at-uri',
5238
+ description: 'Include only direct replies to this parent post URI.',
5239
+ },
5240
+ threadRootUri: {
5241
+ type: 'string',
5242
+ format: 'at-uri',
5243
+ description: 'Include only posts in the thread rooted at this post URI.',
5244
+ },
5245
+ excludeReplies: {
5246
+ type: 'boolean',
5247
+ description: 'Exclude replies from results. Mutually exclusive with repliesOnly.',
5248
+ },
5249
+ repliesOnly: {
5250
+ type: 'boolean',
5251
+ description: 'Include only replies. Mutually exclusive with excludeReplies.',
5252
+ },
5253
+ following: {
5254
+ type: 'boolean',
5255
+ description: 'Include only posts from accounts followed by the viewer.',
5256
+ },
5257
+ queryLanguage: {
5258
+ type: 'string',
5259
+ knownValues: ['ja', 'zh', 'ko', 'th', 'ar'],
5260
+ description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.',
5261
+ },
5262
+ },
5263
+ },
5264
+ output: {
5265
+ encoding: 'application/json',
5266
+ schema: {
5267
+ type: 'object',
5268
+ required: ['posts'],
5269
+ properties: {
5270
+ cursor: {
5271
+ type: 'string',
5272
+ description: 'Cursor for the next page of results.',
5273
+ },
5274
+ hitsTotal: {
5275
+ type: 'integer',
5276
+ description: 'Estimated total number of matching hits. May be rounded or truncated.',
5277
+ },
5278
+ posts: {
5279
+ type: 'array',
5280
+ items: {
5281
+ type: 'ref',
5282
+ ref: 'lex:app.bsky.feed.defs#postView',
5283
+ },
5284
+ description: 'Hydrated views of matching posts.',
5285
+ },
5286
+ detectedQueryLanguages: {
5287
+ type: 'array',
5288
+ items: {
5289
+ type: 'string',
5290
+ knownValues: ['ja', 'zh', 'ko', 'th', 'ar'],
5291
+ },
5292
+ description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.',
5293
+ },
5294
+ },
5295
+ },
5296
+ },
5297
+ errors: [
5298
+ {
5299
+ name: 'BadQueryString',
5300
+ },
5301
+ ],
5302
+ },
5303
+ },
5304
+ },
5064
5305
  AppBskyFeedSendInteractions: {
5065
5306
  lexicon: 1,
5066
5307
  id: 'app.bsky.feed.sendInteractions',
@@ -9623,7 +9864,7 @@ export const schemaDict = {
9623
9864
  knownValues: ['all', 'none', 'following'],
9624
9865
  },
9625
9866
  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.',
9867
+ description: 'Declaration about group chat invitation preferences for the record owner.',
9627
9868
  type: 'string',
9628
9869
  knownValues: ['all', 'none', 'following'],
9629
9870
  },
@@ -9700,12 +9941,11 @@ export const schemaDict = {
9700
9941
  },
9701
9942
  },
9702
9943
  directConvoMember: {
9703
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
9704
9944
  type: 'object',
9705
9945
  properties: {},
9706
9946
  },
9707
9947
  groupConvoMember: {
9708
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.',
9948
+ description: 'A current group convo member.',
9709
9949
  type: 'object',
9710
9950
  required: ['role'],
9711
9951
  properties: {
@@ -9722,7 +9962,7 @@ export const schemaDict = {
9722
9962
  },
9723
9963
  },
9724
9964
  pastGroupConvoMember: {
9725
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.',
9965
+ description: 'A past group convo member.',
9726
9966
  type: 'object',
9727
9967
  required: [],
9728
9968
  properties: {},
@@ -10020,6 +10260,7 @@ export const schemaDict = {
10020
10260
  refs: [
10021
10261
  'lex:chat.bsky.convo.defs#messageView',
10022
10262
  'lex:chat.bsky.convo.defs#deletedMessageView',
10263
+ 'lex:chat.bsky.convo.defs#messageBeforeUserJoinedGroupView',
10023
10264
  ],
10024
10265
  },
10025
10266
  sender: {
@@ -10043,7 +10284,6 @@ export const schemaDict = {
10043
10284
  },
10044
10285
  },
10045
10286
  systemMessageView: {
10046
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
10047
10287
  type: 'object',
10048
10288
  required: ['id', 'rev', 'sentAt', 'data'],
10049
10289
  properties: {
@@ -10077,7 +10317,7 @@ export const schemaDict = {
10077
10317
  },
10078
10318
  },
10079
10319
  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.',
10320
+ description: 'System message indicating a user was added to the group convo.',
10081
10321
  type: 'object',
10082
10322
  required: ['member', 'role', 'addedBy'],
10083
10323
  properties: {
@@ -10098,7 +10338,7 @@ export const schemaDict = {
10098
10338
  },
10099
10339
  },
10100
10340
  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.',
10341
+ description: 'System message indicating a user was removed from the group convo.',
10102
10342
  type: 'object',
10103
10343
  required: ['member', 'removedBy'],
10104
10344
  properties: {
@@ -10114,7 +10354,7 @@ export const schemaDict = {
10114
10354
  },
10115
10355
  },
10116
10356
  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.',
10357
+ description: 'System message indicating a user joined the group convo via join link.',
10118
10358
  type: 'object',
10119
10359
  required: ['member', 'role'],
10120
10360
  properties: {
@@ -10136,7 +10376,7 @@ export const schemaDict = {
10136
10376
  },
10137
10377
  },
10138
10378
  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.',
10379
+ description: 'System message indicating a user voluntarily left the group convo.',
10140
10380
  type: 'object',
10141
10381
  required: ['member'],
10142
10382
  properties: {
@@ -10148,7 +10388,7 @@ export const schemaDict = {
10148
10388
  },
10149
10389
  },
10150
10390
  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.',
10391
+ description: 'System message indicating the group convo was locked.',
10152
10392
  type: 'object',
10153
10393
  required: ['lockedBy'],
10154
10394
  properties: {
@@ -10160,7 +10400,7 @@ export const schemaDict = {
10160
10400
  },
10161
10401
  },
10162
10402
  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.',
10403
+ description: 'System message indicating the group convo was unlocked.',
10164
10404
  type: 'object',
10165
10405
  required: ['unlockedBy'],
10166
10406
  properties: {
@@ -10172,7 +10412,7 @@ export const schemaDict = {
10172
10412
  },
10173
10413
  },
10174
10414
  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.',
10415
+ description: 'System message indicating the group convo was locked permanently.',
10176
10416
  type: 'object',
10177
10417
  required: ['lockedBy'],
10178
10418
  properties: {
@@ -10184,7 +10424,7 @@ export const schemaDict = {
10184
10424
  },
10185
10425
  },
10186
10426
  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.',
10427
+ description: 'System message indicating the group info was edited.',
10188
10428
  type: 'object',
10189
10429
  properties: {
10190
10430
  oldName: {
@@ -10198,22 +10438,22 @@ export const schemaDict = {
10198
10438
  },
10199
10439
  },
10200
10440
  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.',
10441
+ description: 'System message indicating the group join link was created.',
10202
10442
  type: 'object',
10203
10443
  properties: {},
10204
10444
  },
10205
10445
  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.',
10446
+ description: 'System message indicating the group join link was edited.',
10207
10447
  type: 'object',
10208
10448
  properties: {},
10209
10449
  },
10210
10450
  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.',
10451
+ description: 'System message indicating the group join link was enabled.',
10212
10452
  type: 'object',
10213
10453
  properties: {},
10214
10454
  },
10215
10455
  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.',
10456
+ description: 'System message indicating the group join link was disabled.',
10217
10457
  type: 'object',
10218
10458
  properties: {},
10219
10459
  },
@@ -10237,6 +10477,11 @@ export const schemaDict = {
10237
10477
  },
10238
10478
  },
10239
10479
  },
10480
+ messageBeforeUserJoinedGroupView: {
10481
+ 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.",
10482
+ type: 'object',
10483
+ properties: {},
10484
+ },
10240
10485
  messageViewSender: {
10241
10486
  type: 'object',
10242
10487
  required: ['did'],
@@ -10340,12 +10585,10 @@ export const schemaDict = {
10340
10585
  },
10341
10586
  },
10342
10587
  directConvo: {
10343
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
10344
10588
  type: 'object',
10345
10589
  properties: {},
10346
10590
  },
10347
10591
  groupConvo: {
10348
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
10349
10592
  type: 'object',
10350
10593
  required: [
10351
10594
  'createdAt',
@@ -10388,8 +10631,8 @@ export const schemaDict = {
10388
10631
  name: {
10389
10632
  type: 'string',
10390
10633
  description: 'The display name of the group conversation.',
10391
- maxGraphemes: 128,
10392
- maxLength: 1280,
10634
+ maxGraphemes: 50,
10635
+ maxLength: 500,
10393
10636
  },
10394
10637
  unreadJoinRequestCount: {
10395
10638
  type: 'integer',
@@ -10596,7 +10839,7 @@ export const schemaDict = {
10596
10839
  },
10597
10840
  },
10598
10841
  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.',
10842
+ description: 'Event indicating a convo was read up to a certain message.',
10600
10843
  type: 'object',
10601
10844
  required: ['rev', 'convoId', 'message'],
10602
10845
  properties: {
@@ -10617,7 +10860,7 @@ export const schemaDict = {
10617
10860
  },
10618
10861
  },
10619
10862
  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).',
10863
+ 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
10864
  type: 'object',
10622
10865
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10623
10866
  properties: {
@@ -10643,7 +10886,7 @@ export const schemaDict = {
10643
10886
  },
10644
10887
  },
10645
10888
  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).",
10889
+ 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
10890
  type: 'object',
10648
10891
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10649
10892
  properties: {
@@ -10669,7 +10912,7 @@ export const schemaDict = {
10669
10912
  },
10670
10913
  },
10671
10914
  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).',
10915
+ 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
10916
  type: 'object',
10674
10917
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10675
10918
  properties: {
@@ -10695,7 +10938,7 @@ export const schemaDict = {
10695
10938
  },
10696
10939
  },
10697
10940
  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).",
10941
+ 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
10942
  type: 'object',
10700
10943
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10701
10944
  properties: {
@@ -10721,7 +10964,7 @@ export const schemaDict = {
10721
10964
  },
10722
10965
  },
10723
10966
  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.',
10967
+ description: 'Event indicating a group convo was locked.',
10725
10968
  type: 'object',
10726
10969
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10727
10970
  properties: {
@@ -10747,7 +10990,7 @@ export const schemaDict = {
10747
10990
  },
10748
10991
  },
10749
10992
  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.',
10993
+ description: 'Event indicating a group convo was unlocked.',
10751
10994
  type: 'object',
10752
10995
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10753
10996
  properties: {
@@ -10773,7 +11016,7 @@ export const schemaDict = {
10773
11016
  },
10774
11017
  },
10775
11018
  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.',
11019
+ description: 'Event indicating a group convo was locked permanently.',
10777
11020
  type: 'object',
10778
11021
  required: ['rev', 'convoId', 'message', 'relatedProfiles'],
10779
11022
  properties: {
@@ -10799,7 +11042,7 @@ export const schemaDict = {
10799
11042
  },
10800
11043
  },
10801
11044
  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.',
11045
+ description: 'Event indicating info about group convo was edited.',
10803
11046
  type: 'object',
10804
11047
  required: ['rev', 'convoId', 'message'],
10805
11048
  properties: {
@@ -10817,7 +11060,7 @@ export const schemaDict = {
10817
11060
  },
10818
11061
  },
10819
11062
  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.',
11063
+ description: 'Event indicating a join link was created for a group convo.',
10821
11064
  type: 'object',
10822
11065
  required: ['rev', 'convoId', 'message'],
10823
11066
  properties: {
@@ -10835,7 +11078,7 @@ export const schemaDict = {
10835
11078
  },
10836
11079
  },
10837
11080
  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.',
11081
+ description: 'Event indicating a settings about a join link for a group convo were edited.',
10839
11082
  type: 'object',
10840
11083
  required: ['rev', 'convoId', 'message'],
10841
11084
  properties: {
@@ -10853,7 +11096,7 @@ export const schemaDict = {
10853
11096
  },
10854
11097
  },
10855
11098
  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.',
11099
+ description: 'Event indicating a join link was enabled for a group convo.',
10857
11100
  type: 'object',
10858
11101
  required: ['rev', 'convoId', 'message'],
10859
11102
  properties: {
@@ -10871,7 +11114,7 @@ export const schemaDict = {
10871
11114
  },
10872
11115
  },
10873
11116
  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.',
11117
+ description: 'Event indicating a join link was disabled for a group convo.',
10875
11118
  type: 'object',
10876
11119
  required: ['rev', 'convoId', 'message'],
10877
11120
  properties: {
@@ -10889,7 +11132,7 @@ export const schemaDict = {
10889
11132
  },
10890
11133
  },
10891
11134
  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.',
11135
+ description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.',
10893
11136
  type: 'object',
10894
11137
  required: ['rev', 'convoId', 'member'],
10895
11138
  properties: {
@@ -10907,7 +11150,7 @@ export const schemaDict = {
10907
11150
  },
10908
11151
  },
10909
11152
  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.',
11153
+ description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.',
10911
11154
  type: 'object',
10912
11155
  required: ['rev', 'convoId', 'member'],
10913
11156
  properties: {
@@ -10925,7 +11168,7 @@ export const schemaDict = {
10925
11168
  },
10926
11169
  },
10927
11170
  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.',
11171
+ description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.',
10929
11172
  type: 'object',
10930
11173
  required: ['rev', 'convoId', 'member'],
10931
11174
  properties: {
@@ -10943,7 +11186,7 @@ export const schemaDict = {
10943
11186
  },
10944
11187
  },
10945
11188
  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.',
11189
+ description: 'Event indicating a join request was made by the requester. Only requester actor gets this.',
10947
11190
  type: 'object',
10948
11191
  required: ['rev', 'convoId'],
10949
11192
  properties: {
@@ -10956,7 +11199,7 @@ export const schemaDict = {
10956
11199
  },
10957
11200
  },
10958
11201
  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.',
11202
+ description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.',
10960
11203
  type: 'object',
10961
11204
  required: ['rev', 'convoId', 'member'],
10962
11205
  properties: {
@@ -10974,7 +11217,7 @@ export const schemaDict = {
10974
11217
  },
10975
11218
  },
10976
11219
  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.',
11220
+ description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.',
10978
11221
  type: 'object',
10979
11222
  required: ['rev', 'convoId'],
10980
11223
  properties: {
@@ -10987,7 +11230,7 @@ export const schemaDict = {
10987
11230
  },
10988
11231
  },
10989
11232
  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.',
11233
+ description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.',
10991
11234
  type: 'object',
10992
11235
  required: ['rev', 'convoId'],
10993
11236
  properties: {
@@ -11368,7 +11611,7 @@ export const schemaDict = {
11368
11611
  defs: {
11369
11612
  main: {
11370
11613
  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.",
11614
+ 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
11615
  parameters: {
11373
11616
  type: 'params',
11374
11617
  properties: {
@@ -11387,11 +11630,11 @@ export const schemaDict = {
11387
11630
  properties: {
11388
11631
  unreadAcceptedConvos: {
11389
11632
  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.',
11633
+ 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
11634
  },
11392
11635
  unreadRequestConvos: {
11393
11636
  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.',
11637
+ 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
11638
  },
11396
11639
  },
11397
11640
  },
@@ -11451,7 +11694,7 @@ export const schemaDict = {
11451
11694
  defs: {
11452
11695
  main: {
11453
11696
  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.',
11697
+ 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
11698
  parameters: {
11456
11699
  type: 'params',
11457
11700
  properties: {
@@ -11559,7 +11802,7 @@ export const schemaDict = {
11559
11802
  defs: {
11560
11803
  main: {
11561
11804
  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.',
11805
+ description: 'Locks a group convo so no more content (messages, reactions) can be added to it.',
11563
11806
  errors: [
11564
11807
  {
11565
11808
  name: 'ConvoLocked',
@@ -11818,7 +12061,7 @@ export const schemaDict = {
11818
12061
  defs: {
11819
12062
  main: {
11820
12063
  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.',
12064
+ description: 'Unlocks a group convo so it is able to receive new content.',
11822
12065
  errors: [
11823
12066
  {
11824
12067
  name: 'InvalidConvo',
@@ -11979,7 +12222,7 @@ export const schemaDict = {
11979
12222
  ChatBskyEmbedJoinLink: {
11980
12223
  lexicon: 1,
11981
12224
  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.',
12225
+ description: 'A join link embedded in a chat message.',
11983
12226
  defs: {
11984
12227
  main: {
11985
12228
  type: 'object',
@@ -12013,7 +12256,7 @@ export const schemaDict = {
12013
12256
  defs: {
12014
12257
  main: {
12015
12258
  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.",
12259
+ description: "Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.",
12017
12260
  errors: [
12018
12261
  {
12019
12262
  name: 'AccountSuspended',
@@ -12095,7 +12338,7 @@ export const schemaDict = {
12095
12338
  defs: {
12096
12339
  main: {
12097
12340
  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.',
12341
+ description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.',
12099
12342
  errors: [
12100
12343
  {
12101
12344
  name: 'InvalidConvo',
@@ -12145,7 +12388,7 @@ export const schemaDict = {
12145
12388
  defs: {
12146
12389
  main: {
12147
12390
  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'.",
12391
+ 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
12392
  errors: [
12150
12393
  {
12151
12394
  name: 'AccountSuspended',
@@ -12214,7 +12457,7 @@ export const schemaDict = {
12214
12457
  defs: {
12215
12458
  main: {
12216
12459
  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.',
12460
+ description: 'Creates a join link for the group convo.',
12218
12461
  errors: [
12219
12462
  {
12220
12463
  name: 'EnabledJoinLinkAlreadyExists',
@@ -12265,7 +12508,6 @@ export const schemaDict = {
12265
12508
  ChatBskyGroupDefs: {
12266
12509
  lexicon: 1,
12267
12510
  id: 'chat.bsky.group.defs',
12268
- description: '[NOTE: This is under active development and should be considered unstable while this note is here].',
12269
12511
  defs: {
12270
12512
  linkEnabledStatus: {
12271
12513
  type: 'string',
@@ -12446,7 +12688,7 @@ export const schemaDict = {
12446
12688
  defs: {
12447
12689
  main: {
12448
12690
  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.',
12691
+ description: 'Disables the active join link for the group convo.',
12450
12692
  errors: [
12451
12693
  {
12452
12694
  name: 'InvalidConvo',
@@ -12492,7 +12734,7 @@ export const schemaDict = {
12492
12734
  defs: {
12493
12735
  main: {
12494
12736
  type: 'procedure',
12495
- description: '[NOTE: This is under active development and should be considered unstable while this note is here]. Edits group settings.',
12737
+ description: 'Edits group settings.',
12496
12738
  errors: [
12497
12739
  {
12498
12740
  name: 'ConvoLocked',
@@ -12516,8 +12758,8 @@ export const schemaDict = {
12516
12758
  name: {
12517
12759
  type: 'string',
12518
12760
  minLength: 1,
12519
- maxGraphemes: 128,
12520
- maxLength: 1280,
12761
+ maxGraphemes: 50,
12762
+ maxLength: 500,
12521
12763
  },
12522
12764
  },
12523
12765
  },
@@ -12544,7 +12786,7 @@ export const schemaDict = {
12544
12786
  defs: {
12545
12787
  main: {
12546
12788
  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.',
12789
+ description: 'Edits the existing join link settings for the group convo.',
12548
12790
  errors: [
12549
12791
  {
12550
12792
  name: 'InvalidConvo',
@@ -12597,7 +12839,7 @@ export const schemaDict = {
12597
12839
  defs: {
12598
12840
  main: {
12599
12841
  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.',
12842
+ description: 'Re-enables a previously disabled join link for the group convo.',
12601
12843
  errors: [
12602
12844
  {
12603
12845
  name: 'InvalidConvo',
@@ -12646,7 +12888,7 @@ export const schemaDict = {
12646
12888
  defs: {
12647
12889
  main: {
12648
12890
  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.",
12891
+ 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
12892
  parameters: {
12651
12893
  type: 'params',
12652
12894
  required: ['codes'],
@@ -12690,7 +12932,7 @@ export const schemaDict = {
12690
12932
  defs: {
12691
12933
  main: {
12692
12934
  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.",
12935
+ 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
12936
  errors: [
12695
12937
  {
12696
12938
  name: 'InvalidConvo',
@@ -12745,7 +12987,7 @@ export const schemaDict = {
12745
12987
  defs: {
12746
12988
  main: {
12747
12989
  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.',
12990
+ description: 'Returns a page of group conversations that both the requester and the specified actor are members of.',
12749
12991
  parameters: {
12750
12992
  type: 'params',
12751
12993
  required: ['subject'],
@@ -12793,7 +13035,7 @@ export const schemaDict = {
12793
13035
  defs: {
12794
13036
  main: {
12795
13037
  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.',
13038
+ description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.',
12797
13039
  errors: [
12798
13040
  {
12799
13041
  name: 'InvalidConvo',
@@ -12835,7 +13077,7 @@ export const schemaDict = {
12835
13077
  defs: {
12836
13078
  main: {
12837
13079
  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.",
13080
+ description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.",
12839
13081
  errors: [
12840
13082
  {
12841
13083
  name: 'InvalidConvo',
@@ -12886,7 +13128,7 @@ export const schemaDict = {
12886
13128
  defs: {
12887
13129
  main: {
12888
13130
  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.',
13131
+ description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.',
12890
13132
  errors: [
12891
13133
  {
12892
13134
  name: 'ConvoLocked',
@@ -12946,7 +13188,7 @@ export const schemaDict = {
12946
13188
  defs: {
12947
13189
  main: {
12948
13190
  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.',
13191
+ description: 'Marks all join requests as read for the group owner.',
12950
13192
  errors: [
12951
13193
  {
12952
13194
  name: 'InvalidConvo',
@@ -12984,7 +13226,7 @@ export const schemaDict = {
12984
13226
  defs: {
12985
13227
  main: {
12986
13228
  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.',
13229
+ description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.',
12988
13230
  errors: [
12989
13231
  {
12990
13232
  name: 'InvalidJoinRequest',
@@ -13018,7 +13260,7 @@ export const schemaDict = {
13018
13260
  id: 'chat.bsky.moderation.defs',
13019
13261
  defs: {
13020
13262
  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.',
13263
+ 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
13264
  type: 'object',
13023
13265
  required: ['id', 'rev'],
13024
13266
  properties: {
@@ -13039,12 +13281,12 @@ export const schemaDict = {
13039
13281
  },
13040
13282
  },
13041
13283
  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.',
13284
+ description: 'Data specific to a direct conversation, for moderation purposes.',
13043
13285
  type: 'object',
13044
13286
  properties: {},
13045
13287
  },
13046
13288
  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.',
13289
+ 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
13290
  type: 'object',
13049
13291
  required: [
13050
13292
  'createdAt',
@@ -13083,8 +13325,8 @@ export const schemaDict = {
13083
13325
  name: {
13084
13326
  type: 'string',
13085
13327
  description: 'The display name of the group conversation.',
13086
- maxGraphemes: 128,
13087
- maxLength: 1280,
13328
+ maxGraphemes: 50,
13329
+ maxLength: 500,
13088
13330
  },
13089
13331
  },
13090
13332
  },
@@ -13159,7 +13401,7 @@ export const schemaDict = {
13159
13401
  defs: {
13160
13402
  main: {
13161
13403
  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.',
13404
+ description: 'Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.',
13163
13405
  errors: [
13164
13406
  {
13165
13407
  name: 'InvalidConvo',
@@ -13196,7 +13438,7 @@ export const schemaDict = {
13196
13438
  defs: {
13197
13439
  main: {
13198
13440
  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.',
13441
+ 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
13442
  errors: [
13201
13443
  {
13202
13444
  name: 'InvalidConvo',
@@ -13248,7 +13490,7 @@ export const schemaDict = {
13248
13490
  defs: {
13249
13491
  main: {
13250
13492
  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.',
13493
+ 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
13494
  parameters: {
13253
13495
  type: 'params',
13254
13496
  required: ['convoIds'],
@@ -25551,6 +25793,7 @@ export const ids = {
25551
25793
  AppBskyFeedPostgate: 'app.bsky.feed.postgate',
25552
25794
  AppBskyFeedRepost: 'app.bsky.feed.repost',
25553
25795
  AppBskyFeedSearchPosts: 'app.bsky.feed.searchPosts',
25796
+ AppBskyFeedSearchPostsV2: 'app.bsky.feed.searchPostsV2',
25554
25797
  AppBskyFeedSendInteractions: 'app.bsky.feed.sendInteractions',
25555
25798
  AppBskyFeedThreadgate: 'app.bsky.feed.threadgate',
25556
25799
  AppBskyGraphBlock: 'app.bsky.graph.block',