@zuplo/runtime 6.67.28 → 6.67.29
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/out/types/index.d.ts +11 -0
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -5958,7 +5958,18 @@ export declare interface MonetizationSubscription {
|
|
|
5958
5958
|
name: string;
|
|
5959
5959
|
status: string;
|
|
5960
5960
|
currency: string;
|
|
5961
|
+
/**
|
|
5962
|
+
* The billing cadence (e.g., P1M for monthly)
|
|
5963
|
+
*/
|
|
5961
5964
|
billingCadence: string;
|
|
5965
|
+
/**
|
|
5966
|
+
* The anchor date used to compute billing cycles
|
|
5967
|
+
*/
|
|
5968
|
+
billingAnchor: string;
|
|
5969
|
+
/**
|
|
5970
|
+
* The next billing date derived from billing anchor and cadence
|
|
5971
|
+
*/
|
|
5972
|
+
nextBillingDate: string;
|
|
5962
5973
|
activeFrom: string;
|
|
5963
5974
|
activeTo?: string;
|
|
5964
5975
|
plan: {
|