@seamapi/types 1.928.0 → 1.929.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 +185 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1453 -209
- package/dist/index.cjs +185 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +2 -2
- package/lib/seam/connect/models/customer/customer-data.d.ts +12 -12
- package/lib/seam/connect/models/customer/location-resources.d.ts +8 -8
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +201 -0
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +58 -0
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +165 -13
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +12 -12
- package/lib/seam/connect/models/devices/device-metadata.d.ts +20 -20
- package/lib/seam/connect/models/devices/device.d.ts +248 -40
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +180 -28
- package/lib/seam/connect/models/spaces/space.d.ts +4 -4
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +4 -4
- package/lib/seam/connect/openapi.js +136 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +884 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +86 -0
- package/src/lib/seam/connect/models/devices/capability-properties/index.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +164 -0
- package/src/lib/seam/connect/route-types.ts +1122 -0
|
@@ -25,6 +25,102 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
25
25
|
max_length?: number | undefined;
|
|
26
26
|
}>]>, "many">>>;
|
|
27
27
|
supported_code_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
28
|
+
offline_time_frame_options: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
29
|
+
display_name: z.ZodString;
|
|
30
|
+
min_duration: z.ZodOptional<z.ZodString>;
|
|
31
|
+
max_duration: z.ZodOptional<z.ZodString>;
|
|
32
|
+
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
33
|
+
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
34
|
+
display_name: z.ZodString;
|
|
35
|
+
check_in_time: z.ZodString;
|
|
36
|
+
check_out_time: z.ZodString;
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
display_name: string;
|
|
39
|
+
check_in_time: string;
|
|
40
|
+
check_out_time: string;
|
|
41
|
+
}, {
|
|
42
|
+
display_name: string;
|
|
43
|
+
check_in_time: string;
|
|
44
|
+
check_out_time: string;
|
|
45
|
+
}>, "many">>;
|
|
46
|
+
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
47
|
+
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
48
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
49
|
+
}, "strip", z.ZodTypeAny, {
|
|
50
|
+
display_name: string;
|
|
51
|
+
min_duration?: string | undefined;
|
|
52
|
+
max_duration?: string | undefined;
|
|
53
|
+
matching_start_end_time?: true | undefined;
|
|
54
|
+
time_pairs?: {
|
|
55
|
+
display_name: string;
|
|
56
|
+
check_in_time: string;
|
|
57
|
+
check_out_time: string;
|
|
58
|
+
}[] | undefined;
|
|
59
|
+
start_date_recurrence_rule?: string | undefined;
|
|
60
|
+
end_date_recurrence_rule?: string | undefined;
|
|
61
|
+
time_zone?: string | undefined;
|
|
62
|
+
}, {
|
|
63
|
+
display_name: string;
|
|
64
|
+
min_duration?: string | undefined;
|
|
65
|
+
max_duration?: string | undefined;
|
|
66
|
+
matching_start_end_time?: true | undefined;
|
|
67
|
+
time_pairs?: {
|
|
68
|
+
display_name: string;
|
|
69
|
+
check_in_time: string;
|
|
70
|
+
check_out_time: string;
|
|
71
|
+
}[] | undefined;
|
|
72
|
+
start_date_recurrence_rule?: string | undefined;
|
|
73
|
+
end_date_recurrence_rule?: string | undefined;
|
|
74
|
+
time_zone?: string | undefined;
|
|
75
|
+
}>, "many">>>;
|
|
76
|
+
online_time_frame_options: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
77
|
+
display_name: z.ZodString;
|
|
78
|
+
min_duration: z.ZodOptional<z.ZodString>;
|
|
79
|
+
max_duration: z.ZodOptional<z.ZodString>;
|
|
80
|
+
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
81
|
+
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
82
|
+
display_name: z.ZodString;
|
|
83
|
+
check_in_time: z.ZodString;
|
|
84
|
+
check_out_time: z.ZodString;
|
|
85
|
+
}, "strip", z.ZodTypeAny, {
|
|
86
|
+
display_name: string;
|
|
87
|
+
check_in_time: string;
|
|
88
|
+
check_out_time: string;
|
|
89
|
+
}, {
|
|
90
|
+
display_name: string;
|
|
91
|
+
check_in_time: string;
|
|
92
|
+
check_out_time: string;
|
|
93
|
+
}>, "many">>;
|
|
94
|
+
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
95
|
+
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
96
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
97
|
+
}, "strip", z.ZodTypeAny, {
|
|
98
|
+
display_name: string;
|
|
99
|
+
min_duration?: string | undefined;
|
|
100
|
+
max_duration?: string | undefined;
|
|
101
|
+
matching_start_end_time?: true | undefined;
|
|
102
|
+
time_pairs?: {
|
|
103
|
+
display_name: string;
|
|
104
|
+
check_in_time: string;
|
|
105
|
+
check_out_time: string;
|
|
106
|
+
}[] | undefined;
|
|
107
|
+
start_date_recurrence_rule?: string | undefined;
|
|
108
|
+
end_date_recurrence_rule?: string | undefined;
|
|
109
|
+
time_zone?: string | undefined;
|
|
110
|
+
}, {
|
|
111
|
+
display_name: string;
|
|
112
|
+
min_duration?: string | undefined;
|
|
113
|
+
max_duration?: string | undefined;
|
|
114
|
+
matching_start_end_time?: true | undefined;
|
|
115
|
+
time_pairs?: {
|
|
116
|
+
display_name: string;
|
|
117
|
+
check_in_time: string;
|
|
118
|
+
check_out_time: string;
|
|
119
|
+
}[] | undefined;
|
|
120
|
+
start_date_recurrence_rule?: string | undefined;
|
|
121
|
+
end_date_recurrence_rule?: string | undefined;
|
|
122
|
+
time_zone?: string | undefined;
|
|
123
|
+
}>, "many">>>;
|
|
28
124
|
max_active_codes_supported: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
29
125
|
supports_backup_access_code_pool: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
30
126
|
has_native_entry_events: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -50,6 +146,34 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
50
146
|
max_length?: number | undefined;
|
|
51
147
|
})[] | undefined;
|
|
52
148
|
supported_code_lengths?: number[] | undefined;
|
|
149
|
+
offline_time_frame_options?: {
|
|
150
|
+
display_name: string;
|
|
151
|
+
min_duration?: string | undefined;
|
|
152
|
+
max_duration?: string | undefined;
|
|
153
|
+
matching_start_end_time?: true | undefined;
|
|
154
|
+
time_pairs?: {
|
|
155
|
+
display_name: string;
|
|
156
|
+
check_in_time: string;
|
|
157
|
+
check_out_time: string;
|
|
158
|
+
}[] | undefined;
|
|
159
|
+
start_date_recurrence_rule?: string | undefined;
|
|
160
|
+
end_date_recurrence_rule?: string | undefined;
|
|
161
|
+
time_zone?: string | undefined;
|
|
162
|
+
}[] | undefined;
|
|
163
|
+
online_time_frame_options?: {
|
|
164
|
+
display_name: string;
|
|
165
|
+
min_duration?: string | undefined;
|
|
166
|
+
max_duration?: string | undefined;
|
|
167
|
+
matching_start_end_time?: true | undefined;
|
|
168
|
+
time_pairs?: {
|
|
169
|
+
display_name: string;
|
|
170
|
+
check_in_time: string;
|
|
171
|
+
check_out_time: string;
|
|
172
|
+
}[] | undefined;
|
|
173
|
+
start_date_recurrence_rule?: string | undefined;
|
|
174
|
+
end_date_recurrence_rule?: string | undefined;
|
|
175
|
+
time_zone?: string | undefined;
|
|
176
|
+
}[] | undefined;
|
|
53
177
|
max_active_codes_supported?: number | undefined;
|
|
54
178
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
55
179
|
has_native_entry_events?: boolean | undefined;
|
|
@@ -70,6 +194,34 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
70
194
|
max_length?: number | undefined;
|
|
71
195
|
})[] | undefined;
|
|
72
196
|
supported_code_lengths?: number[] | undefined;
|
|
197
|
+
offline_time_frame_options?: {
|
|
198
|
+
display_name: string;
|
|
199
|
+
min_duration?: string | undefined;
|
|
200
|
+
max_duration?: string | undefined;
|
|
201
|
+
matching_start_end_time?: true | undefined;
|
|
202
|
+
time_pairs?: {
|
|
203
|
+
display_name: string;
|
|
204
|
+
check_in_time: string;
|
|
205
|
+
check_out_time: string;
|
|
206
|
+
}[] | undefined;
|
|
207
|
+
start_date_recurrence_rule?: string | undefined;
|
|
208
|
+
end_date_recurrence_rule?: string | undefined;
|
|
209
|
+
time_zone?: string | undefined;
|
|
210
|
+
}[] | undefined;
|
|
211
|
+
online_time_frame_options?: {
|
|
212
|
+
display_name: string;
|
|
213
|
+
min_duration?: string | undefined;
|
|
214
|
+
max_duration?: string | undefined;
|
|
215
|
+
matching_start_end_time?: true | undefined;
|
|
216
|
+
time_pairs?: {
|
|
217
|
+
display_name: string;
|
|
218
|
+
check_in_time: string;
|
|
219
|
+
check_out_time: string;
|
|
220
|
+
}[] | undefined;
|
|
221
|
+
start_date_recurrence_rule?: string | undefined;
|
|
222
|
+
end_date_recurrence_rule?: string | undefined;
|
|
223
|
+
time_zone?: string | undefined;
|
|
224
|
+
}[] | undefined;
|
|
73
225
|
max_active_codes_supported?: number | undefined;
|
|
74
226
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
75
227
|
has_native_entry_events?: boolean | undefined;
|
|
@@ -121,12 +273,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
121
273
|
owner: "user" | "system";
|
|
122
274
|
}>>>;
|
|
123
275
|
}, "strip", z.ZodTypeAny, {
|
|
276
|
+
display_name?: string | undefined;
|
|
124
277
|
climate_preset_key?: string | undefined;
|
|
125
278
|
can_edit?: boolean | undefined;
|
|
126
279
|
can_delete?: boolean | undefined;
|
|
127
280
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
128
281
|
name?: string | null | undefined;
|
|
129
|
-
display_name?: string | undefined;
|
|
130
282
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
131
283
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
132
284
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -141,12 +293,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
141
293
|
owner: "user" | "system";
|
|
142
294
|
} | undefined;
|
|
143
295
|
}, {
|
|
296
|
+
display_name?: string | undefined;
|
|
144
297
|
climate_preset_key?: string | undefined;
|
|
145
298
|
can_edit?: boolean | undefined;
|
|
146
299
|
can_delete?: boolean | undefined;
|
|
147
300
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
148
301
|
name?: string | null | undefined;
|
|
149
|
-
display_name?: string | undefined;
|
|
150
302
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
151
303
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
152
304
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -190,12 +342,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
190
342
|
owner: "user" | "system";
|
|
191
343
|
}>>>;
|
|
192
344
|
}, "strip", z.ZodTypeAny, {
|
|
345
|
+
display_name?: string | undefined;
|
|
193
346
|
climate_preset_key?: string | undefined;
|
|
194
347
|
can_edit?: boolean | undefined;
|
|
195
348
|
can_delete?: boolean | undefined;
|
|
196
349
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
197
350
|
name?: string | null | undefined;
|
|
198
|
-
display_name?: string | undefined;
|
|
199
351
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
200
352
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
201
353
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -210,12 +362,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
210
362
|
owner: "user" | "system";
|
|
211
363
|
} | undefined;
|
|
212
364
|
}, {
|
|
365
|
+
display_name?: string | undefined;
|
|
213
366
|
climate_preset_key?: string | undefined;
|
|
214
367
|
can_edit?: boolean | undefined;
|
|
215
368
|
can_delete?: boolean | undefined;
|
|
216
369
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
217
370
|
name?: string | null | undefined;
|
|
218
|
-
display_name?: string | undefined;
|
|
219
371
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
220
372
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
221
373
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -259,11 +411,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
259
411
|
owner: "user" | "system";
|
|
260
412
|
}>>;
|
|
261
413
|
}, "strip", z.ZodTypeAny, {
|
|
414
|
+
display_name: string;
|
|
262
415
|
climate_preset_key: string;
|
|
263
416
|
can_edit: boolean;
|
|
264
417
|
can_delete: boolean;
|
|
265
418
|
can_use_with_thermostat_daily_programs: boolean;
|
|
266
|
-
display_name: string;
|
|
267
419
|
manual_override_allowed: boolean;
|
|
268
420
|
name?: string | null | undefined;
|
|
269
421
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -279,11 +431,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
279
431
|
owner: "user" | "system";
|
|
280
432
|
} | undefined;
|
|
281
433
|
}, {
|
|
434
|
+
display_name: string;
|
|
282
435
|
climate_preset_key: string;
|
|
283
436
|
can_edit: boolean;
|
|
284
437
|
can_delete: boolean;
|
|
285
438
|
can_use_with_thermostat_daily_programs: boolean;
|
|
286
|
-
display_name: string;
|
|
287
439
|
manual_override_allowed: boolean;
|
|
288
440
|
name?: string | null | undefined;
|
|
289
441
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -460,12 +612,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
460
612
|
is_fan_running?: boolean | undefined;
|
|
461
613
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
462
614
|
current_climate_setting?: {
|
|
615
|
+
display_name?: string | undefined;
|
|
463
616
|
climate_preset_key?: string | undefined;
|
|
464
617
|
can_edit?: boolean | undefined;
|
|
465
618
|
can_delete?: boolean | undefined;
|
|
466
619
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
467
620
|
name?: string | null | undefined;
|
|
468
|
-
display_name?: string | undefined;
|
|
469
621
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
470
622
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
471
623
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -481,12 +633,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
481
633
|
} | undefined;
|
|
482
634
|
} | undefined;
|
|
483
635
|
default_climate_setting?: {
|
|
636
|
+
display_name?: string | undefined;
|
|
484
637
|
climate_preset_key?: string | undefined;
|
|
485
638
|
can_edit?: boolean | undefined;
|
|
486
639
|
can_delete?: boolean | undefined;
|
|
487
640
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
488
641
|
name?: string | null | undefined;
|
|
489
|
-
display_name?: string | undefined;
|
|
490
642
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
491
643
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
492
644
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -502,11 +654,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
502
654
|
} | undefined;
|
|
503
655
|
} | undefined;
|
|
504
656
|
available_climate_presets?: {
|
|
657
|
+
display_name: string;
|
|
505
658
|
climate_preset_key: string;
|
|
506
659
|
can_edit: boolean;
|
|
507
660
|
can_delete: boolean;
|
|
508
661
|
can_use_with_thermostat_daily_programs: boolean;
|
|
509
|
-
display_name: string;
|
|
510
662
|
manual_override_allowed: boolean;
|
|
511
663
|
name?: string | null | undefined;
|
|
512
664
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -593,12 +745,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
593
745
|
is_fan_running?: boolean | undefined;
|
|
594
746
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
595
747
|
current_climate_setting?: {
|
|
748
|
+
display_name?: string | undefined;
|
|
596
749
|
climate_preset_key?: string | undefined;
|
|
597
750
|
can_edit?: boolean | undefined;
|
|
598
751
|
can_delete?: boolean | undefined;
|
|
599
752
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
600
753
|
name?: string | null | undefined;
|
|
601
|
-
display_name?: string | undefined;
|
|
602
754
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
603
755
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
604
756
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -614,12 +766,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
614
766
|
} | undefined;
|
|
615
767
|
} | undefined;
|
|
616
768
|
default_climate_setting?: {
|
|
769
|
+
display_name?: string | undefined;
|
|
617
770
|
climate_preset_key?: string | undefined;
|
|
618
771
|
can_edit?: boolean | undefined;
|
|
619
772
|
can_delete?: boolean | undefined;
|
|
620
773
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
621
774
|
name?: string | null | undefined;
|
|
622
|
-
display_name?: string | undefined;
|
|
623
775
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
624
776
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
625
777
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -635,11 +787,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
635
787
|
} | undefined;
|
|
636
788
|
} | undefined;
|
|
637
789
|
available_climate_presets?: {
|
|
790
|
+
display_name: string;
|
|
638
791
|
climate_preset_key: string;
|
|
639
792
|
can_edit: boolean;
|
|
640
793
|
can_delete: boolean;
|
|
641
794
|
can_use_with_thermostat_daily_programs: boolean;
|
|
642
|
-
display_name: string;
|
|
643
795
|
manual_override_allowed: boolean;
|
|
644
796
|
name?: string | null | undefined;
|
|
645
797
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -714,4 +866,4 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
714
866
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
715
867
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
716
868
|
}>>;
|
|
717
|
-
export type { AccessCodeConstraint } from './access-code.js';
|
|
869
|
+
export type { AccessCodeConstraint, TimeFrameOption } from './access-code.js';
|
|
@@ -40,12 +40,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
40
40
|
owner: "user" | "system";
|
|
41
41
|
}>>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
+
display_name?: string | undefined;
|
|
43
44
|
climate_preset_key?: string | undefined;
|
|
44
45
|
can_edit?: boolean | undefined;
|
|
45
46
|
can_delete?: boolean | undefined;
|
|
46
47
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
47
48
|
name?: string | null | undefined;
|
|
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;
|
|
51
51
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -60,12 +60,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
60
60
|
owner: "user" | "system";
|
|
61
61
|
} | undefined;
|
|
62
62
|
}, {
|
|
63
|
+
display_name?: string | undefined;
|
|
63
64
|
climate_preset_key?: string | undefined;
|
|
64
65
|
can_edit?: boolean | undefined;
|
|
65
66
|
can_delete?: boolean | undefined;
|
|
66
67
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
67
68
|
name?: string | null | undefined;
|
|
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;
|
|
71
71
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -109,12 +109,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
109
109
|
owner: "user" | "system";
|
|
110
110
|
}>>>;
|
|
111
111
|
}, "strip", z.ZodTypeAny, {
|
|
112
|
+
display_name?: string | undefined;
|
|
112
113
|
climate_preset_key?: string | undefined;
|
|
113
114
|
can_edit?: boolean | undefined;
|
|
114
115
|
can_delete?: boolean | undefined;
|
|
115
116
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
116
117
|
name?: string | null | undefined;
|
|
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;
|
|
120
120
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -129,12 +129,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
129
129
|
owner: "user" | "system";
|
|
130
130
|
} | undefined;
|
|
131
131
|
}, {
|
|
132
|
+
display_name?: string | undefined;
|
|
132
133
|
climate_preset_key?: string | undefined;
|
|
133
134
|
can_edit?: boolean | undefined;
|
|
134
135
|
can_delete?: boolean | undefined;
|
|
135
136
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
136
137
|
name?: string | null | undefined;
|
|
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;
|
|
140
140
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -178,11 +178,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
178
178
|
owner: "user" | "system";
|
|
179
179
|
}>>;
|
|
180
180
|
}, "strip", z.ZodTypeAny, {
|
|
181
|
+
display_name: string;
|
|
181
182
|
climate_preset_key: string;
|
|
182
183
|
can_edit: boolean;
|
|
183
184
|
can_delete: boolean;
|
|
184
185
|
can_use_with_thermostat_daily_programs: boolean;
|
|
185
|
-
display_name: string;
|
|
186
186
|
manual_override_allowed: boolean;
|
|
187
187
|
name?: string | null | undefined;
|
|
188
188
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -198,11 +198,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
198
198
|
owner: "user" | "system";
|
|
199
199
|
} | undefined;
|
|
200
200
|
}, {
|
|
201
|
+
display_name: string;
|
|
201
202
|
climate_preset_key: string;
|
|
202
203
|
can_edit: boolean;
|
|
203
204
|
can_delete: boolean;
|
|
204
205
|
can_use_with_thermostat_daily_programs: boolean;
|
|
205
|
-
display_name: string;
|
|
206
206
|
manual_override_allowed: boolean;
|
|
207
207
|
name?: string | null | undefined;
|
|
208
208
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -379,12 +379,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
379
379
|
is_fan_running?: boolean | undefined;
|
|
380
380
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
381
381
|
current_climate_setting?: {
|
|
382
|
+
display_name?: string | undefined;
|
|
382
383
|
climate_preset_key?: string | undefined;
|
|
383
384
|
can_edit?: boolean | undefined;
|
|
384
385
|
can_delete?: boolean | undefined;
|
|
385
386
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
386
387
|
name?: string | null | undefined;
|
|
387
|
-
display_name?: string | undefined;
|
|
388
388
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
389
389
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
390
390
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -400,12 +400,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
400
400
|
} | undefined;
|
|
401
401
|
} | undefined;
|
|
402
402
|
default_climate_setting?: {
|
|
403
|
+
display_name?: string | undefined;
|
|
403
404
|
climate_preset_key?: string | undefined;
|
|
404
405
|
can_edit?: boolean | undefined;
|
|
405
406
|
can_delete?: boolean | undefined;
|
|
406
407
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
407
408
|
name?: string | null | undefined;
|
|
408
|
-
display_name?: string | undefined;
|
|
409
409
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
410
410
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
411
411
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -421,11 +421,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
421
421
|
} | undefined;
|
|
422
422
|
} | undefined;
|
|
423
423
|
available_climate_presets?: {
|
|
424
|
+
display_name: string;
|
|
424
425
|
climate_preset_key: string;
|
|
425
426
|
can_edit: boolean;
|
|
426
427
|
can_delete: boolean;
|
|
427
428
|
can_use_with_thermostat_daily_programs: boolean;
|
|
428
|
-
display_name: string;
|
|
429
429
|
manual_override_allowed: boolean;
|
|
430
430
|
name?: string | null | undefined;
|
|
431
431
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -512,12 +512,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
512
512
|
is_fan_running?: boolean | undefined;
|
|
513
513
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
514
514
|
current_climate_setting?: {
|
|
515
|
+
display_name?: string | undefined;
|
|
515
516
|
climate_preset_key?: string | undefined;
|
|
516
517
|
can_edit?: boolean | undefined;
|
|
517
518
|
can_delete?: boolean | undefined;
|
|
518
519
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
519
520
|
name?: string | null | undefined;
|
|
520
|
-
display_name?: string | undefined;
|
|
521
521
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
522
522
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
523
523
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -533,12 +533,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
533
533
|
} | undefined;
|
|
534
534
|
} | undefined;
|
|
535
535
|
default_climate_setting?: {
|
|
536
|
+
display_name?: string | undefined;
|
|
536
537
|
climate_preset_key?: string | undefined;
|
|
537
538
|
can_edit?: boolean | undefined;
|
|
538
539
|
can_delete?: boolean | undefined;
|
|
539
540
|
can_use_with_thermostat_daily_programs?: boolean | undefined;
|
|
540
541
|
name?: string | null | undefined;
|
|
541
|
-
display_name?: string | undefined;
|
|
542
542
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
543
543
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
544
544
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | "eco" | undefined;
|
|
@@ -554,11 +554,11 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
554
554
|
} | undefined;
|
|
555
555
|
} | undefined;
|
|
556
556
|
available_climate_presets?: {
|
|
557
|
+
display_name: string;
|
|
557
558
|
climate_preset_key: string;
|
|
558
559
|
can_edit: boolean;
|
|
559
560
|
can_delete: boolean;
|
|
560
561
|
can_use_with_thermostat_daily_programs: boolean;
|
|
561
|
-
display_name: string;
|
|
562
562
|
manual_override_allowed: boolean;
|
|
563
563
|
name?: string | null | undefined;
|
|
564
564
|
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
@@ -11,10 +11,10 @@ export declare const dormakaba_oracode_time_slot: z.ZodObject<{
|
|
|
11
11
|
dormakaba_oracode_user_level_prefix: z.ZodNumber;
|
|
12
12
|
dormakaba_oracode_user_level_id: z.ZodString;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
name: string;
|
|
15
|
-
prefix: number;
|
|
16
14
|
check_in_time: string;
|
|
17
15
|
check_out_time: string;
|
|
16
|
+
name: string;
|
|
17
|
+
prefix: number;
|
|
18
18
|
is_24_hour: boolean;
|
|
19
19
|
is_biweekly_mode: boolean;
|
|
20
20
|
is_one_shot: boolean;
|
|
@@ -22,10 +22,10 @@ export declare const dormakaba_oracode_time_slot: z.ZodObject<{
|
|
|
22
22
|
dormakaba_oracode_user_level_prefix: number;
|
|
23
23
|
dormakaba_oracode_user_level_id: string;
|
|
24
24
|
}, {
|
|
25
|
-
name: string;
|
|
26
|
-
prefix: number;
|
|
27
25
|
check_in_time: string;
|
|
28
26
|
check_out_time: string;
|
|
27
|
+
name: string;
|
|
28
|
+
prefix: number;
|
|
29
29
|
is_24_hour: boolean;
|
|
30
30
|
is_biweekly_mode: boolean;
|
|
31
31
|
is_one_shot: boolean;
|
|
@@ -624,10 +624,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
624
624
|
dormakaba_oracode_user_level_prefix: z.ZodNumber;
|
|
625
625
|
dormakaba_oracode_user_level_id: z.ZodString;
|
|
626
626
|
}, "strip", z.ZodTypeAny, {
|
|
627
|
-
name: string;
|
|
628
|
-
prefix: number;
|
|
629
627
|
check_in_time: string;
|
|
630
628
|
check_out_time: string;
|
|
629
|
+
name: string;
|
|
630
|
+
prefix: number;
|
|
631
631
|
is_24_hour: boolean;
|
|
632
632
|
is_biweekly_mode: boolean;
|
|
633
633
|
is_one_shot: boolean;
|
|
@@ -635,10 +635,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
635
635
|
dormakaba_oracode_user_level_prefix: number;
|
|
636
636
|
dormakaba_oracode_user_level_id: string;
|
|
637
637
|
}, {
|
|
638
|
-
name: string;
|
|
639
|
-
prefix: number;
|
|
640
638
|
check_in_time: string;
|
|
641
639
|
check_out_time: string;
|
|
640
|
+
name: string;
|
|
641
|
+
prefix: number;
|
|
642
642
|
is_24_hour: boolean;
|
|
643
643
|
is_biweekly_mode: boolean;
|
|
644
644
|
is_one_shot: boolean;
|
|
@@ -655,10 +655,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
655
655
|
door_id?: number | undefined;
|
|
656
656
|
iana_timezone?: string | undefined;
|
|
657
657
|
predefined_time_slots?: {
|
|
658
|
-
name: string;
|
|
659
|
-
prefix: number;
|
|
660
658
|
check_in_time: string;
|
|
661
659
|
check_out_time: string;
|
|
660
|
+
name: string;
|
|
661
|
+
prefix: number;
|
|
662
662
|
is_24_hour: boolean;
|
|
663
663
|
is_biweekly_mode: boolean;
|
|
664
664
|
is_one_shot: boolean;
|
|
@@ -675,10 +675,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
675
675
|
door_id?: number | undefined;
|
|
676
676
|
iana_timezone?: string | undefined;
|
|
677
677
|
predefined_time_slots?: {
|
|
678
|
-
name: string;
|
|
679
|
-
prefix: number;
|
|
680
678
|
check_in_time: string;
|
|
681
679
|
check_out_time: string;
|
|
680
|
+
name: string;
|
|
681
|
+
prefix: number;
|
|
682
682
|
is_24_hour: boolean;
|
|
683
683
|
is_biweekly_mode: boolean;
|
|
684
684
|
is_one_shot: boolean;
|
|
@@ -894,13 +894,13 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
894
894
|
device_type: z.ZodString;
|
|
895
895
|
time_zone: z.ZodNullable<z.ZodString>;
|
|
896
896
|
}, "strip", z.ZodTypeAny, {
|
|
897
|
-
device_id: string;
|
|
898
897
|
time_zone: string | null;
|
|
898
|
+
device_id: string;
|
|
899
899
|
device_name: string;
|
|
900
900
|
device_type: string;
|
|
901
901
|
}, {
|
|
902
|
-
device_id: string;
|
|
903
902
|
time_zone: string | null;
|
|
903
|
+
device_id: string;
|
|
904
904
|
device_name: string;
|
|
905
905
|
device_type: string;
|
|
906
906
|
}>>;
|
|
@@ -1123,10 +1123,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1123
1123
|
door_id?: number | undefined;
|
|
1124
1124
|
iana_timezone?: string | undefined;
|
|
1125
1125
|
predefined_time_slots?: {
|
|
1126
|
-
name: string;
|
|
1127
|
-
prefix: number;
|
|
1128
1126
|
check_in_time: string;
|
|
1129
1127
|
check_out_time: string;
|
|
1128
|
+
name: string;
|
|
1129
|
+
prefix: number;
|
|
1130
1130
|
is_24_hour: boolean;
|
|
1131
1131
|
is_biweekly_mode: boolean;
|
|
1132
1132
|
is_one_shot: boolean;
|
|
@@ -1208,8 +1208,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1208
1208
|
is_quadient_locker?: boolean | undefined;
|
|
1209
1209
|
} | undefined;
|
|
1210
1210
|
ultraloq_metadata?: {
|
|
1211
|
-
device_id: string;
|
|
1212
1211
|
time_zone: string | null;
|
|
1212
|
+
device_id: string;
|
|
1213
1213
|
device_name: string;
|
|
1214
1214
|
device_type: string;
|
|
1215
1215
|
} | undefined;
|
|
@@ -1410,10 +1410,10 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1410
1410
|
door_id?: number | undefined;
|
|
1411
1411
|
iana_timezone?: string | undefined;
|
|
1412
1412
|
predefined_time_slots?: {
|
|
1413
|
-
name: string;
|
|
1414
|
-
prefix: number;
|
|
1415
1413
|
check_in_time: string;
|
|
1416
1414
|
check_out_time: string;
|
|
1415
|
+
name: string;
|
|
1416
|
+
prefix: number;
|
|
1417
1417
|
is_24_hour: boolean;
|
|
1418
1418
|
is_biweekly_mode: boolean;
|
|
1419
1419
|
is_one_shot: boolean;
|
|
@@ -1495,8 +1495,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
1495
1495
|
is_quadient_locker?: boolean | undefined;
|
|
1496
1496
|
} | undefined;
|
|
1497
1497
|
ultraloq_metadata?: {
|
|
1498
|
-
device_id: string;
|
|
1499
1498
|
time_zone: string | null;
|
|
1499
|
+
device_id: string;
|
|
1500
1500
|
device_name: string;
|
|
1501
1501
|
device_type: string;
|
|
1502
1502
|
} | undefined;
|