@seamapi/types 1.300.1 → 1.301.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.
- package/dist/connect.cjs +8 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -20
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -16
- package/lib/seam/connect/openapi.js +6 -13
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +6 -13
- package/src/lib/seam/connect/route-types.ts +3 -4
|
@@ -6164,14 +6164,13 @@ export interface Routes {
|
|
|
6164
6164
|
queryParams: {};
|
|
6165
6165
|
jsonBody: {};
|
|
6166
6166
|
commonParams: {
|
|
6167
|
-
|
|
6168
|
-
acs_encoder_ids: string[];
|
|
6167
|
+
acs_system_id: string;
|
|
6169
6168
|
limit?: number;
|
|
6170
6169
|
} | {
|
|
6171
|
-
|
|
6170
|
+
acs_system_ids: string[];
|
|
6172
6171
|
limit?: number;
|
|
6173
6172
|
} | {
|
|
6174
|
-
|
|
6173
|
+
acs_encoder_ids: string[];
|
|
6175
6174
|
limit?: number;
|
|
6176
6175
|
};
|
|
6177
6176
|
formData: {};
|
package/package.json
CHANGED
|
@@ -10369,39 +10369,32 @@ export default {
|
|
|
10369
10369
|
oneOf: [
|
|
10370
10370
|
{
|
|
10371
10371
|
properties: {
|
|
10372
|
-
|
|
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: ['
|
|
10375
|
+
required: ['acs_system_id'],
|
|
10383
10376
|
type: 'object',
|
|
10384
10377
|
},
|
|
10385
10378
|
{
|
|
10386
10379
|
properties: {
|
|
10387
|
-
|
|
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: ['
|
|
10386
|
+
required: ['acs_system_ids'],
|
|
10394
10387
|
type: 'object',
|
|
10395
10388
|
},
|
|
10396
10389
|
{
|
|
10397
10390
|
properties: {
|
|
10398
|
-
|
|
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: ['
|
|
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
|
-
|
|
7160
|
-
acs_encoder_ids: string[]
|
|
7159
|
+
acs_system_id: string
|
|
7161
7160
|
limit?: number
|
|
7162
7161
|
}
|
|
7163
7162
|
| {
|
|
7164
|
-
|
|
7163
|
+
acs_system_ids: string[]
|
|
7165
7164
|
limit?: number
|
|
7166
7165
|
}
|
|
7167
7166
|
| {
|
|
7168
|
-
|
|
7167
|
+
acs_encoder_ids: string[]
|
|
7169
7168
|
limit?: number
|
|
7170
7169
|
}
|
|
7171
7170
|
formData: {}
|