@wix/auto_sdk_ecom_cart 1.0.133 → 1.0.135

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.
@@ -658,10 +658,11 @@ declare enum FileType {
658
658
  SECURE_VIDEO = "SECURE_VIDEO",
659
659
  SECURE_DOCUMENT = "SECURE_DOCUMENT",
660
660
  SECURE_MUSIC = "SECURE_MUSIC",
661
- SECURE_ARCHIVE = "SECURE_ARCHIVE"
661
+ SECURE_ARCHIVE = "SECURE_ARCHIVE",
662
+ SECURE_RAW = "SECURE_RAW"
662
663
  }
663
664
  /** @enumType */
664
- type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE';
665
+ type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE' | 'SECURE_RAW';
665
666
  /** Type of selected payment option for catalog item */
666
667
  declare enum PaymentOptionType {
667
668
  /** The entire payment for this item happens as part of the checkout. */
@@ -2527,7 +2528,7 @@ interface AdditionalFee {
2527
2528
  */
2528
2529
  code?: string | null;
2529
2530
  /**
2530
- * Translated additional fee's name.
2531
+ * Additional fee's name.
2531
2532
  * @minLength 1
2532
2533
  * @maxLength 50
2533
2534
  */
@@ -872,6 +872,7 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
872
872
  FileType2["SECURE_DOCUMENT"] = "SECURE_DOCUMENT";
873
873
  FileType2["SECURE_MUSIC"] = "SECURE_MUSIC";
874
874
  FileType2["SECURE_ARCHIVE"] = "SECURE_ARCHIVE";
875
+ FileType2["SECURE_RAW"] = "SECURE_RAW";
875
876
  return FileType2;
876
877
  })(FileType || {});
877
878
  var PaymentOptionType = /* @__PURE__ */ ((PaymentOptionType2) => {