@wix/auto_sdk_ecom_cart 1.0.166 → 1.0.167
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +4 -4
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +4 -4
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +4 -4
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +4 -4
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -7676,7 +7676,7 @@ var EstimateTotalsRequest = z.object({
|
|
|
7676
7676
|
selectedMemberships: z.object({
|
|
7677
7677
|
memberships: z.array(
|
|
7678
7678
|
z.object({
|
|
7679
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
7679
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
7680
7680
|
appId: z.string().describe("ID of the app providing this payment option.").regex(
|
|
7681
7681
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
7682
7682
|
"Must be a valid GUID"
|
|
@@ -9800,7 +9800,7 @@ var EstimateTotalsResponse = z.object({
|
|
|
9800
9800
|
membershipOptions: z.object({
|
|
9801
9801
|
eligibleMemberships: z.array(
|
|
9802
9802
|
z.object({
|
|
9803
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
9803
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
9804
9804
|
appId: z.string().describe("ID of the application providing this payment option.").regex(
|
|
9805
9805
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
9806
9806
|
"Must be a valid GUID"
|
|
@@ -9823,7 +9823,7 @@ var EstimateTotalsResponse = z.object({
|
|
|
9823
9823
|
invalidMemberships: z.array(
|
|
9824
9824
|
z.object({
|
|
9825
9825
|
membership: z.object({
|
|
9826
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
9826
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
9827
9827
|
appId: z.string().describe(
|
|
9828
9828
|
"ID of the application providing this payment option."
|
|
9829
9829
|
).regex(
|
|
@@ -9853,7 +9853,7 @@ var EstimateTotalsResponse = z.object({
|
|
|
9853
9853
|
).max(300).optional(),
|
|
9854
9854
|
selectedMemberships: z.array(
|
|
9855
9855
|
z.object({
|
|
9856
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
9856
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
9857
9857
|
appId: z.string().describe("ID of the app providing this payment option.").regex(
|
|
9858
9858
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
9859
9859
|
"Must be a valid GUID"
|