waldur-js-client 1.0.3 → 1.0.4-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 +17 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -13262,7 +13262,23 @@ export type InvoiceItemsProjectCostsForPeriodRetrieveResponse = InvoiceItemsProj
|
|
|
13262
13262
|
export type InvoiceItemsTotalPriceRetrieveData = {
|
|
13263
13263
|
body?: never;
|
|
13264
13264
|
path?: never;
|
|
13265
|
-
query?:
|
|
13265
|
+
query?: {
|
|
13266
|
+
credit_uuid?: string;
|
|
13267
|
+
customer_uuid?: string;
|
|
13268
|
+
month?: number;
|
|
13269
|
+
offering_uuid?: string;
|
|
13270
|
+
project_uuid?: string;
|
|
13271
|
+
resource_uuid?: string;
|
|
13272
|
+
/**
|
|
13273
|
+
* Start month
|
|
13274
|
+
*/
|
|
13275
|
+
start_month?: number;
|
|
13276
|
+
/**
|
|
13277
|
+
* Start year
|
|
13278
|
+
*/
|
|
13279
|
+
start_year?: number;
|
|
13280
|
+
year?: number;
|
|
13281
|
+
};
|
|
13266
13282
|
url: '/api/invoice-items/total_price/';
|
|
13267
13283
|
};
|
|
13268
13284
|
export type InvoiceItemsTotalPriceRetrieveResponses = {
|