@seamapi/types 1.470.0 → 1.472.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 +34 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +104 -1
- package/dist/index.cjs +34 -4
- 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 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.d.ts +9 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.js +9 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.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/instant-keys/instant-key.js +1 -2
- package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +56 -0
- package/lib/seam/connect/openapi.d.ts +22 -1
- package/lib/seam/connect/openapi.js +23 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +50 -0
- 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/dormakaba-ambiance.ts +17 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +1 -2
- package/src/lib/seam/connect/openapi.ts +27 -2
- package/src/lib/seam/connect/route-types.ts +70 -0
package/dist/connect.d.cts
CHANGED
|
@@ -4653,6 +4653,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4653
4653
|
room_name?: string | undefined;
|
|
4654
4654
|
room_description?: string | undefined;
|
|
4655
4655
|
}>>;
|
|
4656
|
+
dormakaba_ambiance_metadata: z.ZodOptional<z.ZodObject<{
|
|
4657
|
+
access_point_name: z.ZodString;
|
|
4658
|
+
}, "strip", z.ZodTypeAny, {
|
|
4659
|
+
access_point_name: string;
|
|
4660
|
+
}, {
|
|
4661
|
+
access_point_name: string;
|
|
4662
|
+
}>>;
|
|
4656
4663
|
} & {
|
|
4657
4664
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
4658
4665
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4712,6 +4719,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4712
4719
|
room_name?: string | undefined;
|
|
4713
4720
|
room_description?: string | undefined;
|
|
4714
4721
|
} | undefined;
|
|
4722
|
+
dormakaba_ambiance_metadata?: {
|
|
4723
|
+
access_point_name: string;
|
|
4724
|
+
} | undefined;
|
|
4715
4725
|
}, {
|
|
4716
4726
|
display_name: string;
|
|
4717
4727
|
created_at: string;
|
|
@@ -4767,6 +4777,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4767
4777
|
room_name?: string | undefined;
|
|
4768
4778
|
room_description?: string | undefined;
|
|
4769
4779
|
} | undefined;
|
|
4780
|
+
dormakaba_ambiance_metadata?: {
|
|
4781
|
+
access_point_name: string;
|
|
4782
|
+
} | undefined;
|
|
4770
4783
|
}>;
|
|
4771
4784
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
4772
4785
|
|
|
@@ -14634,6 +14647,13 @@ declare const batch: z.ZodObject<{
|
|
|
14634
14647
|
room_name?: string | undefined;
|
|
14635
14648
|
room_description?: string | undefined;
|
|
14636
14649
|
}>>;
|
|
14650
|
+
dormakaba_ambiance_metadata: z.ZodOptional<z.ZodObject<{
|
|
14651
|
+
access_point_name: z.ZodString;
|
|
14652
|
+
}, "strip", z.ZodTypeAny, {
|
|
14653
|
+
access_point_name: string;
|
|
14654
|
+
}, {
|
|
14655
|
+
access_point_name: string;
|
|
14656
|
+
}>>;
|
|
14637
14657
|
} & {
|
|
14638
14658
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
14639
14659
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14693,6 +14713,9 @@ declare const batch: z.ZodObject<{
|
|
|
14693
14713
|
room_name?: string | undefined;
|
|
14694
14714
|
room_description?: string | undefined;
|
|
14695
14715
|
} | undefined;
|
|
14716
|
+
dormakaba_ambiance_metadata?: {
|
|
14717
|
+
access_point_name: string;
|
|
14718
|
+
} | undefined;
|
|
14696
14719
|
}, {
|
|
14697
14720
|
display_name: string;
|
|
14698
14721
|
created_at: string;
|
|
@@ -14748,6 +14771,9 @@ declare const batch: z.ZodObject<{
|
|
|
14748
14771
|
room_name?: string | undefined;
|
|
14749
14772
|
room_description?: string | undefined;
|
|
14750
14773
|
} | undefined;
|
|
14774
|
+
dormakaba_ambiance_metadata?: {
|
|
14775
|
+
access_point_name: string;
|
|
14776
|
+
} | undefined;
|
|
14751
14777
|
}>, "many">>;
|
|
14752
14778
|
acs_systems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14753
14779
|
default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24531,6 +24557,9 @@ declare const batch: z.ZodObject<{
|
|
|
24531
24557
|
room_name?: string | undefined;
|
|
24532
24558
|
room_description?: string | undefined;
|
|
24533
24559
|
} | undefined;
|
|
24560
|
+
dormakaba_ambiance_metadata?: {
|
|
24561
|
+
access_point_name: string;
|
|
24562
|
+
} | undefined;
|
|
24534
24563
|
}[] | undefined;
|
|
24535
24564
|
acs_systems?: {
|
|
24536
24565
|
name: string;
|
|
@@ -26647,6 +26676,9 @@ declare const batch: z.ZodObject<{
|
|
|
26647
26676
|
room_name?: string | undefined;
|
|
26648
26677
|
room_description?: string | undefined;
|
|
26649
26678
|
} | undefined;
|
|
26679
|
+
dormakaba_ambiance_metadata?: {
|
|
26680
|
+
access_point_name: string;
|
|
26681
|
+
} | undefined;
|
|
26650
26682
|
}[] | undefined;
|
|
26651
26683
|
acs_systems?: {
|
|
26652
26684
|
name: string;
|
|
@@ -41601,6 +41633,17 @@ declare const _default: {
|
|
|
41601
41633
|
description: string;
|
|
41602
41634
|
type: string;
|
|
41603
41635
|
};
|
|
41636
|
+
dormakaba_ambiance_metadata: {
|
|
41637
|
+
description: string;
|
|
41638
|
+
properties: {
|
|
41639
|
+
access_point_name: {
|
|
41640
|
+
description: string;
|
|
41641
|
+
type: string;
|
|
41642
|
+
};
|
|
41643
|
+
};
|
|
41644
|
+
required: string[];
|
|
41645
|
+
type: string;
|
|
41646
|
+
};
|
|
41604
41647
|
dormakaba_community_metadata: {
|
|
41605
41648
|
description: string;
|
|
41606
41649
|
properties: {
|
|
@@ -50877,7 +50920,6 @@ declare const _default: {
|
|
|
50877
50920
|
required: string[];
|
|
50878
50921
|
type: string;
|
|
50879
50922
|
'x-route-path': string;
|
|
50880
|
-
'x-undocumented': string;
|
|
50881
50923
|
};
|
|
50882
50924
|
location: {
|
|
50883
50925
|
properties: {
|
|
@@ -51277,6 +51319,17 @@ declare const _default: {
|
|
|
51277
51319
|
description: string;
|
|
51278
51320
|
type: string;
|
|
51279
51321
|
};
|
|
51322
|
+
dormakaba_ambiance_metadata: {
|
|
51323
|
+
description: string;
|
|
51324
|
+
properties: {
|
|
51325
|
+
access_point_name: {
|
|
51326
|
+
description: string;
|
|
51327
|
+
type: string;
|
|
51328
|
+
};
|
|
51329
|
+
};
|
|
51330
|
+
required: string[];
|
|
51331
|
+
type: string;
|
|
51332
|
+
};
|
|
51280
51333
|
dormakaba_community_metadata: {
|
|
51281
51334
|
description: string;
|
|
51282
51335
|
properties: {
|
|
@@ -101787,6 +101840,11 @@ type Routes = {
|
|
|
101787
101840
|
/** Description of the room in the Salto Space access system. */
|
|
101788
101841
|
room_description?: string | undefined;
|
|
101789
101842
|
} | undefined;
|
|
101843
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
101844
|
+
dormakaba_ambiance_metadata?: {
|
|
101845
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
101846
|
+
access_point_name: string;
|
|
101847
|
+
} | undefined;
|
|
101790
101848
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
101791
101849
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
101792
101850
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -104893,6 +104951,11 @@ type Routes = {
|
|
|
104893
104951
|
/** Description of the room in the Salto Space access system. */
|
|
104894
104952
|
room_description?: string | undefined;
|
|
104895
104953
|
} | undefined;
|
|
104954
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
104955
|
+
dormakaba_ambiance_metadata?: {
|
|
104956
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
104957
|
+
access_point_name: string;
|
|
104958
|
+
} | undefined;
|
|
104896
104959
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
104897
104960
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
104898
104961
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -107497,6 +107560,11 @@ type Routes = {
|
|
|
107497
107560
|
/** Description of the room in the Salto Space access system. */
|
|
107498
107561
|
room_description?: string | undefined;
|
|
107499
107562
|
} | undefined;
|
|
107563
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
107564
|
+
dormakaba_ambiance_metadata?: {
|
|
107565
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
107566
|
+
access_point_name: string;
|
|
107567
|
+
} | undefined;
|
|
107500
107568
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
107501
107569
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
107502
107570
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -108829,6 +108897,11 @@ type Routes = {
|
|
|
108829
108897
|
/** Description of the room in the Salto Space access system. */
|
|
108830
108898
|
room_description?: string | undefined;
|
|
108831
108899
|
} | undefined;
|
|
108900
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
108901
|
+
dormakaba_ambiance_metadata?: {
|
|
108902
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
108903
|
+
access_point_name: string;
|
|
108904
|
+
} | undefined;
|
|
108832
108905
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
108833
108906
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
108834
108907
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -112251,6 +112324,11 @@ type Routes = {
|
|
|
112251
112324
|
/** Description of the room in the Salto Space access system. */
|
|
112252
112325
|
room_description?: string | undefined;
|
|
112253
112326
|
} | undefined;
|
|
112327
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112328
|
+
dormakaba_ambiance_metadata?: {
|
|
112329
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
112330
|
+
access_point_name: string;
|
|
112331
|
+
} | undefined;
|
|
112254
112332
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
112255
112333
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
112256
112334
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -112400,6 +112478,11 @@ type Routes = {
|
|
|
112400
112478
|
/** Description of the room in the Salto Space access system. */
|
|
112401
112479
|
room_description?: string | undefined;
|
|
112402
112480
|
} | undefined;
|
|
112481
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112482
|
+
dormakaba_ambiance_metadata?: {
|
|
112483
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
112484
|
+
access_point_name: string;
|
|
112485
|
+
} | undefined;
|
|
112403
112486
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
112404
112487
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
112405
112488
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -113814,6 +113897,11 @@ type Routes = {
|
|
|
113814
113897
|
/** Description of the room in the Salto Space access system. */
|
|
113815
113898
|
room_description?: string | undefined;
|
|
113816
113899
|
} | undefined;
|
|
113900
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
113901
|
+
dormakaba_ambiance_metadata?: {
|
|
113902
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
113903
|
+
access_point_name: string;
|
|
113904
|
+
} | undefined;
|
|
113817
113905
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
113818
113906
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
113819
113907
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -145077,6 +145165,11 @@ type Routes = {
|
|
|
145077
145165
|
/** Description of the room in the Salto Space access system. */
|
|
145078
145166
|
room_description?: string | undefined;
|
|
145079
145167
|
} | undefined;
|
|
145168
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
145169
|
+
dormakaba_ambiance_metadata?: {
|
|
145170
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
145171
|
+
access_point_name: string;
|
|
145172
|
+
} | undefined;
|
|
145080
145173
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
145081
145174
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
145082
145175
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -146613,6 +146706,11 @@ type Routes = {
|
|
|
146613
146706
|
/** Description of the room in the Salto Space access system. */
|
|
146614
146707
|
room_description?: string | undefined;
|
|
146615
146708
|
} | undefined;
|
|
146709
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
146710
|
+
dormakaba_ambiance_metadata?: {
|
|
146711
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
146712
|
+
access_point_name: string;
|
|
146713
|
+
} | undefined;
|
|
146616
146714
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
146617
146715
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
146618
146716
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -167610,6 +167708,11 @@ type Routes = {
|
|
|
167610
167708
|
/** Description of the room in the Salto Space access system. */
|
|
167611
167709
|
room_description?: string | undefined;
|
|
167612
167710
|
} | undefined;
|
|
167711
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
167712
|
+
dormakaba_ambiance_metadata?: {
|
|
167713
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
167714
|
+
access_point_name: string;
|
|
167715
|
+
} | undefined;
|
|
167613
167716
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
167614
167717
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
167615
167718
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
package/dist/index.cjs
CHANGED
|
@@ -2369,6 +2369,13 @@ var acs_credential_vostio_metadata = zod.z.object({
|
|
|
2369
2369
|
}).describe(
|
|
2370
2370
|
"ASSA ABLOY Vostio-specific metadata associated with the credential."
|
|
2371
2371
|
);
|
|
2372
|
+
var acs_entrance_dormakaba_ambiance_metadata = zod.z.object({
|
|
2373
|
+
access_point_name: zod.z.string().describe(
|
|
2374
|
+
"Name of the access point in the dormakaba Ambiance access system."
|
|
2375
|
+
)
|
|
2376
|
+
}).describe(
|
|
2377
|
+
"dormakaba Ambiance-specific metadata associated with the entrance."
|
|
2378
|
+
);
|
|
2372
2379
|
var acs_entrance_dormakaba_community_metadata = zod.z.object({
|
|
2373
2380
|
access_point_name: zod.z.string().describe(
|
|
2374
2381
|
"Name of the access point in the dormakaba Community access system."
|
|
@@ -2783,6 +2790,9 @@ var acs_entrance = zod.z.object({
|
|
|
2783
2790
|
),
|
|
2784
2791
|
salto_space_metadata: acs_entrance_salto_space_metadata.optional().describe(
|
|
2785
2792
|
"Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2793
|
+
),
|
|
2794
|
+
dormakaba_ambiance_metadata: acs_entrance_dormakaba_ambiance_metadata.optional().describe(
|
|
2795
|
+
"dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2786
2796
|
)
|
|
2787
2797
|
}).merge(acs_entrance_capability_flags).describe(`
|
|
2788
2798
|
---
|
|
@@ -5329,8 +5339,7 @@ var instant_key = zod.z.object({
|
|
|
5329
5339
|
expires_at: zod.z.string().datetime().describe("Date and time at which the Instant Key expires.")
|
|
5330
5340
|
}).describe(`
|
|
5331
5341
|
---
|
|
5332
|
-
route_path: /
|
|
5333
|
-
undocumented: Unreleased.
|
|
5342
|
+
route_path: /instant_keys
|
|
5334
5343
|
---
|
|
5335
5344
|
Represents a Seam Instant Key. For issuing Bluetooth mobile keys, Instant Keys are the fastest way to share access. With a single API call, you can create a mobile key and send it through text or email or embed it in your own app.
|
|
5336
5345
|
|
|
@@ -7827,6 +7836,17 @@ var openapi_default = {
|
|
|
7827
7836
|
description: "Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
7828
7837
|
type: "string"
|
|
7829
7838
|
},
|
|
7839
|
+
dormakaba_ambiance_metadata: {
|
|
7840
|
+
description: "dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
7841
|
+
properties: {
|
|
7842
|
+
access_point_name: {
|
|
7843
|
+
description: "Name of the access point in the dormakaba Ambiance access system.",
|
|
7844
|
+
type: "string"
|
|
7845
|
+
}
|
|
7846
|
+
},
|
|
7847
|
+
required: ["access_point_name"],
|
|
7848
|
+
type: "object"
|
|
7849
|
+
},
|
|
7830
7850
|
dormakaba_community_metadata: {
|
|
7831
7851
|
description: "dormakaba Community-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
7832
7852
|
properties: {
|
|
@@ -22576,8 +22596,7 @@ var openapi_default = {
|
|
|
22576
22596
|
"expires_at"
|
|
22577
22597
|
],
|
|
22578
22598
|
type: "object",
|
|
22579
|
-
"x-route-path": "/
|
|
22580
|
-
"x-undocumented": "Unreleased."
|
|
22599
|
+
"x-route-path": "/instant_keys"
|
|
22581
22600
|
},
|
|
22582
22601
|
location: {
|
|
22583
22602
|
properties: {
|
|
@@ -22990,6 +23009,17 @@ var openapi_default = {
|
|
|
22990
23009
|
description: "Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
22991
23010
|
type: "string"
|
|
22992
23011
|
},
|
|
23012
|
+
dormakaba_ambiance_metadata: {
|
|
23013
|
+
description: "dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
23014
|
+
properties: {
|
|
23015
|
+
access_point_name: {
|
|
23016
|
+
description: "Name of the access point in the dormakaba Ambiance access system.",
|
|
23017
|
+
type: "string"
|
|
23018
|
+
}
|
|
23019
|
+
},
|
|
23020
|
+
required: ["access_point_name"],
|
|
23021
|
+
type: "object"
|
|
23022
|
+
},
|
|
22993
23023
|
dormakaba_community_metadata: {
|
|
22994
23024
|
description: "dormakaba Community-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
22995
23025
|
properties: {
|