@wix/auto_sdk_ecom_cart 1.0.169 → 1.0.170
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
|
@@ -4901,6 +4901,12 @@ declare const EstimateTotalsResponse: z.ZodObject<{
|
|
|
4901
4901
|
formattedAmount: z.ZodOptional<z.ZodString>;
|
|
4902
4902
|
formattedConvertedAmount: z.ZodOptional<z.ZodString>;
|
|
4903
4903
|
}, z.core.$strip>>;
|
|
4904
|
+
modifiers: z.ZodOptional<z.ZodObject<{
|
|
4905
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
4906
|
+
convertedAmount: z.ZodOptional<z.ZodString>;
|
|
4907
|
+
formattedAmount: z.ZodOptional<z.ZodString>;
|
|
4908
|
+
formattedConvertedAmount: z.ZodOptional<z.ZodString>;
|
|
4909
|
+
}, z.core.$strip>>;
|
|
4904
4910
|
depositAmount: z.ZodOptional<z.ZodObject<{
|
|
4905
4911
|
amount: z.ZodOptional<z.ZodString>;
|
|
4906
4912
|
convertedAmount: z.ZodOptional<z.ZodString>;
|
|
@@ -8386,6 +8386,12 @@ var EstimateTotalsResponse = z.object({
|
|
|
8386
8386
|
formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
|
|
8387
8387
|
formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
|
|
8388
8388
|
}).describe("Catalog price before any discounts, with modifiers.").optional(),
|
|
8389
|
+
modifiers: z.object({
|
|
8390
|
+
amount: z.string().describe("Amount.").optional(),
|
|
8391
|
+
convertedAmount: z.string().describe("Converted amount.").optional(),
|
|
8392
|
+
formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
|
|
8393
|
+
formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
|
|
8394
|
+
}).describe("Sum of all modifiers for a single unit of the item.").optional(),
|
|
8389
8395
|
depositAmount: z.object({
|
|
8390
8396
|
amount: z.string().describe("Amount.").optional(),
|
|
8391
8397
|
convertedAmount: z.string().describe("Converted amount.").optional(),
|