@seamapi/types 1.714.0 → 1.716.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 +93 -76
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +536 -106
- package/dist/index.cjs +93 -76
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +118 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/models/devices/device-metadata.js +17 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- 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/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +57 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +41 -3
- package/lib/seam/connect/openapi.d.ts +31 -46
- package/lib/seam/connect/openapi.js +65 -58
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +288 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +18 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +67 -66
- package/src/lib/seam/connect/route-types.ts +326 -17
package/dist/connect.cjs
CHANGED
|
@@ -1078,7 +1078,15 @@ var device_metadata = zod.z.object({
|
|
|
1078
1078
|
device_name: zod.z.string().describe(`Device name for an Ultraloq device.`),
|
|
1079
1079
|
device_type: zod.z.string().describe(`Device type for an Ultraloq device.`),
|
|
1080
1080
|
time_zone: zod.z.string().nullable().describe(`IANA timezone for the Ultraloq device.`)
|
|
1081
|
-
}).describe(`Metadata for an Ultraloq device.`)
|
|
1081
|
+
}).describe(`Metadata for an Ultraloq device.`),
|
|
1082
|
+
korelock_metadata: zod.z.object({
|
|
1083
|
+
device_id: zod.z.string().describe(`Device ID for a Korelock device.`),
|
|
1084
|
+
device_name: zod.z.string().describe(`Device name for a Korelock device.`),
|
|
1085
|
+
model_code: zod.z.string().describe(`Model code for a Korelock device.`),
|
|
1086
|
+
serial_number: zod.z.string().describe(`Serial number for a Korelock device.`),
|
|
1087
|
+
firmware_version: zod.z.string().describe(`Firmware version for a Korelock device.`),
|
|
1088
|
+
wifi_signal_strength: zod.z.number().describe(`WiFi signal strength (0-1) for a Korelock device.`)
|
|
1089
|
+
}).partial().describe(`Metadata for a Korelock device.`)
|
|
1082
1090
|
}).partial().describe(`
|
|
1083
1091
|
---
|
|
1084
1092
|
property_group_key: provider_metadata
|
|
@@ -1113,7 +1121,8 @@ var LOCK_DEVICE_TYPE = {
|
|
|
1113
1121
|
DORMAKABA_ORACODE_DOOR: "dormakaba_oracode_door",
|
|
1114
1122
|
TEDEE_LOCK: "tedee_lock",
|
|
1115
1123
|
AKILES_LOCK: "akiles_lock",
|
|
1116
|
-
ULTRALOQ_LOCK: "ultraloq_lock"
|
|
1124
|
+
ULTRALOQ_LOCK: "ultraloq_lock",
|
|
1125
|
+
KORELOCK_LOCK: "korelock_lock"
|
|
1117
1126
|
};
|
|
1118
1127
|
var lock_device_type = zod.z.enum(
|
|
1119
1128
|
Object.values(LOCK_DEVICE_TYPE)
|
|
@@ -1883,6 +1892,7 @@ var DEVICE_PROVIDERS = {
|
|
|
1883
1892
|
SENSI: "sensi",
|
|
1884
1893
|
KWIKSET2: "kwikset2",
|
|
1885
1894
|
KEYNEST: "keynest",
|
|
1895
|
+
KORELOCK: "korelock",
|
|
1886
1896
|
DORMAKABA_AMBIANCE: "dormakaba_ambiance",
|
|
1887
1897
|
ULTRALOQ: "ultraloq"
|
|
1888
1898
|
};
|
|
@@ -14660,7 +14670,8 @@ var openapi_default = {
|
|
|
14660
14670
|
"dormakaba_oracode_door",
|
|
14661
14671
|
"tedee_lock",
|
|
14662
14672
|
"akiles_lock",
|
|
14663
|
-
"ultraloq_lock"
|
|
14673
|
+
"ultraloq_lock",
|
|
14674
|
+
"korelock_lock"
|
|
14664
14675
|
],
|
|
14665
14676
|
type: "string"
|
|
14666
14677
|
},
|
|
@@ -15976,6 +15987,37 @@ var openapi_default = {
|
|
|
15976
15987
|
},
|
|
15977
15988
|
type: "object"
|
|
15978
15989
|
},
|
|
15990
|
+
korelock_metadata: {
|
|
15991
|
+
description: "Metadata for a Korelock device.",
|
|
15992
|
+
properties: {
|
|
15993
|
+
device_id: {
|
|
15994
|
+
description: "Device ID for a Korelock device.",
|
|
15995
|
+
type: "string"
|
|
15996
|
+
},
|
|
15997
|
+
device_name: {
|
|
15998
|
+
description: "Device name for a Korelock device.",
|
|
15999
|
+
type: "string"
|
|
16000
|
+
},
|
|
16001
|
+
firmware_version: {
|
|
16002
|
+
description: "Firmware version for a Korelock device.",
|
|
16003
|
+
type: "string"
|
|
16004
|
+
},
|
|
16005
|
+
model_code: {
|
|
16006
|
+
description: "Model code for a Korelock device.",
|
|
16007
|
+
type: "string"
|
|
16008
|
+
},
|
|
16009
|
+
serial_number: {
|
|
16010
|
+
description: "Serial number for a Korelock device.",
|
|
16011
|
+
type: "string"
|
|
16012
|
+
},
|
|
16013
|
+
wifi_signal_strength: {
|
|
16014
|
+
description: "WiFi signal strength (0-1) for a Korelock device.",
|
|
16015
|
+
format: "float",
|
|
16016
|
+
type: "number"
|
|
16017
|
+
}
|
|
16018
|
+
},
|
|
16019
|
+
type: "object"
|
|
16020
|
+
},
|
|
15979
16021
|
kwikset_metadata: {
|
|
15980
16022
|
description: "Metadata for a Kwikset device.",
|
|
15981
16023
|
properties: {
|
|
@@ -18083,6 +18125,7 @@ var openapi_default = {
|
|
|
18083
18125
|
"sensi",
|
|
18084
18126
|
"kwikset2",
|
|
18085
18127
|
"keynest",
|
|
18128
|
+
"korelock",
|
|
18086
18129
|
"dormakaba_ambiance",
|
|
18087
18130
|
"ultraloq"
|
|
18088
18131
|
],
|
|
@@ -28526,7 +28569,8 @@ var openapi_default = {
|
|
|
28526
28569
|
"dormakaba_oracode_door",
|
|
28527
28570
|
"tedee_lock",
|
|
28528
28571
|
"akiles_lock",
|
|
28529
|
-
"ultraloq_lock"
|
|
28572
|
+
"ultraloq_lock",
|
|
28573
|
+
"korelock_lock"
|
|
28530
28574
|
],
|
|
28531
28575
|
type: "string"
|
|
28532
28576
|
},
|
|
@@ -30207,20 +30251,6 @@ var openapi_default = {
|
|
|
30207
30251
|
description: "Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`.",
|
|
30208
30252
|
type: "boolean"
|
|
30209
30253
|
},
|
|
30210
|
-
is_offline_access_code: {
|
|
30211
|
-
description: "Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes).",
|
|
30212
|
-
type: "boolean"
|
|
30213
|
-
},
|
|
30214
|
-
is_one_time_use: {
|
|
30215
|
-
description: "Indicates whether the [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes) is a single-use access code.",
|
|
30216
|
-
type: "boolean"
|
|
30217
|
-
},
|
|
30218
|
-
max_time_rounding: {
|
|
30219
|
-
default: "1hour",
|
|
30220
|
-
description: "Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`.",
|
|
30221
|
-
enum: ["1hour", "1day", "1h", "1d"],
|
|
30222
|
-
type: "string"
|
|
30223
|
-
},
|
|
30224
30254
|
name: {
|
|
30225
30255
|
description: "Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.\n\n Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.\n\n To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.\n\n To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components).",
|
|
30226
30256
|
type: "string"
|
|
@@ -30230,22 +30260,13 @@ var openapi_default = {
|
|
|
30230
30260
|
type: "boolean"
|
|
30231
30261
|
},
|
|
30232
30262
|
preferred_code_length: {
|
|
30233
|
-
description: "Preferred code length.
|
|
30263
|
+
description: "Preferred code length. If the affected devices do not support the preferred code length, Seam reverts to using the shortest supported code length.",
|
|
30234
30264
|
format: "float",
|
|
30235
30265
|
type: "number"
|
|
30236
30266
|
},
|
|
30237
30267
|
starts_at: {
|
|
30238
30268
|
description: "Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
30239
30269
|
type: "string"
|
|
30240
|
-
},
|
|
30241
|
-
use_backup_access_code_pool: {
|
|
30242
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
|
|
30243
|
-
type: "boolean"
|
|
30244
|
-
},
|
|
30245
|
-
use_offline_access_code: {
|
|
30246
|
-
deprecated: true,
|
|
30247
|
-
type: "boolean",
|
|
30248
|
-
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
30249
30270
|
}
|
|
30250
30271
|
},
|
|
30251
30272
|
required: ["device_ids"],
|
|
@@ -30333,20 +30354,6 @@ var openapi_default = {
|
|
|
30333
30354
|
description: "Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`.",
|
|
30334
30355
|
type: "boolean"
|
|
30335
30356
|
},
|
|
30336
|
-
is_offline_access_code: {
|
|
30337
|
-
description: "Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes).",
|
|
30338
|
-
type: "boolean"
|
|
30339
|
-
},
|
|
30340
|
-
is_one_time_use: {
|
|
30341
|
-
description: "Indicates whether the [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes) is a single-use access code.",
|
|
30342
|
-
type: "boolean"
|
|
30343
|
-
},
|
|
30344
|
-
max_time_rounding: {
|
|
30345
|
-
default: "1hour",
|
|
30346
|
-
description: "Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`.",
|
|
30347
|
-
enum: ["1hour", "1day", "1h", "1d"],
|
|
30348
|
-
type: "string"
|
|
30349
|
-
},
|
|
30350
30357
|
name: {
|
|
30351
30358
|
description: "Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.\n\n Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as `first_name` and `last_name`.\n\n To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.\n\n To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called `appearance`. This is an object with a `name` property and, optionally, `first_name` and `last_name` properties (for providers that break down a name into components).",
|
|
30352
30359
|
type: "string"
|
|
@@ -30356,22 +30363,13 @@ var openapi_default = {
|
|
|
30356
30363
|
type: "boolean"
|
|
30357
30364
|
},
|
|
30358
30365
|
preferred_code_length: {
|
|
30359
|
-
description: "Preferred code length.
|
|
30366
|
+
description: "Preferred code length. If the affected devices do not support the preferred code length, Seam reverts to using the shortest supported code length.",
|
|
30360
30367
|
format: "float",
|
|
30361
30368
|
type: "number"
|
|
30362
30369
|
},
|
|
30363
30370
|
starts_at: {
|
|
30364
30371
|
description: "Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
30365
30372
|
type: "string"
|
|
30366
|
-
},
|
|
30367
|
-
use_backup_access_code_pool: {
|
|
30368
|
-
description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
|
|
30369
|
-
type: "boolean"
|
|
30370
|
-
},
|
|
30371
|
-
use_offline_access_code: {
|
|
30372
|
-
deprecated: true,
|
|
30373
|
-
type: "boolean",
|
|
30374
|
-
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
30375
30373
|
}
|
|
30376
30374
|
},
|
|
30377
30375
|
required: ["device_ids"],
|
|
@@ -43282,6 +43280,7 @@ var openapi_default = {
|
|
|
43282
43280
|
"sensi",
|
|
43283
43281
|
"kwikset2",
|
|
43284
43282
|
"keynest",
|
|
43283
|
+
"korelock",
|
|
43285
43284
|
"dormakaba_ambiance",
|
|
43286
43285
|
"ultraloq",
|
|
43287
43286
|
"yale_access",
|
|
@@ -46865,7 +46864,8 @@ var openapi_default = {
|
|
|
46865
46864
|
"dormakaba_oracode_door",
|
|
46866
46865
|
"tedee_lock",
|
|
46867
46866
|
"akiles_lock",
|
|
46868
|
-
"ultraloq_lock"
|
|
46867
|
+
"ultraloq_lock",
|
|
46868
|
+
"korelock_lock"
|
|
46869
46869
|
],
|
|
46870
46870
|
type: "string"
|
|
46871
46871
|
},
|
|
@@ -46936,7 +46936,8 @@ var openapi_default = {
|
|
|
46936
46936
|
"dormakaba_oracode_door",
|
|
46937
46937
|
"tedee_lock",
|
|
46938
46938
|
"akiles_lock",
|
|
46939
|
-
"ultraloq_lock"
|
|
46939
|
+
"ultraloq_lock",
|
|
46940
|
+
"korelock_lock"
|
|
46940
46941
|
],
|
|
46941
46942
|
type: "string"
|
|
46942
46943
|
},
|
|
@@ -47010,14 +47011,15 @@ var openapi_default = {
|
|
|
47010
47011
|
"akiles",
|
|
47011
47012
|
"ecobee",
|
|
47012
47013
|
"honeywell_resideo",
|
|
47014
|
+
"keynest",
|
|
47015
|
+
"korelock",
|
|
47013
47016
|
"kwikset2",
|
|
47014
47017
|
"minut",
|
|
47015
47018
|
"nest",
|
|
47016
47019
|
"noiseaware",
|
|
47017
|
-
"tado",
|
|
47018
47020
|
"sensi",
|
|
47019
47021
|
"smartthings",
|
|
47020
|
-
"
|
|
47022
|
+
"tado",
|
|
47021
47023
|
"ultraloq"
|
|
47022
47024
|
],
|
|
47023
47025
|
type: "string"
|
|
@@ -47288,7 +47290,8 @@ var openapi_default = {
|
|
|
47288
47290
|
"dormakaba_oracode_door",
|
|
47289
47291
|
"tedee_lock",
|
|
47290
47292
|
"akiles_lock",
|
|
47291
|
-
"ultraloq_lock"
|
|
47293
|
+
"ultraloq_lock",
|
|
47294
|
+
"korelock_lock"
|
|
47292
47295
|
],
|
|
47293
47296
|
type: "string"
|
|
47294
47297
|
},
|
|
@@ -47355,7 +47358,8 @@ var openapi_default = {
|
|
|
47355
47358
|
"dormakaba_oracode_door",
|
|
47356
47359
|
"tedee_lock",
|
|
47357
47360
|
"akiles_lock",
|
|
47358
|
-
"ultraloq_lock"
|
|
47361
|
+
"ultraloq_lock",
|
|
47362
|
+
"korelock_lock"
|
|
47359
47363
|
],
|
|
47360
47364
|
type: "string"
|
|
47361
47365
|
},
|
|
@@ -47487,14 +47491,15 @@ var openapi_default = {
|
|
|
47487
47491
|
"akiles",
|
|
47488
47492
|
"ecobee",
|
|
47489
47493
|
"honeywell_resideo",
|
|
47494
|
+
"keynest",
|
|
47495
|
+
"korelock",
|
|
47490
47496
|
"kwikset2",
|
|
47491
47497
|
"minut",
|
|
47492
47498
|
"nest",
|
|
47493
47499
|
"noiseaware",
|
|
47494
|
-
"tado",
|
|
47495
47500
|
"sensi",
|
|
47496
47501
|
"smartthings",
|
|
47497
|
-
"
|
|
47502
|
+
"tado",
|
|
47498
47503
|
"ultraloq"
|
|
47499
47504
|
],
|
|
47500
47505
|
type: "string"
|
|
@@ -48684,7 +48689,8 @@ var openapi_default = {
|
|
|
48684
48689
|
"dormakaba_oracode_door",
|
|
48685
48690
|
"tedee_lock",
|
|
48686
48691
|
"akiles_lock",
|
|
48687
|
-
"ultraloq_lock"
|
|
48692
|
+
"ultraloq_lock",
|
|
48693
|
+
"korelock_lock"
|
|
48688
48694
|
],
|
|
48689
48695
|
type: "string"
|
|
48690
48696
|
},
|
|
@@ -48755,7 +48761,8 @@ var openapi_default = {
|
|
|
48755
48761
|
"dormakaba_oracode_door",
|
|
48756
48762
|
"tedee_lock",
|
|
48757
48763
|
"akiles_lock",
|
|
48758
|
-
"ultraloq_lock"
|
|
48764
|
+
"ultraloq_lock",
|
|
48765
|
+
"korelock_lock"
|
|
48759
48766
|
],
|
|
48760
48767
|
type: "string"
|
|
48761
48768
|
},
|
|
@@ -48829,14 +48836,15 @@ var openapi_default = {
|
|
|
48829
48836
|
"akiles",
|
|
48830
48837
|
"ecobee",
|
|
48831
48838
|
"honeywell_resideo",
|
|
48839
|
+
"keynest",
|
|
48840
|
+
"korelock",
|
|
48832
48841
|
"kwikset2",
|
|
48833
48842
|
"minut",
|
|
48834
48843
|
"nest",
|
|
48835
48844
|
"noiseaware",
|
|
48836
|
-
"tado",
|
|
48837
48845
|
"sensi",
|
|
48838
48846
|
"smartthings",
|
|
48839
|
-
"
|
|
48847
|
+
"tado",
|
|
48840
48848
|
"ultraloq"
|
|
48841
48849
|
],
|
|
48842
48850
|
type: "string"
|
|
@@ -49106,7 +49114,8 @@ var openapi_default = {
|
|
|
49106
49114
|
"dormakaba_oracode_door",
|
|
49107
49115
|
"tedee_lock",
|
|
49108
49116
|
"akiles_lock",
|
|
49109
|
-
"ultraloq_lock"
|
|
49117
|
+
"ultraloq_lock",
|
|
49118
|
+
"korelock_lock"
|
|
49110
49119
|
],
|
|
49111
49120
|
type: "string"
|
|
49112
49121
|
},
|
|
@@ -49173,7 +49182,8 @@ var openapi_default = {
|
|
|
49173
49182
|
"dormakaba_oracode_door",
|
|
49174
49183
|
"tedee_lock",
|
|
49175
49184
|
"akiles_lock",
|
|
49176
|
-
"ultraloq_lock"
|
|
49185
|
+
"ultraloq_lock",
|
|
49186
|
+
"korelock_lock"
|
|
49177
49187
|
],
|
|
49178
49188
|
type: "string"
|
|
49179
49189
|
},
|
|
@@ -49305,14 +49315,15 @@ var openapi_default = {
|
|
|
49305
49315
|
"akiles",
|
|
49306
49316
|
"ecobee",
|
|
49307
49317
|
"honeywell_resideo",
|
|
49318
|
+
"keynest",
|
|
49319
|
+
"korelock",
|
|
49308
49320
|
"kwikset2",
|
|
49309
49321
|
"minut",
|
|
49310
49322
|
"nest",
|
|
49311
49323
|
"noiseaware",
|
|
49312
|
-
"tado",
|
|
49313
49324
|
"sensi",
|
|
49314
49325
|
"smartthings",
|
|
49315
|
-
"
|
|
49326
|
+
"tado",
|
|
49316
49327
|
"ultraloq"
|
|
49317
49328
|
],
|
|
49318
49329
|
type: "string"
|
|
@@ -51212,7 +51223,8 @@ var openapi_default = {
|
|
|
51212
51223
|
"dormakaba_oracode_door",
|
|
51213
51224
|
"tedee_lock",
|
|
51214
51225
|
"akiles_lock",
|
|
51215
|
-
"ultraloq_lock"
|
|
51226
|
+
"ultraloq_lock",
|
|
51227
|
+
"korelock_lock"
|
|
51216
51228
|
],
|
|
51217
51229
|
type: "string"
|
|
51218
51230
|
}
|
|
@@ -51252,7 +51264,8 @@ var openapi_default = {
|
|
|
51252
51264
|
"dormakaba_oracode_door",
|
|
51253
51265
|
"tedee_lock",
|
|
51254
51266
|
"akiles_lock",
|
|
51255
|
-
"ultraloq_lock"
|
|
51267
|
+
"ultraloq_lock",
|
|
51268
|
+
"korelock_lock"
|
|
51256
51269
|
],
|
|
51257
51270
|
type: "string"
|
|
51258
51271
|
},
|
|
@@ -51291,6 +51304,7 @@ var openapi_default = {
|
|
|
51291
51304
|
"dormakaba_oracode",
|
|
51292
51305
|
"tedee",
|
|
51293
51306
|
"akiles",
|
|
51307
|
+
"korelock",
|
|
51294
51308
|
"kwikset2",
|
|
51295
51309
|
"smartthings",
|
|
51296
51310
|
"ultraloq"
|
|
@@ -51562,7 +51576,8 @@ var openapi_default = {
|
|
|
51562
51576
|
"dormakaba_oracode_door",
|
|
51563
51577
|
"tedee_lock",
|
|
51564
51578
|
"akiles_lock",
|
|
51565
|
-
"ultraloq_lock"
|
|
51579
|
+
"ultraloq_lock",
|
|
51580
|
+
"korelock_lock"
|
|
51566
51581
|
],
|
|
51567
51582
|
type: "string"
|
|
51568
51583
|
},
|
|
@@ -51598,7 +51613,8 @@ var openapi_default = {
|
|
|
51598
51613
|
"dormakaba_oracode_door",
|
|
51599
51614
|
"tedee_lock",
|
|
51600
51615
|
"akiles_lock",
|
|
51601
|
-
"ultraloq_lock"
|
|
51616
|
+
"ultraloq_lock",
|
|
51617
|
+
"korelock_lock"
|
|
51602
51618
|
],
|
|
51603
51619
|
type: "string"
|
|
51604
51620
|
},
|
|
@@ -51695,6 +51711,7 @@ var openapi_default = {
|
|
|
51695
51711
|
"dormakaba_oracode",
|
|
51696
51712
|
"tedee",
|
|
51697
51713
|
"akiles",
|
|
51714
|
+
"korelock",
|
|
51698
51715
|
"kwikset2",
|
|
51699
51716
|
"smartthings",
|
|
51700
51717
|
"ultraloq"
|
|
@@ -64017,9 +64034,9 @@ var openapi_default = {
|
|
|
64017
64034
|
"ecobee",
|
|
64018
64035
|
"honeywell_resideo",
|
|
64019
64036
|
"nest",
|
|
64020
|
-
"tado",
|
|
64021
64037
|
"sensi",
|
|
64022
|
-
"smartthings"
|
|
64038
|
+
"smartthings",
|
|
64039
|
+
"tado"
|
|
64023
64040
|
],
|
|
64024
64041
|
type: "string"
|
|
64025
64042
|
}
|
|
@@ -64354,9 +64371,9 @@ var openapi_default = {
|
|
|
64354
64371
|
"ecobee",
|
|
64355
64372
|
"honeywell_resideo",
|
|
64356
64373
|
"nest",
|
|
64357
|
-
"tado",
|
|
64358
64374
|
"sensi",
|
|
64359
|
-
"smartthings"
|
|
64375
|
+
"smartthings",
|
|
64376
|
+
"tado"
|
|
64360
64377
|
],
|
|
64361
64378
|
type: "string"
|
|
64362
64379
|
},
|