@seamapi/types 1.519.0 → 1.521.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.
@@ -29501,8 +29501,9 @@ export default {
29501
29501
  type: 'array',
29502
29502
  },
29503
29503
  ok: { type: 'boolean' },
29504
+ pagination: { $ref: '#/components/schemas/pagination' },
29504
29505
  },
29505
- required: ['acs_encoders', 'ok'],
29506
+ required: ['acs_encoders', 'pagination', 'ok'],
29506
29507
  type: 'object',
29507
29508
  },
29508
29509
  },
@@ -29532,56 +29533,58 @@ export default {
29532
29533
  content: {
29533
29534
  'application/json': {
29534
29535
  schema: {
29535
- oneOf: [
29536
+ allOf: [
29536
29537
  {
29537
- properties: {
29538
- acs_system_id: {
29539
- description: 'ID of the access system for which you want to retrieve all encoders.',
29540
- format: 'uuid',
29541
- type: 'string',
29542
- },
29543
- limit: {
29544
- default: 500,
29545
- description: 'Number of encoders to return.',
29546
- format: 'float',
29547
- type: 'number',
29538
+ oneOf: [
29539
+ {
29540
+ properties: {
29541
+ acs_system_id: {
29542
+ description: 'ID of the access system for which you want to retrieve all encoders.',
29543
+ format: 'uuid',
29544
+ type: 'string',
29545
+ },
29546
+ },
29547
+ required: ['acs_system_id'],
29548
+ type: 'object',
29548
29549
  },
29549
- },
29550
- required: ['acs_system_id'],
29551
- type: 'object',
29552
- },
29553
- {
29554
- properties: {
29555
- acs_system_ids: {
29556
- description: 'IDs of the access systems for which you want to retrieve all encoders.',
29557
- items: { format: 'uuid', type: 'string' },
29558
- type: 'array',
29550
+ {
29551
+ properties: {
29552
+ acs_system_ids: {
29553
+ description: 'IDs of the access systems for which you want to retrieve all encoders.',
29554
+ items: { format: 'uuid', type: 'string' },
29555
+ type: 'array',
29556
+ },
29557
+ },
29558
+ required: ['acs_system_ids'],
29559
+ type: 'object',
29559
29560
  },
29560
- limit: {
29561
- default: 500,
29562
- description: 'Number of encoders to return.',
29563
- format: 'float',
29564
- type: 'number',
29561
+ {
29562
+ properties: {
29563
+ acs_encoder_ids: {
29564
+ description: 'IDs of the encoders that you want to retrieve.',
29565
+ items: { format: 'uuid', type: 'string' },
29566
+ type: 'array',
29567
+ },
29568
+ },
29569
+ required: ['acs_encoder_ids'],
29570
+ type: 'object',
29565
29571
  },
29566
- },
29567
- required: ['acs_system_ids'],
29568
- type: 'object',
29572
+ ],
29569
29573
  },
29570
29574
  {
29571
29575
  properties: {
29572
- acs_encoder_ids: {
29573
- description: 'IDs of the encoders that you want to retrieve.',
29574
- items: { format: 'uuid', type: 'string' },
29575
- type: 'array',
29576
- },
29577
29576
  limit: {
29578
29577
  default: 500,
29579
29578
  description: 'Number of encoders to return.',
29580
29579
  format: 'float',
29581
29580
  type: 'number',
29582
29581
  },
29582
+ page_cursor: {
29583
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
29584
+ nullable: true,
29585
+ type: 'string',
29586
+ },
29583
29587
  },
29584
- required: ['acs_encoder_ids'],
29585
29588
  type: 'object',
29586
29589
  },
29587
29590
  ],
@@ -29600,8 +29603,9 @@ export default {
29600
29603
  type: 'array',
29601
29604
  },
29602
29605
  ok: { type: 'boolean' },
29606
+ pagination: { $ref: '#/components/schemas/pagination' },
29603
29607
  },
29604
- required: ['acs_encoders', 'ok'],
29608
+ required: ['acs_encoders', 'pagination', 'ok'],
29605
29609
  type: 'object',
29606
29610
  },
29607
29611
  },
@@ -35025,6 +35029,10 @@ export default {
35025
35029
  description: 'Your name for this access grant resource.',
35026
35030
  type: 'string',
35027
35031
  },
35032
+ preferred_code: {
35033
+ description: 'Preferred PIN code to use when creating access for this reservation.',
35034
+ type: 'string',
35035
+ },
35028
35036
  property_keys: {
35029
35037
  description: 'Property keys associated with the access grant.',
35030
35038
  items: { type: 'string' },
@@ -35111,6 +35119,10 @@ export default {
35111
35119
  description: 'Your name for this access grant resource.',
35112
35120
  type: 'string',
35113
35121
  },
35122
+ preferred_code: {
35123
+ description: 'Preferred PIN code to use when creating access for this reservation.',
35124
+ type: 'string',
35125
+ },
35114
35126
  property_keys: {
35115
35127
  description: 'Property keys associated with the access grant.',
35116
35128
  items: { type: 'string' },
@@ -35331,6 +35343,10 @@ export default {
35331
35343
  description: 'Your name for this access grant resource.',
35332
35344
  type: 'string',
35333
35345
  },
35346
+ preferred_code: {
35347
+ description: 'Preferred PIN code to use when creating access for this reservation.',
35348
+ type: 'string',
35349
+ },
35334
35350
  property_keys: {
35335
35351
  description: 'Property keys associated with the access grant.',
35336
35352
  items: { type: 'string' },
@@ -35948,6 +35964,10 @@ export default {
35948
35964
  description: 'Your name for this access grant resource.',
35949
35965
  type: 'string',
35950
35966
  },
35967
+ preferred_code: {
35968
+ description: 'Preferred PIN code to use when creating access for this reservation.',
35969
+ type: 'string',
35970
+ },
35951
35971
  property_keys: {
35952
35972
  description: 'Property keys associated with the access grant.',
35953
35973
  items: { type: 'string' },
@@ -36034,6 +36054,10 @@ export default {
36034
36054
  description: 'Your name for this access grant resource.',
36035
36055
  type: 'string',
36036
36056
  },
36057
+ preferred_code: {
36058
+ description: 'Preferred PIN code to use when creating access for this reservation.',
36059
+ type: 'string',
36060
+ },
36037
36061
  property_keys: {
36038
36062
  description: 'Property keys associated with the access grant.',
36039
36063
  items: { type: 'string' },
@@ -36254,6 +36278,10 @@ export default {
36254
36278
  description: 'Your name for this access grant resource.',
36255
36279
  type: 'string',
36256
36280
  },
36281
+ preferred_code: {
36282
+ description: 'Preferred PIN code to use when creating access for this reservation.',
36283
+ type: 'string',
36284
+ },
36257
36285
  property_keys: {
36258
36286
  description: 'Property keys associated with the access grant.',
36259
36287
  items: { type: 'string' },