@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
|
@@ -2024,6 +2024,12 @@ export interface Routes {
|
|
|
2024
2024
|
prefix: number
|
|
2025
2025
|
check_in_time: string
|
|
2026
2026
|
check_out_time: string
|
|
2027
|
+
is_24_hour: boolean
|
|
2028
|
+
is_biweekly_mode: boolean
|
|
2029
|
+
is_one_shot: boolean
|
|
2030
|
+
is_master: boolean
|
|
2031
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
2032
|
+
dormakaba_oracode_user_level_id: string
|
|
2027
2033
|
}>
|
|
2028
2034
|
| undefined
|
|
2029
2035
|
}
|
|
@@ -2134,6 +2140,8 @@ export interface Routes {
|
|
|
2134
2140
|
schedule_starts_at: string
|
|
2135
2141
|
schedule_ends_at: string
|
|
2136
2142
|
created_at: string
|
|
2143
|
+
/** 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. */
|
|
2144
|
+
errors?: any
|
|
2137
2145
|
automatic_heating_enabled?: boolean | undefined
|
|
2138
2146
|
automatic_cooling_enabled?: boolean | undefined
|
|
2139
2147
|
hvac_mode_setting?:
|
|
@@ -2225,6 +2233,8 @@ export interface Routes {
|
|
|
2225
2233
|
schedule_starts_at: string
|
|
2226
2234
|
schedule_ends_at: string
|
|
2227
2235
|
created_at: string
|
|
2236
|
+
/** 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. */
|
|
2237
|
+
errors?: any
|
|
2228
2238
|
automatic_heating_enabled?: boolean | undefined
|
|
2229
2239
|
automatic_cooling_enabled?: boolean | undefined
|
|
2230
2240
|
hvac_mode_setting?:
|
|
@@ -2310,6 +2320,8 @@ export interface Routes {
|
|
|
2310
2320
|
schedule_starts_at: string
|
|
2311
2321
|
schedule_ends_at: string
|
|
2312
2322
|
created_at: string
|
|
2323
|
+
/** 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. */
|
|
2324
|
+
errors?: any
|
|
2313
2325
|
automatic_heating_enabled?: boolean | undefined
|
|
2314
2326
|
automatic_cooling_enabled?: boolean | undefined
|
|
2315
2327
|
hvac_mode_setting?:
|
|
@@ -2767,6 +2779,12 @@ export interface Routes {
|
|
|
2767
2779
|
prefix: number
|
|
2768
2780
|
check_in_time: string
|
|
2769
2781
|
check_out_time: string
|
|
2782
|
+
is_24_hour: boolean
|
|
2783
|
+
is_biweekly_mode: boolean
|
|
2784
|
+
is_one_shot: boolean
|
|
2785
|
+
is_master: boolean
|
|
2786
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
2787
|
+
dormakaba_oracode_user_level_id: string
|
|
2770
2788
|
}>
|
|
2771
2789
|
| undefined
|
|
2772
2790
|
}
|
|
@@ -2877,6 +2895,8 @@ export interface Routes {
|
|
|
2877
2895
|
schedule_starts_at: string
|
|
2878
2896
|
schedule_ends_at: string
|
|
2879
2897
|
created_at: string
|
|
2898
|
+
/** 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. */
|
|
2899
|
+
errors?: any
|
|
2880
2900
|
automatic_heating_enabled?: boolean | undefined
|
|
2881
2901
|
automatic_cooling_enabled?: boolean | undefined
|
|
2882
2902
|
hvac_mode_setting?:
|
|
@@ -2968,6 +2988,8 @@ export interface Routes {
|
|
|
2968
2988
|
schedule_starts_at: string
|
|
2969
2989
|
schedule_ends_at: string
|
|
2970
2990
|
created_at: string
|
|
2991
|
+
/** 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. */
|
|
2992
|
+
errors?: any
|
|
2971
2993
|
automatic_heating_enabled?: boolean | undefined
|
|
2972
2994
|
automatic_cooling_enabled?: boolean | undefined
|
|
2973
2995
|
hvac_mode_setting?:
|
|
@@ -3053,6 +3075,8 @@ export interface Routes {
|
|
|
3053
3075
|
schedule_starts_at: string
|
|
3054
3076
|
schedule_ends_at: string
|
|
3055
3077
|
created_at: string
|
|
3078
|
+
/** 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. */
|
|
3079
|
+
errors?: any
|
|
3056
3080
|
automatic_heating_enabled?: boolean | undefined
|
|
3057
3081
|
automatic_cooling_enabled?: boolean | undefined
|
|
3058
3082
|
hvac_mode_setting?:
|
|
@@ -3951,6 +3975,12 @@ export interface Routes {
|
|
|
3951
3975
|
prefix: number
|
|
3952
3976
|
check_in_time: string
|
|
3953
3977
|
check_out_time: string
|
|
3978
|
+
is_24_hour: boolean
|
|
3979
|
+
is_biweekly_mode: boolean
|
|
3980
|
+
is_one_shot: boolean
|
|
3981
|
+
is_master: boolean
|
|
3982
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
3983
|
+
dormakaba_oracode_user_level_id: string
|
|
3954
3984
|
}>
|
|
3955
3985
|
| undefined
|
|
3956
3986
|
}
|
|
@@ -4061,6 +4091,8 @@ export interface Routes {
|
|
|
4061
4091
|
schedule_starts_at: string
|
|
4062
4092
|
schedule_ends_at: string
|
|
4063
4093
|
created_at: string
|
|
4094
|
+
/** 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. */
|
|
4095
|
+
errors?: any
|
|
4064
4096
|
automatic_heating_enabled?: boolean | undefined
|
|
4065
4097
|
automatic_cooling_enabled?: boolean | undefined
|
|
4066
4098
|
hvac_mode_setting?:
|
|
@@ -4152,6 +4184,8 @@ export interface Routes {
|
|
|
4152
4184
|
schedule_starts_at: string
|
|
4153
4185
|
schedule_ends_at: string
|
|
4154
4186
|
created_at: string
|
|
4187
|
+
/** 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. */
|
|
4188
|
+
errors?: any
|
|
4155
4189
|
automatic_heating_enabled?: boolean | undefined
|
|
4156
4190
|
automatic_cooling_enabled?: boolean | undefined
|
|
4157
4191
|
hvac_mode_setting?:
|
|
@@ -4237,6 +4271,8 @@ export interface Routes {
|
|
|
4237
4271
|
schedule_starts_at: string
|
|
4238
4272
|
schedule_ends_at: string
|
|
4239
4273
|
created_at: string
|
|
4274
|
+
/** 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. */
|
|
4275
|
+
errors?: any
|
|
4240
4276
|
automatic_heating_enabled?: boolean | undefined
|
|
4241
4277
|
automatic_cooling_enabled?: boolean | undefined
|
|
4242
4278
|
hvac_mode_setting?:
|
|
@@ -4573,6 +4609,12 @@ export interface Routes {
|
|
|
4573
4609
|
prefix: number
|
|
4574
4610
|
check_in_time: string
|
|
4575
4611
|
check_out_time: string
|
|
4612
|
+
is_24_hour: boolean
|
|
4613
|
+
is_biweekly_mode: boolean
|
|
4614
|
+
is_one_shot: boolean
|
|
4615
|
+
is_master: boolean
|
|
4616
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
4617
|
+
dormakaba_oracode_user_level_id: string
|
|
4576
4618
|
}>
|
|
4577
4619
|
| undefined
|
|
4578
4620
|
}
|
|
@@ -4683,6 +4725,8 @@ export interface Routes {
|
|
|
4683
4725
|
schedule_starts_at: string
|
|
4684
4726
|
schedule_ends_at: string
|
|
4685
4727
|
created_at: string
|
|
4728
|
+
/** 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. */
|
|
4729
|
+
errors?: any
|
|
4686
4730
|
automatic_heating_enabled?: boolean | undefined
|
|
4687
4731
|
automatic_cooling_enabled?: boolean | undefined
|
|
4688
4732
|
hvac_mode_setting?:
|
|
@@ -4774,6 +4818,8 @@ export interface Routes {
|
|
|
4774
4818
|
schedule_starts_at: string
|
|
4775
4819
|
schedule_ends_at: string
|
|
4776
4820
|
created_at: string
|
|
4821
|
+
/** 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. */
|
|
4822
|
+
errors?: any
|
|
4777
4823
|
automatic_heating_enabled?: boolean | undefined
|
|
4778
4824
|
automatic_cooling_enabled?: boolean | undefined
|
|
4779
4825
|
hvac_mode_setting?:
|
|
@@ -4859,6 +4905,8 @@ export interface Routes {
|
|
|
4859
4905
|
schedule_starts_at: string
|
|
4860
4906
|
schedule_ends_at: string
|
|
4861
4907
|
created_at: string
|
|
4908
|
+
/** 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. */
|
|
4909
|
+
errors?: any
|
|
4862
4910
|
automatic_heating_enabled?: boolean | undefined
|
|
4863
4911
|
automatic_cooling_enabled?: boolean | undefined
|
|
4864
4912
|
hvac_mode_setting?:
|
|
@@ -5316,6 +5364,12 @@ export interface Routes {
|
|
|
5316
5364
|
prefix: number
|
|
5317
5365
|
check_in_time: string
|
|
5318
5366
|
check_out_time: string
|
|
5367
|
+
is_24_hour: boolean
|
|
5368
|
+
is_biweekly_mode: boolean
|
|
5369
|
+
is_one_shot: boolean
|
|
5370
|
+
is_master: boolean
|
|
5371
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
5372
|
+
dormakaba_oracode_user_level_id: string
|
|
5319
5373
|
}>
|
|
5320
5374
|
| undefined
|
|
5321
5375
|
}
|
|
@@ -5426,6 +5480,8 @@ export interface Routes {
|
|
|
5426
5480
|
schedule_starts_at: string
|
|
5427
5481
|
schedule_ends_at: string
|
|
5428
5482
|
created_at: string
|
|
5483
|
+
/** 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. */
|
|
5484
|
+
errors?: any
|
|
5429
5485
|
automatic_heating_enabled?: boolean | undefined
|
|
5430
5486
|
automatic_cooling_enabled?: boolean | undefined
|
|
5431
5487
|
hvac_mode_setting?:
|
|
@@ -5517,6 +5573,8 @@ export interface Routes {
|
|
|
5517
5573
|
schedule_starts_at: string
|
|
5518
5574
|
schedule_ends_at: string
|
|
5519
5575
|
created_at: string
|
|
5576
|
+
/** 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. */
|
|
5577
|
+
errors?: any
|
|
5520
5578
|
automatic_heating_enabled?: boolean | undefined
|
|
5521
5579
|
automatic_cooling_enabled?: boolean | undefined
|
|
5522
5580
|
hvac_mode_setting?:
|
|
@@ -5602,6 +5660,8 @@ export interface Routes {
|
|
|
5602
5660
|
schedule_starts_at: string
|
|
5603
5661
|
schedule_ends_at: string
|
|
5604
5662
|
created_at: string
|
|
5663
|
+
/** 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. */
|
|
5664
|
+
errors?: any
|
|
5605
5665
|
automatic_heating_enabled?: boolean | undefined
|
|
5606
5666
|
automatic_cooling_enabled?: boolean | undefined
|
|
5607
5667
|
hvac_mode_setting?:
|
|
@@ -5938,6 +5998,12 @@ export interface Routes {
|
|
|
5938
5998
|
prefix: number
|
|
5939
5999
|
check_in_time: string
|
|
5940
6000
|
check_out_time: string
|
|
6001
|
+
is_24_hour: boolean
|
|
6002
|
+
is_biweekly_mode: boolean
|
|
6003
|
+
is_one_shot: boolean
|
|
6004
|
+
is_master: boolean
|
|
6005
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
6006
|
+
dormakaba_oracode_user_level_id: string
|
|
5941
6007
|
}>
|
|
5942
6008
|
| undefined
|
|
5943
6009
|
}
|
|
@@ -6048,6 +6114,8 @@ export interface Routes {
|
|
|
6048
6114
|
schedule_starts_at: string
|
|
6049
6115
|
schedule_ends_at: string
|
|
6050
6116
|
created_at: string
|
|
6117
|
+
/** 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. */
|
|
6118
|
+
errors?: any
|
|
6051
6119
|
automatic_heating_enabled?: boolean | undefined
|
|
6052
6120
|
automatic_cooling_enabled?: boolean | undefined
|
|
6053
6121
|
hvac_mode_setting?:
|
|
@@ -6139,6 +6207,8 @@ export interface Routes {
|
|
|
6139
6207
|
schedule_starts_at: string
|
|
6140
6208
|
schedule_ends_at: string
|
|
6141
6209
|
created_at: string
|
|
6210
|
+
/** 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. */
|
|
6211
|
+
errors?: any
|
|
6142
6212
|
automatic_heating_enabled?: boolean | undefined
|
|
6143
6213
|
automatic_cooling_enabled?: boolean | undefined
|
|
6144
6214
|
hvac_mode_setting?:
|
|
@@ -6224,6 +6294,8 @@ export interface Routes {
|
|
|
6224
6294
|
schedule_starts_at: string
|
|
6225
6295
|
schedule_ends_at: string
|
|
6226
6296
|
created_at: string
|
|
6297
|
+
/** 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. */
|
|
6298
|
+
errors?: any
|
|
6227
6299
|
automatic_heating_enabled?: boolean | undefined
|
|
6228
6300
|
automatic_cooling_enabled?: boolean | undefined
|
|
6229
6301
|
hvac_mode_setting?:
|
|
@@ -6575,6 +6647,8 @@ export interface Routes {
|
|
|
6575
6647
|
schedule_starts_at: string
|
|
6576
6648
|
schedule_ends_at: string
|
|
6577
6649
|
created_at: string
|
|
6650
|
+
/** 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. */
|
|
6651
|
+
errors?: any
|
|
6578
6652
|
automatic_heating_enabled?: boolean | undefined
|
|
6579
6653
|
automatic_cooling_enabled?: boolean | undefined
|
|
6580
6654
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
@@ -6616,6 +6690,8 @@ export interface Routes {
|
|
|
6616
6690
|
schedule_starts_at: string
|
|
6617
6691
|
schedule_ends_at: string
|
|
6618
6692
|
created_at: string
|
|
6693
|
+
/** 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. */
|
|
6694
|
+
errors?: any
|
|
6619
6695
|
automatic_heating_enabled?: boolean | undefined
|
|
6620
6696
|
automatic_cooling_enabled?: boolean | undefined
|
|
6621
6697
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
@@ -6646,6 +6722,8 @@ export interface Routes {
|
|
|
6646
6722
|
schedule_starts_at: string
|
|
6647
6723
|
schedule_ends_at: string
|
|
6648
6724
|
created_at: string
|
|
6725
|
+
/** 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. */
|
|
6726
|
+
errors?: any
|
|
6649
6727
|
automatic_heating_enabled?: boolean | undefined
|
|
6650
6728
|
automatic_cooling_enabled?: boolean | undefined
|
|
6651
6729
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
@@ -6687,6 +6765,8 @@ export interface Routes {
|
|
|
6687
6765
|
schedule_starts_at: string
|
|
6688
6766
|
schedule_ends_at: string
|
|
6689
6767
|
created_at: string
|
|
6768
|
+
/** 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. */
|
|
6769
|
+
errors?: any
|
|
6690
6770
|
automatic_heating_enabled?: boolean | undefined
|
|
6691
6771
|
automatic_cooling_enabled?: boolean | undefined
|
|
6692
6772
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
@@ -7005,6 +7085,12 @@ export interface Routes {
|
|
|
7005
7085
|
prefix: number
|
|
7006
7086
|
check_in_time: string
|
|
7007
7087
|
check_out_time: string
|
|
7088
|
+
is_24_hour: boolean
|
|
7089
|
+
is_biweekly_mode: boolean
|
|
7090
|
+
is_one_shot: boolean
|
|
7091
|
+
is_master: boolean
|
|
7092
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
7093
|
+
dormakaba_oracode_user_level_id: string
|
|
7008
7094
|
}>
|
|
7009
7095
|
| undefined
|
|
7010
7096
|
}
|
|
@@ -7115,6 +7201,8 @@ export interface Routes {
|
|
|
7115
7201
|
schedule_starts_at: string
|
|
7116
7202
|
schedule_ends_at: string
|
|
7117
7203
|
created_at: string
|
|
7204
|
+
/** 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. */
|
|
7205
|
+
errors?: any
|
|
7118
7206
|
automatic_heating_enabled?: boolean | undefined
|
|
7119
7207
|
automatic_cooling_enabled?: boolean | undefined
|
|
7120
7208
|
hvac_mode_setting?:
|
|
@@ -7206,6 +7294,8 @@ export interface Routes {
|
|
|
7206
7294
|
schedule_starts_at: string
|
|
7207
7295
|
schedule_ends_at: string
|
|
7208
7296
|
created_at: string
|
|
7297
|
+
/** 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. */
|
|
7298
|
+
errors?: any
|
|
7209
7299
|
automatic_heating_enabled?: boolean | undefined
|
|
7210
7300
|
automatic_cooling_enabled?: boolean | undefined
|
|
7211
7301
|
hvac_mode_setting?:
|
|
@@ -7291,6 +7381,8 @@ export interface Routes {
|
|
|
7291
7381
|
schedule_starts_at: string
|
|
7292
7382
|
schedule_ends_at: string
|
|
7293
7383
|
created_at: string
|
|
7384
|
+
/** 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. */
|
|
7385
|
+
errors?: any
|
|
7294
7386
|
automatic_heating_enabled?: boolean | undefined
|
|
7295
7387
|
automatic_cooling_enabled?: boolean | undefined
|
|
7296
7388
|
hvac_mode_setting?:
|
|
@@ -7778,6 +7870,12 @@ export interface Routes {
|
|
|
7778
7870
|
prefix: number
|
|
7779
7871
|
check_in_time: string
|
|
7780
7872
|
check_out_time: string
|
|
7873
|
+
is_24_hour: boolean
|
|
7874
|
+
is_biweekly_mode: boolean
|
|
7875
|
+
is_one_shot: boolean
|
|
7876
|
+
is_master: boolean
|
|
7877
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
7878
|
+
dormakaba_oracode_user_level_id: string
|
|
7781
7879
|
}>
|
|
7782
7880
|
| undefined
|
|
7783
7881
|
}
|
|
@@ -7888,6 +7986,8 @@ export interface Routes {
|
|
|
7888
7986
|
schedule_starts_at: string
|
|
7889
7987
|
schedule_ends_at: string
|
|
7890
7988
|
created_at: string
|
|
7989
|
+
/** 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. */
|
|
7990
|
+
errors?: any
|
|
7891
7991
|
automatic_heating_enabled?: boolean | undefined
|
|
7892
7992
|
automatic_cooling_enabled?: boolean | undefined
|
|
7893
7993
|
hvac_mode_setting?:
|
|
@@ -7979,6 +8079,8 @@ export interface Routes {
|
|
|
7979
8079
|
schedule_starts_at: string
|
|
7980
8080
|
schedule_ends_at: string
|
|
7981
8081
|
created_at: string
|
|
8082
|
+
/** 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. */
|
|
8083
|
+
errors?: any
|
|
7982
8084
|
automatic_heating_enabled?: boolean | undefined
|
|
7983
8085
|
automatic_cooling_enabled?: boolean | undefined
|
|
7984
8086
|
hvac_mode_setting?:
|
|
@@ -8064,6 +8166,8 @@ export interface Routes {
|
|
|
8064
8166
|
schedule_starts_at: string
|
|
8065
8167
|
schedule_ends_at: string
|
|
8066
8168
|
created_at: string
|
|
8169
|
+
/** 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. */
|
|
8170
|
+
errors?: any
|
|
8067
8171
|
automatic_heating_enabled?: boolean | undefined
|
|
8068
8172
|
automatic_cooling_enabled?: boolean | undefined
|
|
8069
8173
|
hvac_mode_setting?:
|
|
@@ -8551,6 +8655,12 @@ export interface Routes {
|
|
|
8551
8655
|
prefix: number
|
|
8552
8656
|
check_in_time: string
|
|
8553
8657
|
check_out_time: string
|
|
8658
|
+
is_24_hour: boolean
|
|
8659
|
+
is_biweekly_mode: boolean
|
|
8660
|
+
is_one_shot: boolean
|
|
8661
|
+
is_master: boolean
|
|
8662
|
+
ext_dormakaba_oracode_user_level_prefix: number
|
|
8663
|
+
dormakaba_oracode_user_level_id: string
|
|
8554
8664
|
}>
|
|
8555
8665
|
| undefined
|
|
8556
8666
|
}
|
|
@@ -8661,6 +8771,8 @@ export interface Routes {
|
|
|
8661
8771
|
schedule_starts_at: string
|
|
8662
8772
|
schedule_ends_at: string
|
|
8663
8773
|
created_at: string
|
|
8774
|
+
/** 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. */
|
|
8775
|
+
errors?: any
|
|
8664
8776
|
automatic_heating_enabled?: boolean | undefined
|
|
8665
8777
|
automatic_cooling_enabled?: boolean | undefined
|
|
8666
8778
|
hvac_mode_setting?:
|
|
@@ -8752,6 +8864,8 @@ export interface Routes {
|
|
|
8752
8864
|
schedule_starts_at: string
|
|
8753
8865
|
schedule_ends_at: string
|
|
8754
8866
|
created_at: string
|
|
8867
|
+
/** 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. */
|
|
8868
|
+
errors?: any
|
|
8755
8869
|
automatic_heating_enabled?: boolean | undefined
|
|
8756
8870
|
automatic_cooling_enabled?: boolean | undefined
|
|
8757
8871
|
hvac_mode_setting?:
|
|
@@ -8837,6 +8951,8 @@ export interface Routes {
|
|
|
8837
8951
|
schedule_starts_at: string
|
|
8838
8952
|
schedule_ends_at: string
|
|
8839
8953
|
created_at: string
|
|
8954
|
+
/** 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. */
|
|
8955
|
+
errors?: any
|
|
8840
8956
|
automatic_heating_enabled?: boolean | undefined
|
|
8841
8957
|
automatic_cooling_enabled?: boolean | undefined
|
|
8842
8958
|
hvac_mode_setting?:
|
|
@@ -30,6 +30,11 @@ export const climate_setting_schedule = z
|
|
|
30
30
|
schedule_starts_at: z.string(),
|
|
31
31
|
schedule_ends_at: z.string(),
|
|
32
32
|
created_at: z.string().datetime(),
|
|
33
|
+
errors: z
|
|
34
|
+
.any()
|
|
35
|
+
.describe(
|
|
36
|
+
'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.',
|
|
37
|
+
),
|
|
33
38
|
})
|
|
34
39
|
.merge(climate_setting.partial())
|
|
35
40
|
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { z } from 'zod'
|
|
2
2
|
|
|
3
|
+
export const dormakaba_oracode_time_slot_schema = z.object({
|
|
4
|
+
name: z.string(),
|
|
5
|
+
prefix: z.number(),
|
|
6
|
+
// Seam TOD
|
|
7
|
+
check_in_time: z.string(),
|
|
8
|
+
// Seam TOD
|
|
9
|
+
check_out_time: z.string(),
|
|
10
|
+
|
|
11
|
+
is_24_hour: z.boolean(),
|
|
12
|
+
is_biweekly_mode: z.boolean(),
|
|
13
|
+
is_one_shot: z.boolean(),
|
|
14
|
+
is_master: z.boolean(),
|
|
15
|
+
|
|
16
|
+
ext_dormakaba_oracode_user_level_prefix: z.number(),
|
|
17
|
+
dormakaba_oracode_user_level_id: z.string().uuid(),
|
|
18
|
+
})
|
|
19
|
+
|
|
3
20
|
export const device_metadata = z
|
|
4
21
|
.object({
|
|
5
22
|
august_metadata: z.object({
|
|
@@ -171,16 +188,7 @@ export const device_metadata = z
|
|
|
171
188
|
site_name: z.string(),
|
|
172
189
|
iana_timezone: z.string().optional(),
|
|
173
190
|
predefined_time_slots: z
|
|
174
|
-
.array(
|
|
175
|
-
z.object({
|
|
176
|
-
name: z.string(),
|
|
177
|
-
prefix: z.number(),
|
|
178
|
-
// Seam TOD
|
|
179
|
-
check_in_time: z.string(),
|
|
180
|
-
// Seam TOD
|
|
181
|
-
check_out_time: z.string(),
|
|
182
|
-
}),
|
|
183
|
-
)
|
|
191
|
+
.array(dormakaba_oracode_time_slot_schema)
|
|
184
192
|
.optional(),
|
|
185
193
|
}),
|
|
186
194
|
|