@seamapi/types 1.828.0 → 1.829.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 +109 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +321 -30
- package/dist/index.cjs +109 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +43 -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 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/avigilon-alta.d.ts +27 -0
- package/lib/seam/connect/models/acs/metadata/avigilon-alta.js +17 -0
- package/lib/seam/connect/models/acs/metadata/avigilon-alta.js.map +1 -0
- package/lib/seam/connect/models/batch.d.ts +71 -10
- package/lib/seam/connect/models/phones/phone-session.d.ts +176 -0
- package/lib/seam/connect/openapi.js +94 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +201 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -1
- package/src/lib/seam/connect/models/acs/metadata/avigilon-alta.ts +21 -0
- package/src/lib/seam/connect/openapi.ts +104 -2
- package/src/lib/seam/connect/route-types.ts +223 -14
package/dist/connect.d.cts
CHANGED
|
@@ -6532,6 +6532,31 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6532
6532
|
site_name: string;
|
|
6533
6533
|
access_point_id: string;
|
|
6534
6534
|
}>>;
|
|
6535
|
+
avigilon_alta_metadata: z.ZodOptional<z.ZodObject<{
|
|
6536
|
+
entry_name: z.ZodString;
|
|
6537
|
+
org_name: z.ZodString;
|
|
6538
|
+
zone_id: z.ZodNumber;
|
|
6539
|
+
zone_name: z.ZodString;
|
|
6540
|
+
site_id: z.ZodNumber;
|
|
6541
|
+
site_name: z.ZodString;
|
|
6542
|
+
entry_relays_total_count: z.ZodNumber;
|
|
6543
|
+
}, "strip", z.ZodTypeAny, {
|
|
6544
|
+
site_id: number;
|
|
6545
|
+
site_name: string;
|
|
6546
|
+
entry_name: string;
|
|
6547
|
+
org_name: string;
|
|
6548
|
+
zone_id: number;
|
|
6549
|
+
zone_name: string;
|
|
6550
|
+
entry_relays_total_count: number;
|
|
6551
|
+
}, {
|
|
6552
|
+
site_id: number;
|
|
6553
|
+
site_name: string;
|
|
6554
|
+
entry_name: string;
|
|
6555
|
+
org_name: string;
|
|
6556
|
+
zone_id: number;
|
|
6557
|
+
zone_name: string;
|
|
6558
|
+
entry_relays_total_count: number;
|
|
6559
|
+
}>>;
|
|
6535
6560
|
} & {
|
|
6536
6561
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
6537
6562
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6559,6 +6584,15 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6559
6584
|
intrusion_alarm?: boolean | undefined;
|
|
6560
6585
|
privacy_mode?: boolean | undefined;
|
|
6561
6586
|
} | undefined;
|
|
6587
|
+
avigilon_alta_metadata?: {
|
|
6588
|
+
site_id: number;
|
|
6589
|
+
site_name: string;
|
|
6590
|
+
entry_name: string;
|
|
6591
|
+
org_name: string;
|
|
6592
|
+
zone_id: number;
|
|
6593
|
+
zone_name: string;
|
|
6594
|
+
entry_relays_total_count: number;
|
|
6595
|
+
} | undefined;
|
|
6562
6596
|
brivo_metadata?: {
|
|
6563
6597
|
site_id: number;
|
|
6564
6598
|
site_name: string;
|
|
@@ -6630,6 +6664,15 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6630
6664
|
intrusion_alarm?: boolean | undefined;
|
|
6631
6665
|
privacy_mode?: boolean | undefined;
|
|
6632
6666
|
} | undefined;
|
|
6667
|
+
avigilon_alta_metadata?: {
|
|
6668
|
+
site_id: number;
|
|
6669
|
+
site_name: string;
|
|
6670
|
+
entry_name: string;
|
|
6671
|
+
org_name: string;
|
|
6672
|
+
zone_id: number;
|
|
6673
|
+
zone_name: string;
|
|
6674
|
+
entry_relays_total_count: number;
|
|
6675
|
+
} | undefined;
|
|
6633
6676
|
brivo_metadata?: {
|
|
6634
6677
|
site_id: number;
|
|
6635
6678
|
site_name: string;
|
|
@@ -6688,7 +6731,7 @@ declare const acs_system: z.ZodObject<{
|
|
|
6688
6731
|
acs_system_id: z.ZodString;
|
|
6689
6732
|
acs_user_count: z.ZodOptional<z.ZodNumber>;
|
|
6690
6733
|
acs_access_group_count: z.ZodOptional<z.ZodNumber>;
|
|
6691
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "
|
|
6734
|
+
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"]>>;
|
|
6692
6735
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
6693
6736
|
is_credential_manager: z.ZodBoolean;
|
|
6694
6737
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -6704,7 +6747,7 @@ declare const acs_system: z.ZodObject<{
|
|
|
6704
6747
|
system_id: string;
|
|
6705
6748
|
lan_address: string;
|
|
6706
6749
|
}>>;
|
|
6707
|
-
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "
|
|
6750
|
+
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"]>>;
|
|
6708
6751
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
6709
6752
|
location: z.ZodObject<{
|
|
6710
6753
|
time_zone: z.ZodNullable<z.ZodString>;
|
|
@@ -6903,12 +6946,12 @@ declare const acs_system: z.ZodObject<{
|
|
|
6903
6946
|
system_id: string;
|
|
6904
6947
|
lan_address: string;
|
|
6905
6948
|
} | undefined;
|
|
6906
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
6949
|
+
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" | undefined;
|
|
6907
6950
|
external_type_display_name?: string | undefined;
|
|
6908
6951
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
6909
6952
|
acs_user_count?: number | undefined;
|
|
6910
6953
|
acs_access_group_count?: number | undefined;
|
|
6911
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
6954
|
+
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" | undefined;
|
|
6912
6955
|
system_type_display_name?: string | undefined;
|
|
6913
6956
|
}, {
|
|
6914
6957
|
name: string;
|
|
@@ -6968,12 +7011,12 @@ declare const acs_system: z.ZodObject<{
|
|
|
6968
7011
|
system_id: string;
|
|
6969
7012
|
lan_address: string;
|
|
6970
7013
|
} | undefined;
|
|
6971
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
7014
|
+
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" | undefined;
|
|
6972
7015
|
external_type_display_name?: string | undefined;
|
|
6973
7016
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
6974
7017
|
acs_user_count?: number | undefined;
|
|
6975
7018
|
acs_access_group_count?: number | undefined;
|
|
6976
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
7019
|
+
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" | undefined;
|
|
6977
7020
|
system_type_display_name?: string | undefined;
|
|
6978
7021
|
}>;
|
|
6979
7022
|
type AcsSystem = z.output<typeof acs_system>;
|
|
@@ -17769,6 +17812,31 @@ declare const batch: z.ZodObject<{
|
|
|
17769
17812
|
site_name: string;
|
|
17770
17813
|
access_point_id: string;
|
|
17771
17814
|
}>>;
|
|
17815
|
+
avigilon_alta_metadata: z.ZodOptional<z.ZodObject<{
|
|
17816
|
+
entry_name: z.ZodString;
|
|
17817
|
+
org_name: z.ZodString;
|
|
17818
|
+
zone_id: z.ZodNumber;
|
|
17819
|
+
zone_name: z.ZodString;
|
|
17820
|
+
site_id: z.ZodNumber;
|
|
17821
|
+
site_name: z.ZodString;
|
|
17822
|
+
entry_relays_total_count: z.ZodNumber;
|
|
17823
|
+
}, "strip", z.ZodTypeAny, {
|
|
17824
|
+
site_id: number;
|
|
17825
|
+
site_name: string;
|
|
17826
|
+
entry_name: string;
|
|
17827
|
+
org_name: string;
|
|
17828
|
+
zone_id: number;
|
|
17829
|
+
zone_name: string;
|
|
17830
|
+
entry_relays_total_count: number;
|
|
17831
|
+
}, {
|
|
17832
|
+
site_id: number;
|
|
17833
|
+
site_name: string;
|
|
17834
|
+
entry_name: string;
|
|
17835
|
+
org_name: string;
|
|
17836
|
+
zone_id: number;
|
|
17837
|
+
zone_name: string;
|
|
17838
|
+
entry_relays_total_count: number;
|
|
17839
|
+
}>>;
|
|
17772
17840
|
} & {
|
|
17773
17841
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
17774
17842
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17796,6 +17864,15 @@ declare const batch: z.ZodObject<{
|
|
|
17796
17864
|
intrusion_alarm?: boolean | undefined;
|
|
17797
17865
|
privacy_mode?: boolean | undefined;
|
|
17798
17866
|
} | undefined;
|
|
17867
|
+
avigilon_alta_metadata?: {
|
|
17868
|
+
site_id: number;
|
|
17869
|
+
site_name: string;
|
|
17870
|
+
entry_name: string;
|
|
17871
|
+
org_name: string;
|
|
17872
|
+
zone_id: number;
|
|
17873
|
+
zone_name: string;
|
|
17874
|
+
entry_relays_total_count: number;
|
|
17875
|
+
} | undefined;
|
|
17799
17876
|
brivo_metadata?: {
|
|
17800
17877
|
site_id: number;
|
|
17801
17878
|
site_name: string;
|
|
@@ -17867,6 +17944,15 @@ declare const batch: z.ZodObject<{
|
|
|
17867
17944
|
intrusion_alarm?: boolean | undefined;
|
|
17868
17945
|
privacy_mode?: boolean | undefined;
|
|
17869
17946
|
} | undefined;
|
|
17947
|
+
avigilon_alta_metadata?: {
|
|
17948
|
+
site_id: number;
|
|
17949
|
+
site_name: string;
|
|
17950
|
+
entry_name: string;
|
|
17951
|
+
org_name: string;
|
|
17952
|
+
zone_id: number;
|
|
17953
|
+
zone_name: string;
|
|
17954
|
+
entry_relays_total_count: number;
|
|
17955
|
+
} | undefined;
|
|
17870
17956
|
brivo_metadata?: {
|
|
17871
17957
|
site_id: number;
|
|
17872
17958
|
site_name: string;
|
|
@@ -17923,7 +18009,7 @@ declare const batch: z.ZodObject<{
|
|
|
17923
18009
|
acs_system_id: z.ZodString;
|
|
17924
18010
|
acs_user_count: z.ZodOptional<z.ZodNumber>;
|
|
17925
18011
|
acs_access_group_count: z.ZodOptional<z.ZodNumber>;
|
|
17926
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "
|
|
18012
|
+
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"]>>;
|
|
17927
18013
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
17928
18014
|
is_credential_manager: z.ZodBoolean;
|
|
17929
18015
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -17939,7 +18025,7 @@ declare const batch: z.ZodObject<{
|
|
|
17939
18025
|
system_id: string;
|
|
17940
18026
|
lan_address: string;
|
|
17941
18027
|
}>>;
|
|
17942
|
-
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "
|
|
18028
|
+
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"]>>;
|
|
17943
18029
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
17944
18030
|
location: z.ZodObject<{
|
|
17945
18031
|
time_zone: z.ZodNullable<z.ZodString>;
|
|
@@ -18138,12 +18224,12 @@ declare const batch: z.ZodObject<{
|
|
|
18138
18224
|
system_id: string;
|
|
18139
18225
|
lan_address: string;
|
|
18140
18226
|
} | undefined;
|
|
18141
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
18227
|
+
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" | undefined;
|
|
18142
18228
|
external_type_display_name?: string | undefined;
|
|
18143
18229
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
18144
18230
|
acs_user_count?: number | undefined;
|
|
18145
18231
|
acs_access_group_count?: number | undefined;
|
|
18146
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
18232
|
+
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" | undefined;
|
|
18147
18233
|
system_type_display_name?: string | undefined;
|
|
18148
18234
|
}, {
|
|
18149
18235
|
name: string;
|
|
@@ -18203,12 +18289,12 @@ declare const batch: z.ZodObject<{
|
|
|
18203
18289
|
system_id: string;
|
|
18204
18290
|
lan_address: string;
|
|
18205
18291
|
} | undefined;
|
|
18206
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
18292
|
+
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" | undefined;
|
|
18207
18293
|
external_type_display_name?: string | undefined;
|
|
18208
18294
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
18209
18295
|
acs_user_count?: number | undefined;
|
|
18210
18296
|
acs_access_group_count?: number | undefined;
|
|
18211
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
18297
|
+
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" | undefined;
|
|
18212
18298
|
system_type_display_name?: string | undefined;
|
|
18213
18299
|
}>, "many">>;
|
|
18214
18300
|
acs_users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -39271,6 +39357,15 @@ declare const batch: z.ZodObject<{
|
|
|
39271
39357
|
intrusion_alarm?: boolean | undefined;
|
|
39272
39358
|
privacy_mode?: boolean | undefined;
|
|
39273
39359
|
} | undefined;
|
|
39360
|
+
avigilon_alta_metadata?: {
|
|
39361
|
+
site_id: number;
|
|
39362
|
+
site_name: string;
|
|
39363
|
+
entry_name: string;
|
|
39364
|
+
org_name: string;
|
|
39365
|
+
zone_id: number;
|
|
39366
|
+
zone_name: string;
|
|
39367
|
+
entry_relays_total_count: number;
|
|
39368
|
+
} | undefined;
|
|
39274
39369
|
brivo_metadata?: {
|
|
39275
39370
|
site_id: number;
|
|
39276
39371
|
site_name: string;
|
|
@@ -39380,12 +39475,12 @@ declare const batch: z.ZodObject<{
|
|
|
39380
39475
|
system_id: string;
|
|
39381
39476
|
lan_address: string;
|
|
39382
39477
|
} | undefined;
|
|
39383
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
39478
|
+
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" | undefined;
|
|
39384
39479
|
external_type_display_name?: string | undefined;
|
|
39385
39480
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
39386
39481
|
acs_user_count?: number | undefined;
|
|
39387
39482
|
acs_access_group_count?: number | undefined;
|
|
39388
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
39483
|
+
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" | undefined;
|
|
39389
39484
|
system_type_display_name?: string | undefined;
|
|
39390
39485
|
}[] | undefined;
|
|
39391
39486
|
acs_users?: {
|
|
@@ -44237,6 +44332,15 @@ declare const batch: z.ZodObject<{
|
|
|
44237
44332
|
intrusion_alarm?: boolean | undefined;
|
|
44238
44333
|
privacy_mode?: boolean | undefined;
|
|
44239
44334
|
} | undefined;
|
|
44335
|
+
avigilon_alta_metadata?: {
|
|
44336
|
+
site_id: number;
|
|
44337
|
+
site_name: string;
|
|
44338
|
+
entry_name: string;
|
|
44339
|
+
org_name: string;
|
|
44340
|
+
zone_id: number;
|
|
44341
|
+
zone_name: string;
|
|
44342
|
+
entry_relays_total_count: number;
|
|
44343
|
+
} | undefined;
|
|
44240
44344
|
brivo_metadata?: {
|
|
44241
44345
|
site_id: number;
|
|
44242
44346
|
site_name: string;
|
|
@@ -44346,12 +44450,12 @@ declare const batch: z.ZodObject<{
|
|
|
44346
44450
|
system_id: string;
|
|
44347
44451
|
lan_address: string;
|
|
44348
44452
|
} | undefined;
|
|
44349
|
-
external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
44453
|
+
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" | undefined;
|
|
44350
44454
|
external_type_display_name?: string | undefined;
|
|
44351
44455
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
44352
44456
|
acs_user_count?: number | undefined;
|
|
44353
44457
|
acs_access_group_count?: number | undefined;
|
|
44354
|
-
system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "
|
|
44458
|
+
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" | undefined;
|
|
44355
44459
|
system_type_display_name?: string | undefined;
|
|
44356
44460
|
}[] | undefined;
|
|
44357
44461
|
acs_users?: {
|
|
@@ -76700,6 +76804,23 @@ type Routes = {
|
|
|
76700
76804
|
/** Name of the site that the access point belongs to. */
|
|
76701
76805
|
site_name: string;
|
|
76702
76806
|
} | undefined;
|
|
76807
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
76808
|
+
avigilon_alta_metadata?: {
|
|
76809
|
+
/** Entry name for an Avigilon Alta system. */
|
|
76810
|
+
entry_name: string;
|
|
76811
|
+
/** Organization name for an Avigilon Alta system. */
|
|
76812
|
+
org_name: string;
|
|
76813
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
76814
|
+
zone_id: number;
|
|
76815
|
+
/** Zone name for an Avigilon Alta system. */
|
|
76816
|
+
zone_name: string;
|
|
76817
|
+
/** Site ID for an Avigilon Alta system. */
|
|
76818
|
+
site_id: number;
|
|
76819
|
+
/** Site name for an Avigilon Alta system. */
|
|
76820
|
+
site_name: string;
|
|
76821
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
76822
|
+
entry_relays_total_count: number;
|
|
76823
|
+
} | undefined;
|
|
76703
76824
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
76704
76825
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
76705
76826
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -76857,7 +76978,7 @@ type Routes = {
|
|
|
76857
76978
|
acs_user_count?: number | undefined;
|
|
76858
76979
|
acs_access_group_count?: number | undefined;
|
|
76859
76980
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
76860
|
-
external_type?: ('pti_site' | '
|
|
76981
|
+
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') | undefined;
|
|
76861
76982
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
76862
76983
|
external_type_display_name?: string | undefined;
|
|
76863
76984
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -76872,7 +76993,7 @@ type Routes = {
|
|
|
76872
76993
|
} | undefined;
|
|
76873
76994
|
/**
|
|
76874
76995
|
* @deprecated Use `external_type`.*/
|
|
76875
|
-
system_type?: ('pti_site' | '
|
|
76996
|
+
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') | undefined;
|
|
76876
76997
|
/**
|
|
76877
76998
|
* @deprecated Use `external_type_display_name`.*/
|
|
76878
76999
|
system_type_display_name?: string | undefined;
|
|
@@ -81131,6 +81252,23 @@ type Routes = {
|
|
|
81131
81252
|
/** Name of the site that the access point belongs to. */
|
|
81132
81253
|
site_name: string;
|
|
81133
81254
|
} | undefined;
|
|
81255
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
81256
|
+
avigilon_alta_metadata?: {
|
|
81257
|
+
/** Entry name for an Avigilon Alta system. */
|
|
81258
|
+
entry_name: string;
|
|
81259
|
+
/** Organization name for an Avigilon Alta system. */
|
|
81260
|
+
org_name: string;
|
|
81261
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
81262
|
+
zone_id: number;
|
|
81263
|
+
/** Zone name for an Avigilon Alta system. */
|
|
81264
|
+
zone_name: string;
|
|
81265
|
+
/** Site ID for an Avigilon Alta system. */
|
|
81266
|
+
site_id: number;
|
|
81267
|
+
/** Site name for an Avigilon Alta system. */
|
|
81268
|
+
site_name: string;
|
|
81269
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
81270
|
+
entry_relays_total_count: number;
|
|
81271
|
+
} | undefined;
|
|
81134
81272
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
81135
81273
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
81136
81274
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -82525,6 +82663,23 @@ type Routes = {
|
|
|
82525
82663
|
/** Name of the site that the access point belongs to. */
|
|
82526
82664
|
site_name: string;
|
|
82527
82665
|
} | undefined;
|
|
82666
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
82667
|
+
avigilon_alta_metadata?: {
|
|
82668
|
+
/** Entry name for an Avigilon Alta system. */
|
|
82669
|
+
entry_name: string;
|
|
82670
|
+
/** Organization name for an Avigilon Alta system. */
|
|
82671
|
+
org_name: string;
|
|
82672
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
82673
|
+
zone_id: number;
|
|
82674
|
+
/** Zone name for an Avigilon Alta system. */
|
|
82675
|
+
zone_name: string;
|
|
82676
|
+
/** Site ID for an Avigilon Alta system. */
|
|
82677
|
+
site_id: number;
|
|
82678
|
+
/** Site name for an Avigilon Alta system. */
|
|
82679
|
+
site_name: string;
|
|
82680
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
82681
|
+
entry_relays_total_count: number;
|
|
82682
|
+
} | undefined;
|
|
82528
82683
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
82529
82684
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
82530
82685
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -84203,6 +84358,23 @@ type Routes = {
|
|
|
84203
84358
|
/** Name of the site that the access point belongs to. */
|
|
84204
84359
|
site_name: string;
|
|
84205
84360
|
} | undefined;
|
|
84361
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84362
|
+
avigilon_alta_metadata?: {
|
|
84363
|
+
/** Entry name for an Avigilon Alta system. */
|
|
84364
|
+
entry_name: string;
|
|
84365
|
+
/** Organization name for an Avigilon Alta system. */
|
|
84366
|
+
org_name: string;
|
|
84367
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
84368
|
+
zone_id: number;
|
|
84369
|
+
/** Zone name for an Avigilon Alta system. */
|
|
84370
|
+
zone_name: string;
|
|
84371
|
+
/** Site ID for an Avigilon Alta system. */
|
|
84372
|
+
site_id: number;
|
|
84373
|
+
/** Site name for an Avigilon Alta system. */
|
|
84374
|
+
site_name: string;
|
|
84375
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
84376
|
+
entry_relays_total_count: number;
|
|
84377
|
+
} | undefined;
|
|
84206
84378
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
84207
84379
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
84208
84380
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -87839,6 +88011,23 @@ type Routes = {
|
|
|
87839
88011
|
/** Name of the site that the access point belongs to. */
|
|
87840
88012
|
site_name: string;
|
|
87841
88013
|
} | undefined;
|
|
88014
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
88015
|
+
avigilon_alta_metadata?: {
|
|
88016
|
+
/** Entry name for an Avigilon Alta system. */
|
|
88017
|
+
entry_name: string;
|
|
88018
|
+
/** Organization name for an Avigilon Alta system. */
|
|
88019
|
+
org_name: string;
|
|
88020
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
88021
|
+
zone_id: number;
|
|
88022
|
+
/** Zone name for an Avigilon Alta system. */
|
|
88023
|
+
zone_name: string;
|
|
88024
|
+
/** Site ID for an Avigilon Alta system. */
|
|
88025
|
+
site_id: number;
|
|
88026
|
+
/** Site name for an Avigilon Alta system. */
|
|
88027
|
+
site_name: string;
|
|
88028
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
88029
|
+
entry_relays_total_count: number;
|
|
88030
|
+
} | undefined;
|
|
87842
88031
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
87843
88032
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
87844
88033
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -88020,6 +88209,23 @@ type Routes = {
|
|
|
88020
88209
|
/** Name of the site that the access point belongs to. */
|
|
88021
88210
|
site_name: string;
|
|
88022
88211
|
} | undefined;
|
|
88212
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
88213
|
+
avigilon_alta_metadata?: {
|
|
88214
|
+
/** Entry name for an Avigilon Alta system. */
|
|
88215
|
+
entry_name: string;
|
|
88216
|
+
/** Organization name for an Avigilon Alta system. */
|
|
88217
|
+
org_name: string;
|
|
88218
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
88219
|
+
zone_id: number;
|
|
88220
|
+
/** Zone name for an Avigilon Alta system. */
|
|
88221
|
+
zone_name: string;
|
|
88222
|
+
/** Site ID for an Avigilon Alta system. */
|
|
88223
|
+
site_id: number;
|
|
88224
|
+
/** Site name for an Avigilon Alta system. */
|
|
88225
|
+
site_name: string;
|
|
88226
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
88227
|
+
entry_relays_total_count: number;
|
|
88228
|
+
} | undefined;
|
|
88023
88229
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
88024
88230
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
88025
88231
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -89556,7 +89762,7 @@ type Routes = {
|
|
|
89556
89762
|
acs_user_count?: number | undefined;
|
|
89557
89763
|
acs_access_group_count?: number | undefined;
|
|
89558
89764
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
89559
|
-
external_type?: ('pti_site' | '
|
|
89765
|
+
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') | undefined;
|
|
89560
89766
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
89561
89767
|
external_type_display_name?: string | undefined;
|
|
89562
89768
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -89571,7 +89777,7 @@ type Routes = {
|
|
|
89571
89777
|
} | undefined;
|
|
89572
89778
|
/**
|
|
89573
89779
|
* @deprecated Use `external_type`.*/
|
|
89574
|
-
system_type?: ('pti_site' | '
|
|
89780
|
+
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') | undefined;
|
|
89575
89781
|
/**
|
|
89576
89782
|
* @deprecated Use `external_type_display_name`.*/
|
|
89577
89783
|
system_type_display_name?: string | undefined;
|
|
@@ -89692,7 +89898,7 @@ type Routes = {
|
|
|
89692
89898
|
acs_user_count?: number | undefined;
|
|
89693
89899
|
acs_access_group_count?: number | undefined;
|
|
89694
89900
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
89695
|
-
external_type?: ('pti_site' | '
|
|
89901
|
+
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') | undefined;
|
|
89696
89902
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
89697
89903
|
external_type_display_name?: string | undefined;
|
|
89698
89904
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -89707,7 +89913,7 @@ type Routes = {
|
|
|
89707
89913
|
} | undefined;
|
|
89708
89914
|
/**
|
|
89709
89915
|
* @deprecated Use `external_type`.*/
|
|
89710
|
-
system_type?: ('pti_site' | '
|
|
89916
|
+
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') | undefined;
|
|
89711
89917
|
/**
|
|
89712
89918
|
* @deprecated Use `external_type_display_name`.*/
|
|
89713
89919
|
system_type_display_name?: string | undefined;
|
|
@@ -89824,7 +90030,7 @@ type Routes = {
|
|
|
89824
90030
|
acs_user_count?: number | undefined;
|
|
89825
90031
|
acs_access_group_count?: number | undefined;
|
|
89826
90032
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
89827
|
-
external_type?: ('pti_site' | '
|
|
90033
|
+
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') | undefined;
|
|
89828
90034
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
89829
90035
|
external_type_display_name?: string | undefined;
|
|
89830
90036
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -89839,7 +90045,7 @@ type Routes = {
|
|
|
89839
90045
|
} | undefined;
|
|
89840
90046
|
/**
|
|
89841
90047
|
* @deprecated Use `external_type`.*/
|
|
89842
|
-
system_type?: ('pti_site' | '
|
|
90048
|
+
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') | undefined;
|
|
89843
90049
|
/**
|
|
89844
90050
|
* @deprecated Use `external_type_display_name`.*/
|
|
89845
90051
|
system_type_display_name?: string | undefined;
|
|
@@ -90944,6 +91150,23 @@ type Routes = {
|
|
|
90944
91150
|
/** Name of the site that the access point belongs to. */
|
|
90945
91151
|
site_name: string;
|
|
90946
91152
|
} | undefined;
|
|
91153
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
91154
|
+
avigilon_alta_metadata?: {
|
|
91155
|
+
/** Entry name for an Avigilon Alta system. */
|
|
91156
|
+
entry_name: string;
|
|
91157
|
+
/** Organization name for an Avigilon Alta system. */
|
|
91158
|
+
org_name: string;
|
|
91159
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
91160
|
+
zone_id: number;
|
|
91161
|
+
/** Zone name for an Avigilon Alta system. */
|
|
91162
|
+
zone_name: string;
|
|
91163
|
+
/** Site ID for an Avigilon Alta system. */
|
|
91164
|
+
site_id: number;
|
|
91165
|
+
/** Site name for an Avigilon Alta system. */
|
|
91166
|
+
site_name: string;
|
|
91167
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
91168
|
+
entry_relays_total_count: number;
|
|
91169
|
+
} | undefined;
|
|
90947
91170
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
90948
91171
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
90949
91172
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -132489,6 +132712,23 @@ type Routes = {
|
|
|
132489
132712
|
/** Name of the site that the access point belongs to. */
|
|
132490
132713
|
site_name: string;
|
|
132491
132714
|
} | undefined;
|
|
132715
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
132716
|
+
avigilon_alta_metadata?: {
|
|
132717
|
+
/** Entry name for an Avigilon Alta system. */
|
|
132718
|
+
entry_name: string;
|
|
132719
|
+
/** Organization name for an Avigilon Alta system. */
|
|
132720
|
+
org_name: string;
|
|
132721
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
132722
|
+
zone_id: number;
|
|
132723
|
+
/** Zone name for an Avigilon Alta system. */
|
|
132724
|
+
zone_name: string;
|
|
132725
|
+
/** Site ID for an Avigilon Alta system. */
|
|
132726
|
+
site_id: number;
|
|
132727
|
+
/** Site name for an Avigilon Alta system. */
|
|
132728
|
+
site_name: string;
|
|
132729
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
132730
|
+
entry_relays_total_count: number;
|
|
132731
|
+
} | undefined;
|
|
132492
132732
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
132493
132733
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
132494
132734
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -134283,6 +134523,23 @@ type Routes = {
|
|
|
134283
134523
|
/** Name of the site that the access point belongs to. */
|
|
134284
134524
|
site_name: string;
|
|
134285
134525
|
} | undefined;
|
|
134526
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
134527
|
+
avigilon_alta_metadata?: {
|
|
134528
|
+
/** Entry name for an Avigilon Alta system. */
|
|
134529
|
+
entry_name: string;
|
|
134530
|
+
/** Organization name for an Avigilon Alta system. */
|
|
134531
|
+
org_name: string;
|
|
134532
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
134533
|
+
zone_id: number;
|
|
134534
|
+
/** Zone name for an Avigilon Alta system. */
|
|
134535
|
+
zone_name: string;
|
|
134536
|
+
/** Site ID for an Avigilon Alta system. */
|
|
134537
|
+
site_id: number;
|
|
134538
|
+
/** Site name for an Avigilon Alta system. */
|
|
134539
|
+
site_name: string;
|
|
134540
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
134541
|
+
entry_relays_total_count: number;
|
|
134542
|
+
} | undefined;
|
|
134286
134543
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
134287
134544
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
134288
134545
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -134440,7 +134697,7 @@ type Routes = {
|
|
|
134440
134697
|
acs_user_count?: number | undefined;
|
|
134441
134698
|
acs_access_group_count?: number | undefined;
|
|
134442
134699
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
134443
|
-
external_type?: ('pti_site' | '
|
|
134700
|
+
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') | undefined;
|
|
134444
134701
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
134445
134702
|
external_type_display_name?: string | undefined;
|
|
134446
134703
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -134455,7 +134712,7 @@ type Routes = {
|
|
|
134455
134712
|
} | undefined;
|
|
134456
134713
|
/**
|
|
134457
134714
|
* @deprecated Use `external_type`.*/
|
|
134458
|
-
system_type?: ('pti_site' | '
|
|
134715
|
+
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') | undefined;
|
|
134459
134716
|
/**
|
|
134460
134717
|
* @deprecated Use `external_type_display_name`.*/
|
|
134461
134718
|
system_type_display_name?: string | undefined;
|
|
@@ -154859,6 +155116,23 @@ type Routes = {
|
|
|
154859
155116
|
/** Name of the site that the access point belongs to. */
|
|
154860
155117
|
site_name: string;
|
|
154861
155118
|
} | undefined;
|
|
155119
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
155120
|
+
avigilon_alta_metadata?: {
|
|
155121
|
+
/** Entry name for an Avigilon Alta system. */
|
|
155122
|
+
entry_name: string;
|
|
155123
|
+
/** Organization name for an Avigilon Alta system. */
|
|
155124
|
+
org_name: string;
|
|
155125
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
155126
|
+
zone_id: number;
|
|
155127
|
+
/** Zone name for an Avigilon Alta system. */
|
|
155128
|
+
zone_name: string;
|
|
155129
|
+
/** Site ID for an Avigilon Alta system. */
|
|
155130
|
+
site_id: number;
|
|
155131
|
+
/** Site name for an Avigilon Alta system. */
|
|
155132
|
+
site_name: string;
|
|
155133
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
155134
|
+
entry_relays_total_count: number;
|
|
155135
|
+
} | undefined;
|
|
154862
155136
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
154863
155137
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
154864
155138
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -154892,7 +155166,7 @@ type Routes = {
|
|
|
154892
155166
|
acs_user_count?: number | undefined;
|
|
154893
155167
|
acs_access_group_count?: number | undefined;
|
|
154894
155168
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
154895
|
-
external_type?: ('pti_site' | '
|
|
155169
|
+
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') | undefined;
|
|
154896
155170
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
154897
155171
|
external_type_display_name?: string | undefined;
|
|
154898
155172
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -154907,7 +155181,7 @@ type Routes = {
|
|
|
154907
155181
|
} | undefined;
|
|
154908
155182
|
/**
|
|
154909
155183
|
* @deprecated Use `external_type`.*/
|
|
154910
|
-
system_type?: ('pti_site' | '
|
|
155184
|
+
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') | undefined;
|
|
154911
155185
|
/**
|
|
154912
155186
|
* @deprecated Use `external_type_display_name`.*/
|
|
154913
155187
|
system_type_display_name?: string | undefined;
|
|
@@ -157301,6 +157575,23 @@ type Routes = {
|
|
|
157301
157575
|
/** Name of the site that the access point belongs to. */
|
|
157302
157576
|
site_name: string;
|
|
157303
157577
|
} | undefined;
|
|
157578
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
157579
|
+
avigilon_alta_metadata?: {
|
|
157580
|
+
/** Entry name for an Avigilon Alta system. */
|
|
157581
|
+
entry_name: string;
|
|
157582
|
+
/** Organization name for an Avigilon Alta system. */
|
|
157583
|
+
org_name: string;
|
|
157584
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
157585
|
+
zone_id: number;
|
|
157586
|
+
/** Zone name for an Avigilon Alta system. */
|
|
157587
|
+
zone_name: string;
|
|
157588
|
+
/** Site ID for an Avigilon Alta system. */
|
|
157589
|
+
site_id: number;
|
|
157590
|
+
/** Site name for an Avigilon Alta system. */
|
|
157591
|
+
site_name: string;
|
|
157592
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
157593
|
+
entry_relays_total_count: number;
|
|
157594
|
+
} | undefined;
|
|
157304
157595
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
157305
157596
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
157306
157597
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -157320,7 +157611,7 @@ type Routes = {
|
|
|
157320
157611
|
acs_user_count?: number | undefined;
|
|
157321
157612
|
acs_access_group_count?: number | undefined;
|
|
157322
157613
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
157323
|
-
external_type?: ('pti_site' | '
|
|
157614
|
+
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') | undefined;
|
|
157324
157615
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
|
|
157325
157616
|
external_type_display_name?: string | undefined;
|
|
157326
157617
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -157335,7 +157626,7 @@ type Routes = {
|
|
|
157335
157626
|
} | undefined;
|
|
157336
157627
|
/**
|
|
157337
157628
|
* @deprecated Use `external_type`.*/
|
|
157338
|
-
system_type?: ('pti_site' | '
|
|
157629
|
+
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') | undefined;
|
|
157339
157630
|
/**
|
|
157340
157631
|
* @deprecated Use `external_type_display_name`.*/
|
|
157341
157632
|
system_type_display_name?: string | undefined;
|