@seamapi/types 1.167.0 → 1.169.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 +12 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -3
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -2
- package/src/lib/seam/connect/route-types.ts +6 -1
package/dist/connect.cjs
CHANGED
|
@@ -5185,9 +5185,10 @@ var openapi_default = {
|
|
|
5185
5185
|
schema: {
|
|
5186
5186
|
properties: {
|
|
5187
5187
|
acs_credential_id: { type: "string" },
|
|
5188
|
-
code: { pattern: "^\\d+$", type: "string" }
|
|
5188
|
+
code: { pattern: "^\\d+$", type: "string" },
|
|
5189
|
+
ends_at: { format: "date-time", type: "string" }
|
|
5189
5190
|
},
|
|
5190
|
-
required: ["acs_credential_id"
|
|
5191
|
+
required: ["acs_credential_id"],
|
|
5191
5192
|
type: "object"
|
|
5192
5193
|
}
|
|
5193
5194
|
}
|
|
@@ -5231,9 +5232,10 @@ var openapi_default = {
|
|
|
5231
5232
|
schema: {
|
|
5232
5233
|
properties: {
|
|
5233
5234
|
acs_credential_id: { type: "string" },
|
|
5234
|
-
code: { pattern: "^\\d+$", type: "string" }
|
|
5235
|
+
code: { pattern: "^\\d+$", type: "string" },
|
|
5236
|
+
ends_at: { format: "date-time", type: "string" }
|
|
5235
5237
|
},
|
|
5236
|
-
required: ["acs_credential_id"
|
|
5238
|
+
required: ["acs_credential_id"],
|
|
5237
5239
|
type: "object"
|
|
5238
5240
|
}
|
|
5239
5241
|
}
|
|
@@ -8396,7 +8398,9 @@ var openapi_default = {
|
|
|
8396
8398
|
"enrollment_automation.deleted",
|
|
8397
8399
|
"client_session.deleted",
|
|
8398
8400
|
"action_attempt.lock_door.succeeded",
|
|
8399
|
-
"action_attempt.lock_door.failed"
|
|
8401
|
+
"action_attempt.lock_door.failed",
|
|
8402
|
+
"action_attempt.unlock_door.succeeded",
|
|
8403
|
+
"action_attempt.unlock_door.failed"
|
|
8400
8404
|
],
|
|
8401
8405
|
type: "string"
|
|
8402
8406
|
},
|
|
@@ -8457,7 +8461,9 @@ var openapi_default = {
|
|
|
8457
8461
|
"enrollment_automation.deleted",
|
|
8458
8462
|
"client_session.deleted",
|
|
8459
8463
|
"action_attempt.lock_door.succeeded",
|
|
8460
|
-
"action_attempt.lock_door.failed"
|
|
8464
|
+
"action_attempt.lock_door.failed",
|
|
8465
|
+
"action_attempt.unlock_door.succeeded",
|
|
8466
|
+
"action_attempt.unlock_door.failed"
|
|
8461
8467
|
],
|
|
8462
8468
|
type: "string"
|
|
8463
8469
|
},
|