@seamapi/types 1.166.0 → 1.168.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 +17 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +42 -3
- 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 +28 -0
- package/lib/seam/connect/openapi.js +13 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -3
- 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 +13 -2
- package/src/lib/seam/connect/route-types.ts +16 -1
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" },
|
|
@@ -5180,9 +5185,10 @@ var openapi_default = {
|
|
|
5180
5185
|
schema: {
|
|
5181
5186
|
properties: {
|
|
5182
5187
|
acs_credential_id: { type: "string" },
|
|
5183
|
-
code: { pattern: "^\\d+$", type: "string" }
|
|
5188
|
+
code: { pattern: "^\\d+$", type: "string" },
|
|
5189
|
+
ends_at: { format: "date-time", type: "string" }
|
|
5184
5190
|
},
|
|
5185
|
-
required: ["acs_credential_id"
|
|
5191
|
+
required: ["acs_credential_id"],
|
|
5186
5192
|
type: "object"
|
|
5187
5193
|
}
|
|
5188
5194
|
}
|
|
@@ -5226,9 +5232,10 @@ var openapi_default = {
|
|
|
5226
5232
|
schema: {
|
|
5227
5233
|
properties: {
|
|
5228
5234
|
acs_credential_id: { type: "string" },
|
|
5229
|
-
code: { pattern: "^\\d+$", type: "string" }
|
|
5235
|
+
code: { pattern: "^\\d+$", type: "string" },
|
|
5236
|
+
ends_at: { format: "date-time", type: "string" }
|
|
5230
5237
|
},
|
|
5231
|
-
required: ["acs_credential_id"
|
|
5238
|
+
required: ["acs_credential_id"],
|
|
5232
5239
|
type: "object"
|
|
5233
5240
|
}
|
|
5234
5241
|
}
|
|
@@ -8389,7 +8396,9 @@ var openapi_default = {
|
|
|
8389
8396
|
"acs_user.deleted",
|
|
8390
8397
|
"acs_credential.deleted",
|
|
8391
8398
|
"enrollment_automation.deleted",
|
|
8392
|
-
"client_session.deleted"
|
|
8399
|
+
"client_session.deleted",
|
|
8400
|
+
"action_attempt.lock_door.succeeded",
|
|
8401
|
+
"action_attempt.lock_door.failed"
|
|
8393
8402
|
],
|
|
8394
8403
|
type: "string"
|
|
8395
8404
|
},
|
|
@@ -8448,7 +8457,9 @@ var openapi_default = {
|
|
|
8448
8457
|
"acs_user.deleted",
|
|
8449
8458
|
"acs_credential.deleted",
|
|
8450
8459
|
"enrollment_automation.deleted",
|
|
8451
|
-
"client_session.deleted"
|
|
8460
|
+
"client_session.deleted",
|
|
8461
|
+
"action_attempt.lock_door.succeeded",
|
|
8462
|
+
"action_attempt.lock_door.failed"
|
|
8452
8463
|
],
|
|
8453
8464
|
type: "string"
|
|
8454
8465
|
},
|