@wix/auto_sdk_ecom_current-cart 1.0.143 → 1.0.145

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.
@@ -639,10 +639,11 @@ declare enum FileType {
639
639
  SECURE_VIDEO = "SECURE_VIDEO",
640
640
  SECURE_DOCUMENT = "SECURE_DOCUMENT",
641
641
  SECURE_MUSIC = "SECURE_MUSIC",
642
- SECURE_ARCHIVE = "SECURE_ARCHIVE"
642
+ SECURE_ARCHIVE = "SECURE_ARCHIVE",
643
+ SECURE_RAW = "SECURE_RAW"
643
644
  }
644
645
  /** @enumType */
645
- type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE';
646
+ type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE' | 'SECURE_RAW';
646
647
  /** Type of selected payment option for catalog item */
647
648
  declare enum PaymentOptionType {
648
649
  /** The entire payment for this item happens as part of the checkout. */
@@ -2177,8 +2178,10 @@ interface ItemCombinationLineItem {
2177
2178
  interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
2178
2179
  /** General shipping calculation error. */
2179
2180
  generalShippingCalculationError?: Details;
2180
- /** Carrier errors. */
2181
+ /** Errors related to the delivery carrier. */
2181
2182
  carrierErrors?: CarrierErrors;
2183
+ /** Error related to the selected shipping option. */
2184
+ selectedShippingOptionError?: Details;
2182
2185
  /** Tax calculation error. */
2183
2186
  taxCalculationError?: Details;
2184
2187
  /** Coupon calculation error. */
@@ -2199,8 +2202,10 @@ interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOne
2199
2202
  interface CalculationErrorsShippingCalculationErrorOneOf {
2200
2203
  /** General shipping calculation error. */
2201
2204
  generalShippingCalculationError?: Details;
2202
- /** Carrier errors. */
2205
+ /** Errors related to the delivery carrier. */
2203
2206
  carrierErrors?: CarrierErrors;
2207
+ /** Error related to the selected shipping option. */
2208
+ selectedShippingOptionError?: Details;
2204
2209
  }
2205
2210
  interface Details extends DetailsKindOneOf {
2206
2211
  applicationError?: ApplicationError;
@@ -739,6 +739,7 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
739
739
  FileType2["SECURE_DOCUMENT"] = "SECURE_DOCUMENT";
740
740
  FileType2["SECURE_MUSIC"] = "SECURE_MUSIC";
741
741
  FileType2["SECURE_ARCHIVE"] = "SECURE_ARCHIVE";
742
+ FileType2["SECURE_RAW"] = "SECURE_RAW";
742
743
  return FileType2;
743
744
  })(FileType || {});
744
745
  var PaymentOptionType = /* @__PURE__ */ ((PaymentOptionType2) => {