waldur-js-client 1.0.4-dev.13 → 1.0.4-dev.14
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 +4 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2468,6 +2468,8 @@ export type Invoice = {
|
|
|
2468
2468
|
* Reference number associated with the invoice.
|
|
2469
2469
|
*/
|
|
2470
2470
|
reference_number?: string;
|
|
2471
|
+
readonly compensations?: number;
|
|
2472
|
+
readonly incurred_costs?: number;
|
|
2471
2473
|
};
|
|
2472
2474
|
export type InvoiceCost = {
|
|
2473
2475
|
readonly price: number;
|
|
@@ -13293,7 +13295,7 @@ export type InvoicesListData = {
|
|
|
13293
13295
|
customer?: string;
|
|
13294
13296
|
customer_uuid?: string;
|
|
13295
13297
|
end_date?: string;
|
|
13296
|
-
field?: Array<'backend_id' | 'customer' | 'customer_details' | 'due_date' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
|
|
13298
|
+
field?: Array<'backend_id' | 'compensations' | 'customer' | 'customer_details' | 'due_date' | 'incurred_costs' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
|
|
13297
13299
|
/**
|
|
13298
13300
|
* Max sum
|
|
13299
13301
|
*/
|
|
@@ -13333,7 +13335,7 @@ export type InvoicesRetrieveData = {
|
|
|
13333
13335
|
uuid: string;
|
|
13334
13336
|
};
|
|
13335
13337
|
query?: {
|
|
13336
|
-
field?: Array<'backend_id' | 'customer' | 'customer_details' | 'due_date' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
|
|
13338
|
+
field?: Array<'backend_id' | 'compensations' | 'customer' | 'customer_details' | 'due_date' | 'incurred_costs' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
|
|
13337
13339
|
};
|
|
13338
13340
|
url: '/api/invoices/{uuid}/';
|
|
13339
13341
|
};
|