@seamapi/http 1.123.0 → 1.124.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.d.cts +11 -2
- package/lib/seam/connect/resources/acs-entrance.d.ts +9 -0
- package/lib/seam/connect/resources/acs-system.d.ts +2 -2
- package/lib/seam/connect/resources/phone-session.d.ts +9 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/resources/acs-entrance.ts +13 -0
- package/src/lib/seam/connect/resources/acs-system.ts +2 -0
- package/src/lib/seam/connect/resources/phone-session.ts +13 -0
- package/src/lib/version.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -1625,6 +1625,15 @@ type AcsAccessGroupResource = {
|
|
|
1625
1625
|
type AcsEntranceResource = {
|
|
1626
1626
|
acs_entrance_id: string;
|
|
1627
1627
|
acs_system_id: string;
|
|
1628
|
+
akiles_metadata?: {
|
|
1629
|
+
actions?: Array<{
|
|
1630
|
+
id?: string | undefined;
|
|
1631
|
+
name?: string | undefined;
|
|
1632
|
+
}> | undefined;
|
|
1633
|
+
gadget_id?: string | undefined;
|
|
1634
|
+
site_id?: string | undefined;
|
|
1635
|
+
site_name?: string | undefined;
|
|
1636
|
+
} | undefined;
|
|
1628
1637
|
assa_abloy_vostio_metadata?: {
|
|
1629
1638
|
door_name?: string | undefined;
|
|
1630
1639
|
door_number?: number | undefined;
|
|
@@ -2795,7 +2804,7 @@ type AcsSystemResource = {
|
|
|
2795
2804
|
error_code: 'provider_service_unavailable';
|
|
2796
2805
|
message: string;
|
|
2797
2806
|
}>;
|
|
2798
|
-
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;
|
|
2807
|
+
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;
|
|
2799
2808
|
external_type_display_name?: string | undefined;
|
|
2800
2809
|
image_alt_text: string;
|
|
2801
2810
|
image_url: string;
|
|
@@ -2804,7 +2813,7 @@ type AcsSystemResource = {
|
|
|
2804
2813
|
time_zone: string | null;
|
|
2805
2814
|
};
|
|
2806
2815
|
name: string;
|
|
2807
|
-
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;
|
|
2816
|
+
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;
|
|
2808
2817
|
system_type_display_name?: string | undefined;
|
|
2809
2818
|
visionline_metadata?: {
|
|
2810
2819
|
lan_address?: string | undefined;
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
export type AcsEntranceResource = {
|
|
2
2
|
acs_entrance_id: string;
|
|
3
3
|
acs_system_id: string;
|
|
4
|
+
akiles_metadata?: {
|
|
5
|
+
actions?: Array<{
|
|
6
|
+
id?: string | undefined;
|
|
7
|
+
name?: string | undefined;
|
|
8
|
+
}> | undefined;
|
|
9
|
+
gadget_id?: string | undefined;
|
|
10
|
+
site_id?: string | undefined;
|
|
11
|
+
site_name?: string | undefined;
|
|
12
|
+
} | undefined;
|
|
4
13
|
assa_abloy_vostio_metadata?: {
|
|
5
14
|
door_name?: string | undefined;
|
|
6
15
|
door_number?: number | undefined;
|
|
@@ -40,7 +40,7 @@ export type AcsSystemResource = {
|
|
|
40
40
|
error_code: 'provider_service_unavailable';
|
|
41
41
|
message: string;
|
|
42
42
|
}>;
|
|
43
|
-
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;
|
|
43
|
+
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;
|
|
44
44
|
external_type_display_name?: string | undefined;
|
|
45
45
|
image_alt_text: string;
|
|
46
46
|
image_url: string;
|
|
@@ -49,7 +49,7 @@ export type AcsSystemResource = {
|
|
|
49
49
|
time_zone: string | null;
|
|
50
50
|
};
|
|
51
51
|
name: string;
|
|
52
|
-
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;
|
|
52
|
+
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;
|
|
53
53
|
system_type_display_name?: string | undefined;
|
|
54
54
|
visionline_metadata?: {
|
|
55
55
|
lan_address?: string | undefined;
|
|
@@ -8,6 +8,15 @@ export type PhoneSessionResource = {
|
|
|
8
8
|
acs_entrances: Array<{
|
|
9
9
|
acs_entrance_id: string;
|
|
10
10
|
acs_system_id: string;
|
|
11
|
+
akiles_metadata?: {
|
|
12
|
+
actions?: Array<{
|
|
13
|
+
id?: string | undefined;
|
|
14
|
+
name?: string | undefined;
|
|
15
|
+
}> | undefined;
|
|
16
|
+
gadget_id?: string | undefined;
|
|
17
|
+
site_id?: string | undefined;
|
|
18
|
+
site_name?: string | undefined;
|
|
19
|
+
} | undefined;
|
|
11
20
|
assa_abloy_vostio_metadata?: {
|
|
12
21
|
door_name?: string | undefined;
|
|
13
22
|
door_number?: number | undefined;
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const seamapiJavascriptHttpVersion = "1.
|
|
1
|
+
declare const seamapiJavascriptHttpVersion = "1.124.0";
|
|
2
2
|
export default seamapiJavascriptHttpVersion;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/http",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.124.0",
|
|
4
4
|
"description": "JavaScript HTTP client for the Seam API written in TypeScript.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"npm": ">=10.9.4"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@seamapi/types": "^1.
|
|
89
|
+
"@seamapi/types": "^1.979.0"
|
|
90
90
|
},
|
|
91
91
|
"peerDependenciesMeta": {
|
|
92
92
|
"@seamapi/types": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"@seamapi/blueprint": "^1.0.0",
|
|
103
103
|
"@seamapi/fake-seam-connect": "^1.77.0",
|
|
104
104
|
"@seamapi/smith": "^1.0.0",
|
|
105
|
-
"@seamapi/types": "1.
|
|
105
|
+
"@seamapi/types": "1.979.0",
|
|
106
106
|
"@swc/core": "^1.11.29",
|
|
107
107
|
"@types/jsonwebtoken": "^9.0.6",
|
|
108
108
|
"@types/node": "^24.10.9",
|
|
@@ -8,6 +8,19 @@ export type AcsEntranceResource = {
|
|
|
8
8
|
|
|
9
9
|
acs_system_id: string
|
|
10
10
|
|
|
11
|
+
akiles_metadata?:
|
|
12
|
+
| {
|
|
13
|
+
actions?:
|
|
14
|
+
| Array<{
|
|
15
|
+
id?: string | undefined
|
|
16
|
+
name?: string | undefined
|
|
17
|
+
}>
|
|
18
|
+
| undefined
|
|
19
|
+
gadget_id?: string | undefined
|
|
20
|
+
site_id?: string | undefined
|
|
21
|
+
site_name?: string | undefined
|
|
22
|
+
}
|
|
23
|
+
| undefined
|
|
11
24
|
assa_abloy_vostio_metadata?:
|
|
12
25
|
| {
|
|
13
26
|
door_name?: string | undefined
|
|
@@ -92,6 +92,7 @@ export type AcsSystemResource = {
|
|
|
92
92
|
| 'assa_abloy_vostio_credential_service'
|
|
93
93
|
| 'hotek_site'
|
|
94
94
|
| 'kisi_organization'
|
|
95
|
+
| 'akiles_organization'
|
|
95
96
|
| undefined
|
|
96
97
|
external_type_display_name?: string | undefined
|
|
97
98
|
image_alt_text: string
|
|
@@ -123,6 +124,7 @@ export type AcsSystemResource = {
|
|
|
123
124
|
| 'assa_abloy_vostio_credential_service'
|
|
124
125
|
| 'hotek_site'
|
|
125
126
|
| 'kisi_organization'
|
|
127
|
+
| 'akiles_organization'
|
|
126
128
|
| undefined
|
|
127
129
|
system_type_display_name?: string | undefined
|
|
128
130
|
visionline_metadata?:
|
|
@@ -17,6 +17,19 @@ export type PhoneSessionResource = {
|
|
|
17
17
|
|
|
18
18
|
acs_system_id: string
|
|
19
19
|
|
|
20
|
+
akiles_metadata?:
|
|
21
|
+
| {
|
|
22
|
+
actions?:
|
|
23
|
+
| Array<{
|
|
24
|
+
id?: string | undefined
|
|
25
|
+
name?: string | undefined
|
|
26
|
+
}>
|
|
27
|
+
| undefined
|
|
28
|
+
gadget_id?: string | undefined
|
|
29
|
+
site_id?: string | undefined
|
|
30
|
+
site_name?: string | undefined
|
|
31
|
+
}
|
|
32
|
+
| undefined
|
|
20
33
|
assa_abloy_vostio_metadata?:
|
|
21
34
|
| {
|
|
22
35
|
door_name?: string | undefined
|
package/src/lib/version.ts
CHANGED