waldur-js-client 7.7.8-dev.1 → 7.7.8-dev.3
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
|
@@ -19284,6 +19284,10 @@ export type InvoicesItemsRetrieveData = {
|
|
|
19284
19284
|
* Conceal compensation items
|
|
19285
19285
|
*/
|
|
19286
19286
|
conceal_compensation_items?: boolean;
|
|
19287
|
+
/**
|
|
19288
|
+
* Order results by field
|
|
19289
|
+
*/
|
|
19290
|
+
o?: 'project_name' | '-project_name' | 'resource_name' | '-resource_name' | 'provider_name' | '-provider_name' | 'name' | '-name';
|
|
19287
19291
|
offering_uuid?: string;
|
|
19288
19292
|
project_uuid?: string;
|
|
19289
19293
|
provider_uuid?: string;
|
|
@@ -21449,6 +21453,7 @@ export type MarketplaceCustomerServiceAccountsListData = {
|
|
|
21449
21453
|
* Number of results to return per page.
|
|
21450
21454
|
*/
|
|
21451
21455
|
page_size?: number;
|
|
21456
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21452
21457
|
username?: string;
|
|
21453
21458
|
};
|
|
21454
21459
|
url: '/api/marketplace-customer-service-accounts/';
|
|
@@ -21472,6 +21477,7 @@ export type MarketplaceCustomerServiceAccountsCountData = {
|
|
|
21472
21477
|
* Number of results to return per page.
|
|
21473
21478
|
*/
|
|
21474
21479
|
page_size?: number;
|
|
21480
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21475
21481
|
username?: string;
|
|
21476
21482
|
};
|
|
21477
21483
|
url: '/api/marketplace-customer-service-accounts/';
|
|
@@ -23865,6 +23871,7 @@ export type MarketplaceProjectServiceAccountsListData = {
|
|
|
23865
23871
|
page_size?: number;
|
|
23866
23872
|
project?: string;
|
|
23867
23873
|
project_uuid?: string;
|
|
23874
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
23868
23875
|
username?: string;
|
|
23869
23876
|
};
|
|
23870
23877
|
url: '/api/marketplace-project-service-accounts/';
|
|
@@ -23888,6 +23895,7 @@ export type MarketplaceProjectServiceAccountsCountData = {
|
|
|
23888
23895
|
page_size?: number;
|
|
23889
23896
|
project?: string;
|
|
23890
23897
|
project_uuid?: string;
|
|
23898
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
23891
23899
|
username?: string;
|
|
23892
23900
|
};
|
|
23893
23901
|
url: '/api/marketplace-project-service-accounts/';
|
|
@@ -27721,6 +27729,7 @@ export type MarketplaceServiceProvidersProjectServiceAccountsListData = {
|
|
|
27721
27729
|
page_size?: number;
|
|
27722
27730
|
project?: string;
|
|
27723
27731
|
project_uuid?: string;
|
|
27732
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
27724
27733
|
username?: string;
|
|
27725
27734
|
};
|
|
27726
27735
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/project_service_accounts/';
|