@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.
@@ -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. */
@@ -2393,7 +2394,7 @@ interface AdditionalFee {
2393
2394
  */
2394
2395
  code?: string | null;
2395
2396
  /**
2396
- * Translated additional fee's name.
2397
+ * Additional fee's name.
2397
2398
  * @minLength 1
2398
2399
  * @maxLength 50
2399
2400
  */
@@ -933,6 +933,7 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
933
933
  FileType2["SECURE_DOCUMENT"] = "SECURE_DOCUMENT";
934
934
  FileType2["SECURE_MUSIC"] = "SECURE_MUSIC";
935
935
  FileType2["SECURE_ARCHIVE"] = "SECURE_ARCHIVE";
936
+ FileType2["SECURE_RAW"] = "SECURE_RAW";
936
937
  return FileType2;
937
938
  })(FileType || {});
938
939
  var PaymentOptionType = /* @__PURE__ */ ((PaymentOptionType2) => {