waldur-js-client 8.0.2-dev.3 → 8.0.2-dev.4
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 +5 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7416,7 +7416,7 @@ export type InvoiceItemUpdateRequest = {
|
|
|
7416
7416
|
end?: string;
|
|
7417
7417
|
};
|
|
7418
7418
|
export type InvoicePriceSourceEnum = 'sell' | 'buy';
|
|
7419
|
-
export type InvoiceStateEnum = 'pending' | 'created' | 'paid' | 'canceled';
|
|
7419
|
+
export type InvoiceStateEnum = 'pending' | 'pending_finalization' | 'created' | 'paid' | 'canceled';
|
|
7420
7420
|
export type InvoiceStatsOffering = {
|
|
7421
7421
|
readonly offering_name: string;
|
|
7422
7422
|
readonly aggregated_price: number;
|
|
@@ -36087,7 +36087,7 @@ export type InvoicesListData = {
|
|
|
36087
36087
|
*/
|
|
36088
36088
|
page_size?: number;
|
|
36089
36089
|
start_date?: string;
|
|
36090
|
-
state?: Array<'canceled' | 'created' | 'paid' | 'pending'>;
|
|
36090
|
+
state?: Array<'canceled' | 'created' | 'paid' | 'pending' | 'pending_finalization'>;
|
|
36091
36091
|
year?: number;
|
|
36092
36092
|
};
|
|
36093
36093
|
url: '/api/invoices/';
|
|
@@ -36120,7 +36120,7 @@ export type InvoicesCountData = {
|
|
|
36120
36120
|
*/
|
|
36121
36121
|
page_size?: number;
|
|
36122
36122
|
start_date?: string;
|
|
36123
|
-
state?: Array<'canceled' | 'created' | 'paid' | 'pending'>;
|
|
36123
|
+
state?: Array<'canceled' | 'created' | 'paid' | 'pending' | 'pending_finalization'>;
|
|
36124
36124
|
year?: number;
|
|
36125
36125
|
};
|
|
36126
36126
|
url: '/api/invoices/';
|
|
@@ -36179,7 +36179,7 @@ export type InvoicesHistoryListData = {
|
|
|
36179
36179
|
*/
|
|
36180
36180
|
page_size?: number;
|
|
36181
36181
|
start_date?: string;
|
|
36182
|
-
state?: Array<'canceled' | 'created' | 'paid' | 'pending'>;
|
|
36182
|
+
state?: Array<'canceled' | 'created' | 'paid' | 'pending' | 'pending_finalization'>;
|
|
36183
36183
|
year?: number;
|
|
36184
36184
|
};
|
|
36185
36185
|
url: '/api/invoices/{uuid}/history/';
|
|
@@ -36334,7 +36334,7 @@ export type InvoicesStatsListData = {
|
|
|
36334
36334
|
page_size?: number;
|
|
36335
36335
|
provider_uuid?: string;
|
|
36336
36336
|
start_date?: string;
|
|
36337
|
-
state?: Array<'canceled' | 'created' | 'paid' | 'pending'>;
|
|
36337
|
+
state?: Array<'canceled' | 'created' | 'paid' | 'pending' | 'pending_finalization'>;
|
|
36338
36338
|
year?: number;
|
|
36339
36339
|
};
|
|
36340
36340
|
url: '/api/invoices/{uuid}/stats/';
|