@seamapi/types 1.700.0 → 1.701.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.
@@ -19461,7 +19461,9 @@ declare const _default: {
19461
19461
  schema: {
19462
19462
  description: string;
19463
19463
  type: string;
19464
+ default?: never;
19464
19465
  format?: never;
19466
+ nullable?: never;
19465
19467
  deprecated?: never;
19466
19468
  'x-deprecated'?: never;
19467
19469
  };
@@ -19469,9 +19471,35 @@ declare const _default: {
19469
19471
  in: string;
19470
19472
  name: string;
19471
19473
  schema: {
19474
+ default: number;
19472
19475
  description: string;
19473
19476
  format: string;
19474
19477
  type: string;
19478
+ nullable?: never;
19479
+ deprecated?: never;
19480
+ 'x-deprecated'?: never;
19481
+ };
19482
+ } | {
19483
+ in: string;
19484
+ name: string;
19485
+ schema: {
19486
+ description: string;
19487
+ nullable: boolean;
19488
+ type: string;
19489
+ default?: never;
19490
+ format?: never;
19491
+ deprecated?: never;
19492
+ 'x-deprecated'?: never;
19493
+ };
19494
+ } | {
19495
+ in: string;
19496
+ name: string;
19497
+ schema: {
19498
+ description: string;
19499
+ format: string;
19500
+ type: string;
19501
+ default?: never;
19502
+ nullable?: never;
19475
19503
  deprecated?: never;
19476
19504
  'x-deprecated'?: never;
19477
19505
  };
@@ -19484,6 +19512,8 @@ declare const _default: {
19484
19512
  type: string;
19485
19513
  'x-deprecated': string;
19486
19514
  description?: never;
19515
+ default?: never;
19516
+ nullable?: never;
19487
19517
  };
19488
19518
  })[];
19489
19519
  responses: {
@@ -19501,6 +19531,9 @@ declare const _default: {
19501
19531
  ok: {
19502
19532
  type: string;
19503
19533
  };
19534
+ pagination: {
19535
+ $ref: string;
19536
+ };
19504
19537
  };
19505
19538
  required: string[];
19506
19539
  type: string;
@@ -19572,12 +19605,23 @@ declare const _default: {
19572
19605
  description: string;
19573
19606
  type: string;
19574
19607
  };
19608
+ limit: {
19609
+ default: number;
19610
+ description: string;
19611
+ format: string;
19612
+ type: string;
19613
+ };
19575
19614
  location_id: {
19576
19615
  deprecated: boolean;
19577
19616
  format: string;
19578
19617
  type: string;
19579
19618
  'x-deprecated': string;
19580
19619
  };
19620
+ page_cursor: {
19621
+ description: string;
19622
+ nullable: boolean;
19623
+ type: string;
19624
+ };
19581
19625
  reservation_key: {
19582
19626
  description: string;
19583
19627
  type: string;
@@ -19613,6 +19657,9 @@ declare const _default: {
19613
19657
  ok: {
19614
19658
  type: string;
19615
19659
  };
19660
+ pagination: {
19661
+ $ref: string;
19662
+ };
19616
19663
  };
19617
19664
  required: string[];
19618
19665
  type: string;
@@ -26866,6 +26866,25 @@ export default {
26866
26866
  type: 'string',
26867
26867
  },
26868
26868
  },
26869
+ {
26870
+ in: 'query',
26871
+ name: 'limit',
26872
+ schema: {
26873
+ default: 500,
26874
+ description: 'Numerical limit on the number of access grants to return.',
26875
+ format: 'float',
26876
+ type: 'number',
26877
+ },
26878
+ },
26879
+ {
26880
+ in: 'query',
26881
+ name: 'page_cursor',
26882
+ schema: {
26883
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
26884
+ nullable: true,
26885
+ type: 'string',
26886
+ },
26887
+ },
26869
26888
  {
26870
26889
  in: 'query',
26871
26890
  name: 'user_identity_id',
@@ -26940,8 +26959,9 @@ export default {
26940
26959
  type: 'array',
26941
26960
  },
26942
26961
  ok: { type: 'boolean' },
26962
+ pagination: { $ref: '#/components/schemas/pagination' },
26943
26963
  },
26944
- required: ['access_grants', 'ok'],
26964
+ required: ['access_grants', 'pagination', 'ok'],
26945
26965
  type: 'object',
26946
26966
  },
26947
26967
  },
@@ -26992,12 +27012,23 @@ export default {
26992
27012
  description: 'Customer key for which you want to list access grants.',
26993
27013
  type: 'string',
26994
27014
  },
27015
+ limit: {
27016
+ default: 500,
27017
+ description: 'Numerical limit on the number of access grants to return.',
27018
+ format: 'float',
27019
+ type: 'number',
27020
+ },
26995
27021
  location_id: {
26996
27022
  deprecated: true,
26997
27023
  format: 'uuid',
26998
27024
  type: 'string',
26999
27025
  'x-deprecated': 'Use `space_id`.',
27000
27026
  },
27027
+ page_cursor: {
27028
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
27029
+ nullable: true,
27030
+ type: 'string',
27031
+ },
27001
27032
  reservation_key: {
27002
27033
  description: 'Filter Access Grants by reservation_key.',
27003
27034
  type: 'string',
@@ -27029,8 +27060,9 @@ export default {
27029
27060
  type: 'array',
27030
27061
  },
27031
27062
  ok: { type: 'boolean' },
27063
+ pagination: { $ref: '#/components/schemas/pagination' },
27032
27064
  },
27033
- required: ['access_grants', 'ok'],
27065
+ required: ['access_grants', 'pagination', 'ok'],
27034
27066
  type: 'object',
27035
27067
  },
27036
27068
  },