waldur-js-client 8.0.10-dev.18 → 8.0.10-dev.20

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.
@@ -18253,6 +18253,8 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
18253
18253
  };
18254
18254
  limit_cost?: number;
18255
18255
  period?: PolicyPeriodEnum;
18256
+ resource?: string | null;
18257
+ use_credit?: boolean;
18256
18258
  };
18257
18259
  export type PatchedProjectInfoRequest = {
18258
18260
  project?: string;
@@ -20076,6 +20078,9 @@ export type ProjectEstimatedCostPolicy = {
20076
20078
  readonly period_name: string;
20077
20079
  readonly project_credit: string | null;
20078
20080
  readonly customer_credit: string | null;
20081
+ resource?: string | null;
20082
+ readonly resource_name: string;
20083
+ use_credit?: boolean;
20079
20084
  billing_price_estimate: NestedPriceEstimate;
20080
20085
  };
20081
20086
  export type ProjectEstimatedCostPolicyRequest = {
@@ -20089,6 +20094,8 @@ export type ProjectEstimatedCostPolicyRequest = {
20089
20094
  };
20090
20095
  limit_cost: number;
20091
20096
  period?: PolicyPeriodEnum;
20097
+ resource?: string | null;
20098
+ use_credit?: boolean;
20092
20099
  };
20093
20100
  export type ProjectHyperlinkRequest = {
20094
20101
  url: string;
@@ -44039,6 +44046,10 @@ export type InvoiceItemsProjectCostsForPeriodRetrieveData = {
44039
44046
  * UUID of the project for which statistics should be calculated.
44040
44047
  */
44041
44048
  project_uuid?: string;
44049
+ /**
44050
+ * Optional marketplace resource UUID. When provided, costs are limited to this resource only.
44051
+ */
44052
+ resource_uuid?: string;
44042
44053
  };
44043
44054
  url: '/api/invoice-items/project_costs_for_period/';
44044
44055
  };
@@ -44058,6 +44069,10 @@ export type InvoiceItemsProjectCostsForPeriodCountData = {
44058
44069
  * UUID of the project for which statistics should be calculated.
44059
44070
  */
44060
44071
  project_uuid?: string;
44072
+ /**
44073
+ * Optional marketplace resource UUID. When provided, costs are limited to this resource only.
44074
+ */
44075
+ resource_uuid?: string;
44061
44076
  };
44062
44077
  url: '/api/invoice-items/project_costs_for_period/';
44063
44078
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.10-dev.18",
3
+ "version": "8.0.10-dev.20",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",