@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
package/dist/connect.cjs
CHANGED
|
@@ -3993,6 +3993,17 @@ var acs_encoder = zod.z.object({
|
|
|
3993
3993
|
|
|
3994
3994
|
To verify if your access control system requires a card encoder, see the corresponding [system integration guide](https://docs.seam.co/device-and-system-integration-guides#access-control-systems).
|
|
3995
3995
|
`);
|
|
3996
|
+
var acs_entrance_akiles_metadata = zod.z.object({
|
|
3997
|
+
gadget_id: zod.z.string().optional().describe("ID of the Akiles gadget."),
|
|
3998
|
+
site_id: zod.z.string().optional().describe("ID of the Akiles site the gadget belongs to."),
|
|
3999
|
+
site_name: zod.z.string().optional().describe("Name of the Akiles site the gadget belongs to."),
|
|
4000
|
+
actions: zod.z.array(
|
|
4001
|
+
zod.z.object({
|
|
4002
|
+
id: zod.z.string().optional().describe("ID of the gadget action."),
|
|
4003
|
+
name: zod.z.string().optional().describe("Name of the gadget action.")
|
|
4004
|
+
}).partial()
|
|
4005
|
+
).optional().describe("Actions the gadget exposes (for example, open).")
|
|
4006
|
+
}).partial().describe("Akiles-specific metadata for the entrance.");
|
|
3996
4007
|
var acs_entrance_avigilon_alta_metadata = zod.z.object({
|
|
3997
4008
|
entry_name: zod.z.string().optional().describe("Entry name for an Avigilon Alta system."),
|
|
3998
4009
|
org_name: zod.z.string().optional().describe("Organization name for an Avigilon Alta system."),
|
|
@@ -4132,6 +4143,9 @@ var acs_entrance = zod.z.object({
|
|
|
4132
4143
|
avigilon_alta_metadata: acs_entrance_avigilon_alta_metadata.optional().describe(
|
|
4133
4144
|
"Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details)."
|
|
4134
4145
|
),
|
|
4146
|
+
akiles_metadata: acs_entrance_akiles_metadata.optional().describe(
|
|
4147
|
+
"Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details)."
|
|
4148
|
+
),
|
|
4135
4149
|
is_locked: zod.z.boolean().optional().describe(
|
|
4136
4150
|
"Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked."
|
|
4137
4151
|
)
|
|
@@ -4168,7 +4182,8 @@ var acs_system_external_type = zod.z.enum([
|
|
|
4168
4182
|
"assa_abloy_vostio",
|
|
4169
4183
|
"assa_abloy_vostio_credential_service",
|
|
4170
4184
|
"hotek_site",
|
|
4171
|
-
"kisi_organization"
|
|
4185
|
+
"kisi_organization",
|
|
4186
|
+
"akiles_organization"
|
|
4172
4187
|
]);
|
|
4173
4188
|
var common_acs_system_error = zod.z.object({
|
|
4174
4189
|
created_at: zod.z.string().datetime().describe("Date and time at which Seam created the error."),
|
|
@@ -11051,6 +11066,41 @@ var openapi = {
|
|
|
11051
11066
|
format: "uuid",
|
|
11052
11067
|
type: "string"
|
|
11053
11068
|
},
|
|
11069
|
+
akiles_metadata: {
|
|
11070
|
+
description: "Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
|
|
11071
|
+
properties: {
|
|
11072
|
+
actions: {
|
|
11073
|
+
description: "Actions the gadget exposes (for example, open).",
|
|
11074
|
+
items: {
|
|
11075
|
+
properties: {
|
|
11076
|
+
id: {
|
|
11077
|
+
description: "ID of the gadget action.",
|
|
11078
|
+
type: "string"
|
|
11079
|
+
},
|
|
11080
|
+
name: {
|
|
11081
|
+
description: "Name of the gadget action.",
|
|
11082
|
+
type: "string"
|
|
11083
|
+
}
|
|
11084
|
+
},
|
|
11085
|
+
type: "object"
|
|
11086
|
+
},
|
|
11087
|
+
type: "array"
|
|
11088
|
+
},
|
|
11089
|
+
gadget_id: {
|
|
11090
|
+
description: "ID of the Akiles gadget.",
|
|
11091
|
+
type: "string"
|
|
11092
|
+
},
|
|
11093
|
+
site_id: {
|
|
11094
|
+
description: "ID of the Akiles site the gadget belongs to.",
|
|
11095
|
+
type: "string"
|
|
11096
|
+
},
|
|
11097
|
+
site_name: {
|
|
11098
|
+
description: "Name of the Akiles site the gadget belongs to.",
|
|
11099
|
+
type: "string"
|
|
11100
|
+
}
|
|
11101
|
+
},
|
|
11102
|
+
type: "object"
|
|
11103
|
+
},
|
|
11054
11104
|
assa_abloy_vostio_metadata: {
|
|
11055
11105
|
description: "ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
|
|
11056
11106
|
properties: {
|
|
@@ -11746,7 +11796,8 @@ var openapi = {
|
|
|
11746
11796
|
"assa_abloy_vostio",
|
|
11747
11797
|
"assa_abloy_vostio_credential_service",
|
|
11748
11798
|
"hotek_site",
|
|
11749
|
-
"kisi_organization"
|
|
11799
|
+
"kisi_organization",
|
|
11800
|
+
"akiles_organization"
|
|
11750
11801
|
],
|
|
11751
11802
|
type: "string"
|
|
11752
11803
|
},
|
|
@@ -11800,7 +11851,8 @@ var openapi = {
|
|
|
11800
11851
|
"assa_abloy_vostio",
|
|
11801
11852
|
"assa_abloy_vostio_credential_service",
|
|
11802
11853
|
"hotek_site",
|
|
11803
|
-
"kisi_organization"
|
|
11854
|
+
"kisi_organization",
|
|
11855
|
+
"akiles_organization"
|
|
11804
11856
|
],
|
|
11805
11857
|
type: "string",
|
|
11806
11858
|
"x-deprecated": "Use `external_type`."
|
|
@@ -32629,6 +32681,41 @@ var openapi = {
|
|
|
32629
32681
|
format: "uuid",
|
|
32630
32682
|
type: "string"
|
|
32631
32683
|
},
|
|
32684
|
+
akiles_metadata: {
|
|
32685
|
+
description: "Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
|
|
32686
|
+
properties: {
|
|
32687
|
+
actions: {
|
|
32688
|
+
description: "Actions the gadget exposes (for example, open).",
|
|
32689
|
+
items: {
|
|
32690
|
+
properties: {
|
|
32691
|
+
id: {
|
|
32692
|
+
description: "ID of the gadget action.",
|
|
32693
|
+
type: "string"
|
|
32694
|
+
},
|
|
32695
|
+
name: {
|
|
32696
|
+
description: "Name of the gadget action.",
|
|
32697
|
+
type: "string"
|
|
32698
|
+
}
|
|
32699
|
+
},
|
|
32700
|
+
type: "object"
|
|
32701
|
+
},
|
|
32702
|
+
type: "array"
|
|
32703
|
+
},
|
|
32704
|
+
gadget_id: {
|
|
32705
|
+
description: "ID of the Akiles gadget.",
|
|
32706
|
+
type: "string"
|
|
32707
|
+
},
|
|
32708
|
+
site_id: {
|
|
32709
|
+
description: "ID of the Akiles site the gadget belongs to.",
|
|
32710
|
+
type: "string"
|
|
32711
|
+
},
|
|
32712
|
+
site_name: {
|
|
32713
|
+
description: "Name of the Akiles site the gadget belongs to.",
|
|
32714
|
+
type: "string"
|
|
32715
|
+
}
|
|
32716
|
+
},
|
|
32717
|
+
type: "object"
|
|
32718
|
+
},
|
|
32632
32719
|
assa_abloy_vostio_metadata: {
|
|
32633
32720
|
description: "ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).",
|
|
32634
32721
|
properties: {
|