@seamapi/types 1.755.0 → 1.756.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.
@@ -26814,16 +26814,25 @@ declare const _default: {
26814
26814
  get: {
26815
26815
  description: string;
26816
26816
  operationId: string;
26817
- parameters: {
26817
+ parameters: ({
26818
26818
  in: string;
26819
26819
  name: string;
26820
- required: boolean;
26821
26820
  schema: {
26822
26821
  description: string;
26823
26822
  format: string;
26824
26823
  type: string;
26824
+ minLength?: never;
26825
26825
  };
26826
- }[];
26826
+ } | {
26827
+ in: string;
26828
+ name: string;
26829
+ schema: {
26830
+ description: string;
26831
+ minLength: number;
26832
+ type: string;
26833
+ format?: never;
26834
+ };
26835
+ })[];
26827
26836
  responses: {
26828
26837
  200: {
26829
26838
  content: {
@@ -26897,6 +26906,11 @@ declare const _default: {
26897
26906
  format: string;
26898
26907
  type: string;
26899
26908
  };
26909
+ access_grant_key: {
26910
+ description: string;
26911
+ minLength: number;
26912
+ type: string;
26913
+ };
26900
26914
  acs_entrance_id: {
26901
26915
  description: string;
26902
26916
  format: string;
@@ -26913,7 +26927,6 @@ declare const _default: {
26913
26927
  type: string;
26914
26928
  };
26915
26929
  };
26916
- required: string[];
26917
26930
  type: string;
26918
26931
  };
26919
26932
  };
@@ -34395,17 +34395,24 @@ export default {
34395
34395
  {
34396
34396
  in: 'query',
34397
34397
  name: 'access_grant_id',
34398
- required: true,
34399
34398
  schema: {
34400
34399
  description: 'ID of Access Grant to list access methods for.',
34401
34400
  format: 'uuid',
34402
34401
  type: 'string',
34403
34402
  },
34404
34403
  },
34404
+ {
34405
+ in: 'query',
34406
+ name: 'access_grant_key',
34407
+ schema: {
34408
+ description: 'Key of Access Grant to list access methods for.',
34409
+ minLength: 1,
34410
+ type: 'string',
34411
+ },
34412
+ },
34405
34413
  {
34406
34414
  in: 'query',
34407
34415
  name: 'device_id',
34408
- required: false,
34409
34416
  schema: {
34410
34417
  description: 'ID of the device for which you want to retrieve all access methods.',
34411
34418
  format: 'uuid',
@@ -34415,7 +34422,6 @@ export default {
34415
34422
  {
34416
34423
  in: 'query',
34417
34424
  name: 'acs_entrance_id',
34418
- required: false,
34419
34425
  schema: {
34420
34426
  description: 'ID of the entrance for which you want to retrieve all access methods.',
34421
34427
  format: 'uuid',
@@ -34425,7 +34431,6 @@ export default {
34425
34431
  {
34426
34432
  in: 'query',
34427
34433
  name: 'space_id',
34428
- required: false,
34429
34434
  schema: {
34430
34435
  description: 'ID of the space for which you want to retrieve all access methods.',
34431
34436
  format: 'uuid',
@@ -34483,6 +34488,11 @@ export default {
34483
34488
  format: 'uuid',
34484
34489
  type: 'string',
34485
34490
  },
34491
+ access_grant_key: {
34492
+ description: 'Key of Access Grant to list access methods for.',
34493
+ minLength: 1,
34494
+ type: 'string',
34495
+ },
34486
34496
  acs_entrance_id: {
34487
34497
  description: 'ID of the entrance for which you want to retrieve all access methods.',
34488
34498
  format: 'uuid',
@@ -34499,7 +34509,6 @@ export default {
34499
34509
  type: 'string',
34500
34510
  },
34501
34511
  },
34502
- required: ['access_grant_id'],
34503
34512
  type: 'object',
34504
34513
  },
34505
34514
  },