@seamapi/types 1.280.0 → 1.282.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 +7 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -0
- package/lib/seam/connect/openapi.d.ts +14 -0
- package/lib/seam/connect/openapi.js +6 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +3 -0
|
@@ -10931,6 +10931,8 @@ export interface Routes {
|
|
|
10931
10931
|
between?: Array<string | Date> | undefined;
|
|
10932
10932
|
device_id?: string | undefined;
|
|
10933
10933
|
device_ids?: string[] | undefined;
|
|
10934
|
+
acs_system_id?: string | undefined;
|
|
10935
|
+
acs_system_ids?: string[] | undefined;
|
|
10934
10936
|
access_code_id?: string | undefined;
|
|
10935
10937
|
access_code_ids?: string[] | undefined;
|
|
10936
10938
|
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded') | undefined;
|
|
@@ -25060,6 +25062,7 @@ export interface Routes {
|
|
|
25060
25062
|
connect_partner_name?: ((string | null) | null) | undefined;
|
|
25061
25063
|
is_sandbox?: boolean;
|
|
25062
25064
|
webview_primary_button_color?: string | undefined;
|
|
25065
|
+
webview_primary_button_text_color?: string | undefined;
|
|
25063
25066
|
webview_logo_shape?: ('circle' | 'square') | undefined;
|
|
25064
25067
|
};
|
|
25065
25068
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -13536,6 +13536,11 @@ export default {
|
|
|
13536
13536
|
items: { format: 'uuid', type: 'string' },
|
|
13537
13537
|
type: 'array',
|
|
13538
13538
|
},
|
|
13539
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
13540
|
+
acs_system_ids: {
|
|
13541
|
+
items: { format: 'uuid', type: 'string' },
|
|
13542
|
+
type: 'array',
|
|
13543
|
+
},
|
|
13539
13544
|
between: {
|
|
13540
13545
|
items: {
|
|
13541
13546
|
oneOf: [
|
|
@@ -17844,6 +17849,7 @@ export default {
|
|
|
17844
17849
|
type: 'string',
|
|
17845
17850
|
},
|
|
17846
17851
|
webview_primary_button_color: { type: 'string' },
|
|
17852
|
+
webview_primary_button_text_color: { type: 'string' },
|
|
17847
17853
|
},
|
|
17848
17854
|
required: ['name'],
|
|
17849
17855
|
type: 'object',
|
|
@@ -13427,6 +13427,8 @@ export interface Routes {
|
|
|
13427
13427
|
between?: Array<string | Date> | undefined
|
|
13428
13428
|
device_id?: string | undefined
|
|
13429
13429
|
device_ids?: string[] | undefined
|
|
13430
|
+
acs_system_id?: string | undefined
|
|
13431
|
+
acs_system_ids?: string[] | undefined
|
|
13430
13432
|
access_code_id?: string | undefined
|
|
13431
13433
|
access_code_ids?: string[] | undefined
|
|
13432
13434
|
event_type?:
|
|
@@ -31536,6 +31538,7 @@ export interface Routes {
|
|
|
31536
31538
|
connect_partner_name?: ((string | null) | null) | undefined
|
|
31537
31539
|
is_sandbox?: boolean
|
|
31538
31540
|
webview_primary_button_color?: string | undefined
|
|
31541
|
+
webview_primary_button_text_color?: string | undefined
|
|
31539
31542
|
webview_logo_shape?: ('circle' | 'square') | undefined
|
|
31540
31543
|
}
|
|
31541
31544
|
commonParams: {}
|