@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.
@@ -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(),