@seamapi/types 1.510.0 → 1.511.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 +51 -0
- package/dist/index.cjs +23 -2
- package/dist/index.cjs.map +1 -1
- 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 +3 -0
- package/lib/seam/connect/models/access-grants/access-method.js +5 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +15 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -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 +7 -0
- package/src/lib/seam/connect/openapi.ts +18 -0
- package/src/lib/seam/connect/route-types.ts +20 -0
package/dist/connect.cjs
CHANGED
|
@@ -2296,7 +2296,10 @@ var access_grant = zod.z.object({
|
|
|
2296
2296
|
),
|
|
2297
2297
|
created_at: zod.z.string().datetime().describe("Date and time at which the Access Grant was created."),
|
|
2298
2298
|
starts_at: zod.z.string().datetime().describe("Date and time at which the Access Grant starts."),
|
|
2299
|
-
ends_at: zod.z.string().datetime().nullable().describe("Date and time at which the Access Grant ends.")
|
|
2299
|
+
ends_at: zod.z.string().datetime().nullable().describe("Date and time at which the Access Grant ends."),
|
|
2300
|
+
customization_profile_id: zod.z.string().uuid().optional().describe(
|
|
2301
|
+
"ID of the customization profile associated with the Access Grant."
|
|
2302
|
+
)
|
|
2300
2303
|
}).describe(`
|
|
2301
2304
|
---
|
|
2302
2305
|
draft: Early access.
|
|
@@ -2319,7 +2322,10 @@ var access_method = zod.z.object({
|
|
|
2319
2322
|
is_encoding_required: zod.z.boolean().optional().describe(
|
|
2320
2323
|
"Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method."
|
|
2321
2324
|
),
|
|
2322
|
-
code: zod.z.string().optional().describe("The actual PIN code for code access methods.")
|
|
2325
|
+
code: zod.z.string().optional().describe("The actual PIN code for code access methods."),
|
|
2326
|
+
customization_profile_id: zod.z.string().uuid().optional().describe(
|
|
2327
|
+
"ID of the customization profile associated with the access method."
|
|
2328
|
+
)
|
|
2323
2329
|
}).describe(`
|
|
2324
2330
|
---
|
|
2325
2331
|
draft: Early access.
|
|
@@ -7135,6 +7141,11 @@ var openapi_default = {
|
|
|
7135
7141
|
format: "date-time",
|
|
7136
7142
|
type: "string"
|
|
7137
7143
|
},
|
|
7144
|
+
customization_profile_id: {
|
|
7145
|
+
description: "ID of the customization profile associated with the Access Grant.",
|
|
7146
|
+
format: "uuid",
|
|
7147
|
+
type: "string"
|
|
7148
|
+
},
|
|
7138
7149
|
display_name: {
|
|
7139
7150
|
description: "Display name of the Access Grant.",
|
|
7140
7151
|
type: "string"
|
|
@@ -7255,6 +7266,11 @@ var openapi_default = {
|
|
|
7255
7266
|
format: "date-time",
|
|
7256
7267
|
type: "string"
|
|
7257
7268
|
},
|
|
7269
|
+
customization_profile_id: {
|
|
7270
|
+
description: "ID of the customization profile associated with the access method.",
|
|
7271
|
+
format: "uuid",
|
|
7272
|
+
type: "string"
|
|
7273
|
+
},
|
|
7258
7274
|
display_name: {
|
|
7259
7275
|
description: "Display name of the access method.",
|
|
7260
7276
|
type: "string"
|
|
@@ -30582,6 +30598,11 @@ var openapi_default = {
|
|
|
30582
30598
|
items: { format: "uuid", type: "string" },
|
|
30583
30599
|
type: "array"
|
|
30584
30600
|
},
|
|
30601
|
+
customization_profile_id: {
|
|
30602
|
+
description: "ID of the customization profile to apply to the Access Grant and its access methods.",
|
|
30603
|
+
format: "uuid",
|
|
30604
|
+
type: "string"
|
|
30605
|
+
},
|
|
30585
30606
|
device_ids: {
|
|
30586
30607
|
default: [],
|
|
30587
30608
|
description: "Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted.",
|