@atproto/api 0.20.19 → 0.20.21

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.
@@ -5190,22 +5190,31 @@ export const schemaDict = {
5190
5190
  },
5191
5191
  since: {
5192
5192
  type: 'string',
5193
- format: 'datetime',
5194
- description: 'Include posts indexed at or after this timestamp.',
5193
+ description: 'Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD).',
5195
5194
  },
5196
5195
  until: {
5197
5196
  type: 'string',
5198
- format: 'datetime',
5199
- description: 'Include posts indexed before this timestamp. Defaults to the current time.',
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).',
5200
5198
  },
5201
5199
  allTime: {
5202
5200
  type: 'boolean',
5203
5201
  description: 'Search the full index instead of the recent-post window.',
5204
5202
  },
5205
- language: {
5206
- type: 'string',
5207
- format: 'language',
5208
- description: 'Include posts whose language matches this language code.',
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.',
5209
5218
  },
5210
5219
  hasMedia: {
5211
5220
  type: 'boolean',
@@ -10243,6 +10252,7 @@ export const schemaDict = {
10243
10252
  refs: [
10244
10253
  'lex:chat.bsky.convo.defs#messageView',
10245
10254
  'lex:chat.bsky.convo.defs#deletedMessageView',
10255
+ 'lex:chat.bsky.convo.defs#messageBeforeUserJoinedGroupView',
10246
10256
  ],
10247
10257
  },
10248
10258
  sender: {
@@ -10459,6 +10469,11 @@ export const schemaDict = {
10459
10469
  },
10460
10470
  },
10461
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
+ },
10462
10477
  messageViewSender: {
10463
10478
  type: 'object',
10464
10479
  required: ['did'],
@@ -11607,11 +11622,11 @@ export const schemaDict = {
11607
11622
  properties: {
11608
11623
  unreadAcceptedConvos: {
11609
11624
  type: 'integer',
11610
- 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.',
11611
11626
  },
11612
11627
  unreadRequestConvos: {
11613
11628
  type: 'integer',
11614
- 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.',
11615
11630
  },
11616
11631
  },
11617
11632
  },