@seamapi/types 1.457.0 → 1.458.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 +56 -231
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +475 -310
- package/dist/devicedb.d.cts +56 -56
- package/dist/index.cjs +56 -231
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -10
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -6
- package/lib/seam/connect/models/acs/metadata/salto-space.js +13 -4
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batches/access_grants.d.ts +83 -63
- package/lib/seam/connect/models/batches/access_methods.d.ts +83 -63
- package/lib/seam/connect/models/batches/batch.d.ts +249 -189
- package/lib/seam/connect/models/batches/spaces.d.ts +83 -63
- package/lib/seam/connect/models/devices/device-metadata.d.ts +22 -22
- package/lib/seam/connect/models/devices/device-provider.d.ts +0 -1
- package/lib/seam/connect/models/devices/device.d.ts +49 -51
- package/lib/seam/connect/models/devices/device.js +16 -7
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +29 -31
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -40
- package/lib/seam/connect/openapi.d.ts +26 -2
- package/lib/seam/connect/openapi.js +29 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -30
- package/lib/seam/devicedb/models/device-model.d.ts +20 -20
- package/lib/seam/devicedb/route-specs.d.ts +41 -41
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +13 -4
- package/src/lib/seam/connect/models/devices/device.ts +15 -8
- package/src/lib/seam/connect/openapi.ts +32 -5
- package/src/lib/seam/connect/route-types.ts +100 -30
package/dist/connect.d.cts
CHANGED
|
@@ -4632,17 +4632,26 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4632
4632
|
pms_id?: string | undefined;
|
|
4633
4633
|
}>>;
|
|
4634
4634
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
4635
|
-
|
|
4636
|
-
|
|
4635
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
4636
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
4637
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
4637
4638
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4639
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
4640
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
4638
4641
|
}, "strip", z.ZodTypeAny, {
|
|
4639
|
-
door_name
|
|
4640
|
-
|
|
4642
|
+
door_name?: string | undefined;
|
|
4643
|
+
door_id?: string | undefined;
|
|
4644
|
+
ext_door_id?: string | undefined;
|
|
4641
4645
|
door_description?: string | undefined;
|
|
4646
|
+
room_name?: string | undefined;
|
|
4647
|
+
room_description?: string | undefined;
|
|
4642
4648
|
}, {
|
|
4643
|
-
door_name
|
|
4644
|
-
|
|
4649
|
+
door_name?: string | undefined;
|
|
4650
|
+
door_id?: string | undefined;
|
|
4651
|
+
ext_door_id?: string | undefined;
|
|
4645
4652
|
door_description?: string | undefined;
|
|
4653
|
+
room_name?: string | undefined;
|
|
4654
|
+
room_description?: string | undefined;
|
|
4646
4655
|
}>>;
|
|
4647
4656
|
} & {
|
|
4648
4657
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4696,9 +4705,12 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4696
4705
|
access_point_name: string;
|
|
4697
4706
|
} | undefined;
|
|
4698
4707
|
salto_space_metadata?: {
|
|
4699
|
-
door_name
|
|
4700
|
-
|
|
4708
|
+
door_name?: string | undefined;
|
|
4709
|
+
door_id?: string | undefined;
|
|
4710
|
+
ext_door_id?: string | undefined;
|
|
4701
4711
|
door_description?: string | undefined;
|
|
4712
|
+
room_name?: string | undefined;
|
|
4713
|
+
room_description?: string | undefined;
|
|
4702
4714
|
} | undefined;
|
|
4703
4715
|
}, {
|
|
4704
4716
|
display_name: string;
|
|
@@ -4748,9 +4760,12 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4748
4760
|
access_point_name: string;
|
|
4749
4761
|
} | undefined;
|
|
4750
4762
|
salto_space_metadata?: {
|
|
4751
|
-
door_name
|
|
4752
|
-
|
|
4763
|
+
door_name?: string | undefined;
|
|
4764
|
+
door_id?: string | undefined;
|
|
4765
|
+
ext_door_id?: string | undefined;
|
|
4753
4766
|
door_description?: string | undefined;
|
|
4767
|
+
room_name?: string | undefined;
|
|
4768
|
+
room_description?: string | undefined;
|
|
4754
4769
|
} | undefined;
|
|
4755
4770
|
}>;
|
|
4756
4771
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -10266,7 +10281,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10266
10281
|
status: "critical" | "low" | "good" | "full";
|
|
10267
10282
|
level: number;
|
|
10268
10283
|
} | undefined;
|
|
10269
|
-
manufacturer?: string | undefined;
|
|
10270
10284
|
battery_level?: number | undefined;
|
|
10271
10285
|
serial_number?: string | undefined;
|
|
10272
10286
|
accessory_keypad?: {
|
|
@@ -10276,6 +10290,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10276
10290
|
} | undefined;
|
|
10277
10291
|
} | undefined;
|
|
10278
10292
|
has_direct_power?: boolean | undefined;
|
|
10293
|
+
manufacturer?: string | undefined;
|
|
10279
10294
|
image_url?: string | undefined;
|
|
10280
10295
|
image_alt_text?: string | undefined;
|
|
10281
10296
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -10303,7 +10318,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10303
10318
|
status: "critical" | "low" | "good" | "full";
|
|
10304
10319
|
level: number;
|
|
10305
10320
|
} | undefined;
|
|
10306
|
-
manufacturer?: string | undefined;
|
|
10307
10321
|
battery_level?: number | undefined;
|
|
10308
10322
|
serial_number?: string | undefined;
|
|
10309
10323
|
accessory_keypad?: {
|
|
@@ -10313,6 +10327,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10313
10327
|
} | undefined;
|
|
10314
10328
|
} | undefined;
|
|
10315
10329
|
has_direct_power?: boolean | undefined;
|
|
10330
|
+
manufacturer?: string | undefined;
|
|
10316
10331
|
image_url?: string | undefined;
|
|
10317
10332
|
image_alt_text?: string | undefined;
|
|
10318
10333
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -10509,16 +10524,16 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10509
10524
|
locked_state: z.ZodString;
|
|
10510
10525
|
model: z.ZodOptional<z.ZodString>;
|
|
10511
10526
|
}, "strip", z.ZodTypeAny, {
|
|
10512
|
-
lock_type: string;
|
|
10513
10527
|
lock_id: string;
|
|
10514
10528
|
customer_reference: string;
|
|
10529
|
+
lock_type: string;
|
|
10515
10530
|
battery_level: string;
|
|
10516
10531
|
locked_state: string;
|
|
10517
10532
|
model?: string | undefined;
|
|
10518
10533
|
}, {
|
|
10519
|
-
lock_type: string;
|
|
10520
10534
|
lock_id: string;
|
|
10521
10535
|
customer_reference: string;
|
|
10536
|
+
lock_type: string;
|
|
10522
10537
|
battery_level: string;
|
|
10523
10538
|
locked_state: string;
|
|
10524
10539
|
model?: string | undefined;
|
|
@@ -10531,16 +10546,16 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10531
10546
|
locked_state: z.ZodString;
|
|
10532
10547
|
model: z.ZodOptional<z.ZodString>;
|
|
10533
10548
|
}, "strip", z.ZodTypeAny, {
|
|
10534
|
-
lock_type: string;
|
|
10535
10549
|
lock_id: string;
|
|
10536
10550
|
customer_reference: string;
|
|
10551
|
+
lock_type: string;
|
|
10537
10552
|
battery_level: string;
|
|
10538
10553
|
locked_state: string;
|
|
10539
10554
|
model?: string | undefined;
|
|
10540
10555
|
}, {
|
|
10541
|
-
lock_type: string;
|
|
10542
10556
|
lock_id: string;
|
|
10543
10557
|
customer_reference: string;
|
|
10558
|
+
lock_type: string;
|
|
10544
10559
|
battery_level: string;
|
|
10545
10560
|
locked_state: string;
|
|
10546
10561
|
model?: string | undefined;
|
|
@@ -10583,14 +10598,14 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10583
10598
|
device_id: z.ZodString;
|
|
10584
10599
|
}, "strip", z.ZodTypeAny, {
|
|
10585
10600
|
device_id: string;
|
|
10586
|
-
device_model: "indoor" | "outdoor";
|
|
10587
10601
|
device_name: string;
|
|
10602
|
+
device_model: "indoor" | "outdoor";
|
|
10588
10603
|
noise_level_nrs: number;
|
|
10589
10604
|
noise_level_decibel: number;
|
|
10590
10605
|
}, {
|
|
10591
10606
|
device_id: string;
|
|
10592
|
-
device_model: "indoor" | "outdoor";
|
|
10593
10607
|
device_name: string;
|
|
10608
|
+
device_model: "indoor" | "outdoor";
|
|
10594
10609
|
noise_level_nrs: number;
|
|
10595
10610
|
noise_level_decibel: number;
|
|
10596
10611
|
}>>;
|
|
@@ -10790,19 +10805,19 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10790
10805
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
10791
10806
|
wifi: z.ZodBoolean;
|
|
10792
10807
|
}, "strip", z.ZodTypeAny, {
|
|
10793
|
-
wifi: boolean;
|
|
10794
10808
|
passcode: boolean;
|
|
10795
10809
|
passcode_management: boolean;
|
|
10796
10810
|
unlock_via_gateway: boolean;
|
|
10797
10811
|
lock_command: boolean;
|
|
10798
10812
|
incomplete_keyboard_passcode: boolean;
|
|
10799
|
-
}, {
|
|
10800
10813
|
wifi: boolean;
|
|
10814
|
+
}, {
|
|
10801
10815
|
passcode: boolean;
|
|
10802
10816
|
passcode_management: boolean;
|
|
10803
10817
|
unlock_via_gateway: boolean;
|
|
10804
10818
|
lock_command: boolean;
|
|
10805
10819
|
incomplete_keyboard_passcode: boolean;
|
|
10820
|
+
wifi: boolean;
|
|
10806
10821
|
}>;
|
|
10807
10822
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
10808
10823
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10820,12 +10835,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10820
10835
|
lock_alias: string;
|
|
10821
10836
|
feature_value: string;
|
|
10822
10837
|
features: {
|
|
10823
|
-
wifi: boolean;
|
|
10824
10838
|
passcode: boolean;
|
|
10825
10839
|
passcode_management: boolean;
|
|
10826
10840
|
unlock_via_gateway: boolean;
|
|
10827
10841
|
lock_command: boolean;
|
|
10828
10842
|
incomplete_keyboard_passcode: boolean;
|
|
10843
|
+
wifi: boolean;
|
|
10829
10844
|
};
|
|
10830
10845
|
has_gateway?: boolean | undefined;
|
|
10831
10846
|
wireless_keypads?: {
|
|
@@ -10837,12 +10852,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10837
10852
|
lock_alias: string;
|
|
10838
10853
|
feature_value: string;
|
|
10839
10854
|
features: {
|
|
10840
|
-
wifi: boolean;
|
|
10841
10855
|
passcode: boolean;
|
|
10842
10856
|
passcode_management: boolean;
|
|
10843
10857
|
unlock_via_gateway: boolean;
|
|
10844
10858
|
lock_command: boolean;
|
|
10845
10859
|
incomplete_keyboard_passcode: boolean;
|
|
10860
|
+
wifi: boolean;
|
|
10846
10861
|
};
|
|
10847
10862
|
has_gateway?: boolean | undefined;
|
|
10848
10863
|
wireless_keypads?: {
|
|
@@ -11055,17 +11070,17 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11055
11070
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
11056
11071
|
}, "strip", z.ZodTypeAny, {
|
|
11057
11072
|
device_id: number;
|
|
11058
|
-
device_model: string;
|
|
11059
11073
|
device_name: string;
|
|
11060
11074
|
bridge_id: number;
|
|
11075
|
+
device_model: string;
|
|
11061
11076
|
bridge_name: string;
|
|
11062
11077
|
serial_number: string;
|
|
11063
11078
|
keypad_id?: number | undefined;
|
|
11064
11079
|
}, {
|
|
11065
11080
|
device_id: number;
|
|
11066
|
-
device_model: string;
|
|
11067
11081
|
device_name: string;
|
|
11068
11082
|
bridge_id: number;
|
|
11083
|
+
device_model: string;
|
|
11069
11084
|
bridge_name: string;
|
|
11070
11085
|
serial_number: string;
|
|
11071
11086
|
keypad_id?: number | undefined;
|
|
@@ -11129,9 +11144,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11129
11144
|
ecobee_device_id: string;
|
|
11130
11145
|
} | undefined;
|
|
11131
11146
|
salto_ks_metadata?: {
|
|
11132
|
-
lock_type: string;
|
|
11133
11147
|
lock_id: string;
|
|
11134
11148
|
customer_reference: string;
|
|
11149
|
+
lock_type: string;
|
|
11135
11150
|
battery_level: string;
|
|
11136
11151
|
locked_state: string;
|
|
11137
11152
|
model?: string | undefined;
|
|
@@ -11183,9 +11198,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11183
11198
|
model_number: string;
|
|
11184
11199
|
} | undefined;
|
|
11185
11200
|
salto_metadata?: {
|
|
11186
|
-
lock_type: string;
|
|
11187
11201
|
lock_id: string;
|
|
11188
11202
|
customer_reference: string;
|
|
11203
|
+
lock_type: string;
|
|
11189
11204
|
battery_level: string;
|
|
11190
11205
|
locked_state: string;
|
|
11191
11206
|
model?: string | undefined;
|
|
@@ -11204,8 +11219,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11204
11219
|
} | undefined;
|
|
11205
11220
|
noiseaware_metadata?: {
|
|
11206
11221
|
device_id: string;
|
|
11207
|
-
device_model: "indoor" | "outdoor";
|
|
11208
11222
|
device_name: string;
|
|
11223
|
+
device_model: "indoor" | "outdoor";
|
|
11209
11224
|
noise_level_nrs: number;
|
|
11210
11225
|
noise_level_decibel: number;
|
|
11211
11226
|
} | undefined;
|
|
@@ -11254,12 +11269,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11254
11269
|
lock_alias: string;
|
|
11255
11270
|
feature_value: string;
|
|
11256
11271
|
features: {
|
|
11257
|
-
wifi: boolean;
|
|
11258
11272
|
passcode: boolean;
|
|
11259
11273
|
passcode_management: boolean;
|
|
11260
11274
|
unlock_via_gateway: boolean;
|
|
11261
11275
|
lock_command: boolean;
|
|
11262
11276
|
incomplete_keyboard_passcode: boolean;
|
|
11277
|
+
wifi: boolean;
|
|
11263
11278
|
};
|
|
11264
11279
|
has_gateway?: boolean | undefined;
|
|
11265
11280
|
wireless_keypads?: {
|
|
@@ -11328,9 +11343,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11328
11343
|
} | undefined;
|
|
11329
11344
|
tedee_metadata?: {
|
|
11330
11345
|
device_id: number;
|
|
11331
|
-
device_model: string;
|
|
11332
11346
|
device_name: string;
|
|
11333
11347
|
bridge_id: number;
|
|
11348
|
+
device_model: string;
|
|
11334
11349
|
bridge_name: string;
|
|
11335
11350
|
serial_number: string;
|
|
11336
11351
|
keypad_id?: number | undefined;
|
|
@@ -11362,9 +11377,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11362
11377
|
ecobee_device_id: string;
|
|
11363
11378
|
} | undefined;
|
|
11364
11379
|
salto_ks_metadata?: {
|
|
11365
|
-
lock_type: string;
|
|
11366
11380
|
lock_id: string;
|
|
11367
11381
|
customer_reference: string;
|
|
11382
|
+
lock_type: string;
|
|
11368
11383
|
battery_level: string;
|
|
11369
11384
|
locked_state: string;
|
|
11370
11385
|
model?: string | undefined;
|
|
@@ -11416,9 +11431,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11416
11431
|
model_number: string;
|
|
11417
11432
|
} | undefined;
|
|
11418
11433
|
salto_metadata?: {
|
|
11419
|
-
lock_type: string;
|
|
11420
11434
|
lock_id: string;
|
|
11421
11435
|
customer_reference: string;
|
|
11436
|
+
lock_type: string;
|
|
11422
11437
|
battery_level: string;
|
|
11423
11438
|
locked_state: string;
|
|
11424
11439
|
model?: string | undefined;
|
|
@@ -11437,8 +11452,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11437
11452
|
} | undefined;
|
|
11438
11453
|
noiseaware_metadata?: {
|
|
11439
11454
|
device_id: string;
|
|
11440
|
-
device_model: "indoor" | "outdoor";
|
|
11441
11455
|
device_name: string;
|
|
11456
|
+
device_model: "indoor" | "outdoor";
|
|
11442
11457
|
noise_level_nrs: number;
|
|
11443
11458
|
noise_level_decibel: number;
|
|
11444
11459
|
} | undefined;
|
|
@@ -11487,12 +11502,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11487
11502
|
lock_alias: string;
|
|
11488
11503
|
feature_value: string;
|
|
11489
11504
|
features: {
|
|
11490
|
-
wifi: boolean;
|
|
11491
11505
|
passcode: boolean;
|
|
11492
11506
|
passcode_management: boolean;
|
|
11493
11507
|
unlock_via_gateway: boolean;
|
|
11494
11508
|
lock_command: boolean;
|
|
11495
11509
|
incomplete_keyboard_passcode: boolean;
|
|
11510
|
+
wifi: boolean;
|
|
11496
11511
|
};
|
|
11497
11512
|
has_gateway?: boolean | undefined;
|
|
11498
11513
|
wireless_keypads?: {
|
|
@@ -11561,9 +11576,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11561
11576
|
} | undefined;
|
|
11562
11577
|
tedee_metadata?: {
|
|
11563
11578
|
device_id: number;
|
|
11564
|
-
device_model: string;
|
|
11565
11579
|
device_name: string;
|
|
11566
11580
|
bridge_id: number;
|
|
11581
|
+
device_model: string;
|
|
11567
11582
|
bridge_name: string;
|
|
11568
11583
|
serial_number: string;
|
|
11569
11584
|
keypad_id?: number | undefined;
|
|
@@ -12899,7 +12914,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12899
12914
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
12900
12915
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
12901
12916
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
12902
|
-
} & {
|
|
12903
12917
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
12904
12918
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
12905
12919
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13110,7 +13124,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13110
13124
|
status: "critical" | "low" | "good" | "full";
|
|
13111
13125
|
level: number;
|
|
13112
13126
|
} | undefined;
|
|
13113
|
-
manufacturer?: string | undefined;
|
|
13114
13127
|
battery_level?: number | undefined;
|
|
13115
13128
|
serial_number?: string | undefined;
|
|
13116
13129
|
accessory_keypad?: {
|
|
@@ -13120,6 +13133,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13120
13133
|
} | undefined;
|
|
13121
13134
|
} | undefined;
|
|
13122
13135
|
has_direct_power?: boolean | undefined;
|
|
13136
|
+
manufacturer?: string | undefined;
|
|
13123
13137
|
image_url?: string | undefined;
|
|
13124
13138
|
image_alt_text?: string | undefined;
|
|
13125
13139
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -13145,9 +13159,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13145
13159
|
ecobee_device_id: string;
|
|
13146
13160
|
} | undefined;
|
|
13147
13161
|
salto_ks_metadata?: {
|
|
13148
|
-
lock_type: string;
|
|
13149
13162
|
lock_id: string;
|
|
13150
13163
|
customer_reference: string;
|
|
13164
|
+
lock_type: string;
|
|
13151
13165
|
battery_level: string;
|
|
13152
13166
|
locked_state: string;
|
|
13153
13167
|
model?: string | undefined;
|
|
@@ -13199,9 +13213,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13199
13213
|
model_number: string;
|
|
13200
13214
|
} | undefined;
|
|
13201
13215
|
salto_metadata?: {
|
|
13202
|
-
lock_type: string;
|
|
13203
13216
|
lock_id: string;
|
|
13204
13217
|
customer_reference: string;
|
|
13218
|
+
lock_type: string;
|
|
13205
13219
|
battery_level: string;
|
|
13206
13220
|
locked_state: string;
|
|
13207
13221
|
model?: string | undefined;
|
|
@@ -13220,8 +13234,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13220
13234
|
} | undefined;
|
|
13221
13235
|
noiseaware_metadata?: {
|
|
13222
13236
|
device_id: string;
|
|
13223
|
-
device_model: "indoor" | "outdoor";
|
|
13224
13237
|
device_name: string;
|
|
13238
|
+
device_model: "indoor" | "outdoor";
|
|
13225
13239
|
noise_level_nrs: number;
|
|
13226
13240
|
noise_level_decibel: number;
|
|
13227
13241
|
} | undefined;
|
|
@@ -13270,12 +13284,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13270
13284
|
lock_alias: string;
|
|
13271
13285
|
feature_value: string;
|
|
13272
13286
|
features: {
|
|
13273
|
-
wifi: boolean;
|
|
13274
13287
|
passcode: boolean;
|
|
13275
13288
|
passcode_management: boolean;
|
|
13276
13289
|
unlock_via_gateway: boolean;
|
|
13277
13290
|
lock_command: boolean;
|
|
13278
13291
|
incomplete_keyboard_passcode: boolean;
|
|
13292
|
+
wifi: boolean;
|
|
13279
13293
|
};
|
|
13280
13294
|
has_gateway?: boolean | undefined;
|
|
13281
13295
|
wireless_keypads?: {
|
|
@@ -13344,9 +13358,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13344
13358
|
} | undefined;
|
|
13345
13359
|
tedee_metadata?: {
|
|
13346
13360
|
device_id: number;
|
|
13347
|
-
device_model: string;
|
|
13348
13361
|
device_name: string;
|
|
13349
13362
|
bridge_id: number;
|
|
13363
|
+
device_model: string;
|
|
13350
13364
|
bridge_name: string;
|
|
13351
13365
|
serial_number: string;
|
|
13352
13366
|
keypad_id?: number | undefined;
|
|
@@ -13745,7 +13759,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13745
13759
|
status: "critical" | "low" | "good" | "full";
|
|
13746
13760
|
level: number;
|
|
13747
13761
|
} | undefined;
|
|
13748
|
-
manufacturer?: string | undefined;
|
|
13749
13762
|
battery_level?: number | undefined;
|
|
13750
13763
|
serial_number?: string | undefined;
|
|
13751
13764
|
accessory_keypad?: {
|
|
@@ -13755,6 +13768,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13755
13768
|
} | undefined;
|
|
13756
13769
|
} | undefined;
|
|
13757
13770
|
has_direct_power?: boolean | undefined;
|
|
13771
|
+
manufacturer?: string | undefined;
|
|
13758
13772
|
image_url?: string | undefined;
|
|
13759
13773
|
image_alt_text?: string | undefined;
|
|
13760
13774
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -13780,9 +13794,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13780
13794
|
ecobee_device_id: string;
|
|
13781
13795
|
} | undefined;
|
|
13782
13796
|
salto_ks_metadata?: {
|
|
13783
|
-
lock_type: string;
|
|
13784
13797
|
lock_id: string;
|
|
13785
13798
|
customer_reference: string;
|
|
13799
|
+
lock_type: string;
|
|
13786
13800
|
battery_level: string;
|
|
13787
13801
|
locked_state: string;
|
|
13788
13802
|
model?: string | undefined;
|
|
@@ -13834,9 +13848,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13834
13848
|
model_number: string;
|
|
13835
13849
|
} | undefined;
|
|
13836
13850
|
salto_metadata?: {
|
|
13837
|
-
lock_type: string;
|
|
13838
13851
|
lock_id: string;
|
|
13839
13852
|
customer_reference: string;
|
|
13853
|
+
lock_type: string;
|
|
13840
13854
|
battery_level: string;
|
|
13841
13855
|
locked_state: string;
|
|
13842
13856
|
model?: string | undefined;
|
|
@@ -13855,8 +13869,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13855
13869
|
} | undefined;
|
|
13856
13870
|
noiseaware_metadata?: {
|
|
13857
13871
|
device_id: string;
|
|
13858
|
-
device_model: "indoor" | "outdoor";
|
|
13859
13872
|
device_name: string;
|
|
13873
|
+
device_model: "indoor" | "outdoor";
|
|
13860
13874
|
noise_level_nrs: number;
|
|
13861
13875
|
noise_level_decibel: number;
|
|
13862
13876
|
} | undefined;
|
|
@@ -13905,12 +13919,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13905
13919
|
lock_alias: string;
|
|
13906
13920
|
feature_value: string;
|
|
13907
13921
|
features: {
|
|
13908
|
-
wifi: boolean;
|
|
13909
13922
|
passcode: boolean;
|
|
13910
13923
|
passcode_management: boolean;
|
|
13911
13924
|
unlock_via_gateway: boolean;
|
|
13912
13925
|
lock_command: boolean;
|
|
13913
13926
|
incomplete_keyboard_passcode: boolean;
|
|
13927
|
+
wifi: boolean;
|
|
13914
13928
|
};
|
|
13915
13929
|
has_gateway?: boolean | undefined;
|
|
13916
13930
|
wireless_keypads?: {
|
|
@@ -13979,9 +13993,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
13979
13993
|
} | undefined;
|
|
13980
13994
|
tedee_metadata?: {
|
|
13981
13995
|
device_id: number;
|
|
13982
|
-
device_model: string;
|
|
13983
13996
|
device_name: string;
|
|
13984
13997
|
bridge_id: number;
|
|
13998
|
+
device_model: string;
|
|
13985
13999
|
bridge_name: string;
|
|
13986
14000
|
serial_number: string;
|
|
13987
14001
|
keypad_id?: number | undefined;
|
|
@@ -14290,17 +14304,26 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14290
14304
|
pms_id?: string | undefined;
|
|
14291
14305
|
}>>;
|
|
14292
14306
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
14293
|
-
|
|
14294
|
-
|
|
14307
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
14308
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
14309
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
14295
14310
|
door_description: z.ZodOptional<z.ZodString>;
|
|
14311
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
14312
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
14296
14313
|
}, "strip", z.ZodTypeAny, {
|
|
14297
|
-
door_name
|
|
14298
|
-
|
|
14314
|
+
door_name?: string | undefined;
|
|
14315
|
+
door_id?: string | undefined;
|
|
14316
|
+
ext_door_id?: string | undefined;
|
|
14299
14317
|
door_description?: string | undefined;
|
|
14318
|
+
room_name?: string | undefined;
|
|
14319
|
+
room_description?: string | undefined;
|
|
14300
14320
|
}, {
|
|
14301
|
-
door_name
|
|
14302
|
-
|
|
14321
|
+
door_name?: string | undefined;
|
|
14322
|
+
door_id?: string | undefined;
|
|
14323
|
+
ext_door_id?: string | undefined;
|
|
14303
14324
|
door_description?: string | undefined;
|
|
14325
|
+
room_name?: string | undefined;
|
|
14326
|
+
room_description?: string | undefined;
|
|
14304
14327
|
}>>;
|
|
14305
14328
|
} & {
|
|
14306
14329
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14354,9 +14377,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14354
14377
|
access_point_name: string;
|
|
14355
14378
|
} | undefined;
|
|
14356
14379
|
salto_space_metadata?: {
|
|
14357
|
-
door_name
|
|
14358
|
-
|
|
14380
|
+
door_name?: string | undefined;
|
|
14381
|
+
door_id?: string | undefined;
|
|
14382
|
+
ext_door_id?: string | undefined;
|
|
14359
14383
|
door_description?: string | undefined;
|
|
14384
|
+
room_name?: string | undefined;
|
|
14385
|
+
room_description?: string | undefined;
|
|
14360
14386
|
} | undefined;
|
|
14361
14387
|
}, {
|
|
14362
14388
|
display_name: string;
|
|
@@ -14406,9 +14432,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14406
14432
|
access_point_name: string;
|
|
14407
14433
|
} | undefined;
|
|
14408
14434
|
salto_space_metadata?: {
|
|
14409
|
-
door_name
|
|
14410
|
-
|
|
14435
|
+
door_name?: string | undefined;
|
|
14436
|
+
door_id?: string | undefined;
|
|
14437
|
+
ext_door_id?: string | undefined;
|
|
14411
14438
|
door_description?: string | undefined;
|
|
14439
|
+
room_name?: string | undefined;
|
|
14440
|
+
room_description?: string | undefined;
|
|
14412
14441
|
} | undefined;
|
|
14413
14442
|
}>, "many">>;
|
|
14414
14443
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14629,7 +14658,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14629
14658
|
status: "critical" | "low" | "good" | "full";
|
|
14630
14659
|
level: number;
|
|
14631
14660
|
} | undefined;
|
|
14632
|
-
manufacturer?: string | undefined;
|
|
14633
14661
|
battery_level?: number | undefined;
|
|
14634
14662
|
serial_number?: string | undefined;
|
|
14635
14663
|
accessory_keypad?: {
|
|
@@ -14639,6 +14667,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14639
14667
|
} | undefined;
|
|
14640
14668
|
} | undefined;
|
|
14641
14669
|
has_direct_power?: boolean | undefined;
|
|
14670
|
+
manufacturer?: string | undefined;
|
|
14642
14671
|
image_url?: string | undefined;
|
|
14643
14672
|
image_alt_text?: string | undefined;
|
|
14644
14673
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -14664,9 +14693,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14664
14693
|
ecobee_device_id: string;
|
|
14665
14694
|
} | undefined;
|
|
14666
14695
|
salto_ks_metadata?: {
|
|
14667
|
-
lock_type: string;
|
|
14668
14696
|
lock_id: string;
|
|
14669
14697
|
customer_reference: string;
|
|
14698
|
+
lock_type: string;
|
|
14670
14699
|
battery_level: string;
|
|
14671
14700
|
locked_state: string;
|
|
14672
14701
|
model?: string | undefined;
|
|
@@ -14718,9 +14747,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14718
14747
|
model_number: string;
|
|
14719
14748
|
} | undefined;
|
|
14720
14749
|
salto_metadata?: {
|
|
14721
|
-
lock_type: string;
|
|
14722
14750
|
lock_id: string;
|
|
14723
14751
|
customer_reference: string;
|
|
14752
|
+
lock_type: string;
|
|
14724
14753
|
battery_level: string;
|
|
14725
14754
|
locked_state: string;
|
|
14726
14755
|
model?: string | undefined;
|
|
@@ -14739,8 +14768,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14739
14768
|
} | undefined;
|
|
14740
14769
|
noiseaware_metadata?: {
|
|
14741
14770
|
device_id: string;
|
|
14742
|
-
device_model: "indoor" | "outdoor";
|
|
14743
14771
|
device_name: string;
|
|
14772
|
+
device_model: "indoor" | "outdoor";
|
|
14744
14773
|
noise_level_nrs: number;
|
|
14745
14774
|
noise_level_decibel: number;
|
|
14746
14775
|
} | undefined;
|
|
@@ -14789,12 +14818,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14789
14818
|
lock_alias: string;
|
|
14790
14819
|
feature_value: string;
|
|
14791
14820
|
features: {
|
|
14792
|
-
wifi: boolean;
|
|
14793
14821
|
passcode: boolean;
|
|
14794
14822
|
passcode_management: boolean;
|
|
14795
14823
|
unlock_via_gateway: boolean;
|
|
14796
14824
|
lock_command: boolean;
|
|
14797
14825
|
incomplete_keyboard_passcode: boolean;
|
|
14826
|
+
wifi: boolean;
|
|
14798
14827
|
};
|
|
14799
14828
|
has_gateway?: boolean | undefined;
|
|
14800
14829
|
wireless_keypads?: {
|
|
@@ -14863,9 +14892,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14863
14892
|
} | undefined;
|
|
14864
14893
|
tedee_metadata?: {
|
|
14865
14894
|
device_id: number;
|
|
14866
|
-
device_model: string;
|
|
14867
14895
|
device_name: string;
|
|
14868
14896
|
bridge_id: number;
|
|
14897
|
+
device_model: string;
|
|
14869
14898
|
bridge_name: string;
|
|
14870
14899
|
serial_number: string;
|
|
14871
14900
|
keypad_id?: number | undefined;
|
|
@@ -15107,9 +15136,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15107
15136
|
access_point_name: string;
|
|
15108
15137
|
} | undefined;
|
|
15109
15138
|
salto_space_metadata?: {
|
|
15110
|
-
door_name
|
|
15111
|
-
|
|
15139
|
+
door_name?: string | undefined;
|
|
15140
|
+
door_id?: string | undefined;
|
|
15141
|
+
ext_door_id?: string | undefined;
|
|
15112
15142
|
door_description?: string | undefined;
|
|
15143
|
+
room_name?: string | undefined;
|
|
15144
|
+
room_description?: string | undefined;
|
|
15113
15145
|
} | undefined;
|
|
15114
15146
|
}[] | undefined;
|
|
15115
15147
|
}, {
|
|
@@ -15330,7 +15362,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15330
15362
|
status: "critical" | "low" | "good" | "full";
|
|
15331
15363
|
level: number;
|
|
15332
15364
|
} | undefined;
|
|
15333
|
-
manufacturer?: string | undefined;
|
|
15334
15365
|
battery_level?: number | undefined;
|
|
15335
15366
|
serial_number?: string | undefined;
|
|
15336
15367
|
accessory_keypad?: {
|
|
@@ -15340,6 +15371,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15340
15371
|
} | undefined;
|
|
15341
15372
|
} | undefined;
|
|
15342
15373
|
has_direct_power?: boolean | undefined;
|
|
15374
|
+
manufacturer?: string | undefined;
|
|
15343
15375
|
image_url?: string | undefined;
|
|
15344
15376
|
image_alt_text?: string | undefined;
|
|
15345
15377
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -15365,9 +15397,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15365
15397
|
ecobee_device_id: string;
|
|
15366
15398
|
} | undefined;
|
|
15367
15399
|
salto_ks_metadata?: {
|
|
15368
|
-
lock_type: string;
|
|
15369
15400
|
lock_id: string;
|
|
15370
15401
|
customer_reference: string;
|
|
15402
|
+
lock_type: string;
|
|
15371
15403
|
battery_level: string;
|
|
15372
15404
|
locked_state: string;
|
|
15373
15405
|
model?: string | undefined;
|
|
@@ -15419,9 +15451,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15419
15451
|
model_number: string;
|
|
15420
15452
|
} | undefined;
|
|
15421
15453
|
salto_metadata?: {
|
|
15422
|
-
lock_type: string;
|
|
15423
15454
|
lock_id: string;
|
|
15424
15455
|
customer_reference: string;
|
|
15456
|
+
lock_type: string;
|
|
15425
15457
|
battery_level: string;
|
|
15426
15458
|
locked_state: string;
|
|
15427
15459
|
model?: string | undefined;
|
|
@@ -15440,8 +15472,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15440
15472
|
} | undefined;
|
|
15441
15473
|
noiseaware_metadata?: {
|
|
15442
15474
|
device_id: string;
|
|
15443
|
-
device_model: "indoor" | "outdoor";
|
|
15444
15475
|
device_name: string;
|
|
15476
|
+
device_model: "indoor" | "outdoor";
|
|
15445
15477
|
noise_level_nrs: number;
|
|
15446
15478
|
noise_level_decibel: number;
|
|
15447
15479
|
} | undefined;
|
|
@@ -15490,12 +15522,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15490
15522
|
lock_alias: string;
|
|
15491
15523
|
feature_value: string;
|
|
15492
15524
|
features: {
|
|
15493
|
-
wifi: boolean;
|
|
15494
15525
|
passcode: boolean;
|
|
15495
15526
|
passcode_management: boolean;
|
|
15496
15527
|
unlock_via_gateway: boolean;
|
|
15497
15528
|
lock_command: boolean;
|
|
15498
15529
|
incomplete_keyboard_passcode: boolean;
|
|
15530
|
+
wifi: boolean;
|
|
15499
15531
|
};
|
|
15500
15532
|
has_gateway?: boolean | undefined;
|
|
15501
15533
|
wireless_keypads?: {
|
|
@@ -15564,9 +15596,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15564
15596
|
} | undefined;
|
|
15565
15597
|
tedee_metadata?: {
|
|
15566
15598
|
device_id: number;
|
|
15567
|
-
device_model: string;
|
|
15568
15599
|
device_name: string;
|
|
15569
15600
|
bridge_id: number;
|
|
15601
|
+
device_model: string;
|
|
15570
15602
|
bridge_name: string;
|
|
15571
15603
|
serial_number: string;
|
|
15572
15604
|
keypad_id?: number | undefined;
|
|
@@ -15808,9 +15840,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15808
15840
|
access_point_name: string;
|
|
15809
15841
|
} | undefined;
|
|
15810
15842
|
salto_space_metadata?: {
|
|
15811
|
-
door_name
|
|
15812
|
-
|
|
15843
|
+
door_name?: string | undefined;
|
|
15844
|
+
door_id?: string | undefined;
|
|
15845
|
+
ext_door_id?: string | undefined;
|
|
15813
15846
|
door_description?: string | undefined;
|
|
15847
|
+
room_name?: string | undefined;
|
|
15848
|
+
room_description?: string | undefined;
|
|
15814
15849
|
} | undefined;
|
|
15815
15850
|
}[] | undefined;
|
|
15816
15851
|
}>, z.ZodObject<{
|
|
@@ -15945,7 +15980,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15945
15980
|
status: "critical" | "low" | "good" | "full";
|
|
15946
15981
|
level: number;
|
|
15947
15982
|
} | undefined;
|
|
15948
|
-
manufacturer?: string | undefined;
|
|
15949
15983
|
battery_level?: number | undefined;
|
|
15950
15984
|
serial_number?: string | undefined;
|
|
15951
15985
|
accessory_keypad?: {
|
|
@@ -15955,6 +15989,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15955
15989
|
} | undefined;
|
|
15956
15990
|
} | undefined;
|
|
15957
15991
|
has_direct_power?: boolean | undefined;
|
|
15992
|
+
manufacturer?: string | undefined;
|
|
15958
15993
|
image_url?: string | undefined;
|
|
15959
15994
|
image_alt_text?: string | undefined;
|
|
15960
15995
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -15982,7 +16017,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15982
16017
|
status: "critical" | "low" | "good" | "full";
|
|
15983
16018
|
level: number;
|
|
15984
16019
|
} | undefined;
|
|
15985
|
-
manufacturer?: string | undefined;
|
|
15986
16020
|
battery_level?: number | undefined;
|
|
15987
16021
|
serial_number?: string | undefined;
|
|
15988
16022
|
accessory_keypad?: {
|
|
@@ -15992,6 +16026,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15992
16026
|
} | undefined;
|
|
15993
16027
|
} | undefined;
|
|
15994
16028
|
has_direct_power?: boolean | undefined;
|
|
16029
|
+
manufacturer?: string | undefined;
|
|
15995
16030
|
image_url?: string | undefined;
|
|
15996
16031
|
image_alt_text?: string | undefined;
|
|
15997
16032
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -16188,16 +16223,16 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16188
16223
|
locked_state: z.ZodString;
|
|
16189
16224
|
model: z.ZodOptional<z.ZodString>;
|
|
16190
16225
|
}, "strip", z.ZodTypeAny, {
|
|
16191
|
-
lock_type: string;
|
|
16192
16226
|
lock_id: string;
|
|
16193
16227
|
customer_reference: string;
|
|
16228
|
+
lock_type: string;
|
|
16194
16229
|
battery_level: string;
|
|
16195
16230
|
locked_state: string;
|
|
16196
16231
|
model?: string | undefined;
|
|
16197
16232
|
}, {
|
|
16198
|
-
lock_type: string;
|
|
16199
16233
|
lock_id: string;
|
|
16200
16234
|
customer_reference: string;
|
|
16235
|
+
lock_type: string;
|
|
16201
16236
|
battery_level: string;
|
|
16202
16237
|
locked_state: string;
|
|
16203
16238
|
model?: string | undefined;
|
|
@@ -16210,16 +16245,16 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16210
16245
|
locked_state: z.ZodString;
|
|
16211
16246
|
model: z.ZodOptional<z.ZodString>;
|
|
16212
16247
|
}, "strip", z.ZodTypeAny, {
|
|
16213
|
-
lock_type: string;
|
|
16214
16248
|
lock_id: string;
|
|
16215
16249
|
customer_reference: string;
|
|
16250
|
+
lock_type: string;
|
|
16216
16251
|
battery_level: string;
|
|
16217
16252
|
locked_state: string;
|
|
16218
16253
|
model?: string | undefined;
|
|
16219
16254
|
}, {
|
|
16220
|
-
lock_type: string;
|
|
16221
16255
|
lock_id: string;
|
|
16222
16256
|
customer_reference: string;
|
|
16257
|
+
lock_type: string;
|
|
16223
16258
|
battery_level: string;
|
|
16224
16259
|
locked_state: string;
|
|
16225
16260
|
model?: string | undefined;
|
|
@@ -16262,14 +16297,14 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16262
16297
|
device_id: z.ZodString;
|
|
16263
16298
|
}, "strip", z.ZodTypeAny, {
|
|
16264
16299
|
device_id: string;
|
|
16265
|
-
device_model: "indoor" | "outdoor";
|
|
16266
16300
|
device_name: string;
|
|
16301
|
+
device_model: "indoor" | "outdoor";
|
|
16267
16302
|
noise_level_nrs: number;
|
|
16268
16303
|
noise_level_decibel: number;
|
|
16269
16304
|
}, {
|
|
16270
16305
|
device_id: string;
|
|
16271
|
-
device_model: "indoor" | "outdoor";
|
|
16272
16306
|
device_name: string;
|
|
16307
|
+
device_model: "indoor" | "outdoor";
|
|
16273
16308
|
noise_level_nrs: number;
|
|
16274
16309
|
noise_level_decibel: number;
|
|
16275
16310
|
}>>;
|
|
@@ -16469,19 +16504,19 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16469
16504
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
16470
16505
|
wifi: z.ZodBoolean;
|
|
16471
16506
|
}, "strip", z.ZodTypeAny, {
|
|
16472
|
-
wifi: boolean;
|
|
16473
16507
|
passcode: boolean;
|
|
16474
16508
|
passcode_management: boolean;
|
|
16475
16509
|
unlock_via_gateway: boolean;
|
|
16476
16510
|
lock_command: boolean;
|
|
16477
16511
|
incomplete_keyboard_passcode: boolean;
|
|
16478
|
-
}, {
|
|
16479
16512
|
wifi: boolean;
|
|
16513
|
+
}, {
|
|
16480
16514
|
passcode: boolean;
|
|
16481
16515
|
passcode_management: boolean;
|
|
16482
16516
|
unlock_via_gateway: boolean;
|
|
16483
16517
|
lock_command: boolean;
|
|
16484
16518
|
incomplete_keyboard_passcode: boolean;
|
|
16519
|
+
wifi: boolean;
|
|
16485
16520
|
}>;
|
|
16486
16521
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
16487
16522
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -16499,12 +16534,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16499
16534
|
lock_alias: string;
|
|
16500
16535
|
feature_value: string;
|
|
16501
16536
|
features: {
|
|
16502
|
-
wifi: boolean;
|
|
16503
16537
|
passcode: boolean;
|
|
16504
16538
|
passcode_management: boolean;
|
|
16505
16539
|
unlock_via_gateway: boolean;
|
|
16506
16540
|
lock_command: boolean;
|
|
16507
16541
|
incomplete_keyboard_passcode: boolean;
|
|
16542
|
+
wifi: boolean;
|
|
16508
16543
|
};
|
|
16509
16544
|
has_gateway?: boolean | undefined;
|
|
16510
16545
|
wireless_keypads?: {
|
|
@@ -16516,12 +16551,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16516
16551
|
lock_alias: string;
|
|
16517
16552
|
feature_value: string;
|
|
16518
16553
|
features: {
|
|
16519
|
-
wifi: boolean;
|
|
16520
16554
|
passcode: boolean;
|
|
16521
16555
|
passcode_management: boolean;
|
|
16522
16556
|
unlock_via_gateway: boolean;
|
|
16523
16557
|
lock_command: boolean;
|
|
16524
16558
|
incomplete_keyboard_passcode: boolean;
|
|
16559
|
+
wifi: boolean;
|
|
16525
16560
|
};
|
|
16526
16561
|
has_gateway?: boolean | undefined;
|
|
16527
16562
|
wireless_keypads?: {
|
|
@@ -16734,17 +16769,17 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16734
16769
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
16735
16770
|
}, "strip", z.ZodTypeAny, {
|
|
16736
16771
|
device_id: number;
|
|
16737
|
-
device_model: string;
|
|
16738
16772
|
device_name: string;
|
|
16739
16773
|
bridge_id: number;
|
|
16774
|
+
device_model: string;
|
|
16740
16775
|
bridge_name: string;
|
|
16741
16776
|
serial_number: string;
|
|
16742
16777
|
keypad_id?: number | undefined;
|
|
16743
16778
|
}, {
|
|
16744
16779
|
device_id: number;
|
|
16745
|
-
device_model: string;
|
|
16746
16780
|
device_name: string;
|
|
16747
16781
|
bridge_id: number;
|
|
16782
|
+
device_model: string;
|
|
16748
16783
|
bridge_name: string;
|
|
16749
16784
|
serial_number: string;
|
|
16750
16785
|
keypad_id?: number | undefined;
|
|
@@ -16808,9 +16843,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16808
16843
|
ecobee_device_id: string;
|
|
16809
16844
|
} | undefined;
|
|
16810
16845
|
salto_ks_metadata?: {
|
|
16811
|
-
lock_type: string;
|
|
16812
16846
|
lock_id: string;
|
|
16813
16847
|
customer_reference: string;
|
|
16848
|
+
lock_type: string;
|
|
16814
16849
|
battery_level: string;
|
|
16815
16850
|
locked_state: string;
|
|
16816
16851
|
model?: string | undefined;
|
|
@@ -16862,9 +16897,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16862
16897
|
model_number: string;
|
|
16863
16898
|
} | undefined;
|
|
16864
16899
|
salto_metadata?: {
|
|
16865
|
-
lock_type: string;
|
|
16866
16900
|
lock_id: string;
|
|
16867
16901
|
customer_reference: string;
|
|
16902
|
+
lock_type: string;
|
|
16868
16903
|
battery_level: string;
|
|
16869
16904
|
locked_state: string;
|
|
16870
16905
|
model?: string | undefined;
|
|
@@ -16883,8 +16918,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16883
16918
|
} | undefined;
|
|
16884
16919
|
noiseaware_metadata?: {
|
|
16885
16920
|
device_id: string;
|
|
16886
|
-
device_model: "indoor" | "outdoor";
|
|
16887
16921
|
device_name: string;
|
|
16922
|
+
device_model: "indoor" | "outdoor";
|
|
16888
16923
|
noise_level_nrs: number;
|
|
16889
16924
|
noise_level_decibel: number;
|
|
16890
16925
|
} | undefined;
|
|
@@ -16933,12 +16968,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16933
16968
|
lock_alias: string;
|
|
16934
16969
|
feature_value: string;
|
|
16935
16970
|
features: {
|
|
16936
|
-
wifi: boolean;
|
|
16937
16971
|
passcode: boolean;
|
|
16938
16972
|
passcode_management: boolean;
|
|
16939
16973
|
unlock_via_gateway: boolean;
|
|
16940
16974
|
lock_command: boolean;
|
|
16941
16975
|
incomplete_keyboard_passcode: boolean;
|
|
16976
|
+
wifi: boolean;
|
|
16942
16977
|
};
|
|
16943
16978
|
has_gateway?: boolean | undefined;
|
|
16944
16979
|
wireless_keypads?: {
|
|
@@ -17007,9 +17042,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17007
17042
|
} | undefined;
|
|
17008
17043
|
tedee_metadata?: {
|
|
17009
17044
|
device_id: number;
|
|
17010
|
-
device_model: string;
|
|
17011
17045
|
device_name: string;
|
|
17012
17046
|
bridge_id: number;
|
|
17047
|
+
device_model: string;
|
|
17013
17048
|
bridge_name: string;
|
|
17014
17049
|
serial_number: string;
|
|
17015
17050
|
keypad_id?: number | undefined;
|
|
@@ -17041,9 +17076,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17041
17076
|
ecobee_device_id: string;
|
|
17042
17077
|
} | undefined;
|
|
17043
17078
|
salto_ks_metadata?: {
|
|
17044
|
-
lock_type: string;
|
|
17045
17079
|
lock_id: string;
|
|
17046
17080
|
customer_reference: string;
|
|
17081
|
+
lock_type: string;
|
|
17047
17082
|
battery_level: string;
|
|
17048
17083
|
locked_state: string;
|
|
17049
17084
|
model?: string | undefined;
|
|
@@ -17095,9 +17130,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17095
17130
|
model_number: string;
|
|
17096
17131
|
} | undefined;
|
|
17097
17132
|
salto_metadata?: {
|
|
17098
|
-
lock_type: string;
|
|
17099
17133
|
lock_id: string;
|
|
17100
17134
|
customer_reference: string;
|
|
17135
|
+
lock_type: string;
|
|
17101
17136
|
battery_level: string;
|
|
17102
17137
|
locked_state: string;
|
|
17103
17138
|
model?: string | undefined;
|
|
@@ -17116,8 +17151,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17116
17151
|
} | undefined;
|
|
17117
17152
|
noiseaware_metadata?: {
|
|
17118
17153
|
device_id: string;
|
|
17119
|
-
device_model: "indoor" | "outdoor";
|
|
17120
17154
|
device_name: string;
|
|
17155
|
+
device_model: "indoor" | "outdoor";
|
|
17121
17156
|
noise_level_nrs: number;
|
|
17122
17157
|
noise_level_decibel: number;
|
|
17123
17158
|
} | undefined;
|
|
@@ -17166,12 +17201,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17166
17201
|
lock_alias: string;
|
|
17167
17202
|
feature_value: string;
|
|
17168
17203
|
features: {
|
|
17169
|
-
wifi: boolean;
|
|
17170
17204
|
passcode: boolean;
|
|
17171
17205
|
passcode_management: boolean;
|
|
17172
17206
|
unlock_via_gateway: boolean;
|
|
17173
17207
|
lock_command: boolean;
|
|
17174
17208
|
incomplete_keyboard_passcode: boolean;
|
|
17209
|
+
wifi: boolean;
|
|
17175
17210
|
};
|
|
17176
17211
|
has_gateway?: boolean | undefined;
|
|
17177
17212
|
wireless_keypads?: {
|
|
@@ -17240,9 +17275,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17240
17275
|
} | undefined;
|
|
17241
17276
|
tedee_metadata?: {
|
|
17242
17277
|
device_id: number;
|
|
17243
|
-
device_model: string;
|
|
17244
17278
|
device_name: string;
|
|
17245
17279
|
bridge_id: number;
|
|
17280
|
+
device_model: string;
|
|
17246
17281
|
bridge_name: string;
|
|
17247
17282
|
serial_number: string;
|
|
17248
17283
|
keypad_id?: number | undefined;
|
|
@@ -18578,7 +18613,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
18578
18613
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
18579
18614
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
18580
18615
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
18581
|
-
} & {
|
|
18582
18616
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
18583
18617
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
18584
18618
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18789,7 +18823,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
18789
18823
|
status: "critical" | "low" | "good" | "full";
|
|
18790
18824
|
level: number;
|
|
18791
18825
|
} | undefined;
|
|
18792
|
-
manufacturer?: string | undefined;
|
|
18793
18826
|
battery_level?: number | undefined;
|
|
18794
18827
|
serial_number?: string | undefined;
|
|
18795
18828
|
accessory_keypad?: {
|
|
@@ -18799,6 +18832,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
18799
18832
|
} | undefined;
|
|
18800
18833
|
} | undefined;
|
|
18801
18834
|
has_direct_power?: boolean | undefined;
|
|
18835
|
+
manufacturer?: string | undefined;
|
|
18802
18836
|
image_url?: string | undefined;
|
|
18803
18837
|
image_alt_text?: string | undefined;
|
|
18804
18838
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -18824,9 +18858,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
18824
18858
|
ecobee_device_id: string;
|
|
18825
18859
|
} | undefined;
|
|
18826
18860
|
salto_ks_metadata?: {
|
|
18827
|
-
lock_type: string;
|
|
18828
18861
|
lock_id: string;
|
|
18829
18862
|
customer_reference: string;
|
|
18863
|
+
lock_type: string;
|
|
18830
18864
|
battery_level: string;
|
|
18831
18865
|
locked_state: string;
|
|
18832
18866
|
model?: string | undefined;
|
|
@@ -18878,9 +18912,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
18878
18912
|
model_number: string;
|
|
18879
18913
|
} | undefined;
|
|
18880
18914
|
salto_metadata?: {
|
|
18881
|
-
lock_type: string;
|
|
18882
18915
|
lock_id: string;
|
|
18883
18916
|
customer_reference: string;
|
|
18917
|
+
lock_type: string;
|
|
18884
18918
|
battery_level: string;
|
|
18885
18919
|
locked_state: string;
|
|
18886
18920
|
model?: string | undefined;
|
|
@@ -18899,8 +18933,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
18899
18933
|
} | undefined;
|
|
18900
18934
|
noiseaware_metadata?: {
|
|
18901
18935
|
device_id: string;
|
|
18902
|
-
device_model: "indoor" | "outdoor";
|
|
18903
18936
|
device_name: string;
|
|
18937
|
+
device_model: "indoor" | "outdoor";
|
|
18904
18938
|
noise_level_nrs: number;
|
|
18905
18939
|
noise_level_decibel: number;
|
|
18906
18940
|
} | undefined;
|
|
@@ -18949,12 +18983,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
18949
18983
|
lock_alias: string;
|
|
18950
18984
|
feature_value: string;
|
|
18951
18985
|
features: {
|
|
18952
|
-
wifi: boolean;
|
|
18953
18986
|
passcode: boolean;
|
|
18954
18987
|
passcode_management: boolean;
|
|
18955
18988
|
unlock_via_gateway: boolean;
|
|
18956
18989
|
lock_command: boolean;
|
|
18957
18990
|
incomplete_keyboard_passcode: boolean;
|
|
18991
|
+
wifi: boolean;
|
|
18958
18992
|
};
|
|
18959
18993
|
has_gateway?: boolean | undefined;
|
|
18960
18994
|
wireless_keypads?: {
|
|
@@ -19023,9 +19057,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19023
19057
|
} | undefined;
|
|
19024
19058
|
tedee_metadata?: {
|
|
19025
19059
|
device_id: number;
|
|
19026
|
-
device_model: string;
|
|
19027
19060
|
device_name: string;
|
|
19028
19061
|
bridge_id: number;
|
|
19062
|
+
device_model: string;
|
|
19029
19063
|
bridge_name: string;
|
|
19030
19064
|
serial_number: string;
|
|
19031
19065
|
keypad_id?: number | undefined;
|
|
@@ -19424,7 +19458,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19424
19458
|
status: "critical" | "low" | "good" | "full";
|
|
19425
19459
|
level: number;
|
|
19426
19460
|
} | undefined;
|
|
19427
|
-
manufacturer?: string | undefined;
|
|
19428
19461
|
battery_level?: number | undefined;
|
|
19429
19462
|
serial_number?: string | undefined;
|
|
19430
19463
|
accessory_keypad?: {
|
|
@@ -19434,6 +19467,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19434
19467
|
} | undefined;
|
|
19435
19468
|
} | undefined;
|
|
19436
19469
|
has_direct_power?: boolean | undefined;
|
|
19470
|
+
manufacturer?: string | undefined;
|
|
19437
19471
|
image_url?: string | undefined;
|
|
19438
19472
|
image_alt_text?: string | undefined;
|
|
19439
19473
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -19459,9 +19493,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19459
19493
|
ecobee_device_id: string;
|
|
19460
19494
|
} | undefined;
|
|
19461
19495
|
salto_ks_metadata?: {
|
|
19462
|
-
lock_type: string;
|
|
19463
19496
|
lock_id: string;
|
|
19464
19497
|
customer_reference: string;
|
|
19498
|
+
lock_type: string;
|
|
19465
19499
|
battery_level: string;
|
|
19466
19500
|
locked_state: string;
|
|
19467
19501
|
model?: string | undefined;
|
|
@@ -19513,9 +19547,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19513
19547
|
model_number: string;
|
|
19514
19548
|
} | undefined;
|
|
19515
19549
|
salto_metadata?: {
|
|
19516
|
-
lock_type: string;
|
|
19517
19550
|
lock_id: string;
|
|
19518
19551
|
customer_reference: string;
|
|
19552
|
+
lock_type: string;
|
|
19519
19553
|
battery_level: string;
|
|
19520
19554
|
locked_state: string;
|
|
19521
19555
|
model?: string | undefined;
|
|
@@ -19534,8 +19568,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19534
19568
|
} | undefined;
|
|
19535
19569
|
noiseaware_metadata?: {
|
|
19536
19570
|
device_id: string;
|
|
19537
|
-
device_model: "indoor" | "outdoor";
|
|
19538
19571
|
device_name: string;
|
|
19572
|
+
device_model: "indoor" | "outdoor";
|
|
19539
19573
|
noise_level_nrs: number;
|
|
19540
19574
|
noise_level_decibel: number;
|
|
19541
19575
|
} | undefined;
|
|
@@ -19584,12 +19618,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19584
19618
|
lock_alias: string;
|
|
19585
19619
|
feature_value: string;
|
|
19586
19620
|
features: {
|
|
19587
|
-
wifi: boolean;
|
|
19588
19621
|
passcode: boolean;
|
|
19589
19622
|
passcode_management: boolean;
|
|
19590
19623
|
unlock_via_gateway: boolean;
|
|
19591
19624
|
lock_command: boolean;
|
|
19592
19625
|
incomplete_keyboard_passcode: boolean;
|
|
19626
|
+
wifi: boolean;
|
|
19593
19627
|
};
|
|
19594
19628
|
has_gateway?: boolean | undefined;
|
|
19595
19629
|
wireless_keypads?: {
|
|
@@ -19658,9 +19692,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19658
19692
|
} | undefined;
|
|
19659
19693
|
tedee_metadata?: {
|
|
19660
19694
|
device_id: number;
|
|
19661
|
-
device_model: string;
|
|
19662
19695
|
device_name: string;
|
|
19663
19696
|
bridge_id: number;
|
|
19697
|
+
device_model: string;
|
|
19664
19698
|
bridge_name: string;
|
|
19665
19699
|
serial_number: string;
|
|
19666
19700
|
keypad_id?: number | undefined;
|
|
@@ -19969,17 +20003,26 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19969
20003
|
pms_id?: string | undefined;
|
|
19970
20004
|
}>>;
|
|
19971
20005
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
19972
|
-
|
|
19973
|
-
|
|
20006
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
20007
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
20008
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
19974
20009
|
door_description: z.ZodOptional<z.ZodString>;
|
|
20010
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
20011
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
19975
20012
|
}, "strip", z.ZodTypeAny, {
|
|
19976
|
-
door_name
|
|
19977
|
-
|
|
20013
|
+
door_name?: string | undefined;
|
|
20014
|
+
door_id?: string | undefined;
|
|
20015
|
+
ext_door_id?: string | undefined;
|
|
19978
20016
|
door_description?: string | undefined;
|
|
20017
|
+
room_name?: string | undefined;
|
|
20018
|
+
room_description?: string | undefined;
|
|
19979
20019
|
}, {
|
|
19980
|
-
door_name
|
|
19981
|
-
|
|
20020
|
+
door_name?: string | undefined;
|
|
20021
|
+
door_id?: string | undefined;
|
|
20022
|
+
ext_door_id?: string | undefined;
|
|
19982
20023
|
door_description?: string | undefined;
|
|
20024
|
+
room_name?: string | undefined;
|
|
20025
|
+
room_description?: string | undefined;
|
|
19983
20026
|
}>>;
|
|
19984
20027
|
} & {
|
|
19985
20028
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -20033,9 +20076,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20033
20076
|
access_point_name: string;
|
|
20034
20077
|
} | undefined;
|
|
20035
20078
|
salto_space_metadata?: {
|
|
20036
|
-
door_name
|
|
20037
|
-
|
|
20079
|
+
door_name?: string | undefined;
|
|
20080
|
+
door_id?: string | undefined;
|
|
20081
|
+
ext_door_id?: string | undefined;
|
|
20038
20082
|
door_description?: string | undefined;
|
|
20083
|
+
room_name?: string | undefined;
|
|
20084
|
+
room_description?: string | undefined;
|
|
20039
20085
|
} | undefined;
|
|
20040
20086
|
}, {
|
|
20041
20087
|
display_name: string;
|
|
@@ -20085,9 +20131,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20085
20131
|
access_point_name: string;
|
|
20086
20132
|
} | undefined;
|
|
20087
20133
|
salto_space_metadata?: {
|
|
20088
|
-
door_name
|
|
20089
|
-
|
|
20134
|
+
door_name?: string | undefined;
|
|
20135
|
+
door_id?: string | undefined;
|
|
20136
|
+
ext_door_id?: string | undefined;
|
|
20090
20137
|
door_description?: string | undefined;
|
|
20138
|
+
room_name?: string | undefined;
|
|
20139
|
+
room_description?: string | undefined;
|
|
20091
20140
|
} | undefined;
|
|
20092
20141
|
}>, "many">>;
|
|
20093
20142
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20308,7 +20357,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20308
20357
|
status: "critical" | "low" | "good" | "full";
|
|
20309
20358
|
level: number;
|
|
20310
20359
|
} | undefined;
|
|
20311
|
-
manufacturer?: string | undefined;
|
|
20312
20360
|
battery_level?: number | undefined;
|
|
20313
20361
|
serial_number?: string | undefined;
|
|
20314
20362
|
accessory_keypad?: {
|
|
@@ -20318,6 +20366,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20318
20366
|
} | undefined;
|
|
20319
20367
|
} | undefined;
|
|
20320
20368
|
has_direct_power?: boolean | undefined;
|
|
20369
|
+
manufacturer?: string | undefined;
|
|
20321
20370
|
image_url?: string | undefined;
|
|
20322
20371
|
image_alt_text?: string | undefined;
|
|
20323
20372
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -20343,9 +20392,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20343
20392
|
ecobee_device_id: string;
|
|
20344
20393
|
} | undefined;
|
|
20345
20394
|
salto_ks_metadata?: {
|
|
20346
|
-
lock_type: string;
|
|
20347
20395
|
lock_id: string;
|
|
20348
20396
|
customer_reference: string;
|
|
20397
|
+
lock_type: string;
|
|
20349
20398
|
battery_level: string;
|
|
20350
20399
|
locked_state: string;
|
|
20351
20400
|
model?: string | undefined;
|
|
@@ -20397,9 +20446,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20397
20446
|
model_number: string;
|
|
20398
20447
|
} | undefined;
|
|
20399
20448
|
salto_metadata?: {
|
|
20400
|
-
lock_type: string;
|
|
20401
20449
|
lock_id: string;
|
|
20402
20450
|
customer_reference: string;
|
|
20451
|
+
lock_type: string;
|
|
20403
20452
|
battery_level: string;
|
|
20404
20453
|
locked_state: string;
|
|
20405
20454
|
model?: string | undefined;
|
|
@@ -20418,8 +20467,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20418
20467
|
} | undefined;
|
|
20419
20468
|
noiseaware_metadata?: {
|
|
20420
20469
|
device_id: string;
|
|
20421
|
-
device_model: "indoor" | "outdoor";
|
|
20422
20470
|
device_name: string;
|
|
20471
|
+
device_model: "indoor" | "outdoor";
|
|
20423
20472
|
noise_level_nrs: number;
|
|
20424
20473
|
noise_level_decibel: number;
|
|
20425
20474
|
} | undefined;
|
|
@@ -20468,12 +20517,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20468
20517
|
lock_alias: string;
|
|
20469
20518
|
feature_value: string;
|
|
20470
20519
|
features: {
|
|
20471
|
-
wifi: boolean;
|
|
20472
20520
|
passcode: boolean;
|
|
20473
20521
|
passcode_management: boolean;
|
|
20474
20522
|
unlock_via_gateway: boolean;
|
|
20475
20523
|
lock_command: boolean;
|
|
20476
20524
|
incomplete_keyboard_passcode: boolean;
|
|
20525
|
+
wifi: boolean;
|
|
20477
20526
|
};
|
|
20478
20527
|
has_gateway?: boolean | undefined;
|
|
20479
20528
|
wireless_keypads?: {
|
|
@@ -20542,9 +20591,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20542
20591
|
} | undefined;
|
|
20543
20592
|
tedee_metadata?: {
|
|
20544
20593
|
device_id: number;
|
|
20545
|
-
device_model: string;
|
|
20546
20594
|
device_name: string;
|
|
20547
20595
|
bridge_id: number;
|
|
20596
|
+
device_model: string;
|
|
20548
20597
|
bridge_name: string;
|
|
20549
20598
|
serial_number: string;
|
|
20550
20599
|
keypad_id?: number | undefined;
|
|
@@ -20786,9 +20835,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20786
20835
|
access_point_name: string;
|
|
20787
20836
|
} | undefined;
|
|
20788
20837
|
salto_space_metadata?: {
|
|
20789
|
-
door_name
|
|
20790
|
-
|
|
20838
|
+
door_name?: string | undefined;
|
|
20839
|
+
door_id?: string | undefined;
|
|
20840
|
+
ext_door_id?: string | undefined;
|
|
20791
20841
|
door_description?: string | undefined;
|
|
20842
|
+
room_name?: string | undefined;
|
|
20843
|
+
room_description?: string | undefined;
|
|
20792
20844
|
} | undefined;
|
|
20793
20845
|
}[] | undefined;
|
|
20794
20846
|
}, {
|
|
@@ -21009,7 +21061,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21009
21061
|
status: "critical" | "low" | "good" | "full";
|
|
21010
21062
|
level: number;
|
|
21011
21063
|
} | undefined;
|
|
21012
|
-
manufacturer?: string | undefined;
|
|
21013
21064
|
battery_level?: number | undefined;
|
|
21014
21065
|
serial_number?: string | undefined;
|
|
21015
21066
|
accessory_keypad?: {
|
|
@@ -21019,6 +21070,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21019
21070
|
} | undefined;
|
|
21020
21071
|
} | undefined;
|
|
21021
21072
|
has_direct_power?: boolean | undefined;
|
|
21073
|
+
manufacturer?: string | undefined;
|
|
21022
21074
|
image_url?: string | undefined;
|
|
21023
21075
|
image_alt_text?: string | undefined;
|
|
21024
21076
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -21044,9 +21096,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21044
21096
|
ecobee_device_id: string;
|
|
21045
21097
|
} | undefined;
|
|
21046
21098
|
salto_ks_metadata?: {
|
|
21047
|
-
lock_type: string;
|
|
21048
21099
|
lock_id: string;
|
|
21049
21100
|
customer_reference: string;
|
|
21101
|
+
lock_type: string;
|
|
21050
21102
|
battery_level: string;
|
|
21051
21103
|
locked_state: string;
|
|
21052
21104
|
model?: string | undefined;
|
|
@@ -21098,9 +21150,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21098
21150
|
model_number: string;
|
|
21099
21151
|
} | undefined;
|
|
21100
21152
|
salto_metadata?: {
|
|
21101
|
-
lock_type: string;
|
|
21102
21153
|
lock_id: string;
|
|
21103
21154
|
customer_reference: string;
|
|
21155
|
+
lock_type: string;
|
|
21104
21156
|
battery_level: string;
|
|
21105
21157
|
locked_state: string;
|
|
21106
21158
|
model?: string | undefined;
|
|
@@ -21119,8 +21171,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21119
21171
|
} | undefined;
|
|
21120
21172
|
noiseaware_metadata?: {
|
|
21121
21173
|
device_id: string;
|
|
21122
|
-
device_model: "indoor" | "outdoor";
|
|
21123
21174
|
device_name: string;
|
|
21175
|
+
device_model: "indoor" | "outdoor";
|
|
21124
21176
|
noise_level_nrs: number;
|
|
21125
21177
|
noise_level_decibel: number;
|
|
21126
21178
|
} | undefined;
|
|
@@ -21169,12 +21221,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21169
21221
|
lock_alias: string;
|
|
21170
21222
|
feature_value: string;
|
|
21171
21223
|
features: {
|
|
21172
|
-
wifi: boolean;
|
|
21173
21224
|
passcode: boolean;
|
|
21174
21225
|
passcode_management: boolean;
|
|
21175
21226
|
unlock_via_gateway: boolean;
|
|
21176
21227
|
lock_command: boolean;
|
|
21177
21228
|
incomplete_keyboard_passcode: boolean;
|
|
21229
|
+
wifi: boolean;
|
|
21178
21230
|
};
|
|
21179
21231
|
has_gateway?: boolean | undefined;
|
|
21180
21232
|
wireless_keypads?: {
|
|
@@ -21243,9 +21295,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21243
21295
|
} | undefined;
|
|
21244
21296
|
tedee_metadata?: {
|
|
21245
21297
|
device_id: number;
|
|
21246
|
-
device_model: string;
|
|
21247
21298
|
device_name: string;
|
|
21248
21299
|
bridge_id: number;
|
|
21300
|
+
device_model: string;
|
|
21249
21301
|
bridge_name: string;
|
|
21250
21302
|
serial_number: string;
|
|
21251
21303
|
keypad_id?: number | undefined;
|
|
@@ -21487,9 +21539,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21487
21539
|
access_point_name: string;
|
|
21488
21540
|
} | undefined;
|
|
21489
21541
|
salto_space_metadata?: {
|
|
21490
|
-
door_name
|
|
21491
|
-
|
|
21542
|
+
door_name?: string | undefined;
|
|
21543
|
+
door_id?: string | undefined;
|
|
21544
|
+
ext_door_id?: string | undefined;
|
|
21492
21545
|
door_description?: string | undefined;
|
|
21546
|
+
room_name?: string | undefined;
|
|
21547
|
+
room_description?: string | undefined;
|
|
21493
21548
|
} | undefined;
|
|
21494
21549
|
}[] | undefined;
|
|
21495
21550
|
}>, z.ZodObject<{
|
|
@@ -21624,7 +21679,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21624
21679
|
status: "critical" | "low" | "good" | "full";
|
|
21625
21680
|
level: number;
|
|
21626
21681
|
} | undefined;
|
|
21627
|
-
manufacturer?: string | undefined;
|
|
21628
21682
|
battery_level?: number | undefined;
|
|
21629
21683
|
serial_number?: string | undefined;
|
|
21630
21684
|
accessory_keypad?: {
|
|
@@ -21634,6 +21688,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21634
21688
|
} | undefined;
|
|
21635
21689
|
} | undefined;
|
|
21636
21690
|
has_direct_power?: boolean | undefined;
|
|
21691
|
+
manufacturer?: string | undefined;
|
|
21637
21692
|
image_url?: string | undefined;
|
|
21638
21693
|
image_alt_text?: string | undefined;
|
|
21639
21694
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -21661,7 +21716,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21661
21716
|
status: "critical" | "low" | "good" | "full";
|
|
21662
21717
|
level: number;
|
|
21663
21718
|
} | undefined;
|
|
21664
|
-
manufacturer?: string | undefined;
|
|
21665
21719
|
battery_level?: number | undefined;
|
|
21666
21720
|
serial_number?: string | undefined;
|
|
21667
21721
|
accessory_keypad?: {
|
|
@@ -21671,6 +21725,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21671
21725
|
} | undefined;
|
|
21672
21726
|
} | undefined;
|
|
21673
21727
|
has_direct_power?: boolean | undefined;
|
|
21728
|
+
manufacturer?: string | undefined;
|
|
21674
21729
|
image_url?: string | undefined;
|
|
21675
21730
|
image_alt_text?: string | undefined;
|
|
21676
21731
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -21867,16 +21922,16 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21867
21922
|
locked_state: z.ZodString;
|
|
21868
21923
|
model: z.ZodOptional<z.ZodString>;
|
|
21869
21924
|
}, "strip", z.ZodTypeAny, {
|
|
21870
|
-
lock_type: string;
|
|
21871
21925
|
lock_id: string;
|
|
21872
21926
|
customer_reference: string;
|
|
21927
|
+
lock_type: string;
|
|
21873
21928
|
battery_level: string;
|
|
21874
21929
|
locked_state: string;
|
|
21875
21930
|
model?: string | undefined;
|
|
21876
21931
|
}, {
|
|
21877
|
-
lock_type: string;
|
|
21878
21932
|
lock_id: string;
|
|
21879
21933
|
customer_reference: string;
|
|
21934
|
+
lock_type: string;
|
|
21880
21935
|
battery_level: string;
|
|
21881
21936
|
locked_state: string;
|
|
21882
21937
|
model?: string | undefined;
|
|
@@ -21889,16 +21944,16 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21889
21944
|
locked_state: z.ZodString;
|
|
21890
21945
|
model: z.ZodOptional<z.ZodString>;
|
|
21891
21946
|
}, "strip", z.ZodTypeAny, {
|
|
21892
|
-
lock_type: string;
|
|
21893
21947
|
lock_id: string;
|
|
21894
21948
|
customer_reference: string;
|
|
21949
|
+
lock_type: string;
|
|
21895
21950
|
battery_level: string;
|
|
21896
21951
|
locked_state: string;
|
|
21897
21952
|
model?: string | undefined;
|
|
21898
21953
|
}, {
|
|
21899
|
-
lock_type: string;
|
|
21900
21954
|
lock_id: string;
|
|
21901
21955
|
customer_reference: string;
|
|
21956
|
+
lock_type: string;
|
|
21902
21957
|
battery_level: string;
|
|
21903
21958
|
locked_state: string;
|
|
21904
21959
|
model?: string | undefined;
|
|
@@ -21941,14 +21996,14 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21941
21996
|
device_id: z.ZodString;
|
|
21942
21997
|
}, "strip", z.ZodTypeAny, {
|
|
21943
21998
|
device_id: string;
|
|
21944
|
-
device_model: "indoor" | "outdoor";
|
|
21945
21999
|
device_name: string;
|
|
22000
|
+
device_model: "indoor" | "outdoor";
|
|
21946
22001
|
noise_level_nrs: number;
|
|
21947
22002
|
noise_level_decibel: number;
|
|
21948
22003
|
}, {
|
|
21949
22004
|
device_id: string;
|
|
21950
|
-
device_model: "indoor" | "outdoor";
|
|
21951
22005
|
device_name: string;
|
|
22006
|
+
device_model: "indoor" | "outdoor";
|
|
21952
22007
|
noise_level_nrs: number;
|
|
21953
22008
|
noise_level_decibel: number;
|
|
21954
22009
|
}>>;
|
|
@@ -22148,19 +22203,19 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22148
22203
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
22149
22204
|
wifi: z.ZodBoolean;
|
|
22150
22205
|
}, "strip", z.ZodTypeAny, {
|
|
22151
|
-
wifi: boolean;
|
|
22152
22206
|
passcode: boolean;
|
|
22153
22207
|
passcode_management: boolean;
|
|
22154
22208
|
unlock_via_gateway: boolean;
|
|
22155
22209
|
lock_command: boolean;
|
|
22156
22210
|
incomplete_keyboard_passcode: boolean;
|
|
22157
|
-
}, {
|
|
22158
22211
|
wifi: boolean;
|
|
22212
|
+
}, {
|
|
22159
22213
|
passcode: boolean;
|
|
22160
22214
|
passcode_management: boolean;
|
|
22161
22215
|
unlock_via_gateway: boolean;
|
|
22162
22216
|
lock_command: boolean;
|
|
22163
22217
|
incomplete_keyboard_passcode: boolean;
|
|
22218
|
+
wifi: boolean;
|
|
22164
22219
|
}>;
|
|
22165
22220
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
22166
22221
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -22178,12 +22233,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22178
22233
|
lock_alias: string;
|
|
22179
22234
|
feature_value: string;
|
|
22180
22235
|
features: {
|
|
22181
|
-
wifi: boolean;
|
|
22182
22236
|
passcode: boolean;
|
|
22183
22237
|
passcode_management: boolean;
|
|
22184
22238
|
unlock_via_gateway: boolean;
|
|
22185
22239
|
lock_command: boolean;
|
|
22186
22240
|
incomplete_keyboard_passcode: boolean;
|
|
22241
|
+
wifi: boolean;
|
|
22187
22242
|
};
|
|
22188
22243
|
has_gateway?: boolean | undefined;
|
|
22189
22244
|
wireless_keypads?: {
|
|
@@ -22195,12 +22250,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22195
22250
|
lock_alias: string;
|
|
22196
22251
|
feature_value: string;
|
|
22197
22252
|
features: {
|
|
22198
|
-
wifi: boolean;
|
|
22199
22253
|
passcode: boolean;
|
|
22200
22254
|
passcode_management: boolean;
|
|
22201
22255
|
unlock_via_gateway: boolean;
|
|
22202
22256
|
lock_command: boolean;
|
|
22203
22257
|
incomplete_keyboard_passcode: boolean;
|
|
22258
|
+
wifi: boolean;
|
|
22204
22259
|
};
|
|
22205
22260
|
has_gateway?: boolean | undefined;
|
|
22206
22261
|
wireless_keypads?: {
|
|
@@ -22413,17 +22468,17 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22413
22468
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
22414
22469
|
}, "strip", z.ZodTypeAny, {
|
|
22415
22470
|
device_id: number;
|
|
22416
|
-
device_model: string;
|
|
22417
22471
|
device_name: string;
|
|
22418
22472
|
bridge_id: number;
|
|
22473
|
+
device_model: string;
|
|
22419
22474
|
bridge_name: string;
|
|
22420
22475
|
serial_number: string;
|
|
22421
22476
|
keypad_id?: number | undefined;
|
|
22422
22477
|
}, {
|
|
22423
22478
|
device_id: number;
|
|
22424
|
-
device_model: string;
|
|
22425
22479
|
device_name: string;
|
|
22426
22480
|
bridge_id: number;
|
|
22481
|
+
device_model: string;
|
|
22427
22482
|
bridge_name: string;
|
|
22428
22483
|
serial_number: string;
|
|
22429
22484
|
keypad_id?: number | undefined;
|
|
@@ -22487,9 +22542,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22487
22542
|
ecobee_device_id: string;
|
|
22488
22543
|
} | undefined;
|
|
22489
22544
|
salto_ks_metadata?: {
|
|
22490
|
-
lock_type: string;
|
|
22491
22545
|
lock_id: string;
|
|
22492
22546
|
customer_reference: string;
|
|
22547
|
+
lock_type: string;
|
|
22493
22548
|
battery_level: string;
|
|
22494
22549
|
locked_state: string;
|
|
22495
22550
|
model?: string | undefined;
|
|
@@ -22541,9 +22596,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22541
22596
|
model_number: string;
|
|
22542
22597
|
} | undefined;
|
|
22543
22598
|
salto_metadata?: {
|
|
22544
|
-
lock_type: string;
|
|
22545
22599
|
lock_id: string;
|
|
22546
22600
|
customer_reference: string;
|
|
22601
|
+
lock_type: string;
|
|
22547
22602
|
battery_level: string;
|
|
22548
22603
|
locked_state: string;
|
|
22549
22604
|
model?: string | undefined;
|
|
@@ -22562,8 +22617,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22562
22617
|
} | undefined;
|
|
22563
22618
|
noiseaware_metadata?: {
|
|
22564
22619
|
device_id: string;
|
|
22565
|
-
device_model: "indoor" | "outdoor";
|
|
22566
22620
|
device_name: string;
|
|
22621
|
+
device_model: "indoor" | "outdoor";
|
|
22567
22622
|
noise_level_nrs: number;
|
|
22568
22623
|
noise_level_decibel: number;
|
|
22569
22624
|
} | undefined;
|
|
@@ -22612,12 +22667,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22612
22667
|
lock_alias: string;
|
|
22613
22668
|
feature_value: string;
|
|
22614
22669
|
features: {
|
|
22615
|
-
wifi: boolean;
|
|
22616
22670
|
passcode: boolean;
|
|
22617
22671
|
passcode_management: boolean;
|
|
22618
22672
|
unlock_via_gateway: boolean;
|
|
22619
22673
|
lock_command: boolean;
|
|
22620
22674
|
incomplete_keyboard_passcode: boolean;
|
|
22675
|
+
wifi: boolean;
|
|
22621
22676
|
};
|
|
22622
22677
|
has_gateway?: boolean | undefined;
|
|
22623
22678
|
wireless_keypads?: {
|
|
@@ -22686,9 +22741,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22686
22741
|
} | undefined;
|
|
22687
22742
|
tedee_metadata?: {
|
|
22688
22743
|
device_id: number;
|
|
22689
|
-
device_model: string;
|
|
22690
22744
|
device_name: string;
|
|
22691
22745
|
bridge_id: number;
|
|
22746
|
+
device_model: string;
|
|
22692
22747
|
bridge_name: string;
|
|
22693
22748
|
serial_number: string;
|
|
22694
22749
|
keypad_id?: number | undefined;
|
|
@@ -22720,9 +22775,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22720
22775
|
ecobee_device_id: string;
|
|
22721
22776
|
} | undefined;
|
|
22722
22777
|
salto_ks_metadata?: {
|
|
22723
|
-
lock_type: string;
|
|
22724
22778
|
lock_id: string;
|
|
22725
22779
|
customer_reference: string;
|
|
22780
|
+
lock_type: string;
|
|
22726
22781
|
battery_level: string;
|
|
22727
22782
|
locked_state: string;
|
|
22728
22783
|
model?: string | undefined;
|
|
@@ -22774,9 +22829,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22774
22829
|
model_number: string;
|
|
22775
22830
|
} | undefined;
|
|
22776
22831
|
salto_metadata?: {
|
|
22777
|
-
lock_type: string;
|
|
22778
22832
|
lock_id: string;
|
|
22779
22833
|
customer_reference: string;
|
|
22834
|
+
lock_type: string;
|
|
22780
22835
|
battery_level: string;
|
|
22781
22836
|
locked_state: string;
|
|
22782
22837
|
model?: string | undefined;
|
|
@@ -22795,8 +22850,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22795
22850
|
} | undefined;
|
|
22796
22851
|
noiseaware_metadata?: {
|
|
22797
22852
|
device_id: string;
|
|
22798
|
-
device_model: "indoor" | "outdoor";
|
|
22799
22853
|
device_name: string;
|
|
22854
|
+
device_model: "indoor" | "outdoor";
|
|
22800
22855
|
noise_level_nrs: number;
|
|
22801
22856
|
noise_level_decibel: number;
|
|
22802
22857
|
} | undefined;
|
|
@@ -22845,12 +22900,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22845
22900
|
lock_alias: string;
|
|
22846
22901
|
feature_value: string;
|
|
22847
22902
|
features: {
|
|
22848
|
-
wifi: boolean;
|
|
22849
22903
|
passcode: boolean;
|
|
22850
22904
|
passcode_management: boolean;
|
|
22851
22905
|
unlock_via_gateway: boolean;
|
|
22852
22906
|
lock_command: boolean;
|
|
22853
22907
|
incomplete_keyboard_passcode: boolean;
|
|
22908
|
+
wifi: boolean;
|
|
22854
22909
|
};
|
|
22855
22910
|
has_gateway?: boolean | undefined;
|
|
22856
22911
|
wireless_keypads?: {
|
|
@@ -22919,9 +22974,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
22919
22974
|
} | undefined;
|
|
22920
22975
|
tedee_metadata?: {
|
|
22921
22976
|
device_id: number;
|
|
22922
|
-
device_model: string;
|
|
22923
22977
|
device_name: string;
|
|
22924
22978
|
bridge_id: number;
|
|
22979
|
+
device_model: string;
|
|
22925
22980
|
bridge_name: string;
|
|
22926
22981
|
serial_number: string;
|
|
22927
22982
|
keypad_id?: number | undefined;
|
|
@@ -24257,7 +24312,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24257
24312
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
24258
24313
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
24259
24314
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
24260
|
-
} & {
|
|
24261
24315
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
24262
24316
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
24263
24317
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24468,7 +24522,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24468
24522
|
status: "critical" | "low" | "good" | "full";
|
|
24469
24523
|
level: number;
|
|
24470
24524
|
} | undefined;
|
|
24471
|
-
manufacturer?: string | undefined;
|
|
24472
24525
|
battery_level?: number | undefined;
|
|
24473
24526
|
serial_number?: string | undefined;
|
|
24474
24527
|
accessory_keypad?: {
|
|
@@ -24478,6 +24531,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24478
24531
|
} | undefined;
|
|
24479
24532
|
} | undefined;
|
|
24480
24533
|
has_direct_power?: boolean | undefined;
|
|
24534
|
+
manufacturer?: string | undefined;
|
|
24481
24535
|
image_url?: string | undefined;
|
|
24482
24536
|
image_alt_text?: string | undefined;
|
|
24483
24537
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -24503,9 +24557,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24503
24557
|
ecobee_device_id: string;
|
|
24504
24558
|
} | undefined;
|
|
24505
24559
|
salto_ks_metadata?: {
|
|
24506
|
-
lock_type: string;
|
|
24507
24560
|
lock_id: string;
|
|
24508
24561
|
customer_reference: string;
|
|
24562
|
+
lock_type: string;
|
|
24509
24563
|
battery_level: string;
|
|
24510
24564
|
locked_state: string;
|
|
24511
24565
|
model?: string | undefined;
|
|
@@ -24557,9 +24611,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24557
24611
|
model_number: string;
|
|
24558
24612
|
} | undefined;
|
|
24559
24613
|
salto_metadata?: {
|
|
24560
|
-
lock_type: string;
|
|
24561
24614
|
lock_id: string;
|
|
24562
24615
|
customer_reference: string;
|
|
24616
|
+
lock_type: string;
|
|
24563
24617
|
battery_level: string;
|
|
24564
24618
|
locked_state: string;
|
|
24565
24619
|
model?: string | undefined;
|
|
@@ -24578,8 +24632,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24578
24632
|
} | undefined;
|
|
24579
24633
|
noiseaware_metadata?: {
|
|
24580
24634
|
device_id: string;
|
|
24581
|
-
device_model: "indoor" | "outdoor";
|
|
24582
24635
|
device_name: string;
|
|
24636
|
+
device_model: "indoor" | "outdoor";
|
|
24583
24637
|
noise_level_nrs: number;
|
|
24584
24638
|
noise_level_decibel: number;
|
|
24585
24639
|
} | undefined;
|
|
@@ -24628,12 +24682,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24628
24682
|
lock_alias: string;
|
|
24629
24683
|
feature_value: string;
|
|
24630
24684
|
features: {
|
|
24631
|
-
wifi: boolean;
|
|
24632
24685
|
passcode: boolean;
|
|
24633
24686
|
passcode_management: boolean;
|
|
24634
24687
|
unlock_via_gateway: boolean;
|
|
24635
24688
|
lock_command: boolean;
|
|
24636
24689
|
incomplete_keyboard_passcode: boolean;
|
|
24690
|
+
wifi: boolean;
|
|
24637
24691
|
};
|
|
24638
24692
|
has_gateway?: boolean | undefined;
|
|
24639
24693
|
wireless_keypads?: {
|
|
@@ -24702,9 +24756,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
24702
24756
|
} | undefined;
|
|
24703
24757
|
tedee_metadata?: {
|
|
24704
24758
|
device_id: number;
|
|
24705
|
-
device_model: string;
|
|
24706
24759
|
device_name: string;
|
|
24707
24760
|
bridge_id: number;
|
|
24761
|
+
device_model: string;
|
|
24708
24762
|
bridge_name: string;
|
|
24709
24763
|
serial_number: string;
|
|
24710
24764
|
keypad_id?: number | undefined;
|
|
@@ -25103,7 +25157,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25103
25157
|
status: "critical" | "low" | "good" | "full";
|
|
25104
25158
|
level: number;
|
|
25105
25159
|
} | undefined;
|
|
25106
|
-
manufacturer?: string | undefined;
|
|
25107
25160
|
battery_level?: number | undefined;
|
|
25108
25161
|
serial_number?: string | undefined;
|
|
25109
25162
|
accessory_keypad?: {
|
|
@@ -25113,6 +25166,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25113
25166
|
} | undefined;
|
|
25114
25167
|
} | undefined;
|
|
25115
25168
|
has_direct_power?: boolean | undefined;
|
|
25169
|
+
manufacturer?: string | undefined;
|
|
25116
25170
|
image_url?: string | undefined;
|
|
25117
25171
|
image_alt_text?: string | undefined;
|
|
25118
25172
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -25138,9 +25192,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25138
25192
|
ecobee_device_id: string;
|
|
25139
25193
|
} | undefined;
|
|
25140
25194
|
salto_ks_metadata?: {
|
|
25141
|
-
lock_type: string;
|
|
25142
25195
|
lock_id: string;
|
|
25143
25196
|
customer_reference: string;
|
|
25197
|
+
lock_type: string;
|
|
25144
25198
|
battery_level: string;
|
|
25145
25199
|
locked_state: string;
|
|
25146
25200
|
model?: string | undefined;
|
|
@@ -25192,9 +25246,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25192
25246
|
model_number: string;
|
|
25193
25247
|
} | undefined;
|
|
25194
25248
|
salto_metadata?: {
|
|
25195
|
-
lock_type: string;
|
|
25196
25249
|
lock_id: string;
|
|
25197
25250
|
customer_reference: string;
|
|
25251
|
+
lock_type: string;
|
|
25198
25252
|
battery_level: string;
|
|
25199
25253
|
locked_state: string;
|
|
25200
25254
|
model?: string | undefined;
|
|
@@ -25213,8 +25267,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25213
25267
|
} | undefined;
|
|
25214
25268
|
noiseaware_metadata?: {
|
|
25215
25269
|
device_id: string;
|
|
25216
|
-
device_model: "indoor" | "outdoor";
|
|
25217
25270
|
device_name: string;
|
|
25271
|
+
device_model: "indoor" | "outdoor";
|
|
25218
25272
|
noise_level_nrs: number;
|
|
25219
25273
|
noise_level_decibel: number;
|
|
25220
25274
|
} | undefined;
|
|
@@ -25263,12 +25317,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25263
25317
|
lock_alias: string;
|
|
25264
25318
|
feature_value: string;
|
|
25265
25319
|
features: {
|
|
25266
|
-
wifi: boolean;
|
|
25267
25320
|
passcode: boolean;
|
|
25268
25321
|
passcode_management: boolean;
|
|
25269
25322
|
unlock_via_gateway: boolean;
|
|
25270
25323
|
lock_command: boolean;
|
|
25271
25324
|
incomplete_keyboard_passcode: boolean;
|
|
25325
|
+
wifi: boolean;
|
|
25272
25326
|
};
|
|
25273
25327
|
has_gateway?: boolean | undefined;
|
|
25274
25328
|
wireless_keypads?: {
|
|
@@ -25337,9 +25391,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25337
25391
|
} | undefined;
|
|
25338
25392
|
tedee_metadata?: {
|
|
25339
25393
|
device_id: number;
|
|
25340
|
-
device_model: string;
|
|
25341
25394
|
device_name: string;
|
|
25342
25395
|
bridge_id: number;
|
|
25396
|
+
device_model: string;
|
|
25343
25397
|
bridge_name: string;
|
|
25344
25398
|
serial_number: string;
|
|
25345
25399
|
keypad_id?: number | undefined;
|
|
@@ -25648,17 +25702,26 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25648
25702
|
pms_id?: string | undefined;
|
|
25649
25703
|
}>>;
|
|
25650
25704
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
25651
|
-
|
|
25652
|
-
|
|
25705
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
25706
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
25707
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
25653
25708
|
door_description: z.ZodOptional<z.ZodString>;
|
|
25709
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
25710
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
25654
25711
|
}, "strip", z.ZodTypeAny, {
|
|
25655
|
-
door_name
|
|
25656
|
-
|
|
25712
|
+
door_name?: string | undefined;
|
|
25713
|
+
door_id?: string | undefined;
|
|
25714
|
+
ext_door_id?: string | undefined;
|
|
25657
25715
|
door_description?: string | undefined;
|
|
25716
|
+
room_name?: string | undefined;
|
|
25717
|
+
room_description?: string | undefined;
|
|
25658
25718
|
}, {
|
|
25659
|
-
door_name
|
|
25660
|
-
|
|
25719
|
+
door_name?: string | undefined;
|
|
25720
|
+
door_id?: string | undefined;
|
|
25721
|
+
ext_door_id?: string | undefined;
|
|
25661
25722
|
door_description?: string | undefined;
|
|
25723
|
+
room_name?: string | undefined;
|
|
25724
|
+
room_description?: string | undefined;
|
|
25662
25725
|
}>>;
|
|
25663
25726
|
} & {
|
|
25664
25727
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25712,9 +25775,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25712
25775
|
access_point_name: string;
|
|
25713
25776
|
} | undefined;
|
|
25714
25777
|
salto_space_metadata?: {
|
|
25715
|
-
door_name
|
|
25716
|
-
|
|
25778
|
+
door_name?: string | undefined;
|
|
25779
|
+
door_id?: string | undefined;
|
|
25780
|
+
ext_door_id?: string | undefined;
|
|
25717
25781
|
door_description?: string | undefined;
|
|
25782
|
+
room_name?: string | undefined;
|
|
25783
|
+
room_description?: string | undefined;
|
|
25718
25784
|
} | undefined;
|
|
25719
25785
|
}, {
|
|
25720
25786
|
display_name: string;
|
|
@@ -25764,9 +25830,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25764
25830
|
access_point_name: string;
|
|
25765
25831
|
} | undefined;
|
|
25766
25832
|
salto_space_metadata?: {
|
|
25767
|
-
door_name
|
|
25768
|
-
|
|
25833
|
+
door_name?: string | undefined;
|
|
25834
|
+
door_id?: string | undefined;
|
|
25835
|
+
ext_door_id?: string | undefined;
|
|
25769
25836
|
door_description?: string | undefined;
|
|
25837
|
+
room_name?: string | undefined;
|
|
25838
|
+
room_description?: string | undefined;
|
|
25770
25839
|
} | undefined;
|
|
25771
25840
|
}>, "many">>;
|
|
25772
25841
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25987,7 +26056,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25987
26056
|
status: "critical" | "low" | "good" | "full";
|
|
25988
26057
|
level: number;
|
|
25989
26058
|
} | undefined;
|
|
25990
|
-
manufacturer?: string | undefined;
|
|
25991
26059
|
battery_level?: number | undefined;
|
|
25992
26060
|
serial_number?: string | undefined;
|
|
25993
26061
|
accessory_keypad?: {
|
|
@@ -25997,6 +26065,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25997
26065
|
} | undefined;
|
|
25998
26066
|
} | undefined;
|
|
25999
26067
|
has_direct_power?: boolean | undefined;
|
|
26068
|
+
manufacturer?: string | undefined;
|
|
26000
26069
|
image_url?: string | undefined;
|
|
26001
26070
|
image_alt_text?: string | undefined;
|
|
26002
26071
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -26022,9 +26091,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26022
26091
|
ecobee_device_id: string;
|
|
26023
26092
|
} | undefined;
|
|
26024
26093
|
salto_ks_metadata?: {
|
|
26025
|
-
lock_type: string;
|
|
26026
26094
|
lock_id: string;
|
|
26027
26095
|
customer_reference: string;
|
|
26096
|
+
lock_type: string;
|
|
26028
26097
|
battery_level: string;
|
|
26029
26098
|
locked_state: string;
|
|
26030
26099
|
model?: string | undefined;
|
|
@@ -26076,9 +26145,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26076
26145
|
model_number: string;
|
|
26077
26146
|
} | undefined;
|
|
26078
26147
|
salto_metadata?: {
|
|
26079
|
-
lock_type: string;
|
|
26080
26148
|
lock_id: string;
|
|
26081
26149
|
customer_reference: string;
|
|
26150
|
+
lock_type: string;
|
|
26082
26151
|
battery_level: string;
|
|
26083
26152
|
locked_state: string;
|
|
26084
26153
|
model?: string | undefined;
|
|
@@ -26097,8 +26166,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26097
26166
|
} | undefined;
|
|
26098
26167
|
noiseaware_metadata?: {
|
|
26099
26168
|
device_id: string;
|
|
26100
|
-
device_model: "indoor" | "outdoor";
|
|
26101
26169
|
device_name: string;
|
|
26170
|
+
device_model: "indoor" | "outdoor";
|
|
26102
26171
|
noise_level_nrs: number;
|
|
26103
26172
|
noise_level_decibel: number;
|
|
26104
26173
|
} | undefined;
|
|
@@ -26147,12 +26216,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26147
26216
|
lock_alias: string;
|
|
26148
26217
|
feature_value: string;
|
|
26149
26218
|
features: {
|
|
26150
|
-
wifi: boolean;
|
|
26151
26219
|
passcode: boolean;
|
|
26152
26220
|
passcode_management: boolean;
|
|
26153
26221
|
unlock_via_gateway: boolean;
|
|
26154
26222
|
lock_command: boolean;
|
|
26155
26223
|
incomplete_keyboard_passcode: boolean;
|
|
26224
|
+
wifi: boolean;
|
|
26156
26225
|
};
|
|
26157
26226
|
has_gateway?: boolean | undefined;
|
|
26158
26227
|
wireless_keypads?: {
|
|
@@ -26221,9 +26290,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26221
26290
|
} | undefined;
|
|
26222
26291
|
tedee_metadata?: {
|
|
26223
26292
|
device_id: number;
|
|
26224
|
-
device_model: string;
|
|
26225
26293
|
device_name: string;
|
|
26226
26294
|
bridge_id: number;
|
|
26295
|
+
device_model: string;
|
|
26227
26296
|
bridge_name: string;
|
|
26228
26297
|
serial_number: string;
|
|
26229
26298
|
keypad_id?: number | undefined;
|
|
@@ -26465,9 +26534,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26465
26534
|
access_point_name: string;
|
|
26466
26535
|
} | undefined;
|
|
26467
26536
|
salto_space_metadata?: {
|
|
26468
|
-
door_name
|
|
26469
|
-
|
|
26537
|
+
door_name?: string | undefined;
|
|
26538
|
+
door_id?: string | undefined;
|
|
26539
|
+
ext_door_id?: string | undefined;
|
|
26470
26540
|
door_description?: string | undefined;
|
|
26541
|
+
room_name?: string | undefined;
|
|
26542
|
+
room_description?: string | undefined;
|
|
26471
26543
|
} | undefined;
|
|
26472
26544
|
}[] | undefined;
|
|
26473
26545
|
}, {
|
|
@@ -26688,7 +26760,6 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26688
26760
|
status: "critical" | "low" | "good" | "full";
|
|
26689
26761
|
level: number;
|
|
26690
26762
|
} | undefined;
|
|
26691
|
-
manufacturer?: string | undefined;
|
|
26692
26763
|
battery_level?: number | undefined;
|
|
26693
26764
|
serial_number?: string | undefined;
|
|
26694
26765
|
accessory_keypad?: {
|
|
@@ -26698,6 +26769,7 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26698
26769
|
} | undefined;
|
|
26699
26770
|
} | undefined;
|
|
26700
26771
|
has_direct_power?: boolean | undefined;
|
|
26772
|
+
manufacturer?: string | undefined;
|
|
26701
26773
|
image_url?: string | undefined;
|
|
26702
26774
|
image_alt_text?: string | undefined;
|
|
26703
26775
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -26723,9 +26795,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26723
26795
|
ecobee_device_id: string;
|
|
26724
26796
|
} | undefined;
|
|
26725
26797
|
salto_ks_metadata?: {
|
|
26726
|
-
lock_type: string;
|
|
26727
26798
|
lock_id: string;
|
|
26728
26799
|
customer_reference: string;
|
|
26800
|
+
lock_type: string;
|
|
26729
26801
|
battery_level: string;
|
|
26730
26802
|
locked_state: string;
|
|
26731
26803
|
model?: string | undefined;
|
|
@@ -26777,9 +26849,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26777
26849
|
model_number: string;
|
|
26778
26850
|
} | undefined;
|
|
26779
26851
|
salto_metadata?: {
|
|
26780
|
-
lock_type: string;
|
|
26781
26852
|
lock_id: string;
|
|
26782
26853
|
customer_reference: string;
|
|
26854
|
+
lock_type: string;
|
|
26783
26855
|
battery_level: string;
|
|
26784
26856
|
locked_state: string;
|
|
26785
26857
|
model?: string | undefined;
|
|
@@ -26798,8 +26870,8 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26798
26870
|
} | undefined;
|
|
26799
26871
|
noiseaware_metadata?: {
|
|
26800
26872
|
device_id: string;
|
|
26801
|
-
device_model: "indoor" | "outdoor";
|
|
26802
26873
|
device_name: string;
|
|
26874
|
+
device_model: "indoor" | "outdoor";
|
|
26803
26875
|
noise_level_nrs: number;
|
|
26804
26876
|
noise_level_decibel: number;
|
|
26805
26877
|
} | undefined;
|
|
@@ -26848,12 +26920,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26848
26920
|
lock_alias: string;
|
|
26849
26921
|
feature_value: string;
|
|
26850
26922
|
features: {
|
|
26851
|
-
wifi: boolean;
|
|
26852
26923
|
passcode: boolean;
|
|
26853
26924
|
passcode_management: boolean;
|
|
26854
26925
|
unlock_via_gateway: boolean;
|
|
26855
26926
|
lock_command: boolean;
|
|
26856
26927
|
incomplete_keyboard_passcode: boolean;
|
|
26928
|
+
wifi: boolean;
|
|
26857
26929
|
};
|
|
26858
26930
|
has_gateway?: boolean | undefined;
|
|
26859
26931
|
wireless_keypads?: {
|
|
@@ -26922,9 +26994,9 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26922
26994
|
} | undefined;
|
|
26923
26995
|
tedee_metadata?: {
|
|
26924
26996
|
device_id: number;
|
|
26925
|
-
device_model: string;
|
|
26926
26997
|
device_name: string;
|
|
26927
26998
|
bridge_id: number;
|
|
26999
|
+
device_model: string;
|
|
26928
27000
|
bridge_name: string;
|
|
26929
27001
|
serial_number: string;
|
|
26930
27002
|
keypad_id?: number | undefined;
|
|
@@ -27166,9 +27238,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
27166
27238
|
access_point_name: string;
|
|
27167
27239
|
} | undefined;
|
|
27168
27240
|
salto_space_metadata?: {
|
|
27169
|
-
door_name
|
|
27170
|
-
|
|
27241
|
+
door_name?: string | undefined;
|
|
27242
|
+
door_id?: string | undefined;
|
|
27243
|
+
ext_door_id?: string | undefined;
|
|
27171
27244
|
door_description?: string | undefined;
|
|
27245
|
+
room_name?: string | undefined;
|
|
27246
|
+
room_description?: string | undefined;
|
|
27172
27247
|
} | undefined;
|
|
27173
27248
|
}[] | undefined;
|
|
27174
27249
|
}>]>;
|
|
@@ -27371,12 +27446,12 @@ declare const connect_webview: z.ZodObject<{
|
|
|
27371
27446
|
status: "pending" | "failed" | "authorized";
|
|
27372
27447
|
workspace_id: string;
|
|
27373
27448
|
created_at: string;
|
|
27374
|
-
url: string;
|
|
27375
27449
|
connected_account_id: string | null;
|
|
27376
27450
|
custom_metadata: Record<string, string | boolean>;
|
|
27377
27451
|
automatically_manage_new_devices: boolean;
|
|
27378
27452
|
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
27379
27453
|
connect_webview_id: string;
|
|
27454
|
+
url: string;
|
|
27380
27455
|
device_selection_mode: "none" | "single" | "multiple";
|
|
27381
27456
|
accepted_providers: string[];
|
|
27382
27457
|
accepted_devices: string[];
|
|
@@ -27393,12 +27468,12 @@ declare const connect_webview: z.ZodObject<{
|
|
|
27393
27468
|
status: "pending" | "failed" | "authorized";
|
|
27394
27469
|
workspace_id: string;
|
|
27395
27470
|
created_at: string;
|
|
27396
|
-
url: string;
|
|
27397
27471
|
connected_account_id: string | null;
|
|
27398
27472
|
custom_metadata: Record<string, string | boolean>;
|
|
27399
27473
|
automatically_manage_new_devices: boolean;
|
|
27400
27474
|
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
27401
27475
|
connect_webview_id: string;
|
|
27476
|
+
url: string;
|
|
27402
27477
|
device_selection_mode: "none" | "single" | "multiple";
|
|
27403
27478
|
accepted_providers: string[];
|
|
27404
27479
|
accepted_devices: string[];
|
|
@@ -28586,7 +28661,6 @@ declare const device: z.ZodObject<{
|
|
|
28586
28661
|
status: "critical" | "low" | "good" | "full";
|
|
28587
28662
|
level: number;
|
|
28588
28663
|
} | undefined;
|
|
28589
|
-
manufacturer?: string | undefined;
|
|
28590
28664
|
battery_level?: number | undefined;
|
|
28591
28665
|
serial_number?: string | undefined;
|
|
28592
28666
|
accessory_keypad?: {
|
|
@@ -28596,6 +28670,7 @@ declare const device: z.ZodObject<{
|
|
|
28596
28670
|
} | undefined;
|
|
28597
28671
|
} | undefined;
|
|
28598
28672
|
has_direct_power?: boolean | undefined;
|
|
28673
|
+
manufacturer?: string | undefined;
|
|
28599
28674
|
image_url?: string | undefined;
|
|
28600
28675
|
image_alt_text?: string | undefined;
|
|
28601
28676
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -28623,7 +28698,6 @@ declare const device: z.ZodObject<{
|
|
|
28623
28698
|
status: "critical" | "low" | "good" | "full";
|
|
28624
28699
|
level: number;
|
|
28625
28700
|
} | undefined;
|
|
28626
|
-
manufacturer?: string | undefined;
|
|
28627
28701
|
battery_level?: number | undefined;
|
|
28628
28702
|
serial_number?: string | undefined;
|
|
28629
28703
|
accessory_keypad?: {
|
|
@@ -28633,6 +28707,7 @@ declare const device: z.ZodObject<{
|
|
|
28633
28707
|
} | undefined;
|
|
28634
28708
|
} | undefined;
|
|
28635
28709
|
has_direct_power?: boolean | undefined;
|
|
28710
|
+
manufacturer?: string | undefined;
|
|
28636
28711
|
image_url?: string | undefined;
|
|
28637
28712
|
image_alt_text?: string | undefined;
|
|
28638
28713
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -28829,16 +28904,16 @@ declare const device: z.ZodObject<{
|
|
|
28829
28904
|
locked_state: z.ZodString;
|
|
28830
28905
|
model: z.ZodOptional<z.ZodString>;
|
|
28831
28906
|
}, "strip", z.ZodTypeAny, {
|
|
28832
|
-
lock_type: string;
|
|
28833
28907
|
lock_id: string;
|
|
28834
28908
|
customer_reference: string;
|
|
28909
|
+
lock_type: string;
|
|
28835
28910
|
battery_level: string;
|
|
28836
28911
|
locked_state: string;
|
|
28837
28912
|
model?: string | undefined;
|
|
28838
28913
|
}, {
|
|
28839
|
-
lock_type: string;
|
|
28840
28914
|
lock_id: string;
|
|
28841
28915
|
customer_reference: string;
|
|
28916
|
+
lock_type: string;
|
|
28842
28917
|
battery_level: string;
|
|
28843
28918
|
locked_state: string;
|
|
28844
28919
|
model?: string | undefined;
|
|
@@ -28851,16 +28926,16 @@ declare const device: z.ZodObject<{
|
|
|
28851
28926
|
locked_state: z.ZodString;
|
|
28852
28927
|
model: z.ZodOptional<z.ZodString>;
|
|
28853
28928
|
}, "strip", z.ZodTypeAny, {
|
|
28854
|
-
lock_type: string;
|
|
28855
28929
|
lock_id: string;
|
|
28856
28930
|
customer_reference: string;
|
|
28931
|
+
lock_type: string;
|
|
28857
28932
|
battery_level: string;
|
|
28858
28933
|
locked_state: string;
|
|
28859
28934
|
model?: string | undefined;
|
|
28860
28935
|
}, {
|
|
28861
|
-
lock_type: string;
|
|
28862
28936
|
lock_id: string;
|
|
28863
28937
|
customer_reference: string;
|
|
28938
|
+
lock_type: string;
|
|
28864
28939
|
battery_level: string;
|
|
28865
28940
|
locked_state: string;
|
|
28866
28941
|
model?: string | undefined;
|
|
@@ -28903,14 +28978,14 @@ declare const device: z.ZodObject<{
|
|
|
28903
28978
|
device_id: z.ZodString;
|
|
28904
28979
|
}, "strip", z.ZodTypeAny, {
|
|
28905
28980
|
device_id: string;
|
|
28906
|
-
device_model: "indoor" | "outdoor";
|
|
28907
28981
|
device_name: string;
|
|
28982
|
+
device_model: "indoor" | "outdoor";
|
|
28908
28983
|
noise_level_nrs: number;
|
|
28909
28984
|
noise_level_decibel: number;
|
|
28910
28985
|
}, {
|
|
28911
28986
|
device_id: string;
|
|
28912
|
-
device_model: "indoor" | "outdoor";
|
|
28913
28987
|
device_name: string;
|
|
28988
|
+
device_model: "indoor" | "outdoor";
|
|
28914
28989
|
noise_level_nrs: number;
|
|
28915
28990
|
noise_level_decibel: number;
|
|
28916
28991
|
}>>;
|
|
@@ -29110,19 +29185,19 @@ declare const device: z.ZodObject<{
|
|
|
29110
29185
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
29111
29186
|
wifi: z.ZodBoolean;
|
|
29112
29187
|
}, "strip", z.ZodTypeAny, {
|
|
29113
|
-
wifi: boolean;
|
|
29114
29188
|
passcode: boolean;
|
|
29115
29189
|
passcode_management: boolean;
|
|
29116
29190
|
unlock_via_gateway: boolean;
|
|
29117
29191
|
lock_command: boolean;
|
|
29118
29192
|
incomplete_keyboard_passcode: boolean;
|
|
29119
|
-
}, {
|
|
29120
29193
|
wifi: boolean;
|
|
29194
|
+
}, {
|
|
29121
29195
|
passcode: boolean;
|
|
29122
29196
|
passcode_management: boolean;
|
|
29123
29197
|
unlock_via_gateway: boolean;
|
|
29124
29198
|
lock_command: boolean;
|
|
29125
29199
|
incomplete_keyboard_passcode: boolean;
|
|
29200
|
+
wifi: boolean;
|
|
29126
29201
|
}>;
|
|
29127
29202
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
29128
29203
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -29140,12 +29215,12 @@ declare const device: z.ZodObject<{
|
|
|
29140
29215
|
lock_alias: string;
|
|
29141
29216
|
feature_value: string;
|
|
29142
29217
|
features: {
|
|
29143
|
-
wifi: boolean;
|
|
29144
29218
|
passcode: boolean;
|
|
29145
29219
|
passcode_management: boolean;
|
|
29146
29220
|
unlock_via_gateway: boolean;
|
|
29147
29221
|
lock_command: boolean;
|
|
29148
29222
|
incomplete_keyboard_passcode: boolean;
|
|
29223
|
+
wifi: boolean;
|
|
29149
29224
|
};
|
|
29150
29225
|
has_gateway?: boolean | undefined;
|
|
29151
29226
|
wireless_keypads?: {
|
|
@@ -29157,12 +29232,12 @@ declare const device: z.ZodObject<{
|
|
|
29157
29232
|
lock_alias: string;
|
|
29158
29233
|
feature_value: string;
|
|
29159
29234
|
features: {
|
|
29160
|
-
wifi: boolean;
|
|
29161
29235
|
passcode: boolean;
|
|
29162
29236
|
passcode_management: boolean;
|
|
29163
29237
|
unlock_via_gateway: boolean;
|
|
29164
29238
|
lock_command: boolean;
|
|
29165
29239
|
incomplete_keyboard_passcode: boolean;
|
|
29240
|
+
wifi: boolean;
|
|
29166
29241
|
};
|
|
29167
29242
|
has_gateway?: boolean | undefined;
|
|
29168
29243
|
wireless_keypads?: {
|
|
@@ -29375,17 +29450,17 @@ declare const device: z.ZodObject<{
|
|
|
29375
29450
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
29376
29451
|
}, "strip", z.ZodTypeAny, {
|
|
29377
29452
|
device_id: number;
|
|
29378
|
-
device_model: string;
|
|
29379
29453
|
device_name: string;
|
|
29380
29454
|
bridge_id: number;
|
|
29455
|
+
device_model: string;
|
|
29381
29456
|
bridge_name: string;
|
|
29382
29457
|
serial_number: string;
|
|
29383
29458
|
keypad_id?: number | undefined;
|
|
29384
29459
|
}, {
|
|
29385
29460
|
device_id: number;
|
|
29386
|
-
device_model: string;
|
|
29387
29461
|
device_name: string;
|
|
29388
29462
|
bridge_id: number;
|
|
29463
|
+
device_model: string;
|
|
29389
29464
|
bridge_name: string;
|
|
29390
29465
|
serial_number: string;
|
|
29391
29466
|
keypad_id?: number | undefined;
|
|
@@ -29449,9 +29524,9 @@ declare const device: z.ZodObject<{
|
|
|
29449
29524
|
ecobee_device_id: string;
|
|
29450
29525
|
} | undefined;
|
|
29451
29526
|
salto_ks_metadata?: {
|
|
29452
|
-
lock_type: string;
|
|
29453
29527
|
lock_id: string;
|
|
29454
29528
|
customer_reference: string;
|
|
29529
|
+
lock_type: string;
|
|
29455
29530
|
battery_level: string;
|
|
29456
29531
|
locked_state: string;
|
|
29457
29532
|
model?: string | undefined;
|
|
@@ -29503,9 +29578,9 @@ declare const device: z.ZodObject<{
|
|
|
29503
29578
|
model_number: string;
|
|
29504
29579
|
} | undefined;
|
|
29505
29580
|
salto_metadata?: {
|
|
29506
|
-
lock_type: string;
|
|
29507
29581
|
lock_id: string;
|
|
29508
29582
|
customer_reference: string;
|
|
29583
|
+
lock_type: string;
|
|
29509
29584
|
battery_level: string;
|
|
29510
29585
|
locked_state: string;
|
|
29511
29586
|
model?: string | undefined;
|
|
@@ -29524,8 +29599,8 @@ declare const device: z.ZodObject<{
|
|
|
29524
29599
|
} | undefined;
|
|
29525
29600
|
noiseaware_metadata?: {
|
|
29526
29601
|
device_id: string;
|
|
29527
|
-
device_model: "indoor" | "outdoor";
|
|
29528
29602
|
device_name: string;
|
|
29603
|
+
device_model: "indoor" | "outdoor";
|
|
29529
29604
|
noise_level_nrs: number;
|
|
29530
29605
|
noise_level_decibel: number;
|
|
29531
29606
|
} | undefined;
|
|
@@ -29574,12 +29649,12 @@ declare const device: z.ZodObject<{
|
|
|
29574
29649
|
lock_alias: string;
|
|
29575
29650
|
feature_value: string;
|
|
29576
29651
|
features: {
|
|
29577
|
-
wifi: boolean;
|
|
29578
29652
|
passcode: boolean;
|
|
29579
29653
|
passcode_management: boolean;
|
|
29580
29654
|
unlock_via_gateway: boolean;
|
|
29581
29655
|
lock_command: boolean;
|
|
29582
29656
|
incomplete_keyboard_passcode: boolean;
|
|
29657
|
+
wifi: boolean;
|
|
29583
29658
|
};
|
|
29584
29659
|
has_gateway?: boolean | undefined;
|
|
29585
29660
|
wireless_keypads?: {
|
|
@@ -29648,9 +29723,9 @@ declare const device: z.ZodObject<{
|
|
|
29648
29723
|
} | undefined;
|
|
29649
29724
|
tedee_metadata?: {
|
|
29650
29725
|
device_id: number;
|
|
29651
|
-
device_model: string;
|
|
29652
29726
|
device_name: string;
|
|
29653
29727
|
bridge_id: number;
|
|
29728
|
+
device_model: string;
|
|
29654
29729
|
bridge_name: string;
|
|
29655
29730
|
serial_number: string;
|
|
29656
29731
|
keypad_id?: number | undefined;
|
|
@@ -29682,9 +29757,9 @@ declare const device: z.ZodObject<{
|
|
|
29682
29757
|
ecobee_device_id: string;
|
|
29683
29758
|
} | undefined;
|
|
29684
29759
|
salto_ks_metadata?: {
|
|
29685
|
-
lock_type: string;
|
|
29686
29760
|
lock_id: string;
|
|
29687
29761
|
customer_reference: string;
|
|
29762
|
+
lock_type: string;
|
|
29688
29763
|
battery_level: string;
|
|
29689
29764
|
locked_state: string;
|
|
29690
29765
|
model?: string | undefined;
|
|
@@ -29736,9 +29811,9 @@ declare const device: z.ZodObject<{
|
|
|
29736
29811
|
model_number: string;
|
|
29737
29812
|
} | undefined;
|
|
29738
29813
|
salto_metadata?: {
|
|
29739
|
-
lock_type: string;
|
|
29740
29814
|
lock_id: string;
|
|
29741
29815
|
customer_reference: string;
|
|
29816
|
+
lock_type: string;
|
|
29742
29817
|
battery_level: string;
|
|
29743
29818
|
locked_state: string;
|
|
29744
29819
|
model?: string | undefined;
|
|
@@ -29757,8 +29832,8 @@ declare const device: z.ZodObject<{
|
|
|
29757
29832
|
} | undefined;
|
|
29758
29833
|
noiseaware_metadata?: {
|
|
29759
29834
|
device_id: string;
|
|
29760
|
-
device_model: "indoor" | "outdoor";
|
|
29761
29835
|
device_name: string;
|
|
29836
|
+
device_model: "indoor" | "outdoor";
|
|
29762
29837
|
noise_level_nrs: number;
|
|
29763
29838
|
noise_level_decibel: number;
|
|
29764
29839
|
} | undefined;
|
|
@@ -29807,12 +29882,12 @@ declare const device: z.ZodObject<{
|
|
|
29807
29882
|
lock_alias: string;
|
|
29808
29883
|
feature_value: string;
|
|
29809
29884
|
features: {
|
|
29810
|
-
wifi: boolean;
|
|
29811
29885
|
passcode: boolean;
|
|
29812
29886
|
passcode_management: boolean;
|
|
29813
29887
|
unlock_via_gateway: boolean;
|
|
29814
29888
|
lock_command: boolean;
|
|
29815
29889
|
incomplete_keyboard_passcode: boolean;
|
|
29890
|
+
wifi: boolean;
|
|
29816
29891
|
};
|
|
29817
29892
|
has_gateway?: boolean | undefined;
|
|
29818
29893
|
wireless_keypads?: {
|
|
@@ -29881,9 +29956,9 @@ declare const device: z.ZodObject<{
|
|
|
29881
29956
|
} | undefined;
|
|
29882
29957
|
tedee_metadata?: {
|
|
29883
29958
|
device_id: number;
|
|
29884
|
-
device_model: string;
|
|
29885
29959
|
device_name: string;
|
|
29886
29960
|
bridge_id: number;
|
|
29961
|
+
device_model: string;
|
|
29887
29962
|
bridge_name: string;
|
|
29888
29963
|
serial_number: string;
|
|
29889
29964
|
keypad_id?: number | undefined;
|
|
@@ -31219,7 +31294,6 @@ declare const device: z.ZodObject<{
|
|
|
31219
31294
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
31220
31295
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
31221
31296
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
31222
|
-
} & {
|
|
31223
31297
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
31224
31298
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
31225
31299
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31430,7 +31504,6 @@ declare const device: z.ZodObject<{
|
|
|
31430
31504
|
status: "critical" | "low" | "good" | "full";
|
|
31431
31505
|
level: number;
|
|
31432
31506
|
} | undefined;
|
|
31433
|
-
manufacturer?: string | undefined;
|
|
31434
31507
|
battery_level?: number | undefined;
|
|
31435
31508
|
serial_number?: string | undefined;
|
|
31436
31509
|
accessory_keypad?: {
|
|
@@ -31440,6 +31513,7 @@ declare const device: z.ZodObject<{
|
|
|
31440
31513
|
} | undefined;
|
|
31441
31514
|
} | undefined;
|
|
31442
31515
|
has_direct_power?: boolean | undefined;
|
|
31516
|
+
manufacturer?: string | undefined;
|
|
31443
31517
|
image_url?: string | undefined;
|
|
31444
31518
|
image_alt_text?: string | undefined;
|
|
31445
31519
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -31465,9 +31539,9 @@ declare const device: z.ZodObject<{
|
|
|
31465
31539
|
ecobee_device_id: string;
|
|
31466
31540
|
} | undefined;
|
|
31467
31541
|
salto_ks_metadata?: {
|
|
31468
|
-
lock_type: string;
|
|
31469
31542
|
lock_id: string;
|
|
31470
31543
|
customer_reference: string;
|
|
31544
|
+
lock_type: string;
|
|
31471
31545
|
battery_level: string;
|
|
31472
31546
|
locked_state: string;
|
|
31473
31547
|
model?: string | undefined;
|
|
@@ -31519,9 +31593,9 @@ declare const device: z.ZodObject<{
|
|
|
31519
31593
|
model_number: string;
|
|
31520
31594
|
} | undefined;
|
|
31521
31595
|
salto_metadata?: {
|
|
31522
|
-
lock_type: string;
|
|
31523
31596
|
lock_id: string;
|
|
31524
31597
|
customer_reference: string;
|
|
31598
|
+
lock_type: string;
|
|
31525
31599
|
battery_level: string;
|
|
31526
31600
|
locked_state: string;
|
|
31527
31601
|
model?: string | undefined;
|
|
@@ -31540,8 +31614,8 @@ declare const device: z.ZodObject<{
|
|
|
31540
31614
|
} | undefined;
|
|
31541
31615
|
noiseaware_metadata?: {
|
|
31542
31616
|
device_id: string;
|
|
31543
|
-
device_model: "indoor" | "outdoor";
|
|
31544
31617
|
device_name: string;
|
|
31618
|
+
device_model: "indoor" | "outdoor";
|
|
31545
31619
|
noise_level_nrs: number;
|
|
31546
31620
|
noise_level_decibel: number;
|
|
31547
31621
|
} | undefined;
|
|
@@ -31590,12 +31664,12 @@ declare const device: z.ZodObject<{
|
|
|
31590
31664
|
lock_alias: string;
|
|
31591
31665
|
feature_value: string;
|
|
31592
31666
|
features: {
|
|
31593
|
-
wifi: boolean;
|
|
31594
31667
|
passcode: boolean;
|
|
31595
31668
|
passcode_management: boolean;
|
|
31596
31669
|
unlock_via_gateway: boolean;
|
|
31597
31670
|
lock_command: boolean;
|
|
31598
31671
|
incomplete_keyboard_passcode: boolean;
|
|
31672
|
+
wifi: boolean;
|
|
31599
31673
|
};
|
|
31600
31674
|
has_gateway?: boolean | undefined;
|
|
31601
31675
|
wireless_keypads?: {
|
|
@@ -31664,9 +31738,9 @@ declare const device: z.ZodObject<{
|
|
|
31664
31738
|
} | undefined;
|
|
31665
31739
|
tedee_metadata?: {
|
|
31666
31740
|
device_id: number;
|
|
31667
|
-
device_model: string;
|
|
31668
31741
|
device_name: string;
|
|
31669
31742
|
bridge_id: number;
|
|
31743
|
+
device_model: string;
|
|
31670
31744
|
bridge_name: string;
|
|
31671
31745
|
serial_number: string;
|
|
31672
31746
|
keypad_id?: number | undefined;
|
|
@@ -32065,7 +32139,6 @@ declare const device: z.ZodObject<{
|
|
|
32065
32139
|
status: "critical" | "low" | "good" | "full";
|
|
32066
32140
|
level: number;
|
|
32067
32141
|
} | undefined;
|
|
32068
|
-
manufacturer?: string | undefined;
|
|
32069
32142
|
battery_level?: number | undefined;
|
|
32070
32143
|
serial_number?: string | undefined;
|
|
32071
32144
|
accessory_keypad?: {
|
|
@@ -32075,6 +32148,7 @@ declare const device: z.ZodObject<{
|
|
|
32075
32148
|
} | undefined;
|
|
32076
32149
|
} | undefined;
|
|
32077
32150
|
has_direct_power?: boolean | undefined;
|
|
32151
|
+
manufacturer?: string | undefined;
|
|
32078
32152
|
image_url?: string | undefined;
|
|
32079
32153
|
image_alt_text?: string | undefined;
|
|
32080
32154
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -32100,9 +32174,9 @@ declare const device: z.ZodObject<{
|
|
|
32100
32174
|
ecobee_device_id: string;
|
|
32101
32175
|
} | undefined;
|
|
32102
32176
|
salto_ks_metadata?: {
|
|
32103
|
-
lock_type: string;
|
|
32104
32177
|
lock_id: string;
|
|
32105
32178
|
customer_reference: string;
|
|
32179
|
+
lock_type: string;
|
|
32106
32180
|
battery_level: string;
|
|
32107
32181
|
locked_state: string;
|
|
32108
32182
|
model?: string | undefined;
|
|
@@ -32154,9 +32228,9 @@ declare const device: z.ZodObject<{
|
|
|
32154
32228
|
model_number: string;
|
|
32155
32229
|
} | undefined;
|
|
32156
32230
|
salto_metadata?: {
|
|
32157
|
-
lock_type: string;
|
|
32158
32231
|
lock_id: string;
|
|
32159
32232
|
customer_reference: string;
|
|
32233
|
+
lock_type: string;
|
|
32160
32234
|
battery_level: string;
|
|
32161
32235
|
locked_state: string;
|
|
32162
32236
|
model?: string | undefined;
|
|
@@ -32175,8 +32249,8 @@ declare const device: z.ZodObject<{
|
|
|
32175
32249
|
} | undefined;
|
|
32176
32250
|
noiseaware_metadata?: {
|
|
32177
32251
|
device_id: string;
|
|
32178
|
-
device_model: "indoor" | "outdoor";
|
|
32179
32252
|
device_name: string;
|
|
32253
|
+
device_model: "indoor" | "outdoor";
|
|
32180
32254
|
noise_level_nrs: number;
|
|
32181
32255
|
noise_level_decibel: number;
|
|
32182
32256
|
} | undefined;
|
|
@@ -32225,12 +32299,12 @@ declare const device: z.ZodObject<{
|
|
|
32225
32299
|
lock_alias: string;
|
|
32226
32300
|
feature_value: string;
|
|
32227
32301
|
features: {
|
|
32228
|
-
wifi: boolean;
|
|
32229
32302
|
passcode: boolean;
|
|
32230
32303
|
passcode_management: boolean;
|
|
32231
32304
|
unlock_via_gateway: boolean;
|
|
32232
32305
|
lock_command: boolean;
|
|
32233
32306
|
incomplete_keyboard_passcode: boolean;
|
|
32307
|
+
wifi: boolean;
|
|
32234
32308
|
};
|
|
32235
32309
|
has_gateway?: boolean | undefined;
|
|
32236
32310
|
wireless_keypads?: {
|
|
@@ -32299,9 +32373,9 @@ declare const device: z.ZodObject<{
|
|
|
32299
32373
|
} | undefined;
|
|
32300
32374
|
tedee_metadata?: {
|
|
32301
32375
|
device_id: number;
|
|
32302
|
-
device_model: string;
|
|
32303
32376
|
device_name: string;
|
|
32304
32377
|
bridge_id: number;
|
|
32378
|
+
device_model: string;
|
|
32305
32379
|
bridge_name: string;
|
|
32306
32380
|
serial_number: string;
|
|
32307
32381
|
keypad_id?: number | undefined;
|
|
@@ -32561,7 +32635,6 @@ declare const device_provider: z.ZodObject<{
|
|
|
32561
32635
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
32562
32636
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
32563
32637
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
32564
|
-
} & {
|
|
32565
32638
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
32566
32639
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
32567
32640
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32705,7 +32778,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
32705
32778
|
status: "critical" | "low" | "good" | "full";
|
|
32706
32779
|
level: number;
|
|
32707
32780
|
} | undefined;
|
|
32708
|
-
manufacturer?: string | undefined;
|
|
32709
32781
|
battery_level?: number | undefined;
|
|
32710
32782
|
serial_number?: string | undefined;
|
|
32711
32783
|
accessory_keypad?: {
|
|
@@ -32715,6 +32787,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
32715
32787
|
} | undefined;
|
|
32716
32788
|
} | undefined;
|
|
32717
32789
|
has_direct_power?: boolean | undefined;
|
|
32790
|
+
manufacturer?: string | undefined;
|
|
32718
32791
|
image_url?: string | undefined;
|
|
32719
32792
|
image_alt_text?: string | undefined;
|
|
32720
32793
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -32742,7 +32815,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
32742
32815
|
status: "critical" | "low" | "good" | "full";
|
|
32743
32816
|
level: number;
|
|
32744
32817
|
} | undefined;
|
|
32745
|
-
manufacturer?: string | undefined;
|
|
32746
32818
|
battery_level?: number | undefined;
|
|
32747
32819
|
serial_number?: string | undefined;
|
|
32748
32820
|
accessory_keypad?: {
|
|
@@ -32752,6 +32824,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
32752
32824
|
} | undefined;
|
|
32753
32825
|
} | undefined;
|
|
32754
32826
|
has_direct_power?: boolean | undefined;
|
|
32827
|
+
manufacturer?: string | undefined;
|
|
32755
32828
|
image_url?: string | undefined;
|
|
32756
32829
|
image_alt_text?: string | undefined;
|
|
32757
32830
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -32948,16 +33021,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
32948
33021
|
locked_state: z.ZodString;
|
|
32949
33022
|
model: z.ZodOptional<z.ZodString>;
|
|
32950
33023
|
}, "strip", z.ZodTypeAny, {
|
|
32951
|
-
lock_type: string;
|
|
32952
33024
|
lock_id: string;
|
|
32953
33025
|
customer_reference: string;
|
|
33026
|
+
lock_type: string;
|
|
32954
33027
|
battery_level: string;
|
|
32955
33028
|
locked_state: string;
|
|
32956
33029
|
model?: string | undefined;
|
|
32957
33030
|
}, {
|
|
32958
|
-
lock_type: string;
|
|
32959
33031
|
lock_id: string;
|
|
32960
33032
|
customer_reference: string;
|
|
33033
|
+
lock_type: string;
|
|
32961
33034
|
battery_level: string;
|
|
32962
33035
|
locked_state: string;
|
|
32963
33036
|
model?: string | undefined;
|
|
@@ -32970,16 +33043,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
32970
33043
|
locked_state: z.ZodString;
|
|
32971
33044
|
model: z.ZodOptional<z.ZodString>;
|
|
32972
33045
|
}, "strip", z.ZodTypeAny, {
|
|
32973
|
-
lock_type: string;
|
|
32974
33046
|
lock_id: string;
|
|
32975
33047
|
customer_reference: string;
|
|
33048
|
+
lock_type: string;
|
|
32976
33049
|
battery_level: string;
|
|
32977
33050
|
locked_state: string;
|
|
32978
33051
|
model?: string | undefined;
|
|
32979
33052
|
}, {
|
|
32980
|
-
lock_type: string;
|
|
32981
33053
|
lock_id: string;
|
|
32982
33054
|
customer_reference: string;
|
|
33055
|
+
lock_type: string;
|
|
32983
33056
|
battery_level: string;
|
|
32984
33057
|
locked_state: string;
|
|
32985
33058
|
model?: string | undefined;
|
|
@@ -33022,14 +33095,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33022
33095
|
device_id: z.ZodString;
|
|
33023
33096
|
}, "strip", z.ZodTypeAny, {
|
|
33024
33097
|
device_id: string;
|
|
33025
|
-
device_model: "indoor" | "outdoor";
|
|
33026
33098
|
device_name: string;
|
|
33099
|
+
device_model: "indoor" | "outdoor";
|
|
33027
33100
|
noise_level_nrs: number;
|
|
33028
33101
|
noise_level_decibel: number;
|
|
33029
33102
|
}, {
|
|
33030
33103
|
device_id: string;
|
|
33031
|
-
device_model: "indoor" | "outdoor";
|
|
33032
33104
|
device_name: string;
|
|
33105
|
+
device_model: "indoor" | "outdoor";
|
|
33033
33106
|
noise_level_nrs: number;
|
|
33034
33107
|
noise_level_decibel: number;
|
|
33035
33108
|
}>>;
|
|
@@ -33229,19 +33302,19 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33229
33302
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
33230
33303
|
wifi: z.ZodBoolean;
|
|
33231
33304
|
}, "strip", z.ZodTypeAny, {
|
|
33232
|
-
wifi: boolean;
|
|
33233
33305
|
passcode: boolean;
|
|
33234
33306
|
passcode_management: boolean;
|
|
33235
33307
|
unlock_via_gateway: boolean;
|
|
33236
33308
|
lock_command: boolean;
|
|
33237
33309
|
incomplete_keyboard_passcode: boolean;
|
|
33238
|
-
}, {
|
|
33239
33310
|
wifi: boolean;
|
|
33311
|
+
}, {
|
|
33240
33312
|
passcode: boolean;
|
|
33241
33313
|
passcode_management: boolean;
|
|
33242
33314
|
unlock_via_gateway: boolean;
|
|
33243
33315
|
lock_command: boolean;
|
|
33244
33316
|
incomplete_keyboard_passcode: boolean;
|
|
33317
|
+
wifi: boolean;
|
|
33245
33318
|
}>;
|
|
33246
33319
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
33247
33320
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -33259,12 +33332,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33259
33332
|
lock_alias: string;
|
|
33260
33333
|
feature_value: string;
|
|
33261
33334
|
features: {
|
|
33262
|
-
wifi: boolean;
|
|
33263
33335
|
passcode: boolean;
|
|
33264
33336
|
passcode_management: boolean;
|
|
33265
33337
|
unlock_via_gateway: boolean;
|
|
33266
33338
|
lock_command: boolean;
|
|
33267
33339
|
incomplete_keyboard_passcode: boolean;
|
|
33340
|
+
wifi: boolean;
|
|
33268
33341
|
};
|
|
33269
33342
|
has_gateway?: boolean | undefined;
|
|
33270
33343
|
wireless_keypads?: {
|
|
@@ -33276,12 +33349,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33276
33349
|
lock_alias: string;
|
|
33277
33350
|
feature_value: string;
|
|
33278
33351
|
features: {
|
|
33279
|
-
wifi: boolean;
|
|
33280
33352
|
passcode: boolean;
|
|
33281
33353
|
passcode_management: boolean;
|
|
33282
33354
|
unlock_via_gateway: boolean;
|
|
33283
33355
|
lock_command: boolean;
|
|
33284
33356
|
incomplete_keyboard_passcode: boolean;
|
|
33357
|
+
wifi: boolean;
|
|
33285
33358
|
};
|
|
33286
33359
|
has_gateway?: boolean | undefined;
|
|
33287
33360
|
wireless_keypads?: {
|
|
@@ -33494,17 +33567,17 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33494
33567
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
33495
33568
|
}, "strip", z.ZodTypeAny, {
|
|
33496
33569
|
device_id: number;
|
|
33497
|
-
device_model: string;
|
|
33498
33570
|
device_name: string;
|
|
33499
33571
|
bridge_id: number;
|
|
33572
|
+
device_model: string;
|
|
33500
33573
|
bridge_name: string;
|
|
33501
33574
|
serial_number: string;
|
|
33502
33575
|
keypad_id?: number | undefined;
|
|
33503
33576
|
}, {
|
|
33504
33577
|
device_id: number;
|
|
33505
|
-
device_model: string;
|
|
33506
33578
|
device_name: string;
|
|
33507
33579
|
bridge_id: number;
|
|
33580
|
+
device_model: string;
|
|
33508
33581
|
bridge_name: string;
|
|
33509
33582
|
serial_number: string;
|
|
33510
33583
|
keypad_id?: number | undefined;
|
|
@@ -33568,9 +33641,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33568
33641
|
ecobee_device_id: string;
|
|
33569
33642
|
} | undefined;
|
|
33570
33643
|
salto_ks_metadata?: {
|
|
33571
|
-
lock_type: string;
|
|
33572
33644
|
lock_id: string;
|
|
33573
33645
|
customer_reference: string;
|
|
33646
|
+
lock_type: string;
|
|
33574
33647
|
battery_level: string;
|
|
33575
33648
|
locked_state: string;
|
|
33576
33649
|
model?: string | undefined;
|
|
@@ -33622,9 +33695,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33622
33695
|
model_number: string;
|
|
33623
33696
|
} | undefined;
|
|
33624
33697
|
salto_metadata?: {
|
|
33625
|
-
lock_type: string;
|
|
33626
33698
|
lock_id: string;
|
|
33627
33699
|
customer_reference: string;
|
|
33700
|
+
lock_type: string;
|
|
33628
33701
|
battery_level: string;
|
|
33629
33702
|
locked_state: string;
|
|
33630
33703
|
model?: string | undefined;
|
|
@@ -33643,8 +33716,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33643
33716
|
} | undefined;
|
|
33644
33717
|
noiseaware_metadata?: {
|
|
33645
33718
|
device_id: string;
|
|
33646
|
-
device_model: "indoor" | "outdoor";
|
|
33647
33719
|
device_name: string;
|
|
33720
|
+
device_model: "indoor" | "outdoor";
|
|
33648
33721
|
noise_level_nrs: number;
|
|
33649
33722
|
noise_level_decibel: number;
|
|
33650
33723
|
} | undefined;
|
|
@@ -33693,12 +33766,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33693
33766
|
lock_alias: string;
|
|
33694
33767
|
feature_value: string;
|
|
33695
33768
|
features: {
|
|
33696
|
-
wifi: boolean;
|
|
33697
33769
|
passcode: boolean;
|
|
33698
33770
|
passcode_management: boolean;
|
|
33699
33771
|
unlock_via_gateway: boolean;
|
|
33700
33772
|
lock_command: boolean;
|
|
33701
33773
|
incomplete_keyboard_passcode: boolean;
|
|
33774
|
+
wifi: boolean;
|
|
33702
33775
|
};
|
|
33703
33776
|
has_gateway?: boolean | undefined;
|
|
33704
33777
|
wireless_keypads?: {
|
|
@@ -33767,9 +33840,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33767
33840
|
} | undefined;
|
|
33768
33841
|
tedee_metadata?: {
|
|
33769
33842
|
device_id: number;
|
|
33770
|
-
device_model: string;
|
|
33771
33843
|
device_name: string;
|
|
33772
33844
|
bridge_id: number;
|
|
33845
|
+
device_model: string;
|
|
33773
33846
|
bridge_name: string;
|
|
33774
33847
|
serial_number: string;
|
|
33775
33848
|
keypad_id?: number | undefined;
|
|
@@ -33801,9 +33874,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33801
33874
|
ecobee_device_id: string;
|
|
33802
33875
|
} | undefined;
|
|
33803
33876
|
salto_ks_metadata?: {
|
|
33804
|
-
lock_type: string;
|
|
33805
33877
|
lock_id: string;
|
|
33806
33878
|
customer_reference: string;
|
|
33879
|
+
lock_type: string;
|
|
33807
33880
|
battery_level: string;
|
|
33808
33881
|
locked_state: string;
|
|
33809
33882
|
model?: string | undefined;
|
|
@@ -33855,9 +33928,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33855
33928
|
model_number: string;
|
|
33856
33929
|
} | undefined;
|
|
33857
33930
|
salto_metadata?: {
|
|
33858
|
-
lock_type: string;
|
|
33859
33931
|
lock_id: string;
|
|
33860
33932
|
customer_reference: string;
|
|
33933
|
+
lock_type: string;
|
|
33861
33934
|
battery_level: string;
|
|
33862
33935
|
locked_state: string;
|
|
33863
33936
|
model?: string | undefined;
|
|
@@ -33876,8 +33949,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33876
33949
|
} | undefined;
|
|
33877
33950
|
noiseaware_metadata?: {
|
|
33878
33951
|
device_id: string;
|
|
33879
|
-
device_model: "indoor" | "outdoor";
|
|
33880
33952
|
device_name: string;
|
|
33953
|
+
device_model: "indoor" | "outdoor";
|
|
33881
33954
|
noise_level_nrs: number;
|
|
33882
33955
|
noise_level_decibel: number;
|
|
33883
33956
|
} | undefined;
|
|
@@ -33926,12 +33999,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
33926
33999
|
lock_alias: string;
|
|
33927
34000
|
feature_value: string;
|
|
33928
34001
|
features: {
|
|
33929
|
-
wifi: boolean;
|
|
33930
34002
|
passcode: boolean;
|
|
33931
34003
|
passcode_management: boolean;
|
|
33932
34004
|
unlock_via_gateway: boolean;
|
|
33933
34005
|
lock_command: boolean;
|
|
33934
34006
|
incomplete_keyboard_passcode: boolean;
|
|
34007
|
+
wifi: boolean;
|
|
33935
34008
|
};
|
|
33936
34009
|
has_gateway?: boolean | undefined;
|
|
33937
34010
|
wireless_keypads?: {
|
|
@@ -34000,9 +34073,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
34000
34073
|
} | undefined;
|
|
34001
34074
|
tedee_metadata?: {
|
|
34002
34075
|
device_id: number;
|
|
34003
|
-
device_model: string;
|
|
34004
34076
|
device_name: string;
|
|
34005
34077
|
bridge_id: number;
|
|
34078
|
+
device_model: string;
|
|
34006
34079
|
bridge_name: string;
|
|
34007
34080
|
serial_number: string;
|
|
34008
34081
|
keypad_id?: number | undefined;
|
|
@@ -35338,7 +35411,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35338
35411
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
35339
35412
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
35340
35413
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
35341
|
-
} & {
|
|
35342
35414
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
35343
35415
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
35344
35416
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -35422,7 +35494,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35422
35494
|
supports_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
35423
35495
|
noise_level_decibels: z.ZodOptional<z.ZodNumber>;
|
|
35424
35496
|
currently_triggering_noise_threshold_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
35425
|
-
}, "battery" | "name" | "
|
|
35497
|
+
}, "battery" | "name" | "model" | "battery_level" | "online" | "accessory_keypad" | "manufacturer" | "image_url" | "image_alt_text" | "online_access_codes_enabled" | "offline_access_codes_enabled">, "strip", z.ZodTypeAny, {
|
|
35426
35498
|
name: string;
|
|
35427
35499
|
model: {
|
|
35428
35500
|
display_name: string;
|
|
@@ -35438,7 +35510,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35438
35510
|
status: "critical" | "low" | "good" | "full";
|
|
35439
35511
|
level: number;
|
|
35440
35512
|
} | undefined;
|
|
35441
|
-
manufacturer?: string | undefined;
|
|
35442
35513
|
battery_level?: number | undefined;
|
|
35443
35514
|
accessory_keypad?: {
|
|
35444
35515
|
is_connected: boolean;
|
|
@@ -35446,6 +35517,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35446
35517
|
level: number;
|
|
35447
35518
|
} | undefined;
|
|
35448
35519
|
} | undefined;
|
|
35520
|
+
manufacturer?: string | undefined;
|
|
35449
35521
|
image_url?: string | undefined;
|
|
35450
35522
|
image_alt_text?: string | undefined;
|
|
35451
35523
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -35466,7 +35538,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35466
35538
|
status: "critical" | "low" | "good" | "full";
|
|
35467
35539
|
level: number;
|
|
35468
35540
|
} | undefined;
|
|
35469
|
-
manufacturer?: string | undefined;
|
|
35470
35541
|
battery_level?: number | undefined;
|
|
35471
35542
|
accessory_keypad?: {
|
|
35472
35543
|
is_connected: boolean;
|
|
@@ -35474,6 +35545,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35474
35545
|
level: number;
|
|
35475
35546
|
} | undefined;
|
|
35476
35547
|
} | undefined;
|
|
35548
|
+
manufacturer?: string | undefined;
|
|
35477
35549
|
image_url?: string | undefined;
|
|
35478
35550
|
image_alt_text?: string | undefined;
|
|
35479
35551
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -35488,7 +35560,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35488
35560
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
35489
35561
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
35490
35562
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
35491
|
-
} & {
|
|
35492
35563
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
35493
35564
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
35494
35565
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -35694,7 +35765,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35694
35765
|
status: "critical" | "low" | "good" | "full";
|
|
35695
35766
|
level: number;
|
|
35696
35767
|
} | undefined;
|
|
35697
|
-
manufacturer?: string | undefined;
|
|
35698
35768
|
battery_level?: number | undefined;
|
|
35699
35769
|
accessory_keypad?: {
|
|
35700
35770
|
is_connected: boolean;
|
|
@@ -35702,6 +35772,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35702
35772
|
level: number;
|
|
35703
35773
|
} | undefined;
|
|
35704
35774
|
} | undefined;
|
|
35775
|
+
manufacturer?: string | undefined;
|
|
35705
35776
|
image_url?: string | undefined;
|
|
35706
35777
|
image_alt_text?: string | undefined;
|
|
35707
35778
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -35925,7 +35996,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35925
35996
|
status: "critical" | "low" | "good" | "full";
|
|
35926
35997
|
level: number;
|
|
35927
35998
|
} | undefined;
|
|
35928
|
-
manufacturer?: string | undefined;
|
|
35929
35999
|
battery_level?: number | undefined;
|
|
35930
36000
|
accessory_keypad?: {
|
|
35931
36001
|
is_connected: boolean;
|
|
@@ -35933,6 +36003,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35933
36003
|
level: number;
|
|
35934
36004
|
} | undefined;
|
|
35935
36005
|
} | undefined;
|
|
36006
|
+
manufacturer?: string | undefined;
|
|
35936
36007
|
image_url?: string | undefined;
|
|
35937
36008
|
image_alt_text?: string | undefined;
|
|
35938
36009
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -38379,11 +38450,11 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
38379
38450
|
device_id: string;
|
|
38380
38451
|
workspace_id: string;
|
|
38381
38452
|
created_at: string;
|
|
38382
|
-
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38383
38453
|
connected_account_id: string;
|
|
38384
38454
|
event_id: string;
|
|
38385
38455
|
occurred_at: string;
|
|
38386
38456
|
event_type: "lock.locked";
|
|
38457
|
+
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38387
38458
|
access_code_id?: string | undefined;
|
|
38388
38459
|
action_attempt_id?: string | undefined;
|
|
38389
38460
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -38392,11 +38463,11 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
38392
38463
|
device_id: string;
|
|
38393
38464
|
workspace_id: string;
|
|
38394
38465
|
created_at: string;
|
|
38395
|
-
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38396
38466
|
connected_account_id: string;
|
|
38397
38467
|
event_id: string;
|
|
38398
38468
|
occurred_at: string;
|
|
38399
38469
|
event_type: "lock.locked";
|
|
38470
|
+
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38400
38471
|
access_code_id?: string | undefined;
|
|
38401
38472
|
action_attempt_id?: string | undefined;
|
|
38402
38473
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -38420,11 +38491,11 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
38420
38491
|
device_id: string;
|
|
38421
38492
|
workspace_id: string;
|
|
38422
38493
|
created_at: string;
|
|
38423
|
-
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38424
38494
|
connected_account_id: string;
|
|
38425
38495
|
event_id: string;
|
|
38426
38496
|
occurred_at: string;
|
|
38427
38497
|
event_type: "lock.unlocked";
|
|
38498
|
+
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38428
38499
|
access_code_id?: string | undefined;
|
|
38429
38500
|
action_attempt_id?: string | undefined;
|
|
38430
38501
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -38433,11 +38504,11 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
38433
38504
|
device_id: string;
|
|
38434
38505
|
workspace_id: string;
|
|
38435
38506
|
created_at: string;
|
|
38436
|
-
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38437
38507
|
connected_account_id: string;
|
|
38438
38508
|
event_id: string;
|
|
38439
38509
|
occurred_at: string;
|
|
38440
38510
|
event_type: "lock.unlocked";
|
|
38511
|
+
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
38441
38512
|
access_code_id?: string | undefined;
|
|
38442
38513
|
action_attempt_id?: string | undefined;
|
|
38443
38514
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -38563,11 +38634,11 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
38563
38634
|
device_id: string;
|
|
38564
38635
|
workspace_id: string;
|
|
38565
38636
|
created_at: string;
|
|
38566
|
-
method: "seam" | "external";
|
|
38567
38637
|
connected_account_id: string;
|
|
38568
38638
|
event_id: string;
|
|
38569
38639
|
occurred_at: string;
|
|
38570
38640
|
event_type: "thermostat.manually_adjusted";
|
|
38641
|
+
method: "seam" | "external";
|
|
38571
38642
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
38572
38643
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
38573
38644
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -38580,11 +38651,11 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
38580
38651
|
device_id: string;
|
|
38581
38652
|
workspace_id: string;
|
|
38582
38653
|
created_at: string;
|
|
38583
|
-
method: "seam" | "external";
|
|
38584
38654
|
connected_account_id: string;
|
|
38585
38655
|
event_id: string;
|
|
38586
38656
|
occurred_at: string;
|
|
38587
38657
|
event_type: "thermostat.manually_adjusted";
|
|
38658
|
+
method: "seam" | "external";
|
|
38588
38659
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
38589
38660
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
38590
38661
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -38944,16 +39015,16 @@ declare const magic_link: z.ZodObject<{
|
|
|
38944
39015
|
}, "strip", z.ZodTypeAny, {
|
|
38945
39016
|
workspace_id: string;
|
|
38946
39017
|
created_at: string;
|
|
38947
|
-
url: string;
|
|
38948
39018
|
customer_key: string;
|
|
38949
39019
|
expires_at: string;
|
|
39020
|
+
url: string;
|
|
38950
39021
|
building_block_type: "manage_devices" | "connect_accounts" | "organize_spaces" | "console";
|
|
38951
39022
|
}, {
|
|
38952
39023
|
workspace_id: string;
|
|
38953
39024
|
created_at: string;
|
|
38954
|
-
url: string;
|
|
38955
39025
|
customer_key: string;
|
|
38956
39026
|
expires_at: string;
|
|
39027
|
+
url: string;
|
|
38957
39028
|
building_block_type: "manage_devices" | "connect_accounts" | "organize_spaces" | "console";
|
|
38958
39029
|
}>;
|
|
38959
39030
|
type MagicLink = z.infer<typeof magic_link>;
|
|
@@ -40602,16 +40673,28 @@ declare const _default: {
|
|
|
40602
40673
|
description: string;
|
|
40603
40674
|
type: string;
|
|
40604
40675
|
};
|
|
40676
|
+
door_id: {
|
|
40677
|
+
description: string;
|
|
40678
|
+
type: string;
|
|
40679
|
+
};
|
|
40605
40680
|
door_name: {
|
|
40606
40681
|
description: string;
|
|
40607
40682
|
type: string;
|
|
40608
40683
|
};
|
|
40609
40684
|
ext_door_id: {
|
|
40685
|
+
deprecated: boolean;
|
|
40686
|
+
type: string;
|
|
40687
|
+
'x-deprecated': string;
|
|
40688
|
+
};
|
|
40689
|
+
room_description: {
|
|
40690
|
+
description: string;
|
|
40691
|
+
type: string;
|
|
40692
|
+
};
|
|
40693
|
+
room_name: {
|
|
40610
40694
|
description: string;
|
|
40611
40695
|
type: string;
|
|
40612
40696
|
};
|
|
40613
40697
|
};
|
|
40614
|
-
required: string[];
|
|
40615
40698
|
type: string;
|
|
40616
40699
|
};
|
|
40617
40700
|
visionline_metadata: {
|
|
@@ -50146,16 +50229,28 @@ declare const _default: {
|
|
|
50146
50229
|
description: string;
|
|
50147
50230
|
type: string;
|
|
50148
50231
|
};
|
|
50232
|
+
door_id: {
|
|
50233
|
+
description: string;
|
|
50234
|
+
type: string;
|
|
50235
|
+
};
|
|
50149
50236
|
door_name: {
|
|
50150
50237
|
description: string;
|
|
50151
50238
|
type: string;
|
|
50152
50239
|
};
|
|
50153
50240
|
ext_door_id: {
|
|
50241
|
+
deprecated: boolean;
|
|
50242
|
+
type: string;
|
|
50243
|
+
'x-deprecated': string;
|
|
50244
|
+
};
|
|
50245
|
+
room_description: {
|
|
50246
|
+
description: string;
|
|
50247
|
+
type: string;
|
|
50248
|
+
};
|
|
50249
|
+
room_name: {
|
|
50154
50250
|
description: string;
|
|
50155
50251
|
type: string;
|
|
50156
50252
|
};
|
|
50157
50253
|
};
|
|
50158
|
-
required: string[];
|
|
50159
50254
|
type: string;
|
|
50160
50255
|
};
|
|
50161
50256
|
visionline_metadata: {
|
|
@@ -100443,12 +100538,19 @@ interface Routes {
|
|
|
100443
100538
|
} | undefined;
|
|
100444
100539
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
100445
100540
|
salto_space_metadata?: {
|
|
100541
|
+
/**
|
|
100542
|
+
* @deprecated use door_id. */
|
|
100543
|
+
ext_door_id?: string | undefined;
|
|
100544
|
+
/** Door ID in the Salto Space access system. */
|
|
100545
|
+
door_id?: string | undefined;
|
|
100446
100546
|
/** Name of the door in the Salto Space access system. */
|
|
100447
|
-
door_name
|
|
100448
|
-
/** External door ID in the Salto Space access system. */
|
|
100449
|
-
ext_door_id: string;
|
|
100547
|
+
door_name?: string | undefined;
|
|
100450
100548
|
/** Description of the door in the Salto Space access system. */
|
|
100451
100549
|
door_description?: string | undefined;
|
|
100550
|
+
/** Name of the room in the Salto Space access system. */
|
|
100551
|
+
room_name?: string | undefined;
|
|
100552
|
+
/** Description of the room in the Salto Space access system. */
|
|
100553
|
+
room_description?: string | undefined;
|
|
100452
100554
|
} | undefined;
|
|
100453
100555
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
100454
100556
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -101719,12 +101821,19 @@ interface Routes {
|
|
|
101719
101821
|
} | undefined;
|
|
101720
101822
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
101721
101823
|
salto_space_metadata?: {
|
|
101824
|
+
/**
|
|
101825
|
+
* @deprecated use door_id. */
|
|
101826
|
+
ext_door_id?: string | undefined;
|
|
101827
|
+
/** Door ID in the Salto Space access system. */
|
|
101828
|
+
door_id?: string | undefined;
|
|
101722
101829
|
/** Name of the door in the Salto Space access system. */
|
|
101723
|
-
door_name
|
|
101724
|
-
/** External door ID in the Salto Space access system. */
|
|
101725
|
-
ext_door_id: string;
|
|
101830
|
+
door_name?: string | undefined;
|
|
101726
101831
|
/** Description of the door in the Salto Space access system. */
|
|
101727
101832
|
door_description?: string | undefined;
|
|
101833
|
+
/** Name of the room in the Salto Space access system. */
|
|
101834
|
+
room_name?: string | undefined;
|
|
101835
|
+
/** Description of the room in the Salto Space access system. */
|
|
101836
|
+
room_description?: string | undefined;
|
|
101728
101837
|
} | undefined;
|
|
101729
101838
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
101730
101839
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -108508,12 +108617,19 @@ interface Routes {
|
|
|
108508
108617
|
} | undefined;
|
|
108509
108618
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
108510
108619
|
salto_space_metadata?: {
|
|
108620
|
+
/**
|
|
108621
|
+
* @deprecated use door_id. */
|
|
108622
|
+
ext_door_id?: string | undefined;
|
|
108623
|
+
/** Door ID in the Salto Space access system. */
|
|
108624
|
+
door_id?: string | undefined;
|
|
108511
108625
|
/** Name of the door in the Salto Space access system. */
|
|
108512
|
-
door_name
|
|
108513
|
-
/** External door ID in the Salto Space access system. */
|
|
108514
|
-
ext_door_id: string;
|
|
108626
|
+
door_name?: string | undefined;
|
|
108515
108627
|
/** Description of the door in the Salto Space access system. */
|
|
108516
108628
|
door_description?: string | undefined;
|
|
108629
|
+
/** Name of the room in the Salto Space access system. */
|
|
108630
|
+
room_name?: string | undefined;
|
|
108631
|
+
/** Description of the room in the Salto Space access system. */
|
|
108632
|
+
room_description?: string | undefined;
|
|
108517
108633
|
} | undefined;
|
|
108518
108634
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
108519
108635
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -109833,12 +109949,19 @@ interface Routes {
|
|
|
109833
109949
|
} | undefined;
|
|
109834
109950
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
109835
109951
|
salto_space_metadata?: {
|
|
109952
|
+
/**
|
|
109953
|
+
* @deprecated use door_id. */
|
|
109954
|
+
ext_door_id?: string | undefined;
|
|
109955
|
+
/** Door ID in the Salto Space access system. */
|
|
109956
|
+
door_id?: string | undefined;
|
|
109836
109957
|
/** Name of the door in the Salto Space access system. */
|
|
109837
|
-
door_name
|
|
109838
|
-
/** External door ID in the Salto Space access system. */
|
|
109839
|
-
ext_door_id: string;
|
|
109958
|
+
door_name?: string | undefined;
|
|
109840
109959
|
/** Description of the door in the Salto Space access system. */
|
|
109841
109960
|
door_description?: string | undefined;
|
|
109961
|
+
/** Name of the room in the Salto Space access system. */
|
|
109962
|
+
room_name?: string | undefined;
|
|
109963
|
+
/** Description of the room in the Salto Space access system. */
|
|
109964
|
+
room_description?: string | undefined;
|
|
109842
109965
|
} | undefined;
|
|
109843
109966
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
109844
109967
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -113248,12 +113371,19 @@ interface Routes {
|
|
|
113248
113371
|
} | undefined;
|
|
113249
113372
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
113250
113373
|
salto_space_metadata?: {
|
|
113374
|
+
/**
|
|
113375
|
+
* @deprecated use door_id. */
|
|
113376
|
+
ext_door_id?: string | undefined;
|
|
113377
|
+
/** Door ID in the Salto Space access system. */
|
|
113378
|
+
door_id?: string | undefined;
|
|
113251
113379
|
/** Name of the door in the Salto Space access system. */
|
|
113252
|
-
door_name
|
|
113253
|
-
/** External door ID in the Salto Space access system. */
|
|
113254
|
-
ext_door_id: string;
|
|
113380
|
+
door_name?: string | undefined;
|
|
113255
113381
|
/** Description of the door in the Salto Space access system. */
|
|
113256
113382
|
door_description?: string | undefined;
|
|
113383
|
+
/** Name of the room in the Salto Space access system. */
|
|
113384
|
+
room_name?: string | undefined;
|
|
113385
|
+
/** Description of the room in the Salto Space access system. */
|
|
113386
|
+
room_description?: string | undefined;
|
|
113257
113387
|
} | undefined;
|
|
113258
113388
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
113259
113389
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -113390,12 +113520,19 @@ interface Routes {
|
|
|
113390
113520
|
} | undefined;
|
|
113391
113521
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
113392
113522
|
salto_space_metadata?: {
|
|
113523
|
+
/**
|
|
113524
|
+
* @deprecated use door_id. */
|
|
113525
|
+
ext_door_id?: string | undefined;
|
|
113526
|
+
/** Door ID in the Salto Space access system. */
|
|
113527
|
+
door_id?: string | undefined;
|
|
113393
113528
|
/** Name of the door in the Salto Space access system. */
|
|
113394
|
-
door_name
|
|
113395
|
-
/** External door ID in the Salto Space access system. */
|
|
113396
|
-
ext_door_id: string;
|
|
113529
|
+
door_name?: string | undefined;
|
|
113397
113530
|
/** Description of the door in the Salto Space access system. */
|
|
113398
113531
|
door_description?: string | undefined;
|
|
113532
|
+
/** Name of the room in the Salto Space access system. */
|
|
113533
|
+
room_name?: string | undefined;
|
|
113534
|
+
/** Description of the room in the Salto Space access system. */
|
|
113535
|
+
room_description?: string | undefined;
|
|
113399
113536
|
} | undefined;
|
|
113400
113537
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
113401
113538
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -114797,12 +114934,19 @@ interface Routes {
|
|
|
114797
114934
|
} | undefined;
|
|
114798
114935
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
114799
114936
|
salto_space_metadata?: {
|
|
114937
|
+
/**
|
|
114938
|
+
* @deprecated use door_id. */
|
|
114939
|
+
ext_door_id?: string | undefined;
|
|
114940
|
+
/** Door ID in the Salto Space access system. */
|
|
114941
|
+
door_id?: string | undefined;
|
|
114800
114942
|
/** Name of the door in the Salto Space access system. */
|
|
114801
|
-
door_name
|
|
114802
|
-
/** External door ID in the Salto Space access system. */
|
|
114803
|
-
ext_door_id: string;
|
|
114943
|
+
door_name?: string | undefined;
|
|
114804
114944
|
/** Description of the door in the Salto Space access system. */
|
|
114805
114945
|
door_description?: string | undefined;
|
|
114946
|
+
/** Name of the room in the Salto Space access system. */
|
|
114947
|
+
room_name?: string | undefined;
|
|
114948
|
+
/** Description of the room in the Salto Space access system. */
|
|
114949
|
+
room_description?: string | undefined;
|
|
114806
114950
|
} | undefined;
|
|
114807
114951
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
114808
114952
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -143306,12 +143450,19 @@ interface Routes {
|
|
|
143306
143450
|
} | undefined;
|
|
143307
143451
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
143308
143452
|
salto_space_metadata?: {
|
|
143453
|
+
/**
|
|
143454
|
+
* @deprecated use door_id. */
|
|
143455
|
+
ext_door_id?: string | undefined;
|
|
143456
|
+
/** Door ID in the Salto Space access system. */
|
|
143457
|
+
door_id?: string | undefined;
|
|
143309
143458
|
/** Name of the door in the Salto Space access system. */
|
|
143310
|
-
door_name
|
|
143311
|
-
/** External door ID in the Salto Space access system. */
|
|
143312
|
-
ext_door_id: string;
|
|
143459
|
+
door_name?: string | undefined;
|
|
143313
143460
|
/** Description of the door in the Salto Space access system. */
|
|
143314
143461
|
door_description?: string | undefined;
|
|
143462
|
+
/** Name of the room in the Salto Space access system. */
|
|
143463
|
+
room_name?: string | undefined;
|
|
143464
|
+
/** Description of the room in the Salto Space access system. */
|
|
143465
|
+
room_description?: string | undefined;
|
|
143315
143466
|
} | undefined;
|
|
143316
143467
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
143317
143468
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -144742,12 +144893,19 @@ interface Routes {
|
|
|
144742
144893
|
} | undefined;
|
|
144743
144894
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
144744
144895
|
salto_space_metadata?: {
|
|
144896
|
+
/**
|
|
144897
|
+
* @deprecated use door_id. */
|
|
144898
|
+
ext_door_id?: string | undefined;
|
|
144899
|
+
/** Door ID in the Salto Space access system. */
|
|
144900
|
+
door_id?: string | undefined;
|
|
144745
144901
|
/** Name of the door in the Salto Space access system. */
|
|
144746
|
-
door_name
|
|
144747
|
-
/** External door ID in the Salto Space access system. */
|
|
144748
|
-
ext_door_id: string;
|
|
144902
|
+
door_name?: string | undefined;
|
|
144749
144903
|
/** Description of the door in the Salto Space access system. */
|
|
144750
144904
|
door_description?: string | undefined;
|
|
144905
|
+
/** Name of the room in the Salto Space access system. */
|
|
144906
|
+
room_name?: string | undefined;
|
|
144907
|
+
/** Description of the room in the Salto Space access system. */
|
|
144908
|
+
room_description?: string | undefined;
|
|
144751
144909
|
} | undefined;
|
|
144752
144910
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
144753
144911
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -146018,12 +146176,19 @@ interface Routes {
|
|
|
146018
146176
|
} | undefined;
|
|
146019
146177
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
146020
146178
|
salto_space_metadata?: {
|
|
146179
|
+
/**
|
|
146180
|
+
* @deprecated use door_id. */
|
|
146181
|
+
ext_door_id?: string | undefined;
|
|
146182
|
+
/** Door ID in the Salto Space access system. */
|
|
146183
|
+
door_id?: string | undefined;
|
|
146021
146184
|
/** Name of the door in the Salto Space access system. */
|
|
146022
|
-
door_name
|
|
146023
|
-
/** External door ID in the Salto Space access system. */
|
|
146024
|
-
ext_door_id: string;
|
|
146185
|
+
door_name?: string | undefined;
|
|
146025
146186
|
/** Description of the door in the Salto Space access system. */
|
|
146026
146187
|
door_description?: string | undefined;
|
|
146188
|
+
/** Name of the room in the Salto Space access system. */
|
|
146189
|
+
room_name?: string | undefined;
|
|
146190
|
+
/** Description of the room in the Salto Space access system. */
|
|
146191
|
+
room_description?: string | undefined;
|
|
146027
146192
|
} | undefined;
|
|
146028
146193
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
146029
146194
|
can_unlock_with_mobile_key?: boolean | undefined;
|