@wix/auto_sdk_ecom_current-cart 1.0.176 → 1.0.177
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
package/build/cjs/schemas.js
CHANGED
|
@@ -5764,7 +5764,7 @@ var EstimateCurrentCartTotalsRequest = z.object({
|
|
|
5764
5764
|
selectedMemberships: z.object({
|
|
5765
5765
|
memberships: z.array(
|
|
5766
5766
|
z.object({
|
|
5767
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
5767
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
5768
5768
|
appId: z.string().describe("ID of the app providing this payment option.").regex(
|
|
5769
5769
|
/^[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}$/,
|
|
5770
5770
|
"Must be a valid GUID"
|
|
@@ -7888,7 +7888,7 @@ var EstimateCurrentCartTotalsResponse = z.object({
|
|
|
7888
7888
|
membershipOptions: z.object({
|
|
7889
7889
|
eligibleMemberships: z.array(
|
|
7890
7890
|
z.object({
|
|
7891
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
7891
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
7892
7892
|
appId: z.string().describe("ID of the application providing this payment option.").regex(
|
|
7893
7893
|
/^[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}$/,
|
|
7894
7894
|
"Must be a valid GUID"
|
|
@@ -7911,7 +7911,7 @@ var EstimateCurrentCartTotalsResponse = z.object({
|
|
|
7911
7911
|
invalidMemberships: z.array(
|
|
7912
7912
|
z.object({
|
|
7913
7913
|
membership: z.object({
|
|
7914
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
7914
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
7915
7915
|
appId: z.string().describe(
|
|
7916
7916
|
"ID of the application providing this payment option."
|
|
7917
7917
|
).regex(
|
|
@@ -7941,7 +7941,7 @@ var EstimateCurrentCartTotalsResponse = z.object({
|
|
|
7941
7941
|
).max(300).optional(),
|
|
7942
7942
|
selectedMemberships: z.array(
|
|
7943
7943
|
z.object({
|
|
7944
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
7944
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
7945
7945
|
appId: z.string().describe("ID of the app providing this payment option.").regex(
|
|
7946
7946
|
/^[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}$/,
|
|
7947
7947
|
"Must be a valid GUID"
|