@seamapi/types 1.978.0 → 1.980.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 +100 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +271 -46
- package/dist/index.cjs +100 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/akiles.d.ts +33 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js +25 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +188 -0
- package/lib/seam/connect/openapi.js +76 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +204 -28
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
- package/src/lib/seam/connect/openapi.ts +82 -0
- package/src/lib/seam/connect/route-types.ts +281 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3748,10 +3748,10 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
3748
3748
|
workspace_id: z.ZodString;
|
|
3749
3749
|
connected_account_id: z.ZodString;
|
|
3750
3750
|
name: z.ZodString;
|
|
3751
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group"]>;
|
|
3751
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group", "akiles_member_group"]>;
|
|
3752
3752
|
access_group_type_display_name: z.ZodString;
|
|
3753
3753
|
display_name: z.ZodString;
|
|
3754
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group"]>;
|
|
3754
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group", "akiles_member_group"]>;
|
|
3755
3755
|
external_type_display_name: z.ZodString;
|
|
3756
3756
|
created_at: z.ZodString;
|
|
3757
3757
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
@@ -4116,9 +4116,9 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4116
4116
|
})[];
|
|
4117
4117
|
acs_access_group_id: string;
|
|
4118
4118
|
acs_system_id: string;
|
|
4119
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4119
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4120
4120
|
access_group_type_display_name: string;
|
|
4121
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4121
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4122
4122
|
external_type_display_name: string;
|
|
4123
4123
|
access_schedule?: {
|
|
4124
4124
|
starts_at: string;
|
|
@@ -4208,9 +4208,9 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4208
4208
|
})[];
|
|
4209
4209
|
acs_access_group_id: string;
|
|
4210
4210
|
acs_system_id: string;
|
|
4211
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4211
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4212
4212
|
access_group_type_display_name: string;
|
|
4213
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4213
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4214
4214
|
external_type_display_name: string;
|
|
4215
4215
|
access_schedule?: {
|
|
4216
4216
|
starts_at: string;
|
|
@@ -4223,10 +4223,10 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4223
4223
|
workspace_id: z.ZodString;
|
|
4224
4224
|
connected_account_id: z.ZodString;
|
|
4225
4225
|
name: z.ZodString;
|
|
4226
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group"]>;
|
|
4226
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group", "akiles_member_group"]>;
|
|
4227
4227
|
access_group_type_display_name: z.ZodString;
|
|
4228
4228
|
display_name: z.ZodString;
|
|
4229
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group"]>;
|
|
4229
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group", "kisi_access_group", "akiles_member_group"]>;
|
|
4230
4230
|
external_type_display_name: z.ZodString;
|
|
4231
4231
|
created_at: z.ZodString;
|
|
4232
4232
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
@@ -4591,9 +4591,9 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4591
4591
|
})[];
|
|
4592
4592
|
acs_access_group_id: string;
|
|
4593
4593
|
acs_system_id: string;
|
|
4594
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4594
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4595
4595
|
access_group_type_display_name: string;
|
|
4596
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4596
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4597
4597
|
external_type_display_name: string;
|
|
4598
4598
|
access_schedule?: {
|
|
4599
4599
|
starts_at: string;
|
|
@@ -4683,9 +4683,9 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
4683
4683
|
})[];
|
|
4684
4684
|
acs_access_group_id: string;
|
|
4685
4685
|
acs_system_id: string;
|
|
4686
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4686
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4687
4687
|
access_group_type_display_name: string;
|
|
4688
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group";
|
|
4688
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group" | "kisi_access_group" | "akiles_member_group";
|
|
4689
4689
|
external_type_display_name: string;
|
|
4690
4690
|
access_schedule?: {
|
|
4691
4691
|
starts_at: string;
|
|
@@ -5638,6 +5638,37 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5638
5638
|
zone_name?: string | undefined;
|
|
5639
5639
|
entry_relays_total_count?: number | undefined;
|
|
5640
5640
|
}>>;
|
|
5641
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
5642
|
+
gadget_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5643
|
+
site_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5644
|
+
site_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5645
|
+
actions: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5646
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5647
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5648
|
+
}, "strip", z.ZodTypeAny, {
|
|
5649
|
+
name?: string | undefined;
|
|
5650
|
+
id?: string | undefined;
|
|
5651
|
+
}, {
|
|
5652
|
+
name?: string | undefined;
|
|
5653
|
+
id?: string | undefined;
|
|
5654
|
+
}>, "many">>>;
|
|
5655
|
+
}, "strip", z.ZodTypeAny, {
|
|
5656
|
+
site_id?: string | undefined;
|
|
5657
|
+
site_name?: string | undefined;
|
|
5658
|
+
gadget_id?: string | undefined;
|
|
5659
|
+
actions?: {
|
|
5660
|
+
name?: string | undefined;
|
|
5661
|
+
id?: string | undefined;
|
|
5662
|
+
}[] | undefined;
|
|
5663
|
+
}, {
|
|
5664
|
+
site_id?: string | undefined;
|
|
5665
|
+
site_name?: string | undefined;
|
|
5666
|
+
gadget_id?: string | undefined;
|
|
5667
|
+
actions?: {
|
|
5668
|
+
name?: string | undefined;
|
|
5669
|
+
id?: string | undefined;
|
|
5670
|
+
}[] | undefined;
|
|
5671
|
+
}>>;
|
|
5641
5672
|
is_locked: z.ZodOptional<z.ZodBoolean>;
|
|
5642
5673
|
} & {
|
|
5643
5674
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5710,6 +5741,15 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5710
5741
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
5711
5742
|
}[] | undefined;
|
|
5712
5743
|
} | undefined;
|
|
5744
|
+
akiles_metadata?: {
|
|
5745
|
+
site_id?: string | undefined;
|
|
5746
|
+
site_name?: string | undefined;
|
|
5747
|
+
gadget_id?: string | undefined;
|
|
5748
|
+
actions?: {
|
|
5749
|
+
name?: string | undefined;
|
|
5750
|
+
id?: string | undefined;
|
|
5751
|
+
}[] | undefined;
|
|
5752
|
+
} | undefined;
|
|
5713
5753
|
assa_abloy_vostio_metadata?: {
|
|
5714
5754
|
door_name?: string | undefined;
|
|
5715
5755
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -5813,6 +5853,15 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5813
5853
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
5814
5854
|
}[] | undefined;
|
|
5815
5855
|
} | undefined;
|
|
5856
|
+
akiles_metadata?: {
|
|
5857
|
+
site_id?: string | undefined;
|
|
5858
|
+
site_name?: string | undefined;
|
|
5859
|
+
gadget_id?: string | undefined;
|
|
5860
|
+
actions?: {
|
|
5861
|
+
name?: string | undefined;
|
|
5862
|
+
id?: string | undefined;
|
|
5863
|
+
}[] | undefined;
|
|
5864
|
+
} | undefined;
|
|
5816
5865
|
assa_abloy_vostio_metadata?: {
|
|
5817
5866
|
door_name?: string | undefined;
|
|
5818
5867
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -5859,7 +5908,7 @@ declare const acs_system: z.ZodObject<{
|
|
|
5859
5908
|
acs_system_id: z.ZodString;
|
|
5860
5909
|
acs_user_count: z.ZodOptional<z.ZodNumber>;
|
|
5861
5910
|
acs_access_group_count: z.ZodOptional<z.ZodNumber>;
|
|
5862
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site", "kisi_organization"]>>;
|
|
5911
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site", "kisi_organization", "akiles_organization"]>>;
|
|
5863
5912
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
5864
5913
|
is_credential_manager: z.ZodBoolean;
|
|
5865
5914
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -5875,7 +5924,7 @@ declare const acs_system: z.ZodObject<{
|
|
|
5875
5924
|
system_id?: string | undefined;
|
|
5876
5925
|
lan_address?: string | undefined;
|
|
5877
5926
|
}>>;
|
|
5878
|
-
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site", "kisi_organization"]>>;
|
|
5927
|
+
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site", "kisi_organization", "akiles_organization"]>>;
|
|
5879
5928
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
5880
5929
|
location: z.ZodObject<{
|
|
5881
5930
|
time_zone: z.ZodNullable<z.ZodString>;
|
|
@@ -6108,12 +6157,12 @@ declare const acs_system: z.ZodObject<{
|
|
|
6108
6157
|
system_id?: string | undefined;
|
|
6109
6158
|
lan_address?: string | undefined;
|
|
6110
6159
|
} | undefined;
|
|
6111
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
|
|
6160
|
+
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
|
|
6112
6161
|
external_type_display_name?: string | undefined;
|
|
6113
6162
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
6114
6163
|
acs_user_count?: number | undefined;
|
|
6115
6164
|
acs_access_group_count?: number | undefined;
|
|
6116
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
|
|
6165
|
+
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
|
|
6117
6166
|
system_type_display_name?: string | undefined;
|
|
6118
6167
|
}, {
|
|
6119
6168
|
name: string;
|
|
@@ -6181,12 +6230,12 @@ declare const acs_system: z.ZodObject<{
|
|
|
6181
6230
|
system_id?: string | undefined;
|
|
6182
6231
|
lan_address?: string | undefined;
|
|
6183
6232
|
} | undefined;
|
|
6184
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
|
|
6233
|
+
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
|
|
6185
6234
|
external_type_display_name?: string | undefined;
|
|
6186
6235
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
6187
6236
|
acs_user_count?: number | undefined;
|
|
6188
6237
|
acs_access_group_count?: number | undefined;
|
|
6189
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
|
|
6238
|
+
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
|
|
6190
6239
|
system_type_display_name?: string | undefined;
|
|
6191
6240
|
}>;
|
|
6192
6241
|
type AcsSystem = z.output<typeof acs_system>;
|
|
@@ -43510,6 +43559,22 @@ type Routes = {
|
|
|
43510
43559
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
43511
43560
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
43512
43561
|
} | undefined;
|
|
43562
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
43563
|
+
akiles_metadata?: {
|
|
43564
|
+
/** ID of the Akiles gadget. */
|
|
43565
|
+
gadget_id?: (string | undefined) | undefined;
|
|
43566
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
43567
|
+
site_id?: (string | undefined) | undefined;
|
|
43568
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
43569
|
+
site_name?: (string | undefined) | undefined;
|
|
43570
|
+
/** Actions the gadget exposes (for example, open). */
|
|
43571
|
+
actions?: ({
|
|
43572
|
+
/** ID of the gadget action. */
|
|
43573
|
+
id?: (string | undefined) | undefined;
|
|
43574
|
+
/** Name of the gadget action. */
|
|
43575
|
+
name?: (string | undefined) | undefined;
|
|
43576
|
+
}[] | undefined) | undefined;
|
|
43577
|
+
} | undefined;
|
|
43513
43578
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
43514
43579
|
is_locked?: boolean | undefined;
|
|
43515
43580
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -43713,7 +43778,7 @@ type Routes = {
|
|
|
43713
43778
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
43714
43779
|
acs_access_group_count?: number | undefined;
|
|
43715
43780
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
43716
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
43781
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
43717
43782
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
43718
43783
|
external_type_display_name?: string | undefined;
|
|
43719
43784
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -43729,7 +43794,7 @@ type Routes = {
|
|
|
43729
43794
|
} | undefined;
|
|
43730
43795
|
/**
|
|
43731
43796
|
* @deprecated Use `external_type`.*/
|
|
43732
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
43797
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
43733
43798
|
/**
|
|
43734
43799
|
* @deprecated Use `external_type_display_name`.*/
|
|
43735
43800
|
system_type_display_name?: string | undefined;
|
|
@@ -43902,14 +43967,14 @@ type Routes = {
|
|
|
43902
43967
|
name: string;
|
|
43903
43968
|
/**
|
|
43904
43969
|
* @deprecated Use `external_type`.*/
|
|
43905
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
43970
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
43906
43971
|
/**
|
|
43907
43972
|
* @deprecated Use `external_type_display_name`.*/
|
|
43908
43973
|
access_group_type_display_name: string;
|
|
43909
43974
|
/** Display name for the access group. */
|
|
43910
43975
|
display_name: string;
|
|
43911
43976
|
/** Brand-specific terminology for the access group type. */
|
|
43912
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
43977
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
43913
43978
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
43914
43979
|
external_type_display_name: string;
|
|
43915
43980
|
/** Date and time at which the access group was created. */
|
|
@@ -50328,6 +50393,22 @@ type Routes = {
|
|
|
50328
50393
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
50329
50394
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
50330
50395
|
} | undefined;
|
|
50396
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
50397
|
+
akiles_metadata?: {
|
|
50398
|
+
/** ID of the Akiles gadget. */
|
|
50399
|
+
gadget_id?: (string | undefined) | undefined;
|
|
50400
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
50401
|
+
site_id?: (string | undefined) | undefined;
|
|
50402
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
50403
|
+
site_name?: (string | undefined) | undefined;
|
|
50404
|
+
/** Actions the gadget exposes (for example, open). */
|
|
50405
|
+
actions?: ({
|
|
50406
|
+
/** ID of the gadget action. */
|
|
50407
|
+
id?: (string | undefined) | undefined;
|
|
50408
|
+
/** Name of the gadget action. */
|
|
50409
|
+
name?: (string | undefined) | undefined;
|
|
50410
|
+
}[] | undefined) | undefined;
|
|
50411
|
+
} | undefined;
|
|
50331
50412
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
50332
50413
|
is_locked?: boolean | undefined;
|
|
50333
50414
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -53047,14 +53128,14 @@ type Routes = {
|
|
|
53047
53128
|
name: string;
|
|
53048
53129
|
/**
|
|
53049
53130
|
* @deprecated Use `external_type`.*/
|
|
53050
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
53131
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
53051
53132
|
/**
|
|
53052
53133
|
* @deprecated Use `external_type_display_name`.*/
|
|
53053
53134
|
access_group_type_display_name: string;
|
|
53054
53135
|
/** Display name for the access group. */
|
|
53055
53136
|
display_name: string;
|
|
53056
53137
|
/** Brand-specific terminology for the access group type. */
|
|
53057
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
53138
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
53058
53139
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
53059
53140
|
external_type_display_name: string;
|
|
53060
53141
|
/** Date and time at which the access group was created. */
|
|
@@ -53233,14 +53314,14 @@ type Routes = {
|
|
|
53233
53314
|
name: string;
|
|
53234
53315
|
/**
|
|
53235
53316
|
* @deprecated Use `external_type`.*/
|
|
53236
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
53317
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
53237
53318
|
/**
|
|
53238
53319
|
* @deprecated Use `external_type_display_name`.*/
|
|
53239
53320
|
access_group_type_display_name: string;
|
|
53240
53321
|
/** Display name for the access group. */
|
|
53241
53322
|
display_name: string;
|
|
53242
53323
|
/** Brand-specific terminology for the access group type. */
|
|
53243
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
53324
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
53244
53325
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
53245
53326
|
external_type_display_name: string;
|
|
53246
53327
|
/** Date and time at which the access group was created. */
|
|
@@ -53576,6 +53657,22 @@ type Routes = {
|
|
|
53576
53657
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
53577
53658
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
53578
53659
|
} | undefined;
|
|
53660
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
53661
|
+
akiles_metadata?: {
|
|
53662
|
+
/** ID of the Akiles gadget. */
|
|
53663
|
+
gadget_id?: (string | undefined) | undefined;
|
|
53664
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
53665
|
+
site_id?: (string | undefined) | undefined;
|
|
53666
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
53667
|
+
site_name?: (string | undefined) | undefined;
|
|
53668
|
+
/** Actions the gadget exposes (for example, open). */
|
|
53669
|
+
actions?: ({
|
|
53670
|
+
/** ID of the gadget action. */
|
|
53671
|
+
id?: (string | undefined) | undefined;
|
|
53672
|
+
/** Name of the gadget action. */
|
|
53673
|
+
name?: (string | undefined) | undefined;
|
|
53674
|
+
}[] | undefined) | undefined;
|
|
53675
|
+
} | undefined;
|
|
53579
53676
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
53580
53677
|
is_locked?: boolean | undefined;
|
|
53581
53678
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -53913,14 +54010,14 @@ type Routes = {
|
|
|
53913
54010
|
name: string;
|
|
53914
54011
|
/**
|
|
53915
54012
|
* @deprecated Use `external_type`.*/
|
|
53916
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
54013
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
53917
54014
|
/**
|
|
53918
54015
|
* @deprecated Use `external_type_display_name`.*/
|
|
53919
54016
|
access_group_type_display_name: string;
|
|
53920
54017
|
/** Display name for the access group. */
|
|
53921
54018
|
display_name: string;
|
|
53922
54019
|
/** Brand-specific terminology for the access group type. */
|
|
53923
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
54020
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
53924
54021
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
53925
54022
|
external_type_display_name: string;
|
|
53926
54023
|
/** Date and time at which the access group was created. */
|
|
@@ -54096,14 +54193,14 @@ type Routes = {
|
|
|
54096
54193
|
name: string;
|
|
54097
54194
|
/**
|
|
54098
54195
|
* @deprecated Use `external_type`.*/
|
|
54099
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
54196
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
54100
54197
|
/**
|
|
54101
54198
|
* @deprecated Use `external_type_display_name`.*/
|
|
54102
54199
|
access_group_type_display_name: string;
|
|
54103
54200
|
/** Display name for the access group. */
|
|
54104
54201
|
display_name: string;
|
|
54105
54202
|
/** Brand-specific terminology for the access group type. */
|
|
54106
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
54203
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
54107
54204
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
54108
54205
|
external_type_display_name: string;
|
|
54109
54206
|
/** Date and time at which the access group was created. */
|
|
@@ -55372,6 +55469,22 @@ type Routes = {
|
|
|
55372
55469
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
55373
55470
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
55374
55471
|
} | undefined;
|
|
55472
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
55473
|
+
akiles_metadata?: {
|
|
55474
|
+
/** ID of the Akiles gadget. */
|
|
55475
|
+
gadget_id?: (string | undefined) | undefined;
|
|
55476
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
55477
|
+
site_id?: (string | undefined) | undefined;
|
|
55478
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
55479
|
+
site_name?: (string | undefined) | undefined;
|
|
55480
|
+
/** Actions the gadget exposes (for example, open). */
|
|
55481
|
+
actions?: ({
|
|
55482
|
+
/** ID of the gadget action. */
|
|
55483
|
+
id?: (string | undefined) | undefined;
|
|
55484
|
+
/** Name of the gadget action. */
|
|
55485
|
+
name?: (string | undefined) | undefined;
|
|
55486
|
+
}[] | undefined) | undefined;
|
|
55487
|
+
} | undefined;
|
|
55375
55488
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
55376
55489
|
is_locked?: boolean | undefined;
|
|
55377
55490
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -61536,6 +61649,22 @@ type Routes = {
|
|
|
61536
61649
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
61537
61650
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
61538
61651
|
} | undefined;
|
|
61652
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
61653
|
+
akiles_metadata?: {
|
|
61654
|
+
/** ID of the Akiles gadget. */
|
|
61655
|
+
gadget_id?: (string | undefined) | undefined;
|
|
61656
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
61657
|
+
site_id?: (string | undefined) | undefined;
|
|
61658
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
61659
|
+
site_name?: (string | undefined) | undefined;
|
|
61660
|
+
/** Actions the gadget exposes (for example, open). */
|
|
61661
|
+
actions?: ({
|
|
61662
|
+
/** ID of the gadget action. */
|
|
61663
|
+
id?: (string | undefined) | undefined;
|
|
61664
|
+
/** Name of the gadget action. */
|
|
61665
|
+
name?: (string | undefined) | undefined;
|
|
61666
|
+
}[] | undefined) | undefined;
|
|
61667
|
+
} | undefined;
|
|
61539
61668
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
61540
61669
|
is_locked?: boolean | undefined;
|
|
61541
61670
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -61775,6 +61904,22 @@ type Routes = {
|
|
|
61775
61904
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
61776
61905
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
61777
61906
|
} | undefined;
|
|
61907
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
61908
|
+
akiles_metadata?: {
|
|
61909
|
+
/** ID of the Akiles gadget. */
|
|
61910
|
+
gadget_id?: (string | undefined) | undefined;
|
|
61911
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
61912
|
+
site_id?: (string | undefined) | undefined;
|
|
61913
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
61914
|
+
site_name?: (string | undefined) | undefined;
|
|
61915
|
+
/** Actions the gadget exposes (for example, open). */
|
|
61916
|
+
actions?: ({
|
|
61917
|
+
/** ID of the gadget action. */
|
|
61918
|
+
id?: (string | undefined) | undefined;
|
|
61919
|
+
/** Name of the gadget action. */
|
|
61920
|
+
name?: (string | undefined) | undefined;
|
|
61921
|
+
}[] | undefined) | undefined;
|
|
61922
|
+
} | undefined;
|
|
61778
61923
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
61779
61924
|
is_locked?: boolean | undefined;
|
|
61780
61925
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -63685,7 +63830,7 @@ type Routes = {
|
|
|
63685
63830
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
63686
63831
|
acs_access_group_count?: number | undefined;
|
|
63687
63832
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
63688
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
63833
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
63689
63834
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
63690
63835
|
external_type_display_name?: string | undefined;
|
|
63691
63836
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -63701,7 +63846,7 @@ type Routes = {
|
|
|
63701
63846
|
} | undefined;
|
|
63702
63847
|
/**
|
|
63703
63848
|
* @deprecated Use `external_type`.*/
|
|
63704
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
63849
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
63705
63850
|
/**
|
|
63706
63851
|
* @deprecated Use `external_type_display_name`.*/
|
|
63707
63852
|
system_type_display_name?: string | undefined;
|
|
@@ -63840,7 +63985,7 @@ type Routes = {
|
|
|
63840
63985
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
63841
63986
|
acs_access_group_count?: number | undefined;
|
|
63842
63987
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
63843
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
63988
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
63844
63989
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
63845
63990
|
external_type_display_name?: string | undefined;
|
|
63846
63991
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -63856,7 +64001,7 @@ type Routes = {
|
|
|
63856
64001
|
} | undefined;
|
|
63857
64002
|
/**
|
|
63858
64003
|
* @deprecated Use `external_type`.*/
|
|
63859
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
64004
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
63860
64005
|
/**
|
|
63861
64006
|
* @deprecated Use `external_type_display_name`.*/
|
|
63862
64007
|
system_type_display_name?: string | undefined;
|
|
@@ -63991,7 +64136,7 @@ type Routes = {
|
|
|
63991
64136
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
63992
64137
|
acs_access_group_count?: number | undefined;
|
|
63993
64138
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
63994
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
64139
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
63995
64140
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
63996
64141
|
external_type_display_name?: string | undefined;
|
|
63997
64142
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -64007,7 +64152,7 @@ type Routes = {
|
|
|
64007
64152
|
} | undefined;
|
|
64008
64153
|
/**
|
|
64009
64154
|
* @deprecated Use `external_type`.*/
|
|
64010
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
64155
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
64011
64156
|
/**
|
|
64012
64157
|
* @deprecated Use `external_type_display_name`.*/
|
|
64013
64158
|
system_type_display_name?: string | undefined;
|
|
@@ -65274,6 +65419,22 @@ type Routes = {
|
|
|
65274
65419
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
65275
65420
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
65276
65421
|
} | undefined;
|
|
65422
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
65423
|
+
akiles_metadata?: {
|
|
65424
|
+
/** ID of the Akiles gadget. */
|
|
65425
|
+
gadget_id?: (string | undefined) | undefined;
|
|
65426
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
65427
|
+
site_id?: (string | undefined) | undefined;
|
|
65428
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
65429
|
+
site_name?: (string | undefined) | undefined;
|
|
65430
|
+
/** Actions the gadget exposes (for example, open). */
|
|
65431
|
+
actions?: ({
|
|
65432
|
+
/** ID of the gadget action. */
|
|
65433
|
+
id?: (string | undefined) | undefined;
|
|
65434
|
+
/** Name of the gadget action. */
|
|
65435
|
+
name?: (string | undefined) | undefined;
|
|
65436
|
+
}[] | undefined) | undefined;
|
|
65437
|
+
} | undefined;
|
|
65277
65438
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
65278
65439
|
is_locked?: boolean | undefined;
|
|
65279
65440
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -114734,6 +114895,22 @@ type Routes = {
|
|
|
114734
114895
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
114735
114896
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
114736
114897
|
} | undefined;
|
|
114898
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
114899
|
+
akiles_metadata?: {
|
|
114900
|
+
/** ID of the Akiles gadget. */
|
|
114901
|
+
gadget_id?: (string | undefined) | undefined;
|
|
114902
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
114903
|
+
site_id?: (string | undefined) | undefined;
|
|
114904
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
114905
|
+
site_name?: (string | undefined) | undefined;
|
|
114906
|
+
/** Actions the gadget exposes (for example, open). */
|
|
114907
|
+
actions?: ({
|
|
114908
|
+
/** ID of the gadget action. */
|
|
114909
|
+
id?: (string | undefined) | undefined;
|
|
114910
|
+
/** Name of the gadget action. */
|
|
114911
|
+
name?: (string | undefined) | undefined;
|
|
114912
|
+
}[] | undefined) | undefined;
|
|
114913
|
+
} | undefined;
|
|
114737
114914
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
114738
114915
|
is_locked?: boolean | undefined;
|
|
114739
114916
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -116769,6 +116946,22 @@ type Routes = {
|
|
|
116769
116946
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
116770
116947
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
116771
116948
|
} | undefined;
|
|
116949
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
116950
|
+
akiles_metadata?: {
|
|
116951
|
+
/** ID of the Akiles gadget. */
|
|
116952
|
+
gadget_id?: (string | undefined) | undefined;
|
|
116953
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
116954
|
+
site_id?: (string | undefined) | undefined;
|
|
116955
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
116956
|
+
site_name?: (string | undefined) | undefined;
|
|
116957
|
+
/** Actions the gadget exposes (for example, open). */
|
|
116958
|
+
actions?: ({
|
|
116959
|
+
/** ID of the gadget action. */
|
|
116960
|
+
id?: (string | undefined) | undefined;
|
|
116961
|
+
/** Name of the gadget action. */
|
|
116962
|
+
name?: (string | undefined) | undefined;
|
|
116963
|
+
}[] | undefined) | undefined;
|
|
116964
|
+
} | undefined;
|
|
116772
116965
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
116773
116966
|
is_locked?: boolean | undefined;
|
|
116774
116967
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -116972,7 +117165,7 @@ type Routes = {
|
|
|
116972
117165
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
116973
117166
|
acs_access_group_count?: number | undefined;
|
|
116974
117167
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
116975
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
117168
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
116976
117169
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
116977
117170
|
external_type_display_name?: string | undefined;
|
|
116978
117171
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -116988,7 +117181,7 @@ type Routes = {
|
|
|
116988
117181
|
} | undefined;
|
|
116989
117182
|
/**
|
|
116990
117183
|
* @deprecated Use `external_type`.*/
|
|
116991
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
117184
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
116992
117185
|
/**
|
|
116993
117186
|
* @deprecated Use `external_type_display_name`.*/
|
|
116994
117187
|
system_type_display_name?: string | undefined;
|
|
@@ -141541,6 +141734,22 @@ type Routes = {
|
|
|
141541
141734
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
141542
141735
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
141543
141736
|
} | undefined;
|
|
141737
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
141738
|
+
akiles_metadata?: {
|
|
141739
|
+
/** ID of the Akiles gadget. */
|
|
141740
|
+
gadget_id?: (string | undefined) | undefined;
|
|
141741
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
141742
|
+
site_id?: (string | undefined) | undefined;
|
|
141743
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
141744
|
+
site_name?: (string | undefined) | undefined;
|
|
141745
|
+
/** Actions the gadget exposes (for example, open). */
|
|
141746
|
+
actions?: ({
|
|
141747
|
+
/** ID of the gadget action. */
|
|
141748
|
+
id?: (string | undefined) | undefined;
|
|
141749
|
+
/** Name of the gadget action. */
|
|
141750
|
+
name?: (string | undefined) | undefined;
|
|
141751
|
+
}[] | undefined) | undefined;
|
|
141752
|
+
} | undefined;
|
|
141544
141753
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
141545
141754
|
is_locked?: boolean | undefined;
|
|
141546
141755
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -141578,7 +141787,7 @@ type Routes = {
|
|
|
141578
141787
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
141579
141788
|
acs_access_group_count?: number | undefined;
|
|
141580
141789
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
141581
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
141790
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
141582
141791
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
141583
141792
|
external_type_display_name?: string | undefined;
|
|
141584
141793
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -141594,7 +141803,7 @@ type Routes = {
|
|
|
141594
141803
|
} | undefined;
|
|
141595
141804
|
/**
|
|
141596
141805
|
* @deprecated Use `external_type`.*/
|
|
141597
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
141806
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
141598
141807
|
/**
|
|
141599
141808
|
* @deprecated Use `external_type_display_name`.*/
|
|
141600
141809
|
system_type_display_name?: string | undefined;
|
|
@@ -144272,6 +144481,22 @@ type Routes = {
|
|
|
144272
144481
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
144273
144482
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
144274
144483
|
} | undefined;
|
|
144484
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
144485
|
+
akiles_metadata?: {
|
|
144486
|
+
/** ID of the Akiles gadget. */
|
|
144487
|
+
gadget_id?: (string | undefined) | undefined;
|
|
144488
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
144489
|
+
site_id?: (string | undefined) | undefined;
|
|
144490
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
144491
|
+
site_name?: (string | undefined) | undefined;
|
|
144492
|
+
/** Actions the gadget exposes (for example, open). */
|
|
144493
|
+
actions?: ({
|
|
144494
|
+
/** ID of the gadget action. */
|
|
144495
|
+
id?: (string | undefined) | undefined;
|
|
144496
|
+
/** Name of the gadget action. */
|
|
144497
|
+
name?: (string | undefined) | undefined;
|
|
144498
|
+
}[] | undefined) | undefined;
|
|
144499
|
+
} | undefined;
|
|
144275
144500
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
144276
144501
|
is_locked?: boolean | undefined;
|
|
144277
144502
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -144295,7 +144520,7 @@ type Routes = {
|
|
|
144295
144520
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
144296
144521
|
acs_access_group_count?: number | undefined;
|
|
144297
144522
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
144298
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
144523
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
144299
144524
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
144300
144525
|
external_type_display_name?: string | undefined;
|
|
144301
144526
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -144311,7 +144536,7 @@ type Routes = {
|
|
|
144311
144536
|
} | undefined;
|
|
144312
144537
|
/**
|
|
144313
144538
|
* @deprecated Use `external_type`.*/
|
|
144314
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
144539
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
144315
144540
|
/**
|
|
144316
144541
|
* @deprecated Use `external_type_display_name`.*/
|
|
144317
144542
|
system_type_display_name?: string | undefined;
|
|
@@ -144700,14 +144925,14 @@ type Routes = {
|
|
|
144700
144925
|
name: string;
|
|
144701
144926
|
/**
|
|
144702
144927
|
* @deprecated Use `external_type`.*/
|
|
144703
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
144928
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
144704
144929
|
/**
|
|
144705
144930
|
* @deprecated Use `external_type_display_name`.*/
|
|
144706
144931
|
access_group_type_display_name: string;
|
|
144707
144932
|
/** Display name for the access group. */
|
|
144708
144933
|
display_name: string;
|
|
144709
144934
|
/** Brand-specific terminology for the access group type. */
|
|
144710
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
144935
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
144711
144936
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
144712
144937
|
external_type_display_name: string;
|
|
144713
144938
|
/** Date and time at which the access group was created. */
|
|
@@ -146867,14 +147092,14 @@ type Routes = {
|
|
|
146867
147092
|
name: string;
|
|
146868
147093
|
/**
|
|
146869
147094
|
* @deprecated Use `external_type`.*/
|
|
146870
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
147095
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
146871
147096
|
/**
|
|
146872
147097
|
* @deprecated Use `external_type_display_name`.*/
|
|
146873
147098
|
access_group_type_display_name: string;
|
|
146874
147099
|
/** Display name for the access group. */
|
|
146875
147100
|
display_name: string;
|
|
146876
147101
|
/** Brand-specific terminology for the access group type. */
|
|
146877
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group';
|
|
147102
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group' | 'kisi_access_group' | 'akiles_member_group';
|
|
146878
147103
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
146879
147104
|
external_type_display_name: string;
|
|
146880
147105
|
/** Date and time at which the access group was created. */
|