@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.
@@ -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>;
@@ -6478,6 +6478,12 @@ var EstimateCurrentCartTotalsResponse = z.object({
6478
6478
  formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
6479
6479
  formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
6480
6480
  }).describe("Catalog price before any discounts, with modifiers.").optional(),
6481
+ modifiers: z.object({
6482
+ amount: z.string().describe("Amount.").optional(),
6483
+ convertedAmount: z.string().describe("Converted amount.").optional(),
6484
+ formattedAmount: z.string().describe("Amount formatted with currency symbol.").optional(),
6485
+ formattedConvertedAmount: z.string().describe("Converted amount formatted with currency symbol.").optional()
6486
+ }).describe("Sum of all modifiers for a single unit of the item.").optional(),
6481
6487
  depositAmount: z.object({
6482
6488
  amount: z.string().describe("Amount.").optional(),
6483
6489
  convertedAmount: z.string().describe("Converted amount.").optional(),