@zuplo/runtime 6.67.28 → 6.67.30
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/esm/index.js.map +1 -1
- package/out/types/index.d.ts +11 -1
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -5853,7 +5853,6 @@ export declare interface MoesifInboundPolicyOptions {
|
|
|
5853
5853
|
* Monetization inbound policy for API key validation and usage metering.
|
|
5854
5854
|
*
|
|
5855
5855
|
* @title Monetization
|
|
5856
|
-
* @hidden
|
|
5857
5856
|
* @param request - The ZuploRequest
|
|
5858
5857
|
* @param context - The ZuploContext
|
|
5859
5858
|
* @param options - The policy options set in policies.json
|
|
@@ -5958,7 +5957,18 @@ export declare interface MonetizationSubscription {
|
|
|
5958
5957
|
name: string;
|
|
5959
5958
|
status: string;
|
|
5960
5959
|
currency: string;
|
|
5960
|
+
/**
|
|
5961
|
+
* The billing cadence (e.g., P1M for monthly)
|
|
5962
|
+
*/
|
|
5961
5963
|
billingCadence: string;
|
|
5964
|
+
/**
|
|
5965
|
+
* The anchor date used to compute billing cycles
|
|
5966
|
+
*/
|
|
5967
|
+
billingAnchor: string;
|
|
5968
|
+
/**
|
|
5969
|
+
* The next billing date derived from billing anchor and cadence
|
|
5970
|
+
*/
|
|
5971
|
+
nextBillingDate: string;
|
|
5962
5972
|
activeFrom: string;
|
|
5963
5973
|
activeTo?: string;
|
|
5964
5974
|
plan: {
|