waldur-js-client 7.8.5-dev.14 → 7.8.5-dev.15
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 +8 -4
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1760,6 +1760,7 @@ export type ConstanceSettings = {
|
|
|
1760
1760
|
SHORT_PAGE_TITLE?: string;
|
|
1761
1761
|
FULL_PAGE_TITLE?: string;
|
|
1762
1762
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
1763
|
+
ENABLE_ORDER_START_DATE?: boolean;
|
|
1763
1764
|
BRAND_COLOR?: string;
|
|
1764
1765
|
HERO_LINK_LABEL?: string;
|
|
1765
1766
|
HERO_LINK_URL?: string;
|
|
@@ -1905,6 +1906,7 @@ export type ConstanceSettingsRequest = {
|
|
|
1905
1906
|
SHORT_PAGE_TITLE?: string;
|
|
1906
1907
|
FULL_PAGE_TITLE?: string;
|
|
1907
1908
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
1909
|
+
ENABLE_ORDER_START_DATE?: boolean;
|
|
1908
1910
|
BRAND_COLOR?: string;
|
|
1909
1911
|
HERO_LINK_LABEL?: string;
|
|
1910
1912
|
HERO_LINK_URL?: string;
|
|
@@ -7734,7 +7736,7 @@ export type OrderSetStateErredRequest = {
|
|
|
7734
7736
|
error_message?: string;
|
|
7735
7737
|
error_traceback?: string;
|
|
7736
7738
|
};
|
|
7737
|
-
export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
|
|
7739
|
+
export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
|
|
7738
7740
|
export type OrderUuid = {
|
|
7739
7741
|
readonly order_uuid: string;
|
|
7740
7742
|
};
|
|
@@ -11113,7 +11115,7 @@ export type RemoteResourceOrder = {
|
|
|
11113
11115
|
*/
|
|
11114
11116
|
sync_status: SyncStatusEnum;
|
|
11115
11117
|
};
|
|
11116
|
-
export type RemoteResourceOrderRemoteStateEnum = 1 | 7 | 8 | 2 | 3 | 4 | 5 | 6;
|
|
11118
|
+
export type RemoteResourceOrderRemoteStateEnum = 1 | 7 | 8 | 9 | 2 | 3 | 4 | 5 | 6;
|
|
11117
11119
|
export type RemoteResourceSyncStatus = {
|
|
11118
11120
|
/**
|
|
11119
11121
|
* Local resource state
|
|
@@ -13646,6 +13648,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
13646
13648
|
SHORT_PAGE_TITLE?: string;
|
|
13647
13649
|
FULL_PAGE_TITLE?: string;
|
|
13648
13650
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
13651
|
+
ENABLE_ORDER_START_DATE?: boolean;
|
|
13649
13652
|
BRAND_COLOR?: string;
|
|
13650
13653
|
HERO_LINK_LABEL?: string;
|
|
13651
13654
|
HERO_LINK_URL?: string;
|
|
@@ -13791,6 +13794,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13791
13794
|
SHORT_PAGE_TITLE?: string;
|
|
13792
13795
|
FULL_PAGE_TITLE?: string;
|
|
13793
13796
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
13797
|
+
ENABLE_ORDER_START_DATE?: boolean;
|
|
13794
13798
|
BRAND_COLOR?: string;
|
|
13795
13799
|
HERO_LINK_LABEL?: string;
|
|
13796
13800
|
HERO_LINK_URL?: string;
|
|
@@ -25743,7 +25747,7 @@ export type MarketplaceOrdersListData = {
|
|
|
25743
25747
|
resource?: string;
|
|
25744
25748
|
resource_uuid?: string;
|
|
25745
25749
|
service_manager_uuid?: string;
|
|
25746
|
-
state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'rejected'>;
|
|
25750
|
+
state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
|
|
25747
25751
|
type?: Array<'Create' | 'Terminate' | 'Update'>;
|
|
25748
25752
|
};
|
|
25749
25753
|
url: '/api/marketplace-orders/';
|
|
@@ -25799,7 +25803,7 @@ export type MarketplaceOrdersCountData = {
|
|
|
25799
25803
|
resource?: string;
|
|
25800
25804
|
resource_uuid?: string;
|
|
25801
25805
|
service_manager_uuid?: string;
|
|
25802
|
-
state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'rejected'>;
|
|
25806
|
+
state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
|
|
25803
25807
|
type?: Array<'Create' | 'Terminate' | 'Update'>;
|
|
25804
25808
|
};
|
|
25805
25809
|
url: '/api/marketplace-orders/';
|