@seamapi/types 1.196.1 → 1.197.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 +1718 -1501
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1859 -1101
- package/dist/devicedb.d.cts +40 -40
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +113 -12
- package/lib/seam/connect/models/access-codes/managed-access-code.js +17 -2
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +87 -12
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-credential-pool.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +10 -10
- package/lib/seam/connect/models/acs/acs-system.d.ts +29 -29
- package/lib/seam/connect/models/acs/acs-user.d.ts +6 -6
- package/lib/seam/connect/models/acs/metadata/latch.d.ts +4 -4
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +6 -6
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +69 -8
- package/lib/seam/connect/models/connected-accounts/connected-account.js +15 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +15 -15
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +30 -30
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
- package/lib/seam/connect/models/devices/device.d.ts +116 -65
- package/lib/seam/connect/models/devices/device.js +16 -8
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +44 -19
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +53 -28
- package/lib/seam/connect/models/events/access-codes.d.ts +306 -306
- package/lib/seam/connect/models/events/acs/common.d.ts +4 -4
- package/lib/seam/connect/models/events/acs/credentials.d.ts +12 -12
- package/lib/seam/connect/models/events/acs/index.d.ts +18 -18
- package/lib/seam/connect/models/events/acs/systems.d.ts +12 -12
- package/lib/seam/connect/models/events/acs/users.d.ts +12 -12
- package/lib/seam/connect/models/events/connected-accounts.d.ts +42 -42
- package/lib/seam/connect/models/events/devices.d.ts +316 -316
- package/lib/seam/connect/models/events/phones.d.ts +6 -6
- package/lib/seam/connect/models/events/seam-event.d.ts +353 -353
- package/lib/seam/connect/models/thermostats/climate-setting-schedule.d.ts +3 -3
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +263 -26
- package/lib/seam/connect/openapi.js +209 -23
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +247 -36
- package/lib/seam/devicedb/models/device-model.d.ts +8 -8
- package/lib/seam/devicedb/models/manufacturer.d.ts +2 -2
- package/lib/seam/devicedb/route-specs.d.ts +30 -30
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +6 -0
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +26 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +23 -2
- package/src/lib/seam/connect/models/devices/device.ts +24 -12
- package/src/lib/seam/connect/openapi.ts +209 -23
- package/src/lib/seam/connect/route-types.ts +377 -92
|
@@ -144,11 +144,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
144
144
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
145
145
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
146
146
|
name: z.ZodOptional<z.ZodString>;
|
|
147
|
-
device_id: z.ZodString;
|
|
148
147
|
created_at: z.ZodString;
|
|
149
148
|
errors: z.ZodAny;
|
|
150
149
|
climate_setting_schedule_id: z.ZodString;
|
|
151
150
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
151
|
+
device_id: z.ZodString;
|
|
152
152
|
schedule_starts_at: z.ZodString;
|
|
153
153
|
schedule_ends_at: z.ZodString;
|
|
154
154
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -160,10 +160,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
160
160
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
161
161
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
-
device_id: string;
|
|
164
163
|
created_at: string;
|
|
165
164
|
climate_setting_schedule_id: string;
|
|
166
165
|
schedule_type: "time_bound";
|
|
166
|
+
device_id: string;
|
|
167
167
|
schedule_starts_at: string;
|
|
168
168
|
schedule_ends_at: string;
|
|
169
169
|
name?: string | undefined;
|
|
@@ -177,10 +177,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
177
177
|
heating_set_point_fahrenheit?: number | undefined;
|
|
178
178
|
manual_override_allowed?: boolean | undefined;
|
|
179
179
|
}, {
|
|
180
|
-
device_id: string;
|
|
181
180
|
created_at: string;
|
|
182
181
|
climate_setting_schedule_id: string;
|
|
183
182
|
schedule_type: "time_bound";
|
|
183
|
+
device_id: string;
|
|
184
184
|
schedule_starts_at: string;
|
|
185
185
|
schedule_ends_at: string;
|
|
186
186
|
name?: string | undefined;
|
|
@@ -240,10 +240,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
240
240
|
} | undefined;
|
|
241
241
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
242
242
|
active_climate_setting_schedule?: {
|
|
243
|
-
device_id: string;
|
|
244
243
|
created_at: string;
|
|
245
244
|
climate_setting_schedule_id: string;
|
|
246
245
|
schedule_type: "time_bound";
|
|
246
|
+
device_id: string;
|
|
247
247
|
schedule_starts_at: string;
|
|
248
248
|
schedule_ends_at: string;
|
|
249
249
|
name?: string | undefined;
|
|
@@ -303,10 +303,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
303
303
|
} | undefined;
|
|
304
304
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
305
305
|
active_climate_setting_schedule?: {
|
|
306
|
-
device_id: string;
|
|
307
306
|
created_at: string;
|
|
308
307
|
climate_setting_schedule_id: string;
|
|
309
308
|
schedule_type: "time_bound";
|
|
309
|
+
device_id: string;
|
|
310
310
|
schedule_starts_at: string;
|
|
311
311
|
schedule_ends_at: string;
|
|
312
312
|
name?: string | undefined;
|
|
@@ -404,11 +404,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
404
404
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
405
405
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
406
406
|
name: z.ZodOptional<z.ZodString>;
|
|
407
|
-
device_id: z.ZodString;
|
|
408
407
|
created_at: z.ZodString;
|
|
409
408
|
errors: z.ZodAny;
|
|
410
409
|
climate_setting_schedule_id: z.ZodString;
|
|
411
410
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
411
|
+
device_id: z.ZodString;
|
|
412
412
|
schedule_starts_at: z.ZodString;
|
|
413
413
|
schedule_ends_at: z.ZodString;
|
|
414
414
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -420,10 +420,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
420
420
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
421
421
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
422
422
|
}, "strip", z.ZodTypeAny, {
|
|
423
|
-
device_id: string;
|
|
424
423
|
created_at: string;
|
|
425
424
|
climate_setting_schedule_id: string;
|
|
426
425
|
schedule_type: "time_bound";
|
|
426
|
+
device_id: string;
|
|
427
427
|
schedule_starts_at: string;
|
|
428
428
|
schedule_ends_at: string;
|
|
429
429
|
name?: string | undefined;
|
|
@@ -437,10 +437,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
437
437
|
heating_set_point_fahrenheit?: number | undefined;
|
|
438
438
|
manual_override_allowed?: boolean | undefined;
|
|
439
439
|
}, {
|
|
440
|
-
device_id: string;
|
|
441
440
|
created_at: string;
|
|
442
441
|
climate_setting_schedule_id: string;
|
|
443
442
|
schedule_type: "time_bound";
|
|
443
|
+
device_id: string;
|
|
444
444
|
schedule_starts_at: string;
|
|
445
445
|
schedule_ends_at: string;
|
|
446
446
|
name?: string | undefined;
|
|
@@ -494,10 +494,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
494
494
|
} | undefined;
|
|
495
495
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
496
496
|
active_climate_setting_schedule?: {
|
|
497
|
-
device_id: string;
|
|
498
497
|
created_at: string;
|
|
499
498
|
climate_setting_schedule_id: string;
|
|
500
499
|
schedule_type: "time_bound";
|
|
500
|
+
device_id: string;
|
|
501
501
|
schedule_starts_at: string;
|
|
502
502
|
schedule_ends_at: string;
|
|
503
503
|
name?: string | undefined;
|
|
@@ -551,10 +551,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
551
551
|
} | undefined;
|
|
552
552
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
553
553
|
active_climate_setting_schedule?: {
|
|
554
|
-
device_id: string;
|
|
555
554
|
created_at: string;
|
|
556
555
|
climate_setting_schedule_id: string;
|
|
557
556
|
schedule_type: "time_bound";
|
|
557
|
+
device_id: string;
|
|
558
558
|
schedule_starts_at: string;
|
|
559
559
|
schedule_ends_at: string;
|
|
560
560
|
name?: string | undefined;
|
|
@@ -645,11 +645,11 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
645
645
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
646
646
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
647
647
|
name: z.ZodOptional<z.ZodString>;
|
|
648
|
-
device_id: z.ZodString;
|
|
649
648
|
created_at: z.ZodString;
|
|
650
649
|
errors: z.ZodAny;
|
|
651
650
|
climate_setting_schedule_id: z.ZodString;
|
|
652
651
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
652
|
+
device_id: z.ZodString;
|
|
653
653
|
schedule_starts_at: z.ZodString;
|
|
654
654
|
schedule_ends_at: z.ZodString;
|
|
655
655
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -661,10 +661,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
661
661
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
662
662
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
663
663
|
}, "strip", z.ZodTypeAny, {
|
|
664
|
-
device_id: string;
|
|
665
664
|
created_at: string;
|
|
666
665
|
climate_setting_schedule_id: string;
|
|
667
666
|
schedule_type: "time_bound";
|
|
667
|
+
device_id: string;
|
|
668
668
|
schedule_starts_at: string;
|
|
669
669
|
schedule_ends_at: string;
|
|
670
670
|
name?: string | undefined;
|
|
@@ -678,10 +678,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
678
678
|
heating_set_point_fahrenheit?: number | undefined;
|
|
679
679
|
manual_override_allowed?: boolean | undefined;
|
|
680
680
|
}, {
|
|
681
|
-
device_id: string;
|
|
682
681
|
created_at: string;
|
|
683
682
|
climate_setting_schedule_id: string;
|
|
684
683
|
schedule_type: "time_bound";
|
|
684
|
+
device_id: string;
|
|
685
685
|
schedule_starts_at: string;
|
|
686
686
|
schedule_ends_at: string;
|
|
687
687
|
name?: string | undefined;
|
|
@@ -735,10 +735,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
735
735
|
} | undefined;
|
|
736
736
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
737
737
|
active_climate_setting_schedule?: {
|
|
738
|
-
device_id: string;
|
|
739
738
|
created_at: string;
|
|
740
739
|
climate_setting_schedule_id: string;
|
|
741
740
|
schedule_type: "time_bound";
|
|
741
|
+
device_id: string;
|
|
742
742
|
schedule_starts_at: string;
|
|
743
743
|
schedule_ends_at: string;
|
|
744
744
|
name?: string | undefined;
|
|
@@ -792,10 +792,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
792
792
|
} | undefined;
|
|
793
793
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
794
794
|
active_climate_setting_schedule?: {
|
|
795
|
-
device_id: string;
|
|
796
795
|
created_at: string;
|
|
797
796
|
climate_setting_schedule_id: string;
|
|
798
797
|
schedule_type: "time_bound";
|
|
798
|
+
device_id: string;
|
|
799
799
|
schedule_starts_at: string;
|
|
800
800
|
schedule_ends_at: string;
|
|
801
801
|
name?: string | undefined;
|
|
@@ -71,11 +71,11 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
71
71
|
is_climate_setting_schedule_active: z.ZodBoolean;
|
|
72
72
|
active_climate_setting_schedule: z.ZodOptional<z.ZodObject<{
|
|
73
73
|
name: z.ZodOptional<z.ZodString>;
|
|
74
|
-
device_id: z.ZodString;
|
|
75
74
|
created_at: z.ZodString;
|
|
76
75
|
errors: z.ZodAny;
|
|
77
76
|
climate_setting_schedule_id: z.ZodString;
|
|
78
77
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
78
|
+
device_id: z.ZodString;
|
|
79
79
|
schedule_starts_at: z.ZodString;
|
|
80
80
|
schedule_ends_at: z.ZodString;
|
|
81
81
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -87,10 +87,10 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
87
87
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
88
88
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
device_id: string;
|
|
91
90
|
created_at: string;
|
|
92
91
|
climate_setting_schedule_id: string;
|
|
93
92
|
schedule_type: "time_bound";
|
|
93
|
+
device_id: string;
|
|
94
94
|
schedule_starts_at: string;
|
|
95
95
|
schedule_ends_at: string;
|
|
96
96
|
name?: string | undefined;
|
|
@@ -104,10 +104,10 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
104
104
|
heating_set_point_fahrenheit?: number | undefined;
|
|
105
105
|
manual_override_allowed?: boolean | undefined;
|
|
106
106
|
}, {
|
|
107
|
-
device_id: string;
|
|
108
107
|
created_at: string;
|
|
109
108
|
climate_setting_schedule_id: string;
|
|
110
109
|
schedule_type: "time_bound";
|
|
110
|
+
device_id: string;
|
|
111
111
|
schedule_starts_at: string;
|
|
112
112
|
schedule_ends_at: string;
|
|
113
113
|
name?: string | undefined;
|
|
@@ -166,10 +166,10 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
166
166
|
heating_set_point_fahrenheit?: number | undefined;
|
|
167
167
|
} | undefined;
|
|
168
168
|
active_climate_setting_schedule?: {
|
|
169
|
-
device_id: string;
|
|
170
169
|
created_at: string;
|
|
171
170
|
climate_setting_schedule_id: string;
|
|
172
171
|
schedule_type: "time_bound";
|
|
172
|
+
device_id: string;
|
|
173
173
|
schedule_starts_at: string;
|
|
174
174
|
schedule_ends_at: string;
|
|
175
175
|
name?: string | undefined;
|
|
@@ -223,10 +223,10 @@ export declare const cooling_thermostat_capability_properties: z.ZodObject<{
|
|
|
223
223
|
heating_set_point_fahrenheit?: number | undefined;
|
|
224
224
|
} | undefined;
|
|
225
225
|
active_climate_setting_schedule?: {
|
|
226
|
-
device_id: string;
|
|
227
226
|
created_at: string;
|
|
228
227
|
climate_setting_schedule_id: string;
|
|
229
228
|
schedule_type: "time_bound";
|
|
229
|
+
device_id: string;
|
|
230
230
|
schedule_starts_at: string;
|
|
231
231
|
schedule_ends_at: string;
|
|
232
232
|
name?: string | undefined;
|
|
@@ -313,11 +313,11 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
313
313
|
is_climate_setting_schedule_active: z.ZodBoolean;
|
|
314
314
|
active_climate_setting_schedule: z.ZodOptional<z.ZodObject<{
|
|
315
315
|
name: z.ZodOptional<z.ZodString>;
|
|
316
|
-
device_id: z.ZodString;
|
|
317
316
|
created_at: z.ZodString;
|
|
318
317
|
errors: z.ZodAny;
|
|
319
318
|
climate_setting_schedule_id: z.ZodString;
|
|
320
319
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
320
|
+
device_id: z.ZodString;
|
|
321
321
|
schedule_starts_at: z.ZodString;
|
|
322
322
|
schedule_ends_at: z.ZodString;
|
|
323
323
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -329,10 +329,10 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
329
329
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
330
330
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
|
-
device_id: string;
|
|
333
332
|
created_at: string;
|
|
334
333
|
climate_setting_schedule_id: string;
|
|
335
334
|
schedule_type: "time_bound";
|
|
335
|
+
device_id: string;
|
|
336
336
|
schedule_starts_at: string;
|
|
337
337
|
schedule_ends_at: string;
|
|
338
338
|
name?: string | undefined;
|
|
@@ -346,10 +346,10 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
346
346
|
heating_set_point_fahrenheit?: number | undefined;
|
|
347
347
|
manual_override_allowed?: boolean | undefined;
|
|
348
348
|
}, {
|
|
349
|
-
device_id: string;
|
|
350
349
|
created_at: string;
|
|
351
350
|
climate_setting_schedule_id: string;
|
|
352
351
|
schedule_type: "time_bound";
|
|
352
|
+
device_id: string;
|
|
353
353
|
schedule_starts_at: string;
|
|
354
354
|
schedule_ends_at: string;
|
|
355
355
|
name?: string | undefined;
|
|
@@ -408,10 +408,10 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
408
408
|
heating_set_point_fahrenheit?: number | undefined;
|
|
409
409
|
} | undefined;
|
|
410
410
|
active_climate_setting_schedule?: {
|
|
411
|
-
device_id: string;
|
|
412
411
|
created_at: string;
|
|
413
412
|
climate_setting_schedule_id: string;
|
|
414
413
|
schedule_type: "time_bound";
|
|
414
|
+
device_id: string;
|
|
415
415
|
schedule_starts_at: string;
|
|
416
416
|
schedule_ends_at: string;
|
|
417
417
|
name?: string | undefined;
|
|
@@ -465,10 +465,10 @@ export declare const heating_thermostat_capability_properties: z.ZodObject<{
|
|
|
465
465
|
heating_set_point_fahrenheit?: number | undefined;
|
|
466
466
|
} | undefined;
|
|
467
467
|
active_climate_setting_schedule?: {
|
|
468
|
-
device_id: string;
|
|
469
468
|
created_at: string;
|
|
470
469
|
climate_setting_schedule_id: string;
|
|
471
470
|
schedule_type: "time_bound";
|
|
471
|
+
device_id: string;
|
|
472
472
|
schedule_starts_at: string;
|
|
473
473
|
schedule_ends_at: string;
|
|
474
474
|
name?: string | undefined;
|
|
@@ -554,11 +554,11 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
554
554
|
is_climate_setting_schedule_active: z.ZodBoolean;
|
|
555
555
|
active_climate_setting_schedule: z.ZodOptional<z.ZodObject<{
|
|
556
556
|
name: z.ZodOptional<z.ZodString>;
|
|
557
|
-
device_id: z.ZodString;
|
|
558
557
|
created_at: z.ZodString;
|
|
559
558
|
errors: z.ZodAny;
|
|
560
559
|
climate_setting_schedule_id: z.ZodString;
|
|
561
560
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
561
|
+
device_id: z.ZodString;
|
|
562
562
|
schedule_starts_at: z.ZodString;
|
|
563
563
|
schedule_ends_at: z.ZodString;
|
|
564
564
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -570,10 +570,10 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
570
570
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
571
571
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
572
572
|
}, "strip", z.ZodTypeAny, {
|
|
573
|
-
device_id: string;
|
|
574
573
|
created_at: string;
|
|
575
574
|
climate_setting_schedule_id: string;
|
|
576
575
|
schedule_type: "time_bound";
|
|
576
|
+
device_id: string;
|
|
577
577
|
schedule_starts_at: string;
|
|
578
578
|
schedule_ends_at: string;
|
|
579
579
|
name?: string | undefined;
|
|
@@ -587,10 +587,10 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
587
587
|
heating_set_point_fahrenheit?: number | undefined;
|
|
588
588
|
manual_override_allowed?: boolean | undefined;
|
|
589
589
|
}, {
|
|
590
|
-
device_id: string;
|
|
591
590
|
created_at: string;
|
|
592
591
|
climate_setting_schedule_id: string;
|
|
593
592
|
schedule_type: "time_bound";
|
|
593
|
+
device_id: string;
|
|
594
594
|
schedule_starts_at: string;
|
|
595
595
|
schedule_ends_at: string;
|
|
596
596
|
name?: string | undefined;
|
|
@@ -662,10 +662,10 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
662
662
|
heating_set_point_fahrenheit?: number | undefined;
|
|
663
663
|
} | undefined;
|
|
664
664
|
active_climate_setting_schedule?: {
|
|
665
|
-
device_id: string;
|
|
666
665
|
created_at: string;
|
|
667
666
|
climate_setting_schedule_id: string;
|
|
668
667
|
schedule_type: "time_bound";
|
|
668
|
+
device_id: string;
|
|
669
669
|
schedule_starts_at: string;
|
|
670
670
|
schedule_ends_at: string;
|
|
671
671
|
name?: string | undefined;
|
|
@@ -725,10 +725,10 @@ export declare const heating_cooling_thermostat_capability_properties: z.ZodObje
|
|
|
725
725
|
heating_set_point_fahrenheit?: number | undefined;
|
|
726
726
|
} | undefined;
|
|
727
727
|
active_climate_setting_schedule?: {
|
|
728
|
-
device_id: string;
|
|
729
728
|
created_at: string;
|
|
730
729
|
climate_setting_schedule_id: string;
|
|
731
730
|
schedule_type: "time_bound";
|
|
731
|
+
device_id: string;
|
|
732
732
|
schedule_starts_at: string;
|
|
733
733
|
schedule_ends_at: string;
|
|
734
734
|
name?: string | undefined;
|
|
@@ -814,11 +814,11 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
814
814
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
815
815
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
816
816
|
name: z.ZodOptional<z.ZodString>;
|
|
817
|
-
device_id: z.ZodString;
|
|
818
817
|
created_at: z.ZodString;
|
|
819
818
|
errors: z.ZodAny;
|
|
820
819
|
climate_setting_schedule_id: z.ZodString;
|
|
821
820
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
821
|
+
device_id: z.ZodString;
|
|
822
822
|
schedule_starts_at: z.ZodString;
|
|
823
823
|
schedule_ends_at: z.ZodString;
|
|
824
824
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -830,10 +830,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
830
830
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
831
831
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
832
832
|
}, "strip", z.ZodTypeAny, {
|
|
833
|
-
device_id: string;
|
|
834
833
|
created_at: string;
|
|
835
834
|
climate_setting_schedule_id: string;
|
|
836
835
|
schedule_type: "time_bound";
|
|
836
|
+
device_id: string;
|
|
837
837
|
schedule_starts_at: string;
|
|
838
838
|
schedule_ends_at: string;
|
|
839
839
|
name?: string | undefined;
|
|
@@ -847,10 +847,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
847
847
|
heating_set_point_fahrenheit?: number | undefined;
|
|
848
848
|
manual_override_allowed?: boolean | undefined;
|
|
849
849
|
}, {
|
|
850
|
-
device_id: string;
|
|
851
850
|
created_at: string;
|
|
852
851
|
climate_setting_schedule_id: string;
|
|
853
852
|
schedule_type: "time_bound";
|
|
853
|
+
device_id: string;
|
|
854
854
|
schedule_starts_at: string;
|
|
855
855
|
schedule_ends_at: string;
|
|
856
856
|
name?: string | undefined;
|
|
@@ -910,10 +910,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
910
910
|
} | undefined;
|
|
911
911
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
912
912
|
active_climate_setting_schedule?: {
|
|
913
|
-
device_id: string;
|
|
914
913
|
created_at: string;
|
|
915
914
|
climate_setting_schedule_id: string;
|
|
916
915
|
schedule_type: "time_bound";
|
|
916
|
+
device_id: string;
|
|
917
917
|
schedule_starts_at: string;
|
|
918
918
|
schedule_ends_at: string;
|
|
919
919
|
name?: string | undefined;
|
|
@@ -973,10 +973,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
973
973
|
} | undefined;
|
|
974
974
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
975
975
|
active_climate_setting_schedule?: {
|
|
976
|
-
device_id: string;
|
|
977
976
|
created_at: string;
|
|
978
977
|
climate_setting_schedule_id: string;
|
|
979
978
|
schedule_type: "time_bound";
|
|
979
|
+
device_id: string;
|
|
980
980
|
schedule_starts_at: string;
|
|
981
981
|
schedule_ends_at: string;
|
|
982
982
|
name?: string | undefined;
|
|
@@ -1074,11 +1074,11 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1074
1074
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
1075
1075
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1076
1076
|
name: z.ZodOptional<z.ZodString>;
|
|
1077
|
-
device_id: z.ZodString;
|
|
1078
1077
|
created_at: z.ZodString;
|
|
1079
1078
|
errors: z.ZodAny;
|
|
1080
1079
|
climate_setting_schedule_id: z.ZodString;
|
|
1081
1080
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1081
|
+
device_id: z.ZodString;
|
|
1082
1082
|
schedule_starts_at: z.ZodString;
|
|
1083
1083
|
schedule_ends_at: z.ZodString;
|
|
1084
1084
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1090,10 +1090,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1090
1090
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1091
1091
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1092
1092
|
}, "strip", z.ZodTypeAny, {
|
|
1093
|
-
device_id: string;
|
|
1094
1093
|
created_at: string;
|
|
1095
1094
|
climate_setting_schedule_id: string;
|
|
1096
1095
|
schedule_type: "time_bound";
|
|
1096
|
+
device_id: string;
|
|
1097
1097
|
schedule_starts_at: string;
|
|
1098
1098
|
schedule_ends_at: string;
|
|
1099
1099
|
name?: string | undefined;
|
|
@@ -1107,10 +1107,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1107
1107
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1108
1108
|
manual_override_allowed?: boolean | undefined;
|
|
1109
1109
|
}, {
|
|
1110
|
-
device_id: string;
|
|
1111
1110
|
created_at: string;
|
|
1112
1111
|
climate_setting_schedule_id: string;
|
|
1113
1112
|
schedule_type: "time_bound";
|
|
1113
|
+
device_id: string;
|
|
1114
1114
|
schedule_starts_at: string;
|
|
1115
1115
|
schedule_ends_at: string;
|
|
1116
1116
|
name?: string | undefined;
|
|
@@ -1164,10 +1164,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1164
1164
|
} | undefined;
|
|
1165
1165
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1166
1166
|
active_climate_setting_schedule?: {
|
|
1167
|
-
device_id: string;
|
|
1168
1167
|
created_at: string;
|
|
1169
1168
|
climate_setting_schedule_id: string;
|
|
1170
1169
|
schedule_type: "time_bound";
|
|
1170
|
+
device_id: string;
|
|
1171
1171
|
schedule_starts_at: string;
|
|
1172
1172
|
schedule_ends_at: string;
|
|
1173
1173
|
name?: string | undefined;
|
|
@@ -1221,10 +1221,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1221
1221
|
} | undefined;
|
|
1222
1222
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1223
1223
|
active_climate_setting_schedule?: {
|
|
1224
|
-
device_id: string;
|
|
1225
1224
|
created_at: string;
|
|
1226
1225
|
climate_setting_schedule_id: string;
|
|
1227
1226
|
schedule_type: "time_bound";
|
|
1227
|
+
device_id: string;
|
|
1228
1228
|
schedule_starts_at: string;
|
|
1229
1229
|
schedule_ends_at: string;
|
|
1230
1230
|
name?: string | undefined;
|
|
@@ -1315,11 +1315,11 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1315
1315
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
1316
1316
|
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1317
1317
|
name: z.ZodOptional<z.ZodString>;
|
|
1318
|
-
device_id: z.ZodString;
|
|
1319
1318
|
created_at: z.ZodString;
|
|
1320
1319
|
errors: z.ZodAny;
|
|
1321
1320
|
climate_setting_schedule_id: z.ZodString;
|
|
1322
1321
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1322
|
+
device_id: z.ZodString;
|
|
1323
1323
|
schedule_starts_at: z.ZodString;
|
|
1324
1324
|
schedule_ends_at: z.ZodString;
|
|
1325
1325
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1331,10 +1331,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1331
1331
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1332
1332
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1333
1333
|
}, "strip", z.ZodTypeAny, {
|
|
1334
|
-
device_id: string;
|
|
1335
1334
|
created_at: string;
|
|
1336
1335
|
climate_setting_schedule_id: string;
|
|
1337
1336
|
schedule_type: "time_bound";
|
|
1337
|
+
device_id: string;
|
|
1338
1338
|
schedule_starts_at: string;
|
|
1339
1339
|
schedule_ends_at: string;
|
|
1340
1340
|
name?: string | undefined;
|
|
@@ -1348,10 +1348,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1348
1348
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1349
1349
|
manual_override_allowed?: boolean | undefined;
|
|
1350
1350
|
}, {
|
|
1351
|
-
device_id: string;
|
|
1352
1351
|
created_at: string;
|
|
1353
1352
|
climate_setting_schedule_id: string;
|
|
1354
1353
|
schedule_type: "time_bound";
|
|
1354
|
+
device_id: string;
|
|
1355
1355
|
schedule_starts_at: string;
|
|
1356
1356
|
schedule_ends_at: string;
|
|
1357
1357
|
name?: string | undefined;
|
|
@@ -1405,10 +1405,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1405
1405
|
} | undefined;
|
|
1406
1406
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1407
1407
|
active_climate_setting_schedule?: {
|
|
1408
|
-
device_id: string;
|
|
1409
1408
|
created_at: string;
|
|
1410
1409
|
climate_setting_schedule_id: string;
|
|
1411
1410
|
schedule_type: "time_bound";
|
|
1411
|
+
device_id: string;
|
|
1412
1412
|
schedule_starts_at: string;
|
|
1413
1413
|
schedule_ends_at: string;
|
|
1414
1414
|
name?: string | undefined;
|
|
@@ -1462,10 +1462,10 @@ export declare const thermostat_capability_properties: z.ZodUnion<[z.ZodObject<{
|
|
|
1462
1462
|
} | undefined;
|
|
1463
1463
|
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1464
1464
|
active_climate_setting_schedule?: {
|
|
1465
|
-
device_id: string;
|
|
1466
1465
|
created_at: string;
|
|
1467
1466
|
climate_setting_schedule_id: string;
|
|
1468
1467
|
schedule_type: "time_bound";
|
|
1468
|
+
device_id: string;
|
|
1469
1469
|
schedule_starts_at: string;
|
|
1470
1470
|
schedule_ends_at: string;
|
|
1471
1471
|
name?: string | undefined;
|
|
@@ -187,11 +187,11 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
187
187
|
device_name: z.ZodString;
|
|
188
188
|
door_name: z.ZodString;
|
|
189
189
|
}, "strip", z.ZodTypeAny, {
|
|
190
|
-
door_name: string;
|
|
191
190
|
device_name: string;
|
|
192
|
-
}, {
|
|
193
191
|
door_name: string;
|
|
192
|
+
}, {
|
|
194
193
|
device_name: string;
|
|
194
|
+
door_name: string;
|
|
195
195
|
}>>;
|
|
196
196
|
brivo_metadata: z.ZodOptional<z.ZodObject<{
|
|
197
197
|
device_name: z.ZodString;
|
|
@@ -550,9 +550,9 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
550
550
|
dormakaba_oracode_user_level_id: string;
|
|
551
551
|
}>, "many">>;
|
|
552
552
|
}, "strip", z.ZodTypeAny, {
|
|
553
|
-
door_name: string;
|
|
554
553
|
site_id: number;
|
|
555
554
|
site_name: string;
|
|
555
|
+
door_name: string;
|
|
556
556
|
door_id: number;
|
|
557
557
|
door_is_wireless: boolean;
|
|
558
558
|
device_id?: number | undefined;
|
|
@@ -570,9 +570,9 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
570
570
|
dormakaba_oracode_user_level_id: string;
|
|
571
571
|
}[] | undefined;
|
|
572
572
|
}, {
|
|
573
|
-
door_name: string;
|
|
574
573
|
site_id: number;
|
|
575
574
|
site_name: string;
|
|
575
|
+
door_name: string;
|
|
576
576
|
door_id: number;
|
|
577
577
|
door_is_wireless: boolean;
|
|
578
578
|
device_id?: number | undefined;
|
|
@@ -700,8 +700,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
700
700
|
model?: string | undefined;
|
|
701
701
|
} | undefined;
|
|
702
702
|
genie_metadata?: {
|
|
703
|
-
door_name: string;
|
|
704
703
|
device_name: string;
|
|
704
|
+
door_name: string;
|
|
705
705
|
} | undefined;
|
|
706
706
|
brivo_metadata?: {
|
|
707
707
|
device_name: string;
|
|
@@ -794,9 +794,9 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
794
794
|
device_label: string;
|
|
795
795
|
} | undefined;
|
|
796
796
|
dormakaba_oracode_metadata?: {
|
|
797
|
-
door_name: string;
|
|
798
797
|
site_id: number;
|
|
799
798
|
site_name: string;
|
|
799
|
+
door_name: string;
|
|
800
800
|
door_id: number;
|
|
801
801
|
door_is_wireless: boolean;
|
|
802
802
|
device_id?: number | undefined;
|
|
@@ -890,8 +890,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
890
890
|
model?: string | undefined;
|
|
891
891
|
} | undefined;
|
|
892
892
|
genie_metadata?: {
|
|
893
|
-
door_name: string;
|
|
894
893
|
device_name: string;
|
|
894
|
+
door_name: string;
|
|
895
895
|
} | undefined;
|
|
896
896
|
brivo_metadata?: {
|
|
897
897
|
device_name: string;
|
|
@@ -984,9 +984,9 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
984
984
|
device_label: string;
|
|
985
985
|
} | undefined;
|
|
986
986
|
dormakaba_oracode_metadata?: {
|
|
987
|
-
door_name: string;
|
|
988
987
|
site_id: number;
|
|
989
988
|
site_name: string;
|
|
989
|
+
door_name: string;
|
|
990
990
|
door_id: number;
|
|
991
991
|
door_is_wireless: boolean;
|
|
992
992
|
device_id?: number | undefined;
|
|
@@ -62,12 +62,12 @@ export declare const device_provider: z.ZodObject<{
|
|
|
62
62
|
}, "strip", z.ZodTypeAny, {
|
|
63
63
|
display_name: string;
|
|
64
64
|
image_url: string;
|
|
65
|
-
device_provider_name: "linear" | "
|
|
65
|
+
device_provider_name: "linear" | "doorking" | "akuvox" | "august" | "avigilon_alta" | "brivo" | "butterflymx" | "schlage" | "smartthings" | "yale" | "genie" | "salto" | "lockly" | "ttlock" | "noiseaware" | "nuki" | "seam_relay_admin" | "igloo" | "kwikset" | "minut" | "my_2n" | "controlbyweb" | "nest" | "igloohome" | "ecobee" | "hubitat" | "four_suites" | "dormakaba_oracode" | "pti" | "wyze" | "seam_passport" | "visionline" | "assa_abloy_credential_service" | "seam_bridge" | "tedee" | "honeywell_resideo" | "latch";
|
|
66
66
|
provider_categories: ("stable" | "consumer_smartlocks" | "thermostats" | "noise_sensors" | "access_control_systems" | "internal_beta")[];
|
|
67
67
|
}, {
|
|
68
68
|
display_name: string;
|
|
69
69
|
image_url: string;
|
|
70
|
-
device_provider_name: "linear" | "
|
|
70
|
+
device_provider_name: "linear" | "doorking" | "akuvox" | "august" | "avigilon_alta" | "brivo" | "butterflymx" | "schlage" | "smartthings" | "yale" | "genie" | "salto" | "lockly" | "ttlock" | "noiseaware" | "nuki" | "seam_relay_admin" | "igloo" | "kwikset" | "minut" | "my_2n" | "controlbyweb" | "nest" | "igloohome" | "ecobee" | "hubitat" | "four_suites" | "dormakaba_oracode" | "pti" | "wyze" | "seam_passport" | "visionline" | "assa_abloy_credential_service" | "seam_bridge" | "tedee" | "honeywell_resideo" | "latch";
|
|
71
71
|
provider_categories: ("stable" | "consumer_smartlocks" | "thermostats" | "noise_sensors" | "access_control_systems" | "internal_beta")[];
|
|
72
72
|
}>;
|
|
73
73
|
export type DeviceProvider = z.infer<typeof device_provider>;
|