@seamapi/types 1.457.1 → 1.458.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 +38 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +256 -84
- package/dist/index.cjs +38 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -10
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -6
- package/lib/seam/connect/models/acs/metadata/salto-space.js +13 -4
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batches/access_grants.d.ts +35 -14
- package/lib/seam/connect/models/batches/access_methods.d.ts +35 -14
- package/lib/seam/connect/models/batches/batch.d.ts +105 -42
- package/lib/seam/connect/models/batches/spaces.d.ts +35 -14
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -40
- package/lib/seam/connect/openapi.d.ts +26 -2
- package/lib/seam/connect/openapi.js +28 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -30
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +13 -4
- package/src/lib/seam/connect/openapi.ts +31 -4
- package/src/lib/seam/connect/route-types.ts +100 -30
package/dist/connect.d.cts
CHANGED
|
@@ -4632,17 +4632,26 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4632
4632
|
pms_id?: string | undefined;
|
|
4633
4633
|
}>>;
|
|
4634
4634
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
4635
|
-
|
|
4636
|
-
|
|
4635
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
4636
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
4637
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
4637
4638
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4639
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
4640
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
4638
4641
|
}, "strip", z.ZodTypeAny, {
|
|
4639
|
-
door_name
|
|
4640
|
-
|
|
4642
|
+
door_name?: string | undefined;
|
|
4643
|
+
door_id?: string | undefined;
|
|
4644
|
+
ext_door_id?: string | undefined;
|
|
4641
4645
|
door_description?: string | undefined;
|
|
4646
|
+
room_name?: string | undefined;
|
|
4647
|
+
room_description?: string | undefined;
|
|
4642
4648
|
}, {
|
|
4643
|
-
door_name
|
|
4644
|
-
|
|
4649
|
+
door_name?: string | undefined;
|
|
4650
|
+
door_id?: string | undefined;
|
|
4651
|
+
ext_door_id?: string | undefined;
|
|
4645
4652
|
door_description?: string | undefined;
|
|
4653
|
+
room_name?: string | undefined;
|
|
4654
|
+
room_description?: string | undefined;
|
|
4646
4655
|
}>>;
|
|
4647
4656
|
} & {
|
|
4648
4657
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4696,9 +4705,12 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4696
4705
|
access_point_name: string;
|
|
4697
4706
|
} | undefined;
|
|
4698
4707
|
salto_space_metadata?: {
|
|
4699
|
-
door_name
|
|
4700
|
-
|
|
4708
|
+
door_name?: string | undefined;
|
|
4709
|
+
door_id?: string | undefined;
|
|
4710
|
+
ext_door_id?: string | undefined;
|
|
4701
4711
|
door_description?: string | undefined;
|
|
4712
|
+
room_name?: string | undefined;
|
|
4713
|
+
room_description?: string | undefined;
|
|
4702
4714
|
} | undefined;
|
|
4703
4715
|
}, {
|
|
4704
4716
|
display_name: string;
|
|
@@ -4748,9 +4760,12 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4748
4760
|
access_point_name: string;
|
|
4749
4761
|
} | undefined;
|
|
4750
4762
|
salto_space_metadata?: {
|
|
4751
|
-
door_name
|
|
4752
|
-
|
|
4763
|
+
door_name?: string | undefined;
|
|
4764
|
+
door_id?: string | undefined;
|
|
4765
|
+
ext_door_id?: string | undefined;
|
|
4753
4766
|
door_description?: string | undefined;
|
|
4767
|
+
room_name?: string | undefined;
|
|
4768
|
+
room_description?: string | undefined;
|
|
4754
4769
|
} | undefined;
|
|
4755
4770
|
}>;
|
|
4756
4771
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -14289,17 +14304,26 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14289
14304
|
pms_id?: string | undefined;
|
|
14290
14305
|
}>>;
|
|
14291
14306
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
14292
|
-
|
|
14293
|
-
|
|
14307
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
14308
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
14309
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
14294
14310
|
door_description: z.ZodOptional<z.ZodString>;
|
|
14311
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
14312
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
14295
14313
|
}, "strip", z.ZodTypeAny, {
|
|
14296
|
-
door_name
|
|
14297
|
-
|
|
14314
|
+
door_name?: string | undefined;
|
|
14315
|
+
door_id?: string | undefined;
|
|
14316
|
+
ext_door_id?: string | undefined;
|
|
14298
14317
|
door_description?: string | undefined;
|
|
14318
|
+
room_name?: string | undefined;
|
|
14319
|
+
room_description?: string | undefined;
|
|
14299
14320
|
}, {
|
|
14300
|
-
door_name
|
|
14301
|
-
|
|
14321
|
+
door_name?: string | undefined;
|
|
14322
|
+
door_id?: string | undefined;
|
|
14323
|
+
ext_door_id?: string | undefined;
|
|
14302
14324
|
door_description?: string | undefined;
|
|
14325
|
+
room_name?: string | undefined;
|
|
14326
|
+
room_description?: string | undefined;
|
|
14303
14327
|
}>>;
|
|
14304
14328
|
} & {
|
|
14305
14329
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14353,9 +14377,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14353
14377
|
access_point_name: string;
|
|
14354
14378
|
} | undefined;
|
|
14355
14379
|
salto_space_metadata?: {
|
|
14356
|
-
door_name
|
|
14357
|
-
|
|
14380
|
+
door_name?: string | undefined;
|
|
14381
|
+
door_id?: string | undefined;
|
|
14382
|
+
ext_door_id?: string | undefined;
|
|
14358
14383
|
door_description?: string | undefined;
|
|
14384
|
+
room_name?: string | undefined;
|
|
14385
|
+
room_description?: string | undefined;
|
|
14359
14386
|
} | undefined;
|
|
14360
14387
|
}, {
|
|
14361
14388
|
display_name: string;
|
|
@@ -14405,9 +14432,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
14405
14432
|
access_point_name: string;
|
|
14406
14433
|
} | undefined;
|
|
14407
14434
|
salto_space_metadata?: {
|
|
14408
|
-
door_name
|
|
14409
|
-
|
|
14435
|
+
door_name?: string | undefined;
|
|
14436
|
+
door_id?: string | undefined;
|
|
14437
|
+
ext_door_id?: string | undefined;
|
|
14410
14438
|
door_description?: string | undefined;
|
|
14439
|
+
room_name?: string | undefined;
|
|
14440
|
+
room_description?: string | undefined;
|
|
14411
14441
|
} | undefined;
|
|
14412
14442
|
}>, "many">>;
|
|
14413
14443
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15106,9 +15136,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15106
15136
|
access_point_name: string;
|
|
15107
15137
|
} | undefined;
|
|
15108
15138
|
salto_space_metadata?: {
|
|
15109
|
-
door_name
|
|
15110
|
-
|
|
15139
|
+
door_name?: string | undefined;
|
|
15140
|
+
door_id?: string | undefined;
|
|
15141
|
+
ext_door_id?: string | undefined;
|
|
15111
15142
|
door_description?: string | undefined;
|
|
15143
|
+
room_name?: string | undefined;
|
|
15144
|
+
room_description?: string | undefined;
|
|
15112
15145
|
} | undefined;
|
|
15113
15146
|
}[] | undefined;
|
|
15114
15147
|
}, {
|
|
@@ -15807,9 +15840,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
15807
15840
|
access_point_name: string;
|
|
15808
15841
|
} | undefined;
|
|
15809
15842
|
salto_space_metadata?: {
|
|
15810
|
-
door_name
|
|
15811
|
-
|
|
15843
|
+
door_name?: string | undefined;
|
|
15844
|
+
door_id?: string | undefined;
|
|
15845
|
+
ext_door_id?: string | undefined;
|
|
15812
15846
|
door_description?: string | undefined;
|
|
15847
|
+
room_name?: string | undefined;
|
|
15848
|
+
room_description?: string | undefined;
|
|
15813
15849
|
} | undefined;
|
|
15814
15850
|
}[] | undefined;
|
|
15815
15851
|
}>, z.ZodObject<{
|
|
@@ -19967,17 +20003,26 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
19967
20003
|
pms_id?: string | undefined;
|
|
19968
20004
|
}>>;
|
|
19969
20005
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
19970
|
-
|
|
19971
|
-
|
|
20006
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
20007
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
20008
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
19972
20009
|
door_description: z.ZodOptional<z.ZodString>;
|
|
20010
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
20011
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
19973
20012
|
}, "strip", z.ZodTypeAny, {
|
|
19974
|
-
door_name
|
|
19975
|
-
|
|
20013
|
+
door_name?: string | undefined;
|
|
20014
|
+
door_id?: string | undefined;
|
|
20015
|
+
ext_door_id?: string | undefined;
|
|
19976
20016
|
door_description?: string | undefined;
|
|
20017
|
+
room_name?: string | undefined;
|
|
20018
|
+
room_description?: string | undefined;
|
|
19977
20019
|
}, {
|
|
19978
|
-
door_name
|
|
19979
|
-
|
|
20020
|
+
door_name?: string | undefined;
|
|
20021
|
+
door_id?: string | undefined;
|
|
20022
|
+
ext_door_id?: string | undefined;
|
|
19980
20023
|
door_description?: string | undefined;
|
|
20024
|
+
room_name?: string | undefined;
|
|
20025
|
+
room_description?: string | undefined;
|
|
19981
20026
|
}>>;
|
|
19982
20027
|
} & {
|
|
19983
20028
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -20031,9 +20076,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20031
20076
|
access_point_name: string;
|
|
20032
20077
|
} | undefined;
|
|
20033
20078
|
salto_space_metadata?: {
|
|
20034
|
-
door_name
|
|
20035
|
-
|
|
20079
|
+
door_name?: string | undefined;
|
|
20080
|
+
door_id?: string | undefined;
|
|
20081
|
+
ext_door_id?: string | undefined;
|
|
20036
20082
|
door_description?: string | undefined;
|
|
20083
|
+
room_name?: string | undefined;
|
|
20084
|
+
room_description?: string | undefined;
|
|
20037
20085
|
} | undefined;
|
|
20038
20086
|
}, {
|
|
20039
20087
|
display_name: string;
|
|
@@ -20083,9 +20131,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20083
20131
|
access_point_name: string;
|
|
20084
20132
|
} | undefined;
|
|
20085
20133
|
salto_space_metadata?: {
|
|
20086
|
-
door_name
|
|
20087
|
-
|
|
20134
|
+
door_name?: string | undefined;
|
|
20135
|
+
door_id?: string | undefined;
|
|
20136
|
+
ext_door_id?: string | undefined;
|
|
20088
20137
|
door_description?: string | undefined;
|
|
20138
|
+
room_name?: string | undefined;
|
|
20139
|
+
room_description?: string | undefined;
|
|
20089
20140
|
} | undefined;
|
|
20090
20141
|
}>, "many">>;
|
|
20091
20142
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -20784,9 +20835,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
20784
20835
|
access_point_name: string;
|
|
20785
20836
|
} | undefined;
|
|
20786
20837
|
salto_space_metadata?: {
|
|
20787
|
-
door_name
|
|
20788
|
-
|
|
20838
|
+
door_name?: string | undefined;
|
|
20839
|
+
door_id?: string | undefined;
|
|
20840
|
+
ext_door_id?: string | undefined;
|
|
20789
20841
|
door_description?: string | undefined;
|
|
20842
|
+
room_name?: string | undefined;
|
|
20843
|
+
room_description?: string | undefined;
|
|
20790
20844
|
} | undefined;
|
|
20791
20845
|
}[] | undefined;
|
|
20792
20846
|
}, {
|
|
@@ -21485,9 +21539,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
21485
21539
|
access_point_name: string;
|
|
21486
21540
|
} | undefined;
|
|
21487
21541
|
salto_space_metadata?: {
|
|
21488
|
-
door_name
|
|
21489
|
-
|
|
21542
|
+
door_name?: string | undefined;
|
|
21543
|
+
door_id?: string | undefined;
|
|
21544
|
+
ext_door_id?: string | undefined;
|
|
21490
21545
|
door_description?: string | undefined;
|
|
21546
|
+
room_name?: string | undefined;
|
|
21547
|
+
room_description?: string | undefined;
|
|
21491
21548
|
} | undefined;
|
|
21492
21549
|
}[] | undefined;
|
|
21493
21550
|
}>, z.ZodObject<{
|
|
@@ -25645,17 +25702,26 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25645
25702
|
pms_id?: string | undefined;
|
|
25646
25703
|
}>>;
|
|
25647
25704
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
25648
|
-
|
|
25649
|
-
|
|
25705
|
+
ext_door_id: z.ZodOptional<z.ZodString>;
|
|
25706
|
+
door_id: z.ZodOptional<z.ZodString>;
|
|
25707
|
+
door_name: z.ZodOptional<z.ZodString>;
|
|
25650
25708
|
door_description: z.ZodOptional<z.ZodString>;
|
|
25709
|
+
room_name: z.ZodOptional<z.ZodString>;
|
|
25710
|
+
room_description: z.ZodOptional<z.ZodString>;
|
|
25651
25711
|
}, "strip", z.ZodTypeAny, {
|
|
25652
|
-
door_name
|
|
25653
|
-
|
|
25712
|
+
door_name?: string | undefined;
|
|
25713
|
+
door_id?: string | undefined;
|
|
25714
|
+
ext_door_id?: string | undefined;
|
|
25654
25715
|
door_description?: string | undefined;
|
|
25716
|
+
room_name?: string | undefined;
|
|
25717
|
+
room_description?: string | undefined;
|
|
25655
25718
|
}, {
|
|
25656
|
-
door_name
|
|
25657
|
-
|
|
25719
|
+
door_name?: string | undefined;
|
|
25720
|
+
door_id?: string | undefined;
|
|
25721
|
+
ext_door_id?: string | undefined;
|
|
25658
25722
|
door_description?: string | undefined;
|
|
25723
|
+
room_name?: string | undefined;
|
|
25724
|
+
room_description?: string | undefined;
|
|
25659
25725
|
}>>;
|
|
25660
25726
|
} & {
|
|
25661
25727
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25709,9 +25775,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25709
25775
|
access_point_name: string;
|
|
25710
25776
|
} | undefined;
|
|
25711
25777
|
salto_space_metadata?: {
|
|
25712
|
-
door_name
|
|
25713
|
-
|
|
25778
|
+
door_name?: string | undefined;
|
|
25779
|
+
door_id?: string | undefined;
|
|
25780
|
+
ext_door_id?: string | undefined;
|
|
25714
25781
|
door_description?: string | undefined;
|
|
25782
|
+
room_name?: string | undefined;
|
|
25783
|
+
room_description?: string | undefined;
|
|
25715
25784
|
} | undefined;
|
|
25716
25785
|
}, {
|
|
25717
25786
|
display_name: string;
|
|
@@ -25761,9 +25830,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
25761
25830
|
access_point_name: string;
|
|
25762
25831
|
} | undefined;
|
|
25763
25832
|
salto_space_metadata?: {
|
|
25764
|
-
door_name
|
|
25765
|
-
|
|
25833
|
+
door_name?: string | undefined;
|
|
25834
|
+
door_id?: string | undefined;
|
|
25835
|
+
ext_door_id?: string | undefined;
|
|
25766
25836
|
door_description?: string | undefined;
|
|
25837
|
+
room_name?: string | undefined;
|
|
25838
|
+
room_description?: string | undefined;
|
|
25767
25839
|
} | undefined;
|
|
25768
25840
|
}>, "many">>;
|
|
25769
25841
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26462,9 +26534,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
26462
26534
|
access_point_name: string;
|
|
26463
26535
|
} | undefined;
|
|
26464
26536
|
salto_space_metadata?: {
|
|
26465
|
-
door_name
|
|
26466
|
-
|
|
26537
|
+
door_name?: string | undefined;
|
|
26538
|
+
door_id?: string | undefined;
|
|
26539
|
+
ext_door_id?: string | undefined;
|
|
26467
26540
|
door_description?: string | undefined;
|
|
26541
|
+
room_name?: string | undefined;
|
|
26542
|
+
room_description?: string | undefined;
|
|
26468
26543
|
} | undefined;
|
|
26469
26544
|
}[] | undefined;
|
|
26470
26545
|
}, {
|
|
@@ -27163,9 +27238,12 @@ declare const batch: z.ZodUnion<[z.ZodObject<{
|
|
|
27163
27238
|
access_point_name: string;
|
|
27164
27239
|
} | undefined;
|
|
27165
27240
|
salto_space_metadata?: {
|
|
27166
|
-
door_name
|
|
27167
|
-
|
|
27241
|
+
door_name?: string | undefined;
|
|
27242
|
+
door_id?: string | undefined;
|
|
27243
|
+
ext_door_id?: string | undefined;
|
|
27168
27244
|
door_description?: string | undefined;
|
|
27245
|
+
room_name?: string | undefined;
|
|
27246
|
+
room_description?: string | undefined;
|
|
27169
27247
|
} | undefined;
|
|
27170
27248
|
}[] | undefined;
|
|
27171
27249
|
}>]>;
|
|
@@ -40595,16 +40673,28 @@ declare const _default: {
|
|
|
40595
40673
|
description: string;
|
|
40596
40674
|
type: string;
|
|
40597
40675
|
};
|
|
40676
|
+
door_id: {
|
|
40677
|
+
description: string;
|
|
40678
|
+
type: string;
|
|
40679
|
+
};
|
|
40598
40680
|
door_name: {
|
|
40599
40681
|
description: string;
|
|
40600
40682
|
type: string;
|
|
40601
40683
|
};
|
|
40602
40684
|
ext_door_id: {
|
|
40685
|
+
deprecated: boolean;
|
|
40686
|
+
type: string;
|
|
40687
|
+
'x-deprecated': string;
|
|
40688
|
+
};
|
|
40689
|
+
room_description: {
|
|
40690
|
+
description: string;
|
|
40691
|
+
type: string;
|
|
40692
|
+
};
|
|
40693
|
+
room_name: {
|
|
40603
40694
|
description: string;
|
|
40604
40695
|
type: string;
|
|
40605
40696
|
};
|
|
40606
40697
|
};
|
|
40607
|
-
required: string[];
|
|
40608
40698
|
type: string;
|
|
40609
40699
|
};
|
|
40610
40700
|
visionline_metadata: {
|
|
@@ -50139,16 +50229,28 @@ declare const _default: {
|
|
|
50139
50229
|
description: string;
|
|
50140
50230
|
type: string;
|
|
50141
50231
|
};
|
|
50232
|
+
door_id: {
|
|
50233
|
+
description: string;
|
|
50234
|
+
type: string;
|
|
50235
|
+
};
|
|
50142
50236
|
door_name: {
|
|
50143
50237
|
description: string;
|
|
50144
50238
|
type: string;
|
|
50145
50239
|
};
|
|
50146
50240
|
ext_door_id: {
|
|
50241
|
+
deprecated: boolean;
|
|
50242
|
+
type: string;
|
|
50243
|
+
'x-deprecated': string;
|
|
50244
|
+
};
|
|
50245
|
+
room_description: {
|
|
50246
|
+
description: string;
|
|
50247
|
+
type: string;
|
|
50248
|
+
};
|
|
50249
|
+
room_name: {
|
|
50147
50250
|
description: string;
|
|
50148
50251
|
type: string;
|
|
50149
50252
|
};
|
|
50150
50253
|
};
|
|
50151
|
-
required: string[];
|
|
50152
50254
|
type: string;
|
|
50153
50255
|
};
|
|
50154
50256
|
visionline_metadata: {
|
|
@@ -100436,12 +100538,19 @@ interface Routes {
|
|
|
100436
100538
|
} | undefined;
|
|
100437
100539
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
100438
100540
|
salto_space_metadata?: {
|
|
100541
|
+
/**
|
|
100542
|
+
* @deprecated use door_id. */
|
|
100543
|
+
ext_door_id?: string | undefined;
|
|
100544
|
+
/** Door ID in the Salto Space access system. */
|
|
100545
|
+
door_id?: string | undefined;
|
|
100439
100546
|
/** Name of the door in the Salto Space access system. */
|
|
100440
|
-
door_name
|
|
100441
|
-
/** External door ID in the Salto Space access system. */
|
|
100442
|
-
ext_door_id: string;
|
|
100547
|
+
door_name?: string | undefined;
|
|
100443
100548
|
/** Description of the door in the Salto Space access system. */
|
|
100444
100549
|
door_description?: string | undefined;
|
|
100550
|
+
/** Name of the room in the Salto Space access system. */
|
|
100551
|
+
room_name?: string | undefined;
|
|
100552
|
+
/** Description of the room in the Salto Space access system. */
|
|
100553
|
+
room_description?: string | undefined;
|
|
100445
100554
|
} | undefined;
|
|
100446
100555
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
100447
100556
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -101712,12 +101821,19 @@ interface Routes {
|
|
|
101712
101821
|
} | undefined;
|
|
101713
101822
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
101714
101823
|
salto_space_metadata?: {
|
|
101824
|
+
/**
|
|
101825
|
+
* @deprecated use door_id. */
|
|
101826
|
+
ext_door_id?: string | undefined;
|
|
101827
|
+
/** Door ID in the Salto Space access system. */
|
|
101828
|
+
door_id?: string | undefined;
|
|
101715
101829
|
/** Name of the door in the Salto Space access system. */
|
|
101716
|
-
door_name
|
|
101717
|
-
/** External door ID in the Salto Space access system. */
|
|
101718
|
-
ext_door_id: string;
|
|
101830
|
+
door_name?: string | undefined;
|
|
101719
101831
|
/** Description of the door in the Salto Space access system. */
|
|
101720
101832
|
door_description?: string | undefined;
|
|
101833
|
+
/** Name of the room in the Salto Space access system. */
|
|
101834
|
+
room_name?: string | undefined;
|
|
101835
|
+
/** Description of the room in the Salto Space access system. */
|
|
101836
|
+
room_description?: string | undefined;
|
|
101721
101837
|
} | undefined;
|
|
101722
101838
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
101723
101839
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -108501,12 +108617,19 @@ interface Routes {
|
|
|
108501
108617
|
} | undefined;
|
|
108502
108618
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
108503
108619
|
salto_space_metadata?: {
|
|
108620
|
+
/**
|
|
108621
|
+
* @deprecated use door_id. */
|
|
108622
|
+
ext_door_id?: string | undefined;
|
|
108623
|
+
/** Door ID in the Salto Space access system. */
|
|
108624
|
+
door_id?: string | undefined;
|
|
108504
108625
|
/** Name of the door in the Salto Space access system. */
|
|
108505
|
-
door_name
|
|
108506
|
-
/** External door ID in the Salto Space access system. */
|
|
108507
|
-
ext_door_id: string;
|
|
108626
|
+
door_name?: string | undefined;
|
|
108508
108627
|
/** Description of the door in the Salto Space access system. */
|
|
108509
108628
|
door_description?: string | undefined;
|
|
108629
|
+
/** Name of the room in the Salto Space access system. */
|
|
108630
|
+
room_name?: string | undefined;
|
|
108631
|
+
/** Description of the room in the Salto Space access system. */
|
|
108632
|
+
room_description?: string | undefined;
|
|
108510
108633
|
} | undefined;
|
|
108511
108634
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
108512
108635
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -109826,12 +109949,19 @@ interface Routes {
|
|
|
109826
109949
|
} | undefined;
|
|
109827
109950
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
109828
109951
|
salto_space_metadata?: {
|
|
109952
|
+
/**
|
|
109953
|
+
* @deprecated use door_id. */
|
|
109954
|
+
ext_door_id?: string | undefined;
|
|
109955
|
+
/** Door ID in the Salto Space access system. */
|
|
109956
|
+
door_id?: string | undefined;
|
|
109829
109957
|
/** Name of the door in the Salto Space access system. */
|
|
109830
|
-
door_name
|
|
109831
|
-
/** External door ID in the Salto Space access system. */
|
|
109832
|
-
ext_door_id: string;
|
|
109958
|
+
door_name?: string | undefined;
|
|
109833
109959
|
/** Description of the door in the Salto Space access system. */
|
|
109834
109960
|
door_description?: string | undefined;
|
|
109961
|
+
/** Name of the room in the Salto Space access system. */
|
|
109962
|
+
room_name?: string | undefined;
|
|
109963
|
+
/** Description of the room in the Salto Space access system. */
|
|
109964
|
+
room_description?: string | undefined;
|
|
109835
109965
|
} | undefined;
|
|
109836
109966
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
109837
109967
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -113241,12 +113371,19 @@ interface Routes {
|
|
|
113241
113371
|
} | undefined;
|
|
113242
113372
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
113243
113373
|
salto_space_metadata?: {
|
|
113374
|
+
/**
|
|
113375
|
+
* @deprecated use door_id. */
|
|
113376
|
+
ext_door_id?: string | undefined;
|
|
113377
|
+
/** Door ID in the Salto Space access system. */
|
|
113378
|
+
door_id?: string | undefined;
|
|
113244
113379
|
/** Name of the door in the Salto Space access system. */
|
|
113245
|
-
door_name
|
|
113246
|
-
/** External door ID in the Salto Space access system. */
|
|
113247
|
-
ext_door_id: string;
|
|
113380
|
+
door_name?: string | undefined;
|
|
113248
113381
|
/** Description of the door in the Salto Space access system. */
|
|
113249
113382
|
door_description?: string | undefined;
|
|
113383
|
+
/** Name of the room in the Salto Space access system. */
|
|
113384
|
+
room_name?: string | undefined;
|
|
113385
|
+
/** Description of the room in the Salto Space access system. */
|
|
113386
|
+
room_description?: string | undefined;
|
|
113250
113387
|
} | undefined;
|
|
113251
113388
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
113252
113389
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -113383,12 +113520,19 @@ interface Routes {
|
|
|
113383
113520
|
} | undefined;
|
|
113384
113521
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
113385
113522
|
salto_space_metadata?: {
|
|
113523
|
+
/**
|
|
113524
|
+
* @deprecated use door_id. */
|
|
113525
|
+
ext_door_id?: string | undefined;
|
|
113526
|
+
/** Door ID in the Salto Space access system. */
|
|
113527
|
+
door_id?: string | undefined;
|
|
113386
113528
|
/** Name of the door in the Salto Space access system. */
|
|
113387
|
-
door_name
|
|
113388
|
-
/** External door ID in the Salto Space access system. */
|
|
113389
|
-
ext_door_id: string;
|
|
113529
|
+
door_name?: string | undefined;
|
|
113390
113530
|
/** Description of the door in the Salto Space access system. */
|
|
113391
113531
|
door_description?: string | undefined;
|
|
113532
|
+
/** Name of the room in the Salto Space access system. */
|
|
113533
|
+
room_name?: string | undefined;
|
|
113534
|
+
/** Description of the room in the Salto Space access system. */
|
|
113535
|
+
room_description?: string | undefined;
|
|
113392
113536
|
} | undefined;
|
|
113393
113537
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
113394
113538
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -114790,12 +114934,19 @@ interface Routes {
|
|
|
114790
114934
|
} | undefined;
|
|
114791
114935
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
114792
114936
|
salto_space_metadata?: {
|
|
114937
|
+
/**
|
|
114938
|
+
* @deprecated use door_id. */
|
|
114939
|
+
ext_door_id?: string | undefined;
|
|
114940
|
+
/** Door ID in the Salto Space access system. */
|
|
114941
|
+
door_id?: string | undefined;
|
|
114793
114942
|
/** Name of the door in the Salto Space access system. */
|
|
114794
|
-
door_name
|
|
114795
|
-
/** External door ID in the Salto Space access system. */
|
|
114796
|
-
ext_door_id: string;
|
|
114943
|
+
door_name?: string | undefined;
|
|
114797
114944
|
/** Description of the door in the Salto Space access system. */
|
|
114798
114945
|
door_description?: string | undefined;
|
|
114946
|
+
/** Name of the room in the Salto Space access system. */
|
|
114947
|
+
room_name?: string | undefined;
|
|
114948
|
+
/** Description of the room in the Salto Space access system. */
|
|
114949
|
+
room_description?: string | undefined;
|
|
114799
114950
|
} | undefined;
|
|
114800
114951
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
114801
114952
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -143299,12 +143450,19 @@ interface Routes {
|
|
|
143299
143450
|
} | undefined;
|
|
143300
143451
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
143301
143452
|
salto_space_metadata?: {
|
|
143453
|
+
/**
|
|
143454
|
+
* @deprecated use door_id. */
|
|
143455
|
+
ext_door_id?: string | undefined;
|
|
143456
|
+
/** Door ID in the Salto Space access system. */
|
|
143457
|
+
door_id?: string | undefined;
|
|
143302
143458
|
/** Name of the door in the Salto Space access system. */
|
|
143303
|
-
door_name
|
|
143304
|
-
/** External door ID in the Salto Space access system. */
|
|
143305
|
-
ext_door_id: string;
|
|
143459
|
+
door_name?: string | undefined;
|
|
143306
143460
|
/** Description of the door in the Salto Space access system. */
|
|
143307
143461
|
door_description?: string | undefined;
|
|
143462
|
+
/** Name of the room in the Salto Space access system. */
|
|
143463
|
+
room_name?: string | undefined;
|
|
143464
|
+
/** Description of the room in the Salto Space access system. */
|
|
143465
|
+
room_description?: string | undefined;
|
|
143308
143466
|
} | undefined;
|
|
143309
143467
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
143310
143468
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -144735,12 +144893,19 @@ interface Routes {
|
|
|
144735
144893
|
} | undefined;
|
|
144736
144894
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
144737
144895
|
salto_space_metadata?: {
|
|
144896
|
+
/**
|
|
144897
|
+
* @deprecated use door_id. */
|
|
144898
|
+
ext_door_id?: string | undefined;
|
|
144899
|
+
/** Door ID in the Salto Space access system. */
|
|
144900
|
+
door_id?: string | undefined;
|
|
144738
144901
|
/** Name of the door in the Salto Space access system. */
|
|
144739
|
-
door_name
|
|
144740
|
-
/** External door ID in the Salto Space access system. */
|
|
144741
|
-
ext_door_id: string;
|
|
144902
|
+
door_name?: string | undefined;
|
|
144742
144903
|
/** Description of the door in the Salto Space access system. */
|
|
144743
144904
|
door_description?: string | undefined;
|
|
144905
|
+
/** Name of the room in the Salto Space access system. */
|
|
144906
|
+
room_name?: string | undefined;
|
|
144907
|
+
/** Description of the room in the Salto Space access system. */
|
|
144908
|
+
room_description?: string | undefined;
|
|
144744
144909
|
} | undefined;
|
|
144745
144910
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
144746
144911
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
@@ -146011,12 +146176,19 @@ interface Routes {
|
|
|
146011
146176
|
} | undefined;
|
|
146012
146177
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
146013
146178
|
salto_space_metadata?: {
|
|
146179
|
+
/**
|
|
146180
|
+
* @deprecated use door_id. */
|
|
146181
|
+
ext_door_id?: string | undefined;
|
|
146182
|
+
/** Door ID in the Salto Space access system. */
|
|
146183
|
+
door_id?: string | undefined;
|
|
146014
146184
|
/** Name of the door in the Salto Space access system. */
|
|
146015
|
-
door_name
|
|
146016
|
-
/** External door ID in the Salto Space access system. */
|
|
146017
|
-
ext_door_id: string;
|
|
146185
|
+
door_name?: string | undefined;
|
|
146018
146186
|
/** Description of the door in the Salto Space access system. */
|
|
146019
146187
|
door_description?: string | undefined;
|
|
146188
|
+
/** Name of the room in the Salto Space access system. */
|
|
146189
|
+
room_name?: string | undefined;
|
|
146190
|
+
/** Description of the room in the Salto Space access system. */
|
|
146191
|
+
room_description?: string | undefined;
|
|
146020
146192
|
} | undefined;
|
|
146021
146193
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
146022
146194
|
can_unlock_with_mobile_key?: boolean | undefined;
|