@seamapi/types 1.780.0 → 1.782.0

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.
@@ -2455,6 +2455,37 @@ export default {
2455
2455
  type: 'string',
2456
2456
  },
2457
2457
  display_name: { type: 'string' },
2458
+ errors: {
2459
+ description: 'Errors associated with the `acs_access_group`.',
2460
+ items: {
2461
+ description: 'Error associated with the `acs_access_group`.',
2462
+ discriminator: { propertyName: 'error_code' },
2463
+ oneOf: [
2464
+ {
2465
+ description: 'Indicates that the [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) was not created on the [access system](https://docs.seam.co/latest/capability-guides/access-systems). This is likely due to an internal unexpected error. Contact Seam [support](mailto:support@seam.co).',
2466
+ properties: {
2467
+ created_at: {
2468
+ description: 'Date and time at which Seam created the error.',
2469
+ format: 'date-time',
2470
+ type: 'string',
2471
+ },
2472
+ error_code: {
2473
+ description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
2474
+ enum: ['failed_to_create_on_acs_system'],
2475
+ type: 'string',
2476
+ },
2477
+ message: {
2478
+ description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
2479
+ type: 'string',
2480
+ },
2481
+ },
2482
+ required: ['created_at', 'message', 'error_code'],
2483
+ type: 'object',
2484
+ },
2485
+ ],
2486
+ },
2487
+ type: 'array',
2488
+ },
2458
2489
  external_type: {
2459
2490
  description: 'Brand-specific terminology for the access group type.',
2460
2491
  enum: [
@@ -2872,6 +2903,7 @@ export default {
2872
2903
  'external_type',
2873
2904
  'external_type_display_name',
2874
2905
  'created_at',
2906
+ 'errors',
2875
2907
  'warnings',
2876
2908
  'pending_mutations',
2877
2909
  'is_managed',
@@ -24640,6 +24672,37 @@ export default {
24640
24672
  type: 'string',
24641
24673
  },
24642
24674
  display_name: { type: 'string' },
24675
+ errors: {
24676
+ description: 'Errors associated with the `acs_access_group`.',
24677
+ items: {
24678
+ description: 'Error associated with the `acs_access_group`.',
24679
+ discriminator: { propertyName: 'error_code' },
24680
+ oneOf: [
24681
+ {
24682
+ description: 'Indicates that the [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) was not created on the [access system](https://docs.seam.co/latest/capability-guides/access-systems). This is likely due to an internal unexpected error. Contact Seam [support](mailto:support@seam.co).',
24683
+ properties: {
24684
+ created_at: {
24685
+ description: 'Date and time at which Seam created the error.',
24686
+ format: 'date-time',
24687
+ type: 'string',
24688
+ },
24689
+ error_code: {
24690
+ description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
24691
+ enum: ['failed_to_create_on_acs_system'],
24692
+ type: 'string',
24693
+ },
24694
+ message: {
24695
+ description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
24696
+ type: 'string',
24697
+ },
24698
+ },
24699
+ required: ['created_at', 'message', 'error_code'],
24700
+ type: 'object',
24701
+ },
24702
+ ],
24703
+ },
24704
+ type: 'array',
24705
+ },
24643
24706
  external_type: {
24644
24707
  description: 'Brand-specific terminology for the access group type.',
24645
24708
  enum: [
@@ -25057,6 +25120,7 @@ export default {
25057
25120
  'external_type',
25058
25121
  'external_type_display_name',
25059
25122
  'created_at',
25123
+ 'errors',
25060
25124
  'warnings',
25061
25125
  'pending_mutations',
25062
25126
  'is_managed',
@@ -67308,6 +67372,25 @@ export default {
67308
67372
  type: 'string',
67309
67373
  },
67310
67374
  },
67375
+ {
67376
+ in: 'query',
67377
+ name: 'limit',
67378
+ schema: {
67379
+ default: 500,
67380
+ description: 'Maximum number of records to return per page.',
67381
+ format: 'float',
67382
+ type: 'number',
67383
+ },
67384
+ },
67385
+ {
67386
+ in: 'query',
67387
+ name: 'page_cursor',
67388
+ schema: {
67389
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
67390
+ nullable: true,
67391
+ type: 'string',
67392
+ },
67393
+ },
67311
67394
  ],
67312
67395
  responses: {
67313
67396
  200: {
@@ -67316,12 +67399,13 @@ export default {
67316
67399
  schema: {
67317
67400
  properties: {
67318
67401
  ok: { type: 'boolean' },
67402
+ pagination: { $ref: '#/components/schemas/pagination' },
67319
67403
  spaces: {
67320
67404
  items: { $ref: '#/components/schemas/space' },
67321
67405
  type: 'array',
67322
67406
  },
67323
67407
  },
67324
- required: ['spaces', 'ok'],
67408
+ required: ['spaces', 'pagination', 'ok'],
67325
67409
  type: 'object',
67326
67410
  },
67327
67411
  },
@@ -67365,6 +67449,17 @@ export default {
67365
67449
  description: 'Customer key for which you want to list spaces.',
67366
67450
  type: 'string',
67367
67451
  },
67452
+ limit: {
67453
+ default: 500,
67454
+ description: 'Maximum number of records to return per page.',
67455
+ format: 'float',
67456
+ type: 'number',
67457
+ },
67458
+ page_cursor: {
67459
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
67460
+ nullable: true,
67461
+ type: 'string',
67462
+ },
67368
67463
  search: {
67369
67464
  description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
67370
67465
  minLength: 1,
@@ -67387,12 +67482,13 @@ export default {
67387
67482
  schema: {
67388
67483
  properties: {
67389
67484
  ok: { type: 'boolean' },
67485
+ pagination: { $ref: '#/components/schemas/pagination' },
67390
67486
  spaces: {
67391
67487
  items: { $ref: '#/components/schemas/space' },
67392
67488
  type: 'array',
67393
67489
  },
67394
67490
  },
67395
- required: ['spaces', 'ok'],
67491
+ required: ['spaces', 'pagination', 'ok'],
67396
67492
  type: 'object',
67397
67493
  },
67398
67494
  },