@seamapi/types 1.531.0 → 1.532.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 +33 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +107 -2
- package/dist/index.cjs +33 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +13 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -1
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/hotek.d.ts +9 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js +7 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +95 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +56 -0
- package/lib/seam/connect/openapi.d.ts +22 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +52 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +11 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +26 -0
- package/src/lib/seam/connect/route-types.ts +72 -0
|
@@ -2482,6 +2482,17 @@ export default {
|
|
|
2482
2482
|
},
|
|
2483
2483
|
type: 'array',
|
|
2484
2484
|
},
|
|
2485
|
+
hotek_metadata: {
|
|
2486
|
+
description: 'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
2487
|
+
properties: {
|
|
2488
|
+
room_number: {
|
|
2489
|
+
description: 'Room number of the entrance.',
|
|
2490
|
+
type: 'string',
|
|
2491
|
+
},
|
|
2492
|
+
},
|
|
2493
|
+
required: ['room_number'],
|
|
2494
|
+
type: 'object',
|
|
2495
|
+
},
|
|
2485
2496
|
latch_metadata: {
|
|
2486
2497
|
description: 'Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
2487
2498
|
properties: {
|
|
@@ -11450,6 +11461,7 @@ export default {
|
|
|
11450
11461
|
can_unlock_with_code: { type: 'boolean' },
|
|
11451
11462
|
device_provider_name: {
|
|
11452
11463
|
enum: [
|
|
11464
|
+
'hotek',
|
|
11453
11465
|
'dormakaba_community',
|
|
11454
11466
|
'legic_connect',
|
|
11455
11467
|
'akuvox',
|
|
@@ -17620,6 +17632,17 @@ export default {
|
|
|
17620
17632
|
},
|
|
17621
17633
|
type: 'array',
|
|
17622
17634
|
},
|
|
17635
|
+
hotek_metadata: {
|
|
17636
|
+
description: 'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
17637
|
+
properties: {
|
|
17638
|
+
room_number: {
|
|
17639
|
+
description: 'Room number of the entrance.',
|
|
17640
|
+
type: 'string',
|
|
17641
|
+
},
|
|
17642
|
+
},
|
|
17643
|
+
required: ['room_number'],
|
|
17644
|
+
type: 'object',
|
|
17645
|
+
},
|
|
17623
17646
|
latch_metadata: {
|
|
17624
17647
|
description: 'Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
17625
17648
|
properties: {
|
|
@@ -33902,6 +33925,7 @@ export default {
|
|
|
33902
33925
|
description: 'Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters.',
|
|
33903
33926
|
items: {
|
|
33904
33927
|
enum: [
|
|
33928
|
+
'hotek',
|
|
33905
33929
|
'dormakaba_community',
|
|
33906
33930
|
'legic_connect',
|
|
33907
33931
|
'akuvox',
|