@seamapi/types 1.752.0 → 1.753.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 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +44 -0
- package/dist/index.cjs +23 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -0
- package/lib/seam/connect/models/access-grants/access-method.js +4 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +20 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +25 -0
- package/src/lib/seam/connect/route-types.ts +16 -0
package/dist/connect.cjs
CHANGED
|
@@ -2808,6 +2808,9 @@ var access_method = zod.z.object({
|
|
|
2808
2808
|
is_encoding_required: zod.z.boolean().optional().describe(
|
|
2809
2809
|
"Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method."
|
|
2810
2810
|
),
|
|
2811
|
+
is_ready_for_encoding: zod.z.boolean().optional().describe(
|
|
2812
|
+
"Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued."
|
|
2813
|
+
),
|
|
2811
2814
|
code: zod.z.string().nullable().optional().describe("The actual PIN code for code access methods."),
|
|
2812
2815
|
warnings: zod.z.array(access_method_warning).describe(
|
|
2813
2816
|
"Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods)."
|
|
@@ -8641,6 +8644,10 @@ var openapi_default = {
|
|
|
8641
8644
|
description: "Indicates whether the access method has been issued.",
|
|
8642
8645
|
type: "boolean"
|
|
8643
8646
|
},
|
|
8647
|
+
is_ready_for_encoding: {
|
|
8648
|
+
description: "Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.",
|
|
8649
|
+
type: "boolean"
|
|
8650
|
+
},
|
|
8644
8651
|
issued_at: {
|
|
8645
8652
|
description: "Date and time at which the access method was issued.",
|
|
8646
8653
|
format: "date-time",
|
|
@@ -41150,6 +41157,10 @@ var openapi_default = {
|
|
|
41150
41157
|
description: "Indicates whether the access method has been issued.",
|
|
41151
41158
|
type: "boolean"
|
|
41152
41159
|
},
|
|
41160
|
+
is_ready_for_encoding: {
|
|
41161
|
+
description: "Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.",
|
|
41162
|
+
type: "boolean"
|
|
41163
|
+
},
|
|
41153
41164
|
issued_at: {
|
|
41154
41165
|
description: "Date and time at which the access method was issued.",
|
|
41155
41166
|
format: "date-time",
|
|
@@ -41542,6 +41553,10 @@ var openapi_default = {
|
|
|
41542
41553
|
description: "Indicates whether the access method has been issued.",
|
|
41543
41554
|
type: "boolean"
|
|
41544
41555
|
},
|
|
41556
|
+
is_ready_for_encoding: {
|
|
41557
|
+
description: "Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.",
|
|
41558
|
+
type: "boolean"
|
|
41559
|
+
},
|
|
41545
41560
|
issued_at: {
|
|
41546
41561
|
description: "Date and time at which the access method was issued.",
|
|
41547
41562
|
format: "date-time",
|
|
@@ -41962,6 +41977,10 @@ var openapi_default = {
|
|
|
41962
41977
|
description: "Indicates whether the access method has been issued.",
|
|
41963
41978
|
type: "boolean"
|
|
41964
41979
|
},
|
|
41980
|
+
is_ready_for_encoding: {
|
|
41981
|
+
description: "Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.",
|
|
41982
|
+
type: "boolean"
|
|
41983
|
+
},
|
|
41965
41984
|
issued_at: {
|
|
41966
41985
|
description: "Date and time at which the access method was issued.",
|
|
41967
41986
|
format: "date-time",
|
|
@@ -42372,6 +42391,10 @@ var openapi_default = {
|
|
|
42372
42391
|
description: "Indicates whether the access method has been issued.",
|
|
42373
42392
|
type: "boolean"
|
|
42374
42393
|
},
|
|
42394
|
+
is_ready_for_encoding: {
|
|
42395
|
+
description: "Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.",
|
|
42396
|
+
type: "boolean"
|
|
42397
|
+
},
|
|
42375
42398
|
issued_at: {
|
|
42376
42399
|
description: "Date and time at which the access method was issued.",
|
|
42377
42400
|
format: "date-time",
|