@seamapi/types 1.271.0 → 1.272.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 +15 -47
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -68
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +23 -60
- package/lib/seam/connect/openapi.js +13 -46
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +13 -46
- package/src/lib/seam/connect/route-types.ts +22 -20
|
@@ -3715,6 +3715,7 @@ export default {
|
|
|
3715
3715
|
properties: {
|
|
3716
3716
|
custom_name: { type: 'string' },
|
|
3717
3717
|
device_name: { type: 'string' },
|
|
3718
|
+
display_name: { type: 'string' },
|
|
3718
3719
|
nest_device_id: { type: 'string' },
|
|
3719
3720
|
},
|
|
3720
3721
|
required: [
|
|
@@ -8063,34 +8064,12 @@ export default {
|
|
|
8063
8064
|
content: {
|
|
8064
8065
|
'application/json': {
|
|
8065
8066
|
schema: {
|
|
8066
|
-
|
|
8067
|
-
{
|
|
8068
|
-
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
},
|
|
8073
|
-
required: [
|
|
8074
|
-
'acs_system_id',
|
|
8075
|
-
'device_name',
|
|
8076
|
-
'acs_credential_id',
|
|
8077
|
-
],
|
|
8078
|
-
type: 'object',
|
|
8079
|
-
},
|
|
8080
|
-
{
|
|
8081
|
-
properties: {
|
|
8082
|
-
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
8083
|
-
acs_system_id: { format: 'uuid', type: 'string' },
|
|
8084
|
-
device_id: { format: 'uuid', type: 'string' },
|
|
8085
|
-
},
|
|
8086
|
-
required: [
|
|
8087
|
-
'acs_system_id',
|
|
8088
|
-
'device_id',
|
|
8089
|
-
'acs_credential_id',
|
|
8090
|
-
],
|
|
8091
|
-
type: 'object',
|
|
8092
|
-
},
|
|
8093
|
-
],
|
|
8067
|
+
properties: {
|
|
8068
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
8069
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
8070
|
+
},
|
|
8071
|
+
required: ['device_id', 'acs_credential_id'],
|
|
8072
|
+
type: 'object',
|
|
8094
8073
|
},
|
|
8095
8074
|
},
|
|
8096
8075
|
},
|
|
@@ -8223,24 +8202,12 @@ export default {
|
|
|
8223
8202
|
content: {
|
|
8224
8203
|
'application/json': {
|
|
8225
8204
|
schema: {
|
|
8226
|
-
|
|
8227
|
-
{
|
|
8228
|
-
|
|
8229
|
-
|
|
8230
|
-
|
|
8231
|
-
|
|
8232
|
-
required: ['acs_system_id', 'device_name'],
|
|
8233
|
-
type: 'object',
|
|
8234
|
-
},
|
|
8235
|
-
{
|
|
8236
|
-
properties: {
|
|
8237
|
-
acs_system_id: { format: 'uuid', type: 'string' },
|
|
8238
|
-
device_id: { format: 'uuid', type: 'string' },
|
|
8239
|
-
},
|
|
8240
|
-
required: ['acs_system_id', 'device_id'],
|
|
8241
|
-
type: 'object',
|
|
8242
|
-
},
|
|
8243
|
-
],
|
|
8205
|
+
properties: {
|
|
8206
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
8207
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
8208
|
+
},
|
|
8209
|
+
required: ['acs_system_id', 'device_id'],
|
|
8210
|
+
type: 'object',
|
|
8244
8211
|
},
|
|
8245
8212
|
},
|
|
8246
8213
|
},
|