waldur-js-client 7.8.5-dev.14 → 7.8.5-dev.16

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.
@@ -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;
@@ -7683,6 +7685,10 @@ export type OrderDetails = {
7683
7685
  request_comment?: string | null;
7684
7686
  attachment?: string | null;
7685
7687
  type?: RequestTypes;
7688
+ /**
7689
+ * Enables delayed processing of resource provisioning order.
7690
+ */
7691
+ start_date?: string | null;
7686
7692
  readonly url?: string;
7687
7693
  /**
7688
7694
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -7734,7 +7740,7 @@ export type OrderSetStateErredRequest = {
7734
7740
  error_message?: string;
7735
7741
  error_traceback?: string;
7736
7742
  };
7737
- export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
7743
+ export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
7738
7744
  export type OrderUuid = {
7739
7745
  readonly order_uuid: string;
7740
7746
  };
@@ -11113,7 +11119,7 @@ export type RemoteResourceOrder = {
11113
11119
  */
11114
11120
  sync_status: SyncStatusEnum;
11115
11121
  };
11116
- export type RemoteResourceOrderRemoteStateEnum = 1 | 7 | 8 | 2 | 3 | 4 | 5 | 6;
11122
+ export type RemoteResourceOrderRemoteStateEnum = 1 | 7 | 8 | 9 | 2 | 3 | 4 | 5 | 6;
11117
11123
  export type RemoteResourceSyncStatus = {
11118
11124
  /**
11119
11125
  * Local resource state
@@ -13646,6 +13652,7 @@ export type ConstanceSettingsRequestForm = {
13646
13652
  SHORT_PAGE_TITLE?: string;
13647
13653
  FULL_PAGE_TITLE?: string;
13648
13654
  PROJECT_END_DATE_MANDATORY?: boolean;
13655
+ ENABLE_ORDER_START_DATE?: boolean;
13649
13656
  BRAND_COLOR?: string;
13650
13657
  HERO_LINK_LABEL?: string;
13651
13658
  HERO_LINK_URL?: string;
@@ -13791,6 +13798,7 @@ export type ConstanceSettingsRequestMultipart = {
13791
13798
  SHORT_PAGE_TITLE?: string;
13792
13799
  FULL_PAGE_TITLE?: string;
13793
13800
  PROJECT_END_DATE_MANDATORY?: boolean;
13801
+ ENABLE_ORDER_START_DATE?: boolean;
13794
13802
  BRAND_COLOR?: string;
13795
13803
  HERO_LINK_LABEL?: string;
13796
13804
  HERO_LINK_URL?: string;
@@ -25707,7 +25715,7 @@ export type MarketplaceOrdersListData = {
25707
25715
  */
25708
25716
  created?: string;
25709
25717
  customer_uuid?: string;
25710
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
25718
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
25711
25719
  /**
25712
25720
  * Modified after
25713
25721
  */
@@ -25743,7 +25751,7 @@ export type MarketplaceOrdersListData = {
25743
25751
  resource?: string;
25744
25752
  resource_uuid?: string;
25745
25753
  service_manager_uuid?: string;
25746
- state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'rejected'>;
25754
+ state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
25747
25755
  type?: Array<'Create' | 'Terminate' | 'Update'>;
25748
25756
  };
25749
25757
  url: '/api/marketplace-orders/';
@@ -25799,7 +25807,7 @@ export type MarketplaceOrdersCountData = {
25799
25807
  resource?: string;
25800
25808
  resource_uuid?: string;
25801
25809
  service_manager_uuid?: string;
25802
- state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'rejected'>;
25810
+ state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
25803
25811
  type?: Array<'Create' | 'Terminate' | 'Update'>;
25804
25812
  };
25805
25813
  url: '/api/marketplace-orders/';
@@ -25841,7 +25849,7 @@ export type MarketplaceOrdersRetrieveData = {
25841
25849
  uuid: string;
25842
25850
  };
25843
25851
  query?: {
25844
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
25852
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
25845
25853
  };
25846
25854
  url: '/api/marketplace-orders/{uuid}/';
25847
25855
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.5-dev.14",
3
+ "version": "7.8.5-dev.16",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",