@seamapi/types 1.166.0 → 1.167.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 +11 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +32 -2
- package/lib/seam/connect/models/events/action-attempts.d.ts +51 -0
- package/lib/seam/connect/models/events/action-attempts.js +33 -0
- package/lib/seam/connect/models/events/action-attempts.js.map +1 -0
- package/lib/seam/connect/models/events/index.d.ts +1 -0
- package/lib/seam/connect/models/events/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +9 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/action-attempts.ts +36 -0
- package/src/lib/seam/connect/models/events/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +9 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
package/dist/connect.cjs
CHANGED
|
@@ -2589,9 +2589,14 @@ var openapi_default = {
|
|
|
2589
2589
|
},
|
|
2590
2590
|
event: {
|
|
2591
2591
|
properties: {
|
|
2592
|
+
acs_credential_id: { format: "uuid", type: "string" },
|
|
2593
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
2594
|
+
acs_user_id: { format: "uuid", type: "string" },
|
|
2592
2595
|
action_attempt_id: { format: "uuid", type: "string" },
|
|
2596
|
+
client_session_id: { format: "uuid", type: "string" },
|
|
2593
2597
|
created_at: { format: "date-time", type: "string" },
|
|
2594
2598
|
device_id: { format: "uuid", type: "string" },
|
|
2599
|
+
enrollment_automation_id: { format: "uuid", type: "string" },
|
|
2595
2600
|
event_id: { format: "uuid", type: "string" },
|
|
2596
2601
|
event_type: { type: "string" },
|
|
2597
2602
|
occurred_at: { format: "date-time", type: "string" },
|
|
@@ -8389,7 +8394,9 @@ var openapi_default = {
|
|
|
8389
8394
|
"acs_user.deleted",
|
|
8390
8395
|
"acs_credential.deleted",
|
|
8391
8396
|
"enrollment_automation.deleted",
|
|
8392
|
-
"client_session.deleted"
|
|
8397
|
+
"client_session.deleted",
|
|
8398
|
+
"action_attempt.lock_door.succeeded",
|
|
8399
|
+
"action_attempt.lock_door.failed"
|
|
8393
8400
|
],
|
|
8394
8401
|
type: "string"
|
|
8395
8402
|
},
|
|
@@ -8448,7 +8455,9 @@ var openapi_default = {
|
|
|
8448
8455
|
"acs_user.deleted",
|
|
8449
8456
|
"acs_credential.deleted",
|
|
8450
8457
|
"enrollment_automation.deleted",
|
|
8451
|
-
"client_session.deleted"
|
|
8458
|
+
"client_session.deleted",
|
|
8459
|
+
"action_attempt.lock_door.succeeded",
|
|
8460
|
+
"action_attempt.lock_door.failed"
|
|
8452
8461
|
],
|
|
8453
8462
|
type: "string"
|
|
8454
8463
|
},
|