@seamapi/types 1.300.1 → 1.300.2

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.
@@ -6164,14 +6164,13 @@ export interface Routes {
6164
6164
  queryParams: {};
6165
6165
  jsonBody: {};
6166
6166
  commonParams: {
6167
- acs_system_ids: string[];
6168
- acs_encoder_ids: string[];
6167
+ acs_system_id: string;
6169
6168
  limit?: number;
6170
6169
  } | {
6171
- acs_encoder_ids: string[];
6170
+ acs_system_ids: string[];
6172
6171
  limit?: number;
6173
6172
  } | {
6174
- acs_system_ids: string[];
6173
+ acs_encoder_ids: string[];
6175
6174
  limit?: number;
6176
6175
  };
6177
6176
  formData: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.300.1",
3
+ "version": "1.300.2",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -10369,39 +10369,32 @@ export default {
10369
10369
  oneOf: [
10370
10370
  {
10371
10371
  properties: {
10372
- acs_encoder_ids: {
10373
- items: { format: 'uuid', type: 'string' },
10374
- type: 'array',
10375
- },
10376
- acs_system_ids: {
10377
- items: { format: 'uuid', type: 'string' },
10378
- type: 'array',
10379
- },
10372
+ acs_system_id: { format: 'uuid', type: 'string' },
10380
10373
  limit: { default: 500, format: 'float', type: 'number' },
10381
10374
  },
10382
- required: ['acs_system_ids', 'acs_encoder_ids'],
10375
+ required: ['acs_system_id'],
10383
10376
  type: 'object',
10384
10377
  },
10385
10378
  {
10386
10379
  properties: {
10387
- acs_encoder_ids: {
10380
+ acs_system_ids: {
10388
10381
  items: { format: 'uuid', type: 'string' },
10389
10382
  type: 'array',
10390
10383
  },
10391
10384
  limit: { default: 500, format: 'float', type: 'number' },
10392
10385
  },
10393
- required: ['acs_encoder_ids'],
10386
+ required: ['acs_system_ids'],
10394
10387
  type: 'object',
10395
10388
  },
10396
10389
  {
10397
10390
  properties: {
10398
- acs_system_ids: {
10391
+ acs_encoder_ids: {
10399
10392
  items: { format: 'uuid', type: 'string' },
10400
10393
  type: 'array',
10401
10394
  },
10402
10395
  limit: { default: 500, format: 'float', type: 'number' },
10403
10396
  },
10404
- required: ['acs_system_ids'],
10397
+ required: ['acs_encoder_ids'],
10405
10398
  type: 'object',
10406
10399
  },
10407
10400
  ],
@@ -7156,16 +7156,15 @@ export interface Routes {
7156
7156
  jsonBody: {}
7157
7157
  commonParams:
7158
7158
  | {
7159
- acs_system_ids: string[]
7160
- acs_encoder_ids: string[]
7159
+ acs_system_id: string
7161
7160
  limit?: number
7162
7161
  }
7163
7162
  | {
7164
- acs_encoder_ids: string[]
7163
+ acs_system_ids: string[]
7165
7164
  limit?: number
7166
7165
  }
7167
7166
  | {
7168
- acs_system_ids: string[]
7167
+ acs_encoder_ids: string[]
7169
7168
  limit?: number
7170
7169
  }
7171
7170
  formData: {}