@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
package/dist/connect.d.cts
CHANGED
|
@@ -4566,6 +4566,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4566
4566
|
door_type: string;
|
|
4567
4567
|
accessibility_type: string;
|
|
4568
4568
|
}>>;
|
|
4569
|
+
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
4570
|
+
room_number: z.ZodString;
|
|
4571
|
+
}, "strip", z.ZodTypeAny, {
|
|
4572
|
+
room_number: string;
|
|
4573
|
+
}, {
|
|
4574
|
+
room_number: string;
|
|
4575
|
+
}>>;
|
|
4569
4576
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
4570
4577
|
door_name: z.ZodString;
|
|
4571
4578
|
door_category: z.ZodEnum<["entrance", "guest", "elevator reader", "common", "common (PMS)"]>;
|
|
@@ -4725,6 +4732,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4725
4732
|
door_type: string;
|
|
4726
4733
|
accessibility_type: string;
|
|
4727
4734
|
} | undefined;
|
|
4735
|
+
hotek_metadata?: {
|
|
4736
|
+
room_number: string;
|
|
4737
|
+
} | undefined;
|
|
4728
4738
|
dormakaba_community_metadata?: {
|
|
4729
4739
|
access_point_name: string;
|
|
4730
4740
|
} | undefined;
|
|
@@ -4783,6 +4793,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4783
4793
|
door_type: string;
|
|
4784
4794
|
accessibility_type: string;
|
|
4785
4795
|
} | undefined;
|
|
4796
|
+
hotek_metadata?: {
|
|
4797
|
+
room_number: string;
|
|
4798
|
+
} | undefined;
|
|
4786
4799
|
dormakaba_community_metadata?: {
|
|
4787
4800
|
access_point_name: string;
|
|
4788
4801
|
} | undefined;
|
|
@@ -14443,6 +14456,13 @@ declare const batch: z.ZodObject<{
|
|
|
14443
14456
|
door_type: string;
|
|
14444
14457
|
accessibility_type: string;
|
|
14445
14458
|
}>>;
|
|
14459
|
+
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
14460
|
+
room_number: z.ZodString;
|
|
14461
|
+
}, "strip", z.ZodTypeAny, {
|
|
14462
|
+
room_number: string;
|
|
14463
|
+
}, {
|
|
14464
|
+
room_number: string;
|
|
14465
|
+
}>>;
|
|
14446
14466
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
14447
14467
|
door_name: z.ZodString;
|
|
14448
14468
|
door_category: z.ZodEnum<["entrance", "guest", "elevator reader", "common", "common (PMS)"]>;
|
|
@@ -14602,6 +14622,9 @@ declare const batch: z.ZodObject<{
|
|
|
14602
14622
|
door_type: string;
|
|
14603
14623
|
accessibility_type: string;
|
|
14604
14624
|
} | undefined;
|
|
14625
|
+
hotek_metadata?: {
|
|
14626
|
+
room_number: string;
|
|
14627
|
+
} | undefined;
|
|
14605
14628
|
dormakaba_community_metadata?: {
|
|
14606
14629
|
access_point_name: string;
|
|
14607
14630
|
} | undefined;
|
|
@@ -14660,6 +14683,9 @@ declare const batch: z.ZodObject<{
|
|
|
14660
14683
|
door_type: string;
|
|
14661
14684
|
accessibility_type: string;
|
|
14662
14685
|
} | undefined;
|
|
14686
|
+
hotek_metadata?: {
|
|
14687
|
+
room_number: string;
|
|
14688
|
+
} | undefined;
|
|
14663
14689
|
dormakaba_community_metadata?: {
|
|
14664
14690
|
access_point_name: string;
|
|
14665
14691
|
} | undefined;
|
|
@@ -31275,6 +31301,9 @@ declare const batch: z.ZodObject<{
|
|
|
31275
31301
|
door_type: string;
|
|
31276
31302
|
accessibility_type: string;
|
|
31277
31303
|
} | undefined;
|
|
31304
|
+
hotek_metadata?: {
|
|
31305
|
+
room_number: string;
|
|
31306
|
+
} | undefined;
|
|
31278
31307
|
dormakaba_community_metadata?: {
|
|
31279
31308
|
access_point_name: string;
|
|
31280
31309
|
} | undefined;
|
|
@@ -35128,6 +35157,9 @@ declare const batch: z.ZodObject<{
|
|
|
35128
35157
|
door_type: string;
|
|
35129
35158
|
accessibility_type: string;
|
|
35130
35159
|
} | undefined;
|
|
35160
|
+
hotek_metadata?: {
|
|
35161
|
+
room_number: string;
|
|
35162
|
+
} | undefined;
|
|
35131
35163
|
dormakaba_community_metadata?: {
|
|
35132
35164
|
access_point_name: string;
|
|
35133
35165
|
} | undefined;
|
|
@@ -43639,6 +43671,7 @@ declare const device: z.ZodObject<{
|
|
|
43639
43671
|
type Device = z.infer<typeof device>;
|
|
43640
43672
|
|
|
43641
43673
|
declare const DEVICE_PROVIDERS: {
|
|
43674
|
+
readonly HOTEK: "hotek";
|
|
43642
43675
|
readonly DORMAKABA_COMMUNITY: "dormakaba_community";
|
|
43643
43676
|
readonly LEGIC_CONNECT: "legic_connect";
|
|
43644
43677
|
readonly AKUVOX: "akuvox";
|
|
@@ -51799,6 +51832,17 @@ declare const _default: {
|
|
|
51799
51832
|
};
|
|
51800
51833
|
type: string;
|
|
51801
51834
|
};
|
|
51835
|
+
hotek_metadata: {
|
|
51836
|
+
description: string;
|
|
51837
|
+
properties: {
|
|
51838
|
+
room_number: {
|
|
51839
|
+
description: string;
|
|
51840
|
+
type: string;
|
|
51841
|
+
};
|
|
51842
|
+
};
|
|
51843
|
+
required: string[];
|
|
51844
|
+
type: string;
|
|
51845
|
+
};
|
|
51802
51846
|
latch_metadata: {
|
|
51803
51847
|
description: string;
|
|
51804
51848
|
properties: {
|
|
@@ -61613,6 +61657,17 @@ declare const _default: {
|
|
|
61613
61657
|
};
|
|
61614
61658
|
type: string;
|
|
61615
61659
|
};
|
|
61660
|
+
hotek_metadata: {
|
|
61661
|
+
description: string;
|
|
61662
|
+
properties: {
|
|
61663
|
+
room_number: {
|
|
61664
|
+
description: string;
|
|
61665
|
+
type: string;
|
|
61666
|
+
};
|
|
61667
|
+
};
|
|
61668
|
+
required: string[];
|
|
61669
|
+
type: string;
|
|
61670
|
+
};
|
|
61616
61671
|
latch_metadata: {
|
|
61617
61672
|
description: string;
|
|
61618
61673
|
properties: {
|
|
@@ -112729,6 +112784,11 @@ type Routes = {
|
|
|
112729
112784
|
/** Indicates whether the entrance is connected. */
|
|
112730
112785
|
is_connected: boolean;
|
|
112731
112786
|
} | undefined;
|
|
112787
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112788
|
+
hotek_metadata?: {
|
|
112789
|
+
/** Room number of the entrance. */
|
|
112790
|
+
room_number: string;
|
|
112791
|
+
} | undefined;
|
|
112732
112792
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112733
112793
|
visionline_metadata?: {
|
|
112734
112794
|
/** Name of the door in the Visionline access system. */
|
|
@@ -115852,6 +115912,11 @@ type Routes = {
|
|
|
115852
115912
|
/** Indicates whether the entrance is connected. */
|
|
115853
115913
|
is_connected: boolean;
|
|
115854
115914
|
} | undefined;
|
|
115915
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
115916
|
+
hotek_metadata?: {
|
|
115917
|
+
/** Room number of the entrance. */
|
|
115918
|
+
room_number: string;
|
|
115919
|
+
} | undefined;
|
|
115855
115920
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
115856
115921
|
visionline_metadata?: {
|
|
115857
115922
|
/** Name of the door in the Visionline access system. */
|
|
@@ -121754,6 +121819,11 @@ type Routes = {
|
|
|
121754
121819
|
/** Indicates whether the entrance is connected. */
|
|
121755
121820
|
is_connected: boolean;
|
|
121756
121821
|
} | undefined;
|
|
121822
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
121823
|
+
hotek_metadata?: {
|
|
121824
|
+
/** Room number of the entrance. */
|
|
121825
|
+
room_number: string;
|
|
121826
|
+
} | undefined;
|
|
121757
121827
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
121758
121828
|
visionline_metadata?: {
|
|
121759
121829
|
/** Name of the door in the Visionline access system. */
|
|
@@ -123104,6 +123174,11 @@ type Routes = {
|
|
|
123104
123174
|
/** Indicates whether the entrance is connected. */
|
|
123105
123175
|
is_connected: boolean;
|
|
123106
123176
|
} | undefined;
|
|
123177
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
123178
|
+
hotek_metadata?: {
|
|
123179
|
+
/** Room number of the entrance. */
|
|
123180
|
+
room_number: string;
|
|
123181
|
+
} | undefined;
|
|
123107
123182
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
123108
123183
|
visionline_metadata?: {
|
|
123109
123184
|
/** Name of the door in the Visionline access system. */
|
|
@@ -126539,6 +126614,11 @@ type Routes = {
|
|
|
126539
126614
|
/** Indicates whether the entrance is connected. */
|
|
126540
126615
|
is_connected: boolean;
|
|
126541
126616
|
} | undefined;
|
|
126617
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
126618
|
+
hotek_metadata?: {
|
|
126619
|
+
/** Room number of the entrance. */
|
|
126620
|
+
room_number: string;
|
|
126621
|
+
} | undefined;
|
|
126542
126622
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
126543
126623
|
visionline_metadata?: {
|
|
126544
126624
|
/** Name of the door in the Visionline access system. */
|
|
@@ -126699,6 +126779,11 @@ type Routes = {
|
|
|
126699
126779
|
/** Indicates whether the entrance is connected. */
|
|
126700
126780
|
is_connected: boolean;
|
|
126701
126781
|
} | undefined;
|
|
126782
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
126783
|
+
hotek_metadata?: {
|
|
126784
|
+
/** Room number of the entrance. */
|
|
126785
|
+
room_number: string;
|
|
126786
|
+
} | undefined;
|
|
126702
126787
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
126703
126788
|
visionline_metadata?: {
|
|
126704
126789
|
/** Name of the door in the Visionline access system. */
|
|
@@ -128129,6 +128214,11 @@ type Routes = {
|
|
|
128129
128214
|
/** Indicates whether the entrance is connected. */
|
|
128130
128215
|
is_connected: boolean;
|
|
128131
128216
|
} | undefined;
|
|
128217
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
128218
|
+
hotek_metadata?: {
|
|
128219
|
+
/** Room number of the entrance. */
|
|
128220
|
+
room_number: string;
|
|
128221
|
+
} | undefined;
|
|
128132
128222
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
128133
128223
|
visionline_metadata?: {
|
|
128134
128224
|
/** Name of the door in the Visionline access system. */
|
|
@@ -131630,7 +131720,7 @@ type Routes = {
|
|
|
131630
131720
|
/** Optional unique string key that can be used to identify the customer. If provided, the customer will be created or retrieved based on this key. */
|
|
131631
131721
|
customer_key?: string | undefined;
|
|
131632
131722
|
/** 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. */
|
|
131633
|
-
accepted_providers?: ('dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
131723
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
131634
131724
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
131635
131725
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
131636
131726
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -135392,7 +135482,7 @@ type Routes = {
|
|
|
135392
135482
|
formData: {};
|
|
135393
135483
|
jsonResponse: {
|
|
135394
135484
|
device_providers: {
|
|
135395
|
-
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance';
|
|
135485
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance';
|
|
135396
135486
|
display_name: string;
|
|
135397
135487
|
image_url: string;
|
|
135398
135488
|
provider_categories: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems')[];
|
|
@@ -159416,6 +159506,11 @@ type Routes = {
|
|
|
159416
159506
|
/** Indicates whether the entrance is connected. */
|
|
159417
159507
|
is_connected: boolean;
|
|
159418
159508
|
} | undefined;
|
|
159509
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
159510
|
+
hotek_metadata?: {
|
|
159511
|
+
/** Room number of the entrance. */
|
|
159512
|
+
room_number: string;
|
|
159513
|
+
} | undefined;
|
|
159419
159514
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
159420
159515
|
visionline_metadata?: {
|
|
159421
159516
|
/** Name of the door in the Visionline access system. */
|
|
@@ -160928,6 +161023,11 @@ type Routes = {
|
|
|
160928
161023
|
/** Indicates whether the entrance is connected. */
|
|
160929
161024
|
is_connected: boolean;
|
|
160930
161025
|
} | undefined;
|
|
161026
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
161027
|
+
hotek_metadata?: {
|
|
161028
|
+
/** Room number of the entrance. */
|
|
161029
|
+
room_number: string;
|
|
161030
|
+
} | undefined;
|
|
160931
161031
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
160932
161032
|
visionline_metadata?: {
|
|
160933
161033
|
/** Name of the door in the Visionline access system. */
|
|
@@ -181634,6 +181734,11 @@ type Routes = {
|
|
|
181634
181734
|
/** Indicates whether the entrance is connected. */
|
|
181635
181735
|
is_connected: boolean;
|
|
181636
181736
|
} | undefined;
|
|
181737
|
+
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
181738
|
+
hotek_metadata?: {
|
|
181739
|
+
/** Room number of the entrance. */
|
|
181740
|
+
room_number: string;
|
|
181741
|
+
} | undefined;
|
|
181637
181742
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
181638
181743
|
visionline_metadata?: {
|
|
181639
181744
|
/** Name of the door in the Visionline access system. */
|
package/dist/index.cjs
CHANGED
|
@@ -1711,6 +1711,7 @@ var device = zod.z.object({
|
|
|
1711
1711
|
Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam.
|
|
1712
1712
|
`);
|
|
1713
1713
|
var DEVICE_PROVIDERS = {
|
|
1714
|
+
HOTEK: "hotek",
|
|
1714
1715
|
DORMAKABA_COMMUNITY: "dormakaba_community",
|
|
1715
1716
|
LEGIC_CONNECT: "legic_connect",
|
|
1716
1717
|
AKUVOX: "akuvox",
|
|
@@ -1816,7 +1817,8 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
1816
1817
|
"salto_space",
|
|
1817
1818
|
"dormakaba_ambiance",
|
|
1818
1819
|
"dormakaba_community",
|
|
1819
|
-
"legic_connect"
|
|
1820
|
+
"legic_connect",
|
|
1821
|
+
"hotek"
|
|
1820
1822
|
],
|
|
1821
1823
|
internal_beta: ALL_DEVICE_PROVIDERS
|
|
1822
1824
|
};
|
|
@@ -2462,6 +2464,9 @@ var acs_entrance_dormakaba_community_metadata = zod.z.object({
|
|
|
2462
2464
|
}).describe(
|
|
2463
2465
|
"dormakaba Community-specific metadata associated with the entrance."
|
|
2464
2466
|
);
|
|
2467
|
+
var acs_entrance_hotek_metadata = zod.z.object({
|
|
2468
|
+
room_number: zod.z.string().describe("Room number of the entrance.")
|
|
2469
|
+
}).describe("Hotek-specific metadata associated with the entrance.");
|
|
2465
2470
|
var acs_entrance_latch_metadata = zod.z.object({
|
|
2466
2471
|
accessibility_type: zod.z.string().describe("Accessibility type in the Latch access system."),
|
|
2467
2472
|
door_name: zod.z.string().describe("Name of the door in the Latch access system."),
|
|
@@ -2856,6 +2861,9 @@ var acs_entrance = zod.z.object({
|
|
|
2856
2861
|
latch_metadata: acs_entrance_latch_metadata.optional().describe(
|
|
2857
2862
|
"Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2858
2863
|
),
|
|
2864
|
+
hotek_metadata: acs_entrance_hotek_metadata.optional().describe(
|
|
2865
|
+
"Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2866
|
+
),
|
|
2859
2867
|
visionline_metadata: acs_entrance_visionline_metadata.optional().describe(
|
|
2860
2868
|
"Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2861
2869
|
),
|
|
@@ -8041,6 +8049,17 @@ var openapi_default = {
|
|
|
8041
8049
|
},
|
|
8042
8050
|
type: "array"
|
|
8043
8051
|
},
|
|
8052
|
+
hotek_metadata: {
|
|
8053
|
+
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8054
|
+
properties: {
|
|
8055
|
+
room_number: {
|
|
8056
|
+
description: "Room number of the entrance.",
|
|
8057
|
+
type: "string"
|
|
8058
|
+
}
|
|
8059
|
+
},
|
|
8060
|
+
required: ["room_number"],
|
|
8061
|
+
type: "object"
|
|
8062
|
+
},
|
|
8044
8063
|
latch_metadata: {
|
|
8045
8064
|
description: "Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8046
8065
|
properties: {
|
|
@@ -17009,6 +17028,7 @@ var openapi_default = {
|
|
|
17009
17028
|
can_unlock_with_code: { type: "boolean" },
|
|
17010
17029
|
device_provider_name: {
|
|
17011
17030
|
enum: [
|
|
17031
|
+
"hotek",
|
|
17012
17032
|
"dormakaba_community",
|
|
17013
17033
|
"legic_connect",
|
|
17014
17034
|
"akuvox",
|
|
@@ -23179,6 +23199,17 @@ var openapi_default = {
|
|
|
23179
23199
|
},
|
|
23180
23200
|
type: "array"
|
|
23181
23201
|
},
|
|
23202
|
+
hotek_metadata: {
|
|
23203
|
+
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
23204
|
+
properties: {
|
|
23205
|
+
room_number: {
|
|
23206
|
+
description: "Room number of the entrance.",
|
|
23207
|
+
type: "string"
|
|
23208
|
+
}
|
|
23209
|
+
},
|
|
23210
|
+
required: ["room_number"],
|
|
23211
|
+
type: "object"
|
|
23212
|
+
},
|
|
23182
23213
|
latch_metadata: {
|
|
23183
23214
|
description: "Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
23184
23215
|
properties: {
|
|
@@ -39461,6 +39492,7 @@ var openapi_default = {
|
|
|
39461
39492
|
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.",
|
|
39462
39493
|
items: {
|
|
39463
39494
|
enum: [
|
|
39495
|
+
"hotek",
|
|
39464
39496
|
"dormakaba_community",
|
|
39465
39497
|
"legic_connect",
|
|
39466
39498
|
"akuvox",
|