@seamapi/types 1.790.0 → 1.791.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 +4 -31
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -216
- package/dist/index.cjs +4 -31
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -15
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +0 -15
- package/lib/seam/connect/models/action-attempts/encode-credential.js +2 -13
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +0 -21
- package/lib/seam/connect/openapi.js +2 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -180
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +2 -20
- package/src/lib/seam/connect/openapi.ts +2 -21
- package/src/lib/seam/connect/route-types.ts +30 -210
package/dist/connect.cjs
CHANGED
|
@@ -4411,25 +4411,15 @@ var encoding_interrupted_error = zod.z.object({
|
|
|
4411
4411
|
}).describe(
|
|
4412
4412
|
"Error to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete."
|
|
4413
4413
|
);
|
|
4414
|
-
var credential_being_deleted_error = zod.z.object({
|
|
4415
|
-
type: zod.z.literal("credential_being_deleted").describe(
|
|
4416
|
-
"Error type to indicate that the credential is being deleted and can no longer be encoded."
|
|
4417
|
-
),
|
|
4418
|
-
message: zod.z.string().describe(
|
|
4419
|
-
"Detailed description of the error. Provides insights into the issue and potentially how to rectify it."
|
|
4420
|
-
)
|
|
4421
|
-
}).describe(
|
|
4422
|
-
"Error to indicate that the credential is being deleted and can no longer be encoded."
|
|
4423
|
-
);
|
|
4424
4414
|
var credential_deleted_error = zod.z.object({
|
|
4425
4415
|
type: zod.z.literal("credential_deleted").describe(
|
|
4426
|
-
"Error type to indicate that the credential was deleted
|
|
4416
|
+
"Error type to indicate that the credential was deleted and can no longer be encoded."
|
|
4427
4417
|
),
|
|
4428
4418
|
message: zod.z.string().describe(
|
|
4429
4419
|
"Detailed description of the error. Provides insights into the issue and potentially how to rectify it."
|
|
4430
4420
|
)
|
|
4431
4421
|
}).describe(
|
|
4432
|
-
"Error to indicate that the credential was deleted
|
|
4422
|
+
"Error to indicate that the credential was deleted and can no longer be encoded."
|
|
4433
4423
|
);
|
|
4434
4424
|
var error4 = zod.z.union([
|
|
4435
4425
|
...common_action_attempt_errors,
|
|
@@ -4440,7 +4430,6 @@ var error4 = zod.z.union([
|
|
|
4440
4430
|
encoder_communication_timeout,
|
|
4441
4431
|
bridge_disconnected_error,
|
|
4442
4432
|
encoding_interrupted_error,
|
|
4443
|
-
credential_being_deleted_error,
|
|
4444
4433
|
credential_deleted_error
|
|
4445
4434
|
]);
|
|
4446
4435
|
var result4 = acs_credential.or(unmanaged_acs_credential).describe(
|
|
@@ -13853,30 +13842,14 @@ var openapi_default = {
|
|
|
13853
13842
|
type: "object"
|
|
13854
13843
|
},
|
|
13855
13844
|
{
|
|
13856
|
-
description: "Error to indicate that the credential
|
|
13857
|
-
properties: {
|
|
13858
|
-
message: {
|
|
13859
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
13860
|
-
type: "string"
|
|
13861
|
-
},
|
|
13862
|
-
type: {
|
|
13863
|
-
description: "Error type to indicate that the credential is being deleted and can no longer be encoded.",
|
|
13864
|
-
enum: ["credential_being_deleted"],
|
|
13865
|
-
type: "string"
|
|
13866
|
-
}
|
|
13867
|
-
},
|
|
13868
|
-
required: ["type", "message"],
|
|
13869
|
-
type: "object"
|
|
13870
|
-
},
|
|
13871
|
-
{
|
|
13872
|
-
description: "Error to indicate that the credential was deleted while encoding was in progress.",
|
|
13845
|
+
description: "Error to indicate that the credential was deleted and can no longer be encoded.",
|
|
13873
13846
|
properties: {
|
|
13874
13847
|
message: {
|
|
13875
13848
|
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
13876
13849
|
type: "string"
|
|
13877
13850
|
},
|
|
13878
13851
|
type: {
|
|
13879
|
-
description: "Error type to indicate that the credential was deleted
|
|
13852
|
+
description: "Error type to indicate that the credential was deleted and can no longer be encoded.",
|
|
13880
13853
|
enum: ["credential_deleted"],
|
|
13881
13854
|
type: "string"
|
|
13882
13855
|
}
|