@atproto/api 0.20.37 → 0.20.39

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.
@@ -3226,9 +3226,9 @@ export const schemaDict = {
3226
3226
  properties: {
3227
3227
  video: {
3228
3228
  type: 'blob',
3229
- description: 'The mp4 video file. May be up to 100mb, formerly limited to 50mb.',
3229
+ description: 'The mp4 video file. May be up to 300mb, formerly limited to 100mb.',
3230
3230
  accept: ['video/mp4'],
3231
- maxSize: 100000000,
3231
+ maxSize: 300000000,
3232
3232
  },
3233
3233
  captions: {
3234
3234
  type: 'array',
@@ -22343,6 +22343,13 @@ export const schemaDict = {
22343
22343
  type: 'string',
22344
22344
  description: 'Optional description of the queue',
22345
22345
  },
22346
+ recommendedPolicies: {
22347
+ type: 'array',
22348
+ items: {
22349
+ type: 'string',
22350
+ },
22351
+ description: 'Policy keys to recommend when actioning reports in this queue',
22352
+ },
22346
22353
  },
22347
22354
  },
22348
22355
  },
@@ -22360,6 +22367,10 @@ export const schemaDict = {
22360
22367
  },
22361
22368
  },
22362
22369
  errors: [
22370
+ {
22371
+ name: 'InvalidRecommendedPolicies',
22372
+ description: 'One or more recommended policy keys do not exist in the configured policy list',
22373
+ },
22363
22374
  {
22364
22375
  name: 'ConflictingQueue',
22365
22376
  description: 'The queue configuration conflicts with an existing queue',
@@ -22416,6 +22427,13 @@ export const schemaDict = {
22416
22427
  type: 'string',
22417
22428
  description: 'Optional description of the queue',
22418
22429
  },
22430
+ recommendedPolicies: {
22431
+ type: 'array',
22432
+ items: {
22433
+ type: 'string',
22434
+ },
22435
+ description: 'Policy keys recommended when actioning reports in this queue',
22436
+ },
22419
22437
  createdBy: {
22420
22438
  type: 'string',
22421
22439
  format: 'did',
@@ -22771,7 +22789,7 @@ export const schemaDict = {
22771
22789
  defs: {
22772
22790
  main: {
22773
22791
  type: 'procedure',
22774
- description: 'Update queue properties. Currently only supports updating the name and enabled status to prevent configuration conflicts.',
22792
+ description: 'Update queue properties.',
22775
22793
  input: {
22776
22794
  encoding: 'application/json',
22777
22795
  schema: {
@@ -22794,6 +22812,13 @@ export const schemaDict = {
22794
22812
  type: 'string',
22795
22813
  description: 'Optional description of the queue',
22796
22814
  },
22815
+ recommendedPolicies: {
22816
+ type: 'array',
22817
+ items: {
22818
+ type: 'string',
22819
+ },
22820
+ description: 'Policy keys to recommend when actioning reports in this queue',
22821
+ },
22797
22822
  },
22798
22823
  },
22799
22824
  },
@@ -22810,6 +22835,12 @@ export const schemaDict = {
22810
22835
  },
22811
22836
  },
22812
22837
  },
22838
+ errors: [
22839
+ {
22840
+ name: 'InvalidRecommendedPolicies',
22841
+ description: 'One or more recommended policy keys do not exist in the configured policy list',
22842
+ },
22843
+ ],
22813
22844
  },
22814
22845
  },
22815
22846
  },