@seamapi/types 1.547.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 +27 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +92 -10
- package/dist/index.cjs +27 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +14 -4
- 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 +100 -30
- package/lib/seam/connect/models/phones/phone-session.d.ts +58 -18
- package/lib/seam/connect/openapi.d.ts +18 -0
- package/lib/seam/connect/openapi.js +24 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +40 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +24 -2
- package/src/lib/seam/connect/route-types.ts +40 -0
package/dist/connect.cjs
CHANGED
|
@@ -2468,7 +2468,9 @@ var acs_entrance_dormakaba_community_metadata = zod.z.object({
|
|
|
2468
2468
|
"dormakaba Community-specific metadata associated with the entrance."
|
|
2469
2469
|
);
|
|
2470
2470
|
var acs_entrance_hotek_metadata = zod.z.object({
|
|
2471
|
-
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.")
|
|
2472
2474
|
}).describe("Hotek-specific metadata associated with the entrance.");
|
|
2473
2475
|
var acs_entrance_latch_metadata = zod.z.object({
|
|
2474
2476
|
accessibility_type: zod.z.string().describe("Accessibility type in the Latch access system."),
|
|
@@ -8070,12 +8072,21 @@ var openapi_default = {
|
|
|
8070
8072
|
hotek_metadata: {
|
|
8071
8073
|
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8072
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
|
+
},
|
|
8073
8084
|
room_number: {
|
|
8074
8085
|
description: "Room number of the entrance.",
|
|
8075
8086
|
type: "string"
|
|
8076
8087
|
}
|
|
8077
8088
|
},
|
|
8078
|
-
required: ["room_number"],
|
|
8089
|
+
required: ["room_number", "display_name", "door_type"],
|
|
8079
8090
|
type: "object"
|
|
8080
8091
|
},
|
|
8081
8092
|
latch_metadata: {
|
|
@@ -23240,12 +23251,25 @@ var openapi_default = {
|
|
|
23240
23251
|
hotek_metadata: {
|
|
23241
23252
|
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
23242
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
|
+
},
|
|
23243
23263
|
room_number: {
|
|
23244
23264
|
description: "Room number of the entrance.",
|
|
23245
23265
|
type: "string"
|
|
23246
23266
|
}
|
|
23247
23267
|
},
|
|
23248
|
-
required: [
|
|
23268
|
+
required: [
|
|
23269
|
+
"room_number",
|
|
23270
|
+
"display_name",
|
|
23271
|
+
"door_type"
|
|
23272
|
+
],
|
|
23249
23273
|
type: "object"
|
|
23250
23274
|
},
|
|
23251
23275
|
latch_metadata: {
|