@seamapi/types 1.771.0 → 1.772.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 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +84 -84
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +5 -5
- package/lib/seam/connect/models/action-attempts/encode-credential.js +3 -3
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +5 -5
- package/lib/seam/connect/models/action-attempts/scan-credential.js +3 -3
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -14
- package/lib/seam/connect/openapi.js +2 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +60 -60
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +3 -3
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +3 -3
- package/src/lib/seam/connect/openapi.ts +2 -2
- package/src/lib/seam/connect/route-types.ts +60 -60
package/dist/index.cjs
CHANGED
|
@@ -4355,8 +4355,8 @@ var encoder_not_online_error = zod.z.object({
|
|
|
4355
4355
|
"Detailed description of the error. Provides insights into the issue and potentially how to rectify it."
|
|
4356
4356
|
)
|
|
4357
4357
|
}).describe("Error to indicate that the encoder is not online.");
|
|
4358
|
-
var
|
|
4359
|
-
type: zod.z.literal("
|
|
4358
|
+
var encoder_communication_timeout = zod.z.object({
|
|
4359
|
+
type: zod.z.literal("encoder_communication_timeout").describe(
|
|
4360
4360
|
"Error type to indicate that communication with the encoder timed out."
|
|
4361
4361
|
),
|
|
4362
4362
|
message: zod.z.string().describe(
|
|
@@ -4389,7 +4389,7 @@ var error4 = zod.z.union([
|
|
|
4389
4389
|
incompatible_card_format_error,
|
|
4390
4390
|
credential_cannot_be_reissued,
|
|
4391
4391
|
encoder_not_online_error,
|
|
4392
|
-
|
|
4392
|
+
encoder_communication_timeout,
|
|
4393
4393
|
bridge_disconnected_error,
|
|
4394
4394
|
encoding_interrupted_error
|
|
4395
4395
|
]);
|
|
@@ -4498,8 +4498,8 @@ var encoder_not_online_error2 = zod.z.object({
|
|
|
4498
4498
|
"Detailed description of the error. Provides insights into the issue and potentially how to rectify it."
|
|
4499
4499
|
)
|
|
4500
4500
|
}).describe("Error to indicate that the encoder is not online.");
|
|
4501
|
-
var
|
|
4502
|
-
type: zod.z.literal("
|
|
4501
|
+
var encoder_communication_timeout2 = zod.z.object({
|
|
4502
|
+
type: zod.z.literal("encoder_communication_timeout").describe(
|
|
4503
4503
|
"Error type to indicate that communication with the encoder timed out."
|
|
4504
4504
|
),
|
|
4505
4505
|
message: zod.z.string().describe(
|
|
@@ -4520,7 +4520,7 @@ var error8 = zod.z.union([
|
|
|
4520
4520
|
...common_action_attempt_errors,
|
|
4521
4521
|
no_credential_on_encoder_error2,
|
|
4522
4522
|
encoder_not_online_error2,
|
|
4523
|
-
|
|
4523
|
+
encoder_communication_timeout2,
|
|
4524
4524
|
bridge_disconnected_error2
|
|
4525
4525
|
]);
|
|
4526
4526
|
var warning = zod.z.object({
|
|
@@ -12726,7 +12726,7 @@ var openapi_default = {
|
|
|
12726
12726
|
},
|
|
12727
12727
|
type: {
|
|
12728
12728
|
description: "Error type to indicate that communication with the encoder timed out.",
|
|
12729
|
-
enum: ["
|
|
12729
|
+
enum: ["encoder_communication_timeout"],
|
|
12730
12730
|
type: "string"
|
|
12731
12731
|
}
|
|
12732
12732
|
},
|
|
@@ -13730,7 +13730,7 @@ var openapi_default = {
|
|
|
13730
13730
|
},
|
|
13731
13731
|
type: {
|
|
13732
13732
|
description: "Error type to indicate that communication with the encoder timed out.",
|
|
13733
|
-
enum: ["
|
|
13733
|
+
enum: ["encoder_communication_timeout"],
|
|
13734
13734
|
type: "string"
|
|
13735
13735
|
}
|
|
13736
13736
|
},
|