@seamapi/types 1.603.0 → 1.605.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 +144 -17
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +300 -94
- package/dist/index.cjs +144 -17
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +19 -19
- package/lib/seam/connect/models/acs/metadata/hotek.d.ts +9 -9
- package/lib/seam/connect/models/acs/metadata/hotek.js +3 -2
- 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 +150 -135
- package/lib/seam/connect/models/phones/phone-session.d.ts +78 -78
- package/lib/seam/connect/openapi.d.ts +154 -8
- package/lib/seam/connect/openapi.js +140 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +92 -40
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +4 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +3 -2
- package/src/lib/seam/connect/openapi.ts +145 -14
- package/src/lib/seam/connect/route-types.ts +96 -40
package/dist/connect.d.cts
CHANGED
|
@@ -3548,6 +3548,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3548
3548
|
workspace_id: z.ZodString;
|
|
3549
3549
|
access_grant_id: z.ZodString;
|
|
3550
3550
|
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
3551
|
+
reservation_key: z.ZodOptional<z.ZodString>;
|
|
3551
3552
|
user_identity_id: z.ZodString;
|
|
3552
3553
|
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
3553
3554
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3618,6 +3619,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3618
3619
|
}[];
|
|
3619
3620
|
access_method_ids: string[];
|
|
3620
3621
|
access_grant_key?: string | undefined;
|
|
3622
|
+
reservation_key?: string | undefined;
|
|
3621
3623
|
client_session_token?: string | undefined;
|
|
3622
3624
|
instant_key_url?: string | undefined;
|
|
3623
3625
|
customization_profile_id?: string | undefined;
|
|
@@ -3646,6 +3648,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3646
3648
|
}[];
|
|
3647
3649
|
access_method_ids: string[];
|
|
3648
3650
|
access_grant_key?: string | undefined;
|
|
3651
|
+
reservation_key?: string | undefined;
|
|
3649
3652
|
client_session_token?: string | undefined;
|
|
3650
3653
|
instant_key_url?: string | undefined;
|
|
3651
3654
|
customization_profile_id?: string | undefined;
|
|
@@ -4554,17 +4557,17 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4554
4557
|
accessibility_type: string;
|
|
4555
4558
|
}>>;
|
|
4556
4559
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
4557
|
-
room_number: z.ZodString
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
+
room_number: z.ZodOptional<z.ZodString>;
|
|
4561
|
+
common_area_number: z.ZodOptional<z.ZodString>;
|
|
4562
|
+
common_area_name: z.ZodOptional<z.ZodString>;
|
|
4560
4563
|
}, "strip", z.ZodTypeAny, {
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
+
room_number?: string | undefined;
|
|
4565
|
+
common_area_number?: string | undefined;
|
|
4566
|
+
common_area_name?: string | undefined;
|
|
4564
4567
|
}, {
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
+
room_number?: string | undefined;
|
|
4569
|
+
common_area_number?: string | undefined;
|
|
4570
|
+
common_area_name?: string | undefined;
|
|
4568
4571
|
}>>;
|
|
4569
4572
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
4570
4573
|
door_name: z.ZodString;
|
|
@@ -4581,14 +4584,14 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4581
4584
|
}>, "many">>;
|
|
4582
4585
|
}, "strip", z.ZodTypeAny, {
|
|
4583
4586
|
door_name: string;
|
|
4584
|
-
door_category: "
|
|
4587
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
4585
4588
|
profiles?: {
|
|
4586
4589
|
visionline_door_profile_id: string;
|
|
4587
4590
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
4588
4591
|
}[] | undefined;
|
|
4589
4592
|
}, {
|
|
4590
4593
|
door_name: string;
|
|
4591
|
-
door_category: "
|
|
4594
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
4592
4595
|
profiles?: {
|
|
4593
4596
|
visionline_door_profile_id: string;
|
|
4594
4597
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -4704,7 +4707,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4704
4707
|
} | undefined;
|
|
4705
4708
|
visionline_metadata?: {
|
|
4706
4709
|
door_name: string;
|
|
4707
|
-
door_category: "
|
|
4710
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
4708
4711
|
profiles?: {
|
|
4709
4712
|
visionline_door_profile_id: string;
|
|
4710
4713
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -4727,9 +4730,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4727
4730
|
accessibility_type: string;
|
|
4728
4731
|
} | undefined;
|
|
4729
4732
|
hotek_metadata?: {
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
+
room_number?: string | undefined;
|
|
4734
|
+
common_area_number?: string | undefined;
|
|
4735
|
+
common_area_name?: string | undefined;
|
|
4733
4736
|
} | undefined;
|
|
4734
4737
|
dormakaba_community_metadata?: {
|
|
4735
4738
|
access_point_profile: string;
|
|
@@ -4768,7 +4771,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4768
4771
|
} | undefined;
|
|
4769
4772
|
visionline_metadata?: {
|
|
4770
4773
|
door_name: string;
|
|
4771
|
-
door_category: "
|
|
4774
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
4772
4775
|
profiles?: {
|
|
4773
4776
|
visionline_door_profile_id: string;
|
|
4774
4777
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -4791,9 +4794,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4791
4794
|
accessibility_type: string;
|
|
4792
4795
|
} | undefined;
|
|
4793
4796
|
hotek_metadata?: {
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
+
room_number?: string | undefined;
|
|
4798
|
+
common_area_number?: string | undefined;
|
|
4799
|
+
common_area_name?: string | undefined;
|
|
4797
4800
|
} | undefined;
|
|
4798
4801
|
dormakaba_community_metadata?: {
|
|
4799
4802
|
access_point_profile: string;
|
|
@@ -14644,17 +14647,17 @@ declare const batch: z.ZodObject<{
|
|
|
14644
14647
|
accessibility_type: string;
|
|
14645
14648
|
}>>;
|
|
14646
14649
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
14647
|
-
room_number: z.ZodString
|
|
14648
|
-
|
|
14649
|
-
|
|
14650
|
+
room_number: z.ZodOptional<z.ZodString>;
|
|
14651
|
+
common_area_number: z.ZodOptional<z.ZodString>;
|
|
14652
|
+
common_area_name: z.ZodOptional<z.ZodString>;
|
|
14650
14653
|
}, "strip", z.ZodTypeAny, {
|
|
14651
|
-
|
|
14652
|
-
|
|
14653
|
-
|
|
14654
|
+
room_number?: string | undefined;
|
|
14655
|
+
common_area_number?: string | undefined;
|
|
14656
|
+
common_area_name?: string | undefined;
|
|
14654
14657
|
}, {
|
|
14655
|
-
|
|
14656
|
-
|
|
14657
|
-
|
|
14658
|
+
room_number?: string | undefined;
|
|
14659
|
+
common_area_number?: string | undefined;
|
|
14660
|
+
common_area_name?: string | undefined;
|
|
14658
14661
|
}>>;
|
|
14659
14662
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
14660
14663
|
door_name: z.ZodString;
|
|
@@ -14671,14 +14674,14 @@ declare const batch: z.ZodObject<{
|
|
|
14671
14674
|
}>, "many">>;
|
|
14672
14675
|
}, "strip", z.ZodTypeAny, {
|
|
14673
14676
|
door_name: string;
|
|
14674
|
-
door_category: "
|
|
14677
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
14675
14678
|
profiles?: {
|
|
14676
14679
|
visionline_door_profile_id: string;
|
|
14677
14680
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
14678
14681
|
}[] | undefined;
|
|
14679
14682
|
}, {
|
|
14680
14683
|
door_name: string;
|
|
14681
|
-
door_category: "
|
|
14684
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
14682
14685
|
profiles?: {
|
|
14683
14686
|
visionline_door_profile_id: string;
|
|
14684
14687
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -14794,7 +14797,7 @@ declare const batch: z.ZodObject<{
|
|
|
14794
14797
|
} | undefined;
|
|
14795
14798
|
visionline_metadata?: {
|
|
14796
14799
|
door_name: string;
|
|
14797
|
-
door_category: "
|
|
14800
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
14798
14801
|
profiles?: {
|
|
14799
14802
|
visionline_door_profile_id: string;
|
|
14800
14803
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -14817,9 +14820,9 @@ declare const batch: z.ZodObject<{
|
|
|
14817
14820
|
accessibility_type: string;
|
|
14818
14821
|
} | undefined;
|
|
14819
14822
|
hotek_metadata?: {
|
|
14820
|
-
|
|
14821
|
-
|
|
14822
|
-
|
|
14823
|
+
room_number?: string | undefined;
|
|
14824
|
+
common_area_number?: string | undefined;
|
|
14825
|
+
common_area_name?: string | undefined;
|
|
14823
14826
|
} | undefined;
|
|
14824
14827
|
dormakaba_community_metadata?: {
|
|
14825
14828
|
access_point_profile: string;
|
|
@@ -14858,7 +14861,7 @@ declare const batch: z.ZodObject<{
|
|
|
14858
14861
|
} | undefined;
|
|
14859
14862
|
visionline_metadata?: {
|
|
14860
14863
|
door_name: string;
|
|
14861
|
-
door_category: "
|
|
14864
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
14862
14865
|
profiles?: {
|
|
14863
14866
|
visionline_door_profile_id: string;
|
|
14864
14867
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -14881,9 +14884,9 @@ declare const batch: z.ZodObject<{
|
|
|
14881
14884
|
accessibility_type: string;
|
|
14882
14885
|
} | undefined;
|
|
14883
14886
|
hotek_metadata?: {
|
|
14884
|
-
|
|
14885
|
-
|
|
14886
|
-
|
|
14887
|
+
room_number?: string | undefined;
|
|
14888
|
+
common_area_number?: string | undefined;
|
|
14889
|
+
common_area_name?: string | undefined;
|
|
14887
14890
|
} | undefined;
|
|
14888
14891
|
dormakaba_community_metadata?: {
|
|
14889
14892
|
access_point_profile: string;
|
|
@@ -24698,6 +24701,7 @@ declare const batch: z.ZodObject<{
|
|
|
24698
24701
|
workspace_id: z.ZodString;
|
|
24699
24702
|
access_grant_id: z.ZodString;
|
|
24700
24703
|
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
24704
|
+
reservation_key: z.ZodOptional<z.ZodString>;
|
|
24701
24705
|
user_identity_id: z.ZodString;
|
|
24702
24706
|
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
24703
24707
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -24768,6 +24772,7 @@ declare const batch: z.ZodObject<{
|
|
|
24768
24772
|
}[];
|
|
24769
24773
|
access_method_ids: string[];
|
|
24770
24774
|
access_grant_key?: string | undefined;
|
|
24775
|
+
reservation_key?: string | undefined;
|
|
24771
24776
|
client_session_token?: string | undefined;
|
|
24772
24777
|
instant_key_url?: string | undefined;
|
|
24773
24778
|
customization_profile_id?: string | undefined;
|
|
@@ -24796,6 +24801,7 @@ declare const batch: z.ZodObject<{
|
|
|
24796
24801
|
}[];
|
|
24797
24802
|
access_method_ids: string[];
|
|
24798
24803
|
access_grant_key?: string | undefined;
|
|
24804
|
+
reservation_key?: string | undefined;
|
|
24799
24805
|
client_session_token?: string | undefined;
|
|
24800
24806
|
instant_key_url?: string | undefined;
|
|
24801
24807
|
customization_profile_id?: string | undefined;
|
|
@@ -31689,7 +31695,7 @@ declare const batch: z.ZodObject<{
|
|
|
31689
31695
|
} | undefined;
|
|
31690
31696
|
visionline_metadata?: {
|
|
31691
31697
|
door_name: string;
|
|
31692
|
-
door_category: "
|
|
31698
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
31693
31699
|
profiles?: {
|
|
31694
31700
|
visionline_door_profile_id: string;
|
|
31695
31701
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -31712,9 +31718,9 @@ declare const batch: z.ZodObject<{
|
|
|
31712
31718
|
accessibility_type: string;
|
|
31713
31719
|
} | undefined;
|
|
31714
31720
|
hotek_metadata?: {
|
|
31715
|
-
|
|
31716
|
-
|
|
31717
|
-
|
|
31721
|
+
room_number?: string | undefined;
|
|
31722
|
+
common_area_number?: string | undefined;
|
|
31723
|
+
common_area_name?: string | undefined;
|
|
31718
31724
|
} | undefined;
|
|
31719
31725
|
dormakaba_community_metadata?: {
|
|
31720
31726
|
access_point_profile: string;
|
|
@@ -31822,6 +31828,7 @@ declare const batch: z.ZodObject<{
|
|
|
31822
31828
|
}[];
|
|
31823
31829
|
access_method_ids: string[];
|
|
31824
31830
|
access_grant_key?: string | undefined;
|
|
31831
|
+
reservation_key?: string | undefined;
|
|
31825
31832
|
client_session_token?: string | undefined;
|
|
31826
31833
|
instant_key_url?: string | undefined;
|
|
31827
31834
|
customization_profile_id?: string | undefined;
|
|
@@ -35598,7 +35605,7 @@ declare const batch: z.ZodObject<{
|
|
|
35598
35605
|
} | undefined;
|
|
35599
35606
|
visionline_metadata?: {
|
|
35600
35607
|
door_name: string;
|
|
35601
|
-
door_category: "
|
|
35608
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
35602
35609
|
profiles?: {
|
|
35603
35610
|
visionline_door_profile_id: string;
|
|
35604
35611
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -35621,9 +35628,9 @@ declare const batch: z.ZodObject<{
|
|
|
35621
35628
|
accessibility_type: string;
|
|
35622
35629
|
} | undefined;
|
|
35623
35630
|
hotek_metadata?: {
|
|
35624
|
-
|
|
35625
|
-
|
|
35626
|
-
|
|
35631
|
+
room_number?: string | undefined;
|
|
35632
|
+
common_area_number?: string | undefined;
|
|
35633
|
+
common_area_name?: string | undefined;
|
|
35627
35634
|
} | undefined;
|
|
35628
35635
|
dormakaba_community_metadata?: {
|
|
35629
35636
|
access_point_profile: string;
|
|
@@ -35731,6 +35738,7 @@ declare const batch: z.ZodObject<{
|
|
|
35731
35738
|
}[];
|
|
35732
35739
|
access_method_ids: string[];
|
|
35733
35740
|
access_grant_key?: string | undefined;
|
|
35741
|
+
reservation_key?: string | undefined;
|
|
35734
35742
|
client_session_token?: string | undefined;
|
|
35735
35743
|
instant_key_url?: string | undefined;
|
|
35736
35744
|
customization_profile_id?: string | undefined;
|
|
@@ -51967,6 +51975,10 @@ declare const _default: {
|
|
|
51967
51975
|
};
|
|
51968
51976
|
type: string;
|
|
51969
51977
|
};
|
|
51978
|
+
reservation_key: {
|
|
51979
|
+
description: string;
|
|
51980
|
+
type: string;
|
|
51981
|
+
};
|
|
51970
51982
|
space_ids: {
|
|
51971
51983
|
description: string;
|
|
51972
51984
|
items: {
|
|
@@ -52710,13 +52722,12 @@ declare const _default: {
|
|
|
52710
52722
|
hotek_metadata: {
|
|
52711
52723
|
description: string;
|
|
52712
52724
|
properties: {
|
|
52713
|
-
|
|
52725
|
+
common_area_name: {
|
|
52714
52726
|
description: string;
|
|
52715
52727
|
type: string;
|
|
52716
52728
|
};
|
|
52717
|
-
|
|
52729
|
+
common_area_number: {
|
|
52718
52730
|
description: string;
|
|
52719
|
-
enum: string[];
|
|
52720
52731
|
type: string;
|
|
52721
52732
|
};
|
|
52722
52733
|
room_number: {
|
|
@@ -52724,7 +52735,6 @@ declare const _default: {
|
|
|
52724
52735
|
type: string;
|
|
52725
52736
|
};
|
|
52726
52737
|
};
|
|
52727
|
-
required: string[];
|
|
52728
52738
|
type: string;
|
|
52729
52739
|
};
|
|
52730
52740
|
latch_metadata: {
|
|
@@ -63072,13 +63082,12 @@ declare const _default: {
|
|
|
63072
63082
|
hotek_metadata: {
|
|
63073
63083
|
description: string;
|
|
63074
63084
|
properties: {
|
|
63075
|
-
|
|
63085
|
+
common_area_name: {
|
|
63076
63086
|
description: string;
|
|
63077
63087
|
type: string;
|
|
63078
63088
|
};
|
|
63079
|
-
|
|
63089
|
+
common_area_number: {
|
|
63080
63090
|
description: string;
|
|
63081
|
-
enum: string[];
|
|
63082
63091
|
type: string;
|
|
63083
63092
|
};
|
|
63084
63093
|
room_number: {
|
|
@@ -63086,7 +63095,6 @@ declare const _default: {
|
|
|
63086
63095
|
type: string;
|
|
63087
63096
|
};
|
|
63088
63097
|
};
|
|
63089
|
-
required: string[];
|
|
63090
63098
|
type: string;
|
|
63091
63099
|
};
|
|
63092
63100
|
latch_metadata: {
|
|
@@ -69140,6 +69148,10 @@ declare const _default: {
|
|
|
69140
69148
|
};
|
|
69141
69149
|
type: string;
|
|
69142
69150
|
};
|
|
69151
|
+
reservation_key: {
|
|
69152
|
+
description: string;
|
|
69153
|
+
type: string;
|
|
69154
|
+
};
|
|
69143
69155
|
space_ids: {
|
|
69144
69156
|
description: string;
|
|
69145
69157
|
items: {
|
|
@@ -70196,6 +70208,10 @@ declare const _default: {
|
|
|
70196
70208
|
};
|
|
70197
70209
|
type: string;
|
|
70198
70210
|
};
|
|
70211
|
+
reservation_key: {
|
|
70212
|
+
description: string;
|
|
70213
|
+
type: string;
|
|
70214
|
+
};
|
|
70199
70215
|
space_ids: {
|
|
70200
70216
|
description: string;
|
|
70201
70217
|
items: {
|
|
@@ -70414,6 +70430,10 @@ declare const _default: {
|
|
|
70414
70430
|
};
|
|
70415
70431
|
type: string;
|
|
70416
70432
|
};
|
|
70433
|
+
reservation_key: {
|
|
70434
|
+
description: string;
|
|
70435
|
+
type: string;
|
|
70436
|
+
};
|
|
70417
70437
|
space_ids: {
|
|
70418
70438
|
description: string;
|
|
70419
70439
|
items: {
|
|
@@ -70627,6 +70647,10 @@ declare const _default: {
|
|
|
70627
70647
|
};
|
|
70628
70648
|
type: string;
|
|
70629
70649
|
};
|
|
70650
|
+
reservation_key: {
|
|
70651
|
+
description: string;
|
|
70652
|
+
type: string;
|
|
70653
|
+
};
|
|
70630
70654
|
space_ids: {
|
|
70631
70655
|
description: string;
|
|
70632
70656
|
items: {
|
|
@@ -70857,6 +70881,10 @@ declare const _default: {
|
|
|
70857
70881
|
};
|
|
70858
70882
|
type: string;
|
|
70859
70883
|
};
|
|
70884
|
+
reservation_key: {
|
|
70885
|
+
description: string;
|
|
70886
|
+
type: string;
|
|
70887
|
+
};
|
|
70860
70888
|
space_ids: {
|
|
70861
70889
|
description: string;
|
|
70862
70890
|
items: {
|
|
@@ -77998,6 +78026,132 @@ declare const _default: {
|
|
|
77998
78026
|
'x-title': string;
|
|
77999
78027
|
};
|
|
78000
78028
|
};
|
|
78029
|
+
'/acs/systems/report_devices': {
|
|
78030
|
+
post: {
|
|
78031
|
+
description: string;
|
|
78032
|
+
operationId: string;
|
|
78033
|
+
requestBody: {
|
|
78034
|
+
content: {
|
|
78035
|
+
'application/json': {
|
|
78036
|
+
schema: {
|
|
78037
|
+
properties: {
|
|
78038
|
+
acs_encoders: {
|
|
78039
|
+
default: never[];
|
|
78040
|
+
description: string;
|
|
78041
|
+
items: {
|
|
78042
|
+
properties: {
|
|
78043
|
+
hotek_metadata: {
|
|
78044
|
+
properties: {
|
|
78045
|
+
encoder_number: {
|
|
78046
|
+
description: string;
|
|
78047
|
+
type: string;
|
|
78048
|
+
};
|
|
78049
|
+
};
|
|
78050
|
+
required: string[];
|
|
78051
|
+
type: string;
|
|
78052
|
+
};
|
|
78053
|
+
is_removed: {
|
|
78054
|
+
default: boolean;
|
|
78055
|
+
description: string;
|
|
78056
|
+
type: string;
|
|
78057
|
+
};
|
|
78058
|
+
};
|
|
78059
|
+
required: string[];
|
|
78060
|
+
type: string;
|
|
78061
|
+
};
|
|
78062
|
+
type: string;
|
|
78063
|
+
};
|
|
78064
|
+
acs_entrances: {
|
|
78065
|
+
default: never[];
|
|
78066
|
+
description: string;
|
|
78067
|
+
items: {
|
|
78068
|
+
properties: {
|
|
78069
|
+
hotek_metadata: {
|
|
78070
|
+
description: string;
|
|
78071
|
+
properties: {
|
|
78072
|
+
common_area_name: {
|
|
78073
|
+
description: string;
|
|
78074
|
+
type: string;
|
|
78075
|
+
};
|
|
78076
|
+
common_area_number: {
|
|
78077
|
+
description: string;
|
|
78078
|
+
type: string;
|
|
78079
|
+
};
|
|
78080
|
+
room_number: {
|
|
78081
|
+
description: string;
|
|
78082
|
+
type: string;
|
|
78083
|
+
};
|
|
78084
|
+
};
|
|
78085
|
+
type: string;
|
|
78086
|
+
};
|
|
78087
|
+
is_removed: {
|
|
78088
|
+
default: boolean;
|
|
78089
|
+
description: string;
|
|
78090
|
+
type: string;
|
|
78091
|
+
};
|
|
78092
|
+
};
|
|
78093
|
+
required: string[];
|
|
78094
|
+
type: string;
|
|
78095
|
+
};
|
|
78096
|
+
type: string;
|
|
78097
|
+
};
|
|
78098
|
+
acs_system_id: {
|
|
78099
|
+
description: string;
|
|
78100
|
+
format: string;
|
|
78101
|
+
type: string;
|
|
78102
|
+
};
|
|
78103
|
+
};
|
|
78104
|
+
required: string[];
|
|
78105
|
+
type: string;
|
|
78106
|
+
};
|
|
78107
|
+
};
|
|
78108
|
+
};
|
|
78109
|
+
};
|
|
78110
|
+
responses: {
|
|
78111
|
+
200: {
|
|
78112
|
+
content: {
|
|
78113
|
+
'application/json': {
|
|
78114
|
+
schema: {
|
|
78115
|
+
properties: {
|
|
78116
|
+
ok: {
|
|
78117
|
+
type: string;
|
|
78118
|
+
};
|
|
78119
|
+
};
|
|
78120
|
+
required: string[];
|
|
78121
|
+
type: string;
|
|
78122
|
+
};
|
|
78123
|
+
};
|
|
78124
|
+
};
|
|
78125
|
+
description: string;
|
|
78126
|
+
};
|
|
78127
|
+
400: {
|
|
78128
|
+
description: string;
|
|
78129
|
+
};
|
|
78130
|
+
401: {
|
|
78131
|
+
description: string;
|
|
78132
|
+
};
|
|
78133
|
+
};
|
|
78134
|
+
security: ({
|
|
78135
|
+
pat_with_workspace: never[];
|
|
78136
|
+
console_session_with_workspace?: never;
|
|
78137
|
+
api_key?: never;
|
|
78138
|
+
} | {
|
|
78139
|
+
console_session_with_workspace: never[];
|
|
78140
|
+
pat_with_workspace?: never;
|
|
78141
|
+
api_key?: never;
|
|
78142
|
+
} | {
|
|
78143
|
+
api_key: never[];
|
|
78144
|
+
pat_with_workspace?: never;
|
|
78145
|
+
console_session_with_workspace?: never;
|
|
78146
|
+
})[];
|
|
78147
|
+
summary: string;
|
|
78148
|
+
tags: string[];
|
|
78149
|
+
'x-fern-sdk-group-name': string[];
|
|
78150
|
+
'x-fern-sdk-method-name': string;
|
|
78151
|
+
'x-response-key': null;
|
|
78152
|
+
'x-title': string;
|
|
78153
|
+
};
|
|
78154
|
+
};
|
|
78001
78155
|
'/acs/users/add_to_access_group': {
|
|
78002
78156
|
post: {
|
|
78003
78157
|
description: string;
|
|
@@ -118249,6 +118403,8 @@ type Routes = {
|
|
|
118249
118403
|
name?: (string | undefined) | null;
|
|
118250
118404
|
/** Unique key for the access grant within the workspace. */
|
|
118251
118405
|
access_grant_key?: string | undefined;
|
|
118406
|
+
/** Reservation key for the access grant. */
|
|
118407
|
+
reservation_key?: string | undefined;
|
|
118252
118408
|
/**
|
|
118253
118409
|
* @deprecated Use `space_ids`.*/
|
|
118254
118410
|
location_ids?: string[] | undefined;
|
|
@@ -118294,6 +118450,8 @@ type Routes = {
|
|
|
118294
118450
|
access_grant_id: string;
|
|
118295
118451
|
/** Unique key for the access grant within the workspace. */
|
|
118296
118452
|
access_grant_key?: string | undefined;
|
|
118453
|
+
/** Reservation key for the access grant. */
|
|
118454
|
+
reservation_key?: string | undefined;
|
|
118297
118455
|
/** ID of user identity to which the Access Grant gives access. */
|
|
118298
118456
|
user_identity_id: string;
|
|
118299
118457
|
/**
|
|
@@ -118378,6 +118536,8 @@ type Routes = {
|
|
|
118378
118536
|
access_grant_id: string;
|
|
118379
118537
|
/** Unique key for the access grant within the workspace. */
|
|
118380
118538
|
access_grant_key?: string | undefined;
|
|
118539
|
+
/** Reservation key for the access grant. */
|
|
118540
|
+
reservation_key?: string | undefined;
|
|
118381
118541
|
/** ID of user identity to which the Access Grant gives access. */
|
|
118382
118542
|
user_identity_id: string;
|
|
118383
118543
|
/**
|
|
@@ -119712,11 +119872,11 @@ type Routes = {
|
|
|
119712
119872
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
119713
119873
|
hotek_metadata?: {
|
|
119714
119874
|
/** Room number of the entrance. */
|
|
119715
|
-
room_number
|
|
119875
|
+
room_number?: string | undefined;
|
|
119716
119876
|
/** Display name of the entrance. */
|
|
119717
|
-
|
|
119718
|
-
/**
|
|
119719
|
-
|
|
119877
|
+
common_area_number?: string | undefined;
|
|
119878
|
+
/** Display name of the entrance. */
|
|
119879
|
+
common_area_name?: string | undefined;
|
|
119720
119880
|
} | undefined;
|
|
119721
119881
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
119722
119882
|
visionline_metadata?: {
|
|
@@ -120157,6 +120317,8 @@ type Routes = {
|
|
|
120157
120317
|
access_grant_id: string;
|
|
120158
120318
|
/** Unique key for the access grant within the workspace. */
|
|
120159
120319
|
access_grant_key?: string | undefined;
|
|
120320
|
+
/** Reservation key for the access grant. */
|
|
120321
|
+
reservation_key?: string | undefined;
|
|
120160
120322
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120161
120323
|
user_identity_id: string;
|
|
120162
120324
|
/**
|
|
@@ -120233,6 +120395,8 @@ type Routes = {
|
|
|
120233
120395
|
access_grant_id: string;
|
|
120234
120396
|
/** Unique key for the access grant within the workspace. */
|
|
120235
120397
|
access_grant_key?: string | undefined;
|
|
120398
|
+
/** Reservation key for the access grant. */
|
|
120399
|
+
reservation_key?: string | undefined;
|
|
120236
120400
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120237
120401
|
user_identity_id: string;
|
|
120238
120402
|
/**
|
|
@@ -120300,6 +120464,8 @@ type Routes = {
|
|
|
120300
120464
|
workspace_id: string;
|
|
120301
120465
|
/** ID of the Access Grant. */
|
|
120302
120466
|
access_grant_id: string;
|
|
120467
|
+
/** Reservation key for the access grant. */
|
|
120468
|
+
reservation_key?: string | undefined;
|
|
120303
120469
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120304
120470
|
user_identity_id: string;
|
|
120305
120471
|
/**
|
|
@@ -120364,6 +120530,8 @@ type Routes = {
|
|
|
120364
120530
|
workspace_id: string;
|
|
120365
120531
|
/** ID of the Access Grant. */
|
|
120366
120532
|
access_grant_id: string;
|
|
120533
|
+
/** Reservation key for the access grant. */
|
|
120534
|
+
reservation_key?: string | undefined;
|
|
120367
120535
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120368
120536
|
user_identity_id: string;
|
|
120369
120537
|
/**
|
|
@@ -123136,11 +123304,11 @@ type Routes = {
|
|
|
123136
123304
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
123137
123305
|
hotek_metadata?: {
|
|
123138
123306
|
/** Room number of the entrance. */
|
|
123139
|
-
room_number
|
|
123307
|
+
room_number?: string | undefined;
|
|
123140
123308
|
/** Display name of the entrance. */
|
|
123141
|
-
|
|
123142
|
-
/**
|
|
123143
|
-
|
|
123309
|
+
common_area_number?: string | undefined;
|
|
123310
|
+
/** Display name of the entrance. */
|
|
123311
|
+
common_area_name?: string | undefined;
|
|
123144
123312
|
} | undefined;
|
|
123145
123313
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
123146
123314
|
visionline_metadata?: {
|
|
@@ -125859,6 +126027,8 @@ type Routes = {
|
|
|
125859
126027
|
access_grant_id: string;
|
|
125860
126028
|
/** Unique key for the access grant within the workspace. */
|
|
125861
126029
|
access_grant_key?: string | undefined;
|
|
126030
|
+
/** Reservation key for the access grant. */
|
|
126031
|
+
reservation_key?: string | undefined;
|
|
125862
126032
|
/** ID of user identity to which the Access Grant gives access. */
|
|
125863
126033
|
user_identity_id: string;
|
|
125864
126034
|
/**
|
|
@@ -129191,11 +129361,11 @@ type Routes = {
|
|
|
129191
129361
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
129192
129362
|
hotek_metadata?: {
|
|
129193
129363
|
/** Room number of the entrance. */
|
|
129194
|
-
room_number
|
|
129364
|
+
room_number?: string | undefined;
|
|
129195
129365
|
/** Display name of the entrance. */
|
|
129196
|
-
|
|
129197
|
-
/**
|
|
129198
|
-
|
|
129366
|
+
common_area_number?: string | undefined;
|
|
129367
|
+
/** Display name of the entrance. */
|
|
129368
|
+
common_area_name?: string | undefined;
|
|
129199
129369
|
} | undefined;
|
|
129200
129370
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
129201
129371
|
visionline_metadata?: {
|
|
@@ -130557,11 +130727,11 @@ type Routes = {
|
|
|
130557
130727
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
130558
130728
|
hotek_metadata?: {
|
|
130559
130729
|
/** Room number of the entrance. */
|
|
130560
|
-
room_number
|
|
130730
|
+
room_number?: string | undefined;
|
|
130561
130731
|
/** Display name of the entrance. */
|
|
130562
|
-
|
|
130563
|
-
/**
|
|
130564
|
-
|
|
130732
|
+
common_area_number?: string | undefined;
|
|
130733
|
+
/** Display name of the entrance. */
|
|
130734
|
+
common_area_name?: string | undefined;
|
|
130565
130735
|
} | undefined;
|
|
130566
130736
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
130567
130737
|
visionline_metadata?: {
|
|
@@ -134023,11 +134193,11 @@ type Routes = {
|
|
|
134023
134193
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
134024
134194
|
hotek_metadata?: {
|
|
134025
134195
|
/** Room number of the entrance. */
|
|
134026
|
-
room_number
|
|
134196
|
+
room_number?: string | undefined;
|
|
134027
134197
|
/** Display name of the entrance. */
|
|
134028
|
-
|
|
134029
|
-
/**
|
|
134030
|
-
|
|
134198
|
+
common_area_number?: string | undefined;
|
|
134199
|
+
/** Display name of the entrance. */
|
|
134200
|
+
common_area_name?: string | undefined;
|
|
134031
134201
|
} | undefined;
|
|
134032
134202
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
134033
134203
|
visionline_metadata?: {
|
|
@@ -134190,11 +134360,11 @@ type Routes = {
|
|
|
134190
134360
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
134191
134361
|
hotek_metadata?: {
|
|
134192
134362
|
/** Room number of the entrance. */
|
|
134193
|
-
room_number
|
|
134363
|
+
room_number?: string | undefined;
|
|
134194
134364
|
/** Display name of the entrance. */
|
|
134195
|
-
|
|
134196
|
-
/**
|
|
134197
|
-
|
|
134365
|
+
common_area_number?: string | undefined;
|
|
134366
|
+
/** Display name of the entrance. */
|
|
134367
|
+
common_area_name?: string | undefined;
|
|
134198
134368
|
} | undefined;
|
|
134199
134369
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
134200
134370
|
visionline_metadata?: {
|
|
@@ -134832,6 +135002,40 @@ type Routes = {
|
|
|
134832
135002
|
}[];
|
|
134833
135003
|
};
|
|
134834
135004
|
};
|
|
135005
|
+
'/acs/systems/report_devices': {
|
|
135006
|
+
route: '/acs/systems/report_devices';
|
|
135007
|
+
method: 'POST';
|
|
135008
|
+
queryParams: {};
|
|
135009
|
+
jsonBody: {};
|
|
135010
|
+
commonParams: {
|
|
135011
|
+
/** ID of the ACS system to report resources for */
|
|
135012
|
+
acs_system_id: string;
|
|
135013
|
+
/** Array of ACS encoders to report */
|
|
135014
|
+
acs_encoders?: {
|
|
135015
|
+
/** Whether the encoder is removed */
|
|
135016
|
+
is_removed?: boolean | undefined;
|
|
135017
|
+
hotek_metadata: {
|
|
135018
|
+
/** The encoder number determined by the USB port connection. */
|
|
135019
|
+
encoder_number: string;
|
|
135020
|
+
};
|
|
135021
|
+
}[] | undefined;
|
|
135022
|
+
/** Array of ACS entrances to report */
|
|
135023
|
+
acs_entrances?: {
|
|
135024
|
+
/** Whether the entrance is removed */
|
|
135025
|
+
is_removed?: boolean | undefined;
|
|
135026
|
+
/** Hotek-specific metadata associated with the entrance. */
|
|
135027
|
+
hotek_metadata: {
|
|
135028
|
+
/** The room number identifier */
|
|
135029
|
+
room_number?: string | undefined;
|
|
135030
|
+
/** The common area name */
|
|
135031
|
+
common_area_name?: string | undefined;
|
|
135032
|
+
common_area_number?: string | undefined;
|
|
135033
|
+
};
|
|
135034
|
+
}[] | undefined;
|
|
135035
|
+
};
|
|
135036
|
+
formData: {};
|
|
135037
|
+
jsonResponse: {};
|
|
135038
|
+
};
|
|
134835
135039
|
'/acs/users/add_to_access_group': {
|
|
134836
135040
|
route: '/acs/users/add_to_access_group';
|
|
134837
135041
|
method: 'PUT' | 'POST';
|
|
@@ -135631,11 +135835,11 @@ type Routes = {
|
|
|
135631
135835
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
135632
135836
|
hotek_metadata?: {
|
|
135633
135837
|
/** Room number of the entrance. */
|
|
135634
|
-
room_number
|
|
135838
|
+
room_number?: string | undefined;
|
|
135635
135839
|
/** Display name of the entrance. */
|
|
135636
|
-
|
|
135637
|
-
/**
|
|
135638
|
-
|
|
135840
|
+
common_area_number?: string | undefined;
|
|
135841
|
+
/** Display name of the entrance. */
|
|
135842
|
+
common_area_name?: string | undefined;
|
|
135639
135843
|
} | undefined;
|
|
135640
135844
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
135641
135845
|
visionline_metadata?: {
|
|
@@ -167893,11 +168097,11 @@ type Routes = {
|
|
|
167893
168097
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
167894
168098
|
hotek_metadata?: {
|
|
167895
168099
|
/** Room number of the entrance. */
|
|
167896
|
-
room_number
|
|
168100
|
+
room_number?: string | undefined;
|
|
168101
|
+
/** Display name of the entrance. */
|
|
168102
|
+
common_area_number?: string | undefined;
|
|
167897
168103
|
/** Display name of the entrance. */
|
|
167898
|
-
|
|
167899
|
-
/** Type of door. */
|
|
167900
|
-
door_type: 'common_area' | 'guest';
|
|
168104
|
+
common_area_name?: string | undefined;
|
|
167901
168105
|
} | undefined;
|
|
167902
168106
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
167903
168107
|
visionline_metadata?: {
|
|
@@ -169472,11 +169676,11 @@ type Routes = {
|
|
|
169472
169676
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
169473
169677
|
hotek_metadata?: {
|
|
169474
169678
|
/** Room number of the entrance. */
|
|
169475
|
-
room_number
|
|
169679
|
+
room_number?: string | undefined;
|
|
169476
169680
|
/** Display name of the entrance. */
|
|
169477
|
-
|
|
169478
|
-
/**
|
|
169479
|
-
|
|
169681
|
+
common_area_number?: string | undefined;
|
|
169682
|
+
/** Display name of the entrance. */
|
|
169683
|
+
common_area_name?: string | undefined;
|
|
169480
169684
|
} | undefined;
|
|
169481
169685
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
169482
169686
|
visionline_metadata?: {
|
|
@@ -190706,11 +190910,11 @@ type Routes = {
|
|
|
190706
190910
|
/** Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
190707
190911
|
hotek_metadata?: {
|
|
190708
190912
|
/** Room number of the entrance. */
|
|
190709
|
-
room_number
|
|
190913
|
+
room_number?: string | undefined;
|
|
190710
190914
|
/** Display name of the entrance. */
|
|
190711
|
-
|
|
190712
|
-
/**
|
|
190713
|
-
|
|
190915
|
+
common_area_number?: string | undefined;
|
|
190916
|
+
/** Display name of the entrance. */
|
|
190917
|
+
common_area_name?: string | undefined;
|
|
190714
190918
|
} | undefined;
|
|
190715
190919
|
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
190716
190920
|
visionline_metadata?: {
|
|
@@ -193429,6 +193633,8 @@ type Routes = {
|
|
|
193429
193633
|
access_grant_id: string;
|
|
193430
193634
|
/** Unique key for the access grant within the workspace. */
|
|
193431
193635
|
access_grant_key?: string | undefined;
|
|
193636
|
+
/** Reservation key for the access grant. */
|
|
193637
|
+
reservation_key?: string | undefined;
|
|
193432
193638
|
/** ID of user identity to which the Access Grant gives access. */
|
|
193433
193639
|
user_identity_id: string;
|
|
193434
193640
|
/**
|