@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
package/dist/connect.d.cts
CHANGED
|
@@ -25579,6 +25579,17 @@ declare const _default: {
|
|
|
25579
25579
|
};
|
|
25580
25580
|
type: string;
|
|
25581
25581
|
};
|
|
25582
|
+
acs_system_id: {
|
|
25583
|
+
format: string;
|
|
25584
|
+
type: string;
|
|
25585
|
+
};
|
|
25586
|
+
acs_system_ids: {
|
|
25587
|
+
items: {
|
|
25588
|
+
format: string;
|
|
25589
|
+
type: string;
|
|
25590
|
+
};
|
|
25591
|
+
type: string;
|
|
25592
|
+
};
|
|
25582
25593
|
between: {
|
|
25583
25594
|
items: {
|
|
25584
25595
|
oneOf: ({
|
|
@@ -30991,6 +31002,9 @@ declare const _default: {
|
|
|
30991
31002
|
webview_primary_button_color: {
|
|
30992
31003
|
type: string;
|
|
30993
31004
|
};
|
|
31005
|
+
webview_primary_button_text_color: {
|
|
31006
|
+
type: string;
|
|
31007
|
+
};
|
|
30994
31008
|
};
|
|
30995
31009
|
required: string[];
|
|
30996
31010
|
type: string;
|
|
@@ -42308,6 +42322,8 @@ interface Routes {
|
|
|
42308
42322
|
between?: Array<string | Date> | undefined;
|
|
42309
42323
|
device_id?: string | undefined;
|
|
42310
42324
|
device_ids?: string[] | undefined;
|
|
42325
|
+
acs_system_id?: string | undefined;
|
|
42326
|
+
acs_system_ids?: string[] | undefined;
|
|
42311
42327
|
access_code_id?: string | undefined;
|
|
42312
42328
|
access_code_ids?: string[] | undefined;
|
|
42313
42329
|
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;
|
|
@@ -56437,6 +56453,7 @@ interface Routes {
|
|
|
56437
56453
|
connect_partner_name?: ((string | null) | null) | undefined;
|
|
56438
56454
|
is_sandbox?: boolean;
|
|
56439
56455
|
webview_primary_button_color?: string | undefined;
|
|
56456
|
+
webview_primary_button_text_color?: string | undefined;
|
|
56440
56457
|
webview_logo_shape?: ('circle' | 'square') | undefined;
|
|
56441
56458
|
};
|
|
56442
56459
|
commonParams: {};
|
|
@@ -14139,6 +14139,17 @@ declare const _default: {
|
|
|
14139
14139
|
};
|
|
14140
14140
|
type: string;
|
|
14141
14141
|
};
|
|
14142
|
+
acs_system_id: {
|
|
14143
|
+
format: string;
|
|
14144
|
+
type: string;
|
|
14145
|
+
};
|
|
14146
|
+
acs_system_ids: {
|
|
14147
|
+
items: {
|
|
14148
|
+
format: string;
|
|
14149
|
+
type: string;
|
|
14150
|
+
};
|
|
14151
|
+
type: string;
|
|
14152
|
+
};
|
|
14142
14153
|
between: {
|
|
14143
14154
|
items: {
|
|
14144
14155
|
oneOf: ({
|
|
@@ -19551,6 +19562,9 @@ declare const _default: {
|
|
|
19551
19562
|
webview_primary_button_color: {
|
|
19552
19563
|
type: string;
|
|
19553
19564
|
};
|
|
19565
|
+
webview_primary_button_text_color: {
|
|
19566
|
+
type: string;
|
|
19567
|
+
};
|
|
19554
19568
|
};
|
|
19555
19569
|
required: string[];
|
|
19556
19570
|
type: string;
|
|
@@ -13102,6 +13102,11 @@ export default {
|
|
|
13102
13102
|
items: { format: 'uuid', type: 'string' },
|
|
13103
13103
|
type: 'array',
|
|
13104
13104
|
},
|
|
13105
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
13106
|
+
acs_system_ids: {
|
|
13107
|
+
items: { format: 'uuid', type: 'string' },
|
|
13108
|
+
type: 'array',
|
|
13109
|
+
},
|
|
13105
13110
|
between: {
|
|
13106
13111
|
items: {
|
|
13107
13112
|
oneOf: [
|
|
@@ -17407,6 +17412,7 @@ export default {
|
|
|
17407
17412
|
type: 'string',
|
|
17408
17413
|
},
|
|
17409
17414
|
webview_primary_button_color: { type: 'string' },
|
|
17415
|
+
webview_primary_button_text_color: { type: 'string' },
|
|
17410
17416
|
},
|
|
17411
17417
|
required: ['name'],
|
|
17412
17418
|
type: 'object',
|