@seamapi/types 1.781.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.
@@ -62408,6 +62408,8 @@ declare const _default: {
62408
62408
  format?: never;
62409
62409
  'x-draft'?: never;
62410
62410
  'x-undocumented'?: never;
62411
+ default?: never;
62412
+ nullable?: never;
62411
62413
  };
62412
62414
  } | {
62413
62415
  in: string;
@@ -62419,6 +62421,8 @@ declare const _default: {
62419
62421
  format?: never;
62420
62422
  'x-draft'?: never;
62421
62423
  'x-undocumented'?: never;
62424
+ default?: never;
62425
+ nullable?: never;
62422
62426
  };
62423
62427
  } | {
62424
62428
  in: string;
@@ -62430,6 +62434,34 @@ declare const _default: {
62430
62434
  'x-draft': string;
62431
62435
  'x-undocumented': string;
62432
62436
  minLength?: never;
62437
+ default?: never;
62438
+ nullable?: never;
62439
+ };
62440
+ } | {
62441
+ in: string;
62442
+ name: string;
62443
+ schema: {
62444
+ default: number;
62445
+ description: string;
62446
+ format: string;
62447
+ type: string;
62448
+ minLength?: never;
62449
+ 'x-draft'?: never;
62450
+ 'x-undocumented'?: never;
62451
+ nullable?: never;
62452
+ };
62453
+ } | {
62454
+ in: string;
62455
+ name: string;
62456
+ schema: {
62457
+ description: string;
62458
+ nullable: boolean;
62459
+ type: string;
62460
+ minLength?: never;
62461
+ format?: never;
62462
+ 'x-draft'?: never;
62463
+ 'x-undocumented'?: never;
62464
+ default?: never;
62433
62465
  };
62434
62466
  })[];
62435
62467
  responses: {
@@ -62441,6 +62473,9 @@ declare const _default: {
62441
62473
  ok: {
62442
62474
  type: string;
62443
62475
  };
62476
+ pagination: {
62477
+ $ref: string;
62478
+ };
62444
62479
  spaces: {
62445
62480
  items: {
62446
62481
  $ref: string;
@@ -62511,6 +62546,17 @@ declare const _default: {
62511
62546
  description: string;
62512
62547
  type: string;
62513
62548
  };
62549
+ limit: {
62550
+ default: number;
62551
+ description: string;
62552
+ format: string;
62553
+ type: string;
62554
+ };
62555
+ page_cursor: {
62556
+ description: string;
62557
+ nullable: boolean;
62558
+ type: string;
62559
+ };
62514
62560
  search: {
62515
62561
  description: string;
62516
62562
  minLength: number;
@@ -62535,6 +62581,9 @@ declare const _default: {
62535
62581
  ok: {
62536
62582
  type: string;
62537
62583
  };
62584
+ pagination: {
62585
+ $ref: string;
62586
+ };
62538
62587
  spaces: {
62539
62588
  items: {
62540
62589
  $ref: string;
@@ -67372,6 +67372,25 @@ export default {
67372
67372
  type: 'string',
67373
67373
  },
67374
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
+ },
67375
67394
  ],
67376
67395
  responses: {
67377
67396
  200: {
@@ -67380,12 +67399,13 @@ export default {
67380
67399
  schema: {
67381
67400
  properties: {
67382
67401
  ok: { type: 'boolean' },
67402
+ pagination: { $ref: '#/components/schemas/pagination' },
67383
67403
  spaces: {
67384
67404
  items: { $ref: '#/components/schemas/space' },
67385
67405
  type: 'array',
67386
67406
  },
67387
67407
  },
67388
- required: ['spaces', 'ok'],
67408
+ required: ['spaces', 'pagination', 'ok'],
67389
67409
  type: 'object',
67390
67410
  },
67391
67411
  },
@@ -67429,6 +67449,17 @@ export default {
67429
67449
  description: 'Customer key for which you want to list spaces.',
67430
67450
  type: 'string',
67431
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
+ },
67432
67463
  search: {
67433
67464
  description: 'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
67434
67465
  minLength: 1,
@@ -67451,12 +67482,13 @@ export default {
67451
67482
  schema: {
67452
67483
  properties: {
67453
67484
  ok: { type: 'boolean' },
67485
+ pagination: { $ref: '#/components/schemas/pagination' },
67454
67486
  spaces: {
67455
67487
  items: { $ref: '#/components/schemas/space' },
67456
67488
  type: 'array',
67457
67489
  },
67458
67490
  },
67459
- required: ['spaces', 'ok'],
67491
+ required: ['spaces', 'pagination', 'ok'],
67460
67492
  type: 'object',
67461
67493
  },
67462
67494
  },