@atproto/api 0.20.20 → 0.20.22

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',
@@ -11613,11 +11622,11 @@ export const schemaDict = {
11613
11622
  properties: {
11614
11623
  unreadAcceptedConvos: {
11615
11624
  type: 'integer',
11616
- 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.',
11617
11626
  },
11618
11627
  unreadRequestConvos: {
11619
11628
  type: 'integer',
11620
- 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.',
11621
11630
  },
11622
11631
  },
11623
11632
  },