@wix/auto_sdk_ecom_current-cart 1.0.179 → 1.0.180
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 +2 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +2 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +6 -0
- package/build/cjs/schemas.js +6 -0
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +2 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +6 -0
- package/build/es/schemas.mjs +6 -0
- 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 +1 -4
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +2 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +6 -0
- package/build/internal/cjs/schemas.js +6 -0
- 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 +1 -4
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +2 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +6 -0
- package/build/internal/es/schemas.mjs +6 -0
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/schemas.d.ts
CHANGED
|
@@ -3810,6 +3810,12 @@ declare const EstimateCurrentCartTotalsResponse: z.ZodObject<{
|
|
|
3810
3810
|
formattedAmount: z.ZodOptional<z.ZodString>;
|
|
3811
3811
|
formattedConvertedAmount: z.ZodOptional<z.ZodString>;
|
|
3812
3812
|
}, z.core.$strip>>;
|
|
3813
|
+
modifiers: z.ZodOptional<z.ZodObject<{
|
|
3814
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
3815
|
+
convertedAmount: z.ZodOptional<z.ZodString>;
|
|
3816
|
+
formattedAmount: z.ZodOptional<z.ZodString>;
|
|
3817
|
+
formattedConvertedAmount: z.ZodOptional<z.ZodString>;
|
|
3818
|
+
}, z.core.$strip>>;
|
|
3813
3819
|
depositAmount: z.ZodOptional<z.ZodObject<{
|
|
3814
3820
|
amount: z.ZodOptional<z.ZodString>;
|
|
3815
3821
|
convertedAmount: z.ZodOptional<z.ZodString>;
|
package/build/cjs/schemas.js
CHANGED
|
@@ -6531,6 +6531,12 @@ var EstimateCurrentCartTotalsResponse = z.object({
|
|
|
6531
6531
|
formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
|
|
6532
6532
|
formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
|
|
6533
6533
|
}).describe("Catalog price before any discounts, with modifiers.").optional(),
|
|
6534
|
+
modifiers: z.object({
|
|
6535
|
+
amount: z.string().describe("Amount.").optional(),
|
|
6536
|
+
convertedAmount: z.string().describe("Converted amount.").optional(),
|
|
6537
|
+
formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
|
|
6538
|
+
formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
|
|
6539
|
+
}).describe("Sum of all modifiers for a single unit of the item.").optional(),
|
|
6534
6540
|
depositAmount: z.object({
|
|
6535
6541
|
amount: z.string().describe("Amount.").optional(),
|
|
6536
6542
|
convertedAmount: z.string().describe("Converted amount.").optional(),
|