@seamapi/types 1.202.0 → 1.204.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 +30 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +57 -2
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -0
- package/lib/seam/connect/models/devices/unmanaged-device.js +1 -0
- package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +26 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +19 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/models/devices/unmanaged-device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +28 -3
- package/src/lib/seam/connect/route-types.ts +19 -2
package/dist/connect.cjs
CHANGED
|
@@ -903,7 +903,9 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
903
903
|
"ttlock",
|
|
904
904
|
"kwikset",
|
|
905
905
|
"igloohome",
|
|
906
|
-
"wyze"
|
|
906
|
+
"wyze",
|
|
907
|
+
"lockly",
|
|
908
|
+
"tedee"
|
|
907
909
|
],
|
|
908
910
|
thermostats: ["ecobee", "nest"],
|
|
909
911
|
noise_sensors: ["minut", "noiseaware"],
|
|
@@ -927,6 +929,7 @@ var unmanaged_device = device.pick({
|
|
|
927
929
|
device_id: true,
|
|
928
930
|
device_type: true,
|
|
929
931
|
connected_account_id: true,
|
|
932
|
+
location: true,
|
|
930
933
|
capabilities_supported: true,
|
|
931
934
|
workspace_id: true,
|
|
932
935
|
errors: true,
|
|
@@ -6113,6 +6116,21 @@ var openapi_default = {
|
|
|
6113
6116
|
type: "array"
|
|
6114
6117
|
},
|
|
6115
6118
|
is_managed: { enum: [false], type: "boolean" },
|
|
6119
|
+
location: {
|
|
6120
|
+
description: "Location information for the device.",
|
|
6121
|
+
nullable: true,
|
|
6122
|
+
properties: {
|
|
6123
|
+
location_name: {
|
|
6124
|
+
description: "Name of the device location.",
|
|
6125
|
+
type: "string"
|
|
6126
|
+
},
|
|
6127
|
+
timezone: {
|
|
6128
|
+
description: "Time zone of the device location.",
|
|
6129
|
+
type: "string"
|
|
6130
|
+
}
|
|
6131
|
+
},
|
|
6132
|
+
type: "object"
|
|
6133
|
+
},
|
|
6116
6134
|
properties: {
|
|
6117
6135
|
properties: {
|
|
6118
6136
|
accessory_keypad: {
|
|
@@ -6255,6 +6273,7 @@ var openapi_default = {
|
|
|
6255
6273
|
"device_id",
|
|
6256
6274
|
"device_type",
|
|
6257
6275
|
"connected_account_id",
|
|
6276
|
+
"location",
|
|
6258
6277
|
"capabilities_supported",
|
|
6259
6278
|
"workspace_id",
|
|
6260
6279
|
"errors",
|
|
@@ -10339,11 +10358,14 @@ var openapi_default = {
|
|
|
10339
10358
|
additionalProperties: {
|
|
10340
10359
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
10341
10360
|
},
|
|
10342
|
-
description: "Returns
|
|
10361
|
+
description: "Returns webviews whose custom_metadata contains all of the provided key/value pairs.",
|
|
10343
10362
|
type: "object"
|
|
10344
10363
|
},
|
|
10345
10364
|
limit: { default: 500, format: "float", type: "number" },
|
|
10346
|
-
user_identifier_key: {
|
|
10365
|
+
user_identifier_key: {
|
|
10366
|
+
description: "Returns webviews that can be accessed by the provided user_identifier_key.",
|
|
10367
|
+
type: "string"
|
|
10368
|
+
}
|
|
10347
10369
|
},
|
|
10348
10370
|
type: "object"
|
|
10349
10371
|
}
|
|
@@ -10500,8 +10522,12 @@ var openapi_default = {
|
|
|
10500
10522
|
additionalProperties: {
|
|
10501
10523
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
10502
10524
|
},
|
|
10503
|
-
description: "Returns
|
|
10525
|
+
description: "Returns accounts whose custom_metadata contains all of the provided key/value pairs.",
|
|
10504
10526
|
type: "object"
|
|
10527
|
+
},
|
|
10528
|
+
user_identifier_key: {
|
|
10529
|
+
description: "Returns accounts that can be accessed by the provided user_identifier_key.",
|
|
10530
|
+
type: "string"
|
|
10505
10531
|
}
|
|
10506
10532
|
},
|
|
10507
10533
|
type: "object"
|