@getlatedev/node 0.1.49 → 0.1.50
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.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -1794,6 +1794,10 @@ type UsageStats = {
|
|
|
1794
1794
|
planName?: string;
|
|
1795
1795
|
billingPeriod?: 'monthly' | 'yearly';
|
|
1796
1796
|
signupDate?: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* Day of month (1-31) when the billing cycle resets
|
|
1799
|
+
*/
|
|
1800
|
+
billingAnchorDay?: number;
|
|
1797
1801
|
limits?: {
|
|
1798
1802
|
uploads?: number;
|
|
1799
1803
|
profiles?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1794,6 +1794,10 @@ type UsageStats = {
|
|
|
1794
1794
|
planName?: string;
|
|
1795
1795
|
billingPeriod?: 'monthly' | 'yearly';
|
|
1796
1796
|
signupDate?: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* Day of month (1-31) when the billing cycle resets
|
|
1799
|
+
*/
|
|
1800
|
+
billingAnchorDay?: number;
|
|
1797
1801
|
limits?: {
|
|
1798
1802
|
uploads?: number;
|
|
1799
1803
|
profiles?: number;
|
package/package.json
CHANGED
|
@@ -1437,6 +1437,10 @@ export type UsageStats = {
|
|
|
1437
1437
|
planName?: string;
|
|
1438
1438
|
billingPeriod?: 'monthly' | 'yearly';
|
|
1439
1439
|
signupDate?: string;
|
|
1440
|
+
/**
|
|
1441
|
+
* Day of month (1-31) when the billing cycle resets
|
|
1442
|
+
*/
|
|
1443
|
+
billingAnchorDay?: number;
|
|
1440
1444
|
limits?: {
|
|
1441
1445
|
uploads?: number;
|
|
1442
1446
|
profiles?: number;
|