@seamapi/types 1.547.0 → 1.549.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 +43 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +292 -210
- package/dist/index.cjs +43 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +14 -4
- package/lib/seam/connect/models/acs/metadata/hotek.d.ts +6 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js +2 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/models/batch.d.ts +184 -114
- package/lib/seam/connect/models/phones/phone-session.d.ts +70 -30
- package/lib/seam/connect/openapi.d.ts +18 -0
- package/lib/seam/connect/openapi.js +31 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +168 -128
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +31 -2
- package/src/lib/seam/connect/route-types.ts +168 -0
package/package.json
CHANGED
|
@@ -3,6 +3,8 @@ import { z } from 'zod'
|
|
|
3
3
|
export const acs_entrance_hotek_metadata = z
|
|
4
4
|
.object({
|
|
5
5
|
room_number: z.string().describe('Room number of the entrance.'),
|
|
6
|
+
display_name: z.string().describe('Display name of the entrance.'),
|
|
7
|
+
door_type: z.enum(['common_area', 'guest']).describe('Type of door.'),
|
|
6
8
|
})
|
|
7
9
|
.describe('Hotek-specific metadata associated with the entrance.')
|
|
8
10
|
|
|
@@ -2301,6 +2301,7 @@ export default {
|
|
|
2301
2301
|
'salto_space_key',
|
|
2302
2302
|
'latch_access',
|
|
2303
2303
|
'dormakaba_ambiance_credential',
|
|
2304
|
+
'hotek_card',
|
|
2304
2305
|
],
|
|
2305
2306
|
type: 'string',
|
|
2306
2307
|
},
|
|
@@ -2861,12 +2862,21 @@ export default {
|
|
|
2861
2862
|
description:
|
|
2862
2863
|
'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
2863
2864
|
properties: {
|
|
2865
|
+
display_name: {
|
|
2866
|
+
description: 'Display name of the entrance.',
|
|
2867
|
+
type: 'string',
|
|
2868
|
+
},
|
|
2869
|
+
door_type: {
|
|
2870
|
+
description: 'Type of door.',
|
|
2871
|
+
enum: ['common_area', 'guest'],
|
|
2872
|
+
type: 'string',
|
|
2873
|
+
},
|
|
2864
2874
|
room_number: {
|
|
2865
2875
|
description: 'Room number of the entrance.',
|
|
2866
2876
|
type: 'string',
|
|
2867
2877
|
},
|
|
2868
2878
|
},
|
|
2869
|
-
required: ['room_number'],
|
|
2879
|
+
required: ['room_number', 'display_name', 'door_type'],
|
|
2870
2880
|
type: 'object',
|
|
2871
2881
|
},
|
|
2872
2882
|
latch_metadata: {
|
|
@@ -4729,6 +4739,7 @@ export default {
|
|
|
4729
4739
|
'salto_space_key',
|
|
4730
4740
|
'latch_access',
|
|
4731
4741
|
'dormakaba_ambiance_credential',
|
|
4742
|
+
'hotek_card',
|
|
4732
4743
|
],
|
|
4733
4744
|
type: 'string',
|
|
4734
4745
|
},
|
|
@@ -5184,6 +5195,7 @@ export default {
|
|
|
5184
5195
|
'salto_space_key',
|
|
5185
5196
|
'latch_access',
|
|
5186
5197
|
'dormakaba_ambiance_credential',
|
|
5198
|
+
'hotek_card',
|
|
5187
5199
|
],
|
|
5188
5200
|
type: 'string',
|
|
5189
5201
|
},
|
|
@@ -5838,6 +5850,7 @@ export default {
|
|
|
5838
5850
|
'salto_space_key',
|
|
5839
5851
|
'latch_access',
|
|
5840
5852
|
'dormakaba_ambiance_credential',
|
|
5853
|
+
'hotek_card',
|
|
5841
5854
|
],
|
|
5842
5855
|
type: 'string',
|
|
5843
5856
|
},
|
|
@@ -6290,6 +6303,7 @@ export default {
|
|
|
6290
6303
|
'salto_space_key',
|
|
6291
6304
|
'latch_access',
|
|
6292
6305
|
'dormakaba_ambiance_credential',
|
|
6306
|
+
'hotek_card',
|
|
6293
6307
|
],
|
|
6294
6308
|
type: 'string',
|
|
6295
6309
|
},
|
|
@@ -19619,12 +19633,25 @@ export default {
|
|
|
19619
19633
|
description:
|
|
19620
19634
|
'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
19621
19635
|
properties: {
|
|
19636
|
+
display_name: {
|
|
19637
|
+
description: 'Display name of the entrance.',
|
|
19638
|
+
type: 'string',
|
|
19639
|
+
},
|
|
19640
|
+
door_type: {
|
|
19641
|
+
description: 'Type of door.',
|
|
19642
|
+
enum: ['common_area', 'guest'],
|
|
19643
|
+
type: 'string',
|
|
19644
|
+
},
|
|
19622
19645
|
room_number: {
|
|
19623
19646
|
description: 'Room number of the entrance.',
|
|
19624
19647
|
type: 'string',
|
|
19625
19648
|
},
|
|
19626
19649
|
},
|
|
19627
|
-
required: [
|
|
19650
|
+
required: [
|
|
19651
|
+
'room_number',
|
|
19652
|
+
'display_name',
|
|
19653
|
+
'door_type',
|
|
19654
|
+
],
|
|
19628
19655
|
type: 'object',
|
|
19629
19656
|
},
|
|
19630
19657
|
latch_metadata: {
|
|
@@ -19925,6 +19952,7 @@ export default {
|
|
|
19925
19952
|
'salto_space_key',
|
|
19926
19953
|
'latch_access',
|
|
19927
19954
|
'dormakaba_ambiance_credential',
|
|
19955
|
+
'hotek_card',
|
|
19928
19956
|
],
|
|
19929
19957
|
type: 'string',
|
|
19930
19958
|
},
|
|
@@ -22705,6 +22733,7 @@ export default {
|
|
|
22705
22733
|
'salto_space_key',
|
|
22706
22734
|
'latch_access',
|
|
22707
22735
|
'dormakaba_ambiance_credential',
|
|
22736
|
+
'hotek_card',
|
|
22708
22737
|
],
|
|
22709
22738
|
type: 'string',
|
|
22710
22739
|
},
|