@seamapi/types 1.933.0 → 1.935.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 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +345 -43
- package/dist/index.cjs +93 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +33 -0
- package/lib/seam/connect/models/devices/device-metadata.js +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- 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 +50 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +36 -3
- package/lib/seam/connect/models/events/access-codes.d.ts +12 -12
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
- package/lib/seam/connect/openapi.js +63 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +252 -31
- package/lib/seam/devicedb/models/device-model.d.ts +4 -4
- package/lib/seam/devicedb/route-specs.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +19 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +64 -0
- package/src/lib/seam/connect/route-types.ts +289 -0
|
@@ -13523,6 +13523,7 @@ export type Routes = {
|
|
|
13523
13523
|
| 'ultraloq_lock'
|
|
13524
13524
|
| 'keyincode_lock'
|
|
13525
13525
|
| 'omnitec_lock'
|
|
13526
|
+
| 'kisi_lock'
|
|
13526
13527
|
)
|
|
13527
13528
|
| 'keynest_key'
|
|
13528
13529
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -14161,6 +14162,8 @@ export type Routes = {
|
|
|
14161
14162
|
lock_id: number
|
|
14162
14163
|
/** Lock name for an Omnitec device. */
|
|
14163
14164
|
lock_name: string
|
|
14165
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
14166
|
+
lock_alias?: string | undefined
|
|
14164
14167
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
14165
14168
|
lock_mac: string
|
|
14166
14169
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -14283,6 +14286,19 @@ export type Routes = {
|
|
|
14283
14286
|
location_id?: (string | null) | undefined
|
|
14284
14287
|
}
|
|
14285
14288
|
| undefined
|
|
14289
|
+
/** Metadata for a Kisi device. */
|
|
14290
|
+
kisi_metadata?:
|
|
14291
|
+
| {
|
|
14292
|
+
/** Lock ID for a Kisi device. */
|
|
14293
|
+
lock_id: number
|
|
14294
|
+
/** Lock name for a Kisi device. */
|
|
14295
|
+
lock_name: string
|
|
14296
|
+
/** Place name for a Kisi device. */
|
|
14297
|
+
place_name: string | null
|
|
14298
|
+
/** Description for a Kisi device. */
|
|
14299
|
+
description: string | null
|
|
14300
|
+
}
|
|
14301
|
+
| undefined
|
|
14286
14302
|
}) &
|
|
14287
14303
|
({
|
|
14288
14304
|
/** */
|
|
@@ -21399,6 +21415,7 @@ export type Routes = {
|
|
|
21399
21415
|
| 'ultraloq_lock'
|
|
21400
21416
|
| 'keyincode_lock'
|
|
21401
21417
|
| 'omnitec_lock'
|
|
21418
|
+
| 'kisi_lock'
|
|
21402
21419
|
)
|
|
21403
21420
|
| 'keynest_key'
|
|
21404
21421
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -22037,6 +22054,8 @@ export type Routes = {
|
|
|
22037
22054
|
lock_id: number
|
|
22038
22055
|
/** Lock name for an Omnitec device. */
|
|
22039
22056
|
lock_name: string
|
|
22057
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
22058
|
+
lock_alias?: string | undefined
|
|
22040
22059
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
22041
22060
|
lock_mac: string
|
|
22042
22061
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -22159,6 +22178,19 @@ export type Routes = {
|
|
|
22159
22178
|
location_id?: (string | null) | undefined
|
|
22160
22179
|
}
|
|
22161
22180
|
| undefined
|
|
22181
|
+
/** Metadata for a Kisi device. */
|
|
22182
|
+
kisi_metadata?:
|
|
22183
|
+
| {
|
|
22184
|
+
/** Lock ID for a Kisi device. */
|
|
22185
|
+
lock_id: number
|
|
22186
|
+
/** Lock name for a Kisi device. */
|
|
22187
|
+
lock_name: string
|
|
22188
|
+
/** Place name for a Kisi device. */
|
|
22189
|
+
place_name: string | null
|
|
22190
|
+
/** Description for a Kisi device. */
|
|
22191
|
+
description: string | null
|
|
22192
|
+
}
|
|
22193
|
+
| undefined
|
|
22162
22194
|
}) &
|
|
22163
22195
|
({
|
|
22164
22196
|
/** */
|
|
@@ -45482,6 +45514,7 @@ export type Routes = {
|
|
|
45482
45514
|
| 'guesty'
|
|
45483
45515
|
| 'acuity_scheduling'
|
|
45484
45516
|
| 'omnitec'
|
|
45517
|
+
| 'kisi'
|
|
45485
45518
|
| 'yale_access'
|
|
45486
45519
|
| 'hid_cm'
|
|
45487
45520
|
| 'google_nest'
|
|
@@ -47597,6 +47630,7 @@ export type Routes = {
|
|
|
47597
47630
|
| 'ultraloq_lock'
|
|
47598
47631
|
| 'keyincode_lock'
|
|
47599
47632
|
| 'omnitec_lock'
|
|
47633
|
+
| 'kisi_lock'
|
|
47600
47634
|
)
|
|
47601
47635
|
| 'keynest_key'
|
|
47602
47636
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -48235,6 +48269,8 @@ export type Routes = {
|
|
|
48235
48269
|
lock_id: number
|
|
48236
48270
|
/** Lock name for an Omnitec device. */
|
|
48237
48271
|
lock_name: string
|
|
48272
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
48273
|
+
lock_alias?: string | undefined
|
|
48238
48274
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
48239
48275
|
lock_mac: string
|
|
48240
48276
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -48355,6 +48391,19 @@ export type Routes = {
|
|
|
48355
48391
|
location_id?: (string | null) | undefined
|
|
48356
48392
|
}
|
|
48357
48393
|
| undefined
|
|
48394
|
+
/** Metadata for a Kisi device. */
|
|
48395
|
+
kisi_metadata?:
|
|
48396
|
+
| {
|
|
48397
|
+
/** Lock ID for a Kisi device. */
|
|
48398
|
+
lock_id: number
|
|
48399
|
+
/** Lock name for a Kisi device. */
|
|
48400
|
+
lock_name: string
|
|
48401
|
+
/** Place name for a Kisi device. */
|
|
48402
|
+
place_name: string | null
|
|
48403
|
+
/** Description for a Kisi device. */
|
|
48404
|
+
description: string | null
|
|
48405
|
+
}
|
|
48406
|
+
| undefined
|
|
48358
48407
|
}) &
|
|
48359
48408
|
({
|
|
48360
48409
|
/** */
|
|
@@ -49401,6 +49450,7 @@ export type Routes = {
|
|
|
49401
49450
|
| 'ultraloq_lock'
|
|
49402
49451
|
| 'keyincode_lock'
|
|
49403
49452
|
| 'omnitec_lock'
|
|
49453
|
+
| 'kisi_lock'
|
|
49404
49454
|
)
|
|
49405
49455
|
| 'keynest_key'
|
|
49406
49456
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -49448,6 +49498,7 @@ export type Routes = {
|
|
|
49448
49498
|
| 'ultraloq_lock'
|
|
49449
49499
|
| 'keyincode_lock'
|
|
49450
49500
|
| 'omnitec_lock'
|
|
49501
|
+
| 'kisi_lock'
|
|
49451
49502
|
)
|
|
49452
49503
|
| 'keynest_key'
|
|
49453
49504
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -49495,6 +49546,7 @@ export type Routes = {
|
|
|
49495
49546
|
| 'dormakaba_oracode'
|
|
49496
49547
|
| 'tedee'
|
|
49497
49548
|
| 'keyincode'
|
|
49549
|
+
| 'kisi'
|
|
49498
49550
|
| 'akiles'
|
|
49499
49551
|
| 'ecobee'
|
|
49500
49552
|
| 'honeywell_resideo'
|
|
@@ -49514,6 +49566,7 @@ export type Routes = {
|
|
|
49514
49566
|
| 'guesty'
|
|
49515
49567
|
| 'acuity_scheduling'
|
|
49516
49568
|
| 'omnitec'
|
|
49569
|
+
| 'kisi'
|
|
49517
49570
|
| 'slack'
|
|
49518
49571
|
)
|
|
49519
49572
|
| undefined
|
|
@@ -49627,6 +49680,7 @@ export type Routes = {
|
|
|
49627
49680
|
| 'ultraloq_lock'
|
|
49628
49681
|
| 'keyincode_lock'
|
|
49629
49682
|
| 'omnitec_lock'
|
|
49683
|
+
| 'kisi_lock'
|
|
49630
49684
|
)
|
|
49631
49685
|
| 'keynest_key'
|
|
49632
49686
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -50265,6 +50319,8 @@ export type Routes = {
|
|
|
50265
50319
|
lock_id: number
|
|
50266
50320
|
/** Lock name for an Omnitec device. */
|
|
50267
50321
|
lock_name: string
|
|
50322
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
50323
|
+
lock_alias?: string | undefined
|
|
50268
50324
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
50269
50325
|
lock_mac: string
|
|
50270
50326
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -50385,6 +50441,19 @@ export type Routes = {
|
|
|
50385
50441
|
location_id?: (string | null) | undefined
|
|
50386
50442
|
}
|
|
50387
50443
|
| undefined
|
|
50444
|
+
/** Metadata for a Kisi device. */
|
|
50445
|
+
kisi_metadata?:
|
|
50446
|
+
| {
|
|
50447
|
+
/** Lock ID for a Kisi device. */
|
|
50448
|
+
lock_id: number
|
|
50449
|
+
/** Lock name for a Kisi device. */
|
|
50450
|
+
lock_name: string
|
|
50451
|
+
/** Place name for a Kisi device. */
|
|
50452
|
+
place_name: string | null
|
|
50453
|
+
/** Description for a Kisi device. */
|
|
50454
|
+
description: string | null
|
|
50455
|
+
}
|
|
50456
|
+
| undefined
|
|
50388
50457
|
}) &
|
|
50389
50458
|
({
|
|
50390
50459
|
/** */
|
|
@@ -51479,6 +51548,7 @@ export type Routes = {
|
|
|
51479
51548
|
| 'guesty'
|
|
51480
51549
|
| 'acuity_scheduling'
|
|
51481
51550
|
| 'omnitec'
|
|
51551
|
+
| 'kisi'
|
|
51482
51552
|
/** Display name for the device provider. */
|
|
51483
51553
|
display_name: string
|
|
51484
51554
|
/** Image URL for the device provider. */
|
|
@@ -52990,6 +53060,7 @@ export type Routes = {
|
|
|
52990
53060
|
| 'ultraloq_lock'
|
|
52991
53061
|
| 'keyincode_lock'
|
|
52992
53062
|
| 'omnitec_lock'
|
|
53063
|
+
| 'kisi_lock'
|
|
52993
53064
|
)
|
|
52994
53065
|
| 'keynest_key'
|
|
52995
53066
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -53594,6 +53665,7 @@ export type Routes = {
|
|
|
53594
53665
|
| 'ultraloq_lock'
|
|
53595
53666
|
| 'keyincode_lock'
|
|
53596
53667
|
| 'omnitec_lock'
|
|
53668
|
+
| 'kisi_lock'
|
|
53597
53669
|
)
|
|
53598
53670
|
| 'keynest_key'
|
|
53599
53671
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -53641,6 +53713,7 @@ export type Routes = {
|
|
|
53641
53713
|
| 'ultraloq_lock'
|
|
53642
53714
|
| 'keyincode_lock'
|
|
53643
53715
|
| 'omnitec_lock'
|
|
53716
|
+
| 'kisi_lock'
|
|
53644
53717
|
)
|
|
53645
53718
|
| 'keynest_key'
|
|
53646
53719
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -53688,6 +53761,7 @@ export type Routes = {
|
|
|
53688
53761
|
| 'dormakaba_oracode'
|
|
53689
53762
|
| 'tedee'
|
|
53690
53763
|
| 'keyincode'
|
|
53764
|
+
| 'kisi'
|
|
53691
53765
|
| 'akiles'
|
|
53692
53766
|
| 'ecobee'
|
|
53693
53767
|
| 'honeywell_resideo'
|
|
@@ -53707,6 +53781,7 @@ export type Routes = {
|
|
|
53707
53781
|
| 'guesty'
|
|
53708
53782
|
| 'acuity_scheduling'
|
|
53709
53783
|
| 'omnitec'
|
|
53784
|
+
| 'kisi'
|
|
53710
53785
|
| 'slack'
|
|
53711
53786
|
)
|
|
53712
53787
|
| undefined
|
|
@@ -53820,6 +53895,7 @@ export type Routes = {
|
|
|
53820
53895
|
| 'ultraloq_lock'
|
|
53821
53896
|
| 'keyincode_lock'
|
|
53822
53897
|
| 'omnitec_lock'
|
|
53898
|
+
| 'kisi_lock'
|
|
53823
53899
|
)
|
|
53824
53900
|
| 'keynest_key'
|
|
53825
53901
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -63576,6 +63652,7 @@ export type Routes = {
|
|
|
63576
63652
|
| 'ultraloq_lock'
|
|
63577
63653
|
| 'keyincode_lock'
|
|
63578
63654
|
| 'omnitec_lock'
|
|
63655
|
+
| 'kisi_lock'
|
|
63579
63656
|
)
|
|
63580
63657
|
| 'keynest_key'
|
|
63581
63658
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -64214,6 +64291,8 @@ export type Routes = {
|
|
|
64214
64291
|
lock_id: number
|
|
64215
64292
|
/** Lock name for an Omnitec device. */
|
|
64216
64293
|
lock_name: string
|
|
64294
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
64295
|
+
lock_alias?: string | undefined
|
|
64217
64296
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
64218
64297
|
lock_mac: string
|
|
64219
64298
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -64334,6 +64413,19 @@ export type Routes = {
|
|
|
64334
64413
|
location_id?: (string | null) | undefined
|
|
64335
64414
|
}
|
|
64336
64415
|
| undefined
|
|
64416
|
+
/** Metadata for a Kisi device. */
|
|
64417
|
+
kisi_metadata?:
|
|
64418
|
+
| {
|
|
64419
|
+
/** Lock ID for a Kisi device. */
|
|
64420
|
+
lock_id: number
|
|
64421
|
+
/** Lock name for a Kisi device. */
|
|
64422
|
+
lock_name: string
|
|
64423
|
+
/** Place name for a Kisi device. */
|
|
64424
|
+
place_name: string | null
|
|
64425
|
+
/** Description for a Kisi device. */
|
|
64426
|
+
description: string | null
|
|
64427
|
+
}
|
|
64428
|
+
| undefined
|
|
64337
64429
|
}) &
|
|
64338
64430
|
({
|
|
64339
64431
|
/** */
|
|
@@ -65366,6 +65458,7 @@ export type Routes = {
|
|
|
65366
65458
|
| 'ultraloq_lock'
|
|
65367
65459
|
| 'keyincode_lock'
|
|
65368
65460
|
| 'omnitec_lock'
|
|
65461
|
+
| 'kisi_lock'
|
|
65369
65462
|
)
|
|
65370
65463
|
| 'keynest_key'
|
|
65371
65464
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -66004,6 +66097,8 @@ export type Routes = {
|
|
|
66004
66097
|
lock_id: number
|
|
66005
66098
|
/** Lock name for an Omnitec device. */
|
|
66006
66099
|
lock_name: string
|
|
66100
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
66101
|
+
lock_alias?: string | undefined
|
|
66007
66102
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
66008
66103
|
lock_mac: string
|
|
66009
66104
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -66124,6 +66219,19 @@ export type Routes = {
|
|
|
66124
66219
|
location_id?: (string | null) | undefined
|
|
66125
66220
|
}
|
|
66126
66221
|
| undefined
|
|
66222
|
+
/** Metadata for a Kisi device. */
|
|
66223
|
+
kisi_metadata?:
|
|
66224
|
+
| {
|
|
66225
|
+
/** Lock ID for a Kisi device. */
|
|
66226
|
+
lock_id: number
|
|
66227
|
+
/** Lock name for a Kisi device. */
|
|
66228
|
+
lock_name: string
|
|
66229
|
+
/** Place name for a Kisi device. */
|
|
66230
|
+
place_name: string | null
|
|
66231
|
+
/** Description for a Kisi device. */
|
|
66232
|
+
description: string | null
|
|
66233
|
+
}
|
|
66234
|
+
| undefined
|
|
66127
66235
|
}) &
|
|
66128
66236
|
({
|
|
66129
66237
|
/** */
|
|
@@ -67169,6 +67277,7 @@ export type Routes = {
|
|
|
67169
67277
|
| 'ultraloq_lock'
|
|
67170
67278
|
| 'keyincode_lock'
|
|
67171
67279
|
| 'omnitec_lock'
|
|
67280
|
+
| 'kisi_lock'
|
|
67172
67281
|
)
|
|
67173
67282
|
| undefined
|
|
67174
67283
|
/** Device types of the locks that you want to list. */
|
|
@@ -67202,6 +67311,7 @@ export type Routes = {
|
|
|
67202
67311
|
| 'ultraloq_lock'
|
|
67203
67312
|
| 'keyincode_lock'
|
|
67204
67313
|
| 'omnitec_lock'
|
|
67314
|
+
| 'kisi_lock'
|
|
67205
67315
|
)[]
|
|
67206
67316
|
| undefined
|
|
67207
67317
|
/** Manufacturer of the locks that you want to list. */
|
|
@@ -67232,11 +67342,13 @@ export type Routes = {
|
|
|
67232
67342
|
| 'dormakaba_oracode'
|
|
67233
67343
|
| 'tedee'
|
|
67234
67344
|
| 'keyincode'
|
|
67345
|
+
| 'kisi'
|
|
67235
67346
|
| 'akiles'
|
|
67236
67347
|
| 'korelock'
|
|
67237
67348
|
| 'smartthings'
|
|
67238
67349
|
| 'ultraloq'
|
|
67239
67350
|
| 'omnitec'
|
|
67351
|
+
| 'kisi'
|
|
67240
67352
|
)
|
|
67241
67353
|
| undefined
|
|
67242
67354
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -67349,6 +67461,7 @@ export type Routes = {
|
|
|
67349
67461
|
| 'ultraloq_lock'
|
|
67350
67462
|
| 'keyincode_lock'
|
|
67351
67463
|
| 'omnitec_lock'
|
|
67464
|
+
| 'kisi_lock'
|
|
67352
67465
|
)
|
|
67353
67466
|
| 'keynest_key'
|
|
67354
67467
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -67987,6 +68100,8 @@ export type Routes = {
|
|
|
67987
68100
|
lock_id: number
|
|
67988
68101
|
/** Lock name for an Omnitec device. */
|
|
67989
68102
|
lock_name: string
|
|
68103
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
68104
|
+
lock_alias?: string | undefined
|
|
67990
68105
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
67991
68106
|
lock_mac: string
|
|
67992
68107
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -68107,6 +68222,19 @@ export type Routes = {
|
|
|
68107
68222
|
location_id?: (string | null) | undefined
|
|
68108
68223
|
}
|
|
68109
68224
|
| undefined
|
|
68225
|
+
/** Metadata for a Kisi device. */
|
|
68226
|
+
kisi_metadata?:
|
|
68227
|
+
| {
|
|
68228
|
+
/** Lock ID for a Kisi device. */
|
|
68229
|
+
lock_id: number
|
|
68230
|
+
/** Lock name for a Kisi device. */
|
|
68231
|
+
lock_name: string
|
|
68232
|
+
/** Place name for a Kisi device. */
|
|
68233
|
+
place_name: string | null
|
|
68234
|
+
/** Description for a Kisi device. */
|
|
68235
|
+
description: string | null
|
|
68236
|
+
}
|
|
68237
|
+
| undefined
|
|
68110
68238
|
}) &
|
|
68111
68239
|
({
|
|
68112
68240
|
/** */
|
|
@@ -69138,6 +69266,7 @@ export type Routes = {
|
|
|
69138
69266
|
| 'ultraloq_lock'
|
|
69139
69267
|
| 'keyincode_lock'
|
|
69140
69268
|
| 'omnitec_lock'
|
|
69269
|
+
| 'kisi_lock'
|
|
69141
69270
|
)
|
|
69142
69271
|
| 'keynest_key'
|
|
69143
69272
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -69776,6 +69905,8 @@ export type Routes = {
|
|
|
69776
69905
|
lock_id: number
|
|
69777
69906
|
/** Lock name for an Omnitec device. */
|
|
69778
69907
|
lock_name: string
|
|
69908
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
69909
|
+
lock_alias?: string | undefined
|
|
69779
69910
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
69780
69911
|
lock_mac: string
|
|
69781
69912
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -69896,6 +70027,19 @@ export type Routes = {
|
|
|
69896
70027
|
location_id?: (string | null) | undefined
|
|
69897
70028
|
}
|
|
69898
70029
|
| undefined
|
|
70030
|
+
/** Metadata for a Kisi device. */
|
|
70031
|
+
kisi_metadata?:
|
|
70032
|
+
| {
|
|
70033
|
+
/** Lock ID for a Kisi device. */
|
|
70034
|
+
lock_id: number
|
|
70035
|
+
/** Lock name for a Kisi device. */
|
|
70036
|
+
lock_name: string
|
|
70037
|
+
/** Place name for a Kisi device. */
|
|
70038
|
+
place_name: string | null
|
|
70039
|
+
/** Description for a Kisi device. */
|
|
70040
|
+
description: string | null
|
|
70041
|
+
}
|
|
70042
|
+
| undefined
|
|
69899
70043
|
}) &
|
|
69900
70044
|
({
|
|
69901
70045
|
/** */
|
|
@@ -78816,6 +78960,7 @@ export type Routes = {
|
|
|
78816
78960
|
| 'ultraloq_lock'
|
|
78817
78961
|
| 'keyincode_lock'
|
|
78818
78962
|
| 'omnitec_lock'
|
|
78963
|
+
| 'kisi_lock'
|
|
78819
78964
|
)
|
|
78820
78965
|
| 'keynest_key'
|
|
78821
78966
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -79454,6 +79599,8 @@ export type Routes = {
|
|
|
79454
79599
|
lock_id: number
|
|
79455
79600
|
/** Lock name for an Omnitec device. */
|
|
79456
79601
|
lock_name: string
|
|
79602
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
79603
|
+
lock_alias?: string | undefined
|
|
79457
79604
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
79458
79605
|
lock_mac: string
|
|
79459
79606
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -79574,6 +79721,19 @@ export type Routes = {
|
|
|
79574
79721
|
location_id?: (string | null) | undefined
|
|
79575
79722
|
}
|
|
79576
79723
|
| undefined
|
|
79724
|
+
/** Metadata for a Kisi device. */
|
|
79725
|
+
kisi_metadata?:
|
|
79726
|
+
| {
|
|
79727
|
+
/** Lock ID for a Kisi device. */
|
|
79728
|
+
lock_id: number
|
|
79729
|
+
/** Lock name for a Kisi device. */
|
|
79730
|
+
lock_name: string
|
|
79731
|
+
/** Place name for a Kisi device. */
|
|
79732
|
+
place_name: string | null
|
|
79733
|
+
/** Description for a Kisi device. */
|
|
79734
|
+
description: string | null
|
|
79735
|
+
}
|
|
79736
|
+
| undefined
|
|
79577
79737
|
}) &
|
|
79578
79738
|
({
|
|
79579
79739
|
/** */
|
|
@@ -80605,6 +80765,7 @@ export type Routes = {
|
|
|
80605
80765
|
| 'ultraloq_lock'
|
|
80606
80766
|
| 'keyincode_lock'
|
|
80607
80767
|
| 'omnitec_lock'
|
|
80768
|
+
| 'kisi_lock'
|
|
80608
80769
|
)
|
|
80609
80770
|
| 'keynest_key'
|
|
80610
80771
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -81243,6 +81404,8 @@ export type Routes = {
|
|
|
81243
81404
|
lock_id: number
|
|
81244
81405
|
/** Lock name for an Omnitec device. */
|
|
81245
81406
|
lock_name: string
|
|
81407
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
81408
|
+
lock_alias?: string | undefined
|
|
81246
81409
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
81247
81410
|
lock_mac: string
|
|
81248
81411
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -81363,6 +81526,19 @@ export type Routes = {
|
|
|
81363
81526
|
location_id?: (string | null) | undefined
|
|
81364
81527
|
}
|
|
81365
81528
|
| undefined
|
|
81529
|
+
/** Metadata for a Kisi device. */
|
|
81530
|
+
kisi_metadata?:
|
|
81531
|
+
| {
|
|
81532
|
+
/** Lock ID for a Kisi device. */
|
|
81533
|
+
lock_id: number
|
|
81534
|
+
/** Lock name for a Kisi device. */
|
|
81535
|
+
lock_name: string
|
|
81536
|
+
/** Place name for a Kisi device. */
|
|
81537
|
+
place_name: string | null
|
|
81538
|
+
/** Description for a Kisi device. */
|
|
81539
|
+
description: string | null
|
|
81540
|
+
}
|
|
81541
|
+
| undefined
|
|
81366
81542
|
}) &
|
|
81367
81543
|
({
|
|
81368
81544
|
/** */
|
|
@@ -98707,6 +98883,7 @@ export type Routes = {
|
|
|
98707
98883
|
| 'ultraloq_lock'
|
|
98708
98884
|
| 'keyincode_lock'
|
|
98709
98885
|
| 'omnitec_lock'
|
|
98886
|
+
| 'kisi_lock'
|
|
98710
98887
|
)
|
|
98711
98888
|
| 'keynest_key'
|
|
98712
98889
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -99345,6 +99522,8 @@ export type Routes = {
|
|
|
99345
99522
|
lock_id: number
|
|
99346
99523
|
/** Lock name for an Omnitec device. */
|
|
99347
99524
|
lock_name: string
|
|
99525
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
99526
|
+
lock_alias?: string | undefined
|
|
99348
99527
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
99349
99528
|
lock_mac: string
|
|
99350
99529
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -99467,6 +99646,19 @@ export type Routes = {
|
|
|
99467
99646
|
location_id?: (string | null) | undefined
|
|
99468
99647
|
}
|
|
99469
99648
|
| undefined
|
|
99649
|
+
/** Metadata for a Kisi device. */
|
|
99650
|
+
kisi_metadata?:
|
|
99651
|
+
| {
|
|
99652
|
+
/** Lock ID for a Kisi device. */
|
|
99653
|
+
lock_id: number
|
|
99654
|
+
/** Lock name for a Kisi device. */
|
|
99655
|
+
lock_name: string
|
|
99656
|
+
/** Place name for a Kisi device. */
|
|
99657
|
+
place_name: string | null
|
|
99658
|
+
/** Description for a Kisi device. */
|
|
99659
|
+
description: string | null
|
|
99660
|
+
}
|
|
99661
|
+
| undefined
|
|
99470
99662
|
}) &
|
|
99471
99663
|
({
|
|
99472
99664
|
/** */
|
|
@@ -107475,6 +107667,7 @@ export type Routes = {
|
|
|
107475
107667
|
| 'ultraloq_lock'
|
|
107476
107668
|
| 'keyincode_lock'
|
|
107477
107669
|
| 'omnitec_lock'
|
|
107670
|
+
| 'kisi_lock'
|
|
107478
107671
|
)
|
|
107479
107672
|
| 'keynest_key'
|
|
107480
107673
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -108113,6 +108306,8 @@ export type Routes = {
|
|
|
108113
108306
|
lock_id: number
|
|
108114
108307
|
/** Lock name for an Omnitec device. */
|
|
108115
108308
|
lock_name: string
|
|
108309
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
108310
|
+
lock_alias?: string | undefined
|
|
108116
108311
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
108117
108312
|
lock_mac: string
|
|
108118
108313
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -108233,6 +108428,19 @@ export type Routes = {
|
|
|
108233
108428
|
location_id?: (string | null) | undefined
|
|
108234
108429
|
}
|
|
108235
108430
|
| undefined
|
|
108431
|
+
/** Metadata for a Kisi device. */
|
|
108432
|
+
kisi_metadata?:
|
|
108433
|
+
| {
|
|
108434
|
+
/** Lock ID for a Kisi device. */
|
|
108435
|
+
lock_id: number
|
|
108436
|
+
/** Lock name for a Kisi device. */
|
|
108437
|
+
lock_name: string
|
|
108438
|
+
/** Place name for a Kisi device. */
|
|
108439
|
+
place_name: string | null
|
|
108440
|
+
/** Description for a Kisi device. */
|
|
108441
|
+
description: string | null
|
|
108442
|
+
}
|
|
108443
|
+
| undefined
|
|
108236
108444
|
}) &
|
|
108237
108445
|
({
|
|
108238
108446
|
/** */
|
|
@@ -113298,6 +113506,7 @@ export type Routes = {
|
|
|
113298
113506
|
| 'ultraloq_lock'
|
|
113299
113507
|
| 'keyincode_lock'
|
|
113300
113508
|
| 'omnitec_lock'
|
|
113509
|
+
| 'kisi_lock'
|
|
113301
113510
|
)
|
|
113302
113511
|
| 'keynest_key'
|
|
113303
113512
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -113936,6 +114145,8 @@ export type Routes = {
|
|
|
113936
114145
|
lock_id: number
|
|
113937
114146
|
/** Lock name for an Omnitec device. */
|
|
113938
114147
|
lock_name: string
|
|
114148
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
114149
|
+
lock_alias?: string | undefined
|
|
113939
114150
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
113940
114151
|
lock_mac: string
|
|
113941
114152
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -114056,6 +114267,19 @@ export type Routes = {
|
|
|
114056
114267
|
location_id?: (string | null) | undefined
|
|
114057
114268
|
}
|
|
114058
114269
|
| undefined
|
|
114270
|
+
/** Metadata for a Kisi device. */
|
|
114271
|
+
kisi_metadata?:
|
|
114272
|
+
| {
|
|
114273
|
+
/** Lock ID for a Kisi device. */
|
|
114274
|
+
lock_id: number
|
|
114275
|
+
/** Lock name for a Kisi device. */
|
|
114276
|
+
lock_name: string
|
|
114277
|
+
/** Place name for a Kisi device. */
|
|
114278
|
+
place_name: string | null
|
|
114279
|
+
/** Description for a Kisi device. */
|
|
114280
|
+
description: string | null
|
|
114281
|
+
}
|
|
114282
|
+
| undefined
|
|
114059
114283
|
}) &
|
|
114060
114284
|
({
|
|
114061
114285
|
/** */
|
|
@@ -115087,6 +115311,7 @@ export type Routes = {
|
|
|
115087
115311
|
| 'ultraloq_lock'
|
|
115088
115312
|
| 'keyincode_lock'
|
|
115089
115313
|
| 'omnitec_lock'
|
|
115314
|
+
| 'kisi_lock'
|
|
115090
115315
|
)
|
|
115091
115316
|
| 'keynest_key'
|
|
115092
115317
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -115725,6 +115950,8 @@ export type Routes = {
|
|
|
115725
115950
|
lock_id: number
|
|
115726
115951
|
/** Lock name for an Omnitec device. */
|
|
115727
115952
|
lock_name: string
|
|
115953
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
115954
|
+
lock_alias?: string | undefined
|
|
115728
115955
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
115729
115956
|
lock_mac: string
|
|
115730
115957
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -115845,6 +116072,19 @@ export type Routes = {
|
|
|
115845
116072
|
location_id?: (string | null) | undefined
|
|
115846
116073
|
}
|
|
115847
116074
|
| undefined
|
|
116075
|
+
/** Metadata for a Kisi device. */
|
|
116076
|
+
kisi_metadata?:
|
|
116077
|
+
| {
|
|
116078
|
+
/** Lock ID for a Kisi device. */
|
|
116079
|
+
lock_id: number
|
|
116080
|
+
/** Lock name for a Kisi device. */
|
|
116081
|
+
lock_name: string
|
|
116082
|
+
/** Place name for a Kisi device. */
|
|
116083
|
+
place_name: string | null
|
|
116084
|
+
/** Description for a Kisi device. */
|
|
116085
|
+
description: string | null
|
|
116086
|
+
}
|
|
116087
|
+
| undefined
|
|
115848
116088
|
}) &
|
|
115849
116089
|
({
|
|
115850
116090
|
/** */
|
|
@@ -125700,6 +125940,7 @@ export type Routes = {
|
|
|
125700
125940
|
| 'ultraloq_lock'
|
|
125701
125941
|
| 'keyincode_lock'
|
|
125702
125942
|
| 'omnitec_lock'
|
|
125943
|
+
| 'kisi_lock'
|
|
125703
125944
|
)
|
|
125704
125945
|
| 'keynest_key'
|
|
125705
125946
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -126338,6 +126579,8 @@ export type Routes = {
|
|
|
126338
126579
|
lock_id: number
|
|
126339
126580
|
/** Lock name for an Omnitec device. */
|
|
126340
126581
|
lock_name: string
|
|
126582
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
126583
|
+
lock_alias?: string | undefined
|
|
126341
126584
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
126342
126585
|
lock_mac: string
|
|
126343
126586
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -126458,6 +126701,19 @@ export type Routes = {
|
|
|
126458
126701
|
location_id?: (string | null) | undefined
|
|
126459
126702
|
}
|
|
126460
126703
|
| undefined
|
|
126704
|
+
/** Metadata for a Kisi device. */
|
|
126705
|
+
kisi_metadata?:
|
|
126706
|
+
| {
|
|
126707
|
+
/** Lock ID for a Kisi device. */
|
|
126708
|
+
lock_id: number
|
|
126709
|
+
/** Lock name for a Kisi device. */
|
|
126710
|
+
lock_name: string
|
|
126711
|
+
/** Place name for a Kisi device. */
|
|
126712
|
+
place_name: string | null
|
|
126713
|
+
/** Description for a Kisi device. */
|
|
126714
|
+
description: string | null
|
|
126715
|
+
}
|
|
126716
|
+
| undefined
|
|
126461
126717
|
}) &
|
|
126462
126718
|
({
|
|
126463
126719
|
/** */
|
|
@@ -127491,6 +127747,7 @@ export type Routes = {
|
|
|
127491
127747
|
| 'ultraloq_lock'
|
|
127492
127748
|
| 'keyincode_lock'
|
|
127493
127749
|
| 'omnitec_lock'
|
|
127750
|
+
| 'kisi_lock'
|
|
127494
127751
|
)
|
|
127495
127752
|
| 'keynest_key'
|
|
127496
127753
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -128129,6 +128386,8 @@ export type Routes = {
|
|
|
128129
128386
|
lock_id: number
|
|
128130
128387
|
/** Lock name for an Omnitec device. */
|
|
128131
128388
|
lock_name: string
|
|
128389
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
128390
|
+
lock_alias?: string | undefined
|
|
128132
128391
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
128133
128392
|
lock_mac: string
|
|
128134
128393
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -128249,6 +128508,19 @@ export type Routes = {
|
|
|
128249
128508
|
location_id?: (string | null) | undefined
|
|
128250
128509
|
}
|
|
128251
128510
|
| undefined
|
|
128511
|
+
/** Metadata for a Kisi device. */
|
|
128512
|
+
kisi_metadata?:
|
|
128513
|
+
| {
|
|
128514
|
+
/** Lock ID for a Kisi device. */
|
|
128515
|
+
lock_id: number
|
|
128516
|
+
/** Lock name for a Kisi device. */
|
|
128517
|
+
lock_name: string
|
|
128518
|
+
/** Place name for a Kisi device. */
|
|
128519
|
+
place_name: string | null
|
|
128520
|
+
/** Description for a Kisi device. */
|
|
128521
|
+
description: string | null
|
|
128522
|
+
}
|
|
128523
|
+
| undefined
|
|
128252
128524
|
}) &
|
|
128253
128525
|
({
|
|
128254
128526
|
/** */
|
|
@@ -130705,6 +130977,7 @@ export type Routes = {
|
|
|
130705
130977
|
| 'ultraloq_lock'
|
|
130706
130978
|
| 'keyincode_lock'
|
|
130707
130979
|
| 'omnitec_lock'
|
|
130980
|
+
| 'kisi_lock'
|
|
130708
130981
|
)
|
|
130709
130982
|
| 'keynest_key'
|
|
130710
130983
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -131343,6 +131616,8 @@ export type Routes = {
|
|
|
131343
131616
|
lock_id: number
|
|
131344
131617
|
/** Lock name for an Omnitec device. */
|
|
131345
131618
|
lock_name: string
|
|
131619
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
131620
|
+
lock_alias?: string | undefined
|
|
131346
131621
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
131347
131622
|
lock_mac: string
|
|
131348
131623
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -131465,6 +131740,19 @@ export type Routes = {
|
|
|
131465
131740
|
location_id?: (string | null) | undefined
|
|
131466
131741
|
}
|
|
131467
131742
|
| undefined
|
|
131743
|
+
/** Metadata for a Kisi device. */
|
|
131744
|
+
kisi_metadata?:
|
|
131745
|
+
| {
|
|
131746
|
+
/** Lock ID for a Kisi device. */
|
|
131747
|
+
lock_id: number
|
|
131748
|
+
/** Lock name for a Kisi device. */
|
|
131749
|
+
lock_name: string
|
|
131750
|
+
/** Place name for a Kisi device. */
|
|
131751
|
+
place_name: string | null
|
|
131752
|
+
/** Description for a Kisi device. */
|
|
131753
|
+
description: string | null
|
|
131754
|
+
}
|
|
131755
|
+
| undefined
|
|
131468
131756
|
}) &
|
|
131469
131757
|
({
|
|
131470
131758
|
/** */
|
|
@@ -135939,6 +136227,7 @@ export type Routes = {
|
|
|
135939
136227
|
| 'ultraloq_lock'
|
|
135940
136228
|
| 'keyincode_lock'
|
|
135941
136229
|
| 'omnitec_lock'
|
|
136230
|
+
| 'kisi_lock'
|
|
135942
136231
|
)
|
|
135943
136232
|
| 'keynest_key'
|
|
135944
136233
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|