@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
|
@@ -2051,7 +2051,7 @@ export type Routes = {
|
|
|
2051
2051
|
device_ids: string[]
|
|
2052
2052
|
/** Desired behavior if any device cannot share a code. If `throw` (default), no access codes will be created if any device cannot share a code. If `create_random_code`, a random code will be created on devices that cannot share a code. */
|
|
2053
2053
|
behavior_when_code_cannot_be_shared?: 'throw' | 'create_random_code'
|
|
2054
|
-
/** Preferred code length.
|
|
2054
|
+
/** Preferred code length. If the affected devices do not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
2055
2055
|
preferred_code_length?: number | undefined
|
|
2056
2056
|
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
2057
2057
|
|
|
@@ -2070,21 +2070,10 @@ export type Routes = {
|
|
|
2070
2070
|
attempt_for_offline_device?: boolean
|
|
2071
2071
|
/** Indicates whether [native scheduling](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
|
|
2072
2072
|
prefer_native_scheduling?: boolean | undefined
|
|
2073
|
-
/** 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). */
|
|
2074
|
-
use_backup_access_code_pool?: boolean | undefined
|
|
2075
2073
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
2076
2074
|
allow_external_modification?: boolean | undefined
|
|
2077
2075
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
2078
2076
|
is_external_modification_allowed?: boolean | undefined
|
|
2079
|
-
/**
|
|
2080
|
-
* @deprecated Use `is_offline_access_code` instead.*/
|
|
2081
|
-
use_offline_access_code?: boolean | undefined
|
|
2082
|
-
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
2083
|
-
is_offline_access_code?: boolean | undefined
|
|
2084
|
-
/** 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. */
|
|
2085
|
-
is_one_time_use?: boolean | undefined
|
|
2086
|
-
/** 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`. */
|
|
2087
|
-
max_time_rounding?: '1hour' | '1day' | '1h' | '1d'
|
|
2088
2077
|
}
|
|
2089
2078
|
commonParams: {}
|
|
2090
2079
|
formData: {}
|
|
@@ -11377,6 +11366,7 @@ export type Routes = {
|
|
|
11377
11366
|
| 'tedee_lock'
|
|
11378
11367
|
| 'akiles_lock'
|
|
11379
11368
|
| 'ultraloq_lock'
|
|
11369
|
+
| 'korelock_lock'
|
|
11380
11370
|
)
|
|
11381
11371
|
| 'keynest_key'
|
|
11382
11372
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -12086,6 +12076,23 @@ export type Routes = {
|
|
|
12086
12076
|
time_zone: string | null
|
|
12087
12077
|
}
|
|
12088
12078
|
| undefined
|
|
12079
|
+
/** Metadata for a Korelock device. */
|
|
12080
|
+
korelock_metadata?:
|
|
12081
|
+
| {
|
|
12082
|
+
/** Device ID for a Korelock device. */
|
|
12083
|
+
device_id?: string | undefined
|
|
12084
|
+
/** Device name for a Korelock device. */
|
|
12085
|
+
device_name?: string | undefined
|
|
12086
|
+
/** Model code for a Korelock device. */
|
|
12087
|
+
model_code?: string | undefined
|
|
12088
|
+
/** Serial number for a Korelock device. */
|
|
12089
|
+
serial_number?: string | undefined
|
|
12090
|
+
/** Firmware version for a Korelock device. */
|
|
12091
|
+
firmware_version?: string | undefined
|
|
12092
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
12093
|
+
wifi_signal_strength?: number | undefined
|
|
12094
|
+
}
|
|
12095
|
+
| undefined
|
|
12089
12096
|
}) &
|
|
12090
12097
|
({
|
|
12091
12098
|
/** */
|
|
@@ -15545,6 +15552,7 @@ export type Routes = {
|
|
|
15545
15552
|
| 'tedee_lock'
|
|
15546
15553
|
| 'akiles_lock'
|
|
15547
15554
|
| 'ultraloq_lock'
|
|
15555
|
+
| 'korelock_lock'
|
|
15548
15556
|
)
|
|
15549
15557
|
| 'keynest_key'
|
|
15550
15558
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -16254,6 +16262,23 @@ export type Routes = {
|
|
|
16254
16262
|
time_zone: string | null
|
|
16255
16263
|
}
|
|
16256
16264
|
| undefined
|
|
16265
|
+
/** Metadata for a Korelock device. */
|
|
16266
|
+
korelock_metadata?:
|
|
16267
|
+
| {
|
|
16268
|
+
/** Device ID for a Korelock device. */
|
|
16269
|
+
device_id?: string | undefined
|
|
16270
|
+
/** Device name for a Korelock device. */
|
|
16271
|
+
device_name?: string | undefined
|
|
16272
|
+
/** Model code for a Korelock device. */
|
|
16273
|
+
model_code?: string | undefined
|
|
16274
|
+
/** Serial number for a Korelock device. */
|
|
16275
|
+
serial_number?: string | undefined
|
|
16276
|
+
/** Firmware version for a Korelock device. */
|
|
16277
|
+
firmware_version?: string | undefined
|
|
16278
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
16279
|
+
wifi_signal_strength?: number | undefined
|
|
16280
|
+
}
|
|
16281
|
+
| undefined
|
|
16257
16282
|
}) &
|
|
16258
16283
|
({
|
|
16259
16284
|
/** */
|
|
@@ -29851,6 +29876,7 @@ export type Routes = {
|
|
|
29851
29876
|
| 'sensi'
|
|
29852
29877
|
| 'kwikset2'
|
|
29853
29878
|
| 'keynest'
|
|
29879
|
+
| 'korelock'
|
|
29854
29880
|
| 'dormakaba_ambiance'
|
|
29855
29881
|
| 'ultraloq'
|
|
29856
29882
|
| 'yale_access'
|
|
@@ -31613,6 +31639,7 @@ export type Routes = {
|
|
|
31613
31639
|
| 'tedee_lock'
|
|
31614
31640
|
| 'akiles_lock'
|
|
31615
31641
|
| 'ultraloq_lock'
|
|
31642
|
+
| 'korelock_lock'
|
|
31616
31643
|
)
|
|
31617
31644
|
| 'keynest_key'
|
|
31618
31645
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -32322,6 +32349,23 @@ export type Routes = {
|
|
|
32322
32349
|
time_zone: string | null
|
|
32323
32350
|
}
|
|
32324
32351
|
| undefined
|
|
32352
|
+
/** Metadata for a Korelock device. */
|
|
32353
|
+
korelock_metadata?:
|
|
32354
|
+
| {
|
|
32355
|
+
/** Device ID for a Korelock device. */
|
|
32356
|
+
device_id?: string | undefined
|
|
32357
|
+
/** Device name for a Korelock device. */
|
|
32358
|
+
device_name?: string | undefined
|
|
32359
|
+
/** Model code for a Korelock device. */
|
|
32360
|
+
model_code?: string | undefined
|
|
32361
|
+
/** Serial number for a Korelock device. */
|
|
32362
|
+
serial_number?: string | undefined
|
|
32363
|
+
/** Firmware version for a Korelock device. */
|
|
32364
|
+
firmware_version?: string | undefined
|
|
32365
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
32366
|
+
wifi_signal_strength?: number | undefined
|
|
32367
|
+
}
|
|
32368
|
+
| undefined
|
|
32325
32369
|
}) &
|
|
32326
32370
|
({
|
|
32327
32371
|
/** */
|
|
@@ -33207,6 +33251,7 @@ export type Routes = {
|
|
|
33207
33251
|
| 'tedee_lock'
|
|
33208
33252
|
| 'akiles_lock'
|
|
33209
33253
|
| 'ultraloq_lock'
|
|
33254
|
+
| 'korelock_lock'
|
|
33210
33255
|
)
|
|
33211
33256
|
| 'keynest_key'
|
|
33212
33257
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -33253,6 +33298,7 @@ export type Routes = {
|
|
|
33253
33298
|
| 'tedee_lock'
|
|
33254
33299
|
| 'akiles_lock'
|
|
33255
33300
|
| 'ultraloq_lock'
|
|
33301
|
+
| 'korelock_lock'
|
|
33256
33302
|
)
|
|
33257
33303
|
| 'keynest_key'
|
|
33258
33304
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -33302,14 +33348,15 @@ export type Routes = {
|
|
|
33302
33348
|
| 'akiles'
|
|
33303
33349
|
| 'ecobee'
|
|
33304
33350
|
| 'honeywell_resideo'
|
|
33351
|
+
| 'keynest'
|
|
33352
|
+
| 'korelock'
|
|
33305
33353
|
| 'kwikset2'
|
|
33306
33354
|
| 'minut'
|
|
33307
33355
|
| 'nest'
|
|
33308
33356
|
| 'noiseaware'
|
|
33309
|
-
| 'tado'
|
|
33310
33357
|
| 'sensi'
|
|
33311
33358
|
| 'smartthings'
|
|
33312
|
-
| '
|
|
33359
|
+
| 'tado'
|
|
33313
33360
|
| 'ultraloq'
|
|
33314
33361
|
)
|
|
33315
33362
|
| undefined
|
|
@@ -33421,6 +33468,7 @@ export type Routes = {
|
|
|
33421
33468
|
| 'tedee_lock'
|
|
33422
33469
|
| 'akiles_lock'
|
|
33423
33470
|
| 'ultraloq_lock'
|
|
33471
|
+
| 'korelock_lock'
|
|
33424
33472
|
)
|
|
33425
33473
|
| 'keynest_key'
|
|
33426
33474
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -34130,6 +34178,23 @@ export type Routes = {
|
|
|
34130
34178
|
time_zone: string | null
|
|
34131
34179
|
}
|
|
34132
34180
|
| undefined
|
|
34181
|
+
/** Metadata for a Korelock device. */
|
|
34182
|
+
korelock_metadata?:
|
|
34183
|
+
| {
|
|
34184
|
+
/** Device ID for a Korelock device. */
|
|
34185
|
+
device_id?: string | undefined
|
|
34186
|
+
/** Device name for a Korelock device. */
|
|
34187
|
+
device_name?: string | undefined
|
|
34188
|
+
/** Model code for a Korelock device. */
|
|
34189
|
+
model_code?: string | undefined
|
|
34190
|
+
/** Serial number for a Korelock device. */
|
|
34191
|
+
serial_number?: string | undefined
|
|
34192
|
+
/** Firmware version for a Korelock device. */
|
|
34193
|
+
firmware_version?: string | undefined
|
|
34194
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
34195
|
+
wifi_signal_strength?: number | undefined
|
|
34196
|
+
}
|
|
34197
|
+
| undefined
|
|
34133
34198
|
}) &
|
|
34134
34199
|
({
|
|
34135
34200
|
/** */
|
|
@@ -35047,6 +35112,7 @@ export type Routes = {
|
|
|
35047
35112
|
| 'sensi'
|
|
35048
35113
|
| 'kwikset2'
|
|
35049
35114
|
| 'keynest'
|
|
35115
|
+
| 'korelock'
|
|
35050
35116
|
| 'dormakaba_ambiance'
|
|
35051
35117
|
| 'ultraloq'
|
|
35052
35118
|
display_name: string
|
|
@@ -35661,6 +35727,7 @@ export type Routes = {
|
|
|
35661
35727
|
| 'tedee_lock'
|
|
35662
35728
|
| 'akiles_lock'
|
|
35663
35729
|
| 'ultraloq_lock'
|
|
35730
|
+
| 'korelock_lock'
|
|
35664
35731
|
)
|
|
35665
35732
|
| 'keynest_key'
|
|
35666
35733
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -36173,6 +36240,7 @@ export type Routes = {
|
|
|
36173
36240
|
| 'tedee_lock'
|
|
36174
36241
|
| 'akiles_lock'
|
|
36175
36242
|
| 'ultraloq_lock'
|
|
36243
|
+
| 'korelock_lock'
|
|
36176
36244
|
)
|
|
36177
36245
|
| 'keynest_key'
|
|
36178
36246
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -36219,6 +36287,7 @@ export type Routes = {
|
|
|
36219
36287
|
| 'tedee_lock'
|
|
36220
36288
|
| 'akiles_lock'
|
|
36221
36289
|
| 'ultraloq_lock'
|
|
36290
|
+
| 'korelock_lock'
|
|
36222
36291
|
)
|
|
36223
36292
|
| 'keynest_key'
|
|
36224
36293
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -36268,14 +36337,15 @@ export type Routes = {
|
|
|
36268
36337
|
| 'akiles'
|
|
36269
36338
|
| 'ecobee'
|
|
36270
36339
|
| 'honeywell_resideo'
|
|
36340
|
+
| 'keynest'
|
|
36341
|
+
| 'korelock'
|
|
36271
36342
|
| 'kwikset2'
|
|
36272
36343
|
| 'minut'
|
|
36273
36344
|
| 'nest'
|
|
36274
36345
|
| 'noiseaware'
|
|
36275
|
-
| 'tado'
|
|
36276
36346
|
| 'sensi'
|
|
36277
36347
|
| 'smartthings'
|
|
36278
|
-
| '
|
|
36348
|
+
| 'tado'
|
|
36279
36349
|
| 'ultraloq'
|
|
36280
36350
|
)
|
|
36281
36351
|
| undefined
|
|
@@ -36387,6 +36457,7 @@ export type Routes = {
|
|
|
36387
36457
|
| 'tedee_lock'
|
|
36388
36458
|
| 'akiles_lock'
|
|
36389
36459
|
| 'ultraloq_lock'
|
|
36460
|
+
| 'korelock_lock'
|
|
36390
36461
|
)
|
|
36391
36462
|
| 'keynest_key'
|
|
36392
36463
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -42133,6 +42204,7 @@ export type Routes = {
|
|
|
42133
42204
|
| 'tedee_lock'
|
|
42134
42205
|
| 'akiles_lock'
|
|
42135
42206
|
| 'ultraloq_lock'
|
|
42207
|
+
| 'korelock_lock'
|
|
42136
42208
|
)
|
|
42137
42209
|
| 'keynest_key'
|
|
42138
42210
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -42842,6 +42914,23 @@ export type Routes = {
|
|
|
42842
42914
|
time_zone: string | null
|
|
42843
42915
|
}
|
|
42844
42916
|
| undefined
|
|
42917
|
+
/** Metadata for a Korelock device. */
|
|
42918
|
+
korelock_metadata?:
|
|
42919
|
+
| {
|
|
42920
|
+
/** Device ID for a Korelock device. */
|
|
42921
|
+
device_id?: string | undefined
|
|
42922
|
+
/** Device name for a Korelock device. */
|
|
42923
|
+
device_name?: string | undefined
|
|
42924
|
+
/** Model code for a Korelock device. */
|
|
42925
|
+
model_code?: string | undefined
|
|
42926
|
+
/** Serial number for a Korelock device. */
|
|
42927
|
+
serial_number?: string | undefined
|
|
42928
|
+
/** Firmware version for a Korelock device. */
|
|
42929
|
+
firmware_version?: string | undefined
|
|
42930
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
42931
|
+
wifi_signal_strength?: number | undefined
|
|
42932
|
+
}
|
|
42933
|
+
| undefined
|
|
42845
42934
|
}) &
|
|
42846
42935
|
({
|
|
42847
42936
|
/** */
|
|
@@ -43713,6 +43802,7 @@ export type Routes = {
|
|
|
43713
43802
|
| 'tedee_lock'
|
|
43714
43803
|
| 'akiles_lock'
|
|
43715
43804
|
| 'ultraloq_lock'
|
|
43805
|
+
| 'korelock_lock'
|
|
43716
43806
|
)
|
|
43717
43807
|
| 'keynest_key'
|
|
43718
43808
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -44422,6 +44512,23 @@ export type Routes = {
|
|
|
44422
44512
|
time_zone: string | null
|
|
44423
44513
|
}
|
|
44424
44514
|
| undefined
|
|
44515
|
+
/** Metadata for a Korelock device. */
|
|
44516
|
+
korelock_metadata?:
|
|
44517
|
+
| {
|
|
44518
|
+
/** Device ID for a Korelock device. */
|
|
44519
|
+
device_id?: string | undefined
|
|
44520
|
+
/** Device name for a Korelock device. */
|
|
44521
|
+
device_name?: string | undefined
|
|
44522
|
+
/** Model code for a Korelock device. */
|
|
44523
|
+
model_code?: string | undefined
|
|
44524
|
+
/** Serial number for a Korelock device. */
|
|
44525
|
+
serial_number?: string | undefined
|
|
44526
|
+
/** Firmware version for a Korelock device. */
|
|
44527
|
+
firmware_version?: string | undefined
|
|
44528
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
44529
|
+
wifi_signal_strength?: number | undefined
|
|
44530
|
+
}
|
|
44531
|
+
| undefined
|
|
44425
44532
|
}) &
|
|
44426
44533
|
({
|
|
44427
44534
|
/** */
|
|
@@ -45306,6 +45413,7 @@ export type Routes = {
|
|
|
45306
45413
|
| 'tedee_lock'
|
|
45307
45414
|
| 'akiles_lock'
|
|
45308
45415
|
| 'ultraloq_lock'
|
|
45416
|
+
| 'korelock_lock'
|
|
45309
45417
|
)
|
|
45310
45418
|
| undefined
|
|
45311
45419
|
/** Device types of the locks that you want to list. */
|
|
@@ -45339,6 +45447,7 @@ export type Routes = {
|
|
|
45339
45447
|
| 'tedee_lock'
|
|
45340
45448
|
| 'akiles_lock'
|
|
45341
45449
|
| 'ultraloq_lock'
|
|
45450
|
+
| 'korelock_lock'
|
|
45342
45451
|
)[]
|
|
45343
45452
|
| undefined
|
|
45344
45453
|
/** Manufacturer of the locks that you want to list. */
|
|
@@ -45370,6 +45479,7 @@ export type Routes = {
|
|
|
45370
45479
|
| 'dormakaba_oracode'
|
|
45371
45480
|
| 'tedee'
|
|
45372
45481
|
| 'akiles'
|
|
45482
|
+
| 'korelock'
|
|
45373
45483
|
| 'kwikset2'
|
|
45374
45484
|
| 'smartthings'
|
|
45375
45485
|
| 'ultraloq'
|
|
@@ -45483,6 +45593,7 @@ export type Routes = {
|
|
|
45483
45593
|
| 'tedee_lock'
|
|
45484
45594
|
| 'akiles_lock'
|
|
45485
45595
|
| 'ultraloq_lock'
|
|
45596
|
+
| 'korelock_lock'
|
|
45486
45597
|
)
|
|
45487
45598
|
| 'keynest_key'
|
|
45488
45599
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -46192,6 +46303,23 @@ export type Routes = {
|
|
|
46192
46303
|
time_zone: string | null
|
|
46193
46304
|
}
|
|
46194
46305
|
| undefined
|
|
46306
|
+
/** Metadata for a Korelock device. */
|
|
46307
|
+
korelock_metadata?:
|
|
46308
|
+
| {
|
|
46309
|
+
/** Device ID for a Korelock device. */
|
|
46310
|
+
device_id?: string | undefined
|
|
46311
|
+
/** Device name for a Korelock device. */
|
|
46312
|
+
device_name?: string | undefined
|
|
46313
|
+
/** Model code for a Korelock device. */
|
|
46314
|
+
model_code?: string | undefined
|
|
46315
|
+
/** Serial number for a Korelock device. */
|
|
46316
|
+
serial_number?: string | undefined
|
|
46317
|
+
/** Firmware version for a Korelock device. */
|
|
46318
|
+
firmware_version?: string | undefined
|
|
46319
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
46320
|
+
wifi_signal_strength?: number | undefined
|
|
46321
|
+
}
|
|
46322
|
+
| undefined
|
|
46195
46323
|
}) &
|
|
46196
46324
|
({
|
|
46197
46325
|
/** */
|
|
@@ -47062,6 +47190,7 @@ export type Routes = {
|
|
|
47062
47190
|
| 'tedee_lock'
|
|
47063
47191
|
| 'akiles_lock'
|
|
47064
47192
|
| 'ultraloq_lock'
|
|
47193
|
+
| 'korelock_lock'
|
|
47065
47194
|
)
|
|
47066
47195
|
| 'keynest_key'
|
|
47067
47196
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -47771,6 +47900,23 @@ export type Routes = {
|
|
|
47771
47900
|
time_zone: string | null
|
|
47772
47901
|
}
|
|
47773
47902
|
| undefined
|
|
47903
|
+
/** Metadata for a Korelock device. */
|
|
47904
|
+
korelock_metadata?:
|
|
47905
|
+
| {
|
|
47906
|
+
/** Device ID for a Korelock device. */
|
|
47907
|
+
device_id?: string | undefined
|
|
47908
|
+
/** Device name for a Korelock device. */
|
|
47909
|
+
device_name?: string | undefined
|
|
47910
|
+
/** Model code for a Korelock device. */
|
|
47911
|
+
model_code?: string | undefined
|
|
47912
|
+
/** Serial number for a Korelock device. */
|
|
47913
|
+
serial_number?: string | undefined
|
|
47914
|
+
/** Firmware version for a Korelock device. */
|
|
47915
|
+
firmware_version?: string | undefined
|
|
47916
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
47917
|
+
wifi_signal_strength?: number | undefined
|
|
47918
|
+
}
|
|
47919
|
+
| undefined
|
|
47774
47920
|
}) &
|
|
47775
47921
|
({
|
|
47776
47922
|
/** */
|
|
@@ -54584,6 +54730,7 @@ export type Routes = {
|
|
|
54584
54730
|
| 'tedee_lock'
|
|
54585
54731
|
| 'akiles_lock'
|
|
54586
54732
|
| 'ultraloq_lock'
|
|
54733
|
+
| 'korelock_lock'
|
|
54587
54734
|
)
|
|
54588
54735
|
| 'keynest_key'
|
|
54589
54736
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -55293,6 +55440,23 @@ export type Routes = {
|
|
|
55293
55440
|
time_zone: string | null
|
|
55294
55441
|
}
|
|
55295
55442
|
| undefined
|
|
55443
|
+
/** Metadata for a Korelock device. */
|
|
55444
|
+
korelock_metadata?:
|
|
55445
|
+
| {
|
|
55446
|
+
/** Device ID for a Korelock device. */
|
|
55447
|
+
device_id?: string | undefined
|
|
55448
|
+
/** Device name for a Korelock device. */
|
|
55449
|
+
device_name?: string | undefined
|
|
55450
|
+
/** Model code for a Korelock device. */
|
|
55451
|
+
model_code?: string | undefined
|
|
55452
|
+
/** Serial number for a Korelock device. */
|
|
55453
|
+
serial_number?: string | undefined
|
|
55454
|
+
/** Firmware version for a Korelock device. */
|
|
55455
|
+
firmware_version?: string | undefined
|
|
55456
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
55457
|
+
wifi_signal_strength?: number | undefined
|
|
55458
|
+
}
|
|
55459
|
+
| undefined
|
|
55296
55460
|
}) &
|
|
55297
55461
|
({
|
|
55298
55462
|
/** */
|
|
@@ -56163,6 +56327,7 @@ export type Routes = {
|
|
|
56163
56327
|
| 'tedee_lock'
|
|
56164
56328
|
| 'akiles_lock'
|
|
56165
56329
|
| 'ultraloq_lock'
|
|
56330
|
+
| 'korelock_lock'
|
|
56166
56331
|
)
|
|
56167
56332
|
| 'keynest_key'
|
|
56168
56333
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -56872,6 +57037,23 @@ export type Routes = {
|
|
|
56872
57037
|
time_zone: string | null
|
|
56873
57038
|
}
|
|
56874
57039
|
| undefined
|
|
57040
|
+
/** Metadata for a Korelock device. */
|
|
57041
|
+
korelock_metadata?:
|
|
57042
|
+
| {
|
|
57043
|
+
/** Device ID for a Korelock device. */
|
|
57044
|
+
device_id?: string | undefined
|
|
57045
|
+
/** Device name for a Korelock device. */
|
|
57046
|
+
device_name?: string | undefined
|
|
57047
|
+
/** Model code for a Korelock device. */
|
|
57048
|
+
model_code?: string | undefined
|
|
57049
|
+
/** Serial number for a Korelock device. */
|
|
57050
|
+
serial_number?: string | undefined
|
|
57051
|
+
/** Firmware version for a Korelock device. */
|
|
57052
|
+
firmware_version?: string | undefined
|
|
57053
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
57054
|
+
wifi_signal_strength?: number | undefined
|
|
57055
|
+
}
|
|
57056
|
+
| undefined
|
|
56875
57057
|
}) &
|
|
56876
57058
|
({
|
|
56877
57059
|
/** */
|
|
@@ -68029,6 +68211,7 @@ export type Routes = {
|
|
|
68029
68211
|
| 'tedee_lock'
|
|
68030
68212
|
| 'akiles_lock'
|
|
68031
68213
|
| 'ultraloq_lock'
|
|
68214
|
+
| 'korelock_lock'
|
|
68032
68215
|
)
|
|
68033
68216
|
| 'keynest_key'
|
|
68034
68217
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -68738,6 +68921,23 @@ export type Routes = {
|
|
|
68738
68921
|
time_zone: string | null
|
|
68739
68922
|
}
|
|
68740
68923
|
| undefined
|
|
68924
|
+
/** Metadata for a Korelock device. */
|
|
68925
|
+
korelock_metadata?:
|
|
68926
|
+
| {
|
|
68927
|
+
/** Device ID for a Korelock device. */
|
|
68928
|
+
device_id?: string | undefined
|
|
68929
|
+
/** Device name for a Korelock device. */
|
|
68930
|
+
device_name?: string | undefined
|
|
68931
|
+
/** Model code for a Korelock device. */
|
|
68932
|
+
model_code?: string | undefined
|
|
68933
|
+
/** Serial number for a Korelock device. */
|
|
68934
|
+
serial_number?: string | undefined
|
|
68935
|
+
/** Firmware version for a Korelock device. */
|
|
68936
|
+
firmware_version?: string | undefined
|
|
68937
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
68938
|
+
wifi_signal_strength?: number | undefined
|
|
68939
|
+
}
|
|
68940
|
+
| undefined
|
|
68741
68941
|
}) &
|
|
68742
68942
|
({
|
|
68743
68943
|
/** */
|
|
@@ -74766,6 +74966,7 @@ export type Routes = {
|
|
|
74766
74966
|
| 'tedee_lock'
|
|
74767
74967
|
| 'akiles_lock'
|
|
74768
74968
|
| 'ultraloq_lock'
|
|
74969
|
+
| 'korelock_lock'
|
|
74769
74970
|
)
|
|
74770
74971
|
| 'keynest_key'
|
|
74771
74972
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -75475,6 +75676,23 @@ export type Routes = {
|
|
|
75475
75676
|
time_zone: string | null
|
|
75476
75677
|
}
|
|
75477
75678
|
| undefined
|
|
75679
|
+
/** Metadata for a Korelock device. */
|
|
75680
|
+
korelock_metadata?:
|
|
75681
|
+
| {
|
|
75682
|
+
/** Device ID for a Korelock device. */
|
|
75683
|
+
device_id?: string | undefined
|
|
75684
|
+
/** Device name for a Korelock device. */
|
|
75685
|
+
device_name?: string | undefined
|
|
75686
|
+
/** Model code for a Korelock device. */
|
|
75687
|
+
model_code?: string | undefined
|
|
75688
|
+
/** Serial number for a Korelock device. */
|
|
75689
|
+
serial_number?: string | undefined
|
|
75690
|
+
/** Firmware version for a Korelock device. */
|
|
75691
|
+
firmware_version?: string | undefined
|
|
75692
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
75693
|
+
wifi_signal_strength?: number | undefined
|
|
75694
|
+
}
|
|
75695
|
+
| undefined
|
|
75478
75696
|
}) &
|
|
75479
75697
|
({
|
|
75480
75698
|
/** */
|
|
@@ -79292,9 +79510,9 @@ export type Routes = {
|
|
|
79292
79510
|
| 'ecobee'
|
|
79293
79511
|
| 'honeywell_resideo'
|
|
79294
79512
|
| 'nest'
|
|
79295
|
-
| 'tado'
|
|
79296
79513
|
| 'sensi'
|
|
79297
79514
|
| 'smartthings'
|
|
79515
|
+
| 'tado'
|
|
79298
79516
|
)
|
|
79299
79517
|
| undefined
|
|
79300
79518
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -79405,6 +79623,7 @@ export type Routes = {
|
|
|
79405
79623
|
| 'tedee_lock'
|
|
79406
79624
|
| 'akiles_lock'
|
|
79407
79625
|
| 'ultraloq_lock'
|
|
79626
|
+
| 'korelock_lock'
|
|
79408
79627
|
)
|
|
79409
79628
|
| 'keynest_key'
|
|
79410
79629
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -80114,6 +80333,23 @@ export type Routes = {
|
|
|
80114
80333
|
time_zone: string | null
|
|
80115
80334
|
}
|
|
80116
80335
|
| undefined
|
|
80336
|
+
/** Metadata for a Korelock device. */
|
|
80337
|
+
korelock_metadata?:
|
|
80338
|
+
| {
|
|
80339
|
+
/** Device ID for a Korelock device. */
|
|
80340
|
+
device_id?: string | undefined
|
|
80341
|
+
/** Device name for a Korelock device. */
|
|
80342
|
+
device_name?: string | undefined
|
|
80343
|
+
/** Model code for a Korelock device. */
|
|
80344
|
+
model_code?: string | undefined
|
|
80345
|
+
/** Serial number for a Korelock device. */
|
|
80346
|
+
serial_number?: string | undefined
|
|
80347
|
+
/** Firmware version for a Korelock device. */
|
|
80348
|
+
firmware_version?: string | undefined
|
|
80349
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
80350
|
+
wifi_signal_strength?: number | undefined
|
|
80351
|
+
}
|
|
80352
|
+
| undefined
|
|
80117
80353
|
}) &
|
|
80118
80354
|
({
|
|
80119
80355
|
/** */
|
|
@@ -80984,6 +81220,7 @@ export type Routes = {
|
|
|
80984
81220
|
| 'tedee_lock'
|
|
80985
81221
|
| 'akiles_lock'
|
|
80986
81222
|
| 'ultraloq_lock'
|
|
81223
|
+
| 'korelock_lock'
|
|
80987
81224
|
)
|
|
80988
81225
|
| 'keynest_key'
|
|
80989
81226
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -81693,6 +81930,23 @@ export type Routes = {
|
|
|
81693
81930
|
time_zone: string | null
|
|
81694
81931
|
}
|
|
81695
81932
|
| undefined
|
|
81933
|
+
/** Metadata for a Korelock device. */
|
|
81934
|
+
korelock_metadata?:
|
|
81935
|
+
| {
|
|
81936
|
+
/** Device ID for a Korelock device. */
|
|
81937
|
+
device_id?: string | undefined
|
|
81938
|
+
/** Device name for a Korelock device. */
|
|
81939
|
+
device_name?: string | undefined
|
|
81940
|
+
/** Model code for a Korelock device. */
|
|
81941
|
+
model_code?: string | undefined
|
|
81942
|
+
/** Serial number for a Korelock device. */
|
|
81943
|
+
serial_number?: string | undefined
|
|
81944
|
+
/** Firmware version for a Korelock device. */
|
|
81945
|
+
firmware_version?: string | undefined
|
|
81946
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
81947
|
+
wifi_signal_strength?: number | undefined
|
|
81948
|
+
}
|
|
81949
|
+
| undefined
|
|
81696
81950
|
}) &
|
|
81697
81951
|
({
|
|
81698
81952
|
/** */
|
|
@@ -89383,6 +89637,7 @@ export type Routes = {
|
|
|
89383
89637
|
| 'tedee_lock'
|
|
89384
89638
|
| 'akiles_lock'
|
|
89385
89639
|
| 'ultraloq_lock'
|
|
89640
|
+
| 'korelock_lock'
|
|
89386
89641
|
)
|
|
89387
89642
|
| 'keynest_key'
|
|
89388
89643
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -90092,6 +90347,23 @@ export type Routes = {
|
|
|
90092
90347
|
time_zone: string | null
|
|
90093
90348
|
}
|
|
90094
90349
|
| undefined
|
|
90350
|
+
/** Metadata for a Korelock device. */
|
|
90351
|
+
korelock_metadata?:
|
|
90352
|
+
| {
|
|
90353
|
+
/** Device ID for a Korelock device. */
|
|
90354
|
+
device_id?: string | undefined
|
|
90355
|
+
/** Device name for a Korelock device. */
|
|
90356
|
+
device_name?: string | undefined
|
|
90357
|
+
/** Model code for a Korelock device. */
|
|
90358
|
+
model_code?: string | undefined
|
|
90359
|
+
/** Serial number for a Korelock device. */
|
|
90360
|
+
serial_number?: string | undefined
|
|
90361
|
+
/** Firmware version for a Korelock device. */
|
|
90362
|
+
firmware_version?: string | undefined
|
|
90363
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
90364
|
+
wifi_signal_strength?: number | undefined
|
|
90365
|
+
}
|
|
90366
|
+
| undefined
|
|
90095
90367
|
}) &
|
|
90096
90368
|
({
|
|
90097
90369
|
/** */
|
|
@@ -90964,6 +91236,7 @@ export type Routes = {
|
|
|
90964
91236
|
| 'tedee_lock'
|
|
90965
91237
|
| 'akiles_lock'
|
|
90966
91238
|
| 'ultraloq_lock'
|
|
91239
|
+
| 'korelock_lock'
|
|
90967
91240
|
)
|
|
90968
91241
|
| 'keynest_key'
|
|
90969
91242
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -91673,6 +91946,23 @@ export type Routes = {
|
|
|
91673
91946
|
time_zone: string | null
|
|
91674
91947
|
}
|
|
91675
91948
|
| undefined
|
|
91949
|
+
/** Metadata for a Korelock device. */
|
|
91950
|
+
korelock_metadata?:
|
|
91951
|
+
| {
|
|
91952
|
+
/** Device ID for a Korelock device. */
|
|
91953
|
+
device_id?: string | undefined
|
|
91954
|
+
/** Device name for a Korelock device. */
|
|
91955
|
+
device_name?: string | undefined
|
|
91956
|
+
/** Model code for a Korelock device. */
|
|
91957
|
+
model_code?: string | undefined
|
|
91958
|
+
/** Serial number for a Korelock device. */
|
|
91959
|
+
serial_number?: string | undefined
|
|
91960
|
+
/** Firmware version for a Korelock device. */
|
|
91961
|
+
firmware_version?: string | undefined
|
|
91962
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
91963
|
+
wifi_signal_strength?: number | undefined
|
|
91964
|
+
}
|
|
91965
|
+
| undefined
|
|
91676
91966
|
}) &
|
|
91677
91967
|
({
|
|
91678
91968
|
/** */
|
|
@@ -93624,6 +93914,7 @@ export type Routes = {
|
|
|
93624
93914
|
| 'tedee_lock'
|
|
93625
93915
|
| 'akiles_lock'
|
|
93626
93916
|
| 'ultraloq_lock'
|
|
93917
|
+
| 'korelock_lock'
|
|
93627
93918
|
)
|
|
93628
93919
|
| 'keynest_key'
|
|
93629
93920
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -94333,6 +94624,23 @@ export type Routes = {
|
|
|
94333
94624
|
time_zone: string | null
|
|
94334
94625
|
}
|
|
94335
94626
|
| undefined
|
|
94627
|
+
/** Metadata for a Korelock device. */
|
|
94628
|
+
korelock_metadata?:
|
|
94629
|
+
| {
|
|
94630
|
+
/** Device ID for a Korelock device. */
|
|
94631
|
+
device_id?: string | undefined
|
|
94632
|
+
/** Device name for a Korelock device. */
|
|
94633
|
+
device_name?: string | undefined
|
|
94634
|
+
/** Model code for a Korelock device. */
|
|
94635
|
+
model_code?: string | undefined
|
|
94636
|
+
/** Serial number for a Korelock device. */
|
|
94637
|
+
serial_number?: string | undefined
|
|
94638
|
+
/** Firmware version for a Korelock device. */
|
|
94639
|
+
firmware_version?: string | undefined
|
|
94640
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
94641
|
+
wifi_signal_strength?: number | undefined
|
|
94642
|
+
}
|
|
94643
|
+
| undefined
|
|
94336
94644
|
}) &
|
|
94337
94645
|
({
|
|
94338
94646
|
/** */
|
|
@@ -97727,6 +98035,7 @@ export type Routes = {
|
|
|
97727
98035
|
| 'tedee_lock'
|
|
97728
98036
|
| 'akiles_lock'
|
|
97729
98037
|
| 'ultraloq_lock'
|
|
98038
|
+
| 'korelock_lock'
|
|
97730
98039
|
)
|
|
97731
98040
|
| 'keynest_key'
|
|
97732
98041
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|