@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>;
@@ -8443,6 +8443,12 @@ var EstimateTotalsResponse = z.object({
8443
8443
  formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
8444
8444
  formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
8445
8445
  }).describe("Catalog price before any discounts, with modifiers.").optional(),
8446
+ modifiers: z.object({
8447
+ amount: z.string().describe("Amount.").optional(),
8448
+ convertedAmount: z.string().describe("Converted amount.").optional(),
8449
+ formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
8450
+ formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
8451
+ }).describe("Sum of all modifiers for a single unit of the item.").optional(),
8446
8452
  depositAmount: z.object({
8447
8453
  amount: z.string().describe("Amount.").optional(),
8448
8454
  convertedAmount: z.string().describe("Converted amount.").optional(),