@seamapi/types 1.281.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 +5 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -0
- package/lib/seam/connect/openapi.d.ts +11 -0
- package/lib/seam/connect/openapi.js +5 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -0
- package/src/lib/seam/connect/route-types.ts +2 -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;
|
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: [
|
|
@@ -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?:
|