@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.
@@ -669,10 +669,11 @@ declare enum FileType {
669
669
  SECURE_VIDEO = "SECURE_VIDEO",
670
670
  SECURE_DOCUMENT = "SECURE_DOCUMENT",
671
671
  SECURE_MUSIC = "SECURE_MUSIC",
672
- SECURE_ARCHIVE = "SECURE_ARCHIVE"
672
+ SECURE_ARCHIVE = "SECURE_ARCHIVE",
673
+ SECURE_RAW = "SECURE_RAW"
673
674
  }
674
675
  /** @enumType */
675
- type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE';
676
+ type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE' | 'SECURE_RAW';
676
677
  /** Type of selected payment option for catalog item */
677
678
  declare enum PaymentOptionType {
678
679
  /** The entire payment for this item happens as part of the checkout. */
@@ -2432,7 +2433,7 @@ interface AdditionalFee {
2432
2433
  */
2433
2434
  code?: string | null;
2434
2435
  /**
2435
- * Translated additional fee's name.
2436
+ * Additional fee's name.
2436
2437
  * @minLength 1
2437
2438
  * @maxLength 50
2438
2439
  */
package/build/cjs/meta.js CHANGED
@@ -922,6 +922,7 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
922
922
  FileType2["SECURE_DOCUMENT"] = "SECURE_DOCUMENT";
923
923
  FileType2["SECURE_MUSIC"] = "SECURE_MUSIC";
924
924
  FileType2["SECURE_ARCHIVE"] = "SECURE_ARCHIVE";
925
+ FileType2["SECURE_RAW"] = "SECURE_RAW";
925
926
  return FileType2;
926
927
  })(FileType || {});
927
928
  var PaymentOptionType = /* @__PURE__ */ ((PaymentOptionType2) => {