@seamapi/types 1.464.0 → 1.464.3
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/LICENSE.txt +1 -1
- package/dist/connect.d.cts +2793 -2269
- package/dist/devicedb.d.cts +0 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +4 -4
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -5
- package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-system.d.ts +6 -6
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +248 -248
- package/lib/seam/connect/models/action-attempts/activate-climate-preset.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/common.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/deprecated.d.ts +84 -84
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/lock-door.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/push-thermostat-programs.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/reset-sandbox-workspace.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/set-fan-mode.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/unlock-door.d.ts +12 -12
- package/lib/seam/connect/models/batch.d.ts +2564 -2564
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +6 -6
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +12 -12
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +12 -12
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +12 -12
- package/lib/seam/connect/models/devices/device-metadata.d.ts +56 -56
- package/lib/seam/connect/models/devices/device.d.ts +132 -132
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +100 -100
- package/lib/seam/connect/models/events/devices.d.ts +16 -16
- package/lib/seam/connect/models/events/seam-event.d.ts +8 -8
- package/lib/seam/connect/models/locations/location.d.ts +2 -2
- package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +2 -2
- package/lib/seam/connect/models/webhooks/webhook.d.ts +2 -2
- package/lib/seam/connect/models/workspaces/workspace.d.ts +4 -4
- package/lib/seam/connect/openapi.js +6 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2793 -2269
- package/lib/seam/devicedb/models/device-model.d.ts +116 -116
- package/lib/seam/devicedb/models/image-reference.d.ts +4 -4
- package/lib/seam/devicedb/models/manufacturer.d.ts +12 -12
- package/lib/seam/devicedb/route-specs.d.ts +210 -214
- package/package.json +12 -13
- package/src/lib/seam/connect/route-types.ts +3007 -2362
|
@@ -23,8 +23,7 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
23
23
|
selected_provider: z.ZodNullable<z.ZodString>;
|
|
24
24
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
|
-
|
|
27
|
-
status: "failed" | "pending" | "authorized";
|
|
26
|
+
status: "pending" | "failed" | "authorized";
|
|
28
27
|
workspace_id: string;
|
|
29
28
|
created_at: string;
|
|
30
29
|
connected_account_id: string | null;
|
|
@@ -32,7 +31,8 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
32
31
|
automatically_manage_new_devices: boolean;
|
|
33
32
|
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
34
33
|
connect_webview_id: string;
|
|
35
|
-
|
|
34
|
+
url: string;
|
|
35
|
+
device_selection_mode: "none" | "single" | "multiple";
|
|
36
36
|
accepted_providers: string[];
|
|
37
37
|
accepted_devices: string[];
|
|
38
38
|
any_device_allowed: boolean;
|
|
@@ -45,8 +45,7 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
45
45
|
selected_provider: string | null;
|
|
46
46
|
customer_key?: string | undefined;
|
|
47
47
|
}, {
|
|
48
|
-
|
|
49
|
-
status: "failed" | "pending" | "authorized";
|
|
48
|
+
status: "pending" | "failed" | "authorized";
|
|
50
49
|
workspace_id: string;
|
|
51
50
|
created_at: string;
|
|
52
51
|
connected_account_id: string | null;
|
|
@@ -54,7 +53,8 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
54
53
|
automatically_manage_new_devices: boolean;
|
|
55
54
|
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
56
55
|
connect_webview_id: string;
|
|
57
|
-
|
|
56
|
+
url: string;
|
|
57
|
+
device_selection_mode: "none" | "single" | "multiple";
|
|
58
58
|
accepted_providers: string[];
|
|
59
59
|
accepted_devices: string[];
|
|
60
60
|
any_device_allowed: boolean;
|
|
@@ -712,17 +712,17 @@ export declare const connected_account: z.ZodObject<{
|
|
|
712
712
|
phone: z.ZodOptional<z.ZodString>;
|
|
713
713
|
exclusive: z.ZodOptional<z.ZodBoolean>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
|
-
exclusive?: boolean | undefined;
|
|
716
|
-
username?: string | undefined;
|
|
717
|
-
email?: string | undefined;
|
|
718
715
|
phone?: string | undefined;
|
|
719
|
-
api_url?: string | undefined;
|
|
720
|
-
}, {
|
|
721
|
-
exclusive?: boolean | undefined;
|
|
722
716
|
username?: string | undefined;
|
|
717
|
+
api_url?: string | undefined;
|
|
723
718
|
email?: string | undefined;
|
|
719
|
+
exclusive?: boolean | undefined;
|
|
720
|
+
}, {
|
|
724
721
|
phone?: string | undefined;
|
|
722
|
+
username?: string | undefined;
|
|
725
723
|
api_url?: string | undefined;
|
|
724
|
+
email?: string | undefined;
|
|
725
|
+
exclusive?: boolean | undefined;
|
|
726
726
|
}>>;
|
|
727
727
|
account_type: z.ZodOptional<z.ZodString>;
|
|
728
728
|
account_type_display_name: z.ZodString;
|
|
@@ -1005,11 +1005,11 @@ export declare const connected_account: z.ZodObject<{
|
|
|
1005
1005
|
created_at?: string | undefined;
|
|
1006
1006
|
connected_account_id?: string | undefined;
|
|
1007
1007
|
user_identifier?: {
|
|
1008
|
-
exclusive?: boolean | undefined;
|
|
1009
|
-
username?: string | undefined;
|
|
1010
|
-
email?: string | undefined;
|
|
1011
1008
|
phone?: string | undefined;
|
|
1009
|
+
username?: string | undefined;
|
|
1012
1010
|
api_url?: string | undefined;
|
|
1011
|
+
email?: string | undefined;
|
|
1012
|
+
exclusive?: boolean | undefined;
|
|
1013
1013
|
} | undefined;
|
|
1014
1014
|
account_type?: string | undefined;
|
|
1015
1015
|
customer_key?: string | undefined;
|
|
@@ -1075,11 +1075,11 @@ export declare const connected_account: z.ZodObject<{
|
|
|
1075
1075
|
created_at?: string | undefined;
|
|
1076
1076
|
connected_account_id?: string | undefined;
|
|
1077
1077
|
user_identifier?: {
|
|
1078
|
-
exclusive?: boolean | undefined;
|
|
1079
|
-
username?: string | undefined;
|
|
1080
|
-
email?: string | undefined;
|
|
1081
1078
|
phone?: string | undefined;
|
|
1079
|
+
username?: string | undefined;
|
|
1082
1080
|
api_url?: string | undefined;
|
|
1081
|
+
email?: string | undefined;
|
|
1082
|
+
exclusive?: boolean | undefined;
|
|
1083
1083
|
} | undefined;
|
|
1084
1084
|
account_type?: string | undefined;
|
|
1085
1085
|
customer_key?: string | undefined;
|
|
@@ -115,11 +115,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
115
115
|
owner: "user" | "system";
|
|
116
116
|
}>>>;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
|
-
name?: string | null | undefined;
|
|
119
118
|
climate_preset_key?: string | undefined;
|
|
120
119
|
can_edit?: boolean | undefined;
|
|
121
120
|
can_delete?: boolean | undefined;
|
|
122
121
|
can_program?: boolean | undefined;
|
|
122
|
+
name?: string | null | undefined;
|
|
123
123
|
display_name?: string | undefined;
|
|
124
124
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
125
125
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -135,11 +135,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
135
135
|
owner: "user" | "system";
|
|
136
136
|
} | undefined;
|
|
137
137
|
}, {
|
|
138
|
-
name?: string | null | undefined;
|
|
139
138
|
climate_preset_key?: string | undefined;
|
|
140
139
|
can_edit?: boolean | undefined;
|
|
141
140
|
can_delete?: boolean | undefined;
|
|
142
141
|
can_program?: boolean | undefined;
|
|
142
|
+
name?: string | null | undefined;
|
|
143
143
|
display_name?: string | undefined;
|
|
144
144
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
145
145
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -184,11 +184,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
184
184
|
owner: "user" | "system";
|
|
185
185
|
}>>>;
|
|
186
186
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
-
name?: string | null | undefined;
|
|
188
187
|
climate_preset_key?: string | undefined;
|
|
189
188
|
can_edit?: boolean | undefined;
|
|
190
189
|
can_delete?: boolean | undefined;
|
|
191
190
|
can_program?: boolean | undefined;
|
|
191
|
+
name?: string | null | undefined;
|
|
192
192
|
display_name?: string | undefined;
|
|
193
193
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
194
194
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -204,11 +204,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
204
204
|
owner: "user" | "system";
|
|
205
205
|
} | undefined;
|
|
206
206
|
}, {
|
|
207
|
-
name?: string | null | undefined;
|
|
208
207
|
climate_preset_key?: string | undefined;
|
|
209
208
|
can_edit?: boolean | undefined;
|
|
210
209
|
can_delete?: boolean | undefined;
|
|
211
210
|
can_program?: boolean | undefined;
|
|
211
|
+
name?: string | null | undefined;
|
|
212
212
|
display_name?: string | undefined;
|
|
213
213
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
214
214
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -316,8 +316,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
316
316
|
error_code: string;
|
|
317
317
|
}>, "many">;
|
|
318
318
|
}, "strip", z.ZodTypeAny, {
|
|
319
|
-
name: string | null;
|
|
320
319
|
climate_preset_key: string;
|
|
320
|
+
name: string | null;
|
|
321
321
|
device_id: string;
|
|
322
322
|
workspace_id: string;
|
|
323
323
|
created_at: string;
|
|
@@ -331,8 +331,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
331
331
|
max_override_period_minutes?: number | null | undefined;
|
|
332
332
|
is_override_allowed?: boolean | undefined;
|
|
333
333
|
}, {
|
|
334
|
-
name: string | null;
|
|
335
334
|
climate_preset_key: string;
|
|
335
|
+
name: string | null;
|
|
336
336
|
device_id: string;
|
|
337
337
|
workspace_id: string;
|
|
338
338
|
created_at: string;
|
|
@@ -451,11 +451,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
451
451
|
is_fan_running?: boolean | undefined;
|
|
452
452
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
453
453
|
current_climate_setting?: {
|
|
454
|
-
name?: string | null | undefined;
|
|
455
454
|
climate_preset_key?: string | undefined;
|
|
456
455
|
can_edit?: boolean | undefined;
|
|
457
456
|
can_delete?: boolean | undefined;
|
|
458
457
|
can_program?: boolean | undefined;
|
|
458
|
+
name?: string | null | undefined;
|
|
459
459
|
display_name?: string | undefined;
|
|
460
460
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
461
461
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -472,11 +472,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
472
472
|
} | undefined;
|
|
473
473
|
} | undefined;
|
|
474
474
|
default_climate_setting?: {
|
|
475
|
-
name?: string | null | undefined;
|
|
476
475
|
climate_preset_key?: string | undefined;
|
|
477
476
|
can_edit?: boolean | undefined;
|
|
478
477
|
can_delete?: boolean | undefined;
|
|
479
478
|
can_program?: boolean | undefined;
|
|
479
|
+
name?: string | null | undefined;
|
|
480
480
|
display_name?: string | undefined;
|
|
481
481
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
482
482
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -515,8 +515,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
515
515
|
}[] | undefined;
|
|
516
516
|
fallback_climate_preset_key?: string | null | undefined;
|
|
517
517
|
active_thermostat_schedule?: {
|
|
518
|
-
name: string | null;
|
|
519
518
|
climate_preset_key: string;
|
|
519
|
+
name: string | null;
|
|
520
520
|
device_id: string;
|
|
521
521
|
workspace_id: string;
|
|
522
522
|
created_at: string;
|
|
@@ -581,11 +581,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
581
581
|
is_fan_running?: boolean | undefined;
|
|
582
582
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
583
583
|
current_climate_setting?: {
|
|
584
|
-
name?: string | null | undefined;
|
|
585
584
|
climate_preset_key?: string | undefined;
|
|
586
585
|
can_edit?: boolean | undefined;
|
|
587
586
|
can_delete?: boolean | undefined;
|
|
588
587
|
can_program?: boolean | undefined;
|
|
588
|
+
name?: string | null | undefined;
|
|
589
589
|
display_name?: string | undefined;
|
|
590
590
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
591
591
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -602,11 +602,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
602
602
|
} | undefined;
|
|
603
603
|
} | undefined;
|
|
604
604
|
default_climate_setting?: {
|
|
605
|
-
name?: string | null | undefined;
|
|
606
605
|
climate_preset_key?: string | undefined;
|
|
607
606
|
can_edit?: boolean | undefined;
|
|
608
607
|
can_delete?: boolean | undefined;
|
|
609
608
|
can_program?: boolean | undefined;
|
|
609
|
+
name?: string | null | undefined;
|
|
610
610
|
display_name?: string | undefined;
|
|
611
611
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
612
612
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -645,8 +645,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
645
645
|
}[] | undefined;
|
|
646
646
|
fallback_climate_preset_key?: string | null | undefined;
|
|
647
647
|
active_thermostat_schedule?: {
|
|
648
|
-
name: string | null;
|
|
649
648
|
climate_preset_key: string;
|
|
649
|
+
name: string | null;
|
|
650
650
|
device_id: string;
|
|
651
651
|
workspace_id: string;
|
|
652
652
|
created_at: string;
|
|
@@ -40,11 +40,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
40
40
|
owner: "user" | "system";
|
|
41
41
|
}>>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
-
name?: string | null | undefined;
|
|
44
43
|
climate_preset_key?: string | undefined;
|
|
45
44
|
can_edit?: boolean | undefined;
|
|
46
45
|
can_delete?: boolean | undefined;
|
|
47
46
|
can_program?: boolean | undefined;
|
|
47
|
+
name?: string | null | undefined;
|
|
48
48
|
display_name?: string | undefined;
|
|
49
49
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
50
50
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -60,11 +60,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
60
60
|
owner: "user" | "system";
|
|
61
61
|
} | undefined;
|
|
62
62
|
}, {
|
|
63
|
-
name?: string | null | undefined;
|
|
64
63
|
climate_preset_key?: string | undefined;
|
|
65
64
|
can_edit?: boolean | undefined;
|
|
66
65
|
can_delete?: boolean | undefined;
|
|
67
66
|
can_program?: boolean | undefined;
|
|
67
|
+
name?: string | null | undefined;
|
|
68
68
|
display_name?: string | undefined;
|
|
69
69
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
70
70
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -109,11 +109,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
109
109
|
owner: "user" | "system";
|
|
110
110
|
}>>>;
|
|
111
111
|
}, "strip", z.ZodTypeAny, {
|
|
112
|
-
name?: string | null | undefined;
|
|
113
112
|
climate_preset_key?: string | undefined;
|
|
114
113
|
can_edit?: boolean | undefined;
|
|
115
114
|
can_delete?: boolean | undefined;
|
|
116
115
|
can_program?: boolean | undefined;
|
|
116
|
+
name?: string | null | undefined;
|
|
117
117
|
display_name?: string | undefined;
|
|
118
118
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
119
119
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -129,11 +129,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
129
129
|
owner: "user" | "system";
|
|
130
130
|
} | undefined;
|
|
131
131
|
}, {
|
|
132
|
-
name?: string | null | undefined;
|
|
133
132
|
climate_preset_key?: string | undefined;
|
|
134
133
|
can_edit?: boolean | undefined;
|
|
135
134
|
can_delete?: boolean | undefined;
|
|
136
135
|
can_program?: boolean | undefined;
|
|
136
|
+
name?: string | null | undefined;
|
|
137
137
|
display_name?: string | undefined;
|
|
138
138
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
139
139
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -241,8 +241,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
241
241
|
error_code: string;
|
|
242
242
|
}>, "many">;
|
|
243
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
-
name: string | null;
|
|
245
244
|
climate_preset_key: string;
|
|
245
|
+
name: string | null;
|
|
246
246
|
device_id: string;
|
|
247
247
|
workspace_id: string;
|
|
248
248
|
created_at: string;
|
|
@@ -256,8 +256,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
256
256
|
max_override_period_minutes?: number | null | undefined;
|
|
257
257
|
is_override_allowed?: boolean | undefined;
|
|
258
258
|
}, {
|
|
259
|
-
name: string | null;
|
|
260
259
|
climate_preset_key: string;
|
|
260
|
+
name: string | null;
|
|
261
261
|
device_id: string;
|
|
262
262
|
workspace_id: string;
|
|
263
263
|
created_at: string;
|
|
@@ -376,11 +376,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
376
376
|
is_fan_running?: boolean | undefined;
|
|
377
377
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
378
378
|
current_climate_setting?: {
|
|
379
|
-
name?: string | null | undefined;
|
|
380
379
|
climate_preset_key?: string | undefined;
|
|
381
380
|
can_edit?: boolean | undefined;
|
|
382
381
|
can_delete?: boolean | undefined;
|
|
383
382
|
can_program?: boolean | undefined;
|
|
383
|
+
name?: string | null | undefined;
|
|
384
384
|
display_name?: string | undefined;
|
|
385
385
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
386
386
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -397,11 +397,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
397
397
|
} | undefined;
|
|
398
398
|
} | undefined;
|
|
399
399
|
default_climate_setting?: {
|
|
400
|
-
name?: string | null | undefined;
|
|
401
400
|
climate_preset_key?: string | undefined;
|
|
402
401
|
can_edit?: boolean | undefined;
|
|
403
402
|
can_delete?: boolean | undefined;
|
|
404
403
|
can_program?: boolean | undefined;
|
|
404
|
+
name?: string | null | undefined;
|
|
405
405
|
display_name?: string | undefined;
|
|
406
406
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
407
407
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -440,8 +440,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
440
440
|
}[] | undefined;
|
|
441
441
|
fallback_climate_preset_key?: string | null | undefined;
|
|
442
442
|
active_thermostat_schedule?: {
|
|
443
|
-
name: string | null;
|
|
444
443
|
climate_preset_key: string;
|
|
444
|
+
name: string | null;
|
|
445
445
|
device_id: string;
|
|
446
446
|
workspace_id: string;
|
|
447
447
|
created_at: string;
|
|
@@ -506,11 +506,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
506
506
|
is_fan_running?: boolean | undefined;
|
|
507
507
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
508
508
|
current_climate_setting?: {
|
|
509
|
-
name?: string | null | undefined;
|
|
510
509
|
climate_preset_key?: string | undefined;
|
|
511
510
|
can_edit?: boolean | undefined;
|
|
512
511
|
can_delete?: boolean | undefined;
|
|
513
512
|
can_program?: boolean | undefined;
|
|
513
|
+
name?: string | null | undefined;
|
|
514
514
|
display_name?: string | undefined;
|
|
515
515
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
516
516
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -527,11 +527,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
527
527
|
} | undefined;
|
|
528
528
|
} | undefined;
|
|
529
529
|
default_climate_setting?: {
|
|
530
|
-
name?: string | null | undefined;
|
|
531
530
|
climate_preset_key?: string | undefined;
|
|
532
531
|
can_edit?: boolean | undefined;
|
|
533
532
|
can_delete?: boolean | undefined;
|
|
534
533
|
can_program?: boolean | undefined;
|
|
534
|
+
name?: string | null | undefined;
|
|
535
535
|
display_name?: string | undefined;
|
|
536
536
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
537
537
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -570,8 +570,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
570
570
|
}[] | undefined;
|
|
571
571
|
fallback_climate_preset_key?: string | null | undefined;
|
|
572
572
|
active_thermostat_schedule?: {
|
|
573
|
-
name: string | null;
|
|
574
573
|
climate_preset_key: string;
|
|
574
|
+
name: string | null;
|
|
575
575
|
device_id: string;
|
|
576
576
|
workspace_id: string;
|
|
577
577
|
created_at: string;
|
|
@@ -259,143 +259,143 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
259
259
|
time: z.ZodString;
|
|
260
260
|
value: z.ZodNumber;
|
|
261
261
|
}, "strip", z.ZodTypeAny, {
|
|
262
|
-
time: string;
|
|
263
262
|
value: number;
|
|
264
|
-
}, {
|
|
265
263
|
time: string;
|
|
264
|
+
}, {
|
|
266
265
|
value: number;
|
|
266
|
+
time: string;
|
|
267
267
|
}>;
|
|
268
268
|
sound: z.ZodObject<{
|
|
269
269
|
time: z.ZodString;
|
|
270
270
|
value: z.ZodNumber;
|
|
271
271
|
}, "strip", z.ZodTypeAny, {
|
|
272
|
-
time: string;
|
|
273
272
|
value: number;
|
|
274
|
-
}, {
|
|
275
273
|
time: string;
|
|
274
|
+
}, {
|
|
276
275
|
value: number;
|
|
276
|
+
time: string;
|
|
277
277
|
}>;
|
|
278
278
|
humidity: z.ZodObject<{
|
|
279
279
|
time: z.ZodString;
|
|
280
280
|
value: z.ZodNumber;
|
|
281
281
|
}, "strip", z.ZodTypeAny, {
|
|
282
|
-
time: string;
|
|
283
282
|
value: number;
|
|
284
|
-
}, {
|
|
285
283
|
time: string;
|
|
284
|
+
}, {
|
|
286
285
|
value: number;
|
|
286
|
+
time: string;
|
|
287
287
|
}>;
|
|
288
288
|
pressure: z.ZodObject<{
|
|
289
289
|
time: z.ZodString;
|
|
290
290
|
value: z.ZodNumber;
|
|
291
291
|
}, "strip", z.ZodTypeAny, {
|
|
292
|
-
time: string;
|
|
293
292
|
value: number;
|
|
294
|
-
}, {
|
|
295
293
|
time: string;
|
|
294
|
+
}, {
|
|
296
295
|
value: number;
|
|
296
|
+
time: string;
|
|
297
297
|
}>;
|
|
298
298
|
accelerometer_z: z.ZodObject<{
|
|
299
299
|
time: z.ZodString;
|
|
300
300
|
value: z.ZodNumber;
|
|
301
301
|
}, "strip", z.ZodTypeAny, {
|
|
302
|
-
time: string;
|
|
303
302
|
value: number;
|
|
304
|
-
}, {
|
|
305
303
|
time: string;
|
|
304
|
+
}, {
|
|
306
305
|
value: number;
|
|
306
|
+
time: string;
|
|
307
307
|
}>;
|
|
308
308
|
}, "strip", z.ZodTypeAny, {
|
|
309
|
-
pressure: {
|
|
310
|
-
time: string;
|
|
311
|
-
value: number;
|
|
312
|
-
};
|
|
313
309
|
temperature: {
|
|
314
|
-
time: string;
|
|
315
310
|
value: number;
|
|
311
|
+
time: string;
|
|
316
312
|
};
|
|
317
313
|
sound: {
|
|
318
|
-
time: string;
|
|
319
314
|
value: number;
|
|
315
|
+
time: string;
|
|
320
316
|
};
|
|
321
317
|
humidity: {
|
|
322
|
-
time: string;
|
|
323
318
|
value: number;
|
|
324
|
-
};
|
|
325
|
-
accelerometer_z: {
|
|
326
319
|
time: string;
|
|
327
|
-
value: number;
|
|
328
320
|
};
|
|
329
|
-
}, {
|
|
330
321
|
pressure: {
|
|
322
|
+
value: number;
|
|
331
323
|
time: string;
|
|
324
|
+
};
|
|
325
|
+
accelerometer_z: {
|
|
332
326
|
value: number;
|
|
327
|
+
time: string;
|
|
333
328
|
};
|
|
329
|
+
}, {
|
|
334
330
|
temperature: {
|
|
335
|
-
time: string;
|
|
336
331
|
value: number;
|
|
332
|
+
time: string;
|
|
337
333
|
};
|
|
338
334
|
sound: {
|
|
339
|
-
time: string;
|
|
340
335
|
value: number;
|
|
336
|
+
time: string;
|
|
341
337
|
};
|
|
342
338
|
humidity: {
|
|
339
|
+
value: number;
|
|
343
340
|
time: string;
|
|
341
|
+
};
|
|
342
|
+
pressure: {
|
|
344
343
|
value: number;
|
|
344
|
+
time: string;
|
|
345
345
|
};
|
|
346
346
|
accelerometer_z: {
|
|
347
|
-
time: string;
|
|
348
347
|
value: number;
|
|
348
|
+
time: string;
|
|
349
349
|
};
|
|
350
350
|
}>;
|
|
351
351
|
}, "strip", z.ZodTypeAny, {
|
|
352
352
|
device_id: string;
|
|
353
353
|
device_name: string;
|
|
354
354
|
latest_sensor_values: {
|
|
355
|
-
pressure: {
|
|
356
|
-
time: string;
|
|
357
|
-
value: number;
|
|
358
|
-
};
|
|
359
355
|
temperature: {
|
|
360
|
-
time: string;
|
|
361
356
|
value: number;
|
|
357
|
+
time: string;
|
|
362
358
|
};
|
|
363
359
|
sound: {
|
|
364
|
-
time: string;
|
|
365
360
|
value: number;
|
|
361
|
+
time: string;
|
|
366
362
|
};
|
|
367
363
|
humidity: {
|
|
364
|
+
value: number;
|
|
368
365
|
time: string;
|
|
366
|
+
};
|
|
367
|
+
pressure: {
|
|
369
368
|
value: number;
|
|
369
|
+
time: string;
|
|
370
370
|
};
|
|
371
371
|
accelerometer_z: {
|
|
372
|
-
time: string;
|
|
373
372
|
value: number;
|
|
373
|
+
time: string;
|
|
374
374
|
};
|
|
375
375
|
};
|
|
376
376
|
}, {
|
|
377
377
|
device_id: string;
|
|
378
378
|
device_name: string;
|
|
379
379
|
latest_sensor_values: {
|
|
380
|
-
pressure: {
|
|
381
|
-
time: string;
|
|
382
|
-
value: number;
|
|
383
|
-
};
|
|
384
380
|
temperature: {
|
|
385
|
-
time: string;
|
|
386
381
|
value: number;
|
|
382
|
+
time: string;
|
|
387
383
|
};
|
|
388
384
|
sound: {
|
|
389
|
-
time: string;
|
|
390
385
|
value: number;
|
|
386
|
+
time: string;
|
|
391
387
|
};
|
|
392
388
|
humidity: {
|
|
389
|
+
value: number;
|
|
393
390
|
time: string;
|
|
391
|
+
};
|
|
392
|
+
pressure: {
|
|
394
393
|
value: number;
|
|
394
|
+
time: string;
|
|
395
395
|
};
|
|
396
396
|
accelerometer_z: {
|
|
397
|
-
time: string;
|
|
398
397
|
value: number;
|
|
398
|
+
time: string;
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
}>>;
|
|
@@ -805,7 +805,6 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
805
805
|
fob_id: z.ZodNumber;
|
|
806
806
|
has_photo: z.ZodBoolean;
|
|
807
807
|
}, "strip", z.ZodTypeAny, {
|
|
808
|
-
address: string | null;
|
|
809
808
|
device_name: string;
|
|
810
809
|
key_id: string;
|
|
811
810
|
property_id: string | null;
|
|
@@ -815,6 +814,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
815
814
|
status_type: string;
|
|
816
815
|
current_or_last_store_id: number;
|
|
817
816
|
last_movement: string;
|
|
817
|
+
address: string | null;
|
|
818
818
|
current_status: string | null;
|
|
819
819
|
current_user_name: string | null;
|
|
820
820
|
current_user_email: string | null;
|
|
@@ -826,7 +826,6 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
826
826
|
fob_id: number;
|
|
827
827
|
has_photo: boolean;
|
|
828
828
|
}, {
|
|
829
|
-
address: string | null;
|
|
830
829
|
device_name: string;
|
|
831
830
|
key_id: string;
|
|
832
831
|
property_id: string | null;
|
|
@@ -836,6 +835,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
836
835
|
status_type: string;
|
|
837
836
|
current_or_last_store_id: number;
|
|
838
837
|
last_movement: string;
|
|
838
|
+
address: string | null;
|
|
839
839
|
current_status: string | null;
|
|
840
840
|
current_user_name: string | null;
|
|
841
841
|
current_user_email: string | null;
|
|
@@ -937,25 +937,25 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
937
937
|
device_id: string;
|
|
938
938
|
device_name: string;
|
|
939
939
|
latest_sensor_values: {
|
|
940
|
-
pressure: {
|
|
941
|
-
time: string;
|
|
942
|
-
value: number;
|
|
943
|
-
};
|
|
944
940
|
temperature: {
|
|
945
|
-
time: string;
|
|
946
941
|
value: number;
|
|
942
|
+
time: string;
|
|
947
943
|
};
|
|
948
944
|
sound: {
|
|
949
|
-
time: string;
|
|
950
945
|
value: number;
|
|
946
|
+
time: string;
|
|
951
947
|
};
|
|
952
948
|
humidity: {
|
|
949
|
+
value: number;
|
|
953
950
|
time: string;
|
|
951
|
+
};
|
|
952
|
+
pressure: {
|
|
954
953
|
value: number;
|
|
954
|
+
time: string;
|
|
955
955
|
};
|
|
956
956
|
accelerometer_z: {
|
|
957
|
-
time: string;
|
|
958
957
|
value: number;
|
|
958
|
+
time: string;
|
|
959
959
|
};
|
|
960
960
|
};
|
|
961
961
|
} | undefined;
|
|
@@ -1081,7 +1081,6 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1081
1081
|
product_type: string;
|
|
1082
1082
|
} | undefined;
|
|
1083
1083
|
keynest_metadata?: {
|
|
1084
|
-
address: string | null;
|
|
1085
1084
|
device_name: string;
|
|
1086
1085
|
key_id: string;
|
|
1087
1086
|
property_id: string | null;
|
|
@@ -1091,6 +1090,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1091
1090
|
status_type: string;
|
|
1092
1091
|
current_or_last_store_id: number;
|
|
1093
1092
|
last_movement: string;
|
|
1093
|
+
address: string | null;
|
|
1094
1094
|
current_status: string | null;
|
|
1095
1095
|
current_user_name: string | null;
|
|
1096
1096
|
current_user_email: string | null;
|
|
@@ -1192,25 +1192,25 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1192
1192
|
device_id: string;
|
|
1193
1193
|
device_name: string;
|
|
1194
1194
|
latest_sensor_values: {
|
|
1195
|
-
pressure: {
|
|
1196
|
-
time: string;
|
|
1197
|
-
value: number;
|
|
1198
|
-
};
|
|
1199
1195
|
temperature: {
|
|
1200
|
-
time: string;
|
|
1201
1196
|
value: number;
|
|
1197
|
+
time: string;
|
|
1202
1198
|
};
|
|
1203
1199
|
sound: {
|
|
1204
|
-
time: string;
|
|
1205
1200
|
value: number;
|
|
1201
|
+
time: string;
|
|
1206
1202
|
};
|
|
1207
1203
|
humidity: {
|
|
1204
|
+
value: number;
|
|
1208
1205
|
time: string;
|
|
1206
|
+
};
|
|
1207
|
+
pressure: {
|
|
1209
1208
|
value: number;
|
|
1209
|
+
time: string;
|
|
1210
1210
|
};
|
|
1211
1211
|
accelerometer_z: {
|
|
1212
|
-
time: string;
|
|
1213
1212
|
value: number;
|
|
1213
|
+
time: string;
|
|
1214
1214
|
};
|
|
1215
1215
|
};
|
|
1216
1216
|
} | undefined;
|
|
@@ -1336,7 +1336,6 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1336
1336
|
product_type: string;
|
|
1337
1337
|
} | undefined;
|
|
1338
1338
|
keynest_metadata?: {
|
|
1339
|
-
address: string | null;
|
|
1340
1339
|
device_name: string;
|
|
1341
1340
|
key_id: string;
|
|
1342
1341
|
property_id: string | null;
|
|
@@ -1346,6 +1345,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1346
1345
|
status_type: string;
|
|
1347
1346
|
current_or_last_store_id: number;
|
|
1348
1347
|
last_movement: string;
|
|
1348
|
+
address: string | null;
|
|
1349
1349
|
current_status: string | null;
|
|
1350
1350
|
current_user_name: string | null;
|
|
1351
1351
|
current_user_email: string | null;
|