waldur-js-client 8.0.8-dev.3 → 8.0.8-dev.4
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/types.gen.d.ts +6 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2295,7 +2295,7 @@ export type BaseProviderPlan = {
|
|
|
2295
2295
|
[key: string]: string;
|
|
2296
2296
|
};
|
|
2297
2297
|
readonly quotas?: {
|
|
2298
|
-
[key: string]:
|
|
2298
|
+
[key: string]: number;
|
|
2299
2299
|
};
|
|
2300
2300
|
readonly resources_count?: number;
|
|
2301
2301
|
readonly plan_type?: string;
|
|
@@ -2346,7 +2346,7 @@ export type BasePublicPlan = {
|
|
|
2346
2346
|
[key: string]: string;
|
|
2347
2347
|
};
|
|
2348
2348
|
readonly quotas?: {
|
|
2349
|
-
[key: string]:
|
|
2349
|
+
[key: string]: number;
|
|
2350
2350
|
};
|
|
2351
2351
|
readonly resources_count?: number;
|
|
2352
2352
|
readonly plan_type?: string;
|
|
@@ -5490,7 +5490,7 @@ export type CustomerEstimatedCostPolicy = {
|
|
|
5490
5490
|
limit_cost: number;
|
|
5491
5491
|
period?: PolicyPeriodEnum;
|
|
5492
5492
|
readonly period_name: string;
|
|
5493
|
-
readonly customer_credit:
|
|
5493
|
+
readonly customer_credit: string | null;
|
|
5494
5494
|
billing_price_estimate: NestedPriceEstimate;
|
|
5495
5495
|
};
|
|
5496
5496
|
export type CustomerEstimatedCostPolicyRequest = {
|
|
@@ -17896,8 +17896,8 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
17896
17896
|
limit_cost: number;
|
|
17897
17897
|
period?: PolicyPeriodEnum;
|
|
17898
17898
|
readonly period_name: string;
|
|
17899
|
-
readonly project_credit:
|
|
17900
|
-
readonly customer_credit:
|
|
17899
|
+
readonly project_credit: string | null;
|
|
17900
|
+
readonly customer_credit: string | null;
|
|
17901
17901
|
billing_price_estimate: NestedPriceEstimate;
|
|
17902
17902
|
};
|
|
17903
17903
|
export type ProjectEstimatedCostPolicyRequest = {
|
|
@@ -18849,7 +18849,7 @@ export type ProviderPlanDetails = {
|
|
|
18849
18849
|
[key: string]: string;
|
|
18850
18850
|
};
|
|
18851
18851
|
readonly quotas: {
|
|
18852
|
-
[key: string]:
|
|
18852
|
+
[key: string]: number;
|
|
18853
18853
|
};
|
|
18854
18854
|
readonly resources_count: number;
|
|
18855
18855
|
readonly plan_type: string;
|