@seamapi/types 1.273.0 → 1.275.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +232 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +783 -45
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +19 -19
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +28 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +28 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/models/devices/device-metadata.js +11 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +94 -0
- package/lib/seam/connect/models/devices/phone.d.ts +66 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +66 -0
- package/lib/seam/connect/models/events/devices.d.ts +180 -0
- package/lib/seam/connect/models/events/devices.js +24 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +88 -0
- package/lib/seam/connect/openapi.d.ts +223 -0
- package/lib/seam/connect/openapi.js +187 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +269 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +11 -1
- package/src/lib/seam/connect/models/events/devices.ts +38 -0
- package/src/lib/seam/connect/openapi.ts +188 -0
- package/src/lib/seam/connect/route-types.ts +369 -0
package/dist/connect.d.cts
CHANGED
|
@@ -788,6 +788,16 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
788
788
|
display_name: string;
|
|
789
789
|
acs_system_id: string;
|
|
790
790
|
acs_entrance_id: string;
|
|
791
|
+
salto_ks_metadata?: {
|
|
792
|
+
lock_type: string;
|
|
793
|
+
battery_level: string;
|
|
794
|
+
locked_state: string;
|
|
795
|
+
door_name: string;
|
|
796
|
+
online: boolean;
|
|
797
|
+
left_open_alarm: boolean;
|
|
798
|
+
intrusion_alarm: boolean;
|
|
799
|
+
privacy_mode: boolean;
|
|
800
|
+
} | undefined;
|
|
791
801
|
visionline_metadata?: {
|
|
792
802
|
door_name: string;
|
|
793
803
|
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
@@ -802,6 +812,15 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
802
812
|
accessibility_type: string;
|
|
803
813
|
door_type: string;
|
|
804
814
|
} | undefined;
|
|
815
|
+
}, {
|
|
816
|
+
created_at: string;
|
|
817
|
+
errors: {
|
|
818
|
+
message: string;
|
|
819
|
+
error_code: string;
|
|
820
|
+
}[];
|
|
821
|
+
display_name: string;
|
|
822
|
+
acs_system_id: string;
|
|
823
|
+
acs_entrance_id: string;
|
|
805
824
|
salto_ks_metadata?: {
|
|
806
825
|
lock_type: string;
|
|
807
826
|
battery_level: string;
|
|
@@ -812,15 +831,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
812
831
|
intrusion_alarm: boolean;
|
|
813
832
|
privacy_mode: boolean;
|
|
814
833
|
} | undefined;
|
|
815
|
-
}, {
|
|
816
|
-
created_at: string;
|
|
817
|
-
errors: {
|
|
818
|
-
message: string;
|
|
819
|
-
error_code: string;
|
|
820
|
-
}[];
|
|
821
|
-
display_name: string;
|
|
822
|
-
acs_system_id: string;
|
|
823
|
-
acs_entrance_id: string;
|
|
824
834
|
visionline_metadata?: {
|
|
825
835
|
door_name: string;
|
|
826
836
|
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
@@ -835,16 +845,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
835
845
|
accessibility_type: string;
|
|
836
846
|
door_type: string;
|
|
837
847
|
} | undefined;
|
|
838
|
-
salto_ks_metadata?: {
|
|
839
|
-
lock_type: string;
|
|
840
|
-
battery_level: string;
|
|
841
|
-
locked_state: string;
|
|
842
|
-
door_name: string;
|
|
843
|
-
online: boolean;
|
|
844
|
-
left_open_alarm: boolean;
|
|
845
|
-
intrusion_alarm: boolean;
|
|
846
|
-
privacy_mode: boolean;
|
|
847
|
-
} | undefined;
|
|
848
848
|
}>;
|
|
849
849
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
850
850
|
|
|
@@ -4900,6 +4900,28 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4900
4900
|
locked_state: string;
|
|
4901
4901
|
model?: string | undefined;
|
|
4902
4902
|
}>>;
|
|
4903
|
+
salto_ks_metadata: z.ZodOptional<z.ZodObject<{
|
|
4904
|
+
lock_id: z.ZodString;
|
|
4905
|
+
customer_reference: z.ZodString;
|
|
4906
|
+
lock_type: z.ZodString;
|
|
4907
|
+
battery_level: z.ZodString;
|
|
4908
|
+
locked_state: z.ZodString;
|
|
4909
|
+
model: z.ZodOptional<z.ZodString>;
|
|
4910
|
+
}, "strip", z.ZodTypeAny, {
|
|
4911
|
+
lock_type: string;
|
|
4912
|
+
lock_id: string;
|
|
4913
|
+
customer_reference: string;
|
|
4914
|
+
battery_level: string;
|
|
4915
|
+
locked_state: string;
|
|
4916
|
+
model?: string | undefined;
|
|
4917
|
+
}, {
|
|
4918
|
+
lock_type: string;
|
|
4919
|
+
lock_id: string;
|
|
4920
|
+
customer_reference: string;
|
|
4921
|
+
battery_level: string;
|
|
4922
|
+
locked_state: string;
|
|
4923
|
+
model?: string | undefined;
|
|
4924
|
+
}>>;
|
|
4903
4925
|
genie_metadata: z.ZodOptional<z.ZodObject<{
|
|
4904
4926
|
device_name: z.ZodString;
|
|
4905
4927
|
door_name: z.ZodString;
|
|
@@ -5493,6 +5515,14 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5493
5515
|
locked_state: string;
|
|
5494
5516
|
model?: string | undefined;
|
|
5495
5517
|
} | undefined;
|
|
5518
|
+
salto_ks_metadata?: {
|
|
5519
|
+
lock_type: string;
|
|
5520
|
+
lock_id: string;
|
|
5521
|
+
customer_reference: string;
|
|
5522
|
+
battery_level: string;
|
|
5523
|
+
locked_state: string;
|
|
5524
|
+
model?: string | undefined;
|
|
5525
|
+
} | undefined;
|
|
5496
5526
|
genie_metadata?: {
|
|
5497
5527
|
device_name: string;
|
|
5498
5528
|
door_name: string;
|
|
@@ -5704,6 +5734,14 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5704
5734
|
locked_state: string;
|
|
5705
5735
|
model?: string | undefined;
|
|
5706
5736
|
} | undefined;
|
|
5737
|
+
salto_ks_metadata?: {
|
|
5738
|
+
lock_type: string;
|
|
5739
|
+
lock_id: string;
|
|
5740
|
+
customer_reference: string;
|
|
5741
|
+
battery_level: string;
|
|
5742
|
+
locked_state: string;
|
|
5743
|
+
model?: string | undefined;
|
|
5744
|
+
} | undefined;
|
|
5707
5745
|
genie_metadata?: {
|
|
5708
5746
|
device_name: string;
|
|
5709
5747
|
door_name: string;
|
|
@@ -6103,6 +6141,22 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6103
6141
|
max_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
6104
6142
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
6105
6143
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
6144
|
+
temperature_threshold: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
6145
|
+
lower_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
6146
|
+
lower_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
6147
|
+
upper_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
6148
|
+
upper_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
6149
|
+
}, "strip", z.ZodTypeAny, {
|
|
6150
|
+
lower_limit_celsius: number | null;
|
|
6151
|
+
lower_limit_fahrenheit: number | null;
|
|
6152
|
+
upper_limit_celsius: number | null;
|
|
6153
|
+
upper_limit_fahrenheit: number | null;
|
|
6154
|
+
}, {
|
|
6155
|
+
lower_limit_celsius: number | null;
|
|
6156
|
+
lower_limit_fahrenheit: number | null;
|
|
6157
|
+
upper_limit_celsius: number | null;
|
|
6158
|
+
upper_limit_fahrenheit: number | null;
|
|
6159
|
+
}>>>;
|
|
6106
6160
|
}, "strip", z.ZodTypeAny, {
|
|
6107
6161
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
6108
6162
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -6178,6 +6232,12 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6178
6232
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
6179
6233
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
6180
6234
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
6235
|
+
temperature_threshold?: {
|
|
6236
|
+
lower_limit_celsius: number | null;
|
|
6237
|
+
lower_limit_fahrenheit: number | null;
|
|
6238
|
+
upper_limit_celsius: number | null;
|
|
6239
|
+
upper_limit_fahrenheit: number | null;
|
|
6240
|
+
} | undefined;
|
|
6181
6241
|
}, {
|
|
6182
6242
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
6183
6243
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -6253,6 +6313,12 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6253
6313
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
6254
6314
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
6255
6315
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
6316
|
+
temperature_threshold?: {
|
|
6317
|
+
lower_limit_celsius: number | null;
|
|
6318
|
+
lower_limit_fahrenheit: number | null;
|
|
6319
|
+
upper_limit_celsius: number | null;
|
|
6320
|
+
upper_limit_fahrenheit: number | null;
|
|
6321
|
+
} | undefined;
|
|
6256
6322
|
}>>>;
|
|
6257
6323
|
location: z.ZodNullable<z.ZodObject<{
|
|
6258
6324
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -6442,6 +6508,14 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6442
6508
|
locked_state: string;
|
|
6443
6509
|
model?: string | undefined;
|
|
6444
6510
|
} | undefined;
|
|
6511
|
+
salto_ks_metadata?: {
|
|
6512
|
+
lock_type: string;
|
|
6513
|
+
lock_id: string;
|
|
6514
|
+
customer_reference: string;
|
|
6515
|
+
battery_level: string;
|
|
6516
|
+
locked_state: string;
|
|
6517
|
+
model?: string | undefined;
|
|
6518
|
+
} | undefined;
|
|
6445
6519
|
genie_metadata?: {
|
|
6446
6520
|
device_name: string;
|
|
6447
6521
|
door_name: string;
|
|
@@ -6690,6 +6764,12 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6690
6764
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
6691
6765
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
6692
6766
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
6767
|
+
temperature_threshold?: {
|
|
6768
|
+
lower_limit_celsius: number | null;
|
|
6769
|
+
lower_limit_fahrenheit: number | null;
|
|
6770
|
+
upper_limit_celsius: number | null;
|
|
6771
|
+
upper_limit_fahrenheit: number | null;
|
|
6772
|
+
} | undefined;
|
|
6693
6773
|
};
|
|
6694
6774
|
location: {
|
|
6695
6775
|
location_name?: string | undefined;
|
|
@@ -6831,6 +6911,14 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6831
6911
|
locked_state: string;
|
|
6832
6912
|
model?: string | undefined;
|
|
6833
6913
|
} | undefined;
|
|
6914
|
+
salto_ks_metadata?: {
|
|
6915
|
+
lock_type: string;
|
|
6916
|
+
lock_id: string;
|
|
6917
|
+
customer_reference: string;
|
|
6918
|
+
battery_level: string;
|
|
6919
|
+
locked_state: string;
|
|
6920
|
+
model?: string | undefined;
|
|
6921
|
+
} | undefined;
|
|
6834
6922
|
genie_metadata?: {
|
|
6835
6923
|
device_name: string;
|
|
6836
6924
|
door_name: string;
|
|
@@ -7079,6 +7167,12 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7079
7167
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
7080
7168
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
7081
7169
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
7170
|
+
temperature_threshold?: {
|
|
7171
|
+
lower_limit_celsius: number | null;
|
|
7172
|
+
lower_limit_fahrenheit: number | null;
|
|
7173
|
+
upper_limit_celsius: number | null;
|
|
7174
|
+
upper_limit_fahrenheit: number | null;
|
|
7175
|
+
} | undefined;
|
|
7082
7176
|
};
|
|
7083
7177
|
location: {
|
|
7084
7178
|
location_name?: string | undefined;
|
|
@@ -7545,6 +7639,28 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7545
7639
|
locked_state: string;
|
|
7546
7640
|
model?: string | undefined;
|
|
7547
7641
|
}>>;
|
|
7642
|
+
salto_ks_metadata: z.ZodOptional<z.ZodObject<{
|
|
7643
|
+
lock_id: z.ZodString;
|
|
7644
|
+
customer_reference: z.ZodString;
|
|
7645
|
+
lock_type: z.ZodString;
|
|
7646
|
+
battery_level: z.ZodString;
|
|
7647
|
+
locked_state: z.ZodString;
|
|
7648
|
+
model: z.ZodOptional<z.ZodString>;
|
|
7649
|
+
}, "strip", z.ZodTypeAny, {
|
|
7650
|
+
lock_type: string;
|
|
7651
|
+
lock_id: string;
|
|
7652
|
+
customer_reference: string;
|
|
7653
|
+
battery_level: string;
|
|
7654
|
+
locked_state: string;
|
|
7655
|
+
model?: string | undefined;
|
|
7656
|
+
}, {
|
|
7657
|
+
lock_type: string;
|
|
7658
|
+
lock_id: string;
|
|
7659
|
+
customer_reference: string;
|
|
7660
|
+
battery_level: string;
|
|
7661
|
+
locked_state: string;
|
|
7662
|
+
model?: string | undefined;
|
|
7663
|
+
}>>;
|
|
7548
7664
|
genie_metadata: z.ZodOptional<z.ZodObject<{
|
|
7549
7665
|
device_name: z.ZodString;
|
|
7550
7666
|
door_name: z.ZodString;
|
|
@@ -8138,6 +8254,14 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8138
8254
|
locked_state: string;
|
|
8139
8255
|
model?: string | undefined;
|
|
8140
8256
|
} | undefined;
|
|
8257
|
+
salto_ks_metadata?: {
|
|
8258
|
+
lock_type: string;
|
|
8259
|
+
lock_id: string;
|
|
8260
|
+
customer_reference: string;
|
|
8261
|
+
battery_level: string;
|
|
8262
|
+
locked_state: string;
|
|
8263
|
+
model?: string | undefined;
|
|
8264
|
+
} | undefined;
|
|
8141
8265
|
genie_metadata?: {
|
|
8142
8266
|
device_name: string;
|
|
8143
8267
|
door_name: string;
|
|
@@ -8349,6 +8473,14 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8349
8473
|
locked_state: string;
|
|
8350
8474
|
model?: string | undefined;
|
|
8351
8475
|
} | undefined;
|
|
8476
|
+
salto_ks_metadata?: {
|
|
8477
|
+
lock_type: string;
|
|
8478
|
+
lock_id: string;
|
|
8479
|
+
customer_reference: string;
|
|
8480
|
+
battery_level: string;
|
|
8481
|
+
locked_state: string;
|
|
8482
|
+
model?: string | undefined;
|
|
8483
|
+
} | undefined;
|
|
8352
8484
|
genie_metadata?: {
|
|
8353
8485
|
device_name: string;
|
|
8354
8486
|
door_name: string;
|
|
@@ -8748,6 +8880,22 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8748
8880
|
max_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
8749
8881
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
8750
8882
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
8883
|
+
temperature_threshold: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8884
|
+
lower_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
8885
|
+
lower_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
8886
|
+
upper_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
8887
|
+
upper_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
8888
|
+
}, "strip", z.ZodTypeAny, {
|
|
8889
|
+
lower_limit_celsius: number | null;
|
|
8890
|
+
lower_limit_fahrenheit: number | null;
|
|
8891
|
+
upper_limit_celsius: number | null;
|
|
8892
|
+
upper_limit_fahrenheit: number | null;
|
|
8893
|
+
}, {
|
|
8894
|
+
lower_limit_celsius: number | null;
|
|
8895
|
+
lower_limit_fahrenheit: number | null;
|
|
8896
|
+
upper_limit_celsius: number | null;
|
|
8897
|
+
upper_limit_fahrenheit: number | null;
|
|
8898
|
+
}>>>;
|
|
8751
8899
|
}, "strip", z.ZodTypeAny, {
|
|
8752
8900
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
8753
8901
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -8823,6 +8971,12 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8823
8971
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
8824
8972
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
8825
8973
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
8974
|
+
temperature_threshold?: {
|
|
8975
|
+
lower_limit_celsius: number | null;
|
|
8976
|
+
lower_limit_fahrenheit: number | null;
|
|
8977
|
+
upper_limit_celsius: number | null;
|
|
8978
|
+
upper_limit_fahrenheit: number | null;
|
|
8979
|
+
} | undefined;
|
|
8826
8980
|
}, {
|
|
8827
8981
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
8828
8982
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -8898,6 +9052,12 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8898
9052
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
8899
9053
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
8900
9054
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
9055
|
+
temperature_threshold?: {
|
|
9056
|
+
lower_limit_celsius: number | null;
|
|
9057
|
+
lower_limit_fahrenheit: number | null;
|
|
9058
|
+
upper_limit_celsius: number | null;
|
|
9059
|
+
upper_limit_fahrenheit: number | null;
|
|
9060
|
+
} | undefined;
|
|
8901
9061
|
}>>>;
|
|
8902
9062
|
location: z.ZodNullable<z.ZodObject<{
|
|
8903
9063
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -10930,6 +11090,94 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
10930
11090
|
workspace_id: z.ZodString;
|
|
10931
11091
|
created_at: z.ZodString;
|
|
10932
11092
|
occurred_at: z.ZodString;
|
|
11093
|
+
}, {
|
|
11094
|
+
device_id: z.ZodString;
|
|
11095
|
+
connected_account_id: z.ZodString;
|
|
11096
|
+
}>, {
|
|
11097
|
+
event_type: z.ZodLiteral<"thermostat.temperature_threshold_exceeded">;
|
|
11098
|
+
temperature_celsius: z.ZodNumber;
|
|
11099
|
+
temperature_fahrenheit: z.ZodNumber;
|
|
11100
|
+
upper_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
11101
|
+
upper_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
11102
|
+
lower_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
11103
|
+
lower_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
11104
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11105
|
+
connected_account_id: string;
|
|
11106
|
+
created_at: string;
|
|
11107
|
+
device_id: string;
|
|
11108
|
+
temperature_fahrenheit: number;
|
|
11109
|
+
temperature_celsius: number;
|
|
11110
|
+
lower_limit_celsius: number | null;
|
|
11111
|
+
lower_limit_fahrenheit: number | null;
|
|
11112
|
+
upper_limit_celsius: number | null;
|
|
11113
|
+
upper_limit_fahrenheit: number | null;
|
|
11114
|
+
workspace_id: string;
|
|
11115
|
+
event_id: string;
|
|
11116
|
+
occurred_at: string;
|
|
11117
|
+
event_type: "thermostat.temperature_threshold_exceeded";
|
|
11118
|
+
}, {
|
|
11119
|
+
connected_account_id: string;
|
|
11120
|
+
created_at: string;
|
|
11121
|
+
device_id: string;
|
|
11122
|
+
temperature_fahrenheit: number;
|
|
11123
|
+
temperature_celsius: number;
|
|
11124
|
+
lower_limit_celsius: number | null;
|
|
11125
|
+
lower_limit_fahrenheit: number | null;
|
|
11126
|
+
upper_limit_celsius: number | null;
|
|
11127
|
+
upper_limit_fahrenheit: number | null;
|
|
11128
|
+
workspace_id: string;
|
|
11129
|
+
event_id: string;
|
|
11130
|
+
occurred_at: string;
|
|
11131
|
+
event_type: "thermostat.temperature_threshold_exceeded";
|
|
11132
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11133
|
+
event_id: z.ZodString;
|
|
11134
|
+
workspace_id: z.ZodString;
|
|
11135
|
+
created_at: z.ZodString;
|
|
11136
|
+
occurred_at: z.ZodString;
|
|
11137
|
+
}, {
|
|
11138
|
+
device_id: z.ZodString;
|
|
11139
|
+
connected_account_id: z.ZodString;
|
|
11140
|
+
}>, {
|
|
11141
|
+
event_type: z.ZodLiteral<"thermostat.temperature_threshold_no_longer_exceeded">;
|
|
11142
|
+
temperature_celsius: z.ZodNumber;
|
|
11143
|
+
temperature_fahrenheit: z.ZodNumber;
|
|
11144
|
+
upper_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
11145
|
+
upper_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
11146
|
+
lower_limit_celsius: z.ZodNullable<z.ZodNumber>;
|
|
11147
|
+
lower_limit_fahrenheit: z.ZodNullable<z.ZodNumber>;
|
|
11148
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11149
|
+
connected_account_id: string;
|
|
11150
|
+
created_at: string;
|
|
11151
|
+
device_id: string;
|
|
11152
|
+
temperature_fahrenheit: number;
|
|
11153
|
+
temperature_celsius: number;
|
|
11154
|
+
lower_limit_celsius: number | null;
|
|
11155
|
+
lower_limit_fahrenheit: number | null;
|
|
11156
|
+
upper_limit_celsius: number | null;
|
|
11157
|
+
upper_limit_fahrenheit: number | null;
|
|
11158
|
+
workspace_id: string;
|
|
11159
|
+
event_id: string;
|
|
11160
|
+
occurred_at: string;
|
|
11161
|
+
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
11162
|
+
}, {
|
|
11163
|
+
connected_account_id: string;
|
|
11164
|
+
created_at: string;
|
|
11165
|
+
device_id: string;
|
|
11166
|
+
temperature_fahrenheit: number;
|
|
11167
|
+
temperature_celsius: number;
|
|
11168
|
+
lower_limit_celsius: number | null;
|
|
11169
|
+
lower_limit_fahrenheit: number | null;
|
|
11170
|
+
upper_limit_celsius: number | null;
|
|
11171
|
+
upper_limit_fahrenheit: number | null;
|
|
11172
|
+
workspace_id: string;
|
|
11173
|
+
event_id: string;
|
|
11174
|
+
occurred_at: string;
|
|
11175
|
+
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
11176
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
11177
|
+
event_id: z.ZodString;
|
|
11178
|
+
workspace_id: z.ZodString;
|
|
11179
|
+
created_at: z.ZodString;
|
|
11180
|
+
occurred_at: z.ZodString;
|
|
10933
11181
|
}, {
|
|
10934
11182
|
enrollment_automation_id: z.ZodString;
|
|
10935
11183
|
}>, {
|
|
@@ -13903,7 +14151,32 @@ declare const _default: {
|
|
|
13903
14151
|
required: string[];
|
|
13904
14152
|
type: string;
|
|
13905
14153
|
};
|
|
14154
|
+
salto_ks_metadata: {
|
|
14155
|
+
properties: {
|
|
14156
|
+
battery_level: {
|
|
14157
|
+
type: string;
|
|
14158
|
+
};
|
|
14159
|
+
customer_reference: {
|
|
14160
|
+
type: string;
|
|
14161
|
+
};
|
|
14162
|
+
lock_id: {
|
|
14163
|
+
type: string;
|
|
14164
|
+
};
|
|
14165
|
+
lock_type: {
|
|
14166
|
+
type: string;
|
|
14167
|
+
};
|
|
14168
|
+
locked_state: {
|
|
14169
|
+
type: string;
|
|
14170
|
+
};
|
|
14171
|
+
model: {
|
|
14172
|
+
type: string;
|
|
14173
|
+
};
|
|
14174
|
+
};
|
|
14175
|
+
required: string[];
|
|
14176
|
+
type: string;
|
|
14177
|
+
};
|
|
13906
14178
|
salto_metadata: {
|
|
14179
|
+
description: string;
|
|
13907
14180
|
properties: {
|
|
13908
14181
|
battery_level: {
|
|
13909
14182
|
type: string;
|
|
@@ -14227,6 +14500,7 @@ declare const _default: {
|
|
|
14227
14500
|
relative_humidity?: never;
|
|
14228
14501
|
temperature_celsius?: never;
|
|
14229
14502
|
temperature_fahrenheit?: never;
|
|
14503
|
+
temperature_threshold?: never;
|
|
14230
14504
|
};
|
|
14231
14505
|
type: string;
|
|
14232
14506
|
} | {
|
|
@@ -14517,6 +14791,32 @@ declare const _default: {
|
|
|
14517
14791
|
format: string;
|
|
14518
14792
|
type: string;
|
|
14519
14793
|
};
|
|
14794
|
+
temperature_threshold: {
|
|
14795
|
+
properties: {
|
|
14796
|
+
lower_limit_celsius: {
|
|
14797
|
+
format: string;
|
|
14798
|
+
nullable: boolean;
|
|
14799
|
+
type: string;
|
|
14800
|
+
};
|
|
14801
|
+
lower_limit_fahrenheit: {
|
|
14802
|
+
format: string;
|
|
14803
|
+
nullable: boolean;
|
|
14804
|
+
type: string;
|
|
14805
|
+
};
|
|
14806
|
+
upper_limit_celsius: {
|
|
14807
|
+
format: string;
|
|
14808
|
+
nullable: boolean;
|
|
14809
|
+
type: string;
|
|
14810
|
+
};
|
|
14811
|
+
upper_limit_fahrenheit: {
|
|
14812
|
+
format: string;
|
|
14813
|
+
nullable: boolean;
|
|
14814
|
+
type: string;
|
|
14815
|
+
};
|
|
14816
|
+
};
|
|
14817
|
+
required: string[];
|
|
14818
|
+
type: string;
|
|
14819
|
+
};
|
|
14520
14820
|
_experimental_supported_code_from_access_codes_lengths?: never;
|
|
14521
14821
|
code_constraints?: never;
|
|
14522
14822
|
door_open?: never;
|
|
@@ -28135,7 +28435,7 @@ declare const _default: {
|
|
|
28135
28435
|
'x-response-key': string;
|
|
28136
28436
|
};
|
|
28137
28437
|
};
|
|
28138
|
-
'/thermostats/
|
|
28438
|
+
'/thermostats/set_temperature_threshold': {
|
|
28139
28439
|
patch: {
|
|
28140
28440
|
operationId: string;
|
|
28141
28441
|
requestBody: {
|
|
@@ -28143,41 +28443,212 @@ declare const _default: {
|
|
|
28143
28443
|
'application/json': {
|
|
28144
28444
|
schema: {
|
|
28145
28445
|
properties: {
|
|
28146
|
-
climate_preset_key: {
|
|
28147
|
-
type: string;
|
|
28148
|
-
};
|
|
28149
|
-
cooling_set_point_celsius: {
|
|
28150
|
-
format: string;
|
|
28151
|
-
type: string;
|
|
28152
|
-
};
|
|
28153
|
-
cooling_set_point_fahrenheit: {
|
|
28154
|
-
format: string;
|
|
28155
|
-
type: string;
|
|
28156
|
-
};
|
|
28157
28446
|
device_id: {
|
|
28158
28447
|
format: string;
|
|
28159
28448
|
type: string;
|
|
28160
28449
|
};
|
|
28161
|
-
|
|
28162
|
-
|
|
28163
|
-
type: string;
|
|
28164
|
-
};
|
|
28165
|
-
heating_set_point_celsius: {
|
|
28450
|
+
lower_limit_celsius: {
|
|
28451
|
+
default: null;
|
|
28166
28452
|
format: string;
|
|
28453
|
+
nullable: boolean;
|
|
28167
28454
|
type: string;
|
|
28168
28455
|
};
|
|
28169
|
-
|
|
28456
|
+
lower_limit_fahrenheit: {
|
|
28457
|
+
default: null;
|
|
28170
28458
|
format: string;
|
|
28459
|
+
nullable: boolean;
|
|
28171
28460
|
type: string;
|
|
28172
28461
|
};
|
|
28173
|
-
|
|
28174
|
-
|
|
28175
|
-
|
|
28176
|
-
|
|
28177
|
-
manual_override_allowed: {
|
|
28462
|
+
upper_limit_celsius: {
|
|
28463
|
+
default: null;
|
|
28464
|
+
format: string;
|
|
28465
|
+
nullable: boolean;
|
|
28178
28466
|
type: string;
|
|
28179
28467
|
};
|
|
28180
|
-
|
|
28468
|
+
upper_limit_fahrenheit: {
|
|
28469
|
+
default: null;
|
|
28470
|
+
format: string;
|
|
28471
|
+
nullable: boolean;
|
|
28472
|
+
type: string;
|
|
28473
|
+
};
|
|
28474
|
+
};
|
|
28475
|
+
required: string[];
|
|
28476
|
+
type: string;
|
|
28477
|
+
};
|
|
28478
|
+
};
|
|
28479
|
+
};
|
|
28480
|
+
};
|
|
28481
|
+
responses: {
|
|
28482
|
+
200: {
|
|
28483
|
+
content: {
|
|
28484
|
+
'application/json': {
|
|
28485
|
+
schema: {
|
|
28486
|
+
properties: {
|
|
28487
|
+
ok: {
|
|
28488
|
+
type: string;
|
|
28489
|
+
};
|
|
28490
|
+
};
|
|
28491
|
+
required: string[];
|
|
28492
|
+
type: string;
|
|
28493
|
+
};
|
|
28494
|
+
};
|
|
28495
|
+
};
|
|
28496
|
+
description: string;
|
|
28497
|
+
};
|
|
28498
|
+
400: {
|
|
28499
|
+
description: string;
|
|
28500
|
+
};
|
|
28501
|
+
401: {
|
|
28502
|
+
description: string;
|
|
28503
|
+
};
|
|
28504
|
+
};
|
|
28505
|
+
security: ({
|
|
28506
|
+
api_key: never[];
|
|
28507
|
+
pat_with_workspace?: never;
|
|
28508
|
+
console_session?: never;
|
|
28509
|
+
} | {
|
|
28510
|
+
pat_with_workspace: never[];
|
|
28511
|
+
api_key?: never;
|
|
28512
|
+
console_session?: never;
|
|
28513
|
+
} | {
|
|
28514
|
+
console_session: never[];
|
|
28515
|
+
api_key?: never;
|
|
28516
|
+
pat_with_workspace?: never;
|
|
28517
|
+
})[];
|
|
28518
|
+
summary: string;
|
|
28519
|
+
tags: string[];
|
|
28520
|
+
'x-fern-ignore': boolean;
|
|
28521
|
+
'x-response-key': null;
|
|
28522
|
+
};
|
|
28523
|
+
post: {
|
|
28524
|
+
operationId: string;
|
|
28525
|
+
requestBody: {
|
|
28526
|
+
content: {
|
|
28527
|
+
'application/json': {
|
|
28528
|
+
schema: {
|
|
28529
|
+
properties: {
|
|
28530
|
+
device_id: {
|
|
28531
|
+
format: string;
|
|
28532
|
+
type: string;
|
|
28533
|
+
};
|
|
28534
|
+
lower_limit_celsius: {
|
|
28535
|
+
default: null;
|
|
28536
|
+
format: string;
|
|
28537
|
+
nullable: boolean;
|
|
28538
|
+
type: string;
|
|
28539
|
+
};
|
|
28540
|
+
lower_limit_fahrenheit: {
|
|
28541
|
+
default: null;
|
|
28542
|
+
format: string;
|
|
28543
|
+
nullable: boolean;
|
|
28544
|
+
type: string;
|
|
28545
|
+
};
|
|
28546
|
+
upper_limit_celsius: {
|
|
28547
|
+
default: null;
|
|
28548
|
+
format: string;
|
|
28549
|
+
nullable: boolean;
|
|
28550
|
+
type: string;
|
|
28551
|
+
};
|
|
28552
|
+
upper_limit_fahrenheit: {
|
|
28553
|
+
default: null;
|
|
28554
|
+
format: string;
|
|
28555
|
+
nullable: boolean;
|
|
28556
|
+
type: string;
|
|
28557
|
+
};
|
|
28558
|
+
};
|
|
28559
|
+
required: string[];
|
|
28560
|
+
type: string;
|
|
28561
|
+
};
|
|
28562
|
+
};
|
|
28563
|
+
};
|
|
28564
|
+
};
|
|
28565
|
+
responses: {
|
|
28566
|
+
200: {
|
|
28567
|
+
content: {
|
|
28568
|
+
'application/json': {
|
|
28569
|
+
schema: {
|
|
28570
|
+
properties: {
|
|
28571
|
+
ok: {
|
|
28572
|
+
type: string;
|
|
28573
|
+
};
|
|
28574
|
+
};
|
|
28575
|
+
required: string[];
|
|
28576
|
+
type: string;
|
|
28577
|
+
};
|
|
28578
|
+
};
|
|
28579
|
+
};
|
|
28580
|
+
description: string;
|
|
28581
|
+
};
|
|
28582
|
+
400: {
|
|
28583
|
+
description: string;
|
|
28584
|
+
};
|
|
28585
|
+
401: {
|
|
28586
|
+
description: string;
|
|
28587
|
+
};
|
|
28588
|
+
};
|
|
28589
|
+
security: ({
|
|
28590
|
+
api_key: never[];
|
|
28591
|
+
pat_with_workspace?: never;
|
|
28592
|
+
console_session?: never;
|
|
28593
|
+
} | {
|
|
28594
|
+
pat_with_workspace: never[];
|
|
28595
|
+
api_key?: never;
|
|
28596
|
+
console_session?: never;
|
|
28597
|
+
} | {
|
|
28598
|
+
console_session: never[];
|
|
28599
|
+
api_key?: never;
|
|
28600
|
+
pat_with_workspace?: never;
|
|
28601
|
+
})[];
|
|
28602
|
+
summary: string;
|
|
28603
|
+
tags: string[];
|
|
28604
|
+
'x-fern-sdk-group-name': string[];
|
|
28605
|
+
'x-fern-sdk-method-name': string;
|
|
28606
|
+
'x-response-key': null;
|
|
28607
|
+
};
|
|
28608
|
+
};
|
|
28609
|
+
'/thermostats/update_climate_preset': {
|
|
28610
|
+
patch: {
|
|
28611
|
+
operationId: string;
|
|
28612
|
+
requestBody: {
|
|
28613
|
+
content: {
|
|
28614
|
+
'application/json': {
|
|
28615
|
+
schema: {
|
|
28616
|
+
properties: {
|
|
28617
|
+
climate_preset_key: {
|
|
28618
|
+
type: string;
|
|
28619
|
+
};
|
|
28620
|
+
cooling_set_point_celsius: {
|
|
28621
|
+
format: string;
|
|
28622
|
+
type: string;
|
|
28623
|
+
};
|
|
28624
|
+
cooling_set_point_fahrenheit: {
|
|
28625
|
+
format: string;
|
|
28626
|
+
type: string;
|
|
28627
|
+
};
|
|
28628
|
+
device_id: {
|
|
28629
|
+
format: string;
|
|
28630
|
+
type: string;
|
|
28631
|
+
};
|
|
28632
|
+
fan_mode_setting: {
|
|
28633
|
+
enum: string[];
|
|
28634
|
+
type: string;
|
|
28635
|
+
};
|
|
28636
|
+
heating_set_point_celsius: {
|
|
28637
|
+
format: string;
|
|
28638
|
+
type: string;
|
|
28639
|
+
};
|
|
28640
|
+
heating_set_point_fahrenheit: {
|
|
28641
|
+
format: string;
|
|
28642
|
+
type: string;
|
|
28643
|
+
};
|
|
28644
|
+
hvac_mode_setting: {
|
|
28645
|
+
enum: string[];
|
|
28646
|
+
type: string;
|
|
28647
|
+
};
|
|
28648
|
+
manual_override_allowed: {
|
|
28649
|
+
type: string;
|
|
28650
|
+
};
|
|
28651
|
+
name: {
|
|
28181
28652
|
default: null;
|
|
28182
28653
|
nullable: boolean;
|
|
28183
28654
|
type: string;
|
|
@@ -35492,6 +35963,10 @@ interface Routes {
|
|
|
35492
35963
|
device_name: string;
|
|
35493
35964
|
model_number: string;
|
|
35494
35965
|
} | undefined;
|
|
35966
|
+
/**
|
|
35967
|
+
---
|
|
35968
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
35969
|
+
*/
|
|
35495
35970
|
salto_metadata?: {
|
|
35496
35971
|
lock_id: string;
|
|
35497
35972
|
customer_reference: string;
|
|
@@ -35500,6 +35975,14 @@ interface Routes {
|
|
|
35500
35975
|
locked_state: string;
|
|
35501
35976
|
model?: string | undefined;
|
|
35502
35977
|
} | undefined;
|
|
35978
|
+
salto_ks_metadata?: {
|
|
35979
|
+
lock_id: string;
|
|
35980
|
+
customer_reference: string;
|
|
35981
|
+
lock_type: string;
|
|
35982
|
+
battery_level: string;
|
|
35983
|
+
locked_state: string;
|
|
35984
|
+
model?: string | undefined;
|
|
35985
|
+
} | undefined;
|
|
35503
35986
|
genie_metadata?: {
|
|
35504
35987
|
device_name: string;
|
|
35505
35988
|
door_name: string;
|
|
@@ -35754,6 +36237,12 @@ interface Routes {
|
|
|
35754
36237
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
35755
36238
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
35756
36239
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
36240
|
+
temperature_threshold?: ({
|
|
36241
|
+
lower_limit_celsius: number | null;
|
|
36242
|
+
lower_limit_fahrenheit: number | null;
|
|
36243
|
+
upper_limit_celsius: number | null;
|
|
36244
|
+
upper_limit_fahrenheit: number | null;
|
|
36245
|
+
} | undefined) | undefined;
|
|
35757
36246
|
});
|
|
35758
36247
|
/** Location information for the device. */
|
|
35759
36248
|
location: {
|
|
@@ -39468,6 +39957,10 @@ interface Routes {
|
|
|
39468
39957
|
device_name: string;
|
|
39469
39958
|
model_number: string;
|
|
39470
39959
|
} | undefined;
|
|
39960
|
+
/**
|
|
39961
|
+
---
|
|
39962
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
39963
|
+
*/
|
|
39471
39964
|
salto_metadata?: {
|
|
39472
39965
|
lock_id: string;
|
|
39473
39966
|
customer_reference: string;
|
|
@@ -39476,6 +39969,14 @@ interface Routes {
|
|
|
39476
39969
|
locked_state: string;
|
|
39477
39970
|
model?: string | undefined;
|
|
39478
39971
|
} | undefined;
|
|
39972
|
+
salto_ks_metadata?: {
|
|
39973
|
+
lock_id: string;
|
|
39974
|
+
customer_reference: string;
|
|
39975
|
+
lock_type: string;
|
|
39976
|
+
battery_level: string;
|
|
39977
|
+
locked_state: string;
|
|
39978
|
+
model?: string | undefined;
|
|
39979
|
+
} | undefined;
|
|
39479
39980
|
genie_metadata?: {
|
|
39480
39981
|
device_name: string;
|
|
39481
39982
|
door_name: string;
|
|
@@ -39730,6 +40231,12 @@ interface Routes {
|
|
|
39730
40231
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
39731
40232
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
39732
40233
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
40234
|
+
temperature_threshold?: ({
|
|
40235
|
+
lower_limit_celsius: number | null;
|
|
40236
|
+
lower_limit_fahrenheit: number | null;
|
|
40237
|
+
upper_limit_celsius: number | null;
|
|
40238
|
+
upper_limit_fahrenheit: number | null;
|
|
40239
|
+
} | undefined) | undefined;
|
|
39733
40240
|
});
|
|
39734
40241
|
/** Location information for the device. */
|
|
39735
40242
|
location: {
|
|
@@ -39934,6 +40441,10 @@ interface Routes {
|
|
|
39934
40441
|
device_name: string;
|
|
39935
40442
|
model_number: string;
|
|
39936
40443
|
} | undefined;
|
|
40444
|
+
/**
|
|
40445
|
+
---
|
|
40446
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
40447
|
+
*/
|
|
39937
40448
|
salto_metadata?: {
|
|
39938
40449
|
lock_id: string;
|
|
39939
40450
|
customer_reference: string;
|
|
@@ -39942,6 +40453,14 @@ interface Routes {
|
|
|
39942
40453
|
locked_state: string;
|
|
39943
40454
|
model?: string | undefined;
|
|
39944
40455
|
} | undefined;
|
|
40456
|
+
salto_ks_metadata?: {
|
|
40457
|
+
lock_id: string;
|
|
40458
|
+
customer_reference: string;
|
|
40459
|
+
lock_type: string;
|
|
40460
|
+
battery_level: string;
|
|
40461
|
+
locked_state: string;
|
|
40462
|
+
model?: string | undefined;
|
|
40463
|
+
} | undefined;
|
|
39945
40464
|
genie_metadata?: {
|
|
39946
40465
|
device_name: string;
|
|
39947
40466
|
door_name: string;
|
|
@@ -40196,6 +40715,12 @@ interface Routes {
|
|
|
40196
40715
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
40197
40716
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
40198
40717
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
40718
|
+
temperature_threshold?: ({
|
|
40719
|
+
lower_limit_celsius: number | null;
|
|
40720
|
+
lower_limit_fahrenheit: number | null;
|
|
40721
|
+
upper_limit_celsius: number | null;
|
|
40722
|
+
upper_limit_fahrenheit: number | null;
|
|
40723
|
+
} | undefined) | undefined;
|
|
40199
40724
|
});
|
|
40200
40725
|
/** Location information for the device. */
|
|
40201
40726
|
location: {
|
|
@@ -40619,8 +41144,8 @@ interface Routes {
|
|
|
40619
41144
|
device_ids?: string[] | undefined;
|
|
40620
41145
|
access_code_id?: string | undefined;
|
|
40621
41146
|
access_code_ids?: string[] | undefined;
|
|
40622
|
-
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted') | undefined;
|
|
40623
|
-
event_types?: Array<'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted'> | undefined;
|
|
41147
|
+
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded') | undefined;
|
|
41148
|
+
event_types?: Array<'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded'> | undefined;
|
|
40624
41149
|
connected_account_id?: string | undefined;
|
|
40625
41150
|
connect_webview_id?: string | undefined;
|
|
40626
41151
|
limit?: number;
|
|
@@ -40800,6 +41325,10 @@ interface Routes {
|
|
|
40800
41325
|
device_name: string;
|
|
40801
41326
|
model_number: string;
|
|
40802
41327
|
} | undefined;
|
|
41328
|
+
/**
|
|
41329
|
+
---
|
|
41330
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
41331
|
+
*/
|
|
40803
41332
|
salto_metadata?: {
|
|
40804
41333
|
lock_id: string;
|
|
40805
41334
|
customer_reference: string;
|
|
@@ -40808,6 +41337,14 @@ interface Routes {
|
|
|
40808
41337
|
locked_state: string;
|
|
40809
41338
|
model?: string | undefined;
|
|
40810
41339
|
} | undefined;
|
|
41340
|
+
salto_ks_metadata?: {
|
|
41341
|
+
lock_id: string;
|
|
41342
|
+
customer_reference: string;
|
|
41343
|
+
lock_type: string;
|
|
41344
|
+
battery_level: string;
|
|
41345
|
+
locked_state: string;
|
|
41346
|
+
model?: string | undefined;
|
|
41347
|
+
} | undefined;
|
|
40811
41348
|
genie_metadata?: {
|
|
40812
41349
|
device_name: string;
|
|
40813
41350
|
door_name: string;
|
|
@@ -41062,6 +41599,12 @@ interface Routes {
|
|
|
41062
41599
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
41063
41600
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
41064
41601
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
41602
|
+
temperature_threshold?: ({
|
|
41603
|
+
lower_limit_celsius: number | null;
|
|
41604
|
+
lower_limit_fahrenheit: number | null;
|
|
41605
|
+
upper_limit_celsius: number | null;
|
|
41606
|
+
upper_limit_fahrenheit: number | null;
|
|
41607
|
+
} | undefined) | undefined;
|
|
41065
41608
|
});
|
|
41066
41609
|
/** Location information for the device. */
|
|
41067
41610
|
location: {
|
|
@@ -41241,6 +41784,10 @@ interface Routes {
|
|
|
41241
41784
|
device_name: string;
|
|
41242
41785
|
model_number: string;
|
|
41243
41786
|
} | undefined;
|
|
41787
|
+
/**
|
|
41788
|
+
---
|
|
41789
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
41790
|
+
*/
|
|
41244
41791
|
salto_metadata?: {
|
|
41245
41792
|
lock_id: string;
|
|
41246
41793
|
customer_reference: string;
|
|
@@ -41249,6 +41796,14 @@ interface Routes {
|
|
|
41249
41796
|
locked_state: string;
|
|
41250
41797
|
model?: string | undefined;
|
|
41251
41798
|
} | undefined;
|
|
41799
|
+
salto_ks_metadata?: {
|
|
41800
|
+
lock_id: string;
|
|
41801
|
+
customer_reference: string;
|
|
41802
|
+
lock_type: string;
|
|
41803
|
+
battery_level: string;
|
|
41804
|
+
locked_state: string;
|
|
41805
|
+
model?: string | undefined;
|
|
41806
|
+
} | undefined;
|
|
41252
41807
|
genie_metadata?: {
|
|
41253
41808
|
device_name: string;
|
|
41254
41809
|
door_name: string;
|
|
@@ -41503,6 +42058,12 @@ interface Routes {
|
|
|
41503
42058
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
41504
42059
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
41505
42060
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
42061
|
+
temperature_threshold?: ({
|
|
42062
|
+
lower_limit_celsius: number | null;
|
|
42063
|
+
lower_limit_fahrenheit: number | null;
|
|
42064
|
+
upper_limit_celsius: number | null;
|
|
42065
|
+
upper_limit_fahrenheit: number | null;
|
|
42066
|
+
} | undefined) | undefined;
|
|
41506
42067
|
});
|
|
41507
42068
|
/** Location information for the device. */
|
|
41508
42069
|
location: {
|
|
@@ -41707,6 +42268,10 @@ interface Routes {
|
|
|
41707
42268
|
device_name: string;
|
|
41708
42269
|
model_number: string;
|
|
41709
42270
|
} | undefined;
|
|
42271
|
+
/**
|
|
42272
|
+
---
|
|
42273
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
42274
|
+
*/
|
|
41710
42275
|
salto_metadata?: {
|
|
41711
42276
|
lock_id: string;
|
|
41712
42277
|
customer_reference: string;
|
|
@@ -41715,6 +42280,14 @@ interface Routes {
|
|
|
41715
42280
|
locked_state: string;
|
|
41716
42281
|
model?: string | undefined;
|
|
41717
42282
|
} | undefined;
|
|
42283
|
+
salto_ks_metadata?: {
|
|
42284
|
+
lock_id: string;
|
|
42285
|
+
customer_reference: string;
|
|
42286
|
+
lock_type: string;
|
|
42287
|
+
battery_level: string;
|
|
42288
|
+
locked_state: string;
|
|
42289
|
+
model?: string | undefined;
|
|
42290
|
+
} | undefined;
|
|
41718
42291
|
genie_metadata?: {
|
|
41719
42292
|
device_name: string;
|
|
41720
42293
|
door_name: string;
|
|
@@ -41969,6 +42542,12 @@ interface Routes {
|
|
|
41969
42542
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
41970
42543
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
41971
42544
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
42545
|
+
temperature_threshold?: ({
|
|
42546
|
+
lower_limit_celsius: number | null;
|
|
42547
|
+
lower_limit_fahrenheit: number | null;
|
|
42548
|
+
upper_limit_celsius: number | null;
|
|
42549
|
+
upper_limit_fahrenheit: number | null;
|
|
42550
|
+
} | undefined) | undefined;
|
|
41972
42551
|
});
|
|
41973
42552
|
/** Location information for the device. */
|
|
41974
42553
|
location: {
|
|
@@ -42148,6 +42727,10 @@ interface Routes {
|
|
|
42148
42727
|
device_name: string;
|
|
42149
42728
|
model_number: string;
|
|
42150
42729
|
} | undefined;
|
|
42730
|
+
/**
|
|
42731
|
+
---
|
|
42732
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
42733
|
+
*/
|
|
42151
42734
|
salto_metadata?: {
|
|
42152
42735
|
lock_id: string;
|
|
42153
42736
|
customer_reference: string;
|
|
@@ -42156,6 +42739,14 @@ interface Routes {
|
|
|
42156
42739
|
locked_state: string;
|
|
42157
42740
|
model?: string | undefined;
|
|
42158
42741
|
} | undefined;
|
|
42742
|
+
salto_ks_metadata?: {
|
|
42743
|
+
lock_id: string;
|
|
42744
|
+
customer_reference: string;
|
|
42745
|
+
lock_type: string;
|
|
42746
|
+
battery_level: string;
|
|
42747
|
+
locked_state: string;
|
|
42748
|
+
model?: string | undefined;
|
|
42749
|
+
} | undefined;
|
|
42159
42750
|
genie_metadata?: {
|
|
42160
42751
|
device_name: string;
|
|
42161
42752
|
door_name: string;
|
|
@@ -42410,6 +43001,12 @@ interface Routes {
|
|
|
42410
43001
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
42411
43002
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
42412
43003
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
43004
|
+
temperature_threshold?: ({
|
|
43005
|
+
lower_limit_celsius: number | null;
|
|
43006
|
+
lower_limit_fahrenheit: number | null;
|
|
43007
|
+
upper_limit_celsius: number | null;
|
|
43008
|
+
upper_limit_fahrenheit: number | null;
|
|
43009
|
+
} | undefined) | undefined;
|
|
42413
43010
|
});
|
|
42414
43011
|
/** Location information for the device. */
|
|
42415
43012
|
location: {
|
|
@@ -43934,6 +44531,10 @@ interface Routes {
|
|
|
43934
44531
|
device_name: string;
|
|
43935
44532
|
model_number: string;
|
|
43936
44533
|
} | undefined;
|
|
44534
|
+
/**
|
|
44535
|
+
---
|
|
44536
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
44537
|
+
*/
|
|
43937
44538
|
salto_metadata?: {
|
|
43938
44539
|
lock_id: string;
|
|
43939
44540
|
customer_reference: string;
|
|
@@ -43942,6 +44543,14 @@ interface Routes {
|
|
|
43942
44543
|
locked_state: string;
|
|
43943
44544
|
model?: string | undefined;
|
|
43944
44545
|
} | undefined;
|
|
44546
|
+
salto_ks_metadata?: {
|
|
44547
|
+
lock_id: string;
|
|
44548
|
+
customer_reference: string;
|
|
44549
|
+
lock_type: string;
|
|
44550
|
+
battery_level: string;
|
|
44551
|
+
locked_state: string;
|
|
44552
|
+
model?: string | undefined;
|
|
44553
|
+
} | undefined;
|
|
43945
44554
|
genie_metadata?: {
|
|
43946
44555
|
device_name: string;
|
|
43947
44556
|
door_name: string;
|
|
@@ -44196,6 +44805,12 @@ interface Routes {
|
|
|
44196
44805
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
44197
44806
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
44198
44807
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
44808
|
+
temperature_threshold?: ({
|
|
44809
|
+
lower_limit_celsius: number | null;
|
|
44810
|
+
lower_limit_fahrenheit: number | null;
|
|
44811
|
+
upper_limit_celsius: number | null;
|
|
44812
|
+
upper_limit_fahrenheit: number | null;
|
|
44813
|
+
} | undefined) | undefined;
|
|
44199
44814
|
});
|
|
44200
44815
|
/** Location information for the device. */
|
|
44201
44816
|
location: {
|
|
@@ -44375,6 +44990,10 @@ interface Routes {
|
|
|
44375
44990
|
device_name: string;
|
|
44376
44991
|
model_number: string;
|
|
44377
44992
|
} | undefined;
|
|
44993
|
+
/**
|
|
44994
|
+
---
|
|
44995
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
44996
|
+
*/
|
|
44378
44997
|
salto_metadata?: {
|
|
44379
44998
|
lock_id: string;
|
|
44380
44999
|
customer_reference: string;
|
|
@@ -44383,6 +45002,14 @@ interface Routes {
|
|
|
44383
45002
|
locked_state: string;
|
|
44384
45003
|
model?: string | undefined;
|
|
44385
45004
|
} | undefined;
|
|
45005
|
+
salto_ks_metadata?: {
|
|
45006
|
+
lock_id: string;
|
|
45007
|
+
customer_reference: string;
|
|
45008
|
+
lock_type: string;
|
|
45009
|
+
battery_level: string;
|
|
45010
|
+
locked_state: string;
|
|
45011
|
+
model?: string | undefined;
|
|
45012
|
+
} | undefined;
|
|
44386
45013
|
genie_metadata?: {
|
|
44387
45014
|
device_name: string;
|
|
44388
45015
|
door_name: string;
|
|
@@ -44637,6 +45264,12 @@ interface Routes {
|
|
|
44637
45264
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
44638
45265
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
44639
45266
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
45267
|
+
temperature_threshold?: ({
|
|
45268
|
+
lower_limit_celsius: number | null;
|
|
45269
|
+
lower_limit_fahrenheit: number | null;
|
|
45270
|
+
upper_limit_celsius: number | null;
|
|
45271
|
+
upper_limit_fahrenheit: number | null;
|
|
45272
|
+
} | undefined) | undefined;
|
|
44640
45273
|
});
|
|
44641
45274
|
/** Location information for the device. */
|
|
44642
45275
|
location: {
|
|
@@ -48324,6 +48957,10 @@ interface Routes {
|
|
|
48324
48957
|
device_name: string;
|
|
48325
48958
|
model_number: string;
|
|
48326
48959
|
} | undefined;
|
|
48960
|
+
/**
|
|
48961
|
+
---
|
|
48962
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
48963
|
+
*/
|
|
48327
48964
|
salto_metadata?: {
|
|
48328
48965
|
lock_id: string;
|
|
48329
48966
|
customer_reference: string;
|
|
@@ -48332,6 +48969,14 @@ interface Routes {
|
|
|
48332
48969
|
locked_state: string;
|
|
48333
48970
|
model?: string | undefined;
|
|
48334
48971
|
} | undefined;
|
|
48972
|
+
salto_ks_metadata?: {
|
|
48973
|
+
lock_id: string;
|
|
48974
|
+
customer_reference: string;
|
|
48975
|
+
lock_type: string;
|
|
48976
|
+
battery_level: string;
|
|
48977
|
+
locked_state: string;
|
|
48978
|
+
model?: string | undefined;
|
|
48979
|
+
} | undefined;
|
|
48335
48980
|
genie_metadata?: {
|
|
48336
48981
|
device_name: string;
|
|
48337
48982
|
door_name: string;
|
|
@@ -48586,6 +49231,12 @@ interface Routes {
|
|
|
48586
49231
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
48587
49232
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
48588
49233
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
49234
|
+
temperature_threshold?: ({
|
|
49235
|
+
lower_limit_celsius: number | null;
|
|
49236
|
+
lower_limit_fahrenheit: number | null;
|
|
49237
|
+
upper_limit_celsius: number | null;
|
|
49238
|
+
upper_limit_fahrenheit: number | null;
|
|
49239
|
+
} | undefined) | undefined;
|
|
48589
49240
|
});
|
|
48590
49241
|
/** Location information for the device. */
|
|
48591
49242
|
location: {
|
|
@@ -50082,6 +50733,10 @@ interface Routes {
|
|
|
50082
50733
|
device_name: string;
|
|
50083
50734
|
model_number: string;
|
|
50084
50735
|
} | undefined;
|
|
50736
|
+
/**
|
|
50737
|
+
---
|
|
50738
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
50739
|
+
*/
|
|
50085
50740
|
salto_metadata?: {
|
|
50086
50741
|
lock_id: string;
|
|
50087
50742
|
customer_reference: string;
|
|
@@ -50090,6 +50745,14 @@ interface Routes {
|
|
|
50090
50745
|
locked_state: string;
|
|
50091
50746
|
model?: string | undefined;
|
|
50092
50747
|
} | undefined;
|
|
50748
|
+
salto_ks_metadata?: {
|
|
50749
|
+
lock_id: string;
|
|
50750
|
+
customer_reference: string;
|
|
50751
|
+
lock_type: string;
|
|
50752
|
+
battery_level: string;
|
|
50753
|
+
locked_state: string;
|
|
50754
|
+
model?: string | undefined;
|
|
50755
|
+
} | undefined;
|
|
50093
50756
|
genie_metadata?: {
|
|
50094
50757
|
device_name: string;
|
|
50095
50758
|
door_name: string;
|
|
@@ -50344,6 +51007,12 @@ interface Routes {
|
|
|
50344
51007
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
50345
51008
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
50346
51009
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
51010
|
+
temperature_threshold?: ({
|
|
51011
|
+
lower_limit_celsius: number | null;
|
|
51012
|
+
lower_limit_fahrenheit: number | null;
|
|
51013
|
+
upper_limit_celsius: number | null;
|
|
51014
|
+
upper_limit_fahrenheit: number | null;
|
|
51015
|
+
} | undefined) | undefined;
|
|
50347
51016
|
});
|
|
50348
51017
|
/** Location information for the device. */
|
|
50349
51018
|
location: {
|
|
@@ -50523,6 +51192,10 @@ interface Routes {
|
|
|
50523
51192
|
device_name: string;
|
|
50524
51193
|
model_number: string;
|
|
50525
51194
|
} | undefined;
|
|
51195
|
+
/**
|
|
51196
|
+
---
|
|
51197
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
51198
|
+
*/
|
|
50526
51199
|
salto_metadata?: {
|
|
50527
51200
|
lock_id: string;
|
|
50528
51201
|
customer_reference: string;
|
|
@@ -50531,6 +51204,14 @@ interface Routes {
|
|
|
50531
51204
|
locked_state: string;
|
|
50532
51205
|
model?: string | undefined;
|
|
50533
51206
|
} | undefined;
|
|
51207
|
+
salto_ks_metadata?: {
|
|
51208
|
+
lock_id: string;
|
|
51209
|
+
customer_reference: string;
|
|
51210
|
+
lock_type: string;
|
|
51211
|
+
battery_level: string;
|
|
51212
|
+
locked_state: string;
|
|
51213
|
+
model?: string | undefined;
|
|
51214
|
+
} | undefined;
|
|
50534
51215
|
genie_metadata?: {
|
|
50535
51216
|
device_name: string;
|
|
50536
51217
|
door_name: string;
|
|
@@ -50785,6 +51466,12 @@ interface Routes {
|
|
|
50785
51466
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
50786
51467
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
50787
51468
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
51469
|
+
temperature_threshold?: ({
|
|
51470
|
+
lower_limit_celsius: number | null;
|
|
51471
|
+
lower_limit_fahrenheit: number | null;
|
|
51472
|
+
upper_limit_celsius: number | null;
|
|
51473
|
+
upper_limit_fahrenheit: number | null;
|
|
51474
|
+
} | undefined) | undefined;
|
|
50788
51475
|
});
|
|
50789
51476
|
/** Location information for the device. */
|
|
50790
51477
|
location: {
|
|
@@ -52238,6 +52925,21 @@ interface Routes {
|
|
|
52238
52925
|
};
|
|
52239
52926
|
};
|
|
52240
52927
|
};
|
|
52928
|
+
'/thermostats/set_temperature_threshold': {
|
|
52929
|
+
route: '/thermostats/set_temperature_threshold';
|
|
52930
|
+
method: 'POST' | 'PATCH';
|
|
52931
|
+
queryParams: {};
|
|
52932
|
+
jsonBody: {
|
|
52933
|
+
device_id: string;
|
|
52934
|
+
lower_limit_celsius?: (number | undefined) | null;
|
|
52935
|
+
lower_limit_fahrenheit?: (number | undefined) | null;
|
|
52936
|
+
upper_limit_celsius?: (number | undefined) | null;
|
|
52937
|
+
upper_limit_fahrenheit?: (number | undefined) | null;
|
|
52938
|
+
};
|
|
52939
|
+
commonParams: {};
|
|
52940
|
+
formData: {};
|
|
52941
|
+
jsonResponse: {};
|
|
52942
|
+
};
|
|
52241
52943
|
'/thermostats/update_climate_preset': {
|
|
52242
52944
|
route: '/thermostats/update_climate_preset';
|
|
52243
52945
|
method: 'POST' | 'PATCH';
|
|
@@ -52582,6 +53284,10 @@ interface Routes {
|
|
|
52582
53284
|
device_name: string;
|
|
52583
53285
|
model_number: string;
|
|
52584
53286
|
} | undefined;
|
|
53287
|
+
/**
|
|
53288
|
+
---
|
|
53289
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
53290
|
+
*/
|
|
52585
53291
|
salto_metadata?: {
|
|
52586
53292
|
lock_id: string;
|
|
52587
53293
|
customer_reference: string;
|
|
@@ -52590,6 +53296,14 @@ interface Routes {
|
|
|
52590
53296
|
locked_state: string;
|
|
52591
53297
|
model?: string | undefined;
|
|
52592
53298
|
} | undefined;
|
|
53299
|
+
salto_ks_metadata?: {
|
|
53300
|
+
lock_id: string;
|
|
53301
|
+
customer_reference: string;
|
|
53302
|
+
lock_type: string;
|
|
53303
|
+
battery_level: string;
|
|
53304
|
+
locked_state: string;
|
|
53305
|
+
model?: string | undefined;
|
|
53306
|
+
} | undefined;
|
|
52593
53307
|
genie_metadata?: {
|
|
52594
53308
|
device_name: string;
|
|
52595
53309
|
door_name: string;
|
|
@@ -52844,6 +53558,12 @@ interface Routes {
|
|
|
52844
53558
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
52845
53559
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
52846
53560
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
53561
|
+
temperature_threshold?: ({
|
|
53562
|
+
lower_limit_celsius: number | null;
|
|
53563
|
+
lower_limit_fahrenheit: number | null;
|
|
53564
|
+
upper_limit_celsius: number | null;
|
|
53565
|
+
upper_limit_fahrenheit: number | null;
|
|
53566
|
+
} | undefined) | undefined;
|
|
52847
53567
|
});
|
|
52848
53568
|
/** Location information for the device. */
|
|
52849
53569
|
location: {
|
|
@@ -53025,6 +53745,10 @@ interface Routes {
|
|
|
53025
53745
|
device_name: string;
|
|
53026
53746
|
model_number: string;
|
|
53027
53747
|
} | undefined;
|
|
53748
|
+
/**
|
|
53749
|
+
---
|
|
53750
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
53751
|
+
*/
|
|
53028
53752
|
salto_metadata?: {
|
|
53029
53753
|
lock_id: string;
|
|
53030
53754
|
customer_reference: string;
|
|
@@ -53033,6 +53757,14 @@ interface Routes {
|
|
|
53033
53757
|
locked_state: string;
|
|
53034
53758
|
model?: string | undefined;
|
|
53035
53759
|
} | undefined;
|
|
53760
|
+
salto_ks_metadata?: {
|
|
53761
|
+
lock_id: string;
|
|
53762
|
+
customer_reference: string;
|
|
53763
|
+
lock_type: string;
|
|
53764
|
+
battery_level: string;
|
|
53765
|
+
locked_state: string;
|
|
53766
|
+
model?: string | undefined;
|
|
53767
|
+
} | undefined;
|
|
53036
53768
|
genie_metadata?: {
|
|
53037
53769
|
device_name: string;
|
|
53038
53770
|
door_name: string;
|
|
@@ -53287,6 +54019,12 @@ interface Routes {
|
|
|
53287
54019
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
53288
54020
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
53289
54021
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
54022
|
+
temperature_threshold?: ({
|
|
54023
|
+
lower_limit_celsius: number | null;
|
|
54024
|
+
lower_limit_fahrenheit: number | null;
|
|
54025
|
+
upper_limit_celsius: number | null;
|
|
54026
|
+
upper_limit_fahrenheit: number | null;
|
|
54027
|
+
} | undefined) | undefined;
|
|
53290
54028
|
});
|
|
53291
54029
|
/** Location information for the device. */
|
|
53292
54030
|
location: {
|