waldur-js-client 8.0.5-dev.0 → 8.0.5-dev.1

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.
@@ -7548,6 +7548,15 @@ export type InvoiceCost = {
7548
7548
  readonly price: number;
7549
7549
  readonly year: number;
7550
7550
  readonly month: number;
7551
+ items?: Array<InvoiceCostItem>;
7552
+ };
7553
+ export type InvoiceCostItem = {
7554
+ readonly name: string;
7555
+ readonly unit_price: string;
7556
+ readonly unit: string;
7557
+ readonly quantity: string;
7558
+ readonly measured_unit: string;
7559
+ readonly price: number;
7551
7560
  };
7552
7561
  export type InvoiceGrowth = {
7553
7562
  readonly periods: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.5-dev.0",
3
+ "version": "8.0.5-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",