@zuplo/runtime 6.67.18 → 6.67.19
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 +6 -0
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -5930,6 +5930,10 @@ export declare type MonetizationInboundPolicyOptions = {
|
|
|
5930
5930
|
meterOnStatusCodes?: string | number[];
|
|
5931
5931
|
};
|
|
5932
5932
|
|
|
5933
|
+
/**
|
|
5934
|
+
* Subscription details returned by Zuplo monetization services.
|
|
5935
|
+
* @public
|
|
5936
|
+
*/
|
|
5933
5937
|
export declare interface MonetizationSubscription {
|
|
5934
5938
|
paymentStatus?: {
|
|
5935
5939
|
isFirstPayment: boolean;
|
|
@@ -5948,6 +5952,8 @@ export declare interface MonetizationSubscription {
|
|
|
5948
5952
|
plan: {
|
|
5949
5953
|
id: string;
|
|
5950
5954
|
name: string;
|
|
5955
|
+
key: string;
|
|
5956
|
+
version: number;
|
|
5951
5957
|
description?: string;
|
|
5952
5958
|
};
|
|
5953
5959
|
entitlements: Record<
|