@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
|
@@ -131,7 +131,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
131
131
|
status: "low" | "full" | "critical" | "good";
|
|
132
132
|
level: number;
|
|
133
133
|
} | undefined;
|
|
134
|
-
manufacturer?: string | undefined;
|
|
135
134
|
battery_level?: number | undefined;
|
|
136
135
|
serial_number?: string | undefined;
|
|
137
136
|
accessory_keypad?: {
|
|
@@ -141,6 +140,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
141
140
|
} | undefined;
|
|
142
141
|
} | undefined;
|
|
143
142
|
has_direct_power?: boolean | undefined;
|
|
143
|
+
manufacturer?: string | undefined;
|
|
144
144
|
image_url?: string | undefined;
|
|
145
145
|
image_alt_text?: string | undefined;
|
|
146
146
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -168,7 +168,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
168
168
|
status: "low" | "full" | "critical" | "good";
|
|
169
169
|
level: number;
|
|
170
170
|
} | undefined;
|
|
171
|
-
manufacturer?: string | undefined;
|
|
172
171
|
battery_level?: number | undefined;
|
|
173
172
|
serial_number?: string | undefined;
|
|
174
173
|
accessory_keypad?: {
|
|
@@ -178,6 +177,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
178
177
|
} | undefined;
|
|
179
178
|
} | undefined;
|
|
180
179
|
has_direct_power?: boolean | undefined;
|
|
180
|
+
manufacturer?: string | undefined;
|
|
181
181
|
image_url?: string | undefined;
|
|
182
182
|
image_alt_text?: string | undefined;
|
|
183
183
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -374,16 +374,16 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
374
374
|
locked_state: z.ZodString;
|
|
375
375
|
model: z.ZodOptional<z.ZodString>;
|
|
376
376
|
}, "strip", z.ZodTypeAny, {
|
|
377
|
-
lock_type: string;
|
|
378
377
|
lock_id: string;
|
|
379
378
|
customer_reference: string;
|
|
379
|
+
lock_type: string;
|
|
380
380
|
battery_level: string;
|
|
381
381
|
locked_state: string;
|
|
382
382
|
model?: string | undefined;
|
|
383
383
|
}, {
|
|
384
|
-
lock_type: string;
|
|
385
384
|
lock_id: string;
|
|
386
385
|
customer_reference: string;
|
|
386
|
+
lock_type: string;
|
|
387
387
|
battery_level: string;
|
|
388
388
|
locked_state: string;
|
|
389
389
|
model?: string | undefined;
|
|
@@ -396,16 +396,16 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
396
396
|
locked_state: z.ZodString;
|
|
397
397
|
model: z.ZodOptional<z.ZodString>;
|
|
398
398
|
}, "strip", z.ZodTypeAny, {
|
|
399
|
-
lock_type: string;
|
|
400
399
|
lock_id: string;
|
|
401
400
|
customer_reference: string;
|
|
401
|
+
lock_type: string;
|
|
402
402
|
battery_level: string;
|
|
403
403
|
locked_state: string;
|
|
404
404
|
model?: string | undefined;
|
|
405
405
|
}, {
|
|
406
|
-
lock_type: string;
|
|
407
406
|
lock_id: string;
|
|
408
407
|
customer_reference: string;
|
|
408
|
+
lock_type: string;
|
|
409
409
|
battery_level: string;
|
|
410
410
|
locked_state: string;
|
|
411
411
|
model?: string | undefined;
|
|
@@ -448,14 +448,14 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
448
448
|
device_id: z.ZodString;
|
|
449
449
|
}, "strip", z.ZodTypeAny, {
|
|
450
450
|
device_id: string;
|
|
451
|
-
device_model: "indoor" | "outdoor";
|
|
452
451
|
device_name: string;
|
|
452
|
+
device_model: "indoor" | "outdoor";
|
|
453
453
|
noise_level_nrs: number;
|
|
454
454
|
noise_level_decibel: number;
|
|
455
455
|
}, {
|
|
456
456
|
device_id: string;
|
|
457
|
-
device_model: "indoor" | "outdoor";
|
|
458
457
|
device_name: string;
|
|
458
|
+
device_model: "indoor" | "outdoor";
|
|
459
459
|
noise_level_nrs: number;
|
|
460
460
|
noise_level_decibel: number;
|
|
461
461
|
}>>;
|
|
@@ -655,19 +655,19 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
655
655
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
656
656
|
wifi: z.ZodBoolean;
|
|
657
657
|
}, "strip", z.ZodTypeAny, {
|
|
658
|
-
wifi: boolean;
|
|
659
658
|
passcode: boolean;
|
|
660
659
|
passcode_management: boolean;
|
|
661
660
|
unlock_via_gateway: boolean;
|
|
662
661
|
lock_command: boolean;
|
|
663
662
|
incomplete_keyboard_passcode: boolean;
|
|
664
|
-
}, {
|
|
665
663
|
wifi: boolean;
|
|
664
|
+
}, {
|
|
666
665
|
passcode: boolean;
|
|
667
666
|
passcode_management: boolean;
|
|
668
667
|
unlock_via_gateway: boolean;
|
|
669
668
|
lock_command: boolean;
|
|
670
669
|
incomplete_keyboard_passcode: boolean;
|
|
670
|
+
wifi: boolean;
|
|
671
671
|
}>;
|
|
672
672
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
673
673
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -685,12 +685,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
685
685
|
lock_alias: string;
|
|
686
686
|
feature_value: string;
|
|
687
687
|
features: {
|
|
688
|
-
wifi: boolean;
|
|
689
688
|
passcode: boolean;
|
|
690
689
|
passcode_management: boolean;
|
|
691
690
|
unlock_via_gateway: boolean;
|
|
692
691
|
lock_command: boolean;
|
|
693
692
|
incomplete_keyboard_passcode: boolean;
|
|
693
|
+
wifi: boolean;
|
|
694
694
|
};
|
|
695
695
|
has_gateway?: boolean | undefined;
|
|
696
696
|
wireless_keypads?: {
|
|
@@ -702,12 +702,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
702
702
|
lock_alias: string;
|
|
703
703
|
feature_value: string;
|
|
704
704
|
features: {
|
|
705
|
-
wifi: boolean;
|
|
706
705
|
passcode: boolean;
|
|
707
706
|
passcode_management: boolean;
|
|
708
707
|
unlock_via_gateway: boolean;
|
|
709
708
|
lock_command: boolean;
|
|
710
709
|
incomplete_keyboard_passcode: boolean;
|
|
710
|
+
wifi: boolean;
|
|
711
711
|
};
|
|
712
712
|
has_gateway?: boolean | undefined;
|
|
713
713
|
wireless_keypads?: {
|
|
@@ -920,17 +920,17 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
920
920
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
921
921
|
}, "strip", z.ZodTypeAny, {
|
|
922
922
|
device_id: number;
|
|
923
|
-
device_model: string;
|
|
924
923
|
device_name: string;
|
|
925
924
|
bridge_id: number;
|
|
925
|
+
device_model: string;
|
|
926
926
|
bridge_name: string;
|
|
927
927
|
serial_number: string;
|
|
928
928
|
keypad_id?: number | undefined;
|
|
929
929
|
}, {
|
|
930
930
|
device_id: number;
|
|
931
|
-
device_model: string;
|
|
932
931
|
device_name: string;
|
|
933
932
|
bridge_id: number;
|
|
933
|
+
device_model: string;
|
|
934
934
|
bridge_name: string;
|
|
935
935
|
serial_number: string;
|
|
936
936
|
keypad_id?: number | undefined;
|
|
@@ -994,9 +994,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
994
994
|
ecobee_device_id: string;
|
|
995
995
|
} | undefined;
|
|
996
996
|
salto_ks_metadata?: {
|
|
997
|
-
lock_type: string;
|
|
998
997
|
lock_id: string;
|
|
999
998
|
customer_reference: string;
|
|
999
|
+
lock_type: string;
|
|
1000
1000
|
battery_level: string;
|
|
1001
1001
|
locked_state: string;
|
|
1002
1002
|
model?: string | undefined;
|
|
@@ -1048,9 +1048,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1048
1048
|
model_number: string;
|
|
1049
1049
|
} | undefined;
|
|
1050
1050
|
salto_metadata?: {
|
|
1051
|
-
lock_type: string;
|
|
1052
1051
|
lock_id: string;
|
|
1053
1052
|
customer_reference: string;
|
|
1053
|
+
lock_type: string;
|
|
1054
1054
|
battery_level: string;
|
|
1055
1055
|
locked_state: string;
|
|
1056
1056
|
model?: string | undefined;
|
|
@@ -1069,8 +1069,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1069
1069
|
} | undefined;
|
|
1070
1070
|
noiseaware_metadata?: {
|
|
1071
1071
|
device_id: string;
|
|
1072
|
-
device_model: "indoor" | "outdoor";
|
|
1073
1072
|
device_name: string;
|
|
1073
|
+
device_model: "indoor" | "outdoor";
|
|
1074
1074
|
noise_level_nrs: number;
|
|
1075
1075
|
noise_level_decibel: number;
|
|
1076
1076
|
} | undefined;
|
|
@@ -1119,12 +1119,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1119
1119
|
lock_alias: string;
|
|
1120
1120
|
feature_value: string;
|
|
1121
1121
|
features: {
|
|
1122
|
-
wifi: boolean;
|
|
1123
1122
|
passcode: boolean;
|
|
1124
1123
|
passcode_management: boolean;
|
|
1125
1124
|
unlock_via_gateway: boolean;
|
|
1126
1125
|
lock_command: boolean;
|
|
1127
1126
|
incomplete_keyboard_passcode: boolean;
|
|
1127
|
+
wifi: boolean;
|
|
1128
1128
|
};
|
|
1129
1129
|
has_gateway?: boolean | undefined;
|
|
1130
1130
|
wireless_keypads?: {
|
|
@@ -1193,9 +1193,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1193
1193
|
} | undefined;
|
|
1194
1194
|
tedee_metadata?: {
|
|
1195
1195
|
device_id: number;
|
|
1196
|
-
device_model: string;
|
|
1197
1196
|
device_name: string;
|
|
1198
1197
|
bridge_id: number;
|
|
1198
|
+
device_model: string;
|
|
1199
1199
|
bridge_name: string;
|
|
1200
1200
|
serial_number: string;
|
|
1201
1201
|
keypad_id?: number | undefined;
|
|
@@ -1227,9 +1227,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1227
1227
|
ecobee_device_id: string;
|
|
1228
1228
|
} | undefined;
|
|
1229
1229
|
salto_ks_metadata?: {
|
|
1230
|
-
lock_type: string;
|
|
1231
1230
|
lock_id: string;
|
|
1232
1231
|
customer_reference: string;
|
|
1232
|
+
lock_type: string;
|
|
1233
1233
|
battery_level: string;
|
|
1234
1234
|
locked_state: string;
|
|
1235
1235
|
model?: string | undefined;
|
|
@@ -1281,9 +1281,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1281
1281
|
model_number: string;
|
|
1282
1282
|
} | undefined;
|
|
1283
1283
|
salto_metadata?: {
|
|
1284
|
-
lock_type: string;
|
|
1285
1284
|
lock_id: string;
|
|
1286
1285
|
customer_reference: string;
|
|
1286
|
+
lock_type: string;
|
|
1287
1287
|
battery_level: string;
|
|
1288
1288
|
locked_state: string;
|
|
1289
1289
|
model?: string | undefined;
|
|
@@ -1302,8 +1302,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1302
1302
|
} | undefined;
|
|
1303
1303
|
noiseaware_metadata?: {
|
|
1304
1304
|
device_id: string;
|
|
1305
|
-
device_model: "indoor" | "outdoor";
|
|
1306
1305
|
device_name: string;
|
|
1306
|
+
device_model: "indoor" | "outdoor";
|
|
1307
1307
|
noise_level_nrs: number;
|
|
1308
1308
|
noise_level_decibel: number;
|
|
1309
1309
|
} | undefined;
|
|
@@ -1352,12 +1352,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1352
1352
|
lock_alias: string;
|
|
1353
1353
|
feature_value: string;
|
|
1354
1354
|
features: {
|
|
1355
|
-
wifi: boolean;
|
|
1356
1355
|
passcode: boolean;
|
|
1357
1356
|
passcode_management: boolean;
|
|
1358
1357
|
unlock_via_gateway: boolean;
|
|
1359
1358
|
lock_command: boolean;
|
|
1360
1359
|
incomplete_keyboard_passcode: boolean;
|
|
1360
|
+
wifi: boolean;
|
|
1361
1361
|
};
|
|
1362
1362
|
has_gateway?: boolean | undefined;
|
|
1363
1363
|
wireless_keypads?: {
|
|
@@ -1426,9 +1426,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
1426
1426
|
} | undefined;
|
|
1427
1427
|
tedee_metadata?: {
|
|
1428
1428
|
device_id: number;
|
|
1429
|
-
device_model: string;
|
|
1430
1429
|
device_name: string;
|
|
1431
1430
|
bridge_id: number;
|
|
1431
|
+
device_model: string;
|
|
1432
1432
|
bridge_name: string;
|
|
1433
1433
|
serial_number: string;
|
|
1434
1434
|
keypad_id?: number | undefined;
|
|
@@ -2764,7 +2764,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
2764
2764
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
2765
2765
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
2766
2766
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
2767
|
-
} & {
|
|
2768
2767
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
2769
2768
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2770
2769
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2979,7 +2978,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
2979
2978
|
status: "low" | "full" | "critical" | "good";
|
|
2980
2979
|
level: number;
|
|
2981
2980
|
} | undefined;
|
|
2982
|
-
manufacturer?: string | undefined;
|
|
2983
2981
|
battery_level?: number | undefined;
|
|
2984
2982
|
serial_number?: string | undefined;
|
|
2985
2983
|
accessory_keypad?: {
|
|
@@ -2989,6 +2987,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
2989
2987
|
} | undefined;
|
|
2990
2988
|
} | undefined;
|
|
2991
2989
|
has_direct_power?: boolean | undefined;
|
|
2990
|
+
manufacturer?: string | undefined;
|
|
2992
2991
|
image_url?: string | undefined;
|
|
2993
2992
|
image_alt_text?: string | undefined;
|
|
2994
2993
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -3014,9 +3013,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3014
3013
|
ecobee_device_id: string;
|
|
3015
3014
|
} | undefined;
|
|
3016
3015
|
salto_ks_metadata?: {
|
|
3017
|
-
lock_type: string;
|
|
3018
3016
|
lock_id: string;
|
|
3019
3017
|
customer_reference: string;
|
|
3018
|
+
lock_type: string;
|
|
3020
3019
|
battery_level: string;
|
|
3021
3020
|
locked_state: string;
|
|
3022
3021
|
model?: string | undefined;
|
|
@@ -3068,9 +3067,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3068
3067
|
model_number: string;
|
|
3069
3068
|
} | undefined;
|
|
3070
3069
|
salto_metadata?: {
|
|
3071
|
-
lock_type: string;
|
|
3072
3070
|
lock_id: string;
|
|
3073
3071
|
customer_reference: string;
|
|
3072
|
+
lock_type: string;
|
|
3074
3073
|
battery_level: string;
|
|
3075
3074
|
locked_state: string;
|
|
3076
3075
|
model?: string | undefined;
|
|
@@ -3089,8 +3088,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3089
3088
|
} | undefined;
|
|
3090
3089
|
noiseaware_metadata?: {
|
|
3091
3090
|
device_id: string;
|
|
3092
|
-
device_model: "indoor" | "outdoor";
|
|
3093
3091
|
device_name: string;
|
|
3092
|
+
device_model: "indoor" | "outdoor";
|
|
3094
3093
|
noise_level_nrs: number;
|
|
3095
3094
|
noise_level_decibel: number;
|
|
3096
3095
|
} | undefined;
|
|
@@ -3139,12 +3138,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3139
3138
|
lock_alias: string;
|
|
3140
3139
|
feature_value: string;
|
|
3141
3140
|
features: {
|
|
3142
|
-
wifi: boolean;
|
|
3143
3141
|
passcode: boolean;
|
|
3144
3142
|
passcode_management: boolean;
|
|
3145
3143
|
unlock_via_gateway: boolean;
|
|
3146
3144
|
lock_command: boolean;
|
|
3147
3145
|
incomplete_keyboard_passcode: boolean;
|
|
3146
|
+
wifi: boolean;
|
|
3148
3147
|
};
|
|
3149
3148
|
has_gateway?: boolean | undefined;
|
|
3150
3149
|
wireless_keypads?: {
|
|
@@ -3213,9 +3212,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3213
3212
|
} | undefined;
|
|
3214
3213
|
tedee_metadata?: {
|
|
3215
3214
|
device_id: number;
|
|
3216
|
-
device_model: string;
|
|
3217
3215
|
device_name: string;
|
|
3218
3216
|
bridge_id: number;
|
|
3217
|
+
device_model: string;
|
|
3219
3218
|
bridge_name: string;
|
|
3220
3219
|
serial_number: string;
|
|
3221
3220
|
keypad_id?: number | undefined;
|
|
@@ -3614,7 +3613,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3614
3613
|
status: "low" | "full" | "critical" | "good";
|
|
3615
3614
|
level: number;
|
|
3616
3615
|
} | undefined;
|
|
3617
|
-
manufacturer?: string | undefined;
|
|
3618
3616
|
battery_level?: number | undefined;
|
|
3619
3617
|
serial_number?: string | undefined;
|
|
3620
3618
|
accessory_keypad?: {
|
|
@@ -3624,6 +3622,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3624
3622
|
} | undefined;
|
|
3625
3623
|
} | undefined;
|
|
3626
3624
|
has_direct_power?: boolean | undefined;
|
|
3625
|
+
manufacturer?: string | undefined;
|
|
3627
3626
|
image_url?: string | undefined;
|
|
3628
3627
|
image_alt_text?: string | undefined;
|
|
3629
3628
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -3649,9 +3648,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3649
3648
|
ecobee_device_id: string;
|
|
3650
3649
|
} | undefined;
|
|
3651
3650
|
salto_ks_metadata?: {
|
|
3652
|
-
lock_type: string;
|
|
3653
3651
|
lock_id: string;
|
|
3654
3652
|
customer_reference: string;
|
|
3653
|
+
lock_type: string;
|
|
3655
3654
|
battery_level: string;
|
|
3656
3655
|
locked_state: string;
|
|
3657
3656
|
model?: string | undefined;
|
|
@@ -3703,9 +3702,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3703
3702
|
model_number: string;
|
|
3704
3703
|
} | undefined;
|
|
3705
3704
|
salto_metadata?: {
|
|
3706
|
-
lock_type: string;
|
|
3707
3705
|
lock_id: string;
|
|
3708
3706
|
customer_reference: string;
|
|
3707
|
+
lock_type: string;
|
|
3709
3708
|
battery_level: string;
|
|
3710
3709
|
locked_state: string;
|
|
3711
3710
|
model?: string | undefined;
|
|
@@ -3724,8 +3723,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3724
3723
|
} | undefined;
|
|
3725
3724
|
noiseaware_metadata?: {
|
|
3726
3725
|
device_id: string;
|
|
3727
|
-
device_model: "indoor" | "outdoor";
|
|
3728
3726
|
device_name: string;
|
|
3727
|
+
device_model: "indoor" | "outdoor";
|
|
3729
3728
|
noise_level_nrs: number;
|
|
3730
3729
|
noise_level_decibel: number;
|
|
3731
3730
|
} | undefined;
|
|
@@ -3774,12 +3773,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3774
3773
|
lock_alias: string;
|
|
3775
3774
|
feature_value: string;
|
|
3776
3775
|
features: {
|
|
3777
|
-
wifi: boolean;
|
|
3778
3776
|
passcode: boolean;
|
|
3779
3777
|
passcode_management: boolean;
|
|
3780
3778
|
unlock_via_gateway: boolean;
|
|
3781
3779
|
lock_command: boolean;
|
|
3782
3780
|
incomplete_keyboard_passcode: boolean;
|
|
3781
|
+
wifi: boolean;
|
|
3783
3782
|
};
|
|
3784
3783
|
has_gateway?: boolean | undefined;
|
|
3785
3784
|
wireless_keypads?: {
|
|
@@ -3848,9 +3847,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
3848
3847
|
} | undefined;
|
|
3849
3848
|
tedee_metadata?: {
|
|
3850
3849
|
device_id: number;
|
|
3851
|
-
device_model: string;
|
|
3852
3850
|
device_name: string;
|
|
3853
3851
|
bridge_id: number;
|
|
3852
|
+
device_model: string;
|
|
3854
3853
|
bridge_name: string;
|
|
3855
3854
|
serial_number: string;
|
|
3856
3855
|
keypad_id?: number | undefined;
|
|
@@ -4155,17 +4154,26 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4155
4154
|
pms_id?: string | undefined;
|
|
4156
4155
|
}>>;
|
|
4157
4156
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
4158
|
-
|
|
4159
|
-
|
|
4157
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
4158
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
4159
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
4160
4160
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4161
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
4162
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
4161
4163
|
}, "strip", z.ZodTypeAny, {
|
|
4162
|
-
door_name
|
|
4163
|
-
|
|
4164
|
+
door_name?: string | undefined;
|
|
4165
|
+
door_id?: string | undefined;
|
|
4166
|
+
ext_door_id?: string | undefined;
|
|
4164
4167
|
door_description?: string | undefined;
|
|
4168
|
+
room_name?: string | undefined;
|
|
4169
|
+
room_description?: string | undefined;
|
|
4165
4170
|
}, {
|
|
4166
|
-
door_name
|
|
4167
|
-
|
|
4171
|
+
door_name?: string | undefined;
|
|
4172
|
+
door_id?: string | undefined;
|
|
4173
|
+
ext_door_id?: string | undefined;
|
|
4168
4174
|
door_description?: string | undefined;
|
|
4175
|
+
room_name?: string | undefined;
|
|
4176
|
+
room_description?: string | undefined;
|
|
4169
4177
|
}>>;
|
|
4170
4178
|
} & {
|
|
4171
4179
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4219,9 +4227,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4219
4227
|
access_point_name: string;
|
|
4220
4228
|
} | undefined;
|
|
4221
4229
|
salto_space_metadata?: {
|
|
4222
|
-
door_name
|
|
4223
|
-
|
|
4230
|
+
door_name?: string | undefined;
|
|
4231
|
+
door_id?: string | undefined;
|
|
4232
|
+
ext_door_id?: string | undefined;
|
|
4224
4233
|
door_description?: string | undefined;
|
|
4234
|
+
room_name?: string | undefined;
|
|
4235
|
+
room_description?: string | undefined;
|
|
4225
4236
|
} | undefined;
|
|
4226
4237
|
}, {
|
|
4227
4238
|
display_name: string;
|
|
@@ -4271,9 +4282,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4271
4282
|
access_point_name: string;
|
|
4272
4283
|
} | undefined;
|
|
4273
4284
|
salto_space_metadata?: {
|
|
4274
|
-
door_name
|
|
4275
|
-
|
|
4285
|
+
door_name?: string | undefined;
|
|
4286
|
+
door_id?: string | undefined;
|
|
4287
|
+
ext_door_id?: string | undefined;
|
|
4276
4288
|
door_description?: string | undefined;
|
|
4289
|
+
room_name?: string | undefined;
|
|
4290
|
+
room_description?: string | undefined;
|
|
4277
4291
|
} | undefined;
|
|
4278
4292
|
}>, "many">>;
|
|
4279
4293
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4498,7 +4512,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4498
4512
|
status: "low" | "full" | "critical" | "good";
|
|
4499
4513
|
level: number;
|
|
4500
4514
|
} | undefined;
|
|
4501
|
-
manufacturer?: string | undefined;
|
|
4502
4515
|
battery_level?: number | undefined;
|
|
4503
4516
|
serial_number?: string | undefined;
|
|
4504
4517
|
accessory_keypad?: {
|
|
@@ -4508,6 +4521,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4508
4521
|
} | undefined;
|
|
4509
4522
|
} | undefined;
|
|
4510
4523
|
has_direct_power?: boolean | undefined;
|
|
4524
|
+
manufacturer?: string | undefined;
|
|
4511
4525
|
image_url?: string | undefined;
|
|
4512
4526
|
image_alt_text?: string | undefined;
|
|
4513
4527
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -4533,9 +4547,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4533
4547
|
ecobee_device_id: string;
|
|
4534
4548
|
} | undefined;
|
|
4535
4549
|
salto_ks_metadata?: {
|
|
4536
|
-
lock_type: string;
|
|
4537
4550
|
lock_id: string;
|
|
4538
4551
|
customer_reference: string;
|
|
4552
|
+
lock_type: string;
|
|
4539
4553
|
battery_level: string;
|
|
4540
4554
|
locked_state: string;
|
|
4541
4555
|
model?: string | undefined;
|
|
@@ -4587,9 +4601,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4587
4601
|
model_number: string;
|
|
4588
4602
|
} | undefined;
|
|
4589
4603
|
salto_metadata?: {
|
|
4590
|
-
lock_type: string;
|
|
4591
4604
|
lock_id: string;
|
|
4592
4605
|
customer_reference: string;
|
|
4606
|
+
lock_type: string;
|
|
4593
4607
|
battery_level: string;
|
|
4594
4608
|
locked_state: string;
|
|
4595
4609
|
model?: string | undefined;
|
|
@@ -4608,8 +4622,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4608
4622
|
} | undefined;
|
|
4609
4623
|
noiseaware_metadata?: {
|
|
4610
4624
|
device_id: string;
|
|
4611
|
-
device_model: "indoor" | "outdoor";
|
|
4612
4625
|
device_name: string;
|
|
4626
|
+
device_model: "indoor" | "outdoor";
|
|
4613
4627
|
noise_level_nrs: number;
|
|
4614
4628
|
noise_level_decibel: number;
|
|
4615
4629
|
} | undefined;
|
|
@@ -4658,12 +4672,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4658
4672
|
lock_alias: string;
|
|
4659
4673
|
feature_value: string;
|
|
4660
4674
|
features: {
|
|
4661
|
-
wifi: boolean;
|
|
4662
4675
|
passcode: boolean;
|
|
4663
4676
|
passcode_management: boolean;
|
|
4664
4677
|
unlock_via_gateway: boolean;
|
|
4665
4678
|
lock_command: boolean;
|
|
4666
4679
|
incomplete_keyboard_passcode: boolean;
|
|
4680
|
+
wifi: boolean;
|
|
4667
4681
|
};
|
|
4668
4682
|
has_gateway?: boolean | undefined;
|
|
4669
4683
|
wireless_keypads?: {
|
|
@@ -4732,9 +4746,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4732
4746
|
} | undefined;
|
|
4733
4747
|
tedee_metadata?: {
|
|
4734
4748
|
device_id: number;
|
|
4735
|
-
device_model: string;
|
|
4736
4749
|
device_name: string;
|
|
4737
4750
|
bridge_id: number;
|
|
4751
|
+
device_model: string;
|
|
4738
4752
|
bridge_name: string;
|
|
4739
4753
|
serial_number: string;
|
|
4740
4754
|
keypad_id?: number | undefined;
|
|
@@ -4972,9 +4986,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
4972
4986
|
access_point_name: string;
|
|
4973
4987
|
} | undefined;
|
|
4974
4988
|
salto_space_metadata?: {
|
|
4975
|
-
door_name
|
|
4976
|
-
|
|
4989
|
+
door_name?: string | undefined;
|
|
4990
|
+
door_id?: string | undefined;
|
|
4991
|
+
ext_door_id?: string | undefined;
|
|
4977
4992
|
door_description?: string | undefined;
|
|
4993
|
+
room_name?: string | undefined;
|
|
4994
|
+
room_description?: string | undefined;
|
|
4978
4995
|
} | undefined;
|
|
4979
4996
|
}[] | undefined;
|
|
4980
4997
|
}, {
|
|
@@ -5199,7 +5216,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5199
5216
|
status: "low" | "full" | "critical" | "good";
|
|
5200
5217
|
level: number;
|
|
5201
5218
|
} | undefined;
|
|
5202
|
-
manufacturer?: string | undefined;
|
|
5203
5219
|
battery_level?: number | undefined;
|
|
5204
5220
|
serial_number?: string | undefined;
|
|
5205
5221
|
accessory_keypad?: {
|
|
@@ -5209,6 +5225,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5209
5225
|
} | undefined;
|
|
5210
5226
|
} | undefined;
|
|
5211
5227
|
has_direct_power?: boolean | undefined;
|
|
5228
|
+
manufacturer?: string | undefined;
|
|
5212
5229
|
image_url?: string | undefined;
|
|
5213
5230
|
image_alt_text?: string | undefined;
|
|
5214
5231
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -5234,9 +5251,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5234
5251
|
ecobee_device_id: string;
|
|
5235
5252
|
} | undefined;
|
|
5236
5253
|
salto_ks_metadata?: {
|
|
5237
|
-
lock_type: string;
|
|
5238
5254
|
lock_id: string;
|
|
5239
5255
|
customer_reference: string;
|
|
5256
|
+
lock_type: string;
|
|
5240
5257
|
battery_level: string;
|
|
5241
5258
|
locked_state: string;
|
|
5242
5259
|
model?: string | undefined;
|
|
@@ -5288,9 +5305,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5288
5305
|
model_number: string;
|
|
5289
5306
|
} | undefined;
|
|
5290
5307
|
salto_metadata?: {
|
|
5291
|
-
lock_type: string;
|
|
5292
5308
|
lock_id: string;
|
|
5293
5309
|
customer_reference: string;
|
|
5310
|
+
lock_type: string;
|
|
5294
5311
|
battery_level: string;
|
|
5295
5312
|
locked_state: string;
|
|
5296
5313
|
model?: string | undefined;
|
|
@@ -5309,8 +5326,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5309
5326
|
} | undefined;
|
|
5310
5327
|
noiseaware_metadata?: {
|
|
5311
5328
|
device_id: string;
|
|
5312
|
-
device_model: "indoor" | "outdoor";
|
|
5313
5329
|
device_name: string;
|
|
5330
|
+
device_model: "indoor" | "outdoor";
|
|
5314
5331
|
noise_level_nrs: number;
|
|
5315
5332
|
noise_level_decibel: number;
|
|
5316
5333
|
} | undefined;
|
|
@@ -5359,12 +5376,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5359
5376
|
lock_alias: string;
|
|
5360
5377
|
feature_value: string;
|
|
5361
5378
|
features: {
|
|
5362
|
-
wifi: boolean;
|
|
5363
5379
|
passcode: boolean;
|
|
5364
5380
|
passcode_management: boolean;
|
|
5365
5381
|
unlock_via_gateway: boolean;
|
|
5366
5382
|
lock_command: boolean;
|
|
5367
5383
|
incomplete_keyboard_passcode: boolean;
|
|
5384
|
+
wifi: boolean;
|
|
5368
5385
|
};
|
|
5369
5386
|
has_gateway?: boolean | undefined;
|
|
5370
5387
|
wireless_keypads?: {
|
|
@@ -5433,9 +5450,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5433
5450
|
} | undefined;
|
|
5434
5451
|
tedee_metadata?: {
|
|
5435
5452
|
device_id: number;
|
|
5436
|
-
device_model: string;
|
|
5437
5453
|
device_name: string;
|
|
5438
5454
|
bridge_id: number;
|
|
5455
|
+
device_model: string;
|
|
5439
5456
|
bridge_name: string;
|
|
5440
5457
|
serial_number: string;
|
|
5441
5458
|
keypad_id?: number | undefined;
|
|
@@ -5673,9 +5690,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5673
5690
|
access_point_name: string;
|
|
5674
5691
|
} | undefined;
|
|
5675
5692
|
salto_space_metadata?: {
|
|
5676
|
-
door_name
|
|
5677
|
-
|
|
5693
|
+
door_name?: string | undefined;
|
|
5694
|
+
door_id?: string | undefined;
|
|
5695
|
+
ext_door_id?: string | undefined;
|
|
5678
5696
|
door_description?: string | undefined;
|
|
5697
|
+
room_name?: string | undefined;
|
|
5698
|
+
room_description?: string | undefined;
|
|
5679
5699
|
} | undefined;
|
|
5680
5700
|
}[] | undefined;
|
|
5681
5701
|
}>, z.ZodObject<{
|
|
@@ -5810,7 +5830,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5810
5830
|
status: "low" | "full" | "critical" | "good";
|
|
5811
5831
|
level: number;
|
|
5812
5832
|
} | undefined;
|
|
5813
|
-
manufacturer?: string | undefined;
|
|
5814
5833
|
battery_level?: number | undefined;
|
|
5815
5834
|
serial_number?: string | undefined;
|
|
5816
5835
|
accessory_keypad?: {
|
|
@@ -5820,6 +5839,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5820
5839
|
} | undefined;
|
|
5821
5840
|
} | undefined;
|
|
5822
5841
|
has_direct_power?: boolean | undefined;
|
|
5842
|
+
manufacturer?: string | undefined;
|
|
5823
5843
|
image_url?: string | undefined;
|
|
5824
5844
|
image_alt_text?: string | undefined;
|
|
5825
5845
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -5847,7 +5867,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5847
5867
|
status: "low" | "full" | "critical" | "good";
|
|
5848
5868
|
level: number;
|
|
5849
5869
|
} | undefined;
|
|
5850
|
-
manufacturer?: string | undefined;
|
|
5851
5870
|
battery_level?: number | undefined;
|
|
5852
5871
|
serial_number?: string | undefined;
|
|
5853
5872
|
accessory_keypad?: {
|
|
@@ -5857,6 +5876,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
5857
5876
|
} | undefined;
|
|
5858
5877
|
} | undefined;
|
|
5859
5878
|
has_direct_power?: boolean | undefined;
|
|
5879
|
+
manufacturer?: string | undefined;
|
|
5860
5880
|
image_url?: string | undefined;
|
|
5861
5881
|
image_alt_text?: string | undefined;
|
|
5862
5882
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -6053,16 +6073,16 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6053
6073
|
locked_state: z.ZodString;
|
|
6054
6074
|
model: z.ZodOptional<z.ZodString>;
|
|
6055
6075
|
}, "strip", z.ZodTypeAny, {
|
|
6056
|
-
lock_type: string;
|
|
6057
6076
|
lock_id: string;
|
|
6058
6077
|
customer_reference: string;
|
|
6078
|
+
lock_type: string;
|
|
6059
6079
|
battery_level: string;
|
|
6060
6080
|
locked_state: string;
|
|
6061
6081
|
model?: string | undefined;
|
|
6062
6082
|
}, {
|
|
6063
|
-
lock_type: string;
|
|
6064
6083
|
lock_id: string;
|
|
6065
6084
|
customer_reference: string;
|
|
6085
|
+
lock_type: string;
|
|
6066
6086
|
battery_level: string;
|
|
6067
6087
|
locked_state: string;
|
|
6068
6088
|
model?: string | undefined;
|
|
@@ -6075,16 +6095,16 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6075
6095
|
locked_state: z.ZodString;
|
|
6076
6096
|
model: z.ZodOptional<z.ZodString>;
|
|
6077
6097
|
}, "strip", z.ZodTypeAny, {
|
|
6078
|
-
lock_type: string;
|
|
6079
6098
|
lock_id: string;
|
|
6080
6099
|
customer_reference: string;
|
|
6100
|
+
lock_type: string;
|
|
6081
6101
|
battery_level: string;
|
|
6082
6102
|
locked_state: string;
|
|
6083
6103
|
model?: string | undefined;
|
|
6084
6104
|
}, {
|
|
6085
|
-
lock_type: string;
|
|
6086
6105
|
lock_id: string;
|
|
6087
6106
|
customer_reference: string;
|
|
6107
|
+
lock_type: string;
|
|
6088
6108
|
battery_level: string;
|
|
6089
6109
|
locked_state: string;
|
|
6090
6110
|
model?: string | undefined;
|
|
@@ -6127,14 +6147,14 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6127
6147
|
device_id: z.ZodString;
|
|
6128
6148
|
}, "strip", z.ZodTypeAny, {
|
|
6129
6149
|
device_id: string;
|
|
6130
|
-
device_model: "indoor" | "outdoor";
|
|
6131
6150
|
device_name: string;
|
|
6151
|
+
device_model: "indoor" | "outdoor";
|
|
6132
6152
|
noise_level_nrs: number;
|
|
6133
6153
|
noise_level_decibel: number;
|
|
6134
6154
|
}, {
|
|
6135
6155
|
device_id: string;
|
|
6136
|
-
device_model: "indoor" | "outdoor";
|
|
6137
6156
|
device_name: string;
|
|
6157
|
+
device_model: "indoor" | "outdoor";
|
|
6138
6158
|
noise_level_nrs: number;
|
|
6139
6159
|
noise_level_decibel: number;
|
|
6140
6160
|
}>>;
|
|
@@ -6334,19 +6354,19 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6334
6354
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
6335
6355
|
wifi: z.ZodBoolean;
|
|
6336
6356
|
}, "strip", z.ZodTypeAny, {
|
|
6337
|
-
wifi: boolean;
|
|
6338
6357
|
passcode: boolean;
|
|
6339
6358
|
passcode_management: boolean;
|
|
6340
6359
|
unlock_via_gateway: boolean;
|
|
6341
6360
|
lock_command: boolean;
|
|
6342
6361
|
incomplete_keyboard_passcode: boolean;
|
|
6343
|
-
}, {
|
|
6344
6362
|
wifi: boolean;
|
|
6363
|
+
}, {
|
|
6345
6364
|
passcode: boolean;
|
|
6346
6365
|
passcode_management: boolean;
|
|
6347
6366
|
unlock_via_gateway: boolean;
|
|
6348
6367
|
lock_command: boolean;
|
|
6349
6368
|
incomplete_keyboard_passcode: boolean;
|
|
6369
|
+
wifi: boolean;
|
|
6350
6370
|
}>;
|
|
6351
6371
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
6352
6372
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -6364,12 +6384,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6364
6384
|
lock_alias: string;
|
|
6365
6385
|
feature_value: string;
|
|
6366
6386
|
features: {
|
|
6367
|
-
wifi: boolean;
|
|
6368
6387
|
passcode: boolean;
|
|
6369
6388
|
passcode_management: boolean;
|
|
6370
6389
|
unlock_via_gateway: boolean;
|
|
6371
6390
|
lock_command: boolean;
|
|
6372
6391
|
incomplete_keyboard_passcode: boolean;
|
|
6392
|
+
wifi: boolean;
|
|
6373
6393
|
};
|
|
6374
6394
|
has_gateway?: boolean | undefined;
|
|
6375
6395
|
wireless_keypads?: {
|
|
@@ -6381,12 +6401,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6381
6401
|
lock_alias: string;
|
|
6382
6402
|
feature_value: string;
|
|
6383
6403
|
features: {
|
|
6384
|
-
wifi: boolean;
|
|
6385
6404
|
passcode: boolean;
|
|
6386
6405
|
passcode_management: boolean;
|
|
6387
6406
|
unlock_via_gateway: boolean;
|
|
6388
6407
|
lock_command: boolean;
|
|
6389
6408
|
incomplete_keyboard_passcode: boolean;
|
|
6409
|
+
wifi: boolean;
|
|
6390
6410
|
};
|
|
6391
6411
|
has_gateway?: boolean | undefined;
|
|
6392
6412
|
wireless_keypads?: {
|
|
@@ -6599,17 +6619,17 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6599
6619
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
6600
6620
|
}, "strip", z.ZodTypeAny, {
|
|
6601
6621
|
device_id: number;
|
|
6602
|
-
device_model: string;
|
|
6603
6622
|
device_name: string;
|
|
6604
6623
|
bridge_id: number;
|
|
6624
|
+
device_model: string;
|
|
6605
6625
|
bridge_name: string;
|
|
6606
6626
|
serial_number: string;
|
|
6607
6627
|
keypad_id?: number | undefined;
|
|
6608
6628
|
}, {
|
|
6609
6629
|
device_id: number;
|
|
6610
|
-
device_model: string;
|
|
6611
6630
|
device_name: string;
|
|
6612
6631
|
bridge_id: number;
|
|
6632
|
+
device_model: string;
|
|
6613
6633
|
bridge_name: string;
|
|
6614
6634
|
serial_number: string;
|
|
6615
6635
|
keypad_id?: number | undefined;
|
|
@@ -6673,9 +6693,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6673
6693
|
ecobee_device_id: string;
|
|
6674
6694
|
} | undefined;
|
|
6675
6695
|
salto_ks_metadata?: {
|
|
6676
|
-
lock_type: string;
|
|
6677
6696
|
lock_id: string;
|
|
6678
6697
|
customer_reference: string;
|
|
6698
|
+
lock_type: string;
|
|
6679
6699
|
battery_level: string;
|
|
6680
6700
|
locked_state: string;
|
|
6681
6701
|
model?: string | undefined;
|
|
@@ -6727,9 +6747,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6727
6747
|
model_number: string;
|
|
6728
6748
|
} | undefined;
|
|
6729
6749
|
salto_metadata?: {
|
|
6730
|
-
lock_type: string;
|
|
6731
6750
|
lock_id: string;
|
|
6732
6751
|
customer_reference: string;
|
|
6752
|
+
lock_type: string;
|
|
6733
6753
|
battery_level: string;
|
|
6734
6754
|
locked_state: string;
|
|
6735
6755
|
model?: string | undefined;
|
|
@@ -6748,8 +6768,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6748
6768
|
} | undefined;
|
|
6749
6769
|
noiseaware_metadata?: {
|
|
6750
6770
|
device_id: string;
|
|
6751
|
-
device_model: "indoor" | "outdoor";
|
|
6752
6771
|
device_name: string;
|
|
6772
|
+
device_model: "indoor" | "outdoor";
|
|
6753
6773
|
noise_level_nrs: number;
|
|
6754
6774
|
noise_level_decibel: number;
|
|
6755
6775
|
} | undefined;
|
|
@@ -6798,12 +6818,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6798
6818
|
lock_alias: string;
|
|
6799
6819
|
feature_value: string;
|
|
6800
6820
|
features: {
|
|
6801
|
-
wifi: boolean;
|
|
6802
6821
|
passcode: boolean;
|
|
6803
6822
|
passcode_management: boolean;
|
|
6804
6823
|
unlock_via_gateway: boolean;
|
|
6805
6824
|
lock_command: boolean;
|
|
6806
6825
|
incomplete_keyboard_passcode: boolean;
|
|
6826
|
+
wifi: boolean;
|
|
6807
6827
|
};
|
|
6808
6828
|
has_gateway?: boolean | undefined;
|
|
6809
6829
|
wireless_keypads?: {
|
|
@@ -6872,9 +6892,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6872
6892
|
} | undefined;
|
|
6873
6893
|
tedee_metadata?: {
|
|
6874
6894
|
device_id: number;
|
|
6875
|
-
device_model: string;
|
|
6876
6895
|
device_name: string;
|
|
6877
6896
|
bridge_id: number;
|
|
6897
|
+
device_model: string;
|
|
6878
6898
|
bridge_name: string;
|
|
6879
6899
|
serial_number: string;
|
|
6880
6900
|
keypad_id?: number | undefined;
|
|
@@ -6906,9 +6926,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6906
6926
|
ecobee_device_id: string;
|
|
6907
6927
|
} | undefined;
|
|
6908
6928
|
salto_ks_metadata?: {
|
|
6909
|
-
lock_type: string;
|
|
6910
6929
|
lock_id: string;
|
|
6911
6930
|
customer_reference: string;
|
|
6931
|
+
lock_type: string;
|
|
6912
6932
|
battery_level: string;
|
|
6913
6933
|
locked_state: string;
|
|
6914
6934
|
model?: string | undefined;
|
|
@@ -6960,9 +6980,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6960
6980
|
model_number: string;
|
|
6961
6981
|
} | undefined;
|
|
6962
6982
|
salto_metadata?: {
|
|
6963
|
-
lock_type: string;
|
|
6964
6983
|
lock_id: string;
|
|
6965
6984
|
customer_reference: string;
|
|
6985
|
+
lock_type: string;
|
|
6966
6986
|
battery_level: string;
|
|
6967
6987
|
locked_state: string;
|
|
6968
6988
|
model?: string | undefined;
|
|
@@ -6981,8 +7001,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
6981
7001
|
} | undefined;
|
|
6982
7002
|
noiseaware_metadata?: {
|
|
6983
7003
|
device_id: string;
|
|
6984
|
-
device_model: "indoor" | "outdoor";
|
|
6985
7004
|
device_name: string;
|
|
7005
|
+
device_model: "indoor" | "outdoor";
|
|
6986
7006
|
noise_level_nrs: number;
|
|
6987
7007
|
noise_level_decibel: number;
|
|
6988
7008
|
} | undefined;
|
|
@@ -7031,12 +7051,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
7031
7051
|
lock_alias: string;
|
|
7032
7052
|
feature_value: string;
|
|
7033
7053
|
features: {
|
|
7034
|
-
wifi: boolean;
|
|
7035
7054
|
passcode: boolean;
|
|
7036
7055
|
passcode_management: boolean;
|
|
7037
7056
|
unlock_via_gateway: boolean;
|
|
7038
7057
|
lock_command: boolean;
|
|
7039
7058
|
incomplete_keyboard_passcode: boolean;
|
|
7059
|
+
wifi: boolean;
|
|
7040
7060
|
};
|
|
7041
7061
|
has_gateway?: boolean | undefined;
|
|
7042
7062
|
wireless_keypads?: {
|
|
@@ -7105,9 +7125,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
7105
7125
|
} | undefined;
|
|
7106
7126
|
tedee_metadata?: {
|
|
7107
7127
|
device_id: number;
|
|
7108
|
-
device_model: string;
|
|
7109
7128
|
device_name: string;
|
|
7110
7129
|
bridge_id: number;
|
|
7130
|
+
device_model: string;
|
|
7111
7131
|
bridge_name: string;
|
|
7112
7132
|
serial_number: string;
|
|
7113
7133
|
keypad_id?: number | undefined;
|
|
@@ -8443,7 +8463,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8443
8463
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
8444
8464
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
8445
8465
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
8446
|
-
} & {
|
|
8447
8466
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
8448
8467
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
8449
8468
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8658,7 +8677,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8658
8677
|
status: "low" | "full" | "critical" | "good";
|
|
8659
8678
|
level: number;
|
|
8660
8679
|
} | undefined;
|
|
8661
|
-
manufacturer?: string | undefined;
|
|
8662
8680
|
battery_level?: number | undefined;
|
|
8663
8681
|
serial_number?: string | undefined;
|
|
8664
8682
|
accessory_keypad?: {
|
|
@@ -8668,6 +8686,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8668
8686
|
} | undefined;
|
|
8669
8687
|
} | undefined;
|
|
8670
8688
|
has_direct_power?: boolean | undefined;
|
|
8689
|
+
manufacturer?: string | undefined;
|
|
8671
8690
|
image_url?: string | undefined;
|
|
8672
8691
|
image_alt_text?: string | undefined;
|
|
8673
8692
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -8693,9 +8712,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8693
8712
|
ecobee_device_id: string;
|
|
8694
8713
|
} | undefined;
|
|
8695
8714
|
salto_ks_metadata?: {
|
|
8696
|
-
lock_type: string;
|
|
8697
8715
|
lock_id: string;
|
|
8698
8716
|
customer_reference: string;
|
|
8717
|
+
lock_type: string;
|
|
8699
8718
|
battery_level: string;
|
|
8700
8719
|
locked_state: string;
|
|
8701
8720
|
model?: string | undefined;
|
|
@@ -8747,9 +8766,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8747
8766
|
model_number: string;
|
|
8748
8767
|
} | undefined;
|
|
8749
8768
|
salto_metadata?: {
|
|
8750
|
-
lock_type: string;
|
|
8751
8769
|
lock_id: string;
|
|
8752
8770
|
customer_reference: string;
|
|
8771
|
+
lock_type: string;
|
|
8753
8772
|
battery_level: string;
|
|
8754
8773
|
locked_state: string;
|
|
8755
8774
|
model?: string | undefined;
|
|
@@ -8768,8 +8787,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8768
8787
|
} | undefined;
|
|
8769
8788
|
noiseaware_metadata?: {
|
|
8770
8789
|
device_id: string;
|
|
8771
|
-
device_model: "indoor" | "outdoor";
|
|
8772
8790
|
device_name: string;
|
|
8791
|
+
device_model: "indoor" | "outdoor";
|
|
8773
8792
|
noise_level_nrs: number;
|
|
8774
8793
|
noise_level_decibel: number;
|
|
8775
8794
|
} | undefined;
|
|
@@ -8818,12 +8837,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8818
8837
|
lock_alias: string;
|
|
8819
8838
|
feature_value: string;
|
|
8820
8839
|
features: {
|
|
8821
|
-
wifi: boolean;
|
|
8822
8840
|
passcode: boolean;
|
|
8823
8841
|
passcode_management: boolean;
|
|
8824
8842
|
unlock_via_gateway: boolean;
|
|
8825
8843
|
lock_command: boolean;
|
|
8826
8844
|
incomplete_keyboard_passcode: boolean;
|
|
8845
|
+
wifi: boolean;
|
|
8827
8846
|
};
|
|
8828
8847
|
has_gateway?: boolean | undefined;
|
|
8829
8848
|
wireless_keypads?: {
|
|
@@ -8892,9 +8911,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
8892
8911
|
} | undefined;
|
|
8893
8912
|
tedee_metadata?: {
|
|
8894
8913
|
device_id: number;
|
|
8895
|
-
device_model: string;
|
|
8896
8914
|
device_name: string;
|
|
8897
8915
|
bridge_id: number;
|
|
8916
|
+
device_model: string;
|
|
8898
8917
|
bridge_name: string;
|
|
8899
8918
|
serial_number: string;
|
|
8900
8919
|
keypad_id?: number | undefined;
|
|
@@ -9293,7 +9312,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9293
9312
|
status: "low" | "full" | "critical" | "good";
|
|
9294
9313
|
level: number;
|
|
9295
9314
|
} | undefined;
|
|
9296
|
-
manufacturer?: string | undefined;
|
|
9297
9315
|
battery_level?: number | undefined;
|
|
9298
9316
|
serial_number?: string | undefined;
|
|
9299
9317
|
accessory_keypad?: {
|
|
@@ -9303,6 +9321,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9303
9321
|
} | undefined;
|
|
9304
9322
|
} | undefined;
|
|
9305
9323
|
has_direct_power?: boolean | undefined;
|
|
9324
|
+
manufacturer?: string | undefined;
|
|
9306
9325
|
image_url?: string | undefined;
|
|
9307
9326
|
image_alt_text?: string | undefined;
|
|
9308
9327
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -9328,9 +9347,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9328
9347
|
ecobee_device_id: string;
|
|
9329
9348
|
} | undefined;
|
|
9330
9349
|
salto_ks_metadata?: {
|
|
9331
|
-
lock_type: string;
|
|
9332
9350
|
lock_id: string;
|
|
9333
9351
|
customer_reference: string;
|
|
9352
|
+
lock_type: string;
|
|
9334
9353
|
battery_level: string;
|
|
9335
9354
|
locked_state: string;
|
|
9336
9355
|
model?: string | undefined;
|
|
@@ -9382,9 +9401,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9382
9401
|
model_number: string;
|
|
9383
9402
|
} | undefined;
|
|
9384
9403
|
salto_metadata?: {
|
|
9385
|
-
lock_type: string;
|
|
9386
9404
|
lock_id: string;
|
|
9387
9405
|
customer_reference: string;
|
|
9406
|
+
lock_type: string;
|
|
9388
9407
|
battery_level: string;
|
|
9389
9408
|
locked_state: string;
|
|
9390
9409
|
model?: string | undefined;
|
|
@@ -9403,8 +9422,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9403
9422
|
} | undefined;
|
|
9404
9423
|
noiseaware_metadata?: {
|
|
9405
9424
|
device_id: string;
|
|
9406
|
-
device_model: "indoor" | "outdoor";
|
|
9407
9425
|
device_name: string;
|
|
9426
|
+
device_model: "indoor" | "outdoor";
|
|
9408
9427
|
noise_level_nrs: number;
|
|
9409
9428
|
noise_level_decibel: number;
|
|
9410
9429
|
} | undefined;
|
|
@@ -9453,12 +9472,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9453
9472
|
lock_alias: string;
|
|
9454
9473
|
feature_value: string;
|
|
9455
9474
|
features: {
|
|
9456
|
-
wifi: boolean;
|
|
9457
9475
|
passcode: boolean;
|
|
9458
9476
|
passcode_management: boolean;
|
|
9459
9477
|
unlock_via_gateway: boolean;
|
|
9460
9478
|
lock_command: boolean;
|
|
9461
9479
|
incomplete_keyboard_passcode: boolean;
|
|
9480
|
+
wifi: boolean;
|
|
9462
9481
|
};
|
|
9463
9482
|
has_gateway?: boolean | undefined;
|
|
9464
9483
|
wireless_keypads?: {
|
|
@@ -9527,9 +9546,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9527
9546
|
} | undefined;
|
|
9528
9547
|
tedee_metadata?: {
|
|
9529
9548
|
device_id: number;
|
|
9530
|
-
device_model: string;
|
|
9531
9549
|
device_name: string;
|
|
9532
9550
|
bridge_id: number;
|
|
9551
|
+
device_model: string;
|
|
9533
9552
|
bridge_name: string;
|
|
9534
9553
|
serial_number: string;
|
|
9535
9554
|
keypad_id?: number | undefined;
|
|
@@ -9834,17 +9853,26 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9834
9853
|
pms_id?: string | undefined;
|
|
9835
9854
|
}>>;
|
|
9836
9855
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
9837
|
-
|
|
9838
|
-
|
|
9856
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
9857
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
9858
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
9839
9859
|
door_description: z.ZodOptional<z.ZodString>;
|
|
9860
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
9861
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
9840
9862
|
}, "strip", z.ZodTypeAny, {
|
|
9841
|
-
door_name
|
|
9842
|
-
|
|
9863
|
+
door_name?: string | undefined;
|
|
9864
|
+
door_id?: string | undefined;
|
|
9865
|
+
ext_door_id?: string | undefined;
|
|
9843
9866
|
door_description?: string | undefined;
|
|
9867
|
+
room_name?: string | undefined;
|
|
9868
|
+
room_description?: string | undefined;
|
|
9844
9869
|
}, {
|
|
9845
|
-
door_name
|
|
9846
|
-
|
|
9870
|
+
door_name?: string | undefined;
|
|
9871
|
+
door_id?: string | undefined;
|
|
9872
|
+
ext_door_id?: string | undefined;
|
|
9847
9873
|
door_description?: string | undefined;
|
|
9874
|
+
room_name?: string | undefined;
|
|
9875
|
+
room_description?: string | undefined;
|
|
9848
9876
|
}>>;
|
|
9849
9877
|
} & {
|
|
9850
9878
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9898,9 +9926,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9898
9926
|
access_point_name: string;
|
|
9899
9927
|
} | undefined;
|
|
9900
9928
|
salto_space_metadata?: {
|
|
9901
|
-
door_name
|
|
9902
|
-
|
|
9929
|
+
door_name?: string | undefined;
|
|
9930
|
+
door_id?: string | undefined;
|
|
9931
|
+
ext_door_id?: string | undefined;
|
|
9903
9932
|
door_description?: string | undefined;
|
|
9933
|
+
room_name?: string | undefined;
|
|
9934
|
+
room_description?: string | undefined;
|
|
9904
9935
|
} | undefined;
|
|
9905
9936
|
}, {
|
|
9906
9937
|
display_name: string;
|
|
@@ -9950,9 +9981,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
9950
9981
|
access_point_name: string;
|
|
9951
9982
|
} | undefined;
|
|
9952
9983
|
salto_space_metadata?: {
|
|
9953
|
-
door_name
|
|
9954
|
-
|
|
9984
|
+
door_name?: string | undefined;
|
|
9985
|
+
door_id?: string | undefined;
|
|
9986
|
+
ext_door_id?: string | undefined;
|
|
9955
9987
|
door_description?: string | undefined;
|
|
9988
|
+
room_name?: string | undefined;
|
|
9989
|
+
room_description?: string | undefined;
|
|
9956
9990
|
} | undefined;
|
|
9957
9991
|
}>, "many">>;
|
|
9958
9992
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10177,7 +10211,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10177
10211
|
status: "low" | "full" | "critical" | "good";
|
|
10178
10212
|
level: number;
|
|
10179
10213
|
} | undefined;
|
|
10180
|
-
manufacturer?: string | undefined;
|
|
10181
10214
|
battery_level?: number | undefined;
|
|
10182
10215
|
serial_number?: string | undefined;
|
|
10183
10216
|
accessory_keypad?: {
|
|
@@ -10187,6 +10220,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10187
10220
|
} | undefined;
|
|
10188
10221
|
} | undefined;
|
|
10189
10222
|
has_direct_power?: boolean | undefined;
|
|
10223
|
+
manufacturer?: string | undefined;
|
|
10190
10224
|
image_url?: string | undefined;
|
|
10191
10225
|
image_alt_text?: string | undefined;
|
|
10192
10226
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -10212,9 +10246,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10212
10246
|
ecobee_device_id: string;
|
|
10213
10247
|
} | undefined;
|
|
10214
10248
|
salto_ks_metadata?: {
|
|
10215
|
-
lock_type: string;
|
|
10216
10249
|
lock_id: string;
|
|
10217
10250
|
customer_reference: string;
|
|
10251
|
+
lock_type: string;
|
|
10218
10252
|
battery_level: string;
|
|
10219
10253
|
locked_state: string;
|
|
10220
10254
|
model?: string | undefined;
|
|
@@ -10266,9 +10300,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10266
10300
|
model_number: string;
|
|
10267
10301
|
} | undefined;
|
|
10268
10302
|
salto_metadata?: {
|
|
10269
|
-
lock_type: string;
|
|
10270
10303
|
lock_id: string;
|
|
10271
10304
|
customer_reference: string;
|
|
10305
|
+
lock_type: string;
|
|
10272
10306
|
battery_level: string;
|
|
10273
10307
|
locked_state: string;
|
|
10274
10308
|
model?: string | undefined;
|
|
@@ -10287,8 +10321,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10287
10321
|
} | undefined;
|
|
10288
10322
|
noiseaware_metadata?: {
|
|
10289
10323
|
device_id: string;
|
|
10290
|
-
device_model: "indoor" | "outdoor";
|
|
10291
10324
|
device_name: string;
|
|
10325
|
+
device_model: "indoor" | "outdoor";
|
|
10292
10326
|
noise_level_nrs: number;
|
|
10293
10327
|
noise_level_decibel: number;
|
|
10294
10328
|
} | undefined;
|
|
@@ -10337,12 +10371,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10337
10371
|
lock_alias: string;
|
|
10338
10372
|
feature_value: string;
|
|
10339
10373
|
features: {
|
|
10340
|
-
wifi: boolean;
|
|
10341
10374
|
passcode: boolean;
|
|
10342
10375
|
passcode_management: boolean;
|
|
10343
10376
|
unlock_via_gateway: boolean;
|
|
10344
10377
|
lock_command: boolean;
|
|
10345
10378
|
incomplete_keyboard_passcode: boolean;
|
|
10379
|
+
wifi: boolean;
|
|
10346
10380
|
};
|
|
10347
10381
|
has_gateway?: boolean | undefined;
|
|
10348
10382
|
wireless_keypads?: {
|
|
@@ -10411,9 +10445,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10411
10445
|
} | undefined;
|
|
10412
10446
|
tedee_metadata?: {
|
|
10413
10447
|
device_id: number;
|
|
10414
|
-
device_model: string;
|
|
10415
10448
|
device_name: string;
|
|
10416
10449
|
bridge_id: number;
|
|
10450
|
+
device_model: string;
|
|
10417
10451
|
bridge_name: string;
|
|
10418
10452
|
serial_number: string;
|
|
10419
10453
|
keypad_id?: number | undefined;
|
|
@@ -10651,9 +10685,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10651
10685
|
access_point_name: string;
|
|
10652
10686
|
} | undefined;
|
|
10653
10687
|
salto_space_metadata?: {
|
|
10654
|
-
door_name
|
|
10655
|
-
|
|
10688
|
+
door_name?: string | undefined;
|
|
10689
|
+
door_id?: string | undefined;
|
|
10690
|
+
ext_door_id?: string | undefined;
|
|
10656
10691
|
door_description?: string | undefined;
|
|
10692
|
+
room_name?: string | undefined;
|
|
10693
|
+
room_description?: string | undefined;
|
|
10657
10694
|
} | undefined;
|
|
10658
10695
|
}[] | undefined;
|
|
10659
10696
|
}, {
|
|
@@ -10878,7 +10915,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10878
10915
|
status: "low" | "full" | "critical" | "good";
|
|
10879
10916
|
level: number;
|
|
10880
10917
|
} | undefined;
|
|
10881
|
-
manufacturer?: string | undefined;
|
|
10882
10918
|
battery_level?: number | undefined;
|
|
10883
10919
|
serial_number?: string | undefined;
|
|
10884
10920
|
accessory_keypad?: {
|
|
@@ -10888,6 +10924,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10888
10924
|
} | undefined;
|
|
10889
10925
|
} | undefined;
|
|
10890
10926
|
has_direct_power?: boolean | undefined;
|
|
10927
|
+
manufacturer?: string | undefined;
|
|
10891
10928
|
image_url?: string | undefined;
|
|
10892
10929
|
image_alt_text?: string | undefined;
|
|
10893
10930
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -10913,9 +10950,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10913
10950
|
ecobee_device_id: string;
|
|
10914
10951
|
} | undefined;
|
|
10915
10952
|
salto_ks_metadata?: {
|
|
10916
|
-
lock_type: string;
|
|
10917
10953
|
lock_id: string;
|
|
10918
10954
|
customer_reference: string;
|
|
10955
|
+
lock_type: string;
|
|
10919
10956
|
battery_level: string;
|
|
10920
10957
|
locked_state: string;
|
|
10921
10958
|
model?: string | undefined;
|
|
@@ -10967,9 +11004,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10967
11004
|
model_number: string;
|
|
10968
11005
|
} | undefined;
|
|
10969
11006
|
salto_metadata?: {
|
|
10970
|
-
lock_type: string;
|
|
10971
11007
|
lock_id: string;
|
|
10972
11008
|
customer_reference: string;
|
|
11009
|
+
lock_type: string;
|
|
10973
11010
|
battery_level: string;
|
|
10974
11011
|
locked_state: string;
|
|
10975
11012
|
model?: string | undefined;
|
|
@@ -10988,8 +11025,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
10988
11025
|
} | undefined;
|
|
10989
11026
|
noiseaware_metadata?: {
|
|
10990
11027
|
device_id: string;
|
|
10991
|
-
device_model: "indoor" | "outdoor";
|
|
10992
11028
|
device_name: string;
|
|
11029
|
+
device_model: "indoor" | "outdoor";
|
|
10993
11030
|
noise_level_nrs: number;
|
|
10994
11031
|
noise_level_decibel: number;
|
|
10995
11032
|
} | undefined;
|
|
@@ -11038,12 +11075,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11038
11075
|
lock_alias: string;
|
|
11039
11076
|
feature_value: string;
|
|
11040
11077
|
features: {
|
|
11041
|
-
wifi: boolean;
|
|
11042
11078
|
passcode: boolean;
|
|
11043
11079
|
passcode_management: boolean;
|
|
11044
11080
|
unlock_via_gateway: boolean;
|
|
11045
11081
|
lock_command: boolean;
|
|
11046
11082
|
incomplete_keyboard_passcode: boolean;
|
|
11083
|
+
wifi: boolean;
|
|
11047
11084
|
};
|
|
11048
11085
|
has_gateway?: boolean | undefined;
|
|
11049
11086
|
wireless_keypads?: {
|
|
@@ -11112,9 +11149,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11112
11149
|
} | undefined;
|
|
11113
11150
|
tedee_metadata?: {
|
|
11114
11151
|
device_id: number;
|
|
11115
|
-
device_model: string;
|
|
11116
11152
|
device_name: string;
|
|
11117
11153
|
bridge_id: number;
|
|
11154
|
+
device_model: string;
|
|
11118
11155
|
bridge_name: string;
|
|
11119
11156
|
serial_number: string;
|
|
11120
11157
|
keypad_id?: number | undefined;
|
|
@@ -11352,9 +11389,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11352
11389
|
access_point_name: string;
|
|
11353
11390
|
} | undefined;
|
|
11354
11391
|
salto_space_metadata?: {
|
|
11355
|
-
door_name
|
|
11356
|
-
|
|
11392
|
+
door_name?: string | undefined;
|
|
11393
|
+
door_id?: string | undefined;
|
|
11394
|
+
ext_door_id?: string | undefined;
|
|
11357
11395
|
door_description?: string | undefined;
|
|
11396
|
+
room_name?: string | undefined;
|
|
11397
|
+
room_description?: string | undefined;
|
|
11358
11398
|
} | undefined;
|
|
11359
11399
|
}[] | undefined;
|
|
11360
11400
|
}>, z.ZodObject<{
|
|
@@ -11489,7 +11529,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11489
11529
|
status: "low" | "full" | "critical" | "good";
|
|
11490
11530
|
level: number;
|
|
11491
11531
|
} | undefined;
|
|
11492
|
-
manufacturer?: string | undefined;
|
|
11493
11532
|
battery_level?: number | undefined;
|
|
11494
11533
|
serial_number?: string | undefined;
|
|
11495
11534
|
accessory_keypad?: {
|
|
@@ -11499,6 +11538,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11499
11538
|
} | undefined;
|
|
11500
11539
|
} | undefined;
|
|
11501
11540
|
has_direct_power?: boolean | undefined;
|
|
11541
|
+
manufacturer?: string | undefined;
|
|
11502
11542
|
image_url?: string | undefined;
|
|
11503
11543
|
image_alt_text?: string | undefined;
|
|
11504
11544
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -11526,7 +11566,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11526
11566
|
status: "low" | "full" | "critical" | "good";
|
|
11527
11567
|
level: number;
|
|
11528
11568
|
} | undefined;
|
|
11529
|
-
manufacturer?: string | undefined;
|
|
11530
11569
|
battery_level?: number | undefined;
|
|
11531
11570
|
serial_number?: string | undefined;
|
|
11532
11571
|
accessory_keypad?: {
|
|
@@ -11536,6 +11575,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11536
11575
|
} | undefined;
|
|
11537
11576
|
} | undefined;
|
|
11538
11577
|
has_direct_power?: boolean | undefined;
|
|
11578
|
+
manufacturer?: string | undefined;
|
|
11539
11579
|
image_url?: string | undefined;
|
|
11540
11580
|
image_alt_text?: string | undefined;
|
|
11541
11581
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -11732,16 +11772,16 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11732
11772
|
locked_state: z.ZodString;
|
|
11733
11773
|
model: z.ZodOptional<z.ZodString>;
|
|
11734
11774
|
}, "strip", z.ZodTypeAny, {
|
|
11735
|
-
lock_type: string;
|
|
11736
11775
|
lock_id: string;
|
|
11737
11776
|
customer_reference: string;
|
|
11777
|
+
lock_type: string;
|
|
11738
11778
|
battery_level: string;
|
|
11739
11779
|
locked_state: string;
|
|
11740
11780
|
model?: string | undefined;
|
|
11741
11781
|
}, {
|
|
11742
|
-
lock_type: string;
|
|
11743
11782
|
lock_id: string;
|
|
11744
11783
|
customer_reference: string;
|
|
11784
|
+
lock_type: string;
|
|
11745
11785
|
battery_level: string;
|
|
11746
11786
|
locked_state: string;
|
|
11747
11787
|
model?: string | undefined;
|
|
@@ -11754,16 +11794,16 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11754
11794
|
locked_state: z.ZodString;
|
|
11755
11795
|
model: z.ZodOptional<z.ZodString>;
|
|
11756
11796
|
}, "strip", z.ZodTypeAny, {
|
|
11757
|
-
lock_type: string;
|
|
11758
11797
|
lock_id: string;
|
|
11759
11798
|
customer_reference: string;
|
|
11799
|
+
lock_type: string;
|
|
11760
11800
|
battery_level: string;
|
|
11761
11801
|
locked_state: string;
|
|
11762
11802
|
model?: string | undefined;
|
|
11763
11803
|
}, {
|
|
11764
|
-
lock_type: string;
|
|
11765
11804
|
lock_id: string;
|
|
11766
11805
|
customer_reference: string;
|
|
11806
|
+
lock_type: string;
|
|
11767
11807
|
battery_level: string;
|
|
11768
11808
|
locked_state: string;
|
|
11769
11809
|
model?: string | undefined;
|
|
@@ -11806,14 +11846,14 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
11806
11846
|
device_id: z.ZodString;
|
|
11807
11847
|
}, "strip", z.ZodTypeAny, {
|
|
11808
11848
|
device_id: string;
|
|
11809
|
-
device_model: "indoor" | "outdoor";
|
|
11810
11849
|
device_name: string;
|
|
11850
|
+
device_model: "indoor" | "outdoor";
|
|
11811
11851
|
noise_level_nrs: number;
|
|
11812
11852
|
noise_level_decibel: number;
|
|
11813
11853
|
}, {
|
|
11814
11854
|
device_id: string;
|
|
11815
|
-
device_model: "indoor" | "outdoor";
|
|
11816
11855
|
device_name: string;
|
|
11856
|
+
device_model: "indoor" | "outdoor";
|
|
11817
11857
|
noise_level_nrs: number;
|
|
11818
11858
|
noise_level_decibel: number;
|
|
11819
11859
|
}>>;
|
|
@@ -12013,19 +12053,19 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12013
12053
|
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
12014
12054
|
wifi: z.ZodBoolean;
|
|
12015
12055
|
}, "strip", z.ZodTypeAny, {
|
|
12016
|
-
wifi: boolean;
|
|
12017
12056
|
passcode: boolean;
|
|
12018
12057
|
passcode_management: boolean;
|
|
12019
12058
|
unlock_via_gateway: boolean;
|
|
12020
12059
|
lock_command: boolean;
|
|
12021
12060
|
incomplete_keyboard_passcode: boolean;
|
|
12022
|
-
}, {
|
|
12023
12061
|
wifi: boolean;
|
|
12062
|
+
}, {
|
|
12024
12063
|
passcode: boolean;
|
|
12025
12064
|
passcode_management: boolean;
|
|
12026
12065
|
unlock_via_gateway: boolean;
|
|
12027
12066
|
lock_command: boolean;
|
|
12028
12067
|
incomplete_keyboard_passcode: boolean;
|
|
12068
|
+
wifi: boolean;
|
|
12029
12069
|
}>;
|
|
12030
12070
|
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
12031
12071
|
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -12043,12 +12083,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12043
12083
|
lock_alias: string;
|
|
12044
12084
|
feature_value: string;
|
|
12045
12085
|
features: {
|
|
12046
|
-
wifi: boolean;
|
|
12047
12086
|
passcode: boolean;
|
|
12048
12087
|
passcode_management: boolean;
|
|
12049
12088
|
unlock_via_gateway: boolean;
|
|
12050
12089
|
lock_command: boolean;
|
|
12051
12090
|
incomplete_keyboard_passcode: boolean;
|
|
12091
|
+
wifi: boolean;
|
|
12052
12092
|
};
|
|
12053
12093
|
has_gateway?: boolean | undefined;
|
|
12054
12094
|
wireless_keypads?: {
|
|
@@ -12060,12 +12100,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12060
12100
|
lock_alias: string;
|
|
12061
12101
|
feature_value: string;
|
|
12062
12102
|
features: {
|
|
12063
|
-
wifi: boolean;
|
|
12064
12103
|
passcode: boolean;
|
|
12065
12104
|
passcode_management: boolean;
|
|
12066
12105
|
unlock_via_gateway: boolean;
|
|
12067
12106
|
lock_command: boolean;
|
|
12068
12107
|
incomplete_keyboard_passcode: boolean;
|
|
12108
|
+
wifi: boolean;
|
|
12069
12109
|
};
|
|
12070
12110
|
has_gateway?: boolean | undefined;
|
|
12071
12111
|
wireless_keypads?: {
|
|
@@ -12278,17 +12318,17 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12278
12318
|
keypad_id: z.ZodOptional<z.ZodNumber>;
|
|
12279
12319
|
}, "strip", z.ZodTypeAny, {
|
|
12280
12320
|
device_id: number;
|
|
12281
|
-
device_model: string;
|
|
12282
12321
|
device_name: string;
|
|
12283
12322
|
bridge_id: number;
|
|
12323
|
+
device_model: string;
|
|
12284
12324
|
bridge_name: string;
|
|
12285
12325
|
serial_number: string;
|
|
12286
12326
|
keypad_id?: number | undefined;
|
|
12287
12327
|
}, {
|
|
12288
12328
|
device_id: number;
|
|
12289
|
-
device_model: string;
|
|
12290
12329
|
device_name: string;
|
|
12291
12330
|
bridge_id: number;
|
|
12331
|
+
device_model: string;
|
|
12292
12332
|
bridge_name: string;
|
|
12293
12333
|
serial_number: string;
|
|
12294
12334
|
keypad_id?: number | undefined;
|
|
@@ -12352,9 +12392,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12352
12392
|
ecobee_device_id: string;
|
|
12353
12393
|
} | undefined;
|
|
12354
12394
|
salto_ks_metadata?: {
|
|
12355
|
-
lock_type: string;
|
|
12356
12395
|
lock_id: string;
|
|
12357
12396
|
customer_reference: string;
|
|
12397
|
+
lock_type: string;
|
|
12358
12398
|
battery_level: string;
|
|
12359
12399
|
locked_state: string;
|
|
12360
12400
|
model?: string | undefined;
|
|
@@ -12406,9 +12446,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12406
12446
|
model_number: string;
|
|
12407
12447
|
} | undefined;
|
|
12408
12448
|
salto_metadata?: {
|
|
12409
|
-
lock_type: string;
|
|
12410
12449
|
lock_id: string;
|
|
12411
12450
|
customer_reference: string;
|
|
12451
|
+
lock_type: string;
|
|
12412
12452
|
battery_level: string;
|
|
12413
12453
|
locked_state: string;
|
|
12414
12454
|
model?: string | undefined;
|
|
@@ -12427,8 +12467,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12427
12467
|
} | undefined;
|
|
12428
12468
|
noiseaware_metadata?: {
|
|
12429
12469
|
device_id: string;
|
|
12430
|
-
device_model: "indoor" | "outdoor";
|
|
12431
12470
|
device_name: string;
|
|
12471
|
+
device_model: "indoor" | "outdoor";
|
|
12432
12472
|
noise_level_nrs: number;
|
|
12433
12473
|
noise_level_decibel: number;
|
|
12434
12474
|
} | undefined;
|
|
@@ -12477,12 +12517,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12477
12517
|
lock_alias: string;
|
|
12478
12518
|
feature_value: string;
|
|
12479
12519
|
features: {
|
|
12480
|
-
wifi: boolean;
|
|
12481
12520
|
passcode: boolean;
|
|
12482
12521
|
passcode_management: boolean;
|
|
12483
12522
|
unlock_via_gateway: boolean;
|
|
12484
12523
|
lock_command: boolean;
|
|
12485
12524
|
incomplete_keyboard_passcode: boolean;
|
|
12525
|
+
wifi: boolean;
|
|
12486
12526
|
};
|
|
12487
12527
|
has_gateway?: boolean | undefined;
|
|
12488
12528
|
wireless_keypads?: {
|
|
@@ -12551,9 +12591,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12551
12591
|
} | undefined;
|
|
12552
12592
|
tedee_metadata?: {
|
|
12553
12593
|
device_id: number;
|
|
12554
|
-
device_model: string;
|
|
12555
12594
|
device_name: string;
|
|
12556
12595
|
bridge_id: number;
|
|
12596
|
+
device_model: string;
|
|
12557
12597
|
bridge_name: string;
|
|
12558
12598
|
serial_number: string;
|
|
12559
12599
|
keypad_id?: number | undefined;
|
|
@@ -12585,9 +12625,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12585
12625
|
ecobee_device_id: string;
|
|
12586
12626
|
} | undefined;
|
|
12587
12627
|
salto_ks_metadata?: {
|
|
12588
|
-
lock_type: string;
|
|
12589
12628
|
lock_id: string;
|
|
12590
12629
|
customer_reference: string;
|
|
12630
|
+
lock_type: string;
|
|
12591
12631
|
battery_level: string;
|
|
12592
12632
|
locked_state: string;
|
|
12593
12633
|
model?: string | undefined;
|
|
@@ -12639,9 +12679,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12639
12679
|
model_number: string;
|
|
12640
12680
|
} | undefined;
|
|
12641
12681
|
salto_metadata?: {
|
|
12642
|
-
lock_type: string;
|
|
12643
12682
|
lock_id: string;
|
|
12644
12683
|
customer_reference: string;
|
|
12684
|
+
lock_type: string;
|
|
12645
12685
|
battery_level: string;
|
|
12646
12686
|
locked_state: string;
|
|
12647
12687
|
model?: string | undefined;
|
|
@@ -12660,8 +12700,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12660
12700
|
} | undefined;
|
|
12661
12701
|
noiseaware_metadata?: {
|
|
12662
12702
|
device_id: string;
|
|
12663
|
-
device_model: "indoor" | "outdoor";
|
|
12664
12703
|
device_name: string;
|
|
12704
|
+
device_model: "indoor" | "outdoor";
|
|
12665
12705
|
noise_level_nrs: number;
|
|
12666
12706
|
noise_level_decibel: number;
|
|
12667
12707
|
} | undefined;
|
|
@@ -12710,12 +12750,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12710
12750
|
lock_alias: string;
|
|
12711
12751
|
feature_value: string;
|
|
12712
12752
|
features: {
|
|
12713
|
-
wifi: boolean;
|
|
12714
12753
|
passcode: boolean;
|
|
12715
12754
|
passcode_management: boolean;
|
|
12716
12755
|
unlock_via_gateway: boolean;
|
|
12717
12756
|
lock_command: boolean;
|
|
12718
12757
|
incomplete_keyboard_passcode: boolean;
|
|
12758
|
+
wifi: boolean;
|
|
12719
12759
|
};
|
|
12720
12760
|
has_gateway?: boolean | undefined;
|
|
12721
12761
|
wireless_keypads?: {
|
|
@@ -12784,9 +12824,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
12784
12824
|
} | undefined;
|
|
12785
12825
|
tedee_metadata?: {
|
|
12786
12826
|
device_id: number;
|
|
12787
|
-
device_model: string;
|
|
12788
12827
|
device_name: string;
|
|
12789
12828
|
bridge_id: number;
|
|
12829
|
+
device_model: string;
|
|
12790
12830
|
bridge_name: string;
|
|
12791
12831
|
serial_number: string;
|
|
12792
12832
|
keypad_id?: number | undefined;
|
|
@@ -14122,7 +14162,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14122
14162
|
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
14123
14163
|
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
14124
14164
|
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
14125
|
-
} & {
|
|
14126
14165
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
14127
14166
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
14128
14167
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14337,7 +14376,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14337
14376
|
status: "low" | "full" | "critical" | "good";
|
|
14338
14377
|
level: number;
|
|
14339
14378
|
} | undefined;
|
|
14340
|
-
manufacturer?: string | undefined;
|
|
14341
14379
|
battery_level?: number | undefined;
|
|
14342
14380
|
serial_number?: string | undefined;
|
|
14343
14381
|
accessory_keypad?: {
|
|
@@ -14347,6 +14385,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14347
14385
|
} | undefined;
|
|
14348
14386
|
} | undefined;
|
|
14349
14387
|
has_direct_power?: boolean | undefined;
|
|
14388
|
+
manufacturer?: string | undefined;
|
|
14350
14389
|
image_url?: string | undefined;
|
|
14351
14390
|
image_alt_text?: string | undefined;
|
|
14352
14391
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -14372,9 +14411,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14372
14411
|
ecobee_device_id: string;
|
|
14373
14412
|
} | undefined;
|
|
14374
14413
|
salto_ks_metadata?: {
|
|
14375
|
-
lock_type: string;
|
|
14376
14414
|
lock_id: string;
|
|
14377
14415
|
customer_reference: string;
|
|
14416
|
+
lock_type: string;
|
|
14378
14417
|
battery_level: string;
|
|
14379
14418
|
locked_state: string;
|
|
14380
14419
|
model?: string | undefined;
|
|
@@ -14426,9 +14465,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14426
14465
|
model_number: string;
|
|
14427
14466
|
} | undefined;
|
|
14428
14467
|
salto_metadata?: {
|
|
14429
|
-
lock_type: string;
|
|
14430
14468
|
lock_id: string;
|
|
14431
14469
|
customer_reference: string;
|
|
14470
|
+
lock_type: string;
|
|
14432
14471
|
battery_level: string;
|
|
14433
14472
|
locked_state: string;
|
|
14434
14473
|
model?: string | undefined;
|
|
@@ -14447,8 +14486,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14447
14486
|
} | undefined;
|
|
14448
14487
|
noiseaware_metadata?: {
|
|
14449
14488
|
device_id: string;
|
|
14450
|
-
device_model: "indoor" | "outdoor";
|
|
14451
14489
|
device_name: string;
|
|
14490
|
+
device_model: "indoor" | "outdoor";
|
|
14452
14491
|
noise_level_nrs: number;
|
|
14453
14492
|
noise_level_decibel: number;
|
|
14454
14493
|
} | undefined;
|
|
@@ -14497,12 +14536,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14497
14536
|
lock_alias: string;
|
|
14498
14537
|
feature_value: string;
|
|
14499
14538
|
features: {
|
|
14500
|
-
wifi: boolean;
|
|
14501
14539
|
passcode: boolean;
|
|
14502
14540
|
passcode_management: boolean;
|
|
14503
14541
|
unlock_via_gateway: boolean;
|
|
14504
14542
|
lock_command: boolean;
|
|
14505
14543
|
incomplete_keyboard_passcode: boolean;
|
|
14544
|
+
wifi: boolean;
|
|
14506
14545
|
};
|
|
14507
14546
|
has_gateway?: boolean | undefined;
|
|
14508
14547
|
wireless_keypads?: {
|
|
@@ -14571,9 +14610,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14571
14610
|
} | undefined;
|
|
14572
14611
|
tedee_metadata?: {
|
|
14573
14612
|
device_id: number;
|
|
14574
|
-
device_model: string;
|
|
14575
14613
|
device_name: string;
|
|
14576
14614
|
bridge_id: number;
|
|
14615
|
+
device_model: string;
|
|
14577
14616
|
bridge_name: string;
|
|
14578
14617
|
serial_number: string;
|
|
14579
14618
|
keypad_id?: number | undefined;
|
|
@@ -14972,7 +15011,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14972
15011
|
status: "low" | "full" | "critical" | "good";
|
|
14973
15012
|
level: number;
|
|
14974
15013
|
} | undefined;
|
|
14975
|
-
manufacturer?: string | undefined;
|
|
14976
15014
|
battery_level?: number | undefined;
|
|
14977
15015
|
serial_number?: string | undefined;
|
|
14978
15016
|
accessory_keypad?: {
|
|
@@ -14982,6 +15020,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14982
15020
|
} | undefined;
|
|
14983
15021
|
} | undefined;
|
|
14984
15022
|
has_direct_power?: boolean | undefined;
|
|
15023
|
+
manufacturer?: string | undefined;
|
|
14985
15024
|
image_url?: string | undefined;
|
|
14986
15025
|
image_alt_text?: string | undefined;
|
|
14987
15026
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -15007,9 +15046,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15007
15046
|
ecobee_device_id: string;
|
|
15008
15047
|
} | undefined;
|
|
15009
15048
|
salto_ks_metadata?: {
|
|
15010
|
-
lock_type: string;
|
|
15011
15049
|
lock_id: string;
|
|
15012
15050
|
customer_reference: string;
|
|
15051
|
+
lock_type: string;
|
|
15013
15052
|
battery_level: string;
|
|
15014
15053
|
locked_state: string;
|
|
15015
15054
|
model?: string | undefined;
|
|
@@ -15061,9 +15100,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15061
15100
|
model_number: string;
|
|
15062
15101
|
} | undefined;
|
|
15063
15102
|
salto_metadata?: {
|
|
15064
|
-
lock_type: string;
|
|
15065
15103
|
lock_id: string;
|
|
15066
15104
|
customer_reference: string;
|
|
15105
|
+
lock_type: string;
|
|
15067
15106
|
battery_level: string;
|
|
15068
15107
|
locked_state: string;
|
|
15069
15108
|
model?: string | undefined;
|
|
@@ -15082,8 +15121,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15082
15121
|
} | undefined;
|
|
15083
15122
|
noiseaware_metadata?: {
|
|
15084
15123
|
device_id: string;
|
|
15085
|
-
device_model: "indoor" | "outdoor";
|
|
15086
15124
|
device_name: string;
|
|
15125
|
+
device_model: "indoor" | "outdoor";
|
|
15087
15126
|
noise_level_nrs: number;
|
|
15088
15127
|
noise_level_decibel: number;
|
|
15089
15128
|
} | undefined;
|
|
@@ -15132,12 +15171,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15132
15171
|
lock_alias: string;
|
|
15133
15172
|
feature_value: string;
|
|
15134
15173
|
features: {
|
|
15135
|
-
wifi: boolean;
|
|
15136
15174
|
passcode: boolean;
|
|
15137
15175
|
passcode_management: boolean;
|
|
15138
15176
|
unlock_via_gateway: boolean;
|
|
15139
15177
|
lock_command: boolean;
|
|
15140
15178
|
incomplete_keyboard_passcode: boolean;
|
|
15179
|
+
wifi: boolean;
|
|
15141
15180
|
};
|
|
15142
15181
|
has_gateway?: boolean | undefined;
|
|
15143
15182
|
wireless_keypads?: {
|
|
@@ -15206,9 +15245,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15206
15245
|
} | undefined;
|
|
15207
15246
|
tedee_metadata?: {
|
|
15208
15247
|
device_id: number;
|
|
15209
|
-
device_model: string;
|
|
15210
15248
|
device_name: string;
|
|
15211
15249
|
bridge_id: number;
|
|
15250
|
+
device_model: string;
|
|
15212
15251
|
bridge_name: string;
|
|
15213
15252
|
serial_number: string;
|
|
15214
15253
|
keypad_id?: number | undefined;
|
|
@@ -15513,17 +15552,26 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15513
15552
|
pms_id?: string | undefined;
|
|
15514
15553
|
}>>;
|
|
15515
15554
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
15516
|
-
|
|
15517
|
-
|
|
15555
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
15556
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
15557
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
15518
15558
|
door_description: z.ZodOptional<z.ZodString>;
|
|
15559
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
15560
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
15519
15561
|
}, "strip", z.ZodTypeAny, {
|
|
15520
|
-
door_name
|
|
15521
|
-
|
|
15562
|
+
door_name?: string | undefined;
|
|
15563
|
+
door_id?: string | undefined;
|
|
15564
|
+
ext_door_id?: string | undefined;
|
|
15522
15565
|
door_description?: string | undefined;
|
|
15566
|
+
room_name?: string | undefined;
|
|
15567
|
+
room_description?: string | undefined;
|
|
15523
15568
|
}, {
|
|
15524
|
-
door_name
|
|
15525
|
-
|
|
15569
|
+
door_name?: string | undefined;
|
|
15570
|
+
door_id?: string | undefined;
|
|
15571
|
+
ext_door_id?: string | undefined;
|
|
15526
15572
|
door_description?: string | undefined;
|
|
15573
|
+
room_name?: string | undefined;
|
|
15574
|
+
room_description?: string | undefined;
|
|
15527
15575
|
}>>;
|
|
15528
15576
|
} & {
|
|
15529
15577
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15577,9 +15625,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15577
15625
|
access_point_name: string;
|
|
15578
15626
|
} | undefined;
|
|
15579
15627
|
salto_space_metadata?: {
|
|
15580
|
-
door_name
|
|
15581
|
-
|
|
15628
|
+
door_name?: string | undefined;
|
|
15629
|
+
door_id?: string | undefined;
|
|
15630
|
+
ext_door_id?: string | undefined;
|
|
15582
15631
|
door_description?: string | undefined;
|
|
15632
|
+
room_name?: string | undefined;
|
|
15633
|
+
room_description?: string | undefined;
|
|
15583
15634
|
} | undefined;
|
|
15584
15635
|
}, {
|
|
15585
15636
|
display_name: string;
|
|
@@ -15629,9 +15680,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15629
15680
|
access_point_name: string;
|
|
15630
15681
|
} | undefined;
|
|
15631
15682
|
salto_space_metadata?: {
|
|
15632
|
-
door_name
|
|
15633
|
-
|
|
15683
|
+
door_name?: string | undefined;
|
|
15684
|
+
door_id?: string | undefined;
|
|
15685
|
+
ext_door_id?: string | undefined;
|
|
15634
15686
|
door_description?: string | undefined;
|
|
15687
|
+
room_name?: string | undefined;
|
|
15688
|
+
room_description?: string | undefined;
|
|
15635
15689
|
} | undefined;
|
|
15636
15690
|
}>, "many">>;
|
|
15637
15691
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15856,7 +15910,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15856
15910
|
status: "low" | "full" | "critical" | "good";
|
|
15857
15911
|
level: number;
|
|
15858
15912
|
} | undefined;
|
|
15859
|
-
manufacturer?: string | undefined;
|
|
15860
15913
|
battery_level?: number | undefined;
|
|
15861
15914
|
serial_number?: string | undefined;
|
|
15862
15915
|
accessory_keypad?: {
|
|
@@ -15866,6 +15919,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15866
15919
|
} | undefined;
|
|
15867
15920
|
} | undefined;
|
|
15868
15921
|
has_direct_power?: boolean | undefined;
|
|
15922
|
+
manufacturer?: string | undefined;
|
|
15869
15923
|
image_url?: string | undefined;
|
|
15870
15924
|
image_alt_text?: string | undefined;
|
|
15871
15925
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -15891,9 +15945,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15891
15945
|
ecobee_device_id: string;
|
|
15892
15946
|
} | undefined;
|
|
15893
15947
|
salto_ks_metadata?: {
|
|
15894
|
-
lock_type: string;
|
|
15895
15948
|
lock_id: string;
|
|
15896
15949
|
customer_reference: string;
|
|
15950
|
+
lock_type: string;
|
|
15897
15951
|
battery_level: string;
|
|
15898
15952
|
locked_state: string;
|
|
15899
15953
|
model?: string | undefined;
|
|
@@ -15945,9 +15999,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15945
15999
|
model_number: string;
|
|
15946
16000
|
} | undefined;
|
|
15947
16001
|
salto_metadata?: {
|
|
15948
|
-
lock_type: string;
|
|
15949
16002
|
lock_id: string;
|
|
15950
16003
|
customer_reference: string;
|
|
16004
|
+
lock_type: string;
|
|
15951
16005
|
battery_level: string;
|
|
15952
16006
|
locked_state: string;
|
|
15953
16007
|
model?: string | undefined;
|
|
@@ -15966,8 +16020,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15966
16020
|
} | undefined;
|
|
15967
16021
|
noiseaware_metadata?: {
|
|
15968
16022
|
device_id: string;
|
|
15969
|
-
device_model: "indoor" | "outdoor";
|
|
15970
16023
|
device_name: string;
|
|
16024
|
+
device_model: "indoor" | "outdoor";
|
|
15971
16025
|
noise_level_nrs: number;
|
|
15972
16026
|
noise_level_decibel: number;
|
|
15973
16027
|
} | undefined;
|
|
@@ -16016,12 +16070,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16016
16070
|
lock_alias: string;
|
|
16017
16071
|
feature_value: string;
|
|
16018
16072
|
features: {
|
|
16019
|
-
wifi: boolean;
|
|
16020
16073
|
passcode: boolean;
|
|
16021
16074
|
passcode_management: boolean;
|
|
16022
16075
|
unlock_via_gateway: boolean;
|
|
16023
16076
|
lock_command: boolean;
|
|
16024
16077
|
incomplete_keyboard_passcode: boolean;
|
|
16078
|
+
wifi: boolean;
|
|
16025
16079
|
};
|
|
16026
16080
|
has_gateway?: boolean | undefined;
|
|
16027
16081
|
wireless_keypads?: {
|
|
@@ -16090,9 +16144,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16090
16144
|
} | undefined;
|
|
16091
16145
|
tedee_metadata?: {
|
|
16092
16146
|
device_id: number;
|
|
16093
|
-
device_model: string;
|
|
16094
16147
|
device_name: string;
|
|
16095
16148
|
bridge_id: number;
|
|
16149
|
+
device_model: string;
|
|
16096
16150
|
bridge_name: string;
|
|
16097
16151
|
serial_number: string;
|
|
16098
16152
|
keypad_id?: number | undefined;
|
|
@@ -16330,9 +16384,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16330
16384
|
access_point_name: string;
|
|
16331
16385
|
} | undefined;
|
|
16332
16386
|
salto_space_metadata?: {
|
|
16333
|
-
door_name
|
|
16334
|
-
|
|
16387
|
+
door_name?: string | undefined;
|
|
16388
|
+
door_id?: string | undefined;
|
|
16389
|
+
ext_door_id?: string | undefined;
|
|
16335
16390
|
door_description?: string | undefined;
|
|
16391
|
+
room_name?: string | undefined;
|
|
16392
|
+
room_description?: string | undefined;
|
|
16336
16393
|
} | undefined;
|
|
16337
16394
|
}[] | undefined;
|
|
16338
16395
|
}, {
|
|
@@ -16557,7 +16614,6 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16557
16614
|
status: "low" | "full" | "critical" | "good";
|
|
16558
16615
|
level: number;
|
|
16559
16616
|
} | undefined;
|
|
16560
|
-
manufacturer?: string | undefined;
|
|
16561
16617
|
battery_level?: number | undefined;
|
|
16562
16618
|
serial_number?: string | undefined;
|
|
16563
16619
|
accessory_keypad?: {
|
|
@@ -16567,6 +16623,7 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16567
16623
|
} | undefined;
|
|
16568
16624
|
} | undefined;
|
|
16569
16625
|
has_direct_power?: boolean | undefined;
|
|
16626
|
+
manufacturer?: string | undefined;
|
|
16570
16627
|
image_url?: string | undefined;
|
|
16571
16628
|
image_alt_text?: string | undefined;
|
|
16572
16629
|
online_access_codes_enabled?: boolean | undefined;
|
|
@@ -16592,9 +16649,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16592
16649
|
ecobee_device_id: string;
|
|
16593
16650
|
} | undefined;
|
|
16594
16651
|
salto_ks_metadata?: {
|
|
16595
|
-
lock_type: string;
|
|
16596
16652
|
lock_id: string;
|
|
16597
16653
|
customer_reference: string;
|
|
16654
|
+
lock_type: string;
|
|
16598
16655
|
battery_level: string;
|
|
16599
16656
|
locked_state: string;
|
|
16600
16657
|
model?: string | undefined;
|
|
@@ -16646,9 +16703,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16646
16703
|
model_number: string;
|
|
16647
16704
|
} | undefined;
|
|
16648
16705
|
salto_metadata?: {
|
|
16649
|
-
lock_type: string;
|
|
16650
16706
|
lock_id: string;
|
|
16651
16707
|
customer_reference: string;
|
|
16708
|
+
lock_type: string;
|
|
16652
16709
|
battery_level: string;
|
|
16653
16710
|
locked_state: string;
|
|
16654
16711
|
model?: string | undefined;
|
|
@@ -16667,8 +16724,8 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16667
16724
|
} | undefined;
|
|
16668
16725
|
noiseaware_metadata?: {
|
|
16669
16726
|
device_id: string;
|
|
16670
|
-
device_model: "indoor" | "outdoor";
|
|
16671
16727
|
device_name: string;
|
|
16728
|
+
device_model: "indoor" | "outdoor";
|
|
16672
16729
|
noise_level_nrs: number;
|
|
16673
16730
|
noise_level_decibel: number;
|
|
16674
16731
|
} | undefined;
|
|
@@ -16717,12 +16774,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16717
16774
|
lock_alias: string;
|
|
16718
16775
|
feature_value: string;
|
|
16719
16776
|
features: {
|
|
16720
|
-
wifi: boolean;
|
|
16721
16777
|
passcode: boolean;
|
|
16722
16778
|
passcode_management: boolean;
|
|
16723
16779
|
unlock_via_gateway: boolean;
|
|
16724
16780
|
lock_command: boolean;
|
|
16725
16781
|
incomplete_keyboard_passcode: boolean;
|
|
16782
|
+
wifi: boolean;
|
|
16726
16783
|
};
|
|
16727
16784
|
has_gateway?: boolean | undefined;
|
|
16728
16785
|
wireless_keypads?: {
|
|
@@ -16791,9 +16848,9 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
16791
16848
|
} | undefined;
|
|
16792
16849
|
tedee_metadata?: {
|
|
16793
16850
|
device_id: number;
|
|
16794
|
-
device_model: string;
|
|
16795
16851
|
device_name: string;
|
|
16796
16852
|
bridge_id: number;
|
|
16853
|
+
device_model: string;
|
|
16797
16854
|
bridge_name: string;
|
|
16798
16855
|
serial_number: string;
|
|
16799
16856
|
keypad_id?: number | undefined;
|
|
@@ -17031,9 +17088,12 @@ export declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
17031
17088
|
access_point_name: string;
|
|
17032
17089
|
} | undefined;
|
|
17033
17090
|
salto_space_metadata?: {
|
|
17034
|
-
door_name
|
|
17035
|
-
|
|
17091
|
+
door_name?: string | undefined;
|
|
17092
|
+
door_id?: string | undefined;
|
|
17093
|
+
ext_door_id?: string | undefined;
|
|
17036
17094
|
door_description?: string | undefined;
|
|
17095
|
+
room_name?: string | undefined;
|
|
17096
|
+
room_description?: string | undefined;
|
|
17037
17097
|
} | undefined;
|
|
17038
17098
|
}[] | undefined;
|
|
17039
17099
|
}>]>;
|