@seamapi/types 1.426.0 → 1.427.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 +8 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -6
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +5 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +2 -2
- package/lib/seam/connect/models/access-grants/access-method.js +1 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +4 -4
- package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +4 -4
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +7 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +7 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -2413,7 +2413,7 @@ var access_method = zod.z.object({
|
|
|
2413
2413
|
),
|
|
2414
2414
|
created_at: zod.z.string().datetime().describe("Date and time at which the access method was created."),
|
|
2415
2415
|
issued_at: zod.z.string().datetime().optional().describe("Date and time at which the access method was issued."),
|
|
2416
|
-
instant_key_url: zod.z.string().optional().describe("URL of the Instant Key for mobile key access methods."),
|
|
2416
|
+
instant_key_url: zod.z.string().url().optional().describe("URL of the Instant Key for mobile key access methods."),
|
|
2417
2417
|
is_card_encoding_required: zod.z.boolean().optional().describe(
|
|
2418
2418
|
"Indicates whether card encoding is required for plastic card access methods."
|
|
2419
2419
|
)
|
|
@@ -7073,6 +7073,11 @@ var openapi_default = {
|
|
|
7073
7073
|
format: "date-time",
|
|
7074
7074
|
type: "string"
|
|
7075
7075
|
},
|
|
7076
|
+
instant_key_url: {
|
|
7077
|
+
description: "Instant Key URL. Only returned if the access grant has a single mobile_key access_method. ",
|
|
7078
|
+
format: "uri",
|
|
7079
|
+
type: "string"
|
|
7080
|
+
},
|
|
7076
7081
|
location_ids: {
|
|
7077
7082
|
deprecated: true,
|
|
7078
7083
|
items: { format: "uuid", type: "string" },
|
|
@@ -7168,6 +7173,7 @@ var openapi_default = {
|
|
|
7168
7173
|
},
|
|
7169
7174
|
instant_key_url: {
|
|
7170
7175
|
description: "URL of the Instant Key for mobile key access methods.",
|
|
7176
|
+
format: "uri",
|
|
7171
7177
|
type: "string"
|
|
7172
7178
|
},
|
|
7173
7179
|
is_card_encoding_required: {
|
|
@@ -10357,6 +10363,7 @@ var openapi_default = {
|
|
|
10357
10363
|
},
|
|
10358
10364
|
instant_key_url: {
|
|
10359
10365
|
description: "URL of the Instant Key for mobile key access methods.",
|
|
10366
|
+
format: "uri",
|
|
10360
10367
|
type: "string"
|
|
10361
10368
|
},
|
|
10362
10369
|
is_card_encoding_required: {
|