shipmail 0.5.0 → 0.5.1
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1782,8 +1782,10 @@ type NewsletterAsset = {
|
|
|
1782
1782
|
};
|
|
1783
1783
|
type NewsletterAssetStorageUsage = {
|
|
1784
1784
|
readonly used_bytes: number;
|
|
1785
|
-
|
|
1786
|
-
readonly
|
|
1785
|
+
/** Null means storage is unlimited for this organization. */
|
|
1786
|
+
readonly limit_bytes: number | null;
|
|
1787
|
+
/** Null means storage is unlimited for this organization. */
|
|
1788
|
+
readonly remaining_bytes: number | null;
|
|
1787
1789
|
readonly over_limit: boolean;
|
|
1788
1790
|
readonly plan: string;
|
|
1789
1791
|
readonly is_in_trial: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1782,8 +1782,10 @@ type NewsletterAsset = {
|
|
|
1782
1782
|
};
|
|
1783
1783
|
type NewsletterAssetStorageUsage = {
|
|
1784
1784
|
readonly used_bytes: number;
|
|
1785
|
-
|
|
1786
|
-
readonly
|
|
1785
|
+
/** Null means storage is unlimited for this organization. */
|
|
1786
|
+
readonly limit_bytes: number | null;
|
|
1787
|
+
/** Null means storage is unlimited for this organization. */
|
|
1788
|
+
readonly remaining_bytes: number | null;
|
|
1787
1789
|
readonly over_limit: boolean;
|
|
1788
1790
|
readonly plan: string;
|
|
1789
1791
|
readonly is_in_trial: boolean;
|
package/dist/index.js
CHANGED