@wix/auto_sdk_media_files 1.0.31 → 1.0.32

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.
@@ -828,34 +828,34 @@ interface SiteQuotaExceededError {
828
828
  quota?: TotalQuota;
829
829
  }
830
830
  interface TotalQuota {
831
- /** Storage quota in bytes */
831
+ /** Storage quota in bytes. */
832
832
  storage?: string | null;
833
- /** Plans that are related to the quota */
833
+ /** Premium plans that determine the storage quota. */
834
834
  plans?: Plans;
835
835
  /** Time for which the quota is relevant - When the plans were retrieved from premium */
836
836
  timestamp?: Date | null;
837
837
  }
838
838
  interface Plans {
839
- /** Premium Plan */
839
+ /** Current premium plan details. */
840
840
  premium?: Plan;
841
841
  /**
842
- * Upgrade URL - the URL which a site owner can use to upgrade their quota. May be empty if an upgrade is not available.
842
+ * URL for upgrading the storage quota.
843
843
  * @format WEB_URL
844
844
  */
845
845
  upgradeUrl?: string;
846
846
  }
847
847
  interface Plan {
848
848
  /**
849
- * Plan ID - Premium product ID
849
+ * Plan ID.
850
850
  * @readonly
851
851
  * @format GUID
852
852
  */
853
853
  _id?: string;
854
- /** Plan name */
854
+ /** Plan name. */
855
855
  name?: string;
856
- /** When the plan was created */
856
+ /** Date and time when the plan was created. */
857
857
  createdAt?: Date | null;
858
- /** When then plan expires */
858
+ /** Date and time when the plan expires. */
859
859
  expiresAt?: Date | null;
860
860
  }
861
861
  interface GenerateFileResumableUploadUrlRequest {