@zuplo/runtime 6.67.17 → 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/esm/index.js +46 -46
- package/out/esm/index.js.map +1 -1
- package/out/types/index.d.ts +7 -0
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -2642,6 +2642,7 @@ declare interface DataDogMetricsOptions {
|
|
|
2642
2642
|
tags?: string[];
|
|
2643
2643
|
metrics?: MetricsType;
|
|
2644
2644
|
include?: IncludeMetrics;
|
|
2645
|
+
metricMode?: "seriesMode" | "distributionMode";
|
|
2645
2646
|
}
|
|
2646
2647
|
|
|
2647
2648
|
/**
|
|
@@ -5929,6 +5930,10 @@ export declare type MonetizationInboundPolicyOptions = {
|
|
|
5929
5930
|
meterOnStatusCodes?: string | number[];
|
|
5930
5931
|
};
|
|
5931
5932
|
|
|
5933
|
+
/**
|
|
5934
|
+
* Subscription details returned by Zuplo monetization services.
|
|
5935
|
+
* @public
|
|
5936
|
+
*/
|
|
5932
5937
|
export declare interface MonetizationSubscription {
|
|
5933
5938
|
paymentStatus?: {
|
|
5934
5939
|
isFirstPayment: boolean;
|
|
@@ -5947,6 +5952,8 @@ export declare interface MonetizationSubscription {
|
|
|
5947
5952
|
plan: {
|
|
5948
5953
|
id: string;
|
|
5949
5954
|
name: string;
|
|
5955
|
+
key: string;
|
|
5956
|
+
version: number;
|
|
5950
5957
|
description?: string;
|
|
5951
5958
|
};
|
|
5952
5959
|
entitlements: Record<
|