@seamapi/types 1.165.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 +23 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +59 -2
- package/lib/seam/connect/models/acs/entrance.d.ts +18 -0
- package/lib/seam/connect/models/acs/entrance.js +4 -0
- package/lib/seam/connect/models/acs/entrance.js.map +1 -1
- 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 +35 -0
- package/lib/seam/connect/openapi.js +21 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/entrance.ts +6 -0
- 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 +21 -0
- package/src/lib/seam/connect/route-types.ts +26 -0
package/dist/connect.cjs
CHANGED
|
@@ -842,6 +842,17 @@ var openapi_default = {
|
|
|
842
842
|
acs_system_id: { format: "uuid", type: "string" },
|
|
843
843
|
created_at: { format: "date-time", type: "string" },
|
|
844
844
|
display_name: { type: "string" },
|
|
845
|
+
errors: {
|
|
846
|
+
items: {
|
|
847
|
+
properties: {
|
|
848
|
+
error_code: { type: "string" },
|
|
849
|
+
message: { type: "string" }
|
|
850
|
+
},
|
|
851
|
+
required: ["error_code", "message"],
|
|
852
|
+
type: "object"
|
|
853
|
+
},
|
|
854
|
+
type: "array"
|
|
855
|
+
},
|
|
845
856
|
latch_metadata: {
|
|
846
857
|
nullable: true,
|
|
847
858
|
properties: {
|
|
@@ -900,6 +911,7 @@ var openapi_default = {
|
|
|
900
911
|
"acs_system_id",
|
|
901
912
|
"created_at",
|
|
902
913
|
"latch_metadata",
|
|
914
|
+
"errors",
|
|
903
915
|
"visionline_metadata"
|
|
904
916
|
],
|
|
905
917
|
type: "object"
|
|
@@ -2577,9 +2589,14 @@ var openapi_default = {
|
|
|
2577
2589
|
},
|
|
2578
2590
|
event: {
|
|
2579
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" },
|
|
2580
2595
|
action_attempt_id: { format: "uuid", type: "string" },
|
|
2596
|
+
client_session_id: { format: "uuid", type: "string" },
|
|
2581
2597
|
created_at: { format: "date-time", type: "string" },
|
|
2582
2598
|
device_id: { format: "uuid", type: "string" },
|
|
2599
|
+
enrollment_automation_id: { format: "uuid", type: "string" },
|
|
2583
2600
|
event_id: { format: "uuid", type: "string" },
|
|
2584
2601
|
event_type: { type: "string" },
|
|
2585
2602
|
occurred_at: { format: "date-time", type: "string" },
|
|
@@ -8377,7 +8394,9 @@ var openapi_default = {
|
|
|
8377
8394
|
"acs_user.deleted",
|
|
8378
8395
|
"acs_credential.deleted",
|
|
8379
8396
|
"enrollment_automation.deleted",
|
|
8380
|
-
"client_session.deleted"
|
|
8397
|
+
"client_session.deleted",
|
|
8398
|
+
"action_attempt.lock_door.succeeded",
|
|
8399
|
+
"action_attempt.lock_door.failed"
|
|
8381
8400
|
],
|
|
8382
8401
|
type: "string"
|
|
8383
8402
|
},
|
|
@@ -8436,7 +8455,9 @@ var openapi_default = {
|
|
|
8436
8455
|
"acs_user.deleted",
|
|
8437
8456
|
"acs_credential.deleted",
|
|
8438
8457
|
"enrollment_automation.deleted",
|
|
8439
|
-
"client_session.deleted"
|
|
8458
|
+
"client_session.deleted",
|
|
8459
|
+
"action_attempt.lock_door.succeeded",
|
|
8460
|
+
"action_attempt.lock_door.failed"
|
|
8440
8461
|
],
|
|
8441
8462
|
type: "string"
|
|
8442
8463
|
},
|