@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
package/dist/connect.d.cts
CHANGED
|
@@ -493,6 +493,10 @@ declare const _default: {
|
|
|
493
493
|
device_id: {
|
|
494
494
|
type: string;
|
|
495
495
|
};
|
|
496
|
+
errors: {
|
|
497
|
+
description: string;
|
|
498
|
+
nullable: boolean;
|
|
499
|
+
};
|
|
496
500
|
heating_set_point_celsius: {
|
|
497
501
|
type: string;
|
|
498
502
|
};
|
|
@@ -979,6 +983,25 @@ declare const _default: {
|
|
|
979
983
|
check_out_time: {
|
|
980
984
|
type: string;
|
|
981
985
|
};
|
|
986
|
+
dormakaba_oracode_user_level_id: {
|
|
987
|
+
format: string;
|
|
988
|
+
type: string;
|
|
989
|
+
};
|
|
990
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
991
|
+
type: string;
|
|
992
|
+
};
|
|
993
|
+
is_24_hour: {
|
|
994
|
+
type: string;
|
|
995
|
+
};
|
|
996
|
+
is_biweekly_mode: {
|
|
997
|
+
type: string;
|
|
998
|
+
};
|
|
999
|
+
is_master: {
|
|
1000
|
+
type: string;
|
|
1001
|
+
};
|
|
1002
|
+
is_one_shot: {
|
|
1003
|
+
type: string;
|
|
1004
|
+
};
|
|
982
1005
|
name: {
|
|
983
1006
|
type: string;
|
|
984
1007
|
};
|
|
@@ -1486,6 +1509,10 @@ declare const _default: {
|
|
|
1486
1509
|
device_id: {
|
|
1487
1510
|
type: string;
|
|
1488
1511
|
};
|
|
1512
|
+
errors: {
|
|
1513
|
+
description: string;
|
|
1514
|
+
nullable: boolean;
|
|
1515
|
+
};
|
|
1489
1516
|
heating_set_point_celsius: {
|
|
1490
1517
|
type: string;
|
|
1491
1518
|
};
|
|
@@ -1688,6 +1715,10 @@ declare const _default: {
|
|
|
1688
1715
|
device_id: {
|
|
1689
1716
|
type: string;
|
|
1690
1717
|
};
|
|
1718
|
+
errors: {
|
|
1719
|
+
description: string;
|
|
1720
|
+
nullable: boolean;
|
|
1721
|
+
};
|
|
1691
1722
|
heating_set_point_celsius: {
|
|
1692
1723
|
type: string;
|
|
1693
1724
|
};
|
|
@@ -1878,6 +1909,10 @@ declare const _default: {
|
|
|
1878
1909
|
device_id: {
|
|
1879
1910
|
type: string;
|
|
1880
1911
|
};
|
|
1912
|
+
errors: {
|
|
1913
|
+
description: string;
|
|
1914
|
+
nullable: boolean;
|
|
1915
|
+
};
|
|
1881
1916
|
heating_set_point_celsius: {
|
|
1882
1917
|
type: string;
|
|
1883
1918
|
};
|
|
@@ -2555,20 +2590,25 @@ declare const _default: {
|
|
|
2555
2590
|
};
|
|
2556
2591
|
};
|
|
2557
2592
|
security: ({
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2593
|
+
client_session: never[];
|
|
2594
|
+
pat_with_workspace?: never;
|
|
2595
|
+
console_session?: never;
|
|
2596
|
+
api_key?: never;
|
|
2562
2597
|
} | {
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2598
|
+
pat_with_workspace: never[];
|
|
2599
|
+
client_session?: never;
|
|
2600
|
+
console_session?: never;
|
|
2601
|
+
api_key?: never;
|
|
2567
2602
|
} | {
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2603
|
+
console_session: never[];
|
|
2604
|
+
client_session?: never;
|
|
2605
|
+
pat_with_workspace?: never;
|
|
2606
|
+
api_key?: never;
|
|
2607
|
+
} | {
|
|
2608
|
+
api_key: never[];
|
|
2609
|
+
client_session?: never;
|
|
2610
|
+
pat_with_workspace?: never;
|
|
2611
|
+
console_session?: never;
|
|
2572
2612
|
})[];
|
|
2573
2613
|
summary: string;
|
|
2574
2614
|
tags: string[];
|
|
@@ -2679,20 +2719,25 @@ declare const _default: {
|
|
|
2679
2719
|
};
|
|
2680
2720
|
};
|
|
2681
2721
|
security: ({
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2722
|
+
client_session: never[];
|
|
2723
|
+
pat_with_workspace?: never;
|
|
2724
|
+
console_session?: never;
|
|
2725
|
+
api_key?: never;
|
|
2686
2726
|
} | {
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2727
|
+
pat_with_workspace: never[];
|
|
2728
|
+
client_session?: never;
|
|
2729
|
+
console_session?: never;
|
|
2730
|
+
api_key?: never;
|
|
2691
2731
|
} | {
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2732
|
+
console_session: never[];
|
|
2733
|
+
client_session?: never;
|
|
2734
|
+
pat_with_workspace?: never;
|
|
2735
|
+
api_key?: never;
|
|
2736
|
+
} | {
|
|
2737
|
+
api_key: never[];
|
|
2738
|
+
client_session?: never;
|
|
2739
|
+
pat_with_workspace?: never;
|
|
2740
|
+
console_session?: never;
|
|
2696
2741
|
})[];
|
|
2697
2742
|
summary: string;
|
|
2698
2743
|
tags: string[];
|
|
@@ -2801,20 +2846,25 @@ declare const _default: {
|
|
|
2801
2846
|
};
|
|
2802
2847
|
};
|
|
2803
2848
|
security: ({
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2849
|
+
client_session: never[];
|
|
2850
|
+
pat_with_workspace?: never;
|
|
2851
|
+
console_session?: never;
|
|
2852
|
+
api_key?: never;
|
|
2808
2853
|
} | {
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2854
|
+
pat_with_workspace: never[];
|
|
2855
|
+
client_session?: never;
|
|
2856
|
+
console_session?: never;
|
|
2857
|
+
api_key?: never;
|
|
2813
2858
|
} | {
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2859
|
+
console_session: never[];
|
|
2860
|
+
client_session?: never;
|
|
2861
|
+
pat_with_workspace?: never;
|
|
2862
|
+
api_key?: never;
|
|
2863
|
+
} | {
|
|
2864
|
+
api_key: never[];
|
|
2865
|
+
client_session?: never;
|
|
2866
|
+
pat_with_workspace?: never;
|
|
2867
|
+
console_session?: never;
|
|
2818
2868
|
})[];
|
|
2819
2869
|
summary: string;
|
|
2820
2870
|
tags: string[];
|
|
@@ -2876,20 +2926,25 @@ declare const _default: {
|
|
|
2876
2926
|
};
|
|
2877
2927
|
};
|
|
2878
2928
|
security: ({
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2929
|
+
client_session: never[];
|
|
2930
|
+
pat_with_workspace?: never;
|
|
2931
|
+
console_session?: never;
|
|
2932
|
+
api_key?: never;
|
|
2883
2933
|
} | {
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2934
|
+
pat_with_workspace: never[];
|
|
2935
|
+
client_session?: never;
|
|
2936
|
+
console_session?: never;
|
|
2937
|
+
api_key?: never;
|
|
2888
2938
|
} | {
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2939
|
+
console_session: never[];
|
|
2940
|
+
client_session?: never;
|
|
2941
|
+
pat_with_workspace?: never;
|
|
2942
|
+
api_key?: never;
|
|
2943
|
+
} | {
|
|
2944
|
+
api_key: never[];
|
|
2945
|
+
client_session?: never;
|
|
2946
|
+
pat_with_workspace?: never;
|
|
2947
|
+
console_session?: never;
|
|
2893
2948
|
})[];
|
|
2894
2949
|
summary: string;
|
|
2895
2950
|
tags: string[];
|
|
@@ -2945,20 +3000,25 @@ declare const _default: {
|
|
|
2945
3000
|
};
|
|
2946
3001
|
};
|
|
2947
3002
|
security: ({
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
3003
|
+
client_session: never[];
|
|
3004
|
+
pat_with_workspace?: never;
|
|
3005
|
+
console_session?: never;
|
|
3006
|
+
api_key?: never;
|
|
2952
3007
|
} | {
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
3008
|
+
pat_with_workspace: never[];
|
|
3009
|
+
client_session?: never;
|
|
3010
|
+
console_session?: never;
|
|
3011
|
+
api_key?: never;
|
|
2957
3012
|
} | {
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
3013
|
+
console_session: never[];
|
|
3014
|
+
client_session?: never;
|
|
3015
|
+
pat_with_workspace?: never;
|
|
3016
|
+
api_key?: never;
|
|
3017
|
+
} | {
|
|
3018
|
+
api_key: never[];
|
|
3019
|
+
client_session?: never;
|
|
3020
|
+
pat_with_workspace?: never;
|
|
3021
|
+
console_session?: never;
|
|
2962
3022
|
})[];
|
|
2963
3023
|
summary: string;
|
|
2964
3024
|
tags: string[];
|
|
@@ -3106,20 +3166,25 @@ declare const _default: {
|
|
|
3106
3166
|
};
|
|
3107
3167
|
};
|
|
3108
3168
|
security: ({
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3169
|
+
client_session: never[];
|
|
3170
|
+
pat_with_workspace?: never;
|
|
3171
|
+
console_session?: never;
|
|
3172
|
+
api_key?: never;
|
|
3113
3173
|
} | {
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3174
|
+
pat_with_workspace: never[];
|
|
3175
|
+
client_session?: never;
|
|
3176
|
+
console_session?: never;
|
|
3177
|
+
api_key?: never;
|
|
3118
3178
|
} | {
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3179
|
+
console_session: never[];
|
|
3180
|
+
client_session?: never;
|
|
3181
|
+
pat_with_workspace?: never;
|
|
3182
|
+
api_key?: never;
|
|
3183
|
+
} | {
|
|
3184
|
+
api_key: never[];
|
|
3185
|
+
client_session?: never;
|
|
3186
|
+
pat_with_workspace?: never;
|
|
3187
|
+
console_session?: never;
|
|
3123
3188
|
})[];
|
|
3124
3189
|
summary: string;
|
|
3125
3190
|
tags: string[];
|
|
@@ -3175,20 +3240,25 @@ declare const _default: {
|
|
|
3175
3240
|
};
|
|
3176
3241
|
};
|
|
3177
3242
|
security: ({
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3243
|
+
client_session: never[];
|
|
3244
|
+
pat_with_workspace?: never;
|
|
3245
|
+
console_session?: never;
|
|
3246
|
+
api_key?: never;
|
|
3182
3247
|
} | {
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3248
|
+
pat_with_workspace: never[];
|
|
3249
|
+
client_session?: never;
|
|
3250
|
+
console_session?: never;
|
|
3251
|
+
api_key?: never;
|
|
3187
3252
|
} | {
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3253
|
+
console_session: never[];
|
|
3254
|
+
client_session?: never;
|
|
3255
|
+
pat_with_workspace?: never;
|
|
3256
|
+
api_key?: never;
|
|
3257
|
+
} | {
|
|
3258
|
+
api_key: never[];
|
|
3259
|
+
client_session?: never;
|
|
3260
|
+
pat_with_workspace?: never;
|
|
3261
|
+
console_session?: never;
|
|
3192
3262
|
})[];
|
|
3193
3263
|
summary: string;
|
|
3194
3264
|
tags: string[];
|
|
@@ -3253,20 +3323,25 @@ declare const _default: {
|
|
|
3253
3323
|
};
|
|
3254
3324
|
};
|
|
3255
3325
|
security: ({
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3326
|
+
client_session: never[];
|
|
3327
|
+
pat_with_workspace?: never;
|
|
3328
|
+
console_session?: never;
|
|
3329
|
+
api_key?: never;
|
|
3260
3330
|
} | {
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3331
|
+
pat_with_workspace: never[];
|
|
3332
|
+
client_session?: never;
|
|
3333
|
+
console_session?: never;
|
|
3334
|
+
api_key?: never;
|
|
3265
3335
|
} | {
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3336
|
+
console_session: never[];
|
|
3337
|
+
client_session?: never;
|
|
3338
|
+
pat_with_workspace?: never;
|
|
3339
|
+
api_key?: never;
|
|
3340
|
+
} | {
|
|
3341
|
+
api_key: never[];
|
|
3342
|
+
client_session?: never;
|
|
3343
|
+
pat_with_workspace?: never;
|
|
3344
|
+
console_session?: never;
|
|
3270
3345
|
})[];
|
|
3271
3346
|
summary: string;
|
|
3272
3347
|
tags: string[];
|
|
@@ -3908,20 +3983,25 @@ declare const _default: {
|
|
|
3908
3983
|
};
|
|
3909
3984
|
};
|
|
3910
3985
|
security: ({
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3986
|
+
client_session: never[];
|
|
3987
|
+
pat_with_workspace?: never;
|
|
3988
|
+
console_session?: never;
|
|
3989
|
+
api_key?: never;
|
|
3915
3990
|
} | {
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3991
|
+
pat_with_workspace: never[];
|
|
3992
|
+
client_session?: never;
|
|
3993
|
+
console_session?: never;
|
|
3994
|
+
api_key?: never;
|
|
3920
3995
|
} | {
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3996
|
+
console_session: never[];
|
|
3997
|
+
client_session?: never;
|
|
3998
|
+
pat_with_workspace?: never;
|
|
3999
|
+
api_key?: never;
|
|
4000
|
+
} | {
|
|
4001
|
+
api_key: never[];
|
|
4002
|
+
client_session?: never;
|
|
4003
|
+
pat_with_workspace?: never;
|
|
4004
|
+
console_session?: never;
|
|
3925
4005
|
})[];
|
|
3926
4006
|
summary: string;
|
|
3927
4007
|
tags: string[];
|
|
@@ -4032,20 +4112,25 @@ declare const _default: {
|
|
|
4032
4112
|
};
|
|
4033
4113
|
};
|
|
4034
4114
|
security: ({
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4115
|
+
client_session: never[];
|
|
4116
|
+
pat_with_workspace?: never;
|
|
4117
|
+
console_session?: never;
|
|
4118
|
+
api_key?: never;
|
|
4039
4119
|
} | {
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
4120
|
+
pat_with_workspace: never[];
|
|
4121
|
+
client_session?: never;
|
|
4122
|
+
console_session?: never;
|
|
4123
|
+
api_key?: never;
|
|
4044
4124
|
} | {
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4125
|
+
console_session: never[];
|
|
4126
|
+
client_session?: never;
|
|
4127
|
+
pat_with_workspace?: never;
|
|
4128
|
+
api_key?: never;
|
|
4129
|
+
} | {
|
|
4130
|
+
api_key: never[];
|
|
4131
|
+
client_session?: never;
|
|
4132
|
+
pat_with_workspace?: never;
|
|
4133
|
+
console_session?: never;
|
|
4049
4134
|
})[];
|
|
4050
4135
|
summary: string;
|
|
4051
4136
|
tags: string[];
|
|
@@ -4158,20 +4243,25 @@ declare const _default: {
|
|
|
4158
4243
|
};
|
|
4159
4244
|
};
|
|
4160
4245
|
security: ({
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4246
|
+
client_session: never[];
|
|
4247
|
+
pat_with_workspace?: never;
|
|
4248
|
+
console_session?: never;
|
|
4249
|
+
api_key?: never;
|
|
4165
4250
|
} | {
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4251
|
+
pat_with_workspace: never[];
|
|
4252
|
+
client_session?: never;
|
|
4253
|
+
console_session?: never;
|
|
4254
|
+
api_key?: never;
|
|
4170
4255
|
} | {
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4256
|
+
console_session: never[];
|
|
4257
|
+
client_session?: never;
|
|
4258
|
+
pat_with_workspace?: never;
|
|
4259
|
+
api_key?: never;
|
|
4260
|
+
} | {
|
|
4261
|
+
api_key: never[];
|
|
4262
|
+
client_session?: never;
|
|
4263
|
+
pat_with_workspace?: never;
|
|
4264
|
+
console_session?: never;
|
|
4175
4265
|
})[];
|
|
4176
4266
|
summary: string;
|
|
4177
4267
|
tags: string[];
|
|
@@ -15649,6 +15739,12 @@ interface Routes {
|
|
|
15649
15739
|
prefix: number;
|
|
15650
15740
|
check_in_time: string;
|
|
15651
15741
|
check_out_time: string;
|
|
15742
|
+
is_24_hour: boolean;
|
|
15743
|
+
is_biweekly_mode: boolean;
|
|
15744
|
+
is_one_shot: boolean;
|
|
15745
|
+
is_master: boolean;
|
|
15746
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
15747
|
+
dormakaba_oracode_user_level_id: string;
|
|
15652
15748
|
}> | undefined;
|
|
15653
15749
|
} | undefined;
|
|
15654
15750
|
wyze_metadata?: {
|
|
@@ -15719,6 +15815,8 @@ interface Routes {
|
|
|
15719
15815
|
schedule_starts_at: string;
|
|
15720
15816
|
schedule_ends_at: string;
|
|
15721
15817
|
created_at: string;
|
|
15818
|
+
/** 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. */
|
|
15819
|
+
errors?: any;
|
|
15722
15820
|
automatic_heating_enabled?: boolean | undefined;
|
|
15723
15821
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15724
15822
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -15781,6 +15879,8 @@ interface Routes {
|
|
|
15781
15879
|
schedule_starts_at: string;
|
|
15782
15880
|
schedule_ends_at: string;
|
|
15783
15881
|
created_at: string;
|
|
15882
|
+
/** 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. */
|
|
15883
|
+
errors?: any;
|
|
15784
15884
|
automatic_heating_enabled?: boolean | undefined;
|
|
15785
15885
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15786
15886
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -15837,6 +15937,8 @@ interface Routes {
|
|
|
15837
15937
|
schedule_starts_at: string;
|
|
15838
15938
|
schedule_ends_at: string;
|
|
15839
15939
|
created_at: string;
|
|
15940
|
+
/** 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. */
|
|
15941
|
+
errors?: any;
|
|
15840
15942
|
automatic_heating_enabled?: boolean | undefined;
|
|
15841
15943
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15842
15944
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16102,6 +16204,12 @@ interface Routes {
|
|
|
16102
16204
|
prefix: number;
|
|
16103
16205
|
check_in_time: string;
|
|
16104
16206
|
check_out_time: string;
|
|
16207
|
+
is_24_hour: boolean;
|
|
16208
|
+
is_biweekly_mode: boolean;
|
|
16209
|
+
is_one_shot: boolean;
|
|
16210
|
+
is_master: boolean;
|
|
16211
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
16212
|
+
dormakaba_oracode_user_level_id: string;
|
|
16105
16213
|
}> | undefined;
|
|
16106
16214
|
} | undefined;
|
|
16107
16215
|
wyze_metadata?: {
|
|
@@ -16172,6 +16280,8 @@ interface Routes {
|
|
|
16172
16280
|
schedule_starts_at: string;
|
|
16173
16281
|
schedule_ends_at: string;
|
|
16174
16282
|
created_at: string;
|
|
16283
|
+
/** 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. */
|
|
16284
|
+
errors?: any;
|
|
16175
16285
|
automatic_heating_enabled?: boolean | undefined;
|
|
16176
16286
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16177
16287
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16234,6 +16344,8 @@ interface Routes {
|
|
|
16234
16344
|
schedule_starts_at: string;
|
|
16235
16345
|
schedule_ends_at: string;
|
|
16236
16346
|
created_at: string;
|
|
16347
|
+
/** 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. */
|
|
16348
|
+
errors?: any;
|
|
16237
16349
|
automatic_heating_enabled?: boolean | undefined;
|
|
16238
16350
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16239
16351
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16290,6 +16402,8 @@ interface Routes {
|
|
|
16290
16402
|
schedule_starts_at: string;
|
|
16291
16403
|
schedule_ends_at: string;
|
|
16292
16404
|
created_at: string;
|
|
16405
|
+
/** 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. */
|
|
16406
|
+
errors?: any;
|
|
16293
16407
|
automatic_heating_enabled?: boolean | undefined;
|
|
16294
16408
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16295
16409
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16834,6 +16948,12 @@ interface Routes {
|
|
|
16834
16948
|
prefix: number;
|
|
16835
16949
|
check_in_time: string;
|
|
16836
16950
|
check_out_time: string;
|
|
16951
|
+
is_24_hour: boolean;
|
|
16952
|
+
is_biweekly_mode: boolean;
|
|
16953
|
+
is_one_shot: boolean;
|
|
16954
|
+
is_master: boolean;
|
|
16955
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
16956
|
+
dormakaba_oracode_user_level_id: string;
|
|
16837
16957
|
}> | undefined;
|
|
16838
16958
|
} | undefined;
|
|
16839
16959
|
wyze_metadata?: {
|
|
@@ -16904,6 +17024,8 @@ interface Routes {
|
|
|
16904
17024
|
schedule_starts_at: string;
|
|
16905
17025
|
schedule_ends_at: string;
|
|
16906
17026
|
created_at: string;
|
|
17027
|
+
/** 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. */
|
|
17028
|
+
errors?: any;
|
|
16907
17029
|
automatic_heating_enabled?: boolean | undefined;
|
|
16908
17030
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16909
17031
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16966,6 +17088,8 @@ interface Routes {
|
|
|
16966
17088
|
schedule_starts_at: string;
|
|
16967
17089
|
schedule_ends_at: string;
|
|
16968
17090
|
created_at: string;
|
|
17091
|
+
/** 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. */
|
|
17092
|
+
errors?: any;
|
|
16969
17093
|
automatic_heating_enabled?: boolean | undefined;
|
|
16970
17094
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16971
17095
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17022,6 +17146,8 @@ interface Routes {
|
|
|
17022
17146
|
schedule_starts_at: string;
|
|
17023
17147
|
schedule_ends_at: string;
|
|
17024
17148
|
created_at: string;
|
|
17149
|
+
/** 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. */
|
|
17150
|
+
errors?: any;
|
|
17025
17151
|
automatic_heating_enabled?: boolean | undefined;
|
|
17026
17152
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17027
17153
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17265,6 +17391,12 @@ interface Routes {
|
|
|
17265
17391
|
prefix: number;
|
|
17266
17392
|
check_in_time: string;
|
|
17267
17393
|
check_out_time: string;
|
|
17394
|
+
is_24_hour: boolean;
|
|
17395
|
+
is_biweekly_mode: boolean;
|
|
17396
|
+
is_one_shot: boolean;
|
|
17397
|
+
is_master: boolean;
|
|
17398
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
17399
|
+
dormakaba_oracode_user_level_id: string;
|
|
17268
17400
|
}> | undefined;
|
|
17269
17401
|
} | undefined;
|
|
17270
17402
|
wyze_metadata?: {
|
|
@@ -17335,6 +17467,8 @@ interface Routes {
|
|
|
17335
17467
|
schedule_starts_at: string;
|
|
17336
17468
|
schedule_ends_at: string;
|
|
17337
17469
|
created_at: string;
|
|
17470
|
+
/** 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. */
|
|
17471
|
+
errors?: any;
|
|
17338
17472
|
automatic_heating_enabled?: boolean | undefined;
|
|
17339
17473
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17340
17474
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17397,6 +17531,8 @@ interface Routes {
|
|
|
17397
17531
|
schedule_starts_at: string;
|
|
17398
17532
|
schedule_ends_at: string;
|
|
17399
17533
|
created_at: string;
|
|
17534
|
+
/** 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. */
|
|
17535
|
+
errors?: any;
|
|
17400
17536
|
automatic_heating_enabled?: boolean | undefined;
|
|
17401
17537
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17402
17538
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17453,6 +17589,8 @@ interface Routes {
|
|
|
17453
17589
|
schedule_starts_at: string;
|
|
17454
17590
|
schedule_ends_at: string;
|
|
17455
17591
|
created_at: string;
|
|
17592
|
+
/** 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. */
|
|
17593
|
+
errors?: any;
|
|
17456
17594
|
automatic_heating_enabled?: boolean | undefined;
|
|
17457
17595
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17458
17596
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17718,6 +17856,12 @@ interface Routes {
|
|
|
17718
17856
|
prefix: number;
|
|
17719
17857
|
check_in_time: string;
|
|
17720
17858
|
check_out_time: string;
|
|
17859
|
+
is_24_hour: boolean;
|
|
17860
|
+
is_biweekly_mode: boolean;
|
|
17861
|
+
is_one_shot: boolean;
|
|
17862
|
+
is_master: boolean;
|
|
17863
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
17864
|
+
dormakaba_oracode_user_level_id: string;
|
|
17721
17865
|
}> | undefined;
|
|
17722
17866
|
} | undefined;
|
|
17723
17867
|
wyze_metadata?: {
|
|
@@ -17788,6 +17932,8 @@ interface Routes {
|
|
|
17788
17932
|
schedule_starts_at: string;
|
|
17789
17933
|
schedule_ends_at: string;
|
|
17790
17934
|
created_at: string;
|
|
17935
|
+
/** 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. */
|
|
17936
|
+
errors?: any;
|
|
17791
17937
|
automatic_heating_enabled?: boolean | undefined;
|
|
17792
17938
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17793
17939
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17850,6 +17996,8 @@ interface Routes {
|
|
|
17850
17996
|
schedule_starts_at: string;
|
|
17851
17997
|
schedule_ends_at: string;
|
|
17852
17998
|
created_at: string;
|
|
17999
|
+
/** 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. */
|
|
18000
|
+
errors?: any;
|
|
17853
18001
|
automatic_heating_enabled?: boolean | undefined;
|
|
17854
18002
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17855
18003
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17906,6 +18054,8 @@ interface Routes {
|
|
|
17906
18054
|
schedule_starts_at: string;
|
|
17907
18055
|
schedule_ends_at: string;
|
|
17908
18056
|
created_at: string;
|
|
18057
|
+
/** 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. */
|
|
18058
|
+
errors?: any;
|
|
17909
18059
|
automatic_heating_enabled?: boolean | undefined;
|
|
17910
18060
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17911
18061
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18149,6 +18299,12 @@ interface Routes {
|
|
|
18149
18299
|
prefix: number;
|
|
18150
18300
|
check_in_time: string;
|
|
18151
18301
|
check_out_time: string;
|
|
18302
|
+
is_24_hour: boolean;
|
|
18303
|
+
is_biweekly_mode: boolean;
|
|
18304
|
+
is_one_shot: boolean;
|
|
18305
|
+
is_master: boolean;
|
|
18306
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
18307
|
+
dormakaba_oracode_user_level_id: string;
|
|
18152
18308
|
}> | undefined;
|
|
18153
18309
|
} | undefined;
|
|
18154
18310
|
wyze_metadata?: {
|
|
@@ -18219,6 +18375,8 @@ interface Routes {
|
|
|
18219
18375
|
schedule_starts_at: string;
|
|
18220
18376
|
schedule_ends_at: string;
|
|
18221
18377
|
created_at: string;
|
|
18378
|
+
/** 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. */
|
|
18379
|
+
errors?: any;
|
|
18222
18380
|
automatic_heating_enabled?: boolean | undefined;
|
|
18223
18381
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18224
18382
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18281,6 +18439,8 @@ interface Routes {
|
|
|
18281
18439
|
schedule_starts_at: string;
|
|
18282
18440
|
schedule_ends_at: string;
|
|
18283
18441
|
created_at: string;
|
|
18442
|
+
/** 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. */
|
|
18443
|
+
errors?: any;
|
|
18284
18444
|
automatic_heating_enabled?: boolean | undefined;
|
|
18285
18445
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18286
18446
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18337,6 +18497,8 @@ interface Routes {
|
|
|
18337
18497
|
schedule_starts_at: string;
|
|
18338
18498
|
schedule_ends_at: string;
|
|
18339
18499
|
created_at: string;
|
|
18500
|
+
/** 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. */
|
|
18501
|
+
errors?: any;
|
|
18340
18502
|
automatic_heating_enabled?: boolean | undefined;
|
|
18341
18503
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18342
18504
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18659,6 +18821,8 @@ interface Routes {
|
|
|
18659
18821
|
schedule_starts_at: string;
|
|
18660
18822
|
schedule_ends_at: string;
|
|
18661
18823
|
created_at: string;
|
|
18824
|
+
/** 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. */
|
|
18825
|
+
errors?: any;
|
|
18662
18826
|
automatic_heating_enabled?: boolean | undefined;
|
|
18663
18827
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18664
18828
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18700,6 +18864,8 @@ interface Routes {
|
|
|
18700
18864
|
schedule_starts_at: string;
|
|
18701
18865
|
schedule_ends_at: string;
|
|
18702
18866
|
created_at: string;
|
|
18867
|
+
/** 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. */
|
|
18868
|
+
errors?: any;
|
|
18703
18869
|
automatic_heating_enabled?: boolean | undefined;
|
|
18704
18870
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18705
18871
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18730,6 +18896,8 @@ interface Routes {
|
|
|
18730
18896
|
schedule_starts_at: string;
|
|
18731
18897
|
schedule_ends_at: string;
|
|
18732
18898
|
created_at: string;
|
|
18899
|
+
/** 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. */
|
|
18900
|
+
errors?: any;
|
|
18733
18901
|
automatic_heating_enabled?: boolean | undefined;
|
|
18734
18902
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18735
18903
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18771,6 +18939,8 @@ interface Routes {
|
|
|
18771
18939
|
schedule_starts_at: string;
|
|
18772
18940
|
schedule_ends_at: string;
|
|
18773
18941
|
created_at: string;
|
|
18942
|
+
/** 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. */
|
|
18943
|
+
errors?: any;
|
|
18774
18944
|
automatic_heating_enabled?: boolean | undefined;
|
|
18775
18945
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18776
18946
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19010,6 +19180,12 @@ interface Routes {
|
|
|
19010
19180
|
prefix: number;
|
|
19011
19181
|
check_in_time: string;
|
|
19012
19182
|
check_out_time: string;
|
|
19183
|
+
is_24_hour: boolean;
|
|
19184
|
+
is_biweekly_mode: boolean;
|
|
19185
|
+
is_one_shot: boolean;
|
|
19186
|
+
is_master: boolean;
|
|
19187
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
19188
|
+
dormakaba_oracode_user_level_id: string;
|
|
19013
19189
|
}> | undefined;
|
|
19014
19190
|
} | undefined;
|
|
19015
19191
|
wyze_metadata?: {
|
|
@@ -19080,6 +19256,8 @@ interface Routes {
|
|
|
19080
19256
|
schedule_starts_at: string;
|
|
19081
19257
|
schedule_ends_at: string;
|
|
19082
19258
|
created_at: string;
|
|
19259
|
+
/** 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. */
|
|
19260
|
+
errors?: any;
|
|
19083
19261
|
automatic_heating_enabled?: boolean | undefined;
|
|
19084
19262
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19085
19263
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19142,6 +19320,8 @@ interface Routes {
|
|
|
19142
19320
|
schedule_starts_at: string;
|
|
19143
19321
|
schedule_ends_at: string;
|
|
19144
19322
|
created_at: string;
|
|
19323
|
+
/** 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. */
|
|
19324
|
+
errors?: any;
|
|
19145
19325
|
automatic_heating_enabled?: boolean | undefined;
|
|
19146
19326
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19147
19327
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19198,6 +19378,8 @@ interface Routes {
|
|
|
19198
19378
|
schedule_starts_at: string;
|
|
19199
19379
|
schedule_ends_at: string;
|
|
19200
19380
|
created_at: string;
|
|
19381
|
+
/** 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. */
|
|
19382
|
+
errors?: any;
|
|
19201
19383
|
automatic_heating_enabled?: boolean | undefined;
|
|
19202
19384
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19203
19385
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19493,6 +19675,12 @@ interface Routes {
|
|
|
19493
19675
|
prefix: number;
|
|
19494
19676
|
check_in_time: string;
|
|
19495
19677
|
check_out_time: string;
|
|
19678
|
+
is_24_hour: boolean;
|
|
19679
|
+
is_biweekly_mode: boolean;
|
|
19680
|
+
is_one_shot: boolean;
|
|
19681
|
+
is_master: boolean;
|
|
19682
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
19683
|
+
dormakaba_oracode_user_level_id: string;
|
|
19496
19684
|
}> | undefined;
|
|
19497
19685
|
} | undefined;
|
|
19498
19686
|
wyze_metadata?: {
|
|
@@ -19563,6 +19751,8 @@ interface Routes {
|
|
|
19563
19751
|
schedule_starts_at: string;
|
|
19564
19752
|
schedule_ends_at: string;
|
|
19565
19753
|
created_at: string;
|
|
19754
|
+
/** 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. */
|
|
19755
|
+
errors?: any;
|
|
19566
19756
|
automatic_heating_enabled?: boolean | undefined;
|
|
19567
19757
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19568
19758
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19625,6 +19815,8 @@ interface Routes {
|
|
|
19625
19815
|
schedule_starts_at: string;
|
|
19626
19816
|
schedule_ends_at: string;
|
|
19627
19817
|
created_at: string;
|
|
19818
|
+
/** 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. */
|
|
19819
|
+
errors?: any;
|
|
19628
19820
|
automatic_heating_enabled?: boolean | undefined;
|
|
19629
19821
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19630
19822
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19681,6 +19873,8 @@ interface Routes {
|
|
|
19681
19873
|
schedule_starts_at: string;
|
|
19682
19874
|
schedule_ends_at: string;
|
|
19683
19875
|
created_at: string;
|
|
19876
|
+
/** 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. */
|
|
19877
|
+
errors?: any;
|
|
19684
19878
|
automatic_heating_enabled?: boolean | undefined;
|
|
19685
19879
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19686
19880
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20073,6 +20267,12 @@ interface Routes {
|
|
|
20073
20267
|
prefix: number;
|
|
20074
20268
|
check_in_time: string;
|
|
20075
20269
|
check_out_time: string;
|
|
20270
|
+
is_24_hour: boolean;
|
|
20271
|
+
is_biweekly_mode: boolean;
|
|
20272
|
+
is_one_shot: boolean;
|
|
20273
|
+
is_master: boolean;
|
|
20274
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
20275
|
+
dormakaba_oracode_user_level_id: string;
|
|
20076
20276
|
}> | undefined;
|
|
20077
20277
|
} | undefined;
|
|
20078
20278
|
wyze_metadata?: {
|
|
@@ -20143,6 +20343,8 @@ interface Routes {
|
|
|
20143
20343
|
schedule_starts_at: string;
|
|
20144
20344
|
schedule_ends_at: string;
|
|
20145
20345
|
created_at: string;
|
|
20346
|
+
/** 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. */
|
|
20347
|
+
errors?: any;
|
|
20146
20348
|
automatic_heating_enabled?: boolean | undefined;
|
|
20147
20349
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20148
20350
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20205,6 +20407,8 @@ interface Routes {
|
|
|
20205
20407
|
schedule_starts_at: string;
|
|
20206
20408
|
schedule_ends_at: string;
|
|
20207
20409
|
created_at: string;
|
|
20410
|
+
/** 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. */
|
|
20411
|
+
errors?: any;
|
|
20208
20412
|
automatic_heating_enabled?: boolean | undefined;
|
|
20209
20413
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20210
20414
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20261,6 +20465,8 @@ interface Routes {
|
|
|
20261
20465
|
schedule_starts_at: string;
|
|
20262
20466
|
schedule_ends_at: string;
|
|
20263
20467
|
created_at: string;
|
|
20468
|
+
/** 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. */
|
|
20469
|
+
errors?: any;
|
|
20264
20470
|
automatic_heating_enabled?: boolean | undefined;
|
|
20265
20471
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20266
20472
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|