@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
|
@@ -13194,6 +13194,22 @@ export type Routes = {
|
|
|
13194
13194
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
13195
13195
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
13196
13196
|
} | undefined;
|
|
13197
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
13198
|
+
akiles_metadata?: {
|
|
13199
|
+
/** ID of the Akiles gadget. */
|
|
13200
|
+
gadget_id?: (string | undefined) | undefined;
|
|
13201
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
13202
|
+
site_id?: (string | undefined) | undefined;
|
|
13203
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
13204
|
+
site_name?: (string | undefined) | undefined;
|
|
13205
|
+
/** Actions the gadget exposes (for example, open). */
|
|
13206
|
+
actions?: ({
|
|
13207
|
+
/** ID of the gadget action. */
|
|
13208
|
+
id?: (string | undefined) | undefined;
|
|
13209
|
+
/** Name of the gadget action. */
|
|
13210
|
+
name?: (string | undefined) | undefined;
|
|
13211
|
+
}[] | undefined) | undefined;
|
|
13212
|
+
} | undefined;
|
|
13197
13213
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
13198
13214
|
is_locked?: boolean | undefined;
|
|
13199
13215
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -13397,7 +13413,7 @@ export type Routes = {
|
|
|
13397
13413
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
13398
13414
|
acs_access_group_count?: number | undefined;
|
|
13399
13415
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
13400
|
-
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;
|
|
13416
|
+
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;
|
|
13401
13417
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
13402
13418
|
external_type_display_name?: string | undefined;
|
|
13403
13419
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -13413,7 +13429,7 @@ export type Routes = {
|
|
|
13413
13429
|
} | undefined;
|
|
13414
13430
|
/**
|
|
13415
13431
|
* @deprecated Use `external_type`.*/
|
|
13416
|
-
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;
|
|
13432
|
+
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;
|
|
13417
13433
|
/**
|
|
13418
13434
|
* @deprecated Use `external_type_display_name`.*/
|
|
13419
13435
|
system_type_display_name?: string | undefined;
|
|
@@ -13586,14 +13602,14 @@ export type Routes = {
|
|
|
13586
13602
|
name: string;
|
|
13587
13603
|
/**
|
|
13588
13604
|
* @deprecated Use `external_type`.*/
|
|
13589
|
-
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';
|
|
13605
|
+
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';
|
|
13590
13606
|
/**
|
|
13591
13607
|
* @deprecated Use `external_type_display_name`.*/
|
|
13592
13608
|
access_group_type_display_name: string;
|
|
13593
13609
|
/** Display name for the access group. */
|
|
13594
13610
|
display_name: string;
|
|
13595
13611
|
/** Brand-specific terminology for the access group type. */
|
|
13596
|
-
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';
|
|
13612
|
+
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';
|
|
13597
13613
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
13598
13614
|
external_type_display_name: string;
|
|
13599
13615
|
/** Date and time at which the access group was created. */
|
|
@@ -20012,6 +20028,22 @@ export type Routes = {
|
|
|
20012
20028
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
20013
20029
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
20014
20030
|
} | undefined;
|
|
20031
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
20032
|
+
akiles_metadata?: {
|
|
20033
|
+
/** ID of the Akiles gadget. */
|
|
20034
|
+
gadget_id?: (string | undefined) | undefined;
|
|
20035
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
20036
|
+
site_id?: (string | undefined) | undefined;
|
|
20037
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
20038
|
+
site_name?: (string | undefined) | undefined;
|
|
20039
|
+
/** Actions the gadget exposes (for example, open). */
|
|
20040
|
+
actions?: ({
|
|
20041
|
+
/** ID of the gadget action. */
|
|
20042
|
+
id?: (string | undefined) | undefined;
|
|
20043
|
+
/** Name of the gadget action. */
|
|
20044
|
+
name?: (string | undefined) | undefined;
|
|
20045
|
+
}[] | undefined) | undefined;
|
|
20046
|
+
} | undefined;
|
|
20015
20047
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
20016
20048
|
is_locked?: boolean | undefined;
|
|
20017
20049
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -22731,14 +22763,14 @@ export type Routes = {
|
|
|
22731
22763
|
name: string;
|
|
22732
22764
|
/**
|
|
22733
22765
|
* @deprecated Use `external_type`.*/
|
|
22734
|
-
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';
|
|
22766
|
+
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';
|
|
22735
22767
|
/**
|
|
22736
22768
|
* @deprecated Use `external_type_display_name`.*/
|
|
22737
22769
|
access_group_type_display_name: string;
|
|
22738
22770
|
/** Display name for the access group. */
|
|
22739
22771
|
display_name: string;
|
|
22740
22772
|
/** Brand-specific terminology for the access group type. */
|
|
22741
|
-
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';
|
|
22773
|
+
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';
|
|
22742
22774
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
22743
22775
|
external_type_display_name: string;
|
|
22744
22776
|
/** Date and time at which the access group was created. */
|
|
@@ -22917,14 +22949,14 @@ export type Routes = {
|
|
|
22917
22949
|
name: string;
|
|
22918
22950
|
/**
|
|
22919
22951
|
* @deprecated Use `external_type`.*/
|
|
22920
|
-
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';
|
|
22952
|
+
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';
|
|
22921
22953
|
/**
|
|
22922
22954
|
* @deprecated Use `external_type_display_name`.*/
|
|
22923
22955
|
access_group_type_display_name: string;
|
|
22924
22956
|
/** Display name for the access group. */
|
|
22925
22957
|
display_name: string;
|
|
22926
22958
|
/** Brand-specific terminology for the access group type. */
|
|
22927
|
-
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';
|
|
22959
|
+
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';
|
|
22928
22960
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
22929
22961
|
external_type_display_name: string;
|
|
22930
22962
|
/** Date and time at which the access group was created. */
|
|
@@ -23260,6 +23292,22 @@ export type Routes = {
|
|
|
23260
23292
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
23261
23293
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
23262
23294
|
} | undefined;
|
|
23295
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
23296
|
+
akiles_metadata?: {
|
|
23297
|
+
/** ID of the Akiles gadget. */
|
|
23298
|
+
gadget_id?: (string | undefined) | undefined;
|
|
23299
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
23300
|
+
site_id?: (string | undefined) | undefined;
|
|
23301
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
23302
|
+
site_name?: (string | undefined) | undefined;
|
|
23303
|
+
/** Actions the gadget exposes (for example, open). */
|
|
23304
|
+
actions?: ({
|
|
23305
|
+
/** ID of the gadget action. */
|
|
23306
|
+
id?: (string | undefined) | undefined;
|
|
23307
|
+
/** Name of the gadget action. */
|
|
23308
|
+
name?: (string | undefined) | undefined;
|
|
23309
|
+
}[] | undefined) | undefined;
|
|
23310
|
+
} | undefined;
|
|
23263
23311
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
23264
23312
|
is_locked?: boolean | undefined;
|
|
23265
23313
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -23597,14 +23645,14 @@ export type Routes = {
|
|
|
23597
23645
|
name: string;
|
|
23598
23646
|
/**
|
|
23599
23647
|
* @deprecated Use `external_type`.*/
|
|
23600
|
-
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';
|
|
23648
|
+
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';
|
|
23601
23649
|
/**
|
|
23602
23650
|
* @deprecated Use `external_type_display_name`.*/
|
|
23603
23651
|
access_group_type_display_name: string;
|
|
23604
23652
|
/** Display name for the access group. */
|
|
23605
23653
|
display_name: string;
|
|
23606
23654
|
/** Brand-specific terminology for the access group type. */
|
|
23607
|
-
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';
|
|
23655
|
+
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';
|
|
23608
23656
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
23609
23657
|
external_type_display_name: string;
|
|
23610
23658
|
/** Date and time at which the access group was created. */
|
|
@@ -23780,14 +23828,14 @@ export type Routes = {
|
|
|
23780
23828
|
name: string;
|
|
23781
23829
|
/**
|
|
23782
23830
|
* @deprecated Use `external_type`.*/
|
|
23783
|
-
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';
|
|
23831
|
+
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';
|
|
23784
23832
|
/**
|
|
23785
23833
|
* @deprecated Use `external_type_display_name`.*/
|
|
23786
23834
|
access_group_type_display_name: string;
|
|
23787
23835
|
/** Display name for the access group. */
|
|
23788
23836
|
display_name: string;
|
|
23789
23837
|
/** Brand-specific terminology for the access group type. */
|
|
23790
|
-
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';
|
|
23838
|
+
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';
|
|
23791
23839
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
23792
23840
|
external_type_display_name: string;
|
|
23793
23841
|
/** Date and time at which the access group was created. */
|
|
@@ -25056,6 +25104,22 @@ export type Routes = {
|
|
|
25056
25104
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
25057
25105
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
25058
25106
|
} | undefined;
|
|
25107
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
25108
|
+
akiles_metadata?: {
|
|
25109
|
+
/** ID of the Akiles gadget. */
|
|
25110
|
+
gadget_id?: (string | undefined) | undefined;
|
|
25111
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
25112
|
+
site_id?: (string | undefined) | undefined;
|
|
25113
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
25114
|
+
site_name?: (string | undefined) | undefined;
|
|
25115
|
+
/** Actions the gadget exposes (for example, open). */
|
|
25116
|
+
actions?: ({
|
|
25117
|
+
/** ID of the gadget action. */
|
|
25118
|
+
id?: (string | undefined) | undefined;
|
|
25119
|
+
/** Name of the gadget action. */
|
|
25120
|
+
name?: (string | undefined) | undefined;
|
|
25121
|
+
}[] | undefined) | undefined;
|
|
25122
|
+
} | undefined;
|
|
25059
25123
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
25060
25124
|
is_locked?: boolean | undefined;
|
|
25061
25125
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -31220,6 +31284,22 @@ export type Routes = {
|
|
|
31220
31284
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
31221
31285
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
31222
31286
|
} | undefined;
|
|
31287
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
31288
|
+
akiles_metadata?: {
|
|
31289
|
+
/** ID of the Akiles gadget. */
|
|
31290
|
+
gadget_id?: (string | undefined) | undefined;
|
|
31291
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
31292
|
+
site_id?: (string | undefined) | undefined;
|
|
31293
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
31294
|
+
site_name?: (string | undefined) | undefined;
|
|
31295
|
+
/** Actions the gadget exposes (for example, open). */
|
|
31296
|
+
actions?: ({
|
|
31297
|
+
/** ID of the gadget action. */
|
|
31298
|
+
id?: (string | undefined) | undefined;
|
|
31299
|
+
/** Name of the gadget action. */
|
|
31300
|
+
name?: (string | undefined) | undefined;
|
|
31301
|
+
}[] | undefined) | undefined;
|
|
31302
|
+
} | undefined;
|
|
31223
31303
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
31224
31304
|
is_locked?: boolean | undefined;
|
|
31225
31305
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -31459,6 +31539,22 @@ export type Routes = {
|
|
|
31459
31539
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
31460
31540
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
31461
31541
|
} | undefined;
|
|
31542
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
31543
|
+
akiles_metadata?: {
|
|
31544
|
+
/** ID of the Akiles gadget. */
|
|
31545
|
+
gadget_id?: (string | undefined) | undefined;
|
|
31546
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
31547
|
+
site_id?: (string | undefined) | undefined;
|
|
31548
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
31549
|
+
site_name?: (string | undefined) | undefined;
|
|
31550
|
+
/** Actions the gadget exposes (for example, open). */
|
|
31551
|
+
actions?: ({
|
|
31552
|
+
/** ID of the gadget action. */
|
|
31553
|
+
id?: (string | undefined) | undefined;
|
|
31554
|
+
/** Name of the gadget action. */
|
|
31555
|
+
name?: (string | undefined) | undefined;
|
|
31556
|
+
}[] | undefined) | undefined;
|
|
31557
|
+
} | undefined;
|
|
31462
31558
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
31463
31559
|
is_locked?: boolean | undefined;
|
|
31464
31560
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -33369,7 +33465,7 @@ export type Routes = {
|
|
|
33369
33465
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33370
33466
|
acs_access_group_count?: number | undefined;
|
|
33371
33467
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33372
|
-
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;
|
|
33468
|
+
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;
|
|
33373
33469
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33374
33470
|
external_type_display_name?: string | undefined;
|
|
33375
33471
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -33385,7 +33481,7 @@ export type Routes = {
|
|
|
33385
33481
|
} | undefined;
|
|
33386
33482
|
/**
|
|
33387
33483
|
* @deprecated Use `external_type`.*/
|
|
33388
|
-
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;
|
|
33484
|
+
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;
|
|
33389
33485
|
/**
|
|
33390
33486
|
* @deprecated Use `external_type_display_name`.*/
|
|
33391
33487
|
system_type_display_name?: string | undefined;
|
|
@@ -33524,7 +33620,7 @@ export type Routes = {
|
|
|
33524
33620
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33525
33621
|
acs_access_group_count?: number | undefined;
|
|
33526
33622
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33527
|
-
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;
|
|
33623
|
+
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;
|
|
33528
33624
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33529
33625
|
external_type_display_name?: string | undefined;
|
|
33530
33626
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -33540,7 +33636,7 @@ export type Routes = {
|
|
|
33540
33636
|
} | undefined;
|
|
33541
33637
|
/**
|
|
33542
33638
|
* @deprecated Use `external_type`.*/
|
|
33543
|
-
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;
|
|
33639
|
+
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;
|
|
33544
33640
|
/**
|
|
33545
33641
|
* @deprecated Use `external_type_display_name`.*/
|
|
33546
33642
|
system_type_display_name?: string | undefined;
|
|
@@ -33675,7 +33771,7 @@ export type Routes = {
|
|
|
33675
33771
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33676
33772
|
acs_access_group_count?: number | undefined;
|
|
33677
33773
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33678
|
-
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;
|
|
33774
|
+
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;
|
|
33679
33775
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33680
33776
|
external_type_display_name?: string | undefined;
|
|
33681
33777
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -33691,7 +33787,7 @@ export type Routes = {
|
|
|
33691
33787
|
} | undefined;
|
|
33692
33788
|
/**
|
|
33693
33789
|
* @deprecated Use `external_type`.*/
|
|
33694
|
-
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;
|
|
33790
|
+
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;
|
|
33695
33791
|
/**
|
|
33696
33792
|
* @deprecated Use `external_type_display_name`.*/
|
|
33697
33793
|
system_type_display_name?: string | undefined;
|
|
@@ -34958,6 +35054,22 @@ export type Routes = {
|
|
|
34958
35054
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
34959
35055
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
34960
35056
|
} | undefined;
|
|
35057
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
35058
|
+
akiles_metadata?: {
|
|
35059
|
+
/** ID of the Akiles gadget. */
|
|
35060
|
+
gadget_id?: (string | undefined) | undefined;
|
|
35061
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
35062
|
+
site_id?: (string | undefined) | undefined;
|
|
35063
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
35064
|
+
site_name?: (string | undefined) | undefined;
|
|
35065
|
+
/** Actions the gadget exposes (for example, open). */
|
|
35066
|
+
actions?: ({
|
|
35067
|
+
/** ID of the gadget action. */
|
|
35068
|
+
id?: (string | undefined) | undefined;
|
|
35069
|
+
/** Name of the gadget action. */
|
|
35070
|
+
name?: (string | undefined) | undefined;
|
|
35071
|
+
}[] | undefined) | undefined;
|
|
35072
|
+
} | undefined;
|
|
34961
35073
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
34962
35074
|
is_locked?: boolean | undefined;
|
|
34963
35075
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -84418,6 +84530,22 @@ export type Routes = {
|
|
|
84418
84530
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
84419
84531
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
84420
84532
|
} | undefined;
|
|
84533
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
84534
|
+
akiles_metadata?: {
|
|
84535
|
+
/** ID of the Akiles gadget. */
|
|
84536
|
+
gadget_id?: (string | undefined) | undefined;
|
|
84537
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
84538
|
+
site_id?: (string | undefined) | undefined;
|
|
84539
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
84540
|
+
site_name?: (string | undefined) | undefined;
|
|
84541
|
+
/** Actions the gadget exposes (for example, open). */
|
|
84542
|
+
actions?: ({
|
|
84543
|
+
/** ID of the gadget action. */
|
|
84544
|
+
id?: (string | undefined) | undefined;
|
|
84545
|
+
/** Name of the gadget action. */
|
|
84546
|
+
name?: (string | undefined) | undefined;
|
|
84547
|
+
}[] | undefined) | undefined;
|
|
84548
|
+
} | undefined;
|
|
84421
84549
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
84422
84550
|
is_locked?: boolean | undefined;
|
|
84423
84551
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -86453,6 +86581,22 @@ export type Routes = {
|
|
|
86453
86581
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
86454
86582
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
86455
86583
|
} | undefined;
|
|
86584
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
86585
|
+
akiles_metadata?: {
|
|
86586
|
+
/** ID of the Akiles gadget. */
|
|
86587
|
+
gadget_id?: (string | undefined) | undefined;
|
|
86588
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
86589
|
+
site_id?: (string | undefined) | undefined;
|
|
86590
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
86591
|
+
site_name?: (string | undefined) | undefined;
|
|
86592
|
+
/** Actions the gadget exposes (for example, open). */
|
|
86593
|
+
actions?: ({
|
|
86594
|
+
/** ID of the gadget action. */
|
|
86595
|
+
id?: (string | undefined) | undefined;
|
|
86596
|
+
/** Name of the gadget action. */
|
|
86597
|
+
name?: (string | undefined) | undefined;
|
|
86598
|
+
}[] | undefined) | undefined;
|
|
86599
|
+
} | undefined;
|
|
86456
86600
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
86457
86601
|
is_locked?: boolean | undefined;
|
|
86458
86602
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -86656,7 +86800,7 @@ export type Routes = {
|
|
|
86656
86800
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
86657
86801
|
acs_access_group_count?: number | undefined;
|
|
86658
86802
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
86659
|
-
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;
|
|
86803
|
+
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;
|
|
86660
86804
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
86661
86805
|
external_type_display_name?: string | undefined;
|
|
86662
86806
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -86672,7 +86816,7 @@ export type Routes = {
|
|
|
86672
86816
|
} | undefined;
|
|
86673
86817
|
/**
|
|
86674
86818
|
* @deprecated Use `external_type`.*/
|
|
86675
|
-
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;
|
|
86819
|
+
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;
|
|
86676
86820
|
/**
|
|
86677
86821
|
* @deprecated Use `external_type_display_name`.*/
|
|
86678
86822
|
system_type_display_name?: string | undefined;
|
|
@@ -111225,6 +111369,22 @@ export type Routes = {
|
|
|
111225
111369
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
111226
111370
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
111227
111371
|
} | undefined;
|
|
111372
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
111373
|
+
akiles_metadata?: {
|
|
111374
|
+
/** ID of the Akiles gadget. */
|
|
111375
|
+
gadget_id?: (string | undefined) | undefined;
|
|
111376
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
111377
|
+
site_id?: (string | undefined) | undefined;
|
|
111378
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
111379
|
+
site_name?: (string | undefined) | undefined;
|
|
111380
|
+
/** Actions the gadget exposes (for example, open). */
|
|
111381
|
+
actions?: ({
|
|
111382
|
+
/** ID of the gadget action. */
|
|
111383
|
+
id?: (string | undefined) | undefined;
|
|
111384
|
+
/** Name of the gadget action. */
|
|
111385
|
+
name?: (string | undefined) | undefined;
|
|
111386
|
+
}[] | undefined) | undefined;
|
|
111387
|
+
} | undefined;
|
|
111228
111388
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
111229
111389
|
is_locked?: boolean | undefined;
|
|
111230
111390
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -111262,7 +111422,7 @@ export type Routes = {
|
|
|
111262
111422
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
111263
111423
|
acs_access_group_count?: number | undefined;
|
|
111264
111424
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
111265
|
-
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;
|
|
111425
|
+
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;
|
|
111266
111426
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
111267
111427
|
external_type_display_name?: string | undefined;
|
|
111268
111428
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -111278,7 +111438,7 @@ export type Routes = {
|
|
|
111278
111438
|
} | undefined;
|
|
111279
111439
|
/**
|
|
111280
111440
|
* @deprecated Use `external_type`.*/
|
|
111281
|
-
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;
|
|
111441
|
+
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;
|
|
111282
111442
|
/**
|
|
111283
111443
|
* @deprecated Use `external_type_display_name`.*/
|
|
111284
111444
|
system_type_display_name?: string | undefined;
|
|
@@ -113956,6 +114116,22 @@ export type Routes = {
|
|
|
113956
114116
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
113957
114117
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
113958
114118
|
} | undefined;
|
|
114119
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
114120
|
+
akiles_metadata?: {
|
|
114121
|
+
/** ID of the Akiles gadget. */
|
|
114122
|
+
gadget_id?: (string | undefined) | undefined;
|
|
114123
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
114124
|
+
site_id?: (string | undefined) | undefined;
|
|
114125
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
114126
|
+
site_name?: (string | undefined) | undefined;
|
|
114127
|
+
/** Actions the gadget exposes (for example, open). */
|
|
114128
|
+
actions?: ({
|
|
114129
|
+
/** ID of the gadget action. */
|
|
114130
|
+
id?: (string | undefined) | undefined;
|
|
114131
|
+
/** Name of the gadget action. */
|
|
114132
|
+
name?: (string | undefined) | undefined;
|
|
114133
|
+
}[] | undefined) | undefined;
|
|
114134
|
+
} | undefined;
|
|
113959
114135
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
113960
114136
|
is_locked?: boolean | undefined;
|
|
113961
114137
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -113979,7 +114155,7 @@ export type Routes = {
|
|
|
113979
114155
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
113980
114156
|
acs_access_group_count?: number | undefined;
|
|
113981
114157
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
113982
|
-
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;
|
|
114158
|
+
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;
|
|
113983
114159
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
113984
114160
|
external_type_display_name?: string | undefined;
|
|
113985
114161
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -113995,7 +114171,7 @@ export type Routes = {
|
|
|
113995
114171
|
} | undefined;
|
|
113996
114172
|
/**
|
|
113997
114173
|
* @deprecated Use `external_type`.*/
|
|
113998
|
-
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;
|
|
114174
|
+
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;
|
|
113999
114175
|
/**
|
|
114000
114176
|
* @deprecated Use `external_type_display_name`.*/
|
|
114001
114177
|
system_type_display_name?: string | undefined;
|
|
@@ -114384,14 +114560,14 @@ export type Routes = {
|
|
|
114384
114560
|
name: string;
|
|
114385
114561
|
/**
|
|
114386
114562
|
* @deprecated Use `external_type`.*/
|
|
114387
|
-
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';
|
|
114563
|
+
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';
|
|
114388
114564
|
/**
|
|
114389
114565
|
* @deprecated Use `external_type_display_name`.*/
|
|
114390
114566
|
access_group_type_display_name: string;
|
|
114391
114567
|
/** Display name for the access group. */
|
|
114392
114568
|
display_name: string;
|
|
114393
114569
|
/** Brand-specific terminology for the access group type. */
|
|
114394
|
-
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';
|
|
114570
|
+
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';
|
|
114395
114571
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
114396
114572
|
external_type_display_name: string;
|
|
114397
114573
|
/** Date and time at which the access group was created. */
|
|
@@ -116551,14 +116727,14 @@ export type Routes = {
|
|
|
116551
116727
|
name: string;
|
|
116552
116728
|
/**
|
|
116553
116729
|
* @deprecated Use `external_type`.*/
|
|
116554
|
-
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';
|
|
116730
|
+
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';
|
|
116555
116731
|
/**
|
|
116556
116732
|
* @deprecated Use `external_type_display_name`.*/
|
|
116557
116733
|
access_group_type_display_name: string;
|
|
116558
116734
|
/** Display name for the access group. */
|
|
116559
116735
|
display_name: string;
|
|
116560
116736
|
/** Brand-specific terminology for the access group type. */
|
|
116561
|
-
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';
|
|
116737
|
+
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';
|
|
116562
116738
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
116563
116739
|
external_type_display_name: string;
|
|
116564
116740
|
/** Date and time at which the access group was created. */
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod'
|
|
2
2
|
|
|
3
|
+
import { acs_entrance_akiles_metadata } from './metadata/akiles.js'
|
|
3
4
|
import { acs_entrance_avigilon_alta_metadata } from './metadata/avigilon-alta.js'
|
|
4
5
|
import { acs_entrance_dormakaba_ambiance_metadata } from './metadata/dormakaba-ambiance.js'
|
|
5
6
|
import {
|
|
@@ -244,6 +245,11 @@ export const acs_entrance = z
|
|
|
244
245
|
.describe(
|
|
245
246
|
'Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).',
|
|
246
247
|
),
|
|
248
|
+
akiles_metadata: acs_entrance_akiles_metadata
|
|
249
|
+
.optional()
|
|
250
|
+
.describe(
|
|
251
|
+
'Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).',
|
|
252
|
+
),
|
|
247
253
|
is_locked: z
|
|
248
254
|
.boolean()
|
|
249
255
|
.optional()
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const acs_entrance_akiles_metadata = z
|
|
4
|
+
.object({
|
|
5
|
+
gadget_id: z.string().optional().describe('ID of the Akiles gadget.'),
|
|
6
|
+
site_id: z
|
|
7
|
+
.string()
|
|
8
|
+
.optional()
|
|
9
|
+
.describe('ID of the Akiles site the gadget belongs to.'),
|
|
10
|
+
site_name: z
|
|
11
|
+
.string()
|
|
12
|
+
.optional()
|
|
13
|
+
.describe('Name of the Akiles site the gadget belongs to.'),
|
|
14
|
+
actions: z
|
|
15
|
+
.array(
|
|
16
|
+
z
|
|
17
|
+
.object({
|
|
18
|
+
id: z.string().optional().describe('ID of the gadget action.'),
|
|
19
|
+
name: z.string().optional().describe('Name of the gadget action.'),
|
|
20
|
+
})
|
|
21
|
+
.partial(),
|
|
22
|
+
)
|
|
23
|
+
.optional()
|
|
24
|
+
.describe('Actions the gadget exposes (for example, open).'),
|
|
25
|
+
})
|
|
26
|
+
.partial()
|
|
27
|
+
.describe('Akiles-specific metadata for the entrance.')
|
|
28
|
+
|
|
29
|
+
export type AcsEntranceAkilesMetadata = z.infer<
|
|
30
|
+
typeof acs_entrance_akiles_metadata
|
|
31
|
+
>
|