@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
|
@@ -7619,7 +7619,7 @@ var EstimateTotalsRequest = z.object({
|
|
|
7619
7619
|
selectedMemberships: z.object({
|
|
7620
7620
|
memberships: z.array(
|
|
7621
7621
|
z.object({
|
|
7622
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
7622
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
7623
7623
|
appId: z.string().describe("ID of the app providing this payment option.").regex(
|
|
7624
7624
|
/^[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}$/,
|
|
7625
7625
|
"Must be a valid GUID"
|
|
@@ -9743,7 +9743,7 @@ var EstimateTotalsResponse = z.object({
|
|
|
9743
9743
|
membershipOptions: z.object({
|
|
9744
9744
|
eligibleMemberships: z.array(
|
|
9745
9745
|
z.object({
|
|
9746
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
9746
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
9747
9747
|
appId: z.string().describe("ID of the application providing this payment option.").regex(
|
|
9748
9748
|
/^[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}$/,
|
|
9749
9749
|
"Must be a valid GUID"
|
|
@@ -9766,7 +9766,7 @@ var EstimateTotalsResponse = z.object({
|
|
|
9766
9766
|
invalidMemberships: z.array(
|
|
9767
9767
|
z.object({
|
|
9768
9768
|
membership: z.object({
|
|
9769
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
9769
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
9770
9770
|
appId: z.string().describe(
|
|
9771
9771
|
"ID of the application providing this payment option."
|
|
9772
9772
|
).regex(
|
|
@@ -9796,7 +9796,7 @@ var EstimateTotalsResponse = z.object({
|
|
|
9796
9796
|
).max(300).optional(),
|
|
9797
9797
|
selectedMemberships: z.array(
|
|
9798
9798
|
z.object({
|
|
9799
|
-
_id: z.string().describe("Membership ID.").min(1).max(
|
|
9799
|
+
_id: z.string().describe("Membership ID.").min(1).max(200).optional(),
|
|
9800
9800
|
appId: z.string().describe("ID of the app providing this payment option.").regex(
|
|
9801
9801
|
/^[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}$/,
|
|
9802
9802
|
"Must be a valid GUID"
|