@seamapi/types 1.752.0 → 1.754.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 +25 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +92 -48
- package/dist/index.cjs +25 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +14 -14
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +1 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.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 +31 -26
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +20 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +1 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +25 -1
- package/src/lib/seam/connect/route-types.ts +96 -72
package/dist/connect.cjs
CHANGED
|
@@ -2469,7 +2469,7 @@ var unmanaged_access_code = access_code.pick({
|
|
|
2469
2469
|
status: zod.z.enum(["set"]).describe(
|
|
2470
2470
|
"Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational."
|
|
2471
2471
|
),
|
|
2472
|
-
dormakaba_oracode_metadata: dormakaba_oracode_access_code_metadata.nullable().describe(
|
|
2472
|
+
dormakaba_oracode_metadata: dormakaba_oracode_access_code_metadata.nullable().optional().describe(
|
|
2473
2473
|
"Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices."
|
|
2474
2474
|
)
|
|
2475
2475
|
}).describe(`
|
|
@@ -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",
|
|
@@ -30857,8 +30864,7 @@ var openapi_default = {
|
|
|
30857
30864
|
"errors",
|
|
30858
30865
|
"warnings",
|
|
30859
30866
|
"is_managed",
|
|
30860
|
-
"status"
|
|
30861
|
-
"dormakaba_oracode_metadata"
|
|
30867
|
+
"status"
|
|
30862
30868
|
],
|
|
30863
30869
|
type: "object",
|
|
30864
30870
|
"x-route-path": "/access_codes/unmanaged"
|
|
@@ -41150,6 +41156,10 @@ var openapi_default = {
|
|
|
41150
41156
|
description: "Indicates whether the access method has been issued.",
|
|
41151
41157
|
type: "boolean"
|
|
41152
41158
|
},
|
|
41159
|
+
is_ready_for_encoding: {
|
|
41160
|
+
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.",
|
|
41161
|
+
type: "boolean"
|
|
41162
|
+
},
|
|
41153
41163
|
issued_at: {
|
|
41154
41164
|
description: "Date and time at which the access method was issued.",
|
|
41155
41165
|
format: "date-time",
|
|
@@ -41542,6 +41552,10 @@ var openapi_default = {
|
|
|
41542
41552
|
description: "Indicates whether the access method has been issued.",
|
|
41543
41553
|
type: "boolean"
|
|
41544
41554
|
},
|
|
41555
|
+
is_ready_for_encoding: {
|
|
41556
|
+
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.",
|
|
41557
|
+
type: "boolean"
|
|
41558
|
+
},
|
|
41545
41559
|
issued_at: {
|
|
41546
41560
|
description: "Date and time at which the access method was issued.",
|
|
41547
41561
|
format: "date-time",
|
|
@@ -41962,6 +41976,10 @@ var openapi_default = {
|
|
|
41962
41976
|
description: "Indicates whether the access method has been issued.",
|
|
41963
41977
|
type: "boolean"
|
|
41964
41978
|
},
|
|
41979
|
+
is_ready_for_encoding: {
|
|
41980
|
+
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.",
|
|
41981
|
+
type: "boolean"
|
|
41982
|
+
},
|
|
41965
41983
|
issued_at: {
|
|
41966
41984
|
description: "Date and time at which the access method was issued.",
|
|
41967
41985
|
format: "date-time",
|
|
@@ -42372,6 +42390,10 @@ var openapi_default = {
|
|
|
42372
42390
|
description: "Indicates whether the access method has been issued.",
|
|
42373
42391
|
type: "boolean"
|
|
42374
42392
|
},
|
|
42393
|
+
is_ready_for_encoding: {
|
|
42394
|
+
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.",
|
|
42395
|
+
type: "boolean"
|
|
42396
|
+
},
|
|
42375
42397
|
issued_at: {
|
|
42376
42398
|
description: "Date and time at which the access method was issued.",
|
|
42377
42399
|
format: "date-time",
|