@seamapi/types 1.260.0 → 1.261.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 +12 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +85 -87
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -5
- package/lib/seam/connect/models/action-attempts/encode-card.js +1 -1
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/read-card.d.ts +0 -5
- package/lib/seam/connect/models/action-attempts/read-card.js +6 -6
- package/lib/seam/connect/models/action-attempts/read-card.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +44 -2
- package/lib/seam/connect/openapi.js +5 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +41 -80
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-card.ts +1 -1
- package/src/lib/seam/connect/models/action-attempts/read-card.ts +6 -6
- package/src/lib/seam/connect/openapi.ts +5 -11
- package/src/lib/seam/connect/route-types.ts +41 -80
package/dist/connect.cjs
CHANGED
|
@@ -1669,7 +1669,7 @@ var error3 = zod.z.object({
|
|
|
1669
1669
|
});
|
|
1670
1670
|
var result3 = zod.z.object({
|
|
1671
1671
|
acs_credential_id: zod.z.string().uuid().nullable().describe("Matching acs_credential currently encoded on this card."),
|
|
1672
|
-
card_number: zod.z.string().nullable().describe("A number or
|
|
1672
|
+
card_number: zod.z.string().nullable().describe("A number or string that physically identifies this card.")
|
|
1673
1673
|
// TODO visionline_metadata: visionline_credential_metadata,
|
|
1674
1674
|
});
|
|
1675
1675
|
var encode_card_action_attempt = zod.z.discriminatedUnion("status", [
|
|
@@ -1705,8 +1705,12 @@ var error5 = zod.z.object({
|
|
|
1705
1705
|
message: zod.z.string()
|
|
1706
1706
|
});
|
|
1707
1707
|
var result5 = zod.z.object({
|
|
1708
|
-
acs_credential_id:
|
|
1709
|
-
|
|
1708
|
+
// TODO acs_credential_id: z
|
|
1709
|
+
// .string()
|
|
1710
|
+
// .uuid()
|
|
1711
|
+
// .nullable()
|
|
1712
|
+
// .describe("Matching acs_credential currently encoded on this card."),
|
|
1713
|
+
card_number: zod.z.string().nullable().describe("A number or string that physically identifies this card.")
|
|
1710
1714
|
// TODO visionline_metadata: visionline_credential_metadata,
|
|
1711
1715
|
});
|
|
1712
1716
|
var read_card_action_attempt = zod.z.discriminatedUnion("status", [
|
|
@@ -3667,19 +3671,13 @@ var openapi_default = {
|
|
|
3667
3671
|
error: { nullable: true },
|
|
3668
3672
|
result: {
|
|
3669
3673
|
properties: {
|
|
3670
|
-
acs_credential_id: {
|
|
3671
|
-
description: "Matching acs_credential currently encoded on this card.",
|
|
3672
|
-
format: "uuid",
|
|
3673
|
-
nullable: true,
|
|
3674
|
-
type: "string"
|
|
3675
|
-
},
|
|
3676
3674
|
card_number: {
|
|
3677
|
-
description: "A number or
|
|
3675
|
+
description: "A number or string that physically identifies this card.",
|
|
3678
3676
|
nullable: true,
|
|
3679
3677
|
type: "string"
|
|
3680
3678
|
}
|
|
3681
3679
|
},
|
|
3682
|
-
required: ["
|
|
3680
|
+
required: ["card_number"],
|
|
3683
3681
|
type: "object"
|
|
3684
3682
|
},
|
|
3685
3683
|
status: { enum: ["success"], type: "string" }
|
|
@@ -3766,7 +3764,7 @@ var openapi_default = {
|
|
|
3766
3764
|
type: "string"
|
|
3767
3765
|
},
|
|
3768
3766
|
card_number: {
|
|
3769
|
-
description: "A number or
|
|
3767
|
+
description: "A number or string that physically identifies this card.",
|
|
3770
3768
|
nullable: true,
|
|
3771
3769
|
type: "string"
|
|
3772
3770
|
}
|
|
@@ -9993,9 +9991,10 @@ var openapi_default = {
|
|
|
9993
9991
|
},
|
|
9994
9992
|
{
|
|
9995
9993
|
properties: {
|
|
9994
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
9996
9995
|
device_id: { format: "uuid", type: "string" }
|
|
9997
9996
|
},
|
|
9998
|
-
required: ["device_id"],
|
|
9997
|
+
required: ["acs_system_id", "device_id"],
|
|
9999
9998
|
type: "object"
|
|
10000
9999
|
}
|
|
10001
10000
|
]
|