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.
- package/dist/types.gen.d.ts +9 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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>;
|