@seamapi/types 1.59.1 → 1.60.1
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 +78 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +338 -132
- package/lib/seam/connect/openapi.d.ts +222 -132
- package/lib/seam/connect/openapi.js +77 -33
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +116 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -1
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +15 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +33 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +3 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +76 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +15 -8
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +93 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +81 -33
- package/src/lib/seam/connect/route-types.ts +116 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -1
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -0
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +18 -10
|
@@ -1827,6 +1827,12 @@ export interface Routes {
|
|
|
1827
1827
|
prefix: number;
|
|
1828
1828
|
check_in_time: string;
|
|
1829
1829
|
check_out_time: string;
|
|
1830
|
+
is_24_hour: boolean;
|
|
1831
|
+
is_biweekly_mode: boolean;
|
|
1832
|
+
is_one_shot: boolean;
|
|
1833
|
+
is_master: boolean;
|
|
1834
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
1835
|
+
dormakaba_oracode_user_level_id: string;
|
|
1830
1836
|
}> | undefined;
|
|
1831
1837
|
} | undefined;
|
|
1832
1838
|
wyze_metadata?: {
|
|
@@ -1897,6 +1903,8 @@ export interface Routes {
|
|
|
1897
1903
|
schedule_starts_at: string;
|
|
1898
1904
|
schedule_ends_at: string;
|
|
1899
1905
|
created_at: string;
|
|
1906
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
1907
|
+
errors?: any;
|
|
1900
1908
|
automatic_heating_enabled?: boolean | undefined;
|
|
1901
1909
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1902
1910
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -1959,6 +1967,8 @@ export interface Routes {
|
|
|
1959
1967
|
schedule_starts_at: string;
|
|
1960
1968
|
schedule_ends_at: string;
|
|
1961
1969
|
created_at: string;
|
|
1970
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
1971
|
+
errors?: any;
|
|
1962
1972
|
automatic_heating_enabled?: boolean | undefined;
|
|
1963
1973
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1964
1974
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2015,6 +2025,8 @@ export interface Routes {
|
|
|
2015
2025
|
schedule_starts_at: string;
|
|
2016
2026
|
schedule_ends_at: string;
|
|
2017
2027
|
created_at: string;
|
|
2028
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2029
|
+
errors?: any;
|
|
2018
2030
|
automatic_heating_enabled?: boolean | undefined;
|
|
2019
2031
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2020
2032
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2280,6 +2292,12 @@ export interface Routes {
|
|
|
2280
2292
|
prefix: number;
|
|
2281
2293
|
check_in_time: string;
|
|
2282
2294
|
check_out_time: string;
|
|
2295
|
+
is_24_hour: boolean;
|
|
2296
|
+
is_biweekly_mode: boolean;
|
|
2297
|
+
is_one_shot: boolean;
|
|
2298
|
+
is_master: boolean;
|
|
2299
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
2300
|
+
dormakaba_oracode_user_level_id: string;
|
|
2283
2301
|
}> | undefined;
|
|
2284
2302
|
} | undefined;
|
|
2285
2303
|
wyze_metadata?: {
|
|
@@ -2350,6 +2368,8 @@ export interface Routes {
|
|
|
2350
2368
|
schedule_starts_at: string;
|
|
2351
2369
|
schedule_ends_at: string;
|
|
2352
2370
|
created_at: string;
|
|
2371
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2372
|
+
errors?: any;
|
|
2353
2373
|
automatic_heating_enabled?: boolean | undefined;
|
|
2354
2374
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2355
2375
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2412,6 +2432,8 @@ export interface Routes {
|
|
|
2412
2432
|
schedule_starts_at: string;
|
|
2413
2433
|
schedule_ends_at: string;
|
|
2414
2434
|
created_at: string;
|
|
2435
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2436
|
+
errors?: any;
|
|
2415
2437
|
automatic_heating_enabled?: boolean | undefined;
|
|
2416
2438
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2417
2439
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2468,6 +2490,8 @@ export interface Routes {
|
|
|
2468
2490
|
schedule_starts_at: string;
|
|
2469
2491
|
schedule_ends_at: string;
|
|
2470
2492
|
created_at: string;
|
|
2493
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2494
|
+
errors?: any;
|
|
2471
2495
|
automatic_heating_enabled?: boolean | undefined;
|
|
2472
2496
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2473
2497
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3012,6 +3036,12 @@ export interface Routes {
|
|
|
3012
3036
|
prefix: number;
|
|
3013
3037
|
check_in_time: string;
|
|
3014
3038
|
check_out_time: string;
|
|
3039
|
+
is_24_hour: boolean;
|
|
3040
|
+
is_biweekly_mode: boolean;
|
|
3041
|
+
is_one_shot: boolean;
|
|
3042
|
+
is_master: boolean;
|
|
3043
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
3044
|
+
dormakaba_oracode_user_level_id: string;
|
|
3015
3045
|
}> | undefined;
|
|
3016
3046
|
} | undefined;
|
|
3017
3047
|
wyze_metadata?: {
|
|
@@ -3082,6 +3112,8 @@ export interface Routes {
|
|
|
3082
3112
|
schedule_starts_at: string;
|
|
3083
3113
|
schedule_ends_at: string;
|
|
3084
3114
|
created_at: string;
|
|
3115
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3116
|
+
errors?: any;
|
|
3085
3117
|
automatic_heating_enabled?: boolean | undefined;
|
|
3086
3118
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3087
3119
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3144,6 +3176,8 @@ export interface Routes {
|
|
|
3144
3176
|
schedule_starts_at: string;
|
|
3145
3177
|
schedule_ends_at: string;
|
|
3146
3178
|
created_at: string;
|
|
3179
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3180
|
+
errors?: any;
|
|
3147
3181
|
automatic_heating_enabled?: boolean | undefined;
|
|
3148
3182
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3149
3183
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3200,6 +3234,8 @@ export interface Routes {
|
|
|
3200
3234
|
schedule_starts_at: string;
|
|
3201
3235
|
schedule_ends_at: string;
|
|
3202
3236
|
created_at: string;
|
|
3237
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3238
|
+
errors?: any;
|
|
3203
3239
|
automatic_heating_enabled?: boolean | undefined;
|
|
3204
3240
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3205
3241
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3443,6 +3479,12 @@ export interface Routes {
|
|
|
3443
3479
|
prefix: number;
|
|
3444
3480
|
check_in_time: string;
|
|
3445
3481
|
check_out_time: string;
|
|
3482
|
+
is_24_hour: boolean;
|
|
3483
|
+
is_biweekly_mode: boolean;
|
|
3484
|
+
is_one_shot: boolean;
|
|
3485
|
+
is_master: boolean;
|
|
3486
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
3487
|
+
dormakaba_oracode_user_level_id: string;
|
|
3446
3488
|
}> | undefined;
|
|
3447
3489
|
} | undefined;
|
|
3448
3490
|
wyze_metadata?: {
|
|
@@ -3513,6 +3555,8 @@ export interface Routes {
|
|
|
3513
3555
|
schedule_starts_at: string;
|
|
3514
3556
|
schedule_ends_at: string;
|
|
3515
3557
|
created_at: string;
|
|
3558
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3559
|
+
errors?: any;
|
|
3516
3560
|
automatic_heating_enabled?: boolean | undefined;
|
|
3517
3561
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3518
3562
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3575,6 +3619,8 @@ export interface Routes {
|
|
|
3575
3619
|
schedule_starts_at: string;
|
|
3576
3620
|
schedule_ends_at: string;
|
|
3577
3621
|
created_at: string;
|
|
3622
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3623
|
+
errors?: any;
|
|
3578
3624
|
automatic_heating_enabled?: boolean | undefined;
|
|
3579
3625
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3580
3626
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3631,6 +3677,8 @@ export interface Routes {
|
|
|
3631
3677
|
schedule_starts_at: string;
|
|
3632
3678
|
schedule_ends_at: string;
|
|
3633
3679
|
created_at: string;
|
|
3680
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3681
|
+
errors?: any;
|
|
3634
3682
|
automatic_heating_enabled?: boolean | undefined;
|
|
3635
3683
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3636
3684
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3896,6 +3944,12 @@ export interface Routes {
|
|
|
3896
3944
|
prefix: number;
|
|
3897
3945
|
check_in_time: string;
|
|
3898
3946
|
check_out_time: string;
|
|
3947
|
+
is_24_hour: boolean;
|
|
3948
|
+
is_biweekly_mode: boolean;
|
|
3949
|
+
is_one_shot: boolean;
|
|
3950
|
+
is_master: boolean;
|
|
3951
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
3952
|
+
dormakaba_oracode_user_level_id: string;
|
|
3899
3953
|
}> | undefined;
|
|
3900
3954
|
} | undefined;
|
|
3901
3955
|
wyze_metadata?: {
|
|
@@ -3966,6 +4020,8 @@ export interface Routes {
|
|
|
3966
4020
|
schedule_starts_at: string;
|
|
3967
4021
|
schedule_ends_at: string;
|
|
3968
4022
|
created_at: string;
|
|
4023
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4024
|
+
errors?: any;
|
|
3969
4025
|
automatic_heating_enabled?: boolean | undefined;
|
|
3970
4026
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3971
4027
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4028,6 +4084,8 @@ export interface Routes {
|
|
|
4028
4084
|
schedule_starts_at: string;
|
|
4029
4085
|
schedule_ends_at: string;
|
|
4030
4086
|
created_at: string;
|
|
4087
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4088
|
+
errors?: any;
|
|
4031
4089
|
automatic_heating_enabled?: boolean | undefined;
|
|
4032
4090
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4033
4091
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4084,6 +4142,8 @@ export interface Routes {
|
|
|
4084
4142
|
schedule_starts_at: string;
|
|
4085
4143
|
schedule_ends_at: string;
|
|
4086
4144
|
created_at: string;
|
|
4145
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4146
|
+
errors?: any;
|
|
4087
4147
|
automatic_heating_enabled?: boolean | undefined;
|
|
4088
4148
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4089
4149
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4327,6 +4387,12 @@ export interface Routes {
|
|
|
4327
4387
|
prefix: number;
|
|
4328
4388
|
check_in_time: string;
|
|
4329
4389
|
check_out_time: string;
|
|
4390
|
+
is_24_hour: boolean;
|
|
4391
|
+
is_biweekly_mode: boolean;
|
|
4392
|
+
is_one_shot: boolean;
|
|
4393
|
+
is_master: boolean;
|
|
4394
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
4395
|
+
dormakaba_oracode_user_level_id: string;
|
|
4330
4396
|
}> | undefined;
|
|
4331
4397
|
} | undefined;
|
|
4332
4398
|
wyze_metadata?: {
|
|
@@ -4397,6 +4463,8 @@ export interface Routes {
|
|
|
4397
4463
|
schedule_starts_at: string;
|
|
4398
4464
|
schedule_ends_at: string;
|
|
4399
4465
|
created_at: string;
|
|
4466
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4467
|
+
errors?: any;
|
|
4400
4468
|
automatic_heating_enabled?: boolean | undefined;
|
|
4401
4469
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4402
4470
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4459,6 +4527,8 @@ export interface Routes {
|
|
|
4459
4527
|
schedule_starts_at: string;
|
|
4460
4528
|
schedule_ends_at: string;
|
|
4461
4529
|
created_at: string;
|
|
4530
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4531
|
+
errors?: any;
|
|
4462
4532
|
automatic_heating_enabled?: boolean | undefined;
|
|
4463
4533
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4464
4534
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4515,6 +4585,8 @@ export interface Routes {
|
|
|
4515
4585
|
schedule_starts_at: string;
|
|
4516
4586
|
schedule_ends_at: string;
|
|
4517
4587
|
created_at: string;
|
|
4588
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4589
|
+
errors?: any;
|
|
4518
4590
|
automatic_heating_enabled?: boolean | undefined;
|
|
4519
4591
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4520
4592
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4837,6 +4909,8 @@ export interface Routes {
|
|
|
4837
4909
|
schedule_starts_at: string;
|
|
4838
4910
|
schedule_ends_at: string;
|
|
4839
4911
|
created_at: string;
|
|
4912
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4913
|
+
errors?: any;
|
|
4840
4914
|
automatic_heating_enabled?: boolean | undefined;
|
|
4841
4915
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4842
4916
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4878,6 +4952,8 @@ export interface Routes {
|
|
|
4878
4952
|
schedule_starts_at: string;
|
|
4879
4953
|
schedule_ends_at: string;
|
|
4880
4954
|
created_at: string;
|
|
4955
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4956
|
+
errors?: any;
|
|
4881
4957
|
automatic_heating_enabled?: boolean | undefined;
|
|
4882
4958
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4883
4959
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4908,6 +4984,8 @@ export interface Routes {
|
|
|
4908
4984
|
schedule_starts_at: string;
|
|
4909
4985
|
schedule_ends_at: string;
|
|
4910
4986
|
created_at: string;
|
|
4987
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4988
|
+
errors?: any;
|
|
4911
4989
|
automatic_heating_enabled?: boolean | undefined;
|
|
4912
4990
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4913
4991
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4949,6 +5027,8 @@ export interface Routes {
|
|
|
4949
5027
|
schedule_starts_at: string;
|
|
4950
5028
|
schedule_ends_at: string;
|
|
4951
5029
|
created_at: string;
|
|
5030
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5031
|
+
errors?: any;
|
|
4952
5032
|
automatic_heating_enabled?: boolean | undefined;
|
|
4953
5033
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4954
5034
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5188,6 +5268,12 @@ export interface Routes {
|
|
|
5188
5268
|
prefix: number;
|
|
5189
5269
|
check_in_time: string;
|
|
5190
5270
|
check_out_time: string;
|
|
5271
|
+
is_24_hour: boolean;
|
|
5272
|
+
is_biweekly_mode: boolean;
|
|
5273
|
+
is_one_shot: boolean;
|
|
5274
|
+
is_master: boolean;
|
|
5275
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
5276
|
+
dormakaba_oracode_user_level_id: string;
|
|
5191
5277
|
}> | undefined;
|
|
5192
5278
|
} | undefined;
|
|
5193
5279
|
wyze_metadata?: {
|
|
@@ -5258,6 +5344,8 @@ export interface Routes {
|
|
|
5258
5344
|
schedule_starts_at: string;
|
|
5259
5345
|
schedule_ends_at: string;
|
|
5260
5346
|
created_at: string;
|
|
5347
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5348
|
+
errors?: any;
|
|
5261
5349
|
automatic_heating_enabled?: boolean | undefined;
|
|
5262
5350
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5263
5351
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5320,6 +5408,8 @@ export interface Routes {
|
|
|
5320
5408
|
schedule_starts_at: string;
|
|
5321
5409
|
schedule_ends_at: string;
|
|
5322
5410
|
created_at: string;
|
|
5411
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5412
|
+
errors?: any;
|
|
5323
5413
|
automatic_heating_enabled?: boolean | undefined;
|
|
5324
5414
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5325
5415
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5376,6 +5466,8 @@ export interface Routes {
|
|
|
5376
5466
|
schedule_starts_at: string;
|
|
5377
5467
|
schedule_ends_at: string;
|
|
5378
5468
|
created_at: string;
|
|
5469
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5470
|
+
errors?: any;
|
|
5379
5471
|
automatic_heating_enabled?: boolean | undefined;
|
|
5380
5472
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5381
5473
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5671,6 +5763,12 @@ export interface Routes {
|
|
|
5671
5763
|
prefix: number;
|
|
5672
5764
|
check_in_time: string;
|
|
5673
5765
|
check_out_time: string;
|
|
5766
|
+
is_24_hour: boolean;
|
|
5767
|
+
is_biweekly_mode: boolean;
|
|
5768
|
+
is_one_shot: boolean;
|
|
5769
|
+
is_master: boolean;
|
|
5770
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
5771
|
+
dormakaba_oracode_user_level_id: string;
|
|
5674
5772
|
}> | undefined;
|
|
5675
5773
|
} | undefined;
|
|
5676
5774
|
wyze_metadata?: {
|
|
@@ -5741,6 +5839,8 @@ export interface Routes {
|
|
|
5741
5839
|
schedule_starts_at: string;
|
|
5742
5840
|
schedule_ends_at: string;
|
|
5743
5841
|
created_at: string;
|
|
5842
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5843
|
+
errors?: any;
|
|
5744
5844
|
automatic_heating_enabled?: boolean | undefined;
|
|
5745
5845
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5746
5846
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5803,6 +5903,8 @@ export interface Routes {
|
|
|
5803
5903
|
schedule_starts_at: string;
|
|
5804
5904
|
schedule_ends_at: string;
|
|
5805
5905
|
created_at: string;
|
|
5906
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5907
|
+
errors?: any;
|
|
5806
5908
|
automatic_heating_enabled?: boolean | undefined;
|
|
5807
5909
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5808
5910
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5859,6 +5961,8 @@ export interface Routes {
|
|
|
5859
5961
|
schedule_starts_at: string;
|
|
5860
5962
|
schedule_ends_at: string;
|
|
5861
5963
|
created_at: string;
|
|
5964
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5965
|
+
errors?: any;
|
|
5862
5966
|
automatic_heating_enabled?: boolean | undefined;
|
|
5863
5967
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5864
5968
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6251,6 +6355,12 @@ export interface Routes {
|
|
|
6251
6355
|
prefix: number;
|
|
6252
6356
|
check_in_time: string;
|
|
6253
6357
|
check_out_time: string;
|
|
6358
|
+
is_24_hour: boolean;
|
|
6359
|
+
is_biweekly_mode: boolean;
|
|
6360
|
+
is_one_shot: boolean;
|
|
6361
|
+
is_master: boolean;
|
|
6362
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
6363
|
+
dormakaba_oracode_user_level_id: string;
|
|
6254
6364
|
}> | undefined;
|
|
6255
6365
|
} | undefined;
|
|
6256
6366
|
wyze_metadata?: {
|
|
@@ -6321,6 +6431,8 @@ export interface Routes {
|
|
|
6321
6431
|
schedule_starts_at: string;
|
|
6322
6432
|
schedule_ends_at: string;
|
|
6323
6433
|
created_at: string;
|
|
6434
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6435
|
+
errors?: any;
|
|
6324
6436
|
automatic_heating_enabled?: boolean | undefined;
|
|
6325
6437
|
automatic_cooling_enabled?: boolean | undefined;
|
|
6326
6438
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6383,6 +6495,8 @@ export interface Routes {
|
|
|
6383
6495
|
schedule_starts_at: string;
|
|
6384
6496
|
schedule_ends_at: string;
|
|
6385
6497
|
created_at: string;
|
|
6498
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6499
|
+
errors?: any;
|
|
6386
6500
|
automatic_heating_enabled?: boolean | undefined;
|
|
6387
6501
|
automatic_cooling_enabled?: boolean | undefined;
|
|
6388
6502
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6439,6 +6553,8 @@ export interface Routes {
|
|
|
6439
6553
|
schedule_starts_at: string;
|
|
6440
6554
|
schedule_ends_at: string;
|
|
6441
6555
|
created_at: string;
|
|
6556
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6557
|
+
errors?: any;
|
|
6442
6558
|
automatic_heating_enabled?: boolean | undefined;
|
|
6443
6559
|
automatic_cooling_enabled?: boolean | undefined;
|
|
6444
6560
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,
|
|
1
|
+
{"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,oEAAoE;AACpE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,eAAe;IACf,qCAAqC;IACrC,mBAAmB;IACnB,oCAAoC;CACrC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3C,CAAC,CAAA"}
|
|
@@ -149,6 +149,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
149
149
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
150
150
|
schedule_starts_at: z.ZodString;
|
|
151
151
|
schedule_ends_at: z.ZodString;
|
|
152
|
+
errors: z.ZodAny;
|
|
152
153
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
153
154
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
154
155
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -165,6 +166,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
165
166
|
schedule_starts_at: string;
|
|
166
167
|
schedule_ends_at: string;
|
|
167
168
|
name?: string | undefined;
|
|
169
|
+
errors?: any;
|
|
168
170
|
automatic_heating_enabled?: boolean | undefined;
|
|
169
171
|
automatic_cooling_enabled?: boolean | undefined;
|
|
170
172
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -181,6 +183,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
181
183
|
schedule_starts_at: string;
|
|
182
184
|
schedule_ends_at: string;
|
|
183
185
|
name?: string | undefined;
|
|
186
|
+
errors?: any;
|
|
184
187
|
automatic_heating_enabled?: boolean | undefined;
|
|
185
188
|
automatic_cooling_enabled?: boolean | undefined;
|
|
186
189
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -243,6 +246,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
243
246
|
schedule_starts_at: string;
|
|
244
247
|
schedule_ends_at: string;
|
|
245
248
|
name?: string | undefined;
|
|
249
|
+
errors?: any;
|
|
246
250
|
automatic_heating_enabled?: boolean | undefined;
|
|
247
251
|
automatic_cooling_enabled?: boolean | undefined;
|
|
248
252
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -305,6 +309,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
305
309
|
schedule_starts_at: string;
|
|
306
310
|
schedule_ends_at: string;
|
|
307
311
|
name?: string | undefined;
|
|
312
|
+
errors?: any;
|
|
308
313
|
automatic_heating_enabled?: boolean | undefined;
|
|
309
314
|
automatic_cooling_enabled?: boolean | undefined;
|
|
310
315
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -402,6 +407,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
402
407
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
403
408
|
schedule_starts_at: z.ZodString;
|
|
404
409
|
schedule_ends_at: z.ZodString;
|
|
410
|
+
errors: z.ZodAny;
|
|
405
411
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
406
412
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
407
413
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -418,6 +424,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
418
424
|
schedule_starts_at: string;
|
|
419
425
|
schedule_ends_at: string;
|
|
420
426
|
name?: string | undefined;
|
|
427
|
+
errors?: any;
|
|
421
428
|
automatic_heating_enabled?: boolean | undefined;
|
|
422
429
|
automatic_cooling_enabled?: boolean | undefined;
|
|
423
430
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -434,6 +441,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
434
441
|
schedule_starts_at: string;
|
|
435
442
|
schedule_ends_at: string;
|
|
436
443
|
name?: string | undefined;
|
|
444
|
+
errors?: any;
|
|
437
445
|
automatic_heating_enabled?: boolean | undefined;
|
|
438
446
|
automatic_cooling_enabled?: boolean | undefined;
|
|
439
447
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -490,6 +498,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
490
498
|
schedule_starts_at: string;
|
|
491
499
|
schedule_ends_at: string;
|
|
492
500
|
name?: string | undefined;
|
|
501
|
+
errors?: any;
|
|
493
502
|
automatic_heating_enabled?: boolean | undefined;
|
|
494
503
|
automatic_cooling_enabled?: boolean | undefined;
|
|
495
504
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -546,6 +555,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
546
555
|
schedule_starts_at: string;
|
|
547
556
|
schedule_ends_at: string;
|
|
548
557
|
name?: string | undefined;
|
|
558
|
+
errors?: any;
|
|
549
559
|
automatic_heating_enabled?: boolean | undefined;
|
|
550
560
|
automatic_cooling_enabled?: boolean | undefined;
|
|
551
561
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -638,6 +648,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
638
648
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
639
649
|
schedule_starts_at: z.ZodString;
|
|
640
650
|
schedule_ends_at: z.ZodString;
|
|
651
|
+
errors: z.ZodAny;
|
|
641
652
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
642
653
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
643
654
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -654,6 +665,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
654
665
|
schedule_starts_at: string;
|
|
655
666
|
schedule_ends_at: string;
|
|
656
667
|
name?: string | undefined;
|
|
668
|
+
errors?: any;
|
|
657
669
|
automatic_heating_enabled?: boolean | undefined;
|
|
658
670
|
automatic_cooling_enabled?: boolean | undefined;
|
|
659
671
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -670,6 +682,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
670
682
|
schedule_starts_at: string;
|
|
671
683
|
schedule_ends_at: string;
|
|
672
684
|
name?: string | undefined;
|
|
685
|
+
errors?: any;
|
|
673
686
|
automatic_heating_enabled?: boolean | undefined;
|
|
674
687
|
automatic_cooling_enabled?: boolean | undefined;
|
|
675
688
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -726,6 +739,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
726
739
|
schedule_starts_at: string;
|
|
727
740
|
schedule_ends_at: string;
|
|
728
741
|
name?: string | undefined;
|
|
742
|
+
errors?: any;
|
|
729
743
|
automatic_heating_enabled?: boolean | undefined;
|
|
730
744
|
automatic_cooling_enabled?: boolean | undefined;
|
|
731
745
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -782,6 +796,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
782
796
|
schedule_starts_at: string;
|
|
783
797
|
schedule_ends_at: string;
|
|
784
798
|
name?: string | undefined;
|
|
799
|
+
errors?: any;
|
|
785
800
|
automatic_heating_enabled?: boolean | undefined;
|
|
786
801
|
automatic_cooling_enabled?: boolean | undefined;
|
|
787
802
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|