@seamapi/types 1.546.0 → 1.548.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 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -10
- package/dist/index.cjs +43 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +19 -4
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- 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/batch.d.ts +135 -30
- package/lib/seam/connect/models/phones/phone-session.d.ts +78 -18
- package/lib/seam/connect/openapi.d.ts +26 -0
- package/lib/seam/connect/openapi.js +37 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +60 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +5 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +39 -4
- package/src/lib/seam/connect/route-types.ts +60 -0
|
@@ -11370,6 +11370,10 @@ export type Routes = {
|
|
|
11370
11370
|
hotek_metadata?: {
|
|
11371
11371
|
/** Room number of the entrance. */
|
|
11372
11372
|
room_number: string;
|
|
11373
|
+
/** Display name of the entrance. */
|
|
11374
|
+
display_name: string;
|
|
11375
|
+
/** Type of door. */
|
|
11376
|
+
door_type: 'common_area' | 'guest';
|
|
11373
11377
|
} | undefined;
|
|
11374
11378
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
11375
11379
|
visionline_metadata?: {
|
|
@@ -11408,6 +11412,8 @@ export type Routes = {
|
|
|
11408
11412
|
dormakaba_community_metadata?: {
|
|
11409
11413
|
/** Name of the access point in the dormakaba Community access system. */
|
|
11410
11414
|
access_point_name: string;
|
|
11415
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
11416
|
+
access_point_profile: string;
|
|
11411
11417
|
} | undefined;
|
|
11412
11418
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
11413
11419
|
assa_abloy_vostio_metadata?: {
|
|
@@ -14498,6 +14504,10 @@ export type Routes = {
|
|
|
14498
14504
|
hotek_metadata?: {
|
|
14499
14505
|
/** Room number of the entrance. */
|
|
14500
14506
|
room_number: string;
|
|
14507
|
+
/** Display name of the entrance. */
|
|
14508
|
+
display_name: string;
|
|
14509
|
+
/** Type of door. */
|
|
14510
|
+
door_type: 'common_area' | 'guest';
|
|
14501
14511
|
} | undefined;
|
|
14502
14512
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14503
14513
|
visionline_metadata?: {
|
|
@@ -14536,6 +14546,8 @@ export type Routes = {
|
|
|
14536
14546
|
dormakaba_community_metadata?: {
|
|
14537
14547
|
/** Name of the access point in the dormakaba Community access system. */
|
|
14538
14548
|
access_point_name: string;
|
|
14549
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
14550
|
+
access_point_profile: string;
|
|
14539
14551
|
} | undefined;
|
|
14540
14552
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14541
14553
|
assa_abloy_vostio_metadata?: {
|
|
@@ -20411,6 +20423,10 @@ export type Routes = {
|
|
|
20411
20423
|
hotek_metadata?: {
|
|
20412
20424
|
/** Room number of the entrance. */
|
|
20413
20425
|
room_number: string;
|
|
20426
|
+
/** Display name of the entrance. */
|
|
20427
|
+
display_name: string;
|
|
20428
|
+
/** Type of door. */
|
|
20429
|
+
door_type: 'common_area' | 'guest';
|
|
20414
20430
|
} | undefined;
|
|
20415
20431
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
20416
20432
|
visionline_metadata?: {
|
|
@@ -20449,6 +20465,8 @@ export type Routes = {
|
|
|
20449
20465
|
dormakaba_community_metadata?: {
|
|
20450
20466
|
/** Name of the access point in the dormakaba Community access system. */
|
|
20451
20467
|
access_point_name: string;
|
|
20468
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
20469
|
+
access_point_profile: string;
|
|
20452
20470
|
} | undefined;
|
|
20453
20471
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
20454
20472
|
assa_abloy_vostio_metadata?: {
|
|
@@ -21766,6 +21784,10 @@ export type Routes = {
|
|
|
21766
21784
|
hotek_metadata?: {
|
|
21767
21785
|
/** Room number of the entrance. */
|
|
21768
21786
|
room_number: string;
|
|
21787
|
+
/** Display name of the entrance. */
|
|
21788
|
+
display_name: string;
|
|
21789
|
+
/** Type of door. */
|
|
21790
|
+
door_type: 'common_area' | 'guest';
|
|
21769
21791
|
} | undefined;
|
|
21770
21792
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21771
21793
|
visionline_metadata?: {
|
|
@@ -21804,6 +21826,8 @@ export type Routes = {
|
|
|
21804
21826
|
dormakaba_community_metadata?: {
|
|
21805
21827
|
/** Name of the access point in the dormakaba Community access system. */
|
|
21806
21828
|
access_point_name: string;
|
|
21829
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
21830
|
+
access_point_profile: string;
|
|
21807
21831
|
} | undefined;
|
|
21808
21832
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21809
21833
|
assa_abloy_vostio_metadata?: {
|
|
@@ -25206,6 +25230,10 @@ export type Routes = {
|
|
|
25206
25230
|
hotek_metadata?: {
|
|
25207
25231
|
/** Room number of the entrance. */
|
|
25208
25232
|
room_number: string;
|
|
25233
|
+
/** Display name of the entrance. */
|
|
25234
|
+
display_name: string;
|
|
25235
|
+
/** Type of door. */
|
|
25236
|
+
door_type: 'common_area' | 'guest';
|
|
25209
25237
|
} | undefined;
|
|
25210
25238
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25211
25239
|
visionline_metadata?: {
|
|
@@ -25244,6 +25272,8 @@ export type Routes = {
|
|
|
25244
25272
|
dormakaba_community_metadata?: {
|
|
25245
25273
|
/** Name of the access point in the dormakaba Community access system. */
|
|
25246
25274
|
access_point_name: string;
|
|
25275
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
25276
|
+
access_point_profile: string;
|
|
25247
25277
|
} | undefined;
|
|
25248
25278
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25249
25279
|
assa_abloy_vostio_metadata?: {
|
|
@@ -25367,6 +25397,10 @@ export type Routes = {
|
|
|
25367
25397
|
hotek_metadata?: {
|
|
25368
25398
|
/** Room number of the entrance. */
|
|
25369
25399
|
room_number: string;
|
|
25400
|
+
/** Display name of the entrance. */
|
|
25401
|
+
display_name: string;
|
|
25402
|
+
/** Type of door. */
|
|
25403
|
+
door_type: 'common_area' | 'guest';
|
|
25370
25404
|
} | undefined;
|
|
25371
25405
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25372
25406
|
visionline_metadata?: {
|
|
@@ -25405,6 +25439,8 @@ export type Routes = {
|
|
|
25405
25439
|
dormakaba_community_metadata?: {
|
|
25406
25440
|
/** Name of the access point in the dormakaba Community access system. */
|
|
25407
25441
|
access_point_name: string;
|
|
25442
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
25443
|
+
access_point_profile: string;
|
|
25408
25444
|
} | undefined;
|
|
25409
25445
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25410
25446
|
assa_abloy_vostio_metadata?: {
|
|
@@ -26802,6 +26838,10 @@ export type Routes = {
|
|
|
26802
26838
|
hotek_metadata?: {
|
|
26803
26839
|
/** Room number of the entrance. */
|
|
26804
26840
|
room_number: string;
|
|
26841
|
+
/** Display name of the entrance. */
|
|
26842
|
+
display_name: string;
|
|
26843
|
+
/** Type of door. */
|
|
26844
|
+
door_type: 'common_area' | 'guest';
|
|
26805
26845
|
} | undefined;
|
|
26806
26846
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
26807
26847
|
visionline_metadata?: {
|
|
@@ -26840,6 +26880,8 @@ export type Routes = {
|
|
|
26840
26880
|
dormakaba_community_metadata?: {
|
|
26841
26881
|
/** Name of the access point in the dormakaba Community access system. */
|
|
26842
26882
|
access_point_name: string;
|
|
26883
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
26884
|
+
access_point_profile: string;
|
|
26843
26885
|
} | undefined;
|
|
26844
26886
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
26845
26887
|
assa_abloy_vostio_metadata?: {
|
|
@@ -58205,6 +58247,10 @@ export type Routes = {
|
|
|
58205
58247
|
hotek_metadata?: {
|
|
58206
58248
|
/** Room number of the entrance. */
|
|
58207
58249
|
room_number: string;
|
|
58250
|
+
/** Display name of the entrance. */
|
|
58251
|
+
display_name: string;
|
|
58252
|
+
/** Type of door. */
|
|
58253
|
+
door_type: 'common_area' | 'guest';
|
|
58208
58254
|
} | undefined;
|
|
58209
58255
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
58210
58256
|
visionline_metadata?: {
|
|
@@ -58243,6 +58289,8 @@ export type Routes = {
|
|
|
58243
58289
|
dormakaba_community_metadata?: {
|
|
58244
58290
|
/** Name of the access point in the dormakaba Community access system. */
|
|
58245
58291
|
access_point_name: string;
|
|
58292
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
58293
|
+
access_point_profile: string;
|
|
58246
58294
|
} | undefined;
|
|
58247
58295
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
58248
58296
|
assa_abloy_vostio_metadata?: {
|
|
@@ -59722,6 +59770,10 @@ export type Routes = {
|
|
|
59722
59770
|
hotek_metadata?: {
|
|
59723
59771
|
/** Room number of the entrance. */
|
|
59724
59772
|
room_number: string;
|
|
59773
|
+
/** Display name of the entrance. */
|
|
59774
|
+
display_name: string;
|
|
59775
|
+
/** Type of door. */
|
|
59776
|
+
door_type: 'common_area' | 'guest';
|
|
59725
59777
|
} | undefined;
|
|
59726
59778
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
59727
59779
|
visionline_metadata?: {
|
|
@@ -59760,6 +59812,8 @@ export type Routes = {
|
|
|
59760
59812
|
dormakaba_community_metadata?: {
|
|
59761
59813
|
/** Name of the access point in the dormakaba Community access system. */
|
|
59762
59814
|
access_point_name: string;
|
|
59815
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
59816
|
+
access_point_profile: string;
|
|
59763
59817
|
} | undefined;
|
|
59764
59818
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
59765
59819
|
assa_abloy_vostio_metadata?: {
|
|
@@ -80431,6 +80485,10 @@ export type Routes = {
|
|
|
80431
80485
|
hotek_metadata?: {
|
|
80432
80486
|
/** Room number of the entrance. */
|
|
80433
80487
|
room_number: string;
|
|
80488
|
+
/** Display name of the entrance. */
|
|
80489
|
+
display_name: string;
|
|
80490
|
+
/** Type of door. */
|
|
80491
|
+
door_type: 'common_area' | 'guest';
|
|
80434
80492
|
} | undefined;
|
|
80435
80493
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
80436
80494
|
visionline_metadata?: {
|
|
@@ -80469,6 +80527,8 @@ export type Routes = {
|
|
|
80469
80527
|
dormakaba_community_metadata?: {
|
|
80470
80528
|
/** Name of the access point in the dormakaba Community access system. */
|
|
80471
80529
|
access_point_name: string;
|
|
80530
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
80531
|
+
access_point_profile: string;
|
|
80472
80532
|
} | undefined;
|
|
80473
80533
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
80474
80534
|
assa_abloy_vostio_metadata?: {
|
package/package.json
CHANGED
|
@@ -7,6 +7,11 @@ export const acs_entrance_dormakaba_community_metadata = z
|
|
|
7
7
|
.describe(
|
|
8
8
|
'Name of the access point in the dormakaba Community access system.',
|
|
9
9
|
),
|
|
10
|
+
access_point_profile: z
|
|
11
|
+
.string()
|
|
12
|
+
.describe(
|
|
13
|
+
'Type of access point profile in the dormakaba Community access system.',
|
|
14
|
+
),
|
|
10
15
|
})
|
|
11
16
|
.describe(
|
|
12
17
|
'dormakaba Community-specific metadata associated with the entrance.',
|
|
@@ -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
|
|
|
@@ -2827,8 +2827,13 @@ export default {
|
|
|
2827
2827
|
'Name of the access point in the dormakaba Community access system.',
|
|
2828
2828
|
type: 'string',
|
|
2829
2829
|
},
|
|
2830
|
+
access_point_profile: {
|
|
2831
|
+
description:
|
|
2832
|
+
'Type of access point profile in the dormakaba Community access system.',
|
|
2833
|
+
type: 'string',
|
|
2834
|
+
},
|
|
2830
2835
|
},
|
|
2831
|
-
required: ['access_point_name'],
|
|
2836
|
+
required: ['access_point_name', 'access_point_profile'],
|
|
2832
2837
|
type: 'object',
|
|
2833
2838
|
},
|
|
2834
2839
|
errors: {
|
|
@@ -2856,12 +2861,21 @@ export default {
|
|
|
2856
2861
|
description:
|
|
2857
2862
|
'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
2858
2863
|
properties: {
|
|
2864
|
+
display_name: {
|
|
2865
|
+
description: 'Display name of the entrance.',
|
|
2866
|
+
type: 'string',
|
|
2867
|
+
},
|
|
2868
|
+
door_type: {
|
|
2869
|
+
description: 'Type of door.',
|
|
2870
|
+
enum: ['common_area', 'guest'],
|
|
2871
|
+
type: 'string',
|
|
2872
|
+
},
|
|
2859
2873
|
room_number: {
|
|
2860
2874
|
description: 'Room number of the entrance.',
|
|
2861
2875
|
type: 'string',
|
|
2862
2876
|
},
|
|
2863
2877
|
},
|
|
2864
|
-
required: ['room_number'],
|
|
2878
|
+
required: ['room_number', 'display_name', 'door_type'],
|
|
2865
2879
|
type: 'object',
|
|
2866
2880
|
},
|
|
2867
2881
|
latch_metadata: {
|
|
@@ -19577,8 +19591,16 @@ export default {
|
|
|
19577
19591
|
'Name of the access point in the dormakaba Community access system.',
|
|
19578
19592
|
type: 'string',
|
|
19579
19593
|
},
|
|
19594
|
+
access_point_profile: {
|
|
19595
|
+
description:
|
|
19596
|
+
'Type of access point profile in the dormakaba Community access system.',
|
|
19597
|
+
type: 'string',
|
|
19598
|
+
},
|
|
19580
19599
|
},
|
|
19581
|
-
required: [
|
|
19600
|
+
required: [
|
|
19601
|
+
'access_point_name',
|
|
19602
|
+
'access_point_profile',
|
|
19603
|
+
],
|
|
19582
19604
|
type: 'object',
|
|
19583
19605
|
},
|
|
19584
19606
|
errors: {
|
|
@@ -19606,12 +19628,25 @@ export default {
|
|
|
19606
19628
|
description:
|
|
19607
19629
|
'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
19608
19630
|
properties: {
|
|
19631
|
+
display_name: {
|
|
19632
|
+
description: 'Display name of the entrance.',
|
|
19633
|
+
type: 'string',
|
|
19634
|
+
},
|
|
19635
|
+
door_type: {
|
|
19636
|
+
description: 'Type of door.',
|
|
19637
|
+
enum: ['common_area', 'guest'],
|
|
19638
|
+
type: 'string',
|
|
19639
|
+
},
|
|
19609
19640
|
room_number: {
|
|
19610
19641
|
description: 'Room number of the entrance.',
|
|
19611
19642
|
type: 'string',
|
|
19612
19643
|
},
|
|
19613
19644
|
},
|
|
19614
|
-
required: [
|
|
19645
|
+
required: [
|
|
19646
|
+
'room_number',
|
|
19647
|
+
'display_name',
|
|
19648
|
+
'door_type',
|
|
19649
|
+
],
|
|
19615
19650
|
type: 'object',
|
|
19616
19651
|
},
|
|
19617
19652
|
latch_metadata: {
|
|
@@ -12959,6 +12959,10 @@ export type Routes = {
|
|
|
12959
12959
|
| {
|
|
12960
12960
|
/** Room number of the entrance. */
|
|
12961
12961
|
room_number: string
|
|
12962
|
+
/** Display name of the entrance. */
|
|
12963
|
+
display_name: string
|
|
12964
|
+
/** Type of door. */
|
|
12965
|
+
door_type: 'common_area' | 'guest'
|
|
12962
12966
|
}
|
|
12963
12967
|
| undefined
|
|
12964
12968
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -13013,6 +13017,8 @@ export type Routes = {
|
|
|
13013
13017
|
| {
|
|
13014
13018
|
/** Name of the access point in the dormakaba Community access system. */
|
|
13015
13019
|
access_point_name: string
|
|
13020
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
13021
|
+
access_point_profile: string
|
|
13016
13022
|
}
|
|
13017
13023
|
| undefined
|
|
13018
13024
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -16746,6 +16752,10 @@ export type Routes = {
|
|
|
16746
16752
|
| {
|
|
16747
16753
|
/** Room number of the entrance. */
|
|
16748
16754
|
room_number: string
|
|
16755
|
+
/** Display name of the entrance. */
|
|
16756
|
+
display_name: string
|
|
16757
|
+
/** Type of door. */
|
|
16758
|
+
door_type: 'common_area' | 'guest'
|
|
16749
16759
|
}
|
|
16750
16760
|
| undefined
|
|
16751
16761
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -16800,6 +16810,8 @@ export type Routes = {
|
|
|
16800
16810
|
| {
|
|
16801
16811
|
/** Name of the access point in the dormakaba Community access system. */
|
|
16802
16812
|
access_point_name: string
|
|
16813
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
16814
|
+
access_point_profile: string
|
|
16803
16815
|
}
|
|
16804
16816
|
| undefined
|
|
16805
16817
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -23719,6 +23731,10 @@ export type Routes = {
|
|
|
23719
23731
|
| {
|
|
23720
23732
|
/** Room number of the entrance. */
|
|
23721
23733
|
room_number: string
|
|
23734
|
+
/** Display name of the entrance. */
|
|
23735
|
+
display_name: string
|
|
23736
|
+
/** Type of door. */
|
|
23737
|
+
door_type: 'common_area' | 'guest'
|
|
23722
23738
|
}
|
|
23723
23739
|
| undefined
|
|
23724
23740
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -23770,6 +23786,8 @@ export type Routes = {
|
|
|
23770
23786
|
| {
|
|
23771
23787
|
/** Name of the access point in the dormakaba Community access system. */
|
|
23772
23788
|
access_point_name: string
|
|
23789
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
23790
|
+
access_point_profile: string
|
|
23773
23791
|
}
|
|
23774
23792
|
| undefined
|
|
23775
23793
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -25311,6 +25329,10 @@ export type Routes = {
|
|
|
25311
25329
|
| {
|
|
25312
25330
|
/** Room number of the entrance. */
|
|
25313
25331
|
room_number: string
|
|
25332
|
+
/** Display name of the entrance. */
|
|
25333
|
+
display_name: string
|
|
25334
|
+
/** Type of door. */
|
|
25335
|
+
door_type: 'common_area' | 'guest'
|
|
25314
25336
|
}
|
|
25315
25337
|
| undefined
|
|
25316
25338
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -25362,6 +25384,8 @@ export type Routes = {
|
|
|
25362
25384
|
| {
|
|
25363
25385
|
/** Name of the access point in the dormakaba Community access system. */
|
|
25364
25386
|
access_point_name: string
|
|
25387
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
25388
|
+
access_point_profile: string
|
|
25365
25389
|
}
|
|
25366
25390
|
| undefined
|
|
25367
25391
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -29273,6 +29297,10 @@ export type Routes = {
|
|
|
29273
29297
|
| {
|
|
29274
29298
|
/** Room number of the entrance. */
|
|
29275
29299
|
room_number: string
|
|
29300
|
+
/** Display name of the entrance. */
|
|
29301
|
+
display_name: string
|
|
29302
|
+
/** Type of door. */
|
|
29303
|
+
door_type: 'common_area' | 'guest'
|
|
29276
29304
|
}
|
|
29277
29305
|
| undefined
|
|
29278
29306
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -29324,6 +29352,8 @@ export type Routes = {
|
|
|
29324
29352
|
| {
|
|
29325
29353
|
/** Name of the access point in the dormakaba Community access system. */
|
|
29326
29354
|
access_point_name: string
|
|
29355
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
29356
|
+
access_point_profile: string
|
|
29327
29357
|
}
|
|
29328
29358
|
| undefined
|
|
29329
29359
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -29461,6 +29491,10 @@ export type Routes = {
|
|
|
29461
29491
|
| {
|
|
29462
29492
|
/** Room number of the entrance. */
|
|
29463
29493
|
room_number: string
|
|
29494
|
+
/** Display name of the entrance. */
|
|
29495
|
+
display_name: string
|
|
29496
|
+
/** Type of door. */
|
|
29497
|
+
door_type: 'common_area' | 'guest'
|
|
29464
29498
|
}
|
|
29465
29499
|
| undefined
|
|
29466
29500
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -29512,6 +29546,8 @@ export type Routes = {
|
|
|
29512
29546
|
| {
|
|
29513
29547
|
/** Name of the access point in the dormakaba Community access system. */
|
|
29514
29548
|
access_point_name: string
|
|
29549
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
29550
|
+
access_point_profile: string
|
|
29515
29551
|
}
|
|
29516
29552
|
| undefined
|
|
29517
29553
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -31198,6 +31234,10 @@ export type Routes = {
|
|
|
31198
31234
|
| {
|
|
31199
31235
|
/** Room number of the entrance. */
|
|
31200
31236
|
room_number: string
|
|
31237
|
+
/** Display name of the entrance. */
|
|
31238
|
+
display_name: string
|
|
31239
|
+
/** Type of door. */
|
|
31240
|
+
door_type: 'common_area' | 'guest'
|
|
31201
31241
|
}
|
|
31202
31242
|
| undefined
|
|
31203
31243
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -31249,6 +31289,8 @@ export type Routes = {
|
|
|
31249
31289
|
| {
|
|
31250
31290
|
/** Name of the access point in the dormakaba Community access system. */
|
|
31251
31291
|
access_point_name: string
|
|
31292
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
31293
|
+
access_point_profile: string
|
|
31252
31294
|
}
|
|
31253
31295
|
| undefined
|
|
31254
31296
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -69293,6 +69335,10 @@ export type Routes = {
|
|
|
69293
69335
|
| {
|
|
69294
69336
|
/** Room number of the entrance. */
|
|
69295
69337
|
room_number: string
|
|
69338
|
+
/** Display name of the entrance. */
|
|
69339
|
+
display_name: string
|
|
69340
|
+
/** Type of door. */
|
|
69341
|
+
door_type: 'common_area' | 'guest'
|
|
69296
69342
|
}
|
|
69297
69343
|
| undefined
|
|
69298
69344
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -69347,6 +69393,8 @@ export type Routes = {
|
|
|
69347
69393
|
| {
|
|
69348
69394
|
/** Name of the access point in the dormakaba Community access system. */
|
|
69349
69395
|
access_point_name: string
|
|
69396
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
69397
|
+
access_point_profile: string
|
|
69350
69398
|
}
|
|
69351
69399
|
| undefined
|
|
69352
69400
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -71185,6 +71233,10 @@ export type Routes = {
|
|
|
71185
71233
|
| {
|
|
71186
71234
|
/** Room number of the entrance. */
|
|
71187
71235
|
room_number: string
|
|
71236
|
+
/** Display name of the entrance. */
|
|
71237
|
+
display_name: string
|
|
71238
|
+
/** Type of door. */
|
|
71239
|
+
door_type: 'common_area' | 'guest'
|
|
71188
71240
|
}
|
|
71189
71241
|
| undefined
|
|
71190
71242
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -71239,6 +71291,8 @@ export type Routes = {
|
|
|
71239
71291
|
| {
|
|
71240
71292
|
/** Name of the access point in the dormakaba Community access system. */
|
|
71241
71293
|
access_point_name: string
|
|
71294
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
71295
|
+
access_point_profile: string
|
|
71242
71296
|
}
|
|
71243
71297
|
| undefined
|
|
71244
71298
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -95716,6 +95770,10 @@ export type Routes = {
|
|
|
95716
95770
|
| {
|
|
95717
95771
|
/** Room number of the entrance. */
|
|
95718
95772
|
room_number: string
|
|
95773
|
+
/** Display name of the entrance. */
|
|
95774
|
+
display_name: string
|
|
95775
|
+
/** Type of door. */
|
|
95776
|
+
door_type: 'common_area' | 'guest'
|
|
95719
95777
|
}
|
|
95720
95778
|
| undefined
|
|
95721
95779
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -95770,6 +95828,8 @@ export type Routes = {
|
|
|
95770
95828
|
| {
|
|
95771
95829
|
/** Name of the access point in the dormakaba Community access system. */
|
|
95772
95830
|
access_point_name: string
|
|
95831
|
+
/** Type of access point profile in the dormakaba Community access system. */
|
|
95832
|
+
access_point_profile: string
|
|
95773
95833
|
}
|
|
95774
95834
|
| undefined
|
|
95775
95835
|
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|