@seamapi/types 1.74.0 → 1.75.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 +3 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.cjs
CHANGED
|
@@ -5134,6 +5134,7 @@ var openapi_default = {
|
|
|
5134
5134
|
},
|
|
5135
5135
|
card_format: { enum: ["TLCode", "rfid48"], type: "string" },
|
|
5136
5136
|
code: { pattern: "^\\d+$", type: "string" },
|
|
5137
|
+
ends_at: { format: "date-time", type: "string" },
|
|
5137
5138
|
external_type: {
|
|
5138
5139
|
enum: [
|
|
5139
5140
|
"pti_card",
|
|
@@ -5144,7 +5145,8 @@ var openapi_default = {
|
|
|
5144
5145
|
type: "string"
|
|
5145
5146
|
},
|
|
5146
5147
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
5147
|
-
is_override_key: { type: "boolean" }
|
|
5148
|
+
is_override_key: { type: "boolean" },
|
|
5149
|
+
starts_at: { format: "date-time", type: "string" }
|
|
5148
5150
|
},
|
|
5149
5151
|
required: ["acs_user_id", "access_method"],
|
|
5150
5152
|
type: "object"
|