@seamapi/types 1.303.1 → 1.305.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 +112 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +610 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +78 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.js +2 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.d.ts +80 -0
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.js +25 -0
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +26 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +54 -0
- package/lib/seam/connect/models/events/acs/systems.js +6 -0
- package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +26 -0
- package/lib/seam/connect/openapi.js +78 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +506 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +2 -0
- package/src/lib/seam/connect/models/action-attempts/set-hvac-mode.ts +33 -0
- package/src/lib/seam/connect/models/events/acs/systems.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +78 -0
- package/src/lib/seam/connect/route-types.ts +569 -0
|
@@ -660,6 +660,30 @@ export interface Routes {
|
|
|
660
660
|
type: string;
|
|
661
661
|
message: string;
|
|
662
662
|
};
|
|
663
|
+
} | {
|
|
664
|
+
/** The ID of the action attempt. */
|
|
665
|
+
action_attempt_id: string;
|
|
666
|
+
status: 'pending';
|
|
667
|
+
result: null;
|
|
668
|
+
error: null;
|
|
669
|
+
action_type: 'SET_HVAC_MODE';
|
|
670
|
+
} | {
|
|
671
|
+
/** The ID of the action attempt. */
|
|
672
|
+
action_attempt_id: string;
|
|
673
|
+
status: 'success';
|
|
674
|
+
error: null;
|
|
675
|
+
action_type: 'SET_HVAC_MODE';
|
|
676
|
+
result: {};
|
|
677
|
+
} | {
|
|
678
|
+
/** The ID of the action attempt. */
|
|
679
|
+
action_attempt_id: string;
|
|
680
|
+
status: 'error';
|
|
681
|
+
result: null;
|
|
682
|
+
action_type: 'SET_HVAC_MODE';
|
|
683
|
+
error: {
|
|
684
|
+
type: string;
|
|
685
|
+
message: string;
|
|
686
|
+
};
|
|
663
687
|
} | {
|
|
664
688
|
/** The ID of the action attempt. */
|
|
665
689
|
action_attempt_id: string;
|
|
@@ -1659,6 +1683,30 @@ export interface Routes {
|
|
|
1659
1683
|
type: string;
|
|
1660
1684
|
message: string;
|
|
1661
1685
|
};
|
|
1686
|
+
} | {
|
|
1687
|
+
/** The ID of the action attempt. */
|
|
1688
|
+
action_attempt_id: string;
|
|
1689
|
+
status: 'pending';
|
|
1690
|
+
result: null;
|
|
1691
|
+
error: null;
|
|
1692
|
+
action_type: 'SET_HVAC_MODE';
|
|
1693
|
+
} | {
|
|
1694
|
+
/** The ID of the action attempt. */
|
|
1695
|
+
action_attempt_id: string;
|
|
1696
|
+
status: 'success';
|
|
1697
|
+
error: null;
|
|
1698
|
+
action_type: 'SET_HVAC_MODE';
|
|
1699
|
+
result: {};
|
|
1700
|
+
} | {
|
|
1701
|
+
/** The ID of the action attempt. */
|
|
1702
|
+
action_attempt_id: string;
|
|
1703
|
+
status: 'error';
|
|
1704
|
+
result: null;
|
|
1705
|
+
action_type: 'SET_HVAC_MODE';
|
|
1706
|
+
error: {
|
|
1707
|
+
type: string;
|
|
1708
|
+
message: string;
|
|
1709
|
+
};
|
|
1662
1710
|
} | {
|
|
1663
1711
|
/** The ID of the action attempt. */
|
|
1664
1712
|
action_attempt_id: string;
|
|
@@ -2876,6 +2924,30 @@ export interface Routes {
|
|
|
2876
2924
|
type: string;
|
|
2877
2925
|
message: string;
|
|
2878
2926
|
};
|
|
2927
|
+
} | {
|
|
2928
|
+
/** The ID of the action attempt. */
|
|
2929
|
+
action_attempt_id: string;
|
|
2930
|
+
status: 'pending';
|
|
2931
|
+
result: null;
|
|
2932
|
+
error: null;
|
|
2933
|
+
action_type: 'SET_HVAC_MODE';
|
|
2934
|
+
} | {
|
|
2935
|
+
/** The ID of the action attempt. */
|
|
2936
|
+
action_attempt_id: string;
|
|
2937
|
+
status: 'success';
|
|
2938
|
+
error: null;
|
|
2939
|
+
action_type: 'SET_HVAC_MODE';
|
|
2940
|
+
result: {};
|
|
2941
|
+
} | {
|
|
2942
|
+
/** The ID of the action attempt. */
|
|
2943
|
+
action_attempt_id: string;
|
|
2944
|
+
status: 'error';
|
|
2945
|
+
result: null;
|
|
2946
|
+
action_type: 'SET_HVAC_MODE';
|
|
2947
|
+
error: {
|
|
2948
|
+
type: string;
|
|
2949
|
+
message: string;
|
|
2950
|
+
};
|
|
2879
2951
|
} | {
|
|
2880
2952
|
/** The ID of the action attempt. */
|
|
2881
2953
|
action_attempt_id: string;
|
|
@@ -3862,6 +3934,30 @@ export interface Routes {
|
|
|
3862
3934
|
type: string;
|
|
3863
3935
|
message: string;
|
|
3864
3936
|
};
|
|
3937
|
+
} | {
|
|
3938
|
+
/** The ID of the action attempt. */
|
|
3939
|
+
action_attempt_id: string;
|
|
3940
|
+
status: 'pending';
|
|
3941
|
+
result: null;
|
|
3942
|
+
error: null;
|
|
3943
|
+
action_type: 'SET_HVAC_MODE';
|
|
3944
|
+
} | {
|
|
3945
|
+
/** The ID of the action attempt. */
|
|
3946
|
+
action_attempt_id: string;
|
|
3947
|
+
status: 'success';
|
|
3948
|
+
error: null;
|
|
3949
|
+
action_type: 'SET_HVAC_MODE';
|
|
3950
|
+
result: {};
|
|
3951
|
+
} | {
|
|
3952
|
+
/** The ID of the action attempt. */
|
|
3953
|
+
action_attempt_id: string;
|
|
3954
|
+
status: 'error';
|
|
3955
|
+
result: null;
|
|
3956
|
+
action_type: 'SET_HVAC_MODE';
|
|
3957
|
+
error: {
|
|
3958
|
+
type: string;
|
|
3959
|
+
message: string;
|
|
3960
|
+
};
|
|
3865
3961
|
} | {
|
|
3866
3962
|
/** The ID of the action attempt. */
|
|
3867
3963
|
action_attempt_id: string;
|
|
@@ -6183,6 +6279,30 @@ export interface Routes {
|
|
|
6183
6279
|
type: string;
|
|
6184
6280
|
message: string;
|
|
6185
6281
|
};
|
|
6282
|
+
} | {
|
|
6283
|
+
/** The ID of the action attempt. */
|
|
6284
|
+
action_attempt_id: string;
|
|
6285
|
+
status: 'pending';
|
|
6286
|
+
result: null;
|
|
6287
|
+
error: null;
|
|
6288
|
+
action_type: 'SET_HVAC_MODE';
|
|
6289
|
+
} | {
|
|
6290
|
+
/** The ID of the action attempt. */
|
|
6291
|
+
action_attempt_id: string;
|
|
6292
|
+
status: 'success';
|
|
6293
|
+
error: null;
|
|
6294
|
+
action_type: 'SET_HVAC_MODE';
|
|
6295
|
+
result: {};
|
|
6296
|
+
} | {
|
|
6297
|
+
/** The ID of the action attempt. */
|
|
6298
|
+
action_attempt_id: string;
|
|
6299
|
+
status: 'error';
|
|
6300
|
+
result: null;
|
|
6301
|
+
action_type: 'SET_HVAC_MODE';
|
|
6302
|
+
error: {
|
|
6303
|
+
type: string;
|
|
6304
|
+
message: string;
|
|
6305
|
+
};
|
|
6186
6306
|
} | {
|
|
6187
6307
|
/** The ID of the action attempt. */
|
|
6188
6308
|
action_attempt_id: string;
|
|
@@ -7076,6 +7196,30 @@ export interface Routes {
|
|
|
7076
7196
|
type: string;
|
|
7077
7197
|
message: string;
|
|
7078
7198
|
};
|
|
7199
|
+
} | {
|
|
7200
|
+
/** The ID of the action attempt. */
|
|
7201
|
+
action_attempt_id: string;
|
|
7202
|
+
status: 'pending';
|
|
7203
|
+
result: null;
|
|
7204
|
+
error: null;
|
|
7205
|
+
action_type: 'SET_HVAC_MODE';
|
|
7206
|
+
} | {
|
|
7207
|
+
/** The ID of the action attempt. */
|
|
7208
|
+
action_attempt_id: string;
|
|
7209
|
+
status: 'success';
|
|
7210
|
+
error: null;
|
|
7211
|
+
action_type: 'SET_HVAC_MODE';
|
|
7212
|
+
result: {};
|
|
7213
|
+
} | {
|
|
7214
|
+
/** The ID of the action attempt. */
|
|
7215
|
+
action_attempt_id: string;
|
|
7216
|
+
status: 'error';
|
|
7217
|
+
result: null;
|
|
7218
|
+
action_type: 'SET_HVAC_MODE';
|
|
7219
|
+
error: {
|
|
7220
|
+
type: string;
|
|
7221
|
+
message: string;
|
|
7222
|
+
};
|
|
7079
7223
|
} | {
|
|
7080
7224
|
/** The ID of the action attempt. */
|
|
7081
7225
|
action_attempt_id: string;
|
|
@@ -9217,6 +9361,30 @@ export interface Routes {
|
|
|
9217
9361
|
type: string;
|
|
9218
9362
|
message: string;
|
|
9219
9363
|
};
|
|
9364
|
+
} | {
|
|
9365
|
+
/** The ID of the action attempt. */
|
|
9366
|
+
action_attempt_id: string;
|
|
9367
|
+
status: 'pending';
|
|
9368
|
+
result: null;
|
|
9369
|
+
error: null;
|
|
9370
|
+
action_type: 'SET_HVAC_MODE';
|
|
9371
|
+
} | {
|
|
9372
|
+
/** The ID of the action attempt. */
|
|
9373
|
+
action_attempt_id: string;
|
|
9374
|
+
status: 'success';
|
|
9375
|
+
error: null;
|
|
9376
|
+
action_type: 'SET_HVAC_MODE';
|
|
9377
|
+
result: {};
|
|
9378
|
+
} | {
|
|
9379
|
+
/** The ID of the action attempt. */
|
|
9380
|
+
action_attempt_id: string;
|
|
9381
|
+
status: 'error';
|
|
9382
|
+
result: null;
|
|
9383
|
+
action_type: 'SET_HVAC_MODE';
|
|
9384
|
+
error: {
|
|
9385
|
+
type: string;
|
|
9386
|
+
message: string;
|
|
9387
|
+
};
|
|
9220
9388
|
} | {
|
|
9221
9389
|
/** The ID of the action attempt. */
|
|
9222
9390
|
action_attempt_id: string;
|
|
@@ -10065,6 +10233,30 @@ export interface Routes {
|
|
|
10065
10233
|
type: string;
|
|
10066
10234
|
message: string;
|
|
10067
10235
|
};
|
|
10236
|
+
} | {
|
|
10237
|
+
/** The ID of the action attempt. */
|
|
10238
|
+
action_attempt_id: string;
|
|
10239
|
+
status: 'pending';
|
|
10240
|
+
result: null;
|
|
10241
|
+
error: null;
|
|
10242
|
+
action_type: 'SET_HVAC_MODE';
|
|
10243
|
+
} | {
|
|
10244
|
+
/** The ID of the action attempt. */
|
|
10245
|
+
action_attempt_id: string;
|
|
10246
|
+
status: 'success';
|
|
10247
|
+
error: null;
|
|
10248
|
+
action_type: 'SET_HVAC_MODE';
|
|
10249
|
+
result: {};
|
|
10250
|
+
} | {
|
|
10251
|
+
/** The ID of the action attempt. */
|
|
10252
|
+
action_attempt_id: string;
|
|
10253
|
+
status: 'error';
|
|
10254
|
+
result: null;
|
|
10255
|
+
action_type: 'SET_HVAC_MODE';
|
|
10256
|
+
error: {
|
|
10257
|
+
type: string;
|
|
10258
|
+
message: string;
|
|
10259
|
+
};
|
|
10068
10260
|
} | {
|
|
10069
10261
|
/** The ID of the action attempt. */
|
|
10070
10262
|
action_attempt_id: string;
|
|
@@ -12161,8 +12353,8 @@ export interface Routes {
|
|
|
12161
12353
|
acs_system_ids?: string[] | undefined;
|
|
12162
12354
|
access_code_id?: string | undefined;
|
|
12163
12355
|
access_code_ids?: string[] | undefined;
|
|
12164
|
-
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded') | undefined;
|
|
12165
|
-
event_types?: Array<'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded'> | undefined;
|
|
12356
|
+
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_system.disconnected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded') | undefined;
|
|
12357
|
+
event_types?: Array<'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_system.disconnected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded'> | undefined;
|
|
12166
12358
|
connected_account_id?: string | undefined;
|
|
12167
12359
|
connect_webview_id?: string | undefined;
|
|
12168
12360
|
limit?: number;
|
|
@@ -14944,6 +15136,30 @@ export interface Routes {
|
|
|
14944
15136
|
type: string;
|
|
14945
15137
|
message: string;
|
|
14946
15138
|
};
|
|
15139
|
+
} | {
|
|
15140
|
+
/** The ID of the action attempt. */
|
|
15141
|
+
action_attempt_id: string;
|
|
15142
|
+
status: 'pending';
|
|
15143
|
+
result: null;
|
|
15144
|
+
error: null;
|
|
15145
|
+
action_type: 'SET_HVAC_MODE';
|
|
15146
|
+
} | {
|
|
15147
|
+
/** The ID of the action attempt. */
|
|
15148
|
+
action_attempt_id: string;
|
|
15149
|
+
status: 'success';
|
|
15150
|
+
error: null;
|
|
15151
|
+
action_type: 'SET_HVAC_MODE';
|
|
15152
|
+
result: {};
|
|
15153
|
+
} | {
|
|
15154
|
+
/** The ID of the action attempt. */
|
|
15155
|
+
action_attempt_id: string;
|
|
15156
|
+
status: 'error';
|
|
15157
|
+
result: null;
|
|
15158
|
+
action_type: 'SET_HVAC_MODE';
|
|
15159
|
+
error: {
|
|
15160
|
+
type: string;
|
|
15161
|
+
message: string;
|
|
15162
|
+
};
|
|
14947
15163
|
} | {
|
|
14948
15164
|
/** The ID of the action attempt. */
|
|
14949
15165
|
action_attempt_id: string;
|
|
@@ -15793,6 +16009,30 @@ export interface Routes {
|
|
|
15793
16009
|
type: string;
|
|
15794
16010
|
message: string;
|
|
15795
16011
|
};
|
|
16012
|
+
} | {
|
|
16013
|
+
/** The ID of the action attempt. */
|
|
16014
|
+
action_attempt_id: string;
|
|
16015
|
+
status: 'pending';
|
|
16016
|
+
result: null;
|
|
16017
|
+
error: null;
|
|
16018
|
+
action_type: 'SET_HVAC_MODE';
|
|
16019
|
+
} | {
|
|
16020
|
+
/** The ID of the action attempt. */
|
|
16021
|
+
action_attempt_id: string;
|
|
16022
|
+
status: 'success';
|
|
16023
|
+
error: null;
|
|
16024
|
+
action_type: 'SET_HVAC_MODE';
|
|
16025
|
+
result: {};
|
|
16026
|
+
} | {
|
|
16027
|
+
/** The ID of the action attempt. */
|
|
16028
|
+
action_attempt_id: string;
|
|
16029
|
+
status: 'error';
|
|
16030
|
+
result: null;
|
|
16031
|
+
action_type: 'SET_HVAC_MODE';
|
|
16032
|
+
error: {
|
|
16033
|
+
type: string;
|
|
16034
|
+
message: string;
|
|
16035
|
+
};
|
|
15796
16036
|
} | {
|
|
15797
16037
|
/** The ID of the action attempt. */
|
|
15798
16038
|
action_attempt_id: string;
|
|
@@ -17744,6 +17984,30 @@ export interface Routes {
|
|
|
17744
17984
|
type: string;
|
|
17745
17985
|
message: string;
|
|
17746
17986
|
};
|
|
17987
|
+
} | {
|
|
17988
|
+
/** The ID of the action attempt. */
|
|
17989
|
+
action_attempt_id: string;
|
|
17990
|
+
status: 'pending';
|
|
17991
|
+
result: null;
|
|
17992
|
+
error: null;
|
|
17993
|
+
action_type: 'SET_HVAC_MODE';
|
|
17994
|
+
} | {
|
|
17995
|
+
/** The ID of the action attempt. */
|
|
17996
|
+
action_attempt_id: string;
|
|
17997
|
+
status: 'success';
|
|
17998
|
+
error: null;
|
|
17999
|
+
action_type: 'SET_HVAC_MODE';
|
|
18000
|
+
result: {};
|
|
18001
|
+
} | {
|
|
18002
|
+
/** The ID of the action attempt. */
|
|
18003
|
+
action_attempt_id: string;
|
|
18004
|
+
status: 'error';
|
|
18005
|
+
result: null;
|
|
18006
|
+
action_type: 'SET_HVAC_MODE';
|
|
18007
|
+
error: {
|
|
18008
|
+
type: string;
|
|
18009
|
+
message: string;
|
|
18010
|
+
};
|
|
17747
18011
|
} | {
|
|
17748
18012
|
/** The ID of the action attempt. */
|
|
17749
18013
|
action_attempt_id: string;
|
|
@@ -18603,6 +18867,30 @@ export interface Routes {
|
|
|
18603
18867
|
type: string;
|
|
18604
18868
|
message: string;
|
|
18605
18869
|
};
|
|
18870
|
+
} | {
|
|
18871
|
+
/** The ID of the action attempt. */
|
|
18872
|
+
action_attempt_id: string;
|
|
18873
|
+
status: 'pending';
|
|
18874
|
+
result: null;
|
|
18875
|
+
error: null;
|
|
18876
|
+
action_type: 'SET_HVAC_MODE';
|
|
18877
|
+
} | {
|
|
18878
|
+
/** The ID of the action attempt. */
|
|
18879
|
+
action_attempt_id: string;
|
|
18880
|
+
status: 'success';
|
|
18881
|
+
error: null;
|
|
18882
|
+
action_type: 'SET_HVAC_MODE';
|
|
18883
|
+
result: {};
|
|
18884
|
+
} | {
|
|
18885
|
+
/** The ID of the action attempt. */
|
|
18886
|
+
action_attempt_id: string;
|
|
18887
|
+
status: 'error';
|
|
18888
|
+
result: null;
|
|
18889
|
+
action_type: 'SET_HVAC_MODE';
|
|
18890
|
+
error: {
|
|
18891
|
+
type: string;
|
|
18892
|
+
message: string;
|
|
18893
|
+
};
|
|
18606
18894
|
} | {
|
|
18607
18895
|
/** The ID of the action attempt. */
|
|
18608
18896
|
action_attempt_id: string;
|
|
@@ -19501,6 +19789,30 @@ export interface Routes {
|
|
|
19501
19789
|
type: string;
|
|
19502
19790
|
message: string;
|
|
19503
19791
|
};
|
|
19792
|
+
} | {
|
|
19793
|
+
/** The ID of the action attempt. */
|
|
19794
|
+
action_attempt_id: string;
|
|
19795
|
+
status: 'pending';
|
|
19796
|
+
result: null;
|
|
19797
|
+
error: null;
|
|
19798
|
+
action_type: 'SET_HVAC_MODE';
|
|
19799
|
+
} | {
|
|
19800
|
+
/** The ID of the action attempt. */
|
|
19801
|
+
action_attempt_id: string;
|
|
19802
|
+
status: 'success';
|
|
19803
|
+
error: null;
|
|
19804
|
+
action_type: 'SET_HVAC_MODE';
|
|
19805
|
+
result: {};
|
|
19806
|
+
} | {
|
|
19807
|
+
/** The ID of the action attempt. */
|
|
19808
|
+
action_attempt_id: string;
|
|
19809
|
+
status: 'error';
|
|
19810
|
+
result: null;
|
|
19811
|
+
action_type: 'SET_HVAC_MODE';
|
|
19812
|
+
error: {
|
|
19813
|
+
type: string;
|
|
19814
|
+
message: string;
|
|
19815
|
+
};
|
|
19504
19816
|
} | {
|
|
19505
19817
|
/** The ID of the action attempt. */
|
|
19506
19818
|
action_attempt_id: string;
|
|
@@ -20534,6 +20846,30 @@ export interface Routes {
|
|
|
20534
20846
|
type: string;
|
|
20535
20847
|
message: string;
|
|
20536
20848
|
};
|
|
20849
|
+
} | {
|
|
20850
|
+
/** The ID of the action attempt. */
|
|
20851
|
+
action_attempt_id: string;
|
|
20852
|
+
status: 'pending';
|
|
20853
|
+
result: null;
|
|
20854
|
+
error: null;
|
|
20855
|
+
action_type: 'SET_HVAC_MODE';
|
|
20856
|
+
} | {
|
|
20857
|
+
/** The ID of the action attempt. */
|
|
20858
|
+
action_attempt_id: string;
|
|
20859
|
+
status: 'success';
|
|
20860
|
+
error: null;
|
|
20861
|
+
action_type: 'SET_HVAC_MODE';
|
|
20862
|
+
result: {};
|
|
20863
|
+
} | {
|
|
20864
|
+
/** The ID of the action attempt. */
|
|
20865
|
+
action_attempt_id: string;
|
|
20866
|
+
status: 'error';
|
|
20867
|
+
result: null;
|
|
20868
|
+
action_type: 'SET_HVAC_MODE';
|
|
20869
|
+
error: {
|
|
20870
|
+
type: string;
|
|
20871
|
+
message: string;
|
|
20872
|
+
};
|
|
20537
20873
|
} | {
|
|
20538
20874
|
/** The ID of the action attempt. */
|
|
20539
20875
|
action_attempt_id: string;
|
|
@@ -21389,6 +21725,30 @@ export interface Routes {
|
|
|
21389
21725
|
type: string;
|
|
21390
21726
|
message: string;
|
|
21391
21727
|
};
|
|
21728
|
+
} | {
|
|
21729
|
+
/** The ID of the action attempt. */
|
|
21730
|
+
action_attempt_id: string;
|
|
21731
|
+
status: 'pending';
|
|
21732
|
+
result: null;
|
|
21733
|
+
error: null;
|
|
21734
|
+
action_type: 'SET_HVAC_MODE';
|
|
21735
|
+
} | {
|
|
21736
|
+
/** The ID of the action attempt. */
|
|
21737
|
+
action_attempt_id: string;
|
|
21738
|
+
status: 'success';
|
|
21739
|
+
error: null;
|
|
21740
|
+
action_type: 'SET_HVAC_MODE';
|
|
21741
|
+
result: {};
|
|
21742
|
+
} | {
|
|
21743
|
+
/** The ID of the action attempt. */
|
|
21744
|
+
action_attempt_id: string;
|
|
21745
|
+
status: 'error';
|
|
21746
|
+
result: null;
|
|
21747
|
+
action_type: 'SET_HVAC_MODE';
|
|
21748
|
+
error: {
|
|
21749
|
+
type: string;
|
|
21750
|
+
message: string;
|
|
21751
|
+
};
|
|
21392
21752
|
} | {
|
|
21393
21753
|
/** The ID of the action attempt. */
|
|
21394
21754
|
action_attempt_id: string;
|
|
@@ -22815,6 +23175,30 @@ export interface Routes {
|
|
|
22815
23175
|
type: string;
|
|
22816
23176
|
message: string;
|
|
22817
23177
|
};
|
|
23178
|
+
} | {
|
|
23179
|
+
/** The ID of the action attempt. */
|
|
23180
|
+
action_attempt_id: string;
|
|
23181
|
+
status: 'pending';
|
|
23182
|
+
result: null;
|
|
23183
|
+
error: null;
|
|
23184
|
+
action_type: 'SET_HVAC_MODE';
|
|
23185
|
+
} | {
|
|
23186
|
+
/** The ID of the action attempt. */
|
|
23187
|
+
action_attempt_id: string;
|
|
23188
|
+
status: 'success';
|
|
23189
|
+
error: null;
|
|
23190
|
+
action_type: 'SET_HVAC_MODE';
|
|
23191
|
+
result: {};
|
|
23192
|
+
} | {
|
|
23193
|
+
/** The ID of the action attempt. */
|
|
23194
|
+
action_attempt_id: string;
|
|
23195
|
+
status: 'error';
|
|
23196
|
+
result: null;
|
|
23197
|
+
action_type: 'SET_HVAC_MODE';
|
|
23198
|
+
error: {
|
|
23199
|
+
type: string;
|
|
23200
|
+
message: string;
|
|
23201
|
+
};
|
|
22818
23202
|
} | {
|
|
22819
23203
|
/** The ID of the action attempt. */
|
|
22820
23204
|
action_attempt_id: string;
|
|
@@ -23674,6 +24058,30 @@ export interface Routes {
|
|
|
23674
24058
|
type: string;
|
|
23675
24059
|
message: string;
|
|
23676
24060
|
};
|
|
24061
|
+
} | {
|
|
24062
|
+
/** The ID of the action attempt. */
|
|
24063
|
+
action_attempt_id: string;
|
|
24064
|
+
status: 'pending';
|
|
24065
|
+
result: null;
|
|
24066
|
+
error: null;
|
|
24067
|
+
action_type: 'SET_HVAC_MODE';
|
|
24068
|
+
} | {
|
|
24069
|
+
/** The ID of the action attempt. */
|
|
24070
|
+
action_attempt_id: string;
|
|
24071
|
+
status: 'success';
|
|
24072
|
+
error: null;
|
|
24073
|
+
action_type: 'SET_HVAC_MODE';
|
|
24074
|
+
result: {};
|
|
24075
|
+
} | {
|
|
24076
|
+
/** The ID of the action attempt. */
|
|
24077
|
+
action_attempt_id: string;
|
|
24078
|
+
status: 'error';
|
|
24079
|
+
result: null;
|
|
24080
|
+
action_type: 'SET_HVAC_MODE';
|
|
24081
|
+
error: {
|
|
24082
|
+
type: string;
|
|
24083
|
+
message: string;
|
|
24084
|
+
};
|
|
23677
24085
|
} | {
|
|
23678
24086
|
/** The ID of the action attempt. */
|
|
23679
24087
|
action_attempt_id: string;
|
|
@@ -25588,6 +25996,30 @@ export interface Routes {
|
|
|
25588
25996
|
type: string;
|
|
25589
25997
|
message: string;
|
|
25590
25998
|
};
|
|
25999
|
+
} | {
|
|
26000
|
+
/** The ID of the action attempt. */
|
|
26001
|
+
action_attempt_id: string;
|
|
26002
|
+
status: 'pending';
|
|
26003
|
+
result: null;
|
|
26004
|
+
error: null;
|
|
26005
|
+
action_type: 'SET_HVAC_MODE';
|
|
26006
|
+
} | {
|
|
26007
|
+
/** The ID of the action attempt. */
|
|
26008
|
+
action_attempt_id: string;
|
|
26009
|
+
status: 'success';
|
|
26010
|
+
error: null;
|
|
26011
|
+
action_type: 'SET_HVAC_MODE';
|
|
26012
|
+
result: {};
|
|
26013
|
+
} | {
|
|
26014
|
+
/** The ID of the action attempt. */
|
|
26015
|
+
action_attempt_id: string;
|
|
26016
|
+
status: 'error';
|
|
26017
|
+
result: null;
|
|
26018
|
+
action_type: 'SET_HVAC_MODE';
|
|
26019
|
+
error: {
|
|
26020
|
+
type: string;
|
|
26021
|
+
message: string;
|
|
26022
|
+
};
|
|
25591
26023
|
} | {
|
|
25592
26024
|
/** The ID of the action attempt. */
|
|
25593
26025
|
action_attempt_id: string;
|
|
@@ -26612,6 +27044,30 @@ export interface Routes {
|
|
|
26612
27044
|
type: string;
|
|
26613
27045
|
message: string;
|
|
26614
27046
|
};
|
|
27047
|
+
} | {
|
|
27048
|
+
/** The ID of the action attempt. */
|
|
27049
|
+
action_attempt_id: string;
|
|
27050
|
+
status: 'pending';
|
|
27051
|
+
result: null;
|
|
27052
|
+
error: null;
|
|
27053
|
+
action_type: 'SET_HVAC_MODE';
|
|
27054
|
+
} | {
|
|
27055
|
+
/** The ID of the action attempt. */
|
|
27056
|
+
action_attempt_id: string;
|
|
27057
|
+
status: 'success';
|
|
27058
|
+
error: null;
|
|
27059
|
+
action_type: 'SET_HVAC_MODE';
|
|
27060
|
+
result: {};
|
|
27061
|
+
} | {
|
|
27062
|
+
/** The ID of the action attempt. */
|
|
27063
|
+
action_attempt_id: string;
|
|
27064
|
+
status: 'error';
|
|
27065
|
+
result: null;
|
|
27066
|
+
action_type: 'SET_HVAC_MODE';
|
|
27067
|
+
error: {
|
|
27068
|
+
type: string;
|
|
27069
|
+
message: string;
|
|
27070
|
+
};
|
|
26615
27071
|
} | {
|
|
26616
27072
|
/** The ID of the action attempt. */
|
|
26617
27073
|
action_attempt_id: string;
|
|
@@ -27490,6 +27946,30 @@ export interface Routes {
|
|
|
27490
27946
|
type: string;
|
|
27491
27947
|
message: string;
|
|
27492
27948
|
};
|
|
27949
|
+
} | {
|
|
27950
|
+
/** The ID of the action attempt. */
|
|
27951
|
+
action_attempt_id: string;
|
|
27952
|
+
status: 'pending';
|
|
27953
|
+
result: null;
|
|
27954
|
+
error: null;
|
|
27955
|
+
action_type: 'SET_HVAC_MODE';
|
|
27956
|
+
} | {
|
|
27957
|
+
/** The ID of the action attempt. */
|
|
27958
|
+
action_attempt_id: string;
|
|
27959
|
+
status: 'success';
|
|
27960
|
+
error: null;
|
|
27961
|
+
action_type: 'SET_HVAC_MODE';
|
|
27962
|
+
result: {};
|
|
27963
|
+
} | {
|
|
27964
|
+
/** The ID of the action attempt. */
|
|
27965
|
+
action_attempt_id: string;
|
|
27966
|
+
status: 'error';
|
|
27967
|
+
result: null;
|
|
27968
|
+
action_type: 'SET_HVAC_MODE';
|
|
27969
|
+
error: {
|
|
27970
|
+
type: string;
|
|
27971
|
+
message: string;
|
|
27972
|
+
};
|
|
27493
27973
|
} | {
|
|
27494
27974
|
/** The ID of the action attempt. */
|
|
27495
27975
|
action_attempt_id: string;
|
|
@@ -30065,6 +30545,30 @@ export interface Routes {
|
|
|
30065
30545
|
type: string;
|
|
30066
30546
|
message: string;
|
|
30067
30547
|
};
|
|
30548
|
+
} | {
|
|
30549
|
+
/** The ID of the action attempt. */
|
|
30550
|
+
action_attempt_id: string;
|
|
30551
|
+
status: 'pending';
|
|
30552
|
+
result: null;
|
|
30553
|
+
error: null;
|
|
30554
|
+
action_type: 'SET_HVAC_MODE';
|
|
30555
|
+
} | {
|
|
30556
|
+
/** The ID of the action attempt. */
|
|
30557
|
+
action_attempt_id: string;
|
|
30558
|
+
status: 'success';
|
|
30559
|
+
error: null;
|
|
30560
|
+
action_type: 'SET_HVAC_MODE';
|
|
30561
|
+
result: {};
|
|
30562
|
+
} | {
|
|
30563
|
+
/** The ID of the action attempt. */
|
|
30564
|
+
action_attempt_id: string;
|
|
30565
|
+
status: 'error';
|
|
30566
|
+
result: null;
|
|
30567
|
+
action_type: 'SET_HVAC_MODE';
|
|
30568
|
+
error: {
|
|
30569
|
+
type: string;
|
|
30570
|
+
message: string;
|
|
30571
|
+
};
|
|
30068
30572
|
} | {
|
|
30069
30573
|
/** The ID of the action attempt. */
|
|
30070
30574
|
action_attempt_id: string;
|