waldur-js-client 7.8.5-dev.13 → 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.
@@ -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;
@@ -1815,6 +1816,7 @@ export type ConstanceSettings = {
1815
1816
  ATLASSIAN_SATISFACTION_FIELD?: string;
1816
1817
  ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
1817
1818
  ATLASSIAN_TEMPLATE_FIELD?: string;
1819
+ ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
1818
1820
  ZAMMAD_API_URL?: string;
1819
1821
  ZAMMAD_TOKEN?: string;
1820
1822
  ZAMMAD_GROUP?: string;
@@ -1904,6 +1906,7 @@ export type ConstanceSettingsRequest = {
1904
1906
  SHORT_PAGE_TITLE?: string;
1905
1907
  FULL_PAGE_TITLE?: string;
1906
1908
  PROJECT_END_DATE_MANDATORY?: boolean;
1909
+ ENABLE_ORDER_START_DATE?: boolean;
1907
1910
  BRAND_COLOR?: string;
1908
1911
  HERO_LINK_LABEL?: string;
1909
1912
  HERO_LINK_URL?: string;
@@ -1959,6 +1962,7 @@ export type ConstanceSettingsRequest = {
1959
1962
  ATLASSIAN_SATISFACTION_FIELD?: string;
1960
1963
  ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
1961
1964
  ATLASSIAN_TEMPLATE_FIELD?: string;
1965
+ ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
1962
1966
  ZAMMAD_API_URL?: string;
1963
1967
  ZAMMAD_TOKEN?: string;
1964
1968
  ZAMMAD_GROUP?: string;
@@ -7732,7 +7736,7 @@ export type OrderSetStateErredRequest = {
7732
7736
  error_message?: string;
7733
7737
  error_traceback?: string;
7734
7738
  };
7735
- 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';
7736
7740
  export type OrderUuid = {
7737
7741
  readonly order_uuid: string;
7738
7742
  };
@@ -11111,7 +11115,7 @@ export type RemoteResourceOrder = {
11111
11115
  */
11112
11116
  sync_status: SyncStatusEnum;
11113
11117
  };
11114
- export type RemoteResourceOrderRemoteStateEnum = 1 | 7 | 8 | 2 | 3 | 4 | 5 | 6;
11118
+ export type RemoteResourceOrderRemoteStateEnum = 1 | 7 | 8 | 9 | 2 | 3 | 4 | 5 | 6;
11115
11119
  export type RemoteResourceSyncStatus = {
11116
11120
  /**
11117
11121
  * Local resource state
@@ -12418,6 +12422,7 @@ export type User = {
12418
12422
  */
12419
12423
  readonly identity_source?: string;
12420
12424
  readonly has_active_session?: boolean;
12425
+ readonly ip_address?: string | null;
12421
12426
  };
12422
12427
  export type UserAgreement = {
12423
12428
  readonly url: string;
@@ -13643,6 +13648,7 @@ export type ConstanceSettingsRequestForm = {
13643
13648
  SHORT_PAGE_TITLE?: string;
13644
13649
  FULL_PAGE_TITLE?: string;
13645
13650
  PROJECT_END_DATE_MANDATORY?: boolean;
13651
+ ENABLE_ORDER_START_DATE?: boolean;
13646
13652
  BRAND_COLOR?: string;
13647
13653
  HERO_LINK_LABEL?: string;
13648
13654
  HERO_LINK_URL?: string;
@@ -13698,6 +13704,7 @@ export type ConstanceSettingsRequestForm = {
13698
13704
  ATLASSIAN_SATISFACTION_FIELD?: string;
13699
13705
  ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
13700
13706
  ATLASSIAN_TEMPLATE_FIELD?: string;
13707
+ ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
13701
13708
  ZAMMAD_API_URL?: string;
13702
13709
  ZAMMAD_TOKEN?: string;
13703
13710
  ZAMMAD_GROUP?: string;
@@ -13787,6 +13794,7 @@ export type ConstanceSettingsRequestMultipart = {
13787
13794
  SHORT_PAGE_TITLE?: string;
13788
13795
  FULL_PAGE_TITLE?: string;
13789
13796
  PROJECT_END_DATE_MANDATORY?: boolean;
13797
+ ENABLE_ORDER_START_DATE?: boolean;
13790
13798
  BRAND_COLOR?: string;
13791
13799
  HERO_LINK_LABEL?: string;
13792
13800
  HERO_LINK_URL?: string;
@@ -13842,6 +13850,7 @@ export type ConstanceSettingsRequestMultipart = {
13842
13850
  ATLASSIAN_SATISFACTION_FIELD?: string;
13843
13851
  ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
13844
13852
  ATLASSIAN_TEMPLATE_FIELD?: string;
13853
+ ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
13845
13854
  ZAMMAD_API_URL?: string;
13846
13855
  ZAMMAD_TOKEN?: string;
13847
13856
  ZAMMAD_GROUP?: string;
@@ -25738,7 +25747,7 @@ export type MarketplaceOrdersListData = {
25738
25747
  resource?: string;
25739
25748
  resource_uuid?: string;
25740
25749
  service_manager_uuid?: string;
25741
- 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'>;
25742
25751
  type?: Array<'Create' | 'Terminate' | 'Update'>;
25743
25752
  };
25744
25753
  url: '/api/marketplace-orders/';
@@ -25794,7 +25803,7 @@ export type MarketplaceOrdersCountData = {
25794
25803
  resource?: string;
25795
25804
  resource_uuid?: string;
25796
25805
  service_manager_uuid?: string;
25797
- 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'>;
25798
25807
  type?: Array<'Create' | 'Terminate' | 'Update'>;
25799
25808
  };
25800
25809
  url: '/api/marketplace-orders/';
@@ -44507,7 +44516,7 @@ export type UsersListData = {
44507
44516
  date_joined?: string;
44508
44517
  description?: string;
44509
44518
  email?: string;
44510
- field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
44519
+ field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
44511
44520
  /**
44512
44521
  * Full name
44513
44522
  */
@@ -44675,7 +44684,7 @@ export type UsersRetrieveData = {
44675
44684
  uuid: string;
44676
44685
  };
44677
44686
  query?: {
44678
- field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
44687
+ field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
44679
44688
  };
44680
44689
  url: '/api/users/{uuid}/';
44681
44690
  };
@@ -44803,7 +44812,7 @@ export type UsersMeRetrieveData = {
44803
44812
  body?: never;
44804
44813
  path?: never;
44805
44814
  query?: {
44806
- field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
44815
+ field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
44807
44816
  };
44808
44817
  url: '/api/users/me/';
44809
44818
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.5-dev.13",
3
+ "version": "7.8.5-dev.15",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",