@seamapi/types 1.271.0 → 1.271.1
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 +12 -46
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -68
- package/lib/seam/connect/openapi.d.ts +20 -60
- package/lib/seam/connect/openapi.js +12 -46
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -46
- package/src/lib/seam/connect/route-types.ts +8 -20
|
@@ -4065,11 +4065,6 @@ export interface Routes {
|
|
|
4065
4065
|
queryParams: {};
|
|
4066
4066
|
jsonBody: {};
|
|
4067
4067
|
commonParams: {
|
|
4068
|
-
acs_system_id: string;
|
|
4069
|
-
device_name: string;
|
|
4070
|
-
acs_credential_id: string;
|
|
4071
|
-
} | {
|
|
4072
|
-
acs_system_id: string;
|
|
4073
4068
|
device_id: string;
|
|
4074
4069
|
acs_credential_id: string;
|
|
4075
4070
|
};
|
|
@@ -5173,9 +5168,6 @@ export interface Routes {
|
|
|
5173
5168
|
queryParams: {};
|
|
5174
5169
|
jsonBody: {};
|
|
5175
5170
|
commonParams: {
|
|
5176
|
-
acs_system_id: string;
|
|
5177
|
-
device_name: string;
|
|
5178
|
-
} | {
|
|
5179
5171
|
acs_system_id: string;
|
|
5180
5172
|
device_id: string;
|
|
5181
5173
|
};
|
package/package.json
CHANGED
|
@@ -8214,34 +8214,12 @@ export default {
|
|
|
8214
8214
|
content: {
|
|
8215
8215
|
'application/json': {
|
|
8216
8216
|
schema: {
|
|
8217
|
-
|
|
8218
|
-
{
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
|
-
|
|
8223
|
-
},
|
|
8224
|
-
required: [
|
|
8225
|
-
'acs_system_id',
|
|
8226
|
-
'device_name',
|
|
8227
|
-
'acs_credential_id',
|
|
8228
|
-
],
|
|
8229
|
-
type: 'object',
|
|
8230
|
-
},
|
|
8231
|
-
{
|
|
8232
|
-
properties: {
|
|
8233
|
-
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
8234
|
-
acs_system_id: { format: 'uuid', type: 'string' },
|
|
8235
|
-
device_id: { format: 'uuid', type: 'string' },
|
|
8236
|
-
},
|
|
8237
|
-
required: [
|
|
8238
|
-
'acs_system_id',
|
|
8239
|
-
'device_id',
|
|
8240
|
-
'acs_credential_id',
|
|
8241
|
-
],
|
|
8242
|
-
type: 'object',
|
|
8243
|
-
},
|
|
8244
|
-
],
|
|
8217
|
+
properties: {
|
|
8218
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
8219
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
8220
|
+
},
|
|
8221
|
+
required: ['device_id', 'acs_credential_id'],
|
|
8222
|
+
type: 'object',
|
|
8245
8223
|
},
|
|
8246
8224
|
},
|
|
8247
8225
|
},
|
|
@@ -8374,24 +8352,12 @@ export default {
|
|
|
8374
8352
|
content: {
|
|
8375
8353
|
'application/json': {
|
|
8376
8354
|
schema: {
|
|
8377
|
-
|
|
8378
|
-
{
|
|
8379
|
-
|
|
8380
|
-
|
|
8381
|
-
|
|
8382
|
-
|
|
8383
|
-
required: ['acs_system_id', 'device_name'],
|
|
8384
|
-
type: 'object',
|
|
8385
|
-
},
|
|
8386
|
-
{
|
|
8387
|
-
properties: {
|
|
8388
|
-
acs_system_id: { format: 'uuid', type: 'string' },
|
|
8389
|
-
device_id: { format: 'uuid', type: 'string' },
|
|
8390
|
-
},
|
|
8391
|
-
required: ['acs_system_id', 'device_id'],
|
|
8392
|
-
type: 'object',
|
|
8393
|
-
},
|
|
8394
|
-
],
|
|
8355
|
+
properties: {
|
|
8356
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
8357
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
8358
|
+
},
|
|
8359
|
+
required: ['acs_system_id', 'device_id'],
|
|
8360
|
+
type: 'object',
|
|
8395
8361
|
},
|
|
8396
8362
|
},
|
|
8397
8363
|
},
|
|
@@ -4742,17 +4742,10 @@ export interface Routes {
|
|
|
4742
4742
|
method: 'POST'
|
|
4743
4743
|
queryParams: {}
|
|
4744
4744
|
jsonBody: {}
|
|
4745
|
-
commonParams:
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
acs_credential_id: string
|
|
4750
|
-
}
|
|
4751
|
-
| {
|
|
4752
|
-
acs_system_id: string
|
|
4753
|
-
device_id: string
|
|
4754
|
-
acs_credential_id: string
|
|
4755
|
-
}
|
|
4745
|
+
commonParams: {
|
|
4746
|
+
device_id: string
|
|
4747
|
+
acs_credential_id: string
|
|
4748
|
+
}
|
|
4756
4749
|
formData: {}
|
|
4757
4750
|
jsonResponse: {
|
|
4758
4751
|
action_attempt:
|
|
@@ -6148,15 +6141,10 @@ export interface Routes {
|
|
|
6148
6141
|
method: 'POST'
|
|
6149
6142
|
queryParams: {}
|
|
6150
6143
|
jsonBody: {}
|
|
6151
|
-
commonParams:
|
|
6152
|
-
|
|
6153
|
-
|
|
6154
|
-
|
|
6155
|
-
}
|
|
6156
|
-
| {
|
|
6157
|
-
acs_system_id: string
|
|
6158
|
-
device_id: string
|
|
6159
|
-
}
|
|
6144
|
+
commonParams: {
|
|
6145
|
+
acs_system_id: string
|
|
6146
|
+
device_id: string
|
|
6147
|
+
}
|
|
6160
6148
|
formData: {}
|
|
6161
6149
|
jsonResponse: {
|
|
6162
6150
|
action_attempt:
|