@atproto/api 0.20.28 → 0.20.29

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.
@@ -22178,12 +22178,12 @@ export const schemaDict = {
22178
22178
  defs: {
22179
22179
  main: {
22180
22180
  type: 'procedure',
22181
- description: 'Create a new moderation queue. Will fail if the queue configuration conflicts with an existing queue.',
22181
+ description: "Create a new moderation queue. A queue can have optional matching criteria that ozone's queue router will use to match reports. A queue with no criteria must have reports assigned to it manually via (1) `modTool.meta.queueId` in `tools.ozone.moderation.emitEvent` or (2) `tools.ozone.report.reassignQueue`.",
22182
22182
  input: {
22183
22183
  encoding: 'application/json',
22184
22184
  schema: {
22185
22185
  type: 'object',
22186
- required: ['name', 'subjectTypes', 'reportTypes'],
22186
+ required: ['name'],
22187
22187
  properties: {
22188
22188
  name: {
22189
22189
  type: 'string',
@@ -22191,10 +22191,9 @@ export const schemaDict = {
22191
22191
  },
22192
22192
  subjectTypes: {
22193
22193
  type: 'array',
22194
- minLength: 1,
22195
22194
  items: {
22196
22195
  type: 'string',
22197
- knownValues: ['account', 'record', 'message'],
22196
+ knownValues: ['account', 'record', 'message', 'conversation'],
22198
22197
  },
22199
22198
  description: 'Subject types this queue accepts',
22200
22199
  },
@@ -22208,7 +22207,6 @@ export const schemaDict = {
22208
22207
  items: {
22209
22208
  type: 'string',
22210
22209
  },
22211
- minLength: 1,
22212
22210
  maxLength: 25,
22213
22211
  description: 'Report reason types (fully qualified NSIDs)',
22214
22212
  },
@@ -22250,8 +22248,6 @@ export const schemaDict = {
22250
22248
  required: [
22251
22249
  'id',
22252
22250
  'name',
22253
- 'subjectTypes',
22254
- 'reportTypes',
22255
22251
  'createdBy',
22256
22252
  'createdAt',
22257
22253
  'updatedAt',
@@ -22269,10 +22265,9 @@ export const schemaDict = {
22269
22265
  },
22270
22266
  subjectTypes: {
22271
22267
  type: 'array',
22272
- minLength: 1,
22273
22268
  items: {
22274
22269
  type: 'string',
22275
- knownValues: ['account', 'record', 'message'],
22270
+ knownValues: ['account', 'record', 'message', 'conversation'],
22276
22271
  },
22277
22272
  description: 'Subject types this queue accepts.',
22278
22273
  },
@@ -22286,7 +22281,6 @@ export const schemaDict = {
22286
22281
  items: {
22287
22282
  type: 'string',
22288
22283
  },
22289
- minLength: 1,
22290
22284
  description: 'Report reason types this queue accepts (fully qualified NSIDs)',
22291
22285
  },
22292
22286
  description: {
@@ -22511,7 +22505,7 @@ export const schemaDict = {
22511
22505
  },
22512
22506
  subjectType: {
22513
22507
  type: 'string',
22514
- description: "Filter queues that handle this subject type ('account' or 'record').",
22508
+ description: "Filter queues that handle this subject type ('account', 'record', 'message', or 'conversation').",
22515
22509
  },
22516
22510
  collection: {
22517
22511
  type: 'string',
@@ -23156,6 +23150,11 @@ export const schemaDict = {
23156
23150
  type: 'boolean',
23157
23151
  description: 'Whether this report is muted. A report is muted if the reporter was muted or the subject was muted at the time the report was created.',
23158
23152
  },
23153
+ isAutomated: {
23154
+ type: 'boolean',
23155
+ default: false,
23156
+ description: 'Whether this report was emitted by automated tooling.',
23157
+ },
23159
23158
  },
23160
23159
  },
23161
23160
  queueActivity: {
@@ -23804,8 +23803,8 @@ export const schemaDict = {
23804
23803
  },
23805
23804
  subjectType: {
23806
23805
  type: 'string',
23807
- description: 'If specified, reports of the given type (account or record) will be returned.',
23808
- knownValues: ['account', 'record'],
23806
+ description: 'If specified, reports of the given subject type will be returned.',
23807
+ knownValues: ['account', 'record', 'message', 'conversation'],
23809
23808
  },
23810
23809
  collections: {
23811
23810
  type: 'array',