@seamapi/types 1.520.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.
@@ -22032,6 +22032,9 @@ declare const _default: {
22032
22032
  ok: {
22033
22033
  type: string;
22034
22034
  };
22035
+ pagination: {
22036
+ $ref: string;
22037
+ };
22035
22038
  };
22036
22039
  required: string[];
22037
22040
  type: string;
@@ -22075,66 +22078,68 @@ declare const _default: {
22075
22078
  content: {
22076
22079
  'application/json': {
22077
22080
  schema: {
22078
- oneOf: ({
22079
- properties: {
22080
- acs_system_id: {
22081
- description: string;
22082
- format: string;
22083
- type: string;
22084
- };
22085
- limit: {
22086
- default: number;
22087
- description: string;
22088
- format: string;
22089
- type: string;
22090
- };
22091
- acs_system_ids?: never;
22092
- acs_encoder_ids?: never;
22093
- };
22094
- required: string[];
22095
- type: string;
22096
- } | {
22097
- properties: {
22098
- acs_system_ids: {
22099
- description: string;
22100
- items: {
22081
+ allOf: ({
22082
+ oneOf: ({
22083
+ properties: {
22084
+ acs_system_id: {
22085
+ description: string;
22101
22086
  format: string;
22102
22087
  type: string;
22103
22088
  };
22104
- type: string;
22089
+ acs_system_ids?: never;
22090
+ acs_encoder_ids?: never;
22105
22091
  };
22106
- limit: {
22107
- default: number;
22108
- description: string;
22109
- format: string;
22110
- type: string;
22092
+ required: string[];
22093
+ type: string;
22094
+ } | {
22095
+ properties: {
22096
+ acs_system_ids: {
22097
+ description: string;
22098
+ items: {
22099
+ format: string;
22100
+ type: string;
22101
+ };
22102
+ type: string;
22103
+ };
22104
+ acs_system_id?: never;
22105
+ acs_encoder_ids?: never;
22111
22106
  };
22112
- acs_system_id?: never;
22113
- acs_encoder_ids?: never;
22114
- };
22115
- required: string[];
22116
- type: string;
22117
- } | {
22118
- properties: {
22119
- acs_encoder_ids: {
22120
- description: string;
22121
- items: {
22122
- format: string;
22107
+ required: string[];
22108
+ type: string;
22109
+ } | {
22110
+ properties: {
22111
+ acs_encoder_ids: {
22112
+ description: string;
22113
+ items: {
22114
+ format: string;
22115
+ type: string;
22116
+ };
22123
22117
  type: string;
22124
22118
  };
22125
- type: string;
22119
+ acs_system_id?: never;
22120
+ acs_system_ids?: never;
22126
22121
  };
22122
+ required: string[];
22123
+ type: string;
22124
+ })[];
22125
+ properties?: never;
22126
+ type?: never;
22127
+ } | {
22128
+ properties: {
22127
22129
  limit: {
22128
22130
  default: number;
22129
22131
  description: string;
22130
22132
  format: string;
22131
22133
  type: string;
22132
22134
  };
22133
- acs_system_id?: never;
22134
- acs_system_ids?: never;
22135
+ page_cursor: {
22136
+ description: string;
22137
+ nullable: boolean;
22138
+ type: string;
22139
+ };
22135
22140
  };
22136
- required: string[];
22137
22141
  type: string;
22142
+ oneOf?: never;
22138
22143
  })[];
22139
22144
  };
22140
22145
  };
@@ -22155,6 +22160,9 @@ declare const _default: {
22155
22160
  ok: {
22156
22161
  type: string;
22157
22162
  };
22163
+ pagination: {
22164
+ $ref: string;
22165
+ };
22158
22166
  };
22159
22167
  required: string[];
22160
22168
  type: string;
@@ -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
  },