@seamapi/types 1.162.0 → 1.163.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 +13 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -0
- package/lib/seam/connect/models/acs/credential.d.ts +8 -0
- package/lib/seam/connect/models/acs/credential.js +1 -0
- package/lib/seam/connect/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/models/acs/entrance.d.ts +4 -4
- package/lib/seam/connect/openapi.d.ts +14 -0
- package/lib/seam/connect/openapi.js +12 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/credential.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +13 -1
- package/src/lib/seam/connect/route-types.ts +14 -0
package/dist/connect.cjs
CHANGED
|
@@ -274,6 +274,7 @@ var openapi_default = {
|
|
|
274
274
|
starts_at: { type: "string" },
|
|
275
275
|
visionline_metadata: {
|
|
276
276
|
properties: {
|
|
277
|
+
card_function_type: { enum: ["guest", "staff"], type: "string" },
|
|
277
278
|
common_acs_entrance_ids: {
|
|
278
279
|
items: { format: "uuid", type: "string" },
|
|
279
280
|
type: "array"
|
|
@@ -287,6 +288,7 @@ var openapi_default = {
|
|
|
287
288
|
type: "array"
|
|
288
289
|
}
|
|
289
290
|
},
|
|
291
|
+
required: ["card_function_type"],
|
|
290
292
|
type: "object"
|
|
291
293
|
},
|
|
292
294
|
warnings: {
|
|
@@ -4347,11 +4349,20 @@ var openapi_default = {
|
|
|
4347
4349
|
enum: ["TLCode", "rfid48"],
|
|
4348
4350
|
type: "string"
|
|
4349
4351
|
},
|
|
4350
|
-
|
|
4352
|
+
card_function_type: {
|
|
4353
|
+
default: "guest",
|
|
4354
|
+
enum: ["guest", "staff"],
|
|
4355
|
+
type: "string"
|
|
4356
|
+
},
|
|
4357
|
+
is_override_key: {
|
|
4358
|
+
description: "\n ---\n deprecated: use override.\n ---\n ",
|
|
4359
|
+
type: "boolean"
|
|
4360
|
+
},
|
|
4351
4361
|
joiner_acs_credential_ids: {
|
|
4352
4362
|
items: { format: "uuid", type: "string" },
|
|
4353
4363
|
type: "array"
|
|
4354
|
-
}
|
|
4364
|
+
},
|
|
4365
|
+
override: { type: "boolean" }
|
|
4355
4366
|
},
|
|
4356
4367
|
type: "object"
|
|
4357
4368
|
}
|