@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
-
/**
|
|
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
|
-
/**
|
|
839
|
+
/** Current premium plan details. */
|
|
840
840
|
premium?: Plan;
|
|
841
841
|
/**
|
|
842
|
-
*
|
|
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
|
|
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
|
-
/**
|
|
856
|
+
/** Date and time when the plan was created. */
|
|
857
857
|
createdAt?: Date | null;
|
|
858
|
-
/**
|
|
858
|
+
/** Date and time when the plan expires. */
|
|
859
859
|
expiresAt?: Date | null;
|
|
860
860
|
}
|
|
861
861
|
interface GenerateFileResumableUploadUrlRequest {
|