@seamapi/types 1.98.0 → 1.100.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 +3 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -1
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +3 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -101,6 +101,7 @@ export interface Routes {
|
|
|
101
101
|
jsonBody: {
|
|
102
102
|
device_ids: string[];
|
|
103
103
|
behavior_when_code_cannot_be_shared?: 'throw' | 'create_random_code';
|
|
104
|
+
preferred_code_length?: number | undefined;
|
|
104
105
|
name?: string | undefined;
|
|
105
106
|
starts_at?: string | undefined;
|
|
106
107
|
ends_at?: string | undefined;
|
|
@@ -1585,7 +1586,7 @@ export interface Routes {
|
|
|
1585
1586
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
1586
1587
|
custom_redirect_url?: string | undefined;
|
|
1587
1588
|
custom_redirect_failure_url?: string | undefined;
|
|
1588
|
-
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
1589
|
+
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
1589
1590
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
|
|
1590
1591
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
1591
1592
|
automatically_manage_new_devices?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -2399,6 +2399,7 @@ export default {
|
|
|
2399
2399
|
},
|
|
2400
2400
|
name: { type: 'string' },
|
|
2401
2401
|
prefer_native_scheduling: { type: 'boolean' },
|
|
2402
|
+
preferred_code_length: { type: 'number' },
|
|
2402
2403
|
starts_at: { type: 'string' },
|
|
2403
2404
|
use_backup_access_code_pool: { type: 'boolean' },
|
|
2404
2405
|
use_offline_access_code: { type: 'boolean' },
|
|
@@ -2481,6 +2482,7 @@ export default {
|
|
|
2481
2482
|
},
|
|
2482
2483
|
name: { type: 'string' },
|
|
2483
2484
|
prefer_native_scheduling: { type: 'boolean' },
|
|
2485
|
+
preferred_code_length: { type: 'number' },
|
|
2484
2486
|
starts_at: { type: 'string' },
|
|
2485
2487
|
use_backup_access_code_pool: { type: 'boolean' },
|
|
2486
2488
|
use_offline_access_code: { type: 'boolean' },
|
|
@@ -6506,6 +6508,7 @@ export default {
|
|
|
6506
6508
|
'assa_abloy_credential_service',
|
|
6507
6509
|
'seam_bridge',
|
|
6508
6510
|
'tedee',
|
|
6511
|
+
'honeywell',
|
|
6509
6512
|
'yale_access',
|
|
6510
6513
|
'hid_cm',
|
|
6511
6514
|
'google_nest',
|
|
@@ -104,6 +104,7 @@ export interface Routes {
|
|
|
104
104
|
jsonBody: {
|
|
105
105
|
device_ids: string[]
|
|
106
106
|
behavior_when_code_cannot_be_shared?: 'throw' | 'create_random_code'
|
|
107
|
+
preferred_code_length?: number | undefined
|
|
107
108
|
name?: string | undefined
|
|
108
109
|
starts_at?: string | undefined
|
|
109
110
|
ends_at?: string | undefined
|
|
@@ -1809,6 +1810,7 @@ export interface Routes {
|
|
|
1809
1810
|
| 'assa_abloy_credential_service'
|
|
1810
1811
|
| 'seam_bridge'
|
|
1811
1812
|
| 'tedee'
|
|
1813
|
+
| 'honeywell'
|
|
1812
1814
|
| 'yale_access'
|
|
1813
1815
|
| 'hid_cm'
|
|
1814
1816
|
| 'google_nest'
|