@seamapi/types 1.546.0 → 1.548.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 +43 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -10
- package/dist/index.cjs +43 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +19 -4
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/hotek.d.ts +6 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js +2 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +2 -2
- package/lib/seam/connect/models/batch.d.ts +135 -30
- package/lib/seam/connect/models/phones/phone-session.d.ts +78 -18
- package/lib/seam/connect/openapi.d.ts +26 -0
- package/lib/seam/connect/openapi.js +37 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +60 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +5 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +39 -4
- package/src/lib/seam/connect/route-types.ts +60 -0
package/dist/connect.cjs
CHANGED
|
@@ -2460,12 +2460,17 @@ var acs_entrance_dormakaba_ambiance_metadata = zod.z.object({
|
|
|
2460
2460
|
var acs_entrance_dormakaba_community_metadata = zod.z.object({
|
|
2461
2461
|
access_point_name: zod.z.string().describe(
|
|
2462
2462
|
"Name of the access point in the dormakaba Community access system."
|
|
2463
|
+
),
|
|
2464
|
+
access_point_profile: zod.z.string().describe(
|
|
2465
|
+
"Type of access point profile in the dormakaba Community access system."
|
|
2463
2466
|
)
|
|
2464
2467
|
}).describe(
|
|
2465
2468
|
"dormakaba Community-specific metadata associated with the entrance."
|
|
2466
2469
|
);
|
|
2467
2470
|
var acs_entrance_hotek_metadata = zod.z.object({
|
|
2468
|
-
room_number: zod.z.string().describe("Room number of the entrance.")
|
|
2471
|
+
room_number: zod.z.string().describe("Room number of the entrance."),
|
|
2472
|
+
display_name: zod.z.string().describe("Display name of the entrance."),
|
|
2473
|
+
door_type: zod.z.enum(["common_area", "guest"]).describe("Type of door.")
|
|
2469
2474
|
}).describe("Hotek-specific metadata associated with the entrance.");
|
|
2470
2475
|
var acs_entrance_latch_metadata = zod.z.object({
|
|
2471
2476
|
accessibility_type: zod.z.string().describe("Accessibility type in the Latch access system."),
|
|
@@ -8037,9 +8042,13 @@ var openapi_default = {
|
|
|
8037
8042
|
access_point_name: {
|
|
8038
8043
|
description: "Name of the access point in the dormakaba Community access system.",
|
|
8039
8044
|
type: "string"
|
|
8045
|
+
},
|
|
8046
|
+
access_point_profile: {
|
|
8047
|
+
description: "Type of access point profile in the dormakaba Community access system.",
|
|
8048
|
+
type: "string"
|
|
8040
8049
|
}
|
|
8041
8050
|
},
|
|
8042
|
-
required: ["access_point_name"],
|
|
8051
|
+
required: ["access_point_name", "access_point_profile"],
|
|
8043
8052
|
type: "object"
|
|
8044
8053
|
},
|
|
8045
8054
|
errors: {
|
|
@@ -8063,12 +8072,21 @@ var openapi_default = {
|
|
|
8063
8072
|
hotek_metadata: {
|
|
8064
8073
|
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8065
8074
|
properties: {
|
|
8075
|
+
display_name: {
|
|
8076
|
+
description: "Display name of the entrance.",
|
|
8077
|
+
type: "string"
|
|
8078
|
+
},
|
|
8079
|
+
door_type: {
|
|
8080
|
+
description: "Type of door.",
|
|
8081
|
+
enum: ["common_area", "guest"],
|
|
8082
|
+
type: "string"
|
|
8083
|
+
},
|
|
8066
8084
|
room_number: {
|
|
8067
8085
|
description: "Room number of the entrance.",
|
|
8068
8086
|
type: "string"
|
|
8069
8087
|
}
|
|
8070
8088
|
},
|
|
8071
|
-
required: ["room_number"],
|
|
8089
|
+
required: ["room_number", "display_name", "door_type"],
|
|
8072
8090
|
type: "object"
|
|
8073
8091
|
},
|
|
8074
8092
|
latch_metadata: {
|
|
@@ -23200,9 +23218,16 @@ var openapi_default = {
|
|
|
23200
23218
|
access_point_name: {
|
|
23201
23219
|
description: "Name of the access point in the dormakaba Community access system.",
|
|
23202
23220
|
type: "string"
|
|
23221
|
+
},
|
|
23222
|
+
access_point_profile: {
|
|
23223
|
+
description: "Type of access point profile in the dormakaba Community access system.",
|
|
23224
|
+
type: "string"
|
|
23203
23225
|
}
|
|
23204
23226
|
},
|
|
23205
|
-
required: [
|
|
23227
|
+
required: [
|
|
23228
|
+
"access_point_name",
|
|
23229
|
+
"access_point_profile"
|
|
23230
|
+
],
|
|
23206
23231
|
type: "object"
|
|
23207
23232
|
},
|
|
23208
23233
|
errors: {
|
|
@@ -23226,12 +23251,25 @@ var openapi_default = {
|
|
|
23226
23251
|
hotek_metadata: {
|
|
23227
23252
|
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
23228
23253
|
properties: {
|
|
23254
|
+
display_name: {
|
|
23255
|
+
description: "Display name of the entrance.",
|
|
23256
|
+
type: "string"
|
|
23257
|
+
},
|
|
23258
|
+
door_type: {
|
|
23259
|
+
description: "Type of door.",
|
|
23260
|
+
enum: ["common_area", "guest"],
|
|
23261
|
+
type: "string"
|
|
23262
|
+
},
|
|
23229
23263
|
room_number: {
|
|
23230
23264
|
description: "Room number of the entrance.",
|
|
23231
23265
|
type: "string"
|
|
23232
23266
|
}
|
|
23233
23267
|
},
|
|
23234
|
-
required: [
|
|
23268
|
+
required: [
|
|
23269
|
+
"room_number",
|
|
23270
|
+
"display_name",
|
|
23271
|
+
"door_type"
|
|
23272
|
+
],
|
|
23235
23273
|
type: "object"
|
|
23236
23274
|
},
|
|
23237
23275
|
latch_metadata: {
|