@seamapi/types 1.978.0 → 1.979.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 +90 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +245 -20
- package/dist/index.cjs +90 -3
- package/dist/index.cjs.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 +72 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +190 -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 -0
- package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
- package/src/lib/seam/connect/openapi.ts +78 -0
- package/src/lib/seam/connect/route-types.ts +267 -0
|
@@ -15567,6 +15567,29 @@ export type Routes = {
|
|
|
15567
15567
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
15568
15568
|
}
|
|
15569
15569
|
| undefined
|
|
15570
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
15571
|
+
akiles_metadata?:
|
|
15572
|
+
| {
|
|
15573
|
+
/** ID of the Akiles gadget. */
|
|
15574
|
+
gadget_id?: (string | undefined) | undefined
|
|
15575
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
15576
|
+
site_id?: (string | undefined) | undefined
|
|
15577
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
15578
|
+
site_name?: (string | undefined) | undefined
|
|
15579
|
+
/** Actions the gadget exposes (for example, open). */
|
|
15580
|
+
actions?:
|
|
15581
|
+
| (
|
|
15582
|
+
| {
|
|
15583
|
+
/** ID of the gadget action. */
|
|
15584
|
+
id?: (string | undefined) | undefined
|
|
15585
|
+
/** Name of the gadget action. */
|
|
15586
|
+
name?: (string | undefined) | undefined
|
|
15587
|
+
}[]
|
|
15588
|
+
| undefined
|
|
15589
|
+
)
|
|
15590
|
+
| undefined
|
|
15591
|
+
}
|
|
15592
|
+
| undefined
|
|
15570
15593
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
15571
15594
|
is_locked?: boolean | undefined
|
|
15572
15595
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -15834,6 +15857,7 @@ export type Routes = {
|
|
|
15834
15857
|
| 'assa_abloy_vostio_credential_service'
|
|
15835
15858
|
| 'hotek_site'
|
|
15836
15859
|
| 'kisi_organization'
|
|
15860
|
+
| 'akiles_organization'
|
|
15837
15861
|
)
|
|
15838
15862
|
| undefined
|
|
15839
15863
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -15871,6 +15895,7 @@ export type Routes = {
|
|
|
15871
15895
|
| 'assa_abloy_vostio_credential_service'
|
|
15872
15896
|
| 'hotek_site'
|
|
15873
15897
|
| 'kisi_organization'
|
|
15898
|
+
| 'akiles_organization'
|
|
15874
15899
|
)
|
|
15875
15900
|
| undefined
|
|
15876
15901
|
/**
|
|
@@ -23832,6 +23857,29 @@ export type Routes = {
|
|
|
23832
23857
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
23833
23858
|
}
|
|
23834
23859
|
| undefined
|
|
23860
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
23861
|
+
akiles_metadata?:
|
|
23862
|
+
| {
|
|
23863
|
+
/** ID of the Akiles gadget. */
|
|
23864
|
+
gadget_id?: (string | undefined) | undefined
|
|
23865
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
23866
|
+
site_id?: (string | undefined) | undefined
|
|
23867
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
23868
|
+
site_name?: (string | undefined) | undefined
|
|
23869
|
+
/** Actions the gadget exposes (for example, open). */
|
|
23870
|
+
actions?:
|
|
23871
|
+
| (
|
|
23872
|
+
| {
|
|
23873
|
+
/** ID of the gadget action. */
|
|
23874
|
+
id?: (string | undefined) | undefined
|
|
23875
|
+
/** Name of the gadget action. */
|
|
23876
|
+
name?: (string | undefined) | undefined
|
|
23877
|
+
}[]
|
|
23878
|
+
| undefined
|
|
23879
|
+
)
|
|
23880
|
+
| undefined
|
|
23881
|
+
}
|
|
23882
|
+
| undefined
|
|
23835
23883
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
23836
23884
|
is_locked?: boolean | undefined
|
|
23837
23885
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -27625,6 +27673,29 @@ export type Routes = {
|
|
|
27625
27673
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
27626
27674
|
}
|
|
27627
27675
|
| undefined
|
|
27676
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
27677
|
+
akiles_metadata?:
|
|
27678
|
+
| {
|
|
27679
|
+
/** ID of the Akiles gadget. */
|
|
27680
|
+
gadget_id?: (string | undefined) | undefined
|
|
27681
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
27682
|
+
site_id?: (string | undefined) | undefined
|
|
27683
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
27684
|
+
site_name?: (string | undefined) | undefined
|
|
27685
|
+
/** Actions the gadget exposes (for example, open). */
|
|
27686
|
+
actions?:
|
|
27687
|
+
| (
|
|
27688
|
+
| {
|
|
27689
|
+
/** ID of the gadget action. */
|
|
27690
|
+
id?: (string | undefined) | undefined
|
|
27691
|
+
/** Name of the gadget action. */
|
|
27692
|
+
name?: (string | undefined) | undefined
|
|
27693
|
+
}[]
|
|
27694
|
+
| undefined
|
|
27695
|
+
)
|
|
27696
|
+
| undefined
|
|
27697
|
+
}
|
|
27698
|
+
| undefined
|
|
27628
27699
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
27629
27700
|
is_locked?: boolean | undefined
|
|
27630
27701
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -29760,6 +29831,29 @@ export type Routes = {
|
|
|
29760
29831
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
29761
29832
|
}
|
|
29762
29833
|
| undefined
|
|
29834
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
29835
|
+
akiles_metadata?:
|
|
29836
|
+
| {
|
|
29837
|
+
/** ID of the Akiles gadget. */
|
|
29838
|
+
gadget_id?: (string | undefined) | undefined
|
|
29839
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
29840
|
+
site_id?: (string | undefined) | undefined
|
|
29841
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
29842
|
+
site_name?: (string | undefined) | undefined
|
|
29843
|
+
/** Actions the gadget exposes (for example, open). */
|
|
29844
|
+
actions?:
|
|
29845
|
+
| (
|
|
29846
|
+
| {
|
|
29847
|
+
/** ID of the gadget action. */
|
|
29848
|
+
id?: (string | undefined) | undefined
|
|
29849
|
+
/** Name of the gadget action. */
|
|
29850
|
+
name?: (string | undefined) | undefined
|
|
29851
|
+
}[]
|
|
29852
|
+
| undefined
|
|
29853
|
+
)
|
|
29854
|
+
| undefined
|
|
29855
|
+
}
|
|
29856
|
+
| undefined
|
|
29763
29857
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
29764
29858
|
is_locked?: boolean | undefined
|
|
29765
29859
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -37113,6 +37207,29 @@ export type Routes = {
|
|
|
37113
37207
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
37114
37208
|
}
|
|
37115
37209
|
| undefined
|
|
37210
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
37211
|
+
akiles_metadata?:
|
|
37212
|
+
| {
|
|
37213
|
+
/** ID of the Akiles gadget. */
|
|
37214
|
+
gadget_id?: (string | undefined) | undefined
|
|
37215
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
37216
|
+
site_id?: (string | undefined) | undefined
|
|
37217
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
37218
|
+
site_name?: (string | undefined) | undefined
|
|
37219
|
+
/** Actions the gadget exposes (for example, open). */
|
|
37220
|
+
actions?:
|
|
37221
|
+
| (
|
|
37222
|
+
| {
|
|
37223
|
+
/** ID of the gadget action. */
|
|
37224
|
+
id?: (string | undefined) | undefined
|
|
37225
|
+
/** Name of the gadget action. */
|
|
37226
|
+
name?: (string | undefined) | undefined
|
|
37227
|
+
}[]
|
|
37228
|
+
| undefined
|
|
37229
|
+
)
|
|
37230
|
+
| undefined
|
|
37231
|
+
}
|
|
37232
|
+
| undefined
|
|
37116
37233
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
37117
37234
|
is_locked?: boolean | undefined
|
|
37118
37235
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -37403,6 +37520,29 @@ export type Routes = {
|
|
|
37403
37520
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
37404
37521
|
}
|
|
37405
37522
|
| undefined
|
|
37523
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
37524
|
+
akiles_metadata?:
|
|
37525
|
+
| {
|
|
37526
|
+
/** ID of the Akiles gadget. */
|
|
37527
|
+
gadget_id?: (string | undefined) | undefined
|
|
37528
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
37529
|
+
site_id?: (string | undefined) | undefined
|
|
37530
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
37531
|
+
site_name?: (string | undefined) | undefined
|
|
37532
|
+
/** Actions the gadget exposes (for example, open). */
|
|
37533
|
+
actions?:
|
|
37534
|
+
| (
|
|
37535
|
+
| {
|
|
37536
|
+
/** ID of the gadget action. */
|
|
37537
|
+
id?: (string | undefined) | undefined
|
|
37538
|
+
/** Name of the gadget action. */
|
|
37539
|
+
name?: (string | undefined) | undefined
|
|
37540
|
+
}[]
|
|
37541
|
+
| undefined
|
|
37542
|
+
)
|
|
37543
|
+
| undefined
|
|
37544
|
+
}
|
|
37545
|
+
| undefined
|
|
37406
37546
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
37407
37547
|
is_locked?: boolean | undefined
|
|
37408
37548
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -39692,6 +39832,7 @@ export type Routes = {
|
|
|
39692
39832
|
| 'assa_abloy_vostio_credential_service'
|
|
39693
39833
|
| 'hotek_site'
|
|
39694
39834
|
| 'kisi_organization'
|
|
39835
|
+
| 'akiles_organization'
|
|
39695
39836
|
)
|
|
39696
39837
|
| undefined
|
|
39697
39838
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -39729,6 +39870,7 @@ export type Routes = {
|
|
|
39729
39870
|
| 'assa_abloy_vostio_credential_service'
|
|
39730
39871
|
| 'hotek_site'
|
|
39731
39872
|
| 'kisi_organization'
|
|
39873
|
+
| 'akiles_organization'
|
|
39732
39874
|
)
|
|
39733
39875
|
| undefined
|
|
39734
39876
|
/**
|
|
@@ -39900,6 +40042,7 @@ export type Routes = {
|
|
|
39900
40042
|
| 'assa_abloy_vostio_credential_service'
|
|
39901
40043
|
| 'hotek_site'
|
|
39902
40044
|
| 'kisi_organization'
|
|
40045
|
+
| 'akiles_organization'
|
|
39903
40046
|
)
|
|
39904
40047
|
| undefined
|
|
39905
40048
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -39937,6 +40080,7 @@ export type Routes = {
|
|
|
39937
40080
|
| 'assa_abloy_vostio_credential_service'
|
|
39938
40081
|
| 'hotek_site'
|
|
39939
40082
|
| 'kisi_organization'
|
|
40083
|
+
| 'akiles_organization'
|
|
39940
40084
|
)
|
|
39941
40085
|
| undefined
|
|
39942
40086
|
/**
|
|
@@ -40104,6 +40248,7 @@ export type Routes = {
|
|
|
40104
40248
|
| 'assa_abloy_vostio_credential_service'
|
|
40105
40249
|
| 'hotek_site'
|
|
40106
40250
|
| 'kisi_organization'
|
|
40251
|
+
| 'akiles_organization'
|
|
40107
40252
|
)
|
|
40108
40253
|
| undefined
|
|
40109
40254
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -40141,6 +40286,7 @@ export type Routes = {
|
|
|
40141
40286
|
| 'assa_abloy_vostio_credential_service'
|
|
40142
40287
|
| 'hotek_site'
|
|
40143
40288
|
| 'kisi_organization'
|
|
40289
|
+
| 'akiles_organization'
|
|
40144
40290
|
)
|
|
40145
40291
|
| undefined
|
|
40146
40292
|
/**
|
|
@@ -41608,6 +41754,29 @@ export type Routes = {
|
|
|
41608
41754
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
41609
41755
|
}
|
|
41610
41756
|
| undefined
|
|
41757
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
41758
|
+
akiles_metadata?:
|
|
41759
|
+
| {
|
|
41760
|
+
/** ID of the Akiles gadget. */
|
|
41761
|
+
gadget_id?: (string | undefined) | undefined
|
|
41762
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
41763
|
+
site_id?: (string | undefined) | undefined
|
|
41764
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
41765
|
+
site_name?: (string | undefined) | undefined
|
|
41766
|
+
/** Actions the gadget exposes (for example, open). */
|
|
41767
|
+
actions?:
|
|
41768
|
+
| (
|
|
41769
|
+
| {
|
|
41770
|
+
/** ID of the gadget action. */
|
|
41771
|
+
id?: (string | undefined) | undefined
|
|
41772
|
+
/** Name of the gadget action. */
|
|
41773
|
+
name?: (string | undefined) | undefined
|
|
41774
|
+
}[]
|
|
41775
|
+
| undefined
|
|
41776
|
+
)
|
|
41777
|
+
| undefined
|
|
41778
|
+
}
|
|
41779
|
+
| undefined
|
|
41611
41780
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
41612
41781
|
is_locked?: boolean | undefined
|
|
41613
41782
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -102804,6 +102973,29 @@ export type Routes = {
|
|
|
102804
102973
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
102805
102974
|
}
|
|
102806
102975
|
| undefined
|
|
102976
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
102977
|
+
akiles_metadata?:
|
|
102978
|
+
| {
|
|
102979
|
+
/** ID of the Akiles gadget. */
|
|
102980
|
+
gadget_id?: (string | undefined) | undefined
|
|
102981
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
102982
|
+
site_id?: (string | undefined) | undefined
|
|
102983
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
102984
|
+
site_name?: (string | undefined) | undefined
|
|
102985
|
+
/** Actions the gadget exposes (for example, open). */
|
|
102986
|
+
actions?:
|
|
102987
|
+
| (
|
|
102988
|
+
| {
|
|
102989
|
+
/** ID of the gadget action. */
|
|
102990
|
+
id?: (string | undefined) | undefined
|
|
102991
|
+
/** Name of the gadget action. */
|
|
102992
|
+
name?: (string | undefined) | undefined
|
|
102993
|
+
}[]
|
|
102994
|
+
| undefined
|
|
102995
|
+
)
|
|
102996
|
+
| undefined
|
|
102997
|
+
}
|
|
102998
|
+
| undefined
|
|
102807
102999
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
102808
103000
|
is_locked?: boolean | undefined
|
|
102809
103001
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -105415,6 +105607,29 @@ export type Routes = {
|
|
|
105415
105607
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
105416
105608
|
}
|
|
105417
105609
|
| undefined
|
|
105610
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
105611
|
+
akiles_metadata?:
|
|
105612
|
+
| {
|
|
105613
|
+
/** ID of the Akiles gadget. */
|
|
105614
|
+
gadget_id?: (string | undefined) | undefined
|
|
105615
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
105616
|
+
site_id?: (string | undefined) | undefined
|
|
105617
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
105618
|
+
site_name?: (string | undefined) | undefined
|
|
105619
|
+
/** Actions the gadget exposes (for example, open). */
|
|
105620
|
+
actions?:
|
|
105621
|
+
| (
|
|
105622
|
+
| {
|
|
105623
|
+
/** ID of the gadget action. */
|
|
105624
|
+
id?: (string | undefined) | undefined
|
|
105625
|
+
/** Name of the gadget action. */
|
|
105626
|
+
name?: (string | undefined) | undefined
|
|
105627
|
+
}[]
|
|
105628
|
+
| undefined
|
|
105629
|
+
)
|
|
105630
|
+
| undefined
|
|
105631
|
+
}
|
|
105632
|
+
| undefined
|
|
105418
105633
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
105419
105634
|
is_locked?: boolean | undefined
|
|
105420
105635
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -105682,6 +105897,7 @@ export type Routes = {
|
|
|
105682
105897
|
| 'assa_abloy_vostio_credential_service'
|
|
105683
105898
|
| 'hotek_site'
|
|
105684
105899
|
| 'kisi_organization'
|
|
105900
|
+
| 'akiles_organization'
|
|
105685
105901
|
)
|
|
105686
105902
|
| undefined
|
|
105687
105903
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -105719,6 +105935,7 @@ export type Routes = {
|
|
|
105719
105935
|
| 'assa_abloy_vostio_credential_service'
|
|
105720
105936
|
| 'hotek_site'
|
|
105721
105937
|
| 'kisi_organization'
|
|
105938
|
+
| 'akiles_organization'
|
|
105722
105939
|
)
|
|
105723
105940
|
| undefined
|
|
105724
105941
|
/**
|
|
@@ -135426,6 +135643,29 @@ export type Routes = {
|
|
|
135426
135643
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
135427
135644
|
}
|
|
135428
135645
|
| undefined
|
|
135646
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
135647
|
+
akiles_metadata?:
|
|
135648
|
+
| {
|
|
135649
|
+
/** ID of the Akiles gadget. */
|
|
135650
|
+
gadget_id?: (string | undefined) | undefined
|
|
135651
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
135652
|
+
site_id?: (string | undefined) | undefined
|
|
135653
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
135654
|
+
site_name?: (string | undefined) | undefined
|
|
135655
|
+
/** Actions the gadget exposes (for example, open). */
|
|
135656
|
+
actions?:
|
|
135657
|
+
| (
|
|
135658
|
+
| {
|
|
135659
|
+
/** ID of the gadget action. */
|
|
135660
|
+
id?: (string | undefined) | undefined
|
|
135661
|
+
/** Name of the gadget action. */
|
|
135662
|
+
name?: (string | undefined) | undefined
|
|
135663
|
+
}[]
|
|
135664
|
+
| undefined
|
|
135665
|
+
)
|
|
135666
|
+
| undefined
|
|
135667
|
+
}
|
|
135668
|
+
| undefined
|
|
135429
135669
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
135430
135670
|
is_locked?: boolean | undefined
|
|
135431
135671
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -135481,6 +135721,7 @@ export type Routes = {
|
|
|
135481
135721
|
| 'assa_abloy_vostio_credential_service'
|
|
135482
135722
|
| 'hotek_site'
|
|
135483
135723
|
| 'kisi_organization'
|
|
135724
|
+
| 'akiles_organization'
|
|
135484
135725
|
)
|
|
135485
135726
|
| undefined
|
|
135486
135727
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -135518,6 +135759,7 @@ export type Routes = {
|
|
|
135518
135759
|
| 'assa_abloy_vostio_credential_service'
|
|
135519
135760
|
| 'hotek_site'
|
|
135520
135761
|
| 'kisi_organization'
|
|
135762
|
+
| 'akiles_organization'
|
|
135521
135763
|
)
|
|
135522
135764
|
| undefined
|
|
135523
135765
|
/**
|
|
@@ -138831,6 +139073,29 @@ export type Routes = {
|
|
|
138831
139073
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
138832
139074
|
}
|
|
138833
139075
|
| undefined
|
|
139076
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
139077
|
+
akiles_metadata?:
|
|
139078
|
+
| {
|
|
139079
|
+
/** ID of the Akiles gadget. */
|
|
139080
|
+
gadget_id?: (string | undefined) | undefined
|
|
139081
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
139082
|
+
site_id?: (string | undefined) | undefined
|
|
139083
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
139084
|
+
site_name?: (string | undefined) | undefined
|
|
139085
|
+
/** Actions the gadget exposes (for example, open). */
|
|
139086
|
+
actions?:
|
|
139087
|
+
| (
|
|
139088
|
+
| {
|
|
139089
|
+
/** ID of the gadget action. */
|
|
139090
|
+
id?: (string | undefined) | undefined
|
|
139091
|
+
/** Name of the gadget action. */
|
|
139092
|
+
name?: (string | undefined) | undefined
|
|
139093
|
+
}[]
|
|
139094
|
+
| undefined
|
|
139095
|
+
)
|
|
139096
|
+
| undefined
|
|
139097
|
+
}
|
|
139098
|
+
| undefined
|
|
138834
139099
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
138835
139100
|
is_locked?: boolean | undefined
|
|
138836
139101
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -138876,6 +139141,7 @@ export type Routes = {
|
|
|
138876
139141
|
| 'assa_abloy_vostio_credential_service'
|
|
138877
139142
|
| 'hotek_site'
|
|
138878
139143
|
| 'kisi_organization'
|
|
139144
|
+
| 'akiles_organization'
|
|
138879
139145
|
)
|
|
138880
139146
|
| undefined
|
|
138881
139147
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -138913,6 +139179,7 @@ export type Routes = {
|
|
|
138913
139179
|
| 'assa_abloy_vostio_credential_service'
|
|
138914
139180
|
| 'hotek_site'
|
|
138915
139181
|
| 'kisi_organization'
|
|
139182
|
+
| 'akiles_organization'
|
|
138916
139183
|
)
|
|
138917
139184
|
| undefined
|
|
138918
139185
|
/**
|