@seamapi/types 1.309.0 → 1.311.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 +43 -392
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +93 -2328
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +33 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +2 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +6 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +2 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +7 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -312
- package/lib/seam/connect/models/action-attempts/action-attempt.js +0 -8
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +25 -0
- package/lib/seam/connect/openapi.js +17 -305
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -2103
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +11 -0
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +0 -8
- package/src/lib/seam/connect/openapi.ts +17 -305
- package/src/lib/seam/connect/route-types.ts +45 -2268
- package/lib/seam/connect/models/action-attempts/set-cool.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-cool.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-cool.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-heat-cool.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-heat-cool.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-heat-cool.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-heat.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-heat.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-heat.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.js.map +0 -1
- package/src/lib/seam/connect/models/action-attempts/set-cool.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-heat-cool.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-heat.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-thermostat-off.ts +0 -36
package/dist/connect.d.cts
CHANGED
|
@@ -975,10 +975,16 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
975
975
|
}>>;
|
|
976
976
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
977
977
|
access_point_name: z.ZodString;
|
|
978
|
+
common_area_number: z.ZodOptional<z.ZodNumber>;
|
|
979
|
+
inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
978
980
|
}, "strip", z.ZodTypeAny, {
|
|
979
981
|
access_point_name: string;
|
|
982
|
+
common_area_number?: number | undefined;
|
|
983
|
+
inner_access_points_names?: string[] | undefined;
|
|
980
984
|
}, {
|
|
981
985
|
access_point_name: string;
|
|
986
|
+
common_area_number?: number | undefined;
|
|
987
|
+
inner_access_points_names?: string[] | undefined;
|
|
982
988
|
}>>;
|
|
983
989
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
984
990
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -999,6 +1005,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
999
1005
|
stand_open?: boolean | undefined;
|
|
1000
1006
|
pms_id?: string | undefined;
|
|
1001
1007
|
}>>;
|
|
1008
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
1009
|
+
door_name: z.ZodString;
|
|
1010
|
+
ext_door_id: z.ZodString;
|
|
1011
|
+
door_description: z.ZodOptional<z.ZodString>;
|
|
1012
|
+
}, "strip", z.ZodTypeAny, {
|
|
1013
|
+
door_name: string;
|
|
1014
|
+
ext_door_id: string;
|
|
1015
|
+
door_description?: string | undefined;
|
|
1016
|
+
}, {
|
|
1017
|
+
door_name: string;
|
|
1018
|
+
ext_door_id: string;
|
|
1019
|
+
door_description?: string | undefined;
|
|
1020
|
+
}>>;
|
|
1002
1021
|
}, "strip", z.ZodTypeAny, {
|
|
1003
1022
|
created_at: string;
|
|
1004
1023
|
errors: {
|
|
@@ -1041,6 +1060,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1041
1060
|
} | undefined;
|
|
1042
1061
|
dormakaba_community_metadata?: {
|
|
1043
1062
|
access_point_name: string;
|
|
1063
|
+
common_area_number?: number | undefined;
|
|
1064
|
+
inner_access_points_names?: string[] | undefined;
|
|
1065
|
+
} | undefined;
|
|
1066
|
+
salto_space_metadata?: {
|
|
1067
|
+
door_name: string;
|
|
1068
|
+
ext_door_id: string;
|
|
1069
|
+
door_description?: string | undefined;
|
|
1044
1070
|
} | undefined;
|
|
1045
1071
|
}, {
|
|
1046
1072
|
created_at: string;
|
|
@@ -1084,6 +1110,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1084
1110
|
} | undefined;
|
|
1085
1111
|
dormakaba_community_metadata?: {
|
|
1086
1112
|
access_point_name: string;
|
|
1113
|
+
common_area_number?: number | undefined;
|
|
1114
|
+
inner_access_points_names?: string[] | undefined;
|
|
1115
|
+
} | undefined;
|
|
1116
|
+
salto_space_metadata?: {
|
|
1117
|
+
door_name: string;
|
|
1118
|
+
ext_door_id: string;
|
|
1119
|
+
door_description?: string | undefined;
|
|
1087
1120
|
} | undefined;
|
|
1088
1121
|
}>;
|
|
1089
1122
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -4051,240 +4084,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4051
4084
|
status: z.ZodLiteral<"pending">;
|
|
4052
4085
|
result: z.ZodNull;
|
|
4053
4086
|
error: z.ZodNull;
|
|
4054
|
-
}>, {
|
|
4055
|
-
action_type: z.ZodLiteral<"SET_COOL">;
|
|
4056
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4057
|
-
status: "pending";
|
|
4058
|
-
action_attempt_id: string;
|
|
4059
|
-
error: null;
|
|
4060
|
-
result: null;
|
|
4061
|
-
action_type: "SET_COOL";
|
|
4062
|
-
}, {
|
|
4063
|
-
status: "pending";
|
|
4064
|
-
action_attempt_id: string;
|
|
4065
|
-
error: null;
|
|
4066
|
-
result: null;
|
|
4067
|
-
action_type: "SET_COOL";
|
|
4068
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4069
|
-
action_attempt_id: z.ZodString;
|
|
4070
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4071
|
-
}, {
|
|
4072
|
-
status: z.ZodLiteral<"success">;
|
|
4073
|
-
error: z.ZodNull;
|
|
4074
|
-
}>, {
|
|
4075
|
-
action_type: z.ZodLiteral<"SET_COOL">;
|
|
4076
|
-
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
4077
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4078
|
-
status: "success";
|
|
4079
|
-
action_attempt_id: string;
|
|
4080
|
-
error: null;
|
|
4081
|
-
result: {};
|
|
4082
|
-
action_type: "SET_COOL";
|
|
4083
|
-
}, {
|
|
4084
|
-
status: "success";
|
|
4085
|
-
action_attempt_id: string;
|
|
4086
|
-
error: null;
|
|
4087
|
-
result: {};
|
|
4088
|
-
action_type: "SET_COOL";
|
|
4089
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4090
|
-
action_attempt_id: z.ZodString;
|
|
4091
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4092
|
-
}, {
|
|
4093
|
-
status: z.ZodLiteral<"error">;
|
|
4094
|
-
result: z.ZodNull;
|
|
4095
|
-
}>, {
|
|
4096
|
-
action_type: z.ZodLiteral<"SET_COOL">;
|
|
4097
|
-
error: z.ZodObject<{
|
|
4098
|
-
type: z.ZodString;
|
|
4099
|
-
message: z.ZodString;
|
|
4100
|
-
}, "strip", z.ZodTypeAny, {
|
|
4101
|
-
message: string;
|
|
4102
|
-
type: string;
|
|
4103
|
-
}, {
|
|
4104
|
-
message: string;
|
|
4105
|
-
type: string;
|
|
4106
|
-
}>;
|
|
4107
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4108
|
-
status: "error";
|
|
4109
|
-
action_attempt_id: string;
|
|
4110
|
-
error: {
|
|
4111
|
-
message: string;
|
|
4112
|
-
type: string;
|
|
4113
|
-
};
|
|
4114
|
-
result: null;
|
|
4115
|
-
action_type: "SET_COOL";
|
|
4116
|
-
}, {
|
|
4117
|
-
status: "error";
|
|
4118
|
-
action_attempt_id: string;
|
|
4119
|
-
error: {
|
|
4120
|
-
message: string;
|
|
4121
|
-
type: string;
|
|
4122
|
-
};
|
|
4123
|
-
result: null;
|
|
4124
|
-
action_type: "SET_COOL";
|
|
4125
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4126
|
-
action_attempt_id: z.ZodString;
|
|
4127
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4128
|
-
}, {
|
|
4129
|
-
status: z.ZodLiteral<"pending">;
|
|
4130
|
-
result: z.ZodNull;
|
|
4131
|
-
error: z.ZodNull;
|
|
4132
|
-
}>, {
|
|
4133
|
-
action_type: z.ZodLiteral<"SET_HEAT">;
|
|
4134
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4135
|
-
status: "pending";
|
|
4136
|
-
action_attempt_id: string;
|
|
4137
|
-
error: null;
|
|
4138
|
-
result: null;
|
|
4139
|
-
action_type: "SET_HEAT";
|
|
4140
|
-
}, {
|
|
4141
|
-
status: "pending";
|
|
4142
|
-
action_attempt_id: string;
|
|
4143
|
-
error: null;
|
|
4144
|
-
result: null;
|
|
4145
|
-
action_type: "SET_HEAT";
|
|
4146
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4147
|
-
action_attempt_id: z.ZodString;
|
|
4148
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4149
|
-
}, {
|
|
4150
|
-
status: z.ZodLiteral<"success">;
|
|
4151
|
-
error: z.ZodNull;
|
|
4152
|
-
}>, {
|
|
4153
|
-
action_type: z.ZodLiteral<"SET_HEAT">;
|
|
4154
|
-
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
4155
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4156
|
-
status: "success";
|
|
4157
|
-
action_attempt_id: string;
|
|
4158
|
-
error: null;
|
|
4159
|
-
result: {};
|
|
4160
|
-
action_type: "SET_HEAT";
|
|
4161
|
-
}, {
|
|
4162
|
-
status: "success";
|
|
4163
|
-
action_attempt_id: string;
|
|
4164
|
-
error: null;
|
|
4165
|
-
result: {};
|
|
4166
|
-
action_type: "SET_HEAT";
|
|
4167
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4168
|
-
action_attempt_id: z.ZodString;
|
|
4169
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4170
|
-
}, {
|
|
4171
|
-
status: z.ZodLiteral<"error">;
|
|
4172
|
-
result: z.ZodNull;
|
|
4173
|
-
}>, {
|
|
4174
|
-
action_type: z.ZodLiteral<"SET_HEAT">;
|
|
4175
|
-
error: z.ZodObject<{
|
|
4176
|
-
type: z.ZodString;
|
|
4177
|
-
message: z.ZodString;
|
|
4178
|
-
}, "strip", z.ZodTypeAny, {
|
|
4179
|
-
message: string;
|
|
4180
|
-
type: string;
|
|
4181
|
-
}, {
|
|
4182
|
-
message: string;
|
|
4183
|
-
type: string;
|
|
4184
|
-
}>;
|
|
4185
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4186
|
-
status: "error";
|
|
4187
|
-
action_attempt_id: string;
|
|
4188
|
-
error: {
|
|
4189
|
-
message: string;
|
|
4190
|
-
type: string;
|
|
4191
|
-
};
|
|
4192
|
-
result: null;
|
|
4193
|
-
action_type: "SET_HEAT";
|
|
4194
|
-
}, {
|
|
4195
|
-
status: "error";
|
|
4196
|
-
action_attempt_id: string;
|
|
4197
|
-
error: {
|
|
4198
|
-
message: string;
|
|
4199
|
-
type: string;
|
|
4200
|
-
};
|
|
4201
|
-
result: null;
|
|
4202
|
-
action_type: "SET_HEAT";
|
|
4203
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4204
|
-
action_attempt_id: z.ZodString;
|
|
4205
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4206
|
-
}, {
|
|
4207
|
-
status: z.ZodLiteral<"pending">;
|
|
4208
|
-
result: z.ZodNull;
|
|
4209
|
-
error: z.ZodNull;
|
|
4210
|
-
}>, {
|
|
4211
|
-
action_type: z.ZodLiteral<"SET_HEAT_COOL">;
|
|
4212
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4213
|
-
status: "pending";
|
|
4214
|
-
action_attempt_id: string;
|
|
4215
|
-
error: null;
|
|
4216
|
-
result: null;
|
|
4217
|
-
action_type: "SET_HEAT_COOL";
|
|
4218
|
-
}, {
|
|
4219
|
-
status: "pending";
|
|
4220
|
-
action_attempt_id: string;
|
|
4221
|
-
error: null;
|
|
4222
|
-
result: null;
|
|
4223
|
-
action_type: "SET_HEAT_COOL";
|
|
4224
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4225
|
-
action_attempt_id: z.ZodString;
|
|
4226
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4227
|
-
}, {
|
|
4228
|
-
status: z.ZodLiteral<"success">;
|
|
4229
|
-
error: z.ZodNull;
|
|
4230
|
-
}>, {
|
|
4231
|
-
action_type: z.ZodLiteral<"SET_HEAT_COOL">;
|
|
4232
|
-
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
4233
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4234
|
-
status: "success";
|
|
4235
|
-
action_attempt_id: string;
|
|
4236
|
-
error: null;
|
|
4237
|
-
result: {};
|
|
4238
|
-
action_type: "SET_HEAT_COOL";
|
|
4239
|
-
}, {
|
|
4240
|
-
status: "success";
|
|
4241
|
-
action_attempt_id: string;
|
|
4242
|
-
error: null;
|
|
4243
|
-
result: {};
|
|
4244
|
-
action_type: "SET_HEAT_COOL";
|
|
4245
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4246
|
-
action_attempt_id: z.ZodString;
|
|
4247
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4248
|
-
}, {
|
|
4249
|
-
status: z.ZodLiteral<"error">;
|
|
4250
|
-
result: z.ZodNull;
|
|
4251
|
-
}>, {
|
|
4252
|
-
action_type: z.ZodLiteral<"SET_HEAT_COOL">;
|
|
4253
|
-
error: z.ZodObject<{
|
|
4254
|
-
type: z.ZodString;
|
|
4255
|
-
message: z.ZodString;
|
|
4256
|
-
}, "strip", z.ZodTypeAny, {
|
|
4257
|
-
message: string;
|
|
4258
|
-
type: string;
|
|
4259
|
-
}, {
|
|
4260
|
-
message: string;
|
|
4261
|
-
type: string;
|
|
4262
|
-
}>;
|
|
4263
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4264
|
-
status: "error";
|
|
4265
|
-
action_attempt_id: string;
|
|
4266
|
-
error: {
|
|
4267
|
-
message: string;
|
|
4268
|
-
type: string;
|
|
4269
|
-
};
|
|
4270
|
-
result: null;
|
|
4271
|
-
action_type: "SET_HEAT_COOL";
|
|
4272
|
-
}, {
|
|
4273
|
-
status: "error";
|
|
4274
|
-
action_attempt_id: string;
|
|
4275
|
-
error: {
|
|
4276
|
-
message: string;
|
|
4277
|
-
type: string;
|
|
4278
|
-
};
|
|
4279
|
-
result: null;
|
|
4280
|
-
action_type: "SET_HEAT_COOL";
|
|
4281
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4282
|
-
action_attempt_id: z.ZodString;
|
|
4283
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4284
|
-
}, {
|
|
4285
|
-
status: z.ZodLiteral<"pending">;
|
|
4286
|
-
result: z.ZodNull;
|
|
4287
|
-
error: z.ZodNull;
|
|
4288
4087
|
}>, {
|
|
4289
4088
|
action_type: z.ZodLiteral<"SET_FAN_MODE">;
|
|
4290
4089
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4363,84 +4162,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4363
4162
|
status: z.ZodLiteral<"pending">;
|
|
4364
4163
|
result: z.ZodNull;
|
|
4365
4164
|
error: z.ZodNull;
|
|
4366
|
-
}>, {
|
|
4367
|
-
action_type: z.ZodLiteral<"SET_THERMOSTAT_OFF">;
|
|
4368
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4369
|
-
status: "pending";
|
|
4370
|
-
action_attempt_id: string;
|
|
4371
|
-
error: null;
|
|
4372
|
-
result: null;
|
|
4373
|
-
action_type: "SET_THERMOSTAT_OFF";
|
|
4374
|
-
}, {
|
|
4375
|
-
status: "pending";
|
|
4376
|
-
action_attempt_id: string;
|
|
4377
|
-
error: null;
|
|
4378
|
-
result: null;
|
|
4379
|
-
action_type: "SET_THERMOSTAT_OFF";
|
|
4380
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4381
|
-
action_attempt_id: z.ZodString;
|
|
4382
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4383
|
-
}, {
|
|
4384
|
-
status: z.ZodLiteral<"success">;
|
|
4385
|
-
error: z.ZodNull;
|
|
4386
|
-
}>, {
|
|
4387
|
-
action_type: z.ZodLiteral<"SET_THERMOSTAT_OFF">;
|
|
4388
|
-
result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
4389
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4390
|
-
status: "success";
|
|
4391
|
-
action_attempt_id: string;
|
|
4392
|
-
error: null;
|
|
4393
|
-
result: {};
|
|
4394
|
-
action_type: "SET_THERMOSTAT_OFF";
|
|
4395
|
-
}, {
|
|
4396
|
-
status: "success";
|
|
4397
|
-
action_attempt_id: string;
|
|
4398
|
-
error: null;
|
|
4399
|
-
result: {};
|
|
4400
|
-
action_type: "SET_THERMOSTAT_OFF";
|
|
4401
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4402
|
-
action_attempt_id: z.ZodString;
|
|
4403
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4404
|
-
}, {
|
|
4405
|
-
status: z.ZodLiteral<"error">;
|
|
4406
|
-
result: z.ZodNull;
|
|
4407
|
-
}>, {
|
|
4408
|
-
action_type: z.ZodLiteral<"SET_THERMOSTAT_OFF">;
|
|
4409
|
-
error: z.ZodObject<{
|
|
4410
|
-
type: z.ZodString;
|
|
4411
|
-
message: z.ZodString;
|
|
4412
|
-
}, "strip", z.ZodTypeAny, {
|
|
4413
|
-
message: string;
|
|
4414
|
-
type: string;
|
|
4415
|
-
}, {
|
|
4416
|
-
message: string;
|
|
4417
|
-
type: string;
|
|
4418
|
-
}>;
|
|
4419
|
-
}>, "strip", z.ZodTypeAny, {
|
|
4420
|
-
status: "error";
|
|
4421
|
-
action_attempt_id: string;
|
|
4422
|
-
error: {
|
|
4423
|
-
message: string;
|
|
4424
|
-
type: string;
|
|
4425
|
-
};
|
|
4426
|
-
result: null;
|
|
4427
|
-
action_type: "SET_THERMOSTAT_OFF";
|
|
4428
|
-
}, {
|
|
4429
|
-
status: "error";
|
|
4430
|
-
action_attempt_id: string;
|
|
4431
|
-
error: {
|
|
4432
|
-
message: string;
|
|
4433
|
-
type: string;
|
|
4434
|
-
};
|
|
4435
|
-
result: null;
|
|
4436
|
-
action_type: "SET_THERMOSTAT_OFF";
|
|
4437
|
-
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
4438
|
-
action_attempt_id: z.ZodString;
|
|
4439
|
-
status: z.ZodEnum<["pending", "success", "error"]>;
|
|
4440
|
-
}, {
|
|
4441
|
-
status: z.ZodLiteral<"pending">;
|
|
4442
|
-
result: z.ZodNull;
|
|
4443
|
-
error: z.ZodNull;
|
|
4444
4165
|
}>, {
|
|
4445
4166
|
action_type: z.ZodLiteral<"SET_HVAC_MODE">;
|
|
4446
4167
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -13193,6 +12914,16 @@ declare const _default: {
|
|
|
13193
12914
|
access_point_name: {
|
|
13194
12915
|
type: string;
|
|
13195
12916
|
};
|
|
12917
|
+
common_area_number: {
|
|
12918
|
+
format: string;
|
|
12919
|
+
type: string;
|
|
12920
|
+
};
|
|
12921
|
+
inner_access_points_names: {
|
|
12922
|
+
items: {
|
|
12923
|
+
type: string;
|
|
12924
|
+
};
|
|
12925
|
+
type: string;
|
|
12926
|
+
};
|
|
13196
12927
|
};
|
|
13197
12928
|
required: string[];
|
|
13198
12929
|
type: string;
|
|
@@ -13260,6 +12991,21 @@ declare const _default: {
|
|
|
13260
12991
|
required: string[];
|
|
13261
12992
|
type: string;
|
|
13262
12993
|
};
|
|
12994
|
+
salto_space_metadata: {
|
|
12995
|
+
properties: {
|
|
12996
|
+
door_description: {
|
|
12997
|
+
type: string;
|
|
12998
|
+
};
|
|
12999
|
+
door_name: {
|
|
13000
|
+
type: string;
|
|
13001
|
+
};
|
|
13002
|
+
ext_door_id: {
|
|
13003
|
+
type: string;
|
|
13004
|
+
};
|
|
13005
|
+
};
|
|
13006
|
+
required: string[];
|
|
13007
|
+
type: string;
|
|
13008
|
+
};
|
|
13263
13009
|
visionline_metadata: {
|
|
13264
13010
|
properties: {
|
|
13265
13011
|
door_category: {
|
|
@@ -34009,78 +33755,6 @@ interface Routes {
|
|
|
34009
33755
|
type: string;
|
|
34010
33756
|
message: string;
|
|
34011
33757
|
};
|
|
34012
|
-
} | {
|
|
34013
|
-
/** The ID of the action attempt. */
|
|
34014
|
-
action_attempt_id: string;
|
|
34015
|
-
status: 'pending';
|
|
34016
|
-
result: null;
|
|
34017
|
-
error: null;
|
|
34018
|
-
action_type: 'SET_COOL';
|
|
34019
|
-
} | {
|
|
34020
|
-
/** The ID of the action attempt. */
|
|
34021
|
-
action_attempt_id: string;
|
|
34022
|
-
status: 'success';
|
|
34023
|
-
error: null;
|
|
34024
|
-
action_type: 'SET_COOL';
|
|
34025
|
-
result: {};
|
|
34026
|
-
} | {
|
|
34027
|
-
/** The ID of the action attempt. */
|
|
34028
|
-
action_attempt_id: string;
|
|
34029
|
-
status: 'error';
|
|
34030
|
-
result: null;
|
|
34031
|
-
action_type: 'SET_COOL';
|
|
34032
|
-
error: {
|
|
34033
|
-
type: string;
|
|
34034
|
-
message: string;
|
|
34035
|
-
};
|
|
34036
|
-
} | {
|
|
34037
|
-
/** The ID of the action attempt. */
|
|
34038
|
-
action_attempt_id: string;
|
|
34039
|
-
status: 'pending';
|
|
34040
|
-
result: null;
|
|
34041
|
-
error: null;
|
|
34042
|
-
action_type: 'SET_HEAT';
|
|
34043
|
-
} | {
|
|
34044
|
-
/** The ID of the action attempt. */
|
|
34045
|
-
action_attempt_id: string;
|
|
34046
|
-
status: 'success';
|
|
34047
|
-
error: null;
|
|
34048
|
-
action_type: 'SET_HEAT';
|
|
34049
|
-
result: {};
|
|
34050
|
-
} | {
|
|
34051
|
-
/** The ID of the action attempt. */
|
|
34052
|
-
action_attempt_id: string;
|
|
34053
|
-
status: 'error';
|
|
34054
|
-
result: null;
|
|
34055
|
-
action_type: 'SET_HEAT';
|
|
34056
|
-
error: {
|
|
34057
|
-
type: string;
|
|
34058
|
-
message: string;
|
|
34059
|
-
};
|
|
34060
|
-
} | {
|
|
34061
|
-
/** The ID of the action attempt. */
|
|
34062
|
-
action_attempt_id: string;
|
|
34063
|
-
status: 'pending';
|
|
34064
|
-
result: null;
|
|
34065
|
-
error: null;
|
|
34066
|
-
action_type: 'SET_HEAT_COOL';
|
|
34067
|
-
} | {
|
|
34068
|
-
/** The ID of the action attempt. */
|
|
34069
|
-
action_attempt_id: string;
|
|
34070
|
-
status: 'success';
|
|
34071
|
-
error: null;
|
|
34072
|
-
action_type: 'SET_HEAT_COOL';
|
|
34073
|
-
result: {};
|
|
34074
|
-
} | {
|
|
34075
|
-
/** The ID of the action attempt. */
|
|
34076
|
-
action_attempt_id: string;
|
|
34077
|
-
status: 'error';
|
|
34078
|
-
result: null;
|
|
34079
|
-
action_type: 'SET_HEAT_COOL';
|
|
34080
|
-
error: {
|
|
34081
|
-
type: string;
|
|
34082
|
-
message: string;
|
|
34083
|
-
};
|
|
34084
33758
|
} | {
|
|
34085
33759
|
/** The ID of the action attempt. */
|
|
34086
33760
|
action_attempt_id: string;
|
|
@@ -34105,30 +33779,6 @@ interface Routes {
|
|
|
34105
33779
|
type: string;
|
|
34106
33780
|
message: string;
|
|
34107
33781
|
};
|
|
34108
|
-
} | {
|
|
34109
|
-
/** The ID of the action attempt. */
|
|
34110
|
-
action_attempt_id: string;
|
|
34111
|
-
status: 'pending';
|
|
34112
|
-
result: null;
|
|
34113
|
-
error: null;
|
|
34114
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
34115
|
-
} | {
|
|
34116
|
-
/** The ID of the action attempt. */
|
|
34117
|
-
action_attempt_id: string;
|
|
34118
|
-
status: 'success';
|
|
34119
|
-
error: null;
|
|
34120
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
34121
|
-
result: {};
|
|
34122
|
-
} | {
|
|
34123
|
-
/** The ID of the action attempt. */
|
|
34124
|
-
action_attempt_id: string;
|
|
34125
|
-
status: 'error';
|
|
34126
|
-
result: null;
|
|
34127
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
34128
|
-
error: {
|
|
34129
|
-
type: string;
|
|
34130
|
-
message: string;
|
|
34131
|
-
};
|
|
34132
33782
|
} | {
|
|
34133
33783
|
/** The ID of the action attempt. */
|
|
34134
33784
|
action_attempt_id: string;
|
|
@@ -35032,78 +34682,6 @@ interface Routes {
|
|
|
35032
34682
|
type: string;
|
|
35033
34683
|
message: string;
|
|
35034
34684
|
};
|
|
35035
|
-
} | {
|
|
35036
|
-
/** The ID of the action attempt. */
|
|
35037
|
-
action_attempt_id: string;
|
|
35038
|
-
status: 'pending';
|
|
35039
|
-
result: null;
|
|
35040
|
-
error: null;
|
|
35041
|
-
action_type: 'SET_COOL';
|
|
35042
|
-
} | {
|
|
35043
|
-
/** The ID of the action attempt. */
|
|
35044
|
-
action_attempt_id: string;
|
|
35045
|
-
status: 'success';
|
|
35046
|
-
error: null;
|
|
35047
|
-
action_type: 'SET_COOL';
|
|
35048
|
-
result: {};
|
|
35049
|
-
} | {
|
|
35050
|
-
/** The ID of the action attempt. */
|
|
35051
|
-
action_attempt_id: string;
|
|
35052
|
-
status: 'error';
|
|
35053
|
-
result: null;
|
|
35054
|
-
action_type: 'SET_COOL';
|
|
35055
|
-
error: {
|
|
35056
|
-
type: string;
|
|
35057
|
-
message: string;
|
|
35058
|
-
};
|
|
35059
|
-
} | {
|
|
35060
|
-
/** The ID of the action attempt. */
|
|
35061
|
-
action_attempt_id: string;
|
|
35062
|
-
status: 'pending';
|
|
35063
|
-
result: null;
|
|
35064
|
-
error: null;
|
|
35065
|
-
action_type: 'SET_HEAT';
|
|
35066
|
-
} | {
|
|
35067
|
-
/** The ID of the action attempt. */
|
|
35068
|
-
action_attempt_id: string;
|
|
35069
|
-
status: 'success';
|
|
35070
|
-
error: null;
|
|
35071
|
-
action_type: 'SET_HEAT';
|
|
35072
|
-
result: {};
|
|
35073
|
-
} | {
|
|
35074
|
-
/** The ID of the action attempt. */
|
|
35075
|
-
action_attempt_id: string;
|
|
35076
|
-
status: 'error';
|
|
35077
|
-
result: null;
|
|
35078
|
-
action_type: 'SET_HEAT';
|
|
35079
|
-
error: {
|
|
35080
|
-
type: string;
|
|
35081
|
-
message: string;
|
|
35082
|
-
};
|
|
35083
|
-
} | {
|
|
35084
|
-
/** The ID of the action attempt. */
|
|
35085
|
-
action_attempt_id: string;
|
|
35086
|
-
status: 'pending';
|
|
35087
|
-
result: null;
|
|
35088
|
-
error: null;
|
|
35089
|
-
action_type: 'SET_HEAT_COOL';
|
|
35090
|
-
} | {
|
|
35091
|
-
/** The ID of the action attempt. */
|
|
35092
|
-
action_attempt_id: string;
|
|
35093
|
-
status: 'success';
|
|
35094
|
-
error: null;
|
|
35095
|
-
action_type: 'SET_HEAT_COOL';
|
|
35096
|
-
result: {};
|
|
35097
|
-
} | {
|
|
35098
|
-
/** The ID of the action attempt. */
|
|
35099
|
-
action_attempt_id: string;
|
|
35100
|
-
status: 'error';
|
|
35101
|
-
result: null;
|
|
35102
|
-
action_type: 'SET_HEAT_COOL';
|
|
35103
|
-
error: {
|
|
35104
|
-
type: string;
|
|
35105
|
-
message: string;
|
|
35106
|
-
};
|
|
35107
34685
|
} | {
|
|
35108
34686
|
/** The ID of the action attempt. */
|
|
35109
34687
|
action_attempt_id: string;
|
|
@@ -35128,30 +34706,6 @@ interface Routes {
|
|
|
35128
34706
|
type: string;
|
|
35129
34707
|
message: string;
|
|
35130
34708
|
};
|
|
35131
|
-
} | {
|
|
35132
|
-
/** The ID of the action attempt. */
|
|
35133
|
-
action_attempt_id: string;
|
|
35134
|
-
status: 'pending';
|
|
35135
|
-
result: null;
|
|
35136
|
-
error: null;
|
|
35137
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
35138
|
-
} | {
|
|
35139
|
-
/** The ID of the action attempt. */
|
|
35140
|
-
action_attempt_id: string;
|
|
35141
|
-
status: 'success';
|
|
35142
|
-
error: null;
|
|
35143
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
35144
|
-
result: {};
|
|
35145
|
-
} | {
|
|
35146
|
-
/** The ID of the action attempt. */
|
|
35147
|
-
action_attempt_id: string;
|
|
35148
|
-
status: 'error';
|
|
35149
|
-
result: null;
|
|
35150
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
35151
|
-
error: {
|
|
35152
|
-
type: string;
|
|
35153
|
-
message: string;
|
|
35154
|
-
};
|
|
35155
34709
|
} | {
|
|
35156
34710
|
/** The ID of the action attempt. */
|
|
35157
34711
|
action_attempt_id: string;
|
|
@@ -36273,78 +35827,6 @@ interface Routes {
|
|
|
36273
35827
|
type: string;
|
|
36274
35828
|
message: string;
|
|
36275
35829
|
};
|
|
36276
|
-
} | {
|
|
36277
|
-
/** The ID of the action attempt. */
|
|
36278
|
-
action_attempt_id: string;
|
|
36279
|
-
status: 'pending';
|
|
36280
|
-
result: null;
|
|
36281
|
-
error: null;
|
|
36282
|
-
action_type: 'SET_COOL';
|
|
36283
|
-
} | {
|
|
36284
|
-
/** The ID of the action attempt. */
|
|
36285
|
-
action_attempt_id: string;
|
|
36286
|
-
status: 'success';
|
|
36287
|
-
error: null;
|
|
36288
|
-
action_type: 'SET_COOL';
|
|
36289
|
-
result: {};
|
|
36290
|
-
} | {
|
|
36291
|
-
/** The ID of the action attempt. */
|
|
36292
|
-
action_attempt_id: string;
|
|
36293
|
-
status: 'error';
|
|
36294
|
-
result: null;
|
|
36295
|
-
action_type: 'SET_COOL';
|
|
36296
|
-
error: {
|
|
36297
|
-
type: string;
|
|
36298
|
-
message: string;
|
|
36299
|
-
};
|
|
36300
|
-
} | {
|
|
36301
|
-
/** The ID of the action attempt. */
|
|
36302
|
-
action_attempt_id: string;
|
|
36303
|
-
status: 'pending';
|
|
36304
|
-
result: null;
|
|
36305
|
-
error: null;
|
|
36306
|
-
action_type: 'SET_HEAT';
|
|
36307
|
-
} | {
|
|
36308
|
-
/** The ID of the action attempt. */
|
|
36309
|
-
action_attempt_id: string;
|
|
36310
|
-
status: 'success';
|
|
36311
|
-
error: null;
|
|
36312
|
-
action_type: 'SET_HEAT';
|
|
36313
|
-
result: {};
|
|
36314
|
-
} | {
|
|
36315
|
-
/** The ID of the action attempt. */
|
|
36316
|
-
action_attempt_id: string;
|
|
36317
|
-
status: 'error';
|
|
36318
|
-
result: null;
|
|
36319
|
-
action_type: 'SET_HEAT';
|
|
36320
|
-
error: {
|
|
36321
|
-
type: string;
|
|
36322
|
-
message: string;
|
|
36323
|
-
};
|
|
36324
|
-
} | {
|
|
36325
|
-
/** The ID of the action attempt. */
|
|
36326
|
-
action_attempt_id: string;
|
|
36327
|
-
status: 'pending';
|
|
36328
|
-
result: null;
|
|
36329
|
-
error: null;
|
|
36330
|
-
action_type: 'SET_HEAT_COOL';
|
|
36331
|
-
} | {
|
|
36332
|
-
/** The ID of the action attempt. */
|
|
36333
|
-
action_attempt_id: string;
|
|
36334
|
-
status: 'success';
|
|
36335
|
-
error: null;
|
|
36336
|
-
action_type: 'SET_HEAT_COOL';
|
|
36337
|
-
result: {};
|
|
36338
|
-
} | {
|
|
36339
|
-
/** The ID of the action attempt. */
|
|
36340
|
-
action_attempt_id: string;
|
|
36341
|
-
status: 'error';
|
|
36342
|
-
result: null;
|
|
36343
|
-
action_type: 'SET_HEAT_COOL';
|
|
36344
|
-
error: {
|
|
36345
|
-
type: string;
|
|
36346
|
-
message: string;
|
|
36347
|
-
};
|
|
36348
35830
|
} | {
|
|
36349
35831
|
/** The ID of the action attempt. */
|
|
36350
35832
|
action_attempt_id: string;
|
|
@@ -36369,30 +35851,6 @@ interface Routes {
|
|
|
36369
35851
|
type: string;
|
|
36370
35852
|
message: string;
|
|
36371
35853
|
};
|
|
36372
|
-
} | {
|
|
36373
|
-
/** The ID of the action attempt. */
|
|
36374
|
-
action_attempt_id: string;
|
|
36375
|
-
status: 'pending';
|
|
36376
|
-
result: null;
|
|
36377
|
-
error: null;
|
|
36378
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
36379
|
-
} | {
|
|
36380
|
-
/** The ID of the action attempt. */
|
|
36381
|
-
action_attempt_id: string;
|
|
36382
|
-
status: 'success';
|
|
36383
|
-
error: null;
|
|
36384
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
36385
|
-
result: {};
|
|
36386
|
-
} | {
|
|
36387
|
-
/** The ID of the action attempt. */
|
|
36388
|
-
action_attempt_id: string;
|
|
36389
|
-
status: 'error';
|
|
36390
|
-
result: null;
|
|
36391
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
36392
|
-
error: {
|
|
36393
|
-
type: string;
|
|
36394
|
-
message: string;
|
|
36395
|
-
};
|
|
36396
35854
|
} | {
|
|
36397
35855
|
/** The ID of the action attempt. */
|
|
36398
35856
|
action_attempt_id: string;
|
|
@@ -37283,78 +36741,6 @@ interface Routes {
|
|
|
37283
36741
|
type: string;
|
|
37284
36742
|
message: string;
|
|
37285
36743
|
};
|
|
37286
|
-
} | {
|
|
37287
|
-
/** The ID of the action attempt. */
|
|
37288
|
-
action_attempt_id: string;
|
|
37289
|
-
status: 'pending';
|
|
37290
|
-
result: null;
|
|
37291
|
-
error: null;
|
|
37292
|
-
action_type: 'SET_COOL';
|
|
37293
|
-
} | {
|
|
37294
|
-
/** The ID of the action attempt. */
|
|
37295
|
-
action_attempt_id: string;
|
|
37296
|
-
status: 'success';
|
|
37297
|
-
error: null;
|
|
37298
|
-
action_type: 'SET_COOL';
|
|
37299
|
-
result: {};
|
|
37300
|
-
} | {
|
|
37301
|
-
/** The ID of the action attempt. */
|
|
37302
|
-
action_attempt_id: string;
|
|
37303
|
-
status: 'error';
|
|
37304
|
-
result: null;
|
|
37305
|
-
action_type: 'SET_COOL';
|
|
37306
|
-
error: {
|
|
37307
|
-
type: string;
|
|
37308
|
-
message: string;
|
|
37309
|
-
};
|
|
37310
|
-
} | {
|
|
37311
|
-
/** The ID of the action attempt. */
|
|
37312
|
-
action_attempt_id: string;
|
|
37313
|
-
status: 'pending';
|
|
37314
|
-
result: null;
|
|
37315
|
-
error: null;
|
|
37316
|
-
action_type: 'SET_HEAT';
|
|
37317
|
-
} | {
|
|
37318
|
-
/** The ID of the action attempt. */
|
|
37319
|
-
action_attempt_id: string;
|
|
37320
|
-
status: 'success';
|
|
37321
|
-
error: null;
|
|
37322
|
-
action_type: 'SET_HEAT';
|
|
37323
|
-
result: {};
|
|
37324
|
-
} | {
|
|
37325
|
-
/** The ID of the action attempt. */
|
|
37326
|
-
action_attempt_id: string;
|
|
37327
|
-
status: 'error';
|
|
37328
|
-
result: null;
|
|
37329
|
-
action_type: 'SET_HEAT';
|
|
37330
|
-
error: {
|
|
37331
|
-
type: string;
|
|
37332
|
-
message: string;
|
|
37333
|
-
};
|
|
37334
|
-
} | {
|
|
37335
|
-
/** The ID of the action attempt. */
|
|
37336
|
-
action_attempt_id: string;
|
|
37337
|
-
status: 'pending';
|
|
37338
|
-
result: null;
|
|
37339
|
-
error: null;
|
|
37340
|
-
action_type: 'SET_HEAT_COOL';
|
|
37341
|
-
} | {
|
|
37342
|
-
/** The ID of the action attempt. */
|
|
37343
|
-
action_attempt_id: string;
|
|
37344
|
-
status: 'success';
|
|
37345
|
-
error: null;
|
|
37346
|
-
action_type: 'SET_HEAT_COOL';
|
|
37347
|
-
result: {};
|
|
37348
|
-
} | {
|
|
37349
|
-
/** The ID of the action attempt. */
|
|
37350
|
-
action_attempt_id: string;
|
|
37351
|
-
status: 'error';
|
|
37352
|
-
result: null;
|
|
37353
|
-
action_type: 'SET_HEAT_COOL';
|
|
37354
|
-
error: {
|
|
37355
|
-
type: string;
|
|
37356
|
-
message: string;
|
|
37357
|
-
};
|
|
37358
36744
|
} | {
|
|
37359
36745
|
/** The ID of the action attempt. */
|
|
37360
36746
|
action_attempt_id: string;
|
|
@@ -37379,30 +36765,6 @@ interface Routes {
|
|
|
37379
36765
|
type: string;
|
|
37380
36766
|
message: string;
|
|
37381
36767
|
};
|
|
37382
|
-
} | {
|
|
37383
|
-
/** The ID of the action attempt. */
|
|
37384
|
-
action_attempt_id: string;
|
|
37385
|
-
status: 'pending';
|
|
37386
|
-
result: null;
|
|
37387
|
-
error: null;
|
|
37388
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
37389
|
-
} | {
|
|
37390
|
-
/** The ID of the action attempt. */
|
|
37391
|
-
action_attempt_id: string;
|
|
37392
|
-
status: 'success';
|
|
37393
|
-
error: null;
|
|
37394
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
37395
|
-
result: {};
|
|
37396
|
-
} | {
|
|
37397
|
-
/** The ID of the action attempt. */
|
|
37398
|
-
action_attempt_id: string;
|
|
37399
|
-
status: 'error';
|
|
37400
|
-
result: null;
|
|
37401
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
37402
|
-
error: {
|
|
37403
|
-
type: string;
|
|
37404
|
-
message: string;
|
|
37405
|
-
};
|
|
37406
36768
|
} | {
|
|
37407
36769
|
/** The ID of the action attempt. */
|
|
37408
36770
|
action_attempt_id: string;
|
|
@@ -37786,6 +37148,8 @@ interface Routes {
|
|
|
37786
37148
|
} | undefined;
|
|
37787
37149
|
dormakaba_community_metadata?: {
|
|
37788
37150
|
access_point_name: string;
|
|
37151
|
+
common_area_number?: number | undefined;
|
|
37152
|
+
inner_access_points_names?: string[] | undefined;
|
|
37789
37153
|
} | undefined;
|
|
37790
37154
|
assa_abloy_vostio_metadata?: {
|
|
37791
37155
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -37794,6 +37158,11 @@ interface Routes {
|
|
|
37794
37158
|
stand_open?: boolean | undefined;
|
|
37795
37159
|
pms_id?: string | undefined;
|
|
37796
37160
|
} | undefined;
|
|
37161
|
+
salto_space_metadata?: {
|
|
37162
|
+
door_name: string;
|
|
37163
|
+
ext_door_id: string;
|
|
37164
|
+
door_description?: string | undefined;
|
|
37165
|
+
} | undefined;
|
|
37797
37166
|
}>;
|
|
37798
37167
|
};
|
|
37799
37168
|
};
|
|
@@ -38666,6 +38035,8 @@ interface Routes {
|
|
|
38666
38035
|
} | undefined;
|
|
38667
38036
|
dormakaba_community_metadata?: {
|
|
38668
38037
|
access_point_name: string;
|
|
38038
|
+
common_area_number?: number | undefined;
|
|
38039
|
+
inner_access_points_names?: string[] | undefined;
|
|
38669
38040
|
} | undefined;
|
|
38670
38041
|
assa_abloy_vostio_metadata?: {
|
|
38671
38042
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -38674,6 +38045,11 @@ interface Routes {
|
|
|
38674
38045
|
stand_open?: boolean | undefined;
|
|
38675
38046
|
pms_id?: string | undefined;
|
|
38676
38047
|
} | undefined;
|
|
38048
|
+
salto_space_metadata?: {
|
|
38049
|
+
door_name: string;
|
|
38050
|
+
ext_door_id: string;
|
|
38051
|
+
door_description?: string | undefined;
|
|
38052
|
+
} | undefined;
|
|
38677
38053
|
}>;
|
|
38678
38054
|
};
|
|
38679
38055
|
};
|
|
@@ -39628,78 +39004,6 @@ interface Routes {
|
|
|
39628
39004
|
type: string;
|
|
39629
39005
|
message: string;
|
|
39630
39006
|
};
|
|
39631
|
-
} | {
|
|
39632
|
-
/** The ID of the action attempt. */
|
|
39633
|
-
action_attempt_id: string;
|
|
39634
|
-
status: 'pending';
|
|
39635
|
-
result: null;
|
|
39636
|
-
error: null;
|
|
39637
|
-
action_type: 'SET_COOL';
|
|
39638
|
-
} | {
|
|
39639
|
-
/** The ID of the action attempt. */
|
|
39640
|
-
action_attempt_id: string;
|
|
39641
|
-
status: 'success';
|
|
39642
|
-
error: null;
|
|
39643
|
-
action_type: 'SET_COOL';
|
|
39644
|
-
result: {};
|
|
39645
|
-
} | {
|
|
39646
|
-
/** The ID of the action attempt. */
|
|
39647
|
-
action_attempt_id: string;
|
|
39648
|
-
status: 'error';
|
|
39649
|
-
result: null;
|
|
39650
|
-
action_type: 'SET_COOL';
|
|
39651
|
-
error: {
|
|
39652
|
-
type: string;
|
|
39653
|
-
message: string;
|
|
39654
|
-
};
|
|
39655
|
-
} | {
|
|
39656
|
-
/** The ID of the action attempt. */
|
|
39657
|
-
action_attempt_id: string;
|
|
39658
|
-
status: 'pending';
|
|
39659
|
-
result: null;
|
|
39660
|
-
error: null;
|
|
39661
|
-
action_type: 'SET_HEAT';
|
|
39662
|
-
} | {
|
|
39663
|
-
/** The ID of the action attempt. */
|
|
39664
|
-
action_attempt_id: string;
|
|
39665
|
-
status: 'success';
|
|
39666
|
-
error: null;
|
|
39667
|
-
action_type: 'SET_HEAT';
|
|
39668
|
-
result: {};
|
|
39669
|
-
} | {
|
|
39670
|
-
/** The ID of the action attempt. */
|
|
39671
|
-
action_attempt_id: string;
|
|
39672
|
-
status: 'error';
|
|
39673
|
-
result: null;
|
|
39674
|
-
action_type: 'SET_HEAT';
|
|
39675
|
-
error: {
|
|
39676
|
-
type: string;
|
|
39677
|
-
message: string;
|
|
39678
|
-
};
|
|
39679
|
-
} | {
|
|
39680
|
-
/** The ID of the action attempt. */
|
|
39681
|
-
action_attempt_id: string;
|
|
39682
|
-
status: 'pending';
|
|
39683
|
-
result: null;
|
|
39684
|
-
error: null;
|
|
39685
|
-
action_type: 'SET_HEAT_COOL';
|
|
39686
|
-
} | {
|
|
39687
|
-
/** The ID of the action attempt. */
|
|
39688
|
-
action_attempt_id: string;
|
|
39689
|
-
status: 'success';
|
|
39690
|
-
error: null;
|
|
39691
|
-
action_type: 'SET_HEAT_COOL';
|
|
39692
|
-
result: {};
|
|
39693
|
-
} | {
|
|
39694
|
-
/** The ID of the action attempt. */
|
|
39695
|
-
action_attempt_id: string;
|
|
39696
|
-
status: 'error';
|
|
39697
|
-
result: null;
|
|
39698
|
-
action_type: 'SET_HEAT_COOL';
|
|
39699
|
-
error: {
|
|
39700
|
-
type: string;
|
|
39701
|
-
message: string;
|
|
39702
|
-
};
|
|
39703
39007
|
} | {
|
|
39704
39008
|
/** The ID of the action attempt. */
|
|
39705
39009
|
action_attempt_id: string;
|
|
@@ -39724,30 +39028,6 @@ interface Routes {
|
|
|
39724
39028
|
type: string;
|
|
39725
39029
|
message: string;
|
|
39726
39030
|
};
|
|
39727
|
-
} | {
|
|
39728
|
-
/** The ID of the action attempt. */
|
|
39729
|
-
action_attempt_id: string;
|
|
39730
|
-
status: 'pending';
|
|
39731
|
-
result: null;
|
|
39732
|
-
error: null;
|
|
39733
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
39734
|
-
} | {
|
|
39735
|
-
/** The ID of the action attempt. */
|
|
39736
|
-
action_attempt_id: string;
|
|
39737
|
-
status: 'success';
|
|
39738
|
-
error: null;
|
|
39739
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
39740
|
-
result: {};
|
|
39741
|
-
} | {
|
|
39742
|
-
/** The ID of the action attempt. */
|
|
39743
|
-
action_attempt_id: string;
|
|
39744
|
-
status: 'error';
|
|
39745
|
-
result: null;
|
|
39746
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
39747
|
-
error: {
|
|
39748
|
-
type: string;
|
|
39749
|
-
message: string;
|
|
39750
|
-
};
|
|
39751
39031
|
} | {
|
|
39752
39032
|
/** The ID of the action attempt. */
|
|
39753
39033
|
action_attempt_id: string;
|
|
@@ -40545,78 +39825,6 @@ interface Routes {
|
|
|
40545
39825
|
type: string;
|
|
40546
39826
|
message: string;
|
|
40547
39827
|
};
|
|
40548
|
-
} | {
|
|
40549
|
-
/** The ID of the action attempt. */
|
|
40550
|
-
action_attempt_id: string;
|
|
40551
|
-
status: 'pending';
|
|
40552
|
-
result: null;
|
|
40553
|
-
error: null;
|
|
40554
|
-
action_type: 'SET_COOL';
|
|
40555
|
-
} | {
|
|
40556
|
-
/** The ID of the action attempt. */
|
|
40557
|
-
action_attempt_id: string;
|
|
40558
|
-
status: 'success';
|
|
40559
|
-
error: null;
|
|
40560
|
-
action_type: 'SET_COOL';
|
|
40561
|
-
result: {};
|
|
40562
|
-
} | {
|
|
40563
|
-
/** The ID of the action attempt. */
|
|
40564
|
-
action_attempt_id: string;
|
|
40565
|
-
status: 'error';
|
|
40566
|
-
result: null;
|
|
40567
|
-
action_type: 'SET_COOL';
|
|
40568
|
-
error: {
|
|
40569
|
-
type: string;
|
|
40570
|
-
message: string;
|
|
40571
|
-
};
|
|
40572
|
-
} | {
|
|
40573
|
-
/** The ID of the action attempt. */
|
|
40574
|
-
action_attempt_id: string;
|
|
40575
|
-
status: 'pending';
|
|
40576
|
-
result: null;
|
|
40577
|
-
error: null;
|
|
40578
|
-
action_type: 'SET_HEAT';
|
|
40579
|
-
} | {
|
|
40580
|
-
/** The ID of the action attempt. */
|
|
40581
|
-
action_attempt_id: string;
|
|
40582
|
-
status: 'success';
|
|
40583
|
-
error: null;
|
|
40584
|
-
action_type: 'SET_HEAT';
|
|
40585
|
-
result: {};
|
|
40586
|
-
} | {
|
|
40587
|
-
/** The ID of the action attempt. */
|
|
40588
|
-
action_attempt_id: string;
|
|
40589
|
-
status: 'error';
|
|
40590
|
-
result: null;
|
|
40591
|
-
action_type: 'SET_HEAT';
|
|
40592
|
-
error: {
|
|
40593
|
-
type: string;
|
|
40594
|
-
message: string;
|
|
40595
|
-
};
|
|
40596
|
-
} | {
|
|
40597
|
-
/** The ID of the action attempt. */
|
|
40598
|
-
action_attempt_id: string;
|
|
40599
|
-
status: 'pending';
|
|
40600
|
-
result: null;
|
|
40601
|
-
error: null;
|
|
40602
|
-
action_type: 'SET_HEAT_COOL';
|
|
40603
|
-
} | {
|
|
40604
|
-
/** The ID of the action attempt. */
|
|
40605
|
-
action_attempt_id: string;
|
|
40606
|
-
status: 'success';
|
|
40607
|
-
error: null;
|
|
40608
|
-
action_type: 'SET_HEAT_COOL';
|
|
40609
|
-
result: {};
|
|
40610
|
-
} | {
|
|
40611
|
-
/** The ID of the action attempt. */
|
|
40612
|
-
action_attempt_id: string;
|
|
40613
|
-
status: 'error';
|
|
40614
|
-
result: null;
|
|
40615
|
-
action_type: 'SET_HEAT_COOL';
|
|
40616
|
-
error: {
|
|
40617
|
-
type: string;
|
|
40618
|
-
message: string;
|
|
40619
|
-
};
|
|
40620
39828
|
} | {
|
|
40621
39829
|
/** The ID of the action attempt. */
|
|
40622
39830
|
action_attempt_id: string;
|
|
@@ -40641,30 +39849,6 @@ interface Routes {
|
|
|
40641
39849
|
type: string;
|
|
40642
39850
|
message: string;
|
|
40643
39851
|
};
|
|
40644
|
-
} | {
|
|
40645
|
-
/** The ID of the action attempt. */
|
|
40646
|
-
action_attempt_id: string;
|
|
40647
|
-
status: 'pending';
|
|
40648
|
-
result: null;
|
|
40649
|
-
error: null;
|
|
40650
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
40651
|
-
} | {
|
|
40652
|
-
/** The ID of the action attempt. */
|
|
40653
|
-
action_attempt_id: string;
|
|
40654
|
-
status: 'success';
|
|
40655
|
-
error: null;
|
|
40656
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
40657
|
-
result: {};
|
|
40658
|
-
} | {
|
|
40659
|
-
/** The ID of the action attempt. */
|
|
40660
|
-
action_attempt_id: string;
|
|
40661
|
-
status: 'error';
|
|
40662
|
-
result: null;
|
|
40663
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
40664
|
-
error: {
|
|
40665
|
-
type: string;
|
|
40666
|
-
message: string;
|
|
40667
|
-
};
|
|
40668
39852
|
} | {
|
|
40669
39853
|
/** The ID of the action attempt. */
|
|
40670
39854
|
action_attempt_id: string;
|
|
@@ -40942,6 +40126,8 @@ interface Routes {
|
|
|
40942
40126
|
} | undefined;
|
|
40943
40127
|
dormakaba_community_metadata?: {
|
|
40944
40128
|
access_point_name: string;
|
|
40129
|
+
common_area_number?: number | undefined;
|
|
40130
|
+
inner_access_points_names?: string[] | undefined;
|
|
40945
40131
|
} | undefined;
|
|
40946
40132
|
assa_abloy_vostio_metadata?: {
|
|
40947
40133
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -40950,6 +40136,11 @@ interface Routes {
|
|
|
40950
40136
|
stand_open?: boolean | undefined;
|
|
40951
40137
|
pms_id?: string | undefined;
|
|
40952
40138
|
} | undefined;
|
|
40139
|
+
salto_space_metadata?: {
|
|
40140
|
+
door_name: string;
|
|
40141
|
+
ext_door_id: string;
|
|
40142
|
+
door_description?: string | undefined;
|
|
40143
|
+
} | undefined;
|
|
40953
40144
|
};
|
|
40954
40145
|
};
|
|
40955
40146
|
};
|
|
@@ -41015,6 +40206,8 @@ interface Routes {
|
|
|
41015
40206
|
} | undefined;
|
|
41016
40207
|
dormakaba_community_metadata?: {
|
|
41017
40208
|
access_point_name: string;
|
|
40209
|
+
common_area_number?: number | undefined;
|
|
40210
|
+
inner_access_points_names?: string[] | undefined;
|
|
41018
40211
|
} | undefined;
|
|
41019
40212
|
assa_abloy_vostio_metadata?: {
|
|
41020
40213
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -41023,6 +40216,11 @@ interface Routes {
|
|
|
41023
40216
|
stand_open?: boolean | undefined;
|
|
41024
40217
|
pms_id?: string | undefined;
|
|
41025
40218
|
} | undefined;
|
|
40219
|
+
salto_space_metadata?: {
|
|
40220
|
+
door_name: string;
|
|
40221
|
+
ext_door_id: string;
|
|
40222
|
+
door_description?: string | undefined;
|
|
40223
|
+
} | undefined;
|
|
41026
40224
|
}>;
|
|
41027
40225
|
};
|
|
41028
40226
|
};
|
|
@@ -41909,6 +41107,8 @@ interface Routes {
|
|
|
41909
41107
|
} | undefined;
|
|
41910
41108
|
dormakaba_community_metadata?: {
|
|
41911
41109
|
access_point_name: string;
|
|
41110
|
+
common_area_number?: number | undefined;
|
|
41111
|
+
inner_access_points_names?: string[] | undefined;
|
|
41912
41112
|
} | undefined;
|
|
41913
41113
|
assa_abloy_vostio_metadata?: {
|
|
41914
41114
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -41917,6 +41117,11 @@ interface Routes {
|
|
|
41917
41117
|
stand_open?: boolean | undefined;
|
|
41918
41118
|
pms_id?: string | undefined;
|
|
41919
41119
|
} | undefined;
|
|
41120
|
+
salto_space_metadata?: {
|
|
41121
|
+
door_name: string;
|
|
41122
|
+
ext_door_id: string;
|
|
41123
|
+
door_description?: string | undefined;
|
|
41124
|
+
} | undefined;
|
|
41920
41125
|
}>;
|
|
41921
41126
|
};
|
|
41922
41127
|
};
|
|
@@ -42731,78 +41936,6 @@ interface Routes {
|
|
|
42731
41936
|
type: string;
|
|
42732
41937
|
message: string;
|
|
42733
41938
|
};
|
|
42734
|
-
} | {
|
|
42735
|
-
/** The ID of the action attempt. */
|
|
42736
|
-
action_attempt_id: string;
|
|
42737
|
-
status: 'pending';
|
|
42738
|
-
result: null;
|
|
42739
|
-
error: null;
|
|
42740
|
-
action_type: 'SET_COOL';
|
|
42741
|
-
} | {
|
|
42742
|
-
/** The ID of the action attempt. */
|
|
42743
|
-
action_attempt_id: string;
|
|
42744
|
-
status: 'success';
|
|
42745
|
-
error: null;
|
|
42746
|
-
action_type: 'SET_COOL';
|
|
42747
|
-
result: {};
|
|
42748
|
-
} | {
|
|
42749
|
-
/** The ID of the action attempt. */
|
|
42750
|
-
action_attempt_id: string;
|
|
42751
|
-
status: 'error';
|
|
42752
|
-
result: null;
|
|
42753
|
-
action_type: 'SET_COOL';
|
|
42754
|
-
error: {
|
|
42755
|
-
type: string;
|
|
42756
|
-
message: string;
|
|
42757
|
-
};
|
|
42758
|
-
} | {
|
|
42759
|
-
/** The ID of the action attempt. */
|
|
42760
|
-
action_attempt_id: string;
|
|
42761
|
-
status: 'pending';
|
|
42762
|
-
result: null;
|
|
42763
|
-
error: null;
|
|
42764
|
-
action_type: 'SET_HEAT';
|
|
42765
|
-
} | {
|
|
42766
|
-
/** The ID of the action attempt. */
|
|
42767
|
-
action_attempt_id: string;
|
|
42768
|
-
status: 'success';
|
|
42769
|
-
error: null;
|
|
42770
|
-
action_type: 'SET_HEAT';
|
|
42771
|
-
result: {};
|
|
42772
|
-
} | {
|
|
42773
|
-
/** The ID of the action attempt. */
|
|
42774
|
-
action_attempt_id: string;
|
|
42775
|
-
status: 'error';
|
|
42776
|
-
result: null;
|
|
42777
|
-
action_type: 'SET_HEAT';
|
|
42778
|
-
error: {
|
|
42779
|
-
type: string;
|
|
42780
|
-
message: string;
|
|
42781
|
-
};
|
|
42782
|
-
} | {
|
|
42783
|
-
/** The ID of the action attempt. */
|
|
42784
|
-
action_attempt_id: string;
|
|
42785
|
-
status: 'pending';
|
|
42786
|
-
result: null;
|
|
42787
|
-
error: null;
|
|
42788
|
-
action_type: 'SET_HEAT_COOL';
|
|
42789
|
-
} | {
|
|
42790
|
-
/** The ID of the action attempt. */
|
|
42791
|
-
action_attempt_id: string;
|
|
42792
|
-
status: 'success';
|
|
42793
|
-
error: null;
|
|
42794
|
-
action_type: 'SET_HEAT_COOL';
|
|
42795
|
-
result: {};
|
|
42796
|
-
} | {
|
|
42797
|
-
/** The ID of the action attempt. */
|
|
42798
|
-
action_attempt_id: string;
|
|
42799
|
-
status: 'error';
|
|
42800
|
-
result: null;
|
|
42801
|
-
action_type: 'SET_HEAT_COOL';
|
|
42802
|
-
error: {
|
|
42803
|
-
type: string;
|
|
42804
|
-
message: string;
|
|
42805
|
-
};
|
|
42806
41939
|
} | {
|
|
42807
41940
|
/** The ID of the action attempt. */
|
|
42808
41941
|
action_attempt_id: string;
|
|
@@ -42827,30 +41960,6 @@ interface Routes {
|
|
|
42827
41960
|
type: string;
|
|
42828
41961
|
message: string;
|
|
42829
41962
|
};
|
|
42830
|
-
} | {
|
|
42831
|
-
/** The ID of the action attempt. */
|
|
42832
|
-
action_attempt_id: string;
|
|
42833
|
-
status: 'pending';
|
|
42834
|
-
result: null;
|
|
42835
|
-
error: null;
|
|
42836
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
42837
|
-
} | {
|
|
42838
|
-
/** The ID of the action attempt. */
|
|
42839
|
-
action_attempt_id: string;
|
|
42840
|
-
status: 'success';
|
|
42841
|
-
error: null;
|
|
42842
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
42843
|
-
result: {};
|
|
42844
|
-
} | {
|
|
42845
|
-
/** The ID of the action attempt. */
|
|
42846
|
-
action_attempt_id: string;
|
|
42847
|
-
status: 'error';
|
|
42848
|
-
result: null;
|
|
42849
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
42850
|
-
error: {
|
|
42851
|
-
type: string;
|
|
42852
|
-
message: string;
|
|
42853
|
-
};
|
|
42854
41963
|
} | {
|
|
42855
41964
|
/** The ID of the action attempt. */
|
|
42856
41965
|
action_attempt_id: string;
|
|
@@ -43603,78 +42712,6 @@ interface Routes {
|
|
|
43603
42712
|
type: string;
|
|
43604
42713
|
message: string;
|
|
43605
42714
|
};
|
|
43606
|
-
} | {
|
|
43607
|
-
/** The ID of the action attempt. */
|
|
43608
|
-
action_attempt_id: string;
|
|
43609
|
-
status: 'pending';
|
|
43610
|
-
result: null;
|
|
43611
|
-
error: null;
|
|
43612
|
-
action_type: 'SET_COOL';
|
|
43613
|
-
} | {
|
|
43614
|
-
/** The ID of the action attempt. */
|
|
43615
|
-
action_attempt_id: string;
|
|
43616
|
-
status: 'success';
|
|
43617
|
-
error: null;
|
|
43618
|
-
action_type: 'SET_COOL';
|
|
43619
|
-
result: {};
|
|
43620
|
-
} | {
|
|
43621
|
-
/** The ID of the action attempt. */
|
|
43622
|
-
action_attempt_id: string;
|
|
43623
|
-
status: 'error';
|
|
43624
|
-
result: null;
|
|
43625
|
-
action_type: 'SET_COOL';
|
|
43626
|
-
error: {
|
|
43627
|
-
type: string;
|
|
43628
|
-
message: string;
|
|
43629
|
-
};
|
|
43630
|
-
} | {
|
|
43631
|
-
/** The ID of the action attempt. */
|
|
43632
|
-
action_attempt_id: string;
|
|
43633
|
-
status: 'pending';
|
|
43634
|
-
result: null;
|
|
43635
|
-
error: null;
|
|
43636
|
-
action_type: 'SET_HEAT';
|
|
43637
|
-
} | {
|
|
43638
|
-
/** The ID of the action attempt. */
|
|
43639
|
-
action_attempt_id: string;
|
|
43640
|
-
status: 'success';
|
|
43641
|
-
error: null;
|
|
43642
|
-
action_type: 'SET_HEAT';
|
|
43643
|
-
result: {};
|
|
43644
|
-
} | {
|
|
43645
|
-
/** The ID of the action attempt. */
|
|
43646
|
-
action_attempt_id: string;
|
|
43647
|
-
status: 'error';
|
|
43648
|
-
result: null;
|
|
43649
|
-
action_type: 'SET_HEAT';
|
|
43650
|
-
error: {
|
|
43651
|
-
type: string;
|
|
43652
|
-
message: string;
|
|
43653
|
-
};
|
|
43654
|
-
} | {
|
|
43655
|
-
/** The ID of the action attempt. */
|
|
43656
|
-
action_attempt_id: string;
|
|
43657
|
-
status: 'pending';
|
|
43658
|
-
result: null;
|
|
43659
|
-
error: null;
|
|
43660
|
-
action_type: 'SET_HEAT_COOL';
|
|
43661
|
-
} | {
|
|
43662
|
-
/** The ID of the action attempt. */
|
|
43663
|
-
action_attempt_id: string;
|
|
43664
|
-
status: 'success';
|
|
43665
|
-
error: null;
|
|
43666
|
-
action_type: 'SET_HEAT_COOL';
|
|
43667
|
-
result: {};
|
|
43668
|
-
} | {
|
|
43669
|
-
/** The ID of the action attempt. */
|
|
43670
|
-
action_attempt_id: string;
|
|
43671
|
-
status: 'error';
|
|
43672
|
-
result: null;
|
|
43673
|
-
action_type: 'SET_HEAT_COOL';
|
|
43674
|
-
error: {
|
|
43675
|
-
type: string;
|
|
43676
|
-
message: string;
|
|
43677
|
-
};
|
|
43678
42715
|
} | {
|
|
43679
42716
|
/** The ID of the action attempt. */
|
|
43680
42717
|
action_attempt_id: string;
|
|
@@ -43699,30 +42736,6 @@ interface Routes {
|
|
|
43699
42736
|
type: string;
|
|
43700
42737
|
message: string;
|
|
43701
42738
|
};
|
|
43702
|
-
} | {
|
|
43703
|
-
/** The ID of the action attempt. */
|
|
43704
|
-
action_attempt_id: string;
|
|
43705
|
-
status: 'pending';
|
|
43706
|
-
result: null;
|
|
43707
|
-
error: null;
|
|
43708
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
43709
|
-
} | {
|
|
43710
|
-
/** The ID of the action attempt. */
|
|
43711
|
-
action_attempt_id: string;
|
|
43712
|
-
status: 'success';
|
|
43713
|
-
error: null;
|
|
43714
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
43715
|
-
result: {};
|
|
43716
|
-
} | {
|
|
43717
|
-
/** The ID of the action attempt. */
|
|
43718
|
-
action_attempt_id: string;
|
|
43719
|
-
status: 'error';
|
|
43720
|
-
result: null;
|
|
43721
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
43722
|
-
error: {
|
|
43723
|
-
type: string;
|
|
43724
|
-
message: string;
|
|
43725
|
-
};
|
|
43726
42739
|
} | {
|
|
43727
42740
|
/** The ID of the action attempt. */
|
|
43728
42741
|
action_attempt_id: string;
|
|
@@ -48535,78 +47548,6 @@ interface Routes {
|
|
|
48535
47548
|
type: string;
|
|
48536
47549
|
message: string;
|
|
48537
47550
|
};
|
|
48538
|
-
} | {
|
|
48539
|
-
/** The ID of the action attempt. */
|
|
48540
|
-
action_attempt_id: string;
|
|
48541
|
-
status: 'pending';
|
|
48542
|
-
result: null;
|
|
48543
|
-
error: null;
|
|
48544
|
-
action_type: 'SET_COOL';
|
|
48545
|
-
} | {
|
|
48546
|
-
/** The ID of the action attempt. */
|
|
48547
|
-
action_attempt_id: string;
|
|
48548
|
-
status: 'success';
|
|
48549
|
-
error: null;
|
|
48550
|
-
action_type: 'SET_COOL';
|
|
48551
|
-
result: {};
|
|
48552
|
-
} | {
|
|
48553
|
-
/** The ID of the action attempt. */
|
|
48554
|
-
action_attempt_id: string;
|
|
48555
|
-
status: 'error';
|
|
48556
|
-
result: null;
|
|
48557
|
-
action_type: 'SET_COOL';
|
|
48558
|
-
error: {
|
|
48559
|
-
type: string;
|
|
48560
|
-
message: string;
|
|
48561
|
-
};
|
|
48562
|
-
} | {
|
|
48563
|
-
/** The ID of the action attempt. */
|
|
48564
|
-
action_attempt_id: string;
|
|
48565
|
-
status: 'pending';
|
|
48566
|
-
result: null;
|
|
48567
|
-
error: null;
|
|
48568
|
-
action_type: 'SET_HEAT';
|
|
48569
|
-
} | {
|
|
48570
|
-
/** The ID of the action attempt. */
|
|
48571
|
-
action_attempt_id: string;
|
|
48572
|
-
status: 'success';
|
|
48573
|
-
error: null;
|
|
48574
|
-
action_type: 'SET_HEAT';
|
|
48575
|
-
result: {};
|
|
48576
|
-
} | {
|
|
48577
|
-
/** The ID of the action attempt. */
|
|
48578
|
-
action_attempt_id: string;
|
|
48579
|
-
status: 'error';
|
|
48580
|
-
result: null;
|
|
48581
|
-
action_type: 'SET_HEAT';
|
|
48582
|
-
error: {
|
|
48583
|
-
type: string;
|
|
48584
|
-
message: string;
|
|
48585
|
-
};
|
|
48586
|
-
} | {
|
|
48587
|
-
/** The ID of the action attempt. */
|
|
48588
|
-
action_attempt_id: string;
|
|
48589
|
-
status: 'pending';
|
|
48590
|
-
result: null;
|
|
48591
|
-
error: null;
|
|
48592
|
-
action_type: 'SET_HEAT_COOL';
|
|
48593
|
-
} | {
|
|
48594
|
-
/** The ID of the action attempt. */
|
|
48595
|
-
action_attempt_id: string;
|
|
48596
|
-
status: 'success';
|
|
48597
|
-
error: null;
|
|
48598
|
-
action_type: 'SET_HEAT_COOL';
|
|
48599
|
-
result: {};
|
|
48600
|
-
} | {
|
|
48601
|
-
/** The ID of the action attempt. */
|
|
48602
|
-
action_attempt_id: string;
|
|
48603
|
-
status: 'error';
|
|
48604
|
-
result: null;
|
|
48605
|
-
action_type: 'SET_HEAT_COOL';
|
|
48606
|
-
error: {
|
|
48607
|
-
type: string;
|
|
48608
|
-
message: string;
|
|
48609
|
-
};
|
|
48610
47551
|
} | {
|
|
48611
47552
|
/** The ID of the action attempt. */
|
|
48612
47553
|
action_attempt_id: string;
|
|
@@ -48631,30 +47572,6 @@ interface Routes {
|
|
|
48631
47572
|
type: string;
|
|
48632
47573
|
message: string;
|
|
48633
47574
|
};
|
|
48634
|
-
} | {
|
|
48635
|
-
/** The ID of the action attempt. */
|
|
48636
|
-
action_attempt_id: string;
|
|
48637
|
-
status: 'pending';
|
|
48638
|
-
result: null;
|
|
48639
|
-
error: null;
|
|
48640
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
48641
|
-
} | {
|
|
48642
|
-
/** The ID of the action attempt. */
|
|
48643
|
-
action_attempt_id: string;
|
|
48644
|
-
status: 'success';
|
|
48645
|
-
error: null;
|
|
48646
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
48647
|
-
result: {};
|
|
48648
|
-
} | {
|
|
48649
|
-
/** The ID of the action attempt. */
|
|
48650
|
-
action_attempt_id: string;
|
|
48651
|
-
status: 'error';
|
|
48652
|
-
result: null;
|
|
48653
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
48654
|
-
error: {
|
|
48655
|
-
type: string;
|
|
48656
|
-
message: string;
|
|
48657
|
-
};
|
|
48658
47575
|
} | {
|
|
48659
47576
|
/** The ID of the action attempt. */
|
|
48660
47577
|
action_attempt_id: string;
|
|
@@ -49408,78 +48325,6 @@ interface Routes {
|
|
|
49408
48325
|
type: string;
|
|
49409
48326
|
message: string;
|
|
49410
48327
|
};
|
|
49411
|
-
} | {
|
|
49412
|
-
/** The ID of the action attempt. */
|
|
49413
|
-
action_attempt_id: string;
|
|
49414
|
-
status: 'pending';
|
|
49415
|
-
result: null;
|
|
49416
|
-
error: null;
|
|
49417
|
-
action_type: 'SET_COOL';
|
|
49418
|
-
} | {
|
|
49419
|
-
/** The ID of the action attempt. */
|
|
49420
|
-
action_attempt_id: string;
|
|
49421
|
-
status: 'success';
|
|
49422
|
-
error: null;
|
|
49423
|
-
action_type: 'SET_COOL';
|
|
49424
|
-
result: {};
|
|
49425
|
-
} | {
|
|
49426
|
-
/** The ID of the action attempt. */
|
|
49427
|
-
action_attempt_id: string;
|
|
49428
|
-
status: 'error';
|
|
49429
|
-
result: null;
|
|
49430
|
-
action_type: 'SET_COOL';
|
|
49431
|
-
error: {
|
|
49432
|
-
type: string;
|
|
49433
|
-
message: string;
|
|
49434
|
-
};
|
|
49435
|
-
} | {
|
|
49436
|
-
/** The ID of the action attempt. */
|
|
49437
|
-
action_attempt_id: string;
|
|
49438
|
-
status: 'pending';
|
|
49439
|
-
result: null;
|
|
49440
|
-
error: null;
|
|
49441
|
-
action_type: 'SET_HEAT';
|
|
49442
|
-
} | {
|
|
49443
|
-
/** The ID of the action attempt. */
|
|
49444
|
-
action_attempt_id: string;
|
|
49445
|
-
status: 'success';
|
|
49446
|
-
error: null;
|
|
49447
|
-
action_type: 'SET_HEAT';
|
|
49448
|
-
result: {};
|
|
49449
|
-
} | {
|
|
49450
|
-
/** The ID of the action attempt. */
|
|
49451
|
-
action_attempt_id: string;
|
|
49452
|
-
status: 'error';
|
|
49453
|
-
result: null;
|
|
49454
|
-
action_type: 'SET_HEAT';
|
|
49455
|
-
error: {
|
|
49456
|
-
type: string;
|
|
49457
|
-
message: string;
|
|
49458
|
-
};
|
|
49459
|
-
} | {
|
|
49460
|
-
/** The ID of the action attempt. */
|
|
49461
|
-
action_attempt_id: string;
|
|
49462
|
-
status: 'pending';
|
|
49463
|
-
result: null;
|
|
49464
|
-
error: null;
|
|
49465
|
-
action_type: 'SET_HEAT_COOL';
|
|
49466
|
-
} | {
|
|
49467
|
-
/** The ID of the action attempt. */
|
|
49468
|
-
action_attempt_id: string;
|
|
49469
|
-
status: 'success';
|
|
49470
|
-
error: null;
|
|
49471
|
-
action_type: 'SET_HEAT_COOL';
|
|
49472
|
-
result: {};
|
|
49473
|
-
} | {
|
|
49474
|
-
/** The ID of the action attempt. */
|
|
49475
|
-
action_attempt_id: string;
|
|
49476
|
-
status: 'error';
|
|
49477
|
-
result: null;
|
|
49478
|
-
action_type: 'SET_HEAT_COOL';
|
|
49479
|
-
error: {
|
|
49480
|
-
type: string;
|
|
49481
|
-
message: string;
|
|
49482
|
-
};
|
|
49483
48328
|
} | {
|
|
49484
48329
|
/** The ID of the action attempt. */
|
|
49485
48330
|
action_attempt_id: string;
|
|
@@ -49504,30 +48349,6 @@ interface Routes {
|
|
|
49504
48349
|
type: string;
|
|
49505
48350
|
message: string;
|
|
49506
48351
|
};
|
|
49507
|
-
} | {
|
|
49508
|
-
/** The ID of the action attempt. */
|
|
49509
|
-
action_attempt_id: string;
|
|
49510
|
-
status: 'pending';
|
|
49511
|
-
result: null;
|
|
49512
|
-
error: null;
|
|
49513
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
49514
|
-
} | {
|
|
49515
|
-
/** The ID of the action attempt. */
|
|
49516
|
-
action_attempt_id: string;
|
|
49517
|
-
status: 'success';
|
|
49518
|
-
error: null;
|
|
49519
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
49520
|
-
result: {};
|
|
49521
|
-
} | {
|
|
49522
|
-
/** The ID of the action attempt. */
|
|
49523
|
-
action_attempt_id: string;
|
|
49524
|
-
status: 'error';
|
|
49525
|
-
result: null;
|
|
49526
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
49527
|
-
error: {
|
|
49528
|
-
type: string;
|
|
49529
|
-
message: string;
|
|
49530
|
-
};
|
|
49531
48352
|
} | {
|
|
49532
48353
|
/** The ID of the action attempt. */
|
|
49533
48354
|
action_attempt_id: string;
|
|
@@ -51391,78 +50212,6 @@ interface Routes {
|
|
|
51391
50212
|
type: string;
|
|
51392
50213
|
message: string;
|
|
51393
50214
|
};
|
|
51394
|
-
} | {
|
|
51395
|
-
/** The ID of the action attempt. */
|
|
51396
|
-
action_attempt_id: string;
|
|
51397
|
-
status: 'pending';
|
|
51398
|
-
result: null;
|
|
51399
|
-
error: null;
|
|
51400
|
-
action_type: 'SET_COOL';
|
|
51401
|
-
} | {
|
|
51402
|
-
/** The ID of the action attempt. */
|
|
51403
|
-
action_attempt_id: string;
|
|
51404
|
-
status: 'success';
|
|
51405
|
-
error: null;
|
|
51406
|
-
action_type: 'SET_COOL';
|
|
51407
|
-
result: {};
|
|
51408
|
-
} | {
|
|
51409
|
-
/** The ID of the action attempt. */
|
|
51410
|
-
action_attempt_id: string;
|
|
51411
|
-
status: 'error';
|
|
51412
|
-
result: null;
|
|
51413
|
-
action_type: 'SET_COOL';
|
|
51414
|
-
error: {
|
|
51415
|
-
type: string;
|
|
51416
|
-
message: string;
|
|
51417
|
-
};
|
|
51418
|
-
} | {
|
|
51419
|
-
/** The ID of the action attempt. */
|
|
51420
|
-
action_attempt_id: string;
|
|
51421
|
-
status: 'pending';
|
|
51422
|
-
result: null;
|
|
51423
|
-
error: null;
|
|
51424
|
-
action_type: 'SET_HEAT';
|
|
51425
|
-
} | {
|
|
51426
|
-
/** The ID of the action attempt. */
|
|
51427
|
-
action_attempt_id: string;
|
|
51428
|
-
status: 'success';
|
|
51429
|
-
error: null;
|
|
51430
|
-
action_type: 'SET_HEAT';
|
|
51431
|
-
result: {};
|
|
51432
|
-
} | {
|
|
51433
|
-
/** The ID of the action attempt. */
|
|
51434
|
-
action_attempt_id: string;
|
|
51435
|
-
status: 'error';
|
|
51436
|
-
result: null;
|
|
51437
|
-
action_type: 'SET_HEAT';
|
|
51438
|
-
error: {
|
|
51439
|
-
type: string;
|
|
51440
|
-
message: string;
|
|
51441
|
-
};
|
|
51442
|
-
} | {
|
|
51443
|
-
/** The ID of the action attempt. */
|
|
51444
|
-
action_attempt_id: string;
|
|
51445
|
-
status: 'pending';
|
|
51446
|
-
result: null;
|
|
51447
|
-
error: null;
|
|
51448
|
-
action_type: 'SET_HEAT_COOL';
|
|
51449
|
-
} | {
|
|
51450
|
-
/** The ID of the action attempt. */
|
|
51451
|
-
action_attempt_id: string;
|
|
51452
|
-
status: 'success';
|
|
51453
|
-
error: null;
|
|
51454
|
-
action_type: 'SET_HEAT_COOL';
|
|
51455
|
-
result: {};
|
|
51456
|
-
} | {
|
|
51457
|
-
/** The ID of the action attempt. */
|
|
51458
|
-
action_attempt_id: string;
|
|
51459
|
-
status: 'error';
|
|
51460
|
-
result: null;
|
|
51461
|
-
action_type: 'SET_HEAT_COOL';
|
|
51462
|
-
error: {
|
|
51463
|
-
type: string;
|
|
51464
|
-
message: string;
|
|
51465
|
-
};
|
|
51466
50215
|
} | {
|
|
51467
50216
|
/** The ID of the action attempt. */
|
|
51468
50217
|
action_attempt_id: string;
|
|
@@ -51487,30 +50236,6 @@ interface Routes {
|
|
|
51487
50236
|
type: string;
|
|
51488
50237
|
message: string;
|
|
51489
50238
|
};
|
|
51490
|
-
} | {
|
|
51491
|
-
/** The ID of the action attempt. */
|
|
51492
|
-
action_attempt_id: string;
|
|
51493
|
-
status: 'pending';
|
|
51494
|
-
result: null;
|
|
51495
|
-
error: null;
|
|
51496
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
51497
|
-
} | {
|
|
51498
|
-
/** The ID of the action attempt. */
|
|
51499
|
-
action_attempt_id: string;
|
|
51500
|
-
status: 'success';
|
|
51501
|
-
error: null;
|
|
51502
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
51503
|
-
result: {};
|
|
51504
|
-
} | {
|
|
51505
|
-
/** The ID of the action attempt. */
|
|
51506
|
-
action_attempt_id: string;
|
|
51507
|
-
status: 'error';
|
|
51508
|
-
result: null;
|
|
51509
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
51510
|
-
error: {
|
|
51511
|
-
type: string;
|
|
51512
|
-
message: string;
|
|
51513
|
-
};
|
|
51514
50239
|
} | {
|
|
51515
50240
|
/** The ID of the action attempt. */
|
|
51516
50241
|
action_attempt_id: string;
|
|
@@ -52274,78 +50999,6 @@ interface Routes {
|
|
|
52274
50999
|
type: string;
|
|
52275
51000
|
message: string;
|
|
52276
51001
|
};
|
|
52277
|
-
} | {
|
|
52278
|
-
/** The ID of the action attempt. */
|
|
52279
|
-
action_attempt_id: string;
|
|
52280
|
-
status: 'pending';
|
|
52281
|
-
result: null;
|
|
52282
|
-
error: null;
|
|
52283
|
-
action_type: 'SET_COOL';
|
|
52284
|
-
} | {
|
|
52285
|
-
/** The ID of the action attempt. */
|
|
52286
|
-
action_attempt_id: string;
|
|
52287
|
-
status: 'success';
|
|
52288
|
-
error: null;
|
|
52289
|
-
action_type: 'SET_COOL';
|
|
52290
|
-
result: {};
|
|
52291
|
-
} | {
|
|
52292
|
-
/** The ID of the action attempt. */
|
|
52293
|
-
action_attempt_id: string;
|
|
52294
|
-
status: 'error';
|
|
52295
|
-
result: null;
|
|
52296
|
-
action_type: 'SET_COOL';
|
|
52297
|
-
error: {
|
|
52298
|
-
type: string;
|
|
52299
|
-
message: string;
|
|
52300
|
-
};
|
|
52301
|
-
} | {
|
|
52302
|
-
/** The ID of the action attempt. */
|
|
52303
|
-
action_attempt_id: string;
|
|
52304
|
-
status: 'pending';
|
|
52305
|
-
result: null;
|
|
52306
|
-
error: null;
|
|
52307
|
-
action_type: 'SET_HEAT';
|
|
52308
|
-
} | {
|
|
52309
|
-
/** The ID of the action attempt. */
|
|
52310
|
-
action_attempt_id: string;
|
|
52311
|
-
status: 'success';
|
|
52312
|
-
error: null;
|
|
52313
|
-
action_type: 'SET_HEAT';
|
|
52314
|
-
result: {};
|
|
52315
|
-
} | {
|
|
52316
|
-
/** The ID of the action attempt. */
|
|
52317
|
-
action_attempt_id: string;
|
|
52318
|
-
status: 'error';
|
|
52319
|
-
result: null;
|
|
52320
|
-
action_type: 'SET_HEAT';
|
|
52321
|
-
error: {
|
|
52322
|
-
type: string;
|
|
52323
|
-
message: string;
|
|
52324
|
-
};
|
|
52325
|
-
} | {
|
|
52326
|
-
/** The ID of the action attempt. */
|
|
52327
|
-
action_attempt_id: string;
|
|
52328
|
-
status: 'pending';
|
|
52329
|
-
result: null;
|
|
52330
|
-
error: null;
|
|
52331
|
-
action_type: 'SET_HEAT_COOL';
|
|
52332
|
-
} | {
|
|
52333
|
-
/** The ID of the action attempt. */
|
|
52334
|
-
action_attempt_id: string;
|
|
52335
|
-
status: 'success';
|
|
52336
|
-
error: null;
|
|
52337
|
-
action_type: 'SET_HEAT_COOL';
|
|
52338
|
-
result: {};
|
|
52339
|
-
} | {
|
|
52340
|
-
/** The ID of the action attempt. */
|
|
52341
|
-
action_attempt_id: string;
|
|
52342
|
-
status: 'error';
|
|
52343
|
-
result: null;
|
|
52344
|
-
action_type: 'SET_HEAT_COOL';
|
|
52345
|
-
error: {
|
|
52346
|
-
type: string;
|
|
52347
|
-
message: string;
|
|
52348
|
-
};
|
|
52349
51002
|
} | {
|
|
52350
51003
|
/** The ID of the action attempt. */
|
|
52351
51004
|
action_attempt_id: string;
|
|
@@ -52370,30 +51023,6 @@ interface Routes {
|
|
|
52370
51023
|
type: string;
|
|
52371
51024
|
message: string;
|
|
52372
51025
|
};
|
|
52373
|
-
} | {
|
|
52374
|
-
/** The ID of the action attempt. */
|
|
52375
|
-
action_attempt_id: string;
|
|
52376
|
-
status: 'pending';
|
|
52377
|
-
result: null;
|
|
52378
|
-
error: null;
|
|
52379
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
52380
|
-
} | {
|
|
52381
|
-
/** The ID of the action attempt. */
|
|
52382
|
-
action_attempt_id: string;
|
|
52383
|
-
status: 'success';
|
|
52384
|
-
error: null;
|
|
52385
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
52386
|
-
result: {};
|
|
52387
|
-
} | {
|
|
52388
|
-
/** The ID of the action attempt. */
|
|
52389
|
-
action_attempt_id: string;
|
|
52390
|
-
status: 'error';
|
|
52391
|
-
result: null;
|
|
52392
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
52393
|
-
error: {
|
|
52394
|
-
type: string;
|
|
52395
|
-
message: string;
|
|
52396
|
-
};
|
|
52397
51026
|
} | {
|
|
52398
51027
|
/** The ID of the action attempt. */
|
|
52399
51028
|
action_attempt_id: string;
|
|
@@ -53196,78 +51825,6 @@ interface Routes {
|
|
|
53196
51825
|
type: string;
|
|
53197
51826
|
message: string;
|
|
53198
51827
|
};
|
|
53199
|
-
} | {
|
|
53200
|
-
/** The ID of the action attempt. */
|
|
53201
|
-
action_attempt_id: string;
|
|
53202
|
-
status: 'pending';
|
|
53203
|
-
result: null;
|
|
53204
|
-
error: null;
|
|
53205
|
-
action_type: 'SET_COOL';
|
|
53206
|
-
} | {
|
|
53207
|
-
/** The ID of the action attempt. */
|
|
53208
|
-
action_attempt_id: string;
|
|
53209
|
-
status: 'success';
|
|
53210
|
-
error: null;
|
|
53211
|
-
action_type: 'SET_COOL';
|
|
53212
|
-
result: {};
|
|
53213
|
-
} | {
|
|
53214
|
-
/** The ID of the action attempt. */
|
|
53215
|
-
action_attempt_id: string;
|
|
53216
|
-
status: 'error';
|
|
53217
|
-
result: null;
|
|
53218
|
-
action_type: 'SET_COOL';
|
|
53219
|
-
error: {
|
|
53220
|
-
type: string;
|
|
53221
|
-
message: string;
|
|
53222
|
-
};
|
|
53223
|
-
} | {
|
|
53224
|
-
/** The ID of the action attempt. */
|
|
53225
|
-
action_attempt_id: string;
|
|
53226
|
-
status: 'pending';
|
|
53227
|
-
result: null;
|
|
53228
|
-
error: null;
|
|
53229
|
-
action_type: 'SET_HEAT';
|
|
53230
|
-
} | {
|
|
53231
|
-
/** The ID of the action attempt. */
|
|
53232
|
-
action_attempt_id: string;
|
|
53233
|
-
status: 'success';
|
|
53234
|
-
error: null;
|
|
53235
|
-
action_type: 'SET_HEAT';
|
|
53236
|
-
result: {};
|
|
53237
|
-
} | {
|
|
53238
|
-
/** The ID of the action attempt. */
|
|
53239
|
-
action_attempt_id: string;
|
|
53240
|
-
status: 'error';
|
|
53241
|
-
result: null;
|
|
53242
|
-
action_type: 'SET_HEAT';
|
|
53243
|
-
error: {
|
|
53244
|
-
type: string;
|
|
53245
|
-
message: string;
|
|
53246
|
-
};
|
|
53247
|
-
} | {
|
|
53248
|
-
/** The ID of the action attempt. */
|
|
53249
|
-
action_attempt_id: string;
|
|
53250
|
-
status: 'pending';
|
|
53251
|
-
result: null;
|
|
53252
|
-
error: null;
|
|
53253
|
-
action_type: 'SET_HEAT_COOL';
|
|
53254
|
-
} | {
|
|
53255
|
-
/** The ID of the action attempt. */
|
|
53256
|
-
action_attempt_id: string;
|
|
53257
|
-
status: 'success';
|
|
53258
|
-
error: null;
|
|
53259
|
-
action_type: 'SET_HEAT_COOL';
|
|
53260
|
-
result: {};
|
|
53261
|
-
} | {
|
|
53262
|
-
/** The ID of the action attempt. */
|
|
53263
|
-
action_attempt_id: string;
|
|
53264
|
-
status: 'error';
|
|
53265
|
-
result: null;
|
|
53266
|
-
action_type: 'SET_HEAT_COOL';
|
|
53267
|
-
error: {
|
|
53268
|
-
type: string;
|
|
53269
|
-
message: string;
|
|
53270
|
-
};
|
|
53271
51828
|
} | {
|
|
53272
51829
|
/** The ID of the action attempt. */
|
|
53273
51830
|
action_attempt_id: string;
|
|
@@ -53292,30 +51849,6 @@ interface Routes {
|
|
|
53292
51849
|
type: string;
|
|
53293
51850
|
message: string;
|
|
53294
51851
|
};
|
|
53295
|
-
} | {
|
|
53296
|
-
/** The ID of the action attempt. */
|
|
53297
|
-
action_attempt_id: string;
|
|
53298
|
-
status: 'pending';
|
|
53299
|
-
result: null;
|
|
53300
|
-
error: null;
|
|
53301
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
53302
|
-
} | {
|
|
53303
|
-
/** The ID of the action attempt. */
|
|
53304
|
-
action_attempt_id: string;
|
|
53305
|
-
status: 'success';
|
|
53306
|
-
error: null;
|
|
53307
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
53308
|
-
result: {};
|
|
53309
|
-
} | {
|
|
53310
|
-
/** The ID of the action attempt. */
|
|
53311
|
-
action_attempt_id: string;
|
|
53312
|
-
status: 'error';
|
|
53313
|
-
result: null;
|
|
53314
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
53315
|
-
error: {
|
|
53316
|
-
type: string;
|
|
53317
|
-
message: string;
|
|
53318
|
-
};
|
|
53319
51852
|
} | {
|
|
53320
51853
|
/** The ID of the action attempt. */
|
|
53321
51854
|
action_attempt_id: string;
|
|
@@ -54253,78 +52786,6 @@ interface Routes {
|
|
|
54253
52786
|
type: string;
|
|
54254
52787
|
message: string;
|
|
54255
52788
|
};
|
|
54256
|
-
} | {
|
|
54257
|
-
/** The ID of the action attempt. */
|
|
54258
|
-
action_attempt_id: string;
|
|
54259
|
-
status: 'pending';
|
|
54260
|
-
result: null;
|
|
54261
|
-
error: null;
|
|
54262
|
-
action_type: 'SET_COOL';
|
|
54263
|
-
} | {
|
|
54264
|
-
/** The ID of the action attempt. */
|
|
54265
|
-
action_attempt_id: string;
|
|
54266
|
-
status: 'success';
|
|
54267
|
-
error: null;
|
|
54268
|
-
action_type: 'SET_COOL';
|
|
54269
|
-
result: {};
|
|
54270
|
-
} | {
|
|
54271
|
-
/** The ID of the action attempt. */
|
|
54272
|
-
action_attempt_id: string;
|
|
54273
|
-
status: 'error';
|
|
54274
|
-
result: null;
|
|
54275
|
-
action_type: 'SET_COOL';
|
|
54276
|
-
error: {
|
|
54277
|
-
type: string;
|
|
54278
|
-
message: string;
|
|
54279
|
-
};
|
|
54280
|
-
} | {
|
|
54281
|
-
/** The ID of the action attempt. */
|
|
54282
|
-
action_attempt_id: string;
|
|
54283
|
-
status: 'pending';
|
|
54284
|
-
result: null;
|
|
54285
|
-
error: null;
|
|
54286
|
-
action_type: 'SET_HEAT';
|
|
54287
|
-
} | {
|
|
54288
|
-
/** The ID of the action attempt. */
|
|
54289
|
-
action_attempt_id: string;
|
|
54290
|
-
status: 'success';
|
|
54291
|
-
error: null;
|
|
54292
|
-
action_type: 'SET_HEAT';
|
|
54293
|
-
result: {};
|
|
54294
|
-
} | {
|
|
54295
|
-
/** The ID of the action attempt. */
|
|
54296
|
-
action_attempt_id: string;
|
|
54297
|
-
status: 'error';
|
|
54298
|
-
result: null;
|
|
54299
|
-
action_type: 'SET_HEAT';
|
|
54300
|
-
error: {
|
|
54301
|
-
type: string;
|
|
54302
|
-
message: string;
|
|
54303
|
-
};
|
|
54304
|
-
} | {
|
|
54305
|
-
/** The ID of the action attempt. */
|
|
54306
|
-
action_attempt_id: string;
|
|
54307
|
-
status: 'pending';
|
|
54308
|
-
result: null;
|
|
54309
|
-
error: null;
|
|
54310
|
-
action_type: 'SET_HEAT_COOL';
|
|
54311
|
-
} | {
|
|
54312
|
-
/** The ID of the action attempt. */
|
|
54313
|
-
action_attempt_id: string;
|
|
54314
|
-
status: 'success';
|
|
54315
|
-
error: null;
|
|
54316
|
-
action_type: 'SET_HEAT_COOL';
|
|
54317
|
-
result: {};
|
|
54318
|
-
} | {
|
|
54319
|
-
/** The ID of the action attempt. */
|
|
54320
|
-
action_attempt_id: string;
|
|
54321
|
-
status: 'error';
|
|
54322
|
-
result: null;
|
|
54323
|
-
action_type: 'SET_HEAT_COOL';
|
|
54324
|
-
error: {
|
|
54325
|
-
type: string;
|
|
54326
|
-
message: string;
|
|
54327
|
-
};
|
|
54328
52789
|
} | {
|
|
54329
52790
|
/** The ID of the action attempt. */
|
|
54330
52791
|
action_attempt_id: string;
|
|
@@ -54349,30 +52810,6 @@ interface Routes {
|
|
|
54349
52810
|
type: string;
|
|
54350
52811
|
message: string;
|
|
54351
52812
|
};
|
|
54352
|
-
} | {
|
|
54353
|
-
/** The ID of the action attempt. */
|
|
54354
|
-
action_attempt_id: string;
|
|
54355
|
-
status: 'pending';
|
|
54356
|
-
result: null;
|
|
54357
|
-
error: null;
|
|
54358
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
54359
|
-
} | {
|
|
54360
|
-
/** The ID of the action attempt. */
|
|
54361
|
-
action_attempt_id: string;
|
|
54362
|
-
status: 'success';
|
|
54363
|
-
error: null;
|
|
54364
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
54365
|
-
result: {};
|
|
54366
|
-
} | {
|
|
54367
|
-
/** The ID of the action attempt. */
|
|
54368
|
-
action_attempt_id: string;
|
|
54369
|
-
status: 'error';
|
|
54370
|
-
result: null;
|
|
54371
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
54372
|
-
error: {
|
|
54373
|
-
type: string;
|
|
54374
|
-
message: string;
|
|
54375
|
-
};
|
|
54376
52813
|
} | {
|
|
54377
52814
|
/** The ID of the action attempt. */
|
|
54378
52815
|
action_attempt_id: string;
|
|
@@ -55132,78 +53569,6 @@ interface Routes {
|
|
|
55132
53569
|
type: string;
|
|
55133
53570
|
message: string;
|
|
55134
53571
|
};
|
|
55135
|
-
} | {
|
|
55136
|
-
/** The ID of the action attempt. */
|
|
55137
|
-
action_attempt_id: string;
|
|
55138
|
-
status: 'pending';
|
|
55139
|
-
result: null;
|
|
55140
|
-
error: null;
|
|
55141
|
-
action_type: 'SET_COOL';
|
|
55142
|
-
} | {
|
|
55143
|
-
/** The ID of the action attempt. */
|
|
55144
|
-
action_attempt_id: string;
|
|
55145
|
-
status: 'success';
|
|
55146
|
-
error: null;
|
|
55147
|
-
action_type: 'SET_COOL';
|
|
55148
|
-
result: {};
|
|
55149
|
-
} | {
|
|
55150
|
-
/** The ID of the action attempt. */
|
|
55151
|
-
action_attempt_id: string;
|
|
55152
|
-
status: 'error';
|
|
55153
|
-
result: null;
|
|
55154
|
-
action_type: 'SET_COOL';
|
|
55155
|
-
error: {
|
|
55156
|
-
type: string;
|
|
55157
|
-
message: string;
|
|
55158
|
-
};
|
|
55159
|
-
} | {
|
|
55160
|
-
/** The ID of the action attempt. */
|
|
55161
|
-
action_attempt_id: string;
|
|
55162
|
-
status: 'pending';
|
|
55163
|
-
result: null;
|
|
55164
|
-
error: null;
|
|
55165
|
-
action_type: 'SET_HEAT';
|
|
55166
|
-
} | {
|
|
55167
|
-
/** The ID of the action attempt. */
|
|
55168
|
-
action_attempt_id: string;
|
|
55169
|
-
status: 'success';
|
|
55170
|
-
error: null;
|
|
55171
|
-
action_type: 'SET_HEAT';
|
|
55172
|
-
result: {};
|
|
55173
|
-
} | {
|
|
55174
|
-
/** The ID of the action attempt. */
|
|
55175
|
-
action_attempt_id: string;
|
|
55176
|
-
status: 'error';
|
|
55177
|
-
result: null;
|
|
55178
|
-
action_type: 'SET_HEAT';
|
|
55179
|
-
error: {
|
|
55180
|
-
type: string;
|
|
55181
|
-
message: string;
|
|
55182
|
-
};
|
|
55183
|
-
} | {
|
|
55184
|
-
/** The ID of the action attempt. */
|
|
55185
|
-
action_attempt_id: string;
|
|
55186
|
-
status: 'pending';
|
|
55187
|
-
result: null;
|
|
55188
|
-
error: null;
|
|
55189
|
-
action_type: 'SET_HEAT_COOL';
|
|
55190
|
-
} | {
|
|
55191
|
-
/** The ID of the action attempt. */
|
|
55192
|
-
action_attempt_id: string;
|
|
55193
|
-
status: 'success';
|
|
55194
|
-
error: null;
|
|
55195
|
-
action_type: 'SET_HEAT_COOL';
|
|
55196
|
-
result: {};
|
|
55197
|
-
} | {
|
|
55198
|
-
/** The ID of the action attempt. */
|
|
55199
|
-
action_attempt_id: string;
|
|
55200
|
-
status: 'error';
|
|
55201
|
-
result: null;
|
|
55202
|
-
action_type: 'SET_HEAT_COOL';
|
|
55203
|
-
error: {
|
|
55204
|
-
type: string;
|
|
55205
|
-
message: string;
|
|
55206
|
-
};
|
|
55207
53572
|
} | {
|
|
55208
53573
|
/** The ID of the action attempt. */
|
|
55209
53574
|
action_attempt_id: string;
|
|
@@ -55228,30 +53593,6 @@ interface Routes {
|
|
|
55228
53593
|
type: string;
|
|
55229
53594
|
message: string;
|
|
55230
53595
|
};
|
|
55231
|
-
} | {
|
|
55232
|
-
/** The ID of the action attempt. */
|
|
55233
|
-
action_attempt_id: string;
|
|
55234
|
-
status: 'pending';
|
|
55235
|
-
result: null;
|
|
55236
|
-
error: null;
|
|
55237
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
55238
|
-
} | {
|
|
55239
|
-
/** The ID of the action attempt. */
|
|
55240
|
-
action_attempt_id: string;
|
|
55241
|
-
status: 'success';
|
|
55242
|
-
error: null;
|
|
55243
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
55244
|
-
result: {};
|
|
55245
|
-
} | {
|
|
55246
|
-
/** The ID of the action attempt. */
|
|
55247
|
-
action_attempt_id: string;
|
|
55248
|
-
status: 'error';
|
|
55249
|
-
result: null;
|
|
55250
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
55251
|
-
error: {
|
|
55252
|
-
type: string;
|
|
55253
|
-
message: string;
|
|
55254
|
-
};
|
|
55255
53596
|
} | {
|
|
55256
53597
|
/** The ID of the action attempt. */
|
|
55257
53598
|
action_attempt_id: string;
|
|
@@ -56586,78 +54927,6 @@ interface Routes {
|
|
|
56586
54927
|
type: string;
|
|
56587
54928
|
message: string;
|
|
56588
54929
|
};
|
|
56589
|
-
} | {
|
|
56590
|
-
/** The ID of the action attempt. */
|
|
56591
|
-
action_attempt_id: string;
|
|
56592
|
-
status: 'pending';
|
|
56593
|
-
result: null;
|
|
56594
|
-
error: null;
|
|
56595
|
-
action_type: 'SET_COOL';
|
|
56596
|
-
} | {
|
|
56597
|
-
/** The ID of the action attempt. */
|
|
56598
|
-
action_attempt_id: string;
|
|
56599
|
-
status: 'success';
|
|
56600
|
-
error: null;
|
|
56601
|
-
action_type: 'SET_COOL';
|
|
56602
|
-
result: {};
|
|
56603
|
-
} | {
|
|
56604
|
-
/** The ID of the action attempt. */
|
|
56605
|
-
action_attempt_id: string;
|
|
56606
|
-
status: 'error';
|
|
56607
|
-
result: null;
|
|
56608
|
-
action_type: 'SET_COOL';
|
|
56609
|
-
error: {
|
|
56610
|
-
type: string;
|
|
56611
|
-
message: string;
|
|
56612
|
-
};
|
|
56613
|
-
} | {
|
|
56614
|
-
/** The ID of the action attempt. */
|
|
56615
|
-
action_attempt_id: string;
|
|
56616
|
-
status: 'pending';
|
|
56617
|
-
result: null;
|
|
56618
|
-
error: null;
|
|
56619
|
-
action_type: 'SET_HEAT';
|
|
56620
|
-
} | {
|
|
56621
|
-
/** The ID of the action attempt. */
|
|
56622
|
-
action_attempt_id: string;
|
|
56623
|
-
status: 'success';
|
|
56624
|
-
error: null;
|
|
56625
|
-
action_type: 'SET_HEAT';
|
|
56626
|
-
result: {};
|
|
56627
|
-
} | {
|
|
56628
|
-
/** The ID of the action attempt. */
|
|
56629
|
-
action_attempt_id: string;
|
|
56630
|
-
status: 'error';
|
|
56631
|
-
result: null;
|
|
56632
|
-
action_type: 'SET_HEAT';
|
|
56633
|
-
error: {
|
|
56634
|
-
type: string;
|
|
56635
|
-
message: string;
|
|
56636
|
-
};
|
|
56637
|
-
} | {
|
|
56638
|
-
/** The ID of the action attempt. */
|
|
56639
|
-
action_attempt_id: string;
|
|
56640
|
-
status: 'pending';
|
|
56641
|
-
result: null;
|
|
56642
|
-
error: null;
|
|
56643
|
-
action_type: 'SET_HEAT_COOL';
|
|
56644
|
-
} | {
|
|
56645
|
-
/** The ID of the action attempt. */
|
|
56646
|
-
action_attempt_id: string;
|
|
56647
|
-
status: 'success';
|
|
56648
|
-
error: null;
|
|
56649
|
-
action_type: 'SET_HEAT_COOL';
|
|
56650
|
-
result: {};
|
|
56651
|
-
} | {
|
|
56652
|
-
/** The ID of the action attempt. */
|
|
56653
|
-
action_attempt_id: string;
|
|
56654
|
-
status: 'error';
|
|
56655
|
-
result: null;
|
|
56656
|
-
action_type: 'SET_HEAT_COOL';
|
|
56657
|
-
error: {
|
|
56658
|
-
type: string;
|
|
56659
|
-
message: string;
|
|
56660
|
-
};
|
|
56661
54930
|
} | {
|
|
56662
54931
|
/** The ID of the action attempt. */
|
|
56663
54932
|
action_attempt_id: string;
|
|
@@ -56682,30 +54951,6 @@ interface Routes {
|
|
|
56682
54951
|
type: string;
|
|
56683
54952
|
message: string;
|
|
56684
54953
|
};
|
|
56685
|
-
} | {
|
|
56686
|
-
/** The ID of the action attempt. */
|
|
56687
|
-
action_attempt_id: string;
|
|
56688
|
-
status: 'pending';
|
|
56689
|
-
result: null;
|
|
56690
|
-
error: null;
|
|
56691
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
56692
|
-
} | {
|
|
56693
|
-
/** The ID of the action attempt. */
|
|
56694
|
-
action_attempt_id: string;
|
|
56695
|
-
status: 'success';
|
|
56696
|
-
error: null;
|
|
56697
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
56698
|
-
result: {};
|
|
56699
|
-
} | {
|
|
56700
|
-
/** The ID of the action attempt. */
|
|
56701
|
-
action_attempt_id: string;
|
|
56702
|
-
status: 'error';
|
|
56703
|
-
result: null;
|
|
56704
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
56705
|
-
error: {
|
|
56706
|
-
type: string;
|
|
56707
|
-
message: string;
|
|
56708
|
-
};
|
|
56709
54954
|
} | {
|
|
56710
54955
|
/** The ID of the action attempt. */
|
|
56711
54956
|
action_attempt_id: string;
|
|
@@ -57469,78 +55714,6 @@ interface Routes {
|
|
|
57469
55714
|
type: string;
|
|
57470
55715
|
message: string;
|
|
57471
55716
|
};
|
|
57472
|
-
} | {
|
|
57473
|
-
/** The ID of the action attempt. */
|
|
57474
|
-
action_attempt_id: string;
|
|
57475
|
-
status: 'pending';
|
|
57476
|
-
result: null;
|
|
57477
|
-
error: null;
|
|
57478
|
-
action_type: 'SET_COOL';
|
|
57479
|
-
} | {
|
|
57480
|
-
/** The ID of the action attempt. */
|
|
57481
|
-
action_attempt_id: string;
|
|
57482
|
-
status: 'success';
|
|
57483
|
-
error: null;
|
|
57484
|
-
action_type: 'SET_COOL';
|
|
57485
|
-
result: {};
|
|
57486
|
-
} | {
|
|
57487
|
-
/** The ID of the action attempt. */
|
|
57488
|
-
action_attempt_id: string;
|
|
57489
|
-
status: 'error';
|
|
57490
|
-
result: null;
|
|
57491
|
-
action_type: 'SET_COOL';
|
|
57492
|
-
error: {
|
|
57493
|
-
type: string;
|
|
57494
|
-
message: string;
|
|
57495
|
-
};
|
|
57496
|
-
} | {
|
|
57497
|
-
/** The ID of the action attempt. */
|
|
57498
|
-
action_attempt_id: string;
|
|
57499
|
-
status: 'pending';
|
|
57500
|
-
result: null;
|
|
57501
|
-
error: null;
|
|
57502
|
-
action_type: 'SET_HEAT';
|
|
57503
|
-
} | {
|
|
57504
|
-
/** The ID of the action attempt. */
|
|
57505
|
-
action_attempt_id: string;
|
|
57506
|
-
status: 'success';
|
|
57507
|
-
error: null;
|
|
57508
|
-
action_type: 'SET_HEAT';
|
|
57509
|
-
result: {};
|
|
57510
|
-
} | {
|
|
57511
|
-
/** The ID of the action attempt. */
|
|
57512
|
-
action_attempt_id: string;
|
|
57513
|
-
status: 'error';
|
|
57514
|
-
result: null;
|
|
57515
|
-
action_type: 'SET_HEAT';
|
|
57516
|
-
error: {
|
|
57517
|
-
type: string;
|
|
57518
|
-
message: string;
|
|
57519
|
-
};
|
|
57520
|
-
} | {
|
|
57521
|
-
/** The ID of the action attempt. */
|
|
57522
|
-
action_attempt_id: string;
|
|
57523
|
-
status: 'pending';
|
|
57524
|
-
result: null;
|
|
57525
|
-
error: null;
|
|
57526
|
-
action_type: 'SET_HEAT_COOL';
|
|
57527
|
-
} | {
|
|
57528
|
-
/** The ID of the action attempt. */
|
|
57529
|
-
action_attempt_id: string;
|
|
57530
|
-
status: 'success';
|
|
57531
|
-
error: null;
|
|
57532
|
-
action_type: 'SET_HEAT_COOL';
|
|
57533
|
-
result: {};
|
|
57534
|
-
} | {
|
|
57535
|
-
/** The ID of the action attempt. */
|
|
57536
|
-
action_attempt_id: string;
|
|
57537
|
-
status: 'error';
|
|
57538
|
-
result: null;
|
|
57539
|
-
action_type: 'SET_HEAT_COOL';
|
|
57540
|
-
error: {
|
|
57541
|
-
type: string;
|
|
57542
|
-
message: string;
|
|
57543
|
-
};
|
|
57544
55717
|
} | {
|
|
57545
55718
|
/** The ID of the action attempt. */
|
|
57546
55719
|
action_attempt_id: string;
|
|
@@ -57565,30 +55738,6 @@ interface Routes {
|
|
|
57565
55738
|
type: string;
|
|
57566
55739
|
message: string;
|
|
57567
55740
|
};
|
|
57568
|
-
} | {
|
|
57569
|
-
/** The ID of the action attempt. */
|
|
57570
|
-
action_attempt_id: string;
|
|
57571
|
-
status: 'pending';
|
|
57572
|
-
result: null;
|
|
57573
|
-
error: null;
|
|
57574
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
57575
|
-
} | {
|
|
57576
|
-
/** The ID of the action attempt. */
|
|
57577
|
-
action_attempt_id: string;
|
|
57578
|
-
status: 'success';
|
|
57579
|
-
error: null;
|
|
57580
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
57581
|
-
result: {};
|
|
57582
|
-
} | {
|
|
57583
|
-
/** The ID of the action attempt. */
|
|
57584
|
-
action_attempt_id: string;
|
|
57585
|
-
status: 'error';
|
|
57586
|
-
result: null;
|
|
57587
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
57588
|
-
error: {
|
|
57589
|
-
type: string;
|
|
57590
|
-
message: string;
|
|
57591
|
-
};
|
|
57592
55741
|
} | {
|
|
57593
55742
|
/** The ID of the action attempt. */
|
|
57594
55743
|
action_attempt_id: string;
|
|
@@ -59415,78 +57564,6 @@ interface Routes {
|
|
|
59415
57564
|
type: string;
|
|
59416
57565
|
message: string;
|
|
59417
57566
|
};
|
|
59418
|
-
} | {
|
|
59419
|
-
/** The ID of the action attempt. */
|
|
59420
|
-
action_attempt_id: string;
|
|
59421
|
-
status: 'pending';
|
|
59422
|
-
result: null;
|
|
59423
|
-
error: null;
|
|
59424
|
-
action_type: 'SET_COOL';
|
|
59425
|
-
} | {
|
|
59426
|
-
/** The ID of the action attempt. */
|
|
59427
|
-
action_attempt_id: string;
|
|
59428
|
-
status: 'success';
|
|
59429
|
-
error: null;
|
|
59430
|
-
action_type: 'SET_COOL';
|
|
59431
|
-
result: {};
|
|
59432
|
-
} | {
|
|
59433
|
-
/** The ID of the action attempt. */
|
|
59434
|
-
action_attempt_id: string;
|
|
59435
|
-
status: 'error';
|
|
59436
|
-
result: null;
|
|
59437
|
-
action_type: 'SET_COOL';
|
|
59438
|
-
error: {
|
|
59439
|
-
type: string;
|
|
59440
|
-
message: string;
|
|
59441
|
-
};
|
|
59442
|
-
} | {
|
|
59443
|
-
/** The ID of the action attempt. */
|
|
59444
|
-
action_attempt_id: string;
|
|
59445
|
-
status: 'pending';
|
|
59446
|
-
result: null;
|
|
59447
|
-
error: null;
|
|
59448
|
-
action_type: 'SET_HEAT';
|
|
59449
|
-
} | {
|
|
59450
|
-
/** The ID of the action attempt. */
|
|
59451
|
-
action_attempt_id: string;
|
|
59452
|
-
status: 'success';
|
|
59453
|
-
error: null;
|
|
59454
|
-
action_type: 'SET_HEAT';
|
|
59455
|
-
result: {};
|
|
59456
|
-
} | {
|
|
59457
|
-
/** The ID of the action attempt. */
|
|
59458
|
-
action_attempt_id: string;
|
|
59459
|
-
status: 'error';
|
|
59460
|
-
result: null;
|
|
59461
|
-
action_type: 'SET_HEAT';
|
|
59462
|
-
error: {
|
|
59463
|
-
type: string;
|
|
59464
|
-
message: string;
|
|
59465
|
-
};
|
|
59466
|
-
} | {
|
|
59467
|
-
/** The ID of the action attempt. */
|
|
59468
|
-
action_attempt_id: string;
|
|
59469
|
-
status: 'pending';
|
|
59470
|
-
result: null;
|
|
59471
|
-
error: null;
|
|
59472
|
-
action_type: 'SET_HEAT_COOL';
|
|
59473
|
-
} | {
|
|
59474
|
-
/** The ID of the action attempt. */
|
|
59475
|
-
action_attempt_id: string;
|
|
59476
|
-
status: 'success';
|
|
59477
|
-
error: null;
|
|
59478
|
-
action_type: 'SET_HEAT_COOL';
|
|
59479
|
-
result: {};
|
|
59480
|
-
} | {
|
|
59481
|
-
/** The ID of the action attempt. */
|
|
59482
|
-
action_attempt_id: string;
|
|
59483
|
-
status: 'error';
|
|
59484
|
-
result: null;
|
|
59485
|
-
action_type: 'SET_HEAT_COOL';
|
|
59486
|
-
error: {
|
|
59487
|
-
type: string;
|
|
59488
|
-
message: string;
|
|
59489
|
-
};
|
|
59490
57567
|
} | {
|
|
59491
57568
|
/** The ID of the action attempt. */
|
|
59492
57569
|
action_attempt_id: string;
|
|
@@ -59511,30 +57588,6 @@ interface Routes {
|
|
|
59511
57588
|
type: string;
|
|
59512
57589
|
message: string;
|
|
59513
57590
|
};
|
|
59514
|
-
} | {
|
|
59515
|
-
/** The ID of the action attempt. */
|
|
59516
|
-
action_attempt_id: string;
|
|
59517
|
-
status: 'pending';
|
|
59518
|
-
result: null;
|
|
59519
|
-
error: null;
|
|
59520
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
59521
|
-
} | {
|
|
59522
|
-
/** The ID of the action attempt. */
|
|
59523
|
-
action_attempt_id: string;
|
|
59524
|
-
status: 'success';
|
|
59525
|
-
error: null;
|
|
59526
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
59527
|
-
result: {};
|
|
59528
|
-
} | {
|
|
59529
|
-
/** The ID of the action attempt. */
|
|
59530
|
-
action_attempt_id: string;
|
|
59531
|
-
status: 'error';
|
|
59532
|
-
result: null;
|
|
59533
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
59534
|
-
error: {
|
|
59535
|
-
type: string;
|
|
59536
|
-
message: string;
|
|
59537
|
-
};
|
|
59538
57591
|
} | {
|
|
59539
57592
|
/** The ID of the action attempt. */
|
|
59540
57593
|
action_attempt_id: string;
|
|
@@ -60463,78 +58516,6 @@ interface Routes {
|
|
|
60463
58516
|
type: string;
|
|
60464
58517
|
message: string;
|
|
60465
58518
|
};
|
|
60466
|
-
} | {
|
|
60467
|
-
/** The ID of the action attempt. */
|
|
60468
|
-
action_attempt_id: string;
|
|
60469
|
-
status: 'pending';
|
|
60470
|
-
result: null;
|
|
60471
|
-
error: null;
|
|
60472
|
-
action_type: 'SET_COOL';
|
|
60473
|
-
} | {
|
|
60474
|
-
/** The ID of the action attempt. */
|
|
60475
|
-
action_attempt_id: string;
|
|
60476
|
-
status: 'success';
|
|
60477
|
-
error: null;
|
|
60478
|
-
action_type: 'SET_COOL';
|
|
60479
|
-
result: {};
|
|
60480
|
-
} | {
|
|
60481
|
-
/** The ID of the action attempt. */
|
|
60482
|
-
action_attempt_id: string;
|
|
60483
|
-
status: 'error';
|
|
60484
|
-
result: null;
|
|
60485
|
-
action_type: 'SET_COOL';
|
|
60486
|
-
error: {
|
|
60487
|
-
type: string;
|
|
60488
|
-
message: string;
|
|
60489
|
-
};
|
|
60490
|
-
} | {
|
|
60491
|
-
/** The ID of the action attempt. */
|
|
60492
|
-
action_attempt_id: string;
|
|
60493
|
-
status: 'pending';
|
|
60494
|
-
result: null;
|
|
60495
|
-
error: null;
|
|
60496
|
-
action_type: 'SET_HEAT';
|
|
60497
|
-
} | {
|
|
60498
|
-
/** The ID of the action attempt. */
|
|
60499
|
-
action_attempt_id: string;
|
|
60500
|
-
status: 'success';
|
|
60501
|
-
error: null;
|
|
60502
|
-
action_type: 'SET_HEAT';
|
|
60503
|
-
result: {};
|
|
60504
|
-
} | {
|
|
60505
|
-
/** The ID of the action attempt. */
|
|
60506
|
-
action_attempt_id: string;
|
|
60507
|
-
status: 'error';
|
|
60508
|
-
result: null;
|
|
60509
|
-
action_type: 'SET_HEAT';
|
|
60510
|
-
error: {
|
|
60511
|
-
type: string;
|
|
60512
|
-
message: string;
|
|
60513
|
-
};
|
|
60514
|
-
} | {
|
|
60515
|
-
/** The ID of the action attempt. */
|
|
60516
|
-
action_attempt_id: string;
|
|
60517
|
-
status: 'pending';
|
|
60518
|
-
result: null;
|
|
60519
|
-
error: null;
|
|
60520
|
-
action_type: 'SET_HEAT_COOL';
|
|
60521
|
-
} | {
|
|
60522
|
-
/** The ID of the action attempt. */
|
|
60523
|
-
action_attempt_id: string;
|
|
60524
|
-
status: 'success';
|
|
60525
|
-
error: null;
|
|
60526
|
-
action_type: 'SET_HEAT_COOL';
|
|
60527
|
-
result: {};
|
|
60528
|
-
} | {
|
|
60529
|
-
/** The ID of the action attempt. */
|
|
60530
|
-
action_attempt_id: string;
|
|
60531
|
-
status: 'error';
|
|
60532
|
-
result: null;
|
|
60533
|
-
action_type: 'SET_HEAT_COOL';
|
|
60534
|
-
error: {
|
|
60535
|
-
type: string;
|
|
60536
|
-
message: string;
|
|
60537
|
-
};
|
|
60538
58519
|
} | {
|
|
60539
58520
|
/** The ID of the action attempt. */
|
|
60540
58521
|
action_attempt_id: string;
|
|
@@ -60559,30 +58540,6 @@ interface Routes {
|
|
|
60559
58540
|
type: string;
|
|
60560
58541
|
message: string;
|
|
60561
58542
|
};
|
|
60562
|
-
} | {
|
|
60563
|
-
/** The ID of the action attempt. */
|
|
60564
|
-
action_attempt_id: string;
|
|
60565
|
-
status: 'pending';
|
|
60566
|
-
result: null;
|
|
60567
|
-
error: null;
|
|
60568
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
60569
|
-
} | {
|
|
60570
|
-
/** The ID of the action attempt. */
|
|
60571
|
-
action_attempt_id: string;
|
|
60572
|
-
status: 'success';
|
|
60573
|
-
error: null;
|
|
60574
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
60575
|
-
result: {};
|
|
60576
|
-
} | {
|
|
60577
|
-
/** The ID of the action attempt. */
|
|
60578
|
-
action_attempt_id: string;
|
|
60579
|
-
status: 'error';
|
|
60580
|
-
result: null;
|
|
60581
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
60582
|
-
error: {
|
|
60583
|
-
type: string;
|
|
60584
|
-
message: string;
|
|
60585
|
-
};
|
|
60586
58543
|
} | {
|
|
60587
58544
|
/** The ID of the action attempt. */
|
|
60588
58545
|
action_attempt_id: string;
|
|
@@ -61365,78 +59322,6 @@ interface Routes {
|
|
|
61365
59322
|
type: string;
|
|
61366
59323
|
message: string;
|
|
61367
59324
|
};
|
|
61368
|
-
} | {
|
|
61369
|
-
/** The ID of the action attempt. */
|
|
61370
|
-
action_attempt_id: string;
|
|
61371
|
-
status: 'pending';
|
|
61372
|
-
result: null;
|
|
61373
|
-
error: null;
|
|
61374
|
-
action_type: 'SET_COOL';
|
|
61375
|
-
} | {
|
|
61376
|
-
/** The ID of the action attempt. */
|
|
61377
|
-
action_attempt_id: string;
|
|
61378
|
-
status: 'success';
|
|
61379
|
-
error: null;
|
|
61380
|
-
action_type: 'SET_COOL';
|
|
61381
|
-
result: {};
|
|
61382
|
-
} | {
|
|
61383
|
-
/** The ID of the action attempt. */
|
|
61384
|
-
action_attempt_id: string;
|
|
61385
|
-
status: 'error';
|
|
61386
|
-
result: null;
|
|
61387
|
-
action_type: 'SET_COOL';
|
|
61388
|
-
error: {
|
|
61389
|
-
type: string;
|
|
61390
|
-
message: string;
|
|
61391
|
-
};
|
|
61392
|
-
} | {
|
|
61393
|
-
/** The ID of the action attempt. */
|
|
61394
|
-
action_attempt_id: string;
|
|
61395
|
-
status: 'pending';
|
|
61396
|
-
result: null;
|
|
61397
|
-
error: null;
|
|
61398
|
-
action_type: 'SET_HEAT';
|
|
61399
|
-
} | {
|
|
61400
|
-
/** The ID of the action attempt. */
|
|
61401
|
-
action_attempt_id: string;
|
|
61402
|
-
status: 'success';
|
|
61403
|
-
error: null;
|
|
61404
|
-
action_type: 'SET_HEAT';
|
|
61405
|
-
result: {};
|
|
61406
|
-
} | {
|
|
61407
|
-
/** The ID of the action attempt. */
|
|
61408
|
-
action_attempt_id: string;
|
|
61409
|
-
status: 'error';
|
|
61410
|
-
result: null;
|
|
61411
|
-
action_type: 'SET_HEAT';
|
|
61412
|
-
error: {
|
|
61413
|
-
type: string;
|
|
61414
|
-
message: string;
|
|
61415
|
-
};
|
|
61416
|
-
} | {
|
|
61417
|
-
/** The ID of the action attempt. */
|
|
61418
|
-
action_attempt_id: string;
|
|
61419
|
-
status: 'pending';
|
|
61420
|
-
result: null;
|
|
61421
|
-
error: null;
|
|
61422
|
-
action_type: 'SET_HEAT_COOL';
|
|
61423
|
-
} | {
|
|
61424
|
-
/** The ID of the action attempt. */
|
|
61425
|
-
action_attempt_id: string;
|
|
61426
|
-
status: 'success';
|
|
61427
|
-
error: null;
|
|
61428
|
-
action_type: 'SET_HEAT_COOL';
|
|
61429
|
-
result: {};
|
|
61430
|
-
} | {
|
|
61431
|
-
/** The ID of the action attempt. */
|
|
61432
|
-
action_attempt_id: string;
|
|
61433
|
-
status: 'error';
|
|
61434
|
-
result: null;
|
|
61435
|
-
action_type: 'SET_HEAT_COOL';
|
|
61436
|
-
error: {
|
|
61437
|
-
type: string;
|
|
61438
|
-
message: string;
|
|
61439
|
-
};
|
|
61440
59325
|
} | {
|
|
61441
59326
|
/** The ID of the action attempt. */
|
|
61442
59327
|
action_attempt_id: string;
|
|
@@ -61461,30 +59346,6 @@ interface Routes {
|
|
|
61461
59346
|
type: string;
|
|
61462
59347
|
message: string;
|
|
61463
59348
|
};
|
|
61464
|
-
} | {
|
|
61465
|
-
/** The ID of the action attempt. */
|
|
61466
|
-
action_attempt_id: string;
|
|
61467
|
-
status: 'pending';
|
|
61468
|
-
result: null;
|
|
61469
|
-
error: null;
|
|
61470
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
61471
|
-
} | {
|
|
61472
|
-
/** The ID of the action attempt. */
|
|
61473
|
-
action_attempt_id: string;
|
|
61474
|
-
status: 'success';
|
|
61475
|
-
error: null;
|
|
61476
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
61477
|
-
result: {};
|
|
61478
|
-
} | {
|
|
61479
|
-
/** The ID of the action attempt. */
|
|
61480
|
-
action_attempt_id: string;
|
|
61481
|
-
status: 'error';
|
|
61482
|
-
result: null;
|
|
61483
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
61484
|
-
error: {
|
|
61485
|
-
type: string;
|
|
61486
|
-
message: string;
|
|
61487
|
-
};
|
|
61488
59349
|
} | {
|
|
61489
59350
|
/** The ID of the action attempt. */
|
|
61490
59351
|
action_attempt_id: string;
|
|
@@ -63979,78 +61840,6 @@ interface Routes {
|
|
|
63979
61840
|
type: string;
|
|
63980
61841
|
message: string;
|
|
63981
61842
|
};
|
|
63982
|
-
} | {
|
|
63983
|
-
/** The ID of the action attempt. */
|
|
63984
|
-
action_attempt_id: string;
|
|
63985
|
-
status: 'pending';
|
|
63986
|
-
result: null;
|
|
63987
|
-
error: null;
|
|
63988
|
-
action_type: 'SET_COOL';
|
|
63989
|
-
} | {
|
|
63990
|
-
/** The ID of the action attempt. */
|
|
63991
|
-
action_attempt_id: string;
|
|
63992
|
-
status: 'success';
|
|
63993
|
-
error: null;
|
|
63994
|
-
action_type: 'SET_COOL';
|
|
63995
|
-
result: {};
|
|
63996
|
-
} | {
|
|
63997
|
-
/** The ID of the action attempt. */
|
|
63998
|
-
action_attempt_id: string;
|
|
63999
|
-
status: 'error';
|
|
64000
|
-
result: null;
|
|
64001
|
-
action_type: 'SET_COOL';
|
|
64002
|
-
error: {
|
|
64003
|
-
type: string;
|
|
64004
|
-
message: string;
|
|
64005
|
-
};
|
|
64006
|
-
} | {
|
|
64007
|
-
/** The ID of the action attempt. */
|
|
64008
|
-
action_attempt_id: string;
|
|
64009
|
-
status: 'pending';
|
|
64010
|
-
result: null;
|
|
64011
|
-
error: null;
|
|
64012
|
-
action_type: 'SET_HEAT';
|
|
64013
|
-
} | {
|
|
64014
|
-
/** The ID of the action attempt. */
|
|
64015
|
-
action_attempt_id: string;
|
|
64016
|
-
status: 'success';
|
|
64017
|
-
error: null;
|
|
64018
|
-
action_type: 'SET_HEAT';
|
|
64019
|
-
result: {};
|
|
64020
|
-
} | {
|
|
64021
|
-
/** The ID of the action attempt. */
|
|
64022
|
-
action_attempt_id: string;
|
|
64023
|
-
status: 'error';
|
|
64024
|
-
result: null;
|
|
64025
|
-
action_type: 'SET_HEAT';
|
|
64026
|
-
error: {
|
|
64027
|
-
type: string;
|
|
64028
|
-
message: string;
|
|
64029
|
-
};
|
|
64030
|
-
} | {
|
|
64031
|
-
/** The ID of the action attempt. */
|
|
64032
|
-
action_attempt_id: string;
|
|
64033
|
-
status: 'pending';
|
|
64034
|
-
result: null;
|
|
64035
|
-
error: null;
|
|
64036
|
-
action_type: 'SET_HEAT_COOL';
|
|
64037
|
-
} | {
|
|
64038
|
-
/** The ID of the action attempt. */
|
|
64039
|
-
action_attempt_id: string;
|
|
64040
|
-
status: 'success';
|
|
64041
|
-
error: null;
|
|
64042
|
-
action_type: 'SET_HEAT_COOL';
|
|
64043
|
-
result: {};
|
|
64044
|
-
} | {
|
|
64045
|
-
/** The ID of the action attempt. */
|
|
64046
|
-
action_attempt_id: string;
|
|
64047
|
-
status: 'error';
|
|
64048
|
-
result: null;
|
|
64049
|
-
action_type: 'SET_HEAT_COOL';
|
|
64050
|
-
error: {
|
|
64051
|
-
type: string;
|
|
64052
|
-
message: string;
|
|
64053
|
-
};
|
|
64054
61843
|
} | {
|
|
64055
61844
|
/** The ID of the action attempt. */
|
|
64056
61845
|
action_attempt_id: string;
|
|
@@ -64075,30 +61864,6 @@ interface Routes {
|
|
|
64075
61864
|
type: string;
|
|
64076
61865
|
message: string;
|
|
64077
61866
|
};
|
|
64078
|
-
} | {
|
|
64079
|
-
/** The ID of the action attempt. */
|
|
64080
|
-
action_attempt_id: string;
|
|
64081
|
-
status: 'pending';
|
|
64082
|
-
result: null;
|
|
64083
|
-
error: null;
|
|
64084
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
64085
|
-
} | {
|
|
64086
|
-
/** The ID of the action attempt. */
|
|
64087
|
-
action_attempt_id: string;
|
|
64088
|
-
status: 'success';
|
|
64089
|
-
error: null;
|
|
64090
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
64091
|
-
result: {};
|
|
64092
|
-
} | {
|
|
64093
|
-
/** The ID of the action attempt. */
|
|
64094
|
-
action_attempt_id: string;
|
|
64095
|
-
status: 'error';
|
|
64096
|
-
result: null;
|
|
64097
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
64098
|
-
error: {
|
|
64099
|
-
type: string;
|
|
64100
|
-
message: string;
|
|
64101
|
-
};
|
|
64102
61867
|
} | {
|
|
64103
61868
|
/** The ID of the action attempt. */
|
|
64104
61869
|
action_attempt_id: string;
|