@seamapi/types 1.103.0 → 1.105.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 +80 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +154 -0
- package/dist/devicedb.cjs +20 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +149 -1
- package/lib/seam/connect/openapi.d.ts +140 -0
- package/lib/seam/connect/openapi.js +80 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +16 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +2 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/devicedb/public-models/device-capability.d.ts +21 -0
- package/lib/seam/devicedb/public-models/device-capability.js +15 -0
- package/lib/seam/devicedb/public-models/device-capability.js.map +1 -0
- package/lib/seam/devicedb/public-models/device-model-v1.d.ts +38 -0
- package/lib/seam/devicedb/public-models/device-model-v1.js +10 -2
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
- package/lib/seam/devicedb/public-models/hardware.d.ts +8 -0
- package/lib/seam/devicedb/public-models/hardware.js +7 -0
- package/lib/seam/devicedb/public-models/hardware.js.map +1 -0
- package/lib/seam/devicedb/public-models/index.d.ts +1 -0
- package/lib/seam/devicedb/public-models/index.js +1 -0
- package/lib/seam/devicedb/public-models/index.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +88 -0
- package/lib/seam/devicedb/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +80 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +2 -0
- package/src/lib/seam/devicedb/public-models/device-capability.ts +20 -0
- package/src/lib/seam/devicedb/public-models/device-model-v1.ts +33 -23
- package/src/lib/seam/devicedb/public-models/hardware.ts +7 -0
- package/src/lib/seam/devicedb/public-models/index.ts +1 -0
- package/src/lib/seam/devicedb/route-types.ts +10 -0
|
@@ -40,6 +40,9 @@ export interface Routes {
|
|
|
40
40
|
description: string
|
|
41
41
|
product_url?: string | undefined
|
|
42
42
|
main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown'
|
|
43
|
+
hardware: {
|
|
44
|
+
has_physical_key?: boolean | undefined
|
|
45
|
+
}
|
|
43
46
|
aesthetic_variants: Array<{
|
|
44
47
|
slug: string
|
|
45
48
|
display_name: string
|
|
@@ -94,6 +97,8 @@ export interface Routes {
|
|
|
94
97
|
can_program_access_schedules: boolean
|
|
95
98
|
can_program_access_codes_offline: boolean
|
|
96
99
|
}
|
|
100
|
+
can_remotely_unlock?: true | undefined
|
|
101
|
+
can_program_online_access_codes?: true | undefined
|
|
97
102
|
}
|
|
98
103
|
| {
|
|
99
104
|
main_category: 'sensor'
|
|
@@ -210,6 +215,9 @@ export interface Routes {
|
|
|
210
215
|
description: string
|
|
211
216
|
product_url?: string | undefined
|
|
212
217
|
main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown'
|
|
218
|
+
hardware: {
|
|
219
|
+
has_physical_key?: boolean | undefined
|
|
220
|
+
}
|
|
213
221
|
aesthetic_variants: Array<{
|
|
214
222
|
slug: string
|
|
215
223
|
display_name: string
|
|
@@ -264,6 +272,8 @@ export interface Routes {
|
|
|
264
272
|
can_program_access_schedules: boolean
|
|
265
273
|
can_program_access_codes_offline: boolean
|
|
266
274
|
}
|
|
275
|
+
can_remotely_unlock?: true | undefined
|
|
276
|
+
can_program_online_access_codes?: true | undefined
|
|
267
277
|
}
|
|
268
278
|
| {
|
|
269
279
|
main_category: 'sensor'
|