@seamapi/types 1.917.0 → 1.918.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 +42 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +115 -8
- package/dist/index.cjs +42 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/events/devices.d.ts +30 -8
- package/lib/seam/connect/models/events/devices.js +25 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +15 -4
- package/lib/seam/connect/openapi.js +20 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +25 -0
- package/src/lib/seam/connect/openapi.ts +24 -1
- package/src/lib/seam/connect/route-types.ts +100 -4
package/dist/connect.cjs
CHANGED
|
@@ -6484,7 +6484,28 @@ var lock_unlocked_event = device_event.extend({
|
|
|
6484
6484
|
`);
|
|
6485
6485
|
var lock_access_denied_event = device_event.extend({
|
|
6486
6486
|
event_type: zod.z.literal("lock.access_denied"),
|
|
6487
|
-
access_code_id: zod.z.string().uuid().optional().describe("ID of the access code that was used in the unlock attempts.")
|
|
6487
|
+
access_code_id: zod.z.string().uuid().optional().describe("ID of the access code that was used in the unlock attempts."),
|
|
6488
|
+
user_identity_id: zod.z.string().uuid().optional().describe(`
|
|
6489
|
+
undocumented: Unreleased.
|
|
6490
|
+
---
|
|
6491
|
+
ID of the user identity associated with the access-denied event.
|
|
6492
|
+
`),
|
|
6493
|
+
acs_system_id: zod.z.string().uuid().optional().describe(`
|
|
6494
|
+
undocumented: Unreleased.
|
|
6495
|
+
---
|
|
6496
|
+
ID of the ACS system associated with the access-denied event.
|
|
6497
|
+
`),
|
|
6498
|
+
acs_user_id: zod.z.string().uuid().optional().describe(`
|
|
6499
|
+
undocumented: Unreleased.
|
|
6500
|
+
---
|
|
6501
|
+
ID of the ACS user associated with the access-denied event.
|
|
6502
|
+
`),
|
|
6503
|
+
acs_entrance_id: zod.z.string().uuid().optional().describe(`
|
|
6504
|
+
undocumented: Unreleased.
|
|
6505
|
+
---
|
|
6506
|
+
ID of the ACS entrance associated with the access-denied event.
|
|
6507
|
+
`),
|
|
6508
|
+
device_id: zod.z.string().uuid().optional().describe("ID of the affected device.")
|
|
6488
6509
|
}).describe(`
|
|
6489
6510
|
---
|
|
6490
6511
|
route_path: /locks
|
|
@@ -29954,6 +29975,21 @@ var openapi = {
|
|
|
29954
29975
|
format: "uuid",
|
|
29955
29976
|
type: "string"
|
|
29956
29977
|
},
|
|
29978
|
+
acs_entrance_id: {
|
|
29979
|
+
description: "\n undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the access-denied event.\n ",
|
|
29980
|
+
format: "uuid",
|
|
29981
|
+
type: "string"
|
|
29982
|
+
},
|
|
29983
|
+
acs_system_id: {
|
|
29984
|
+
description: "\n undocumented: Unreleased.\n ---\n ID of the ACS system associated with the access-denied event.\n ",
|
|
29985
|
+
format: "uuid",
|
|
29986
|
+
type: "string"
|
|
29987
|
+
},
|
|
29988
|
+
acs_user_id: {
|
|
29989
|
+
description: "\n undocumented: Unreleased.\n ---\n ID of the ACS user associated with the access-denied event.\n ",
|
|
29990
|
+
format: "uuid",
|
|
29991
|
+
type: "string"
|
|
29992
|
+
},
|
|
29957
29993
|
connected_account_custom_metadata: {
|
|
29958
29994
|
additionalProperties: {
|
|
29959
29995
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
@@ -29998,6 +30034,11 @@ var openapi = {
|
|
|
29998
30034
|
format: "date-time",
|
|
29999
30035
|
type: "string"
|
|
30000
30036
|
},
|
|
30037
|
+
user_identity_id: {
|
|
30038
|
+
description: "\n undocumented: Unreleased.\n ---\n ID of the user identity associated with the access-denied event.\n ",
|
|
30039
|
+
format: "uuid",
|
|
30040
|
+
type: "string"
|
|
30041
|
+
},
|
|
30001
30042
|
workspace_id: {
|
|
30002
30043
|
description: "ID of the workspace associated with the event.",
|
|
30003
30044
|
format: "uuid",
|
|
@@ -30009,7 +30050,6 @@ var openapi = {
|
|
|
30009
30050
|
"workspace_id",
|
|
30010
30051
|
"created_at",
|
|
30011
30052
|
"occurred_at",
|
|
30012
|
-
"device_id",
|
|
30013
30053
|
"connected_account_id",
|
|
30014
30054
|
"event_type"
|
|
30015
30055
|
],
|