@orchestrator-ui/orchestrator-ui-components 1.19.0 → 1.20.0

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.
Files changed (37) hide show
  1. package/.turbo/turbo-build.log +5 -5
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +12 -11
  4. package/CHANGELOG.md +12 -0
  5. package/dist/index.d.ts +134 -122
  6. package/dist/index.js +1059 -1125
  7. package/package.json +1 -1
  8. package/src/components/WfoForms/formFields/deprecated/IpPrefixTableField.tsx +302 -368
  9. package/src/components/WfoForms/formFields/deprecated/SplitPrefix.tsx +94 -127
  10. package/src/components/WfoSettings/WfoFlushSettings.tsx +3 -7
  11. package/src/components/WfoSubscription/WfoSubscriptionActions.tsx +6 -10
  12. package/src/components/WfoSubscription/utils/utils.spec.ts +1 -1
  13. package/src/components/WfoSubscription/utils/utils.ts +1 -2
  14. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +10 -7
  15. package/src/configuration/constants.ts +22 -2
  16. package/src/contexts/OrchestratorConfigContext.tsx +0 -1
  17. package/src/hooks/deprecated/useGetSubscriptionDropdownOptions.ts +2 -4
  18. package/src/hooks/index.ts +0 -4
  19. package/src/messages/nl-NL.json +3 -1
  20. package/src/pages/processes/WfoProcessDetail.tsx +13 -10
  21. package/src/pages/startPage/WfoStartPage.tsx +1 -1
  22. package/src/pages/tasks/WfoTasksListPage.tsx +3 -3
  23. package/src/rtk/api.ts +4 -0
  24. package/src/rtk/endpoints/ipam.ts +54 -0
  25. package/src/rtk/endpoints/processDetail.ts +99 -3
  26. package/src/rtk/endpoints/processList.ts +2 -1
  27. package/src/rtk/endpoints/settings.ts +20 -7
  28. package/src/rtk/endpoints/subscriptionActions.ts +21 -0
  29. package/src/types/types.ts +22 -1
  30. package/src/utils/filterData.spec.ts +32 -0
  31. package/src/utils/filterData.ts +14 -0
  32. package/src/utils/index.ts +1 -0
  33. package/src/components/WfoForms/useAxiosApiClient.ts +0 -8
  34. package/src/hooks/DataFetchHooks.ts +0 -76
  35. package/src/hooks/useMutateProcess.ts +0 -96
  36. package/src/hooks/useQueryWithFetch.ts +0 -38
  37. package/src/hooks/useSubscriptionActions.ts +0 -48
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@1.19.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@1.20.0 build
3
3
  > tsup src/index.ts --format esm --dts --tsconfig tsconfig.build.json
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,7 +8,7 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  DTS Build start
11
- ESM dist/index.js 2.15 MB
12
- ESM ⚡️ Build success in 790ms
13
- DTS ⚡️ Build success in 13502ms
14
- DTS dist/index.d.ts 172.71 KB
11
+ ESM dist/index.js 2.14 MB
12
+ ESM ⚡️ Build success in 703ms
13
+ DTS ⚡️ Build success in 13822ms
14
+ DTS dist/index.d.ts 173.47 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@1.19.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@1.20.0 lint
3
3
  > eslint "src/**/*.ts*"
4
4
 
@@ -1,36 +1,37 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@1.19.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@1.20.0 test
3
3
  > jest
4
4
 
5
5
  PASS Orchestrator UI Components Tests src/components/WfoForms/formFields/utils.spec.ts
6
6
  PASS Orchestrator UI Components Tests src/components/WfoSubscription/utils/utils.spec.ts
7
7
  PASS Orchestrator UI Components Tests src/utils/date.spec.ts
8
- PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
9
8
  PASS Orchestrator UI Components Tests src/pages/processes/timelineUtils.spec.ts
9
+ PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
10
10
  PASS Orchestrator UI Components Tests src/utils/string.spec.ts
11
+ PASS Orchestrator UI Components Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
11
12
  PASS Orchestrator UI Components Tests src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts
12
13
  PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
13
- PASS Orchestrator UI Components Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
14
14
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
15
15
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
16
16
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
17
- PASS Orchestrator UI Components Tests src/messages/getTranslationMessages.spec.ts
18
17
  PASS Orchestrator UI Components Tests src/utils/resultFlattener.spec.ts
18
+ PASS Orchestrator UI Components Tests src/messages/getTranslationMessages.spec.ts
19
19
  PASS Orchestrator UI Components Tests src/utils/getToastMessage.spec.ts
20
- PASS Orchestrator UI Components Tests src/components/WfoTable/utils/columns.spec.ts
21
20
  PASS Orchestrator UI Components Tests src/utils/optionalArray.spec.ts
22
- PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
21
+ PASS Orchestrator UI Components Tests src/components/WfoTable/utils/columns.spec.ts
22
+ PASS Orchestrator UI Components Tests src/utils/filterData.spec.ts
23
23
  PASS Orchestrator UI Components Tests src/utils/sortObjectKeys.spec.ts
24
- PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
24
+ PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
25
25
  PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
26
+ PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
26
27
  PASS Orchestrator UI Components Tests src/utils/onlyUnique.spec.ts
27
- PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
28
28
  PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
29
29
  PASS Orchestrator UI Components Tests src/utils/getQueryVariablesForExport.spec.ts
30
+ PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
30
31
  PASS Orchestrator UI Components Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
31
32
 
32
- Test Suites: 26 passed, 26 total
33
- Tests: 159 passed, 159 total
33
+ Test Suites: 27 passed, 27 total
34
+ Tests: 161 passed, 161 total
34
35
  Snapshots: 0 total
35
- Time: 3.594 s
36
+ Time: 3.82 s
36
37
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 1.20.0
4
+
5
+ ### Minor Changes
6
+
7
+ - decb678: Removes obsolete configuration options
8
+
9
+ ## 1.19.1
10
+
11
+ ### Patch Changes
12
+
13
+ - e1811bc: revert username to old code solution
14
+
3
15
  ## 1.19.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -7,13 +7,11 @@ import * as _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes fro
7
7
  import * as _reduxjs_toolkit_dist_query_baseQueryTypes from '@reduxjs/toolkit/dist/query/baseQueryTypes';
8
8
  import * as _reduxjs_toolkit_query_react from '@reduxjs/toolkit/query/react';
9
9
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
10
- import { EuiBadgeProps, EuiThemeColorMode, EuiThemeComputed, EuiThemeColorModeStandard, EuiBasicTableColumn, EuiDataGridColumn, Pagination as Pagination$1, Criteria as Criteria$1, EuiThemeModifications } from '@elastic/eui';
10
+ import { EuiBadgeProps, EuiThemeColorMode, EuiThemeComputed, EuiBasicTableColumn, EuiDataGridColumn, EuiThemeColorModeStandard, Pagination as Pagination$1, Criteria as Criteria$1, EuiThemeModifications } from '@elastic/eui';
11
11
  import { TextSize } from '@elastic/eui/src/components/text/text';
12
12
  import { TextColor } from '@elastic/eui/src/components/text/text_color';
13
13
  import { EuiSideNavItemType } from '@elastic/eui/src/components/side_nav/side_nav_types';
14
14
  import { TranslationValues } from 'next-intl';
15
- import * as react_query from 'react-query';
16
- import { UseQueryOptions } from 'react-query';
17
15
  import { EuiDataGridControlColumn, EuiDataGridSorting, EuiDataGridPaginationProps } from '@elastic/eui/src/components/datagrid/data_grid_types';
18
16
  import { Criteria } from '@elastic/eui/src/components/basic_table/basic_table';
19
17
  import { SerializedStyles } from '@emotion/react';
@@ -26,7 +24,6 @@ import { IconType } from '@elastic/eui/src/components/icon';
26
24
  import * as next_auth_react from 'next-auth/react';
27
25
  import { UseSessionOptions } from 'next-auth/react';
28
26
  import { Session } from 'next-auth';
29
- import { Variables } from 'graphql-request/build/cjs/types';
30
27
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
31
28
  import { Slice, Reducer, PayloadAction, EnhancedStore, Dispatch, UnknownAction } from '@reduxjs/toolkit';
32
29
  import { Toast } from '@elastic/eui/src/components/toast/global_toast_list';
@@ -86,12 +83,14 @@ declare enum BaseQueryTypes {
86
83
  }
87
84
  declare enum CacheTags {
88
85
  engineStatus = "engineStatus",
86
+ cacheNames = "cacheNames",
89
87
  processList = "processList",
90
88
  processListSummary = "processListSummary",
91
89
  subscription = "subscription",
92
90
  subscriptionList = "subscriptionList",
93
91
  backendTranslations = "backendTranslations",
94
- processStatusCounts = "processStatusCounts"
92
+ processStatusCounts = "processStatusCounts",
93
+ subscriptionActions = "subscriptionActions"
95
94
  }
96
95
  declare enum HttpStatus {
97
96
  FormNotComplete = 510,
@@ -575,105 +574,6 @@ declare type WfoSubmitModalProps = {
575
574
  };
576
575
  declare const WfoSubmitModal: FC<WfoSubmitModalProps>;
577
576
 
578
- declare const useCheckEngineStatus: () => {
579
- isEngineRunningNow: () => Promise<boolean>;
580
- };
581
-
582
- declare const useMutateProcess: () => {
583
- retryAllProcesses: react_query.UseMutationResult<void, unknown, void, unknown>;
584
- retryProcess: react_query.UseMutationResult<void, unknown, string, unknown>;
585
- abortProcess: react_query.UseMutationResult<void, unknown, string, unknown>;
586
- deleteProcess: react_query.UseMutationResult<void, unknown, string, unknown>;
587
- };
588
-
589
- declare const useOrchestratorConfig: (initialOrchestratorConfig: OrchestratorConfig) => {
590
- orchestratorConfig: OrchestratorConfig;
591
- };
592
-
593
- declare type WfoTheme = {
594
- theme: EuiThemeComputed;
595
- multiplyByBaseUnit: (multiplier: number) => number;
596
- toSecondaryColor: (color: string) => string;
597
- colorMode: EuiThemeColorModeStandard;
598
- isDarkThemeActive: boolean;
599
- };
600
- declare const useOrchestratorTheme: () => WfoTheme;
601
-
602
- declare const usePolicy: () => {
603
- isAllowed: (resource?: string | undefined) => boolean;
604
- };
605
-
606
- declare type CacheNames = {
607
- [key: string]: string;
608
- };
609
- declare const useRawProcessDetails: (processId: string) => react_query.UseQueryResult<ProcessDetailResultRaw, unknown>;
610
- declare const useCacheNames: () => react_query.UseQueryResult<CacheNames, unknown>;
611
- declare const filterDataByCriteria: <Type>(data: Type[], filterCriteria: GraphqlFilter<Type>[]) => Type[];
612
- /**
613
- * @deprecated
614
- * Currently not in use in the SURF app - switched to RTK Query
615
- */
616
- declare const useFilterQueryWithRest: <Type>(url: string, queryKey: string[], filters?: GraphqlFilter<Type>[] | undefined, refetchInterval?: number | undefined) => react_query.UseQueryResult<any, unknown>;
617
-
618
- interface SubscriptionAction {
619
- name: string;
620
- description: string;
621
- reason?: string;
622
- usable_when?: string[];
623
- locked_relations?: string[];
624
- unterminated_parents?: string[];
625
- unterminated_in_use_by_subscriptions?: string[];
626
- status?: string;
627
- action?: string;
628
- }
629
- interface SubscriptionActions {
630
- reason?: string;
631
- locked_relations?: string[];
632
- modify: SubscriptionAction[];
633
- terminate: SubscriptionAction[];
634
- system: SubscriptionAction[];
635
- }
636
- declare const useSubscriptionActions: (subscriptionId: string) => react_query.UseQueryResult<SubscriptionActions, unknown>;
637
-
638
- declare type DataDisplayParams<Type> = {
639
- pageSize: number;
640
- pageIndex: number;
641
- sortBy: GraphQLSort<Type>;
642
- queryString?: string;
643
- };
644
- interface DataDisplayReturnValues<Type> {
645
- dataDisplayParams: DataDisplayParams<Type>;
646
- setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void;
647
- }
648
- declare const useDataDisplayParams: <Type>(initialParams: Partial<DataDisplayParams<Type>>) => DataDisplayReturnValues<Type>;
649
-
650
- declare const useShowToastMessage: () => {
651
- showToastMessage: (type: ToastTypes, text: string, title: string) => void;
652
- };
653
-
654
- declare const useStoredTableConfig: <T>(localeStorageKey: string) => () => StoredTableConfig<T> | undefined;
655
-
656
- declare function useWithOrchestratorTheme<T>(getStylesFunction: (wfoTheme: WfoTheme) => T): T;
657
-
658
- declare type WfoSession = Session & {
659
- accessToken?: string;
660
- profile?: WfoUserProfile;
661
- };
662
- declare type WfoUserProfile = {
663
- sub: string;
664
- name: string;
665
- preferred_username: string;
666
- email: string;
667
- [key: string]: unknown;
668
- };
669
- declare const useWfoSession: <R extends boolean>(options?: UseSessionOptions<R> | undefined) => Omit<next_auth_react.SessionContextValue<R>, "data"> & {
670
- session: WfoSession | null;
671
- };
672
-
673
- declare const useQueryWithFetch: <T, V extends Variables>(url: string, queryVars: V, queryKey: string, options?: UseQueryOptions<T, unknown, T, [string, ...unknown[]]> | undefined) => react_query.UseQueryResult<T, unknown>;
674
-
675
- declare const useGetOrchestratorConfig: () => OrchestratorConfig;
676
-
677
577
  declare enum SubscriptionDetailTab {
678
578
  GENERAL_TAB = "general",
679
579
  SERVICE_CONFIGURATION_TAB = "service-configuration",
@@ -858,6 +758,64 @@ declare const getTableConfigFromLocalStorage: <T>(key: string) => StoredTableCon
858
758
  declare const setTableConfigToLocalStorage: <T>(key: string, updatedTableConfig: StoredTableConfig<T>) => void;
859
759
  declare const clearTableConfigFromLocalStorage: (key: string) => void;
860
760
 
761
+ declare const useCheckEngineStatus: () => {
762
+ isEngineRunningNow: () => Promise<boolean>;
763
+ };
764
+
765
+ declare const useOrchestratorConfig: (initialOrchestratorConfig: OrchestratorConfig) => {
766
+ orchestratorConfig: OrchestratorConfig;
767
+ };
768
+
769
+ declare type WfoTheme = {
770
+ theme: EuiThemeComputed;
771
+ multiplyByBaseUnit: (multiplier: number) => number;
772
+ toSecondaryColor: (color: string) => string;
773
+ colorMode: EuiThemeColorModeStandard;
774
+ isDarkThemeActive: boolean;
775
+ };
776
+ declare const useOrchestratorTheme: () => WfoTheme;
777
+
778
+ declare const usePolicy: () => {
779
+ isAllowed: (resource?: string | undefined) => boolean;
780
+ };
781
+
782
+ declare type DataDisplayParams<Type> = {
783
+ pageSize: number;
784
+ pageIndex: number;
785
+ sortBy: GraphQLSort<Type>;
786
+ queryString?: string;
787
+ };
788
+ interface DataDisplayReturnValues<Type> {
789
+ dataDisplayParams: DataDisplayParams<Type>;
790
+ setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void;
791
+ }
792
+ declare const useDataDisplayParams: <Type>(initialParams: Partial<DataDisplayParams<Type>>) => DataDisplayReturnValues<Type>;
793
+
794
+ declare const useShowToastMessage: () => {
795
+ showToastMessage: (type: ToastTypes, text: string, title: string) => void;
796
+ };
797
+
798
+ declare const useStoredTableConfig: <T>(localeStorageKey: string) => () => StoredTableConfig<T> | undefined;
799
+
800
+ declare function useWithOrchestratorTheme<T>(getStylesFunction: (wfoTheme: WfoTheme) => T): T;
801
+
802
+ declare type WfoSession = Session & {
803
+ accessToken?: string;
804
+ profile?: WfoUserProfile;
805
+ };
806
+ declare type WfoUserProfile = {
807
+ sub: string;
808
+ name: string;
809
+ preferred_username: string;
810
+ email: string;
811
+ [key: string]: unknown;
812
+ };
813
+ declare const useWfoSession: <R extends boolean>(options?: UseSessionOptions<R> | undefined) => Omit<next_auth_react.SessionContextValue<R>, "data"> & {
814
+ session: WfoSession | null;
815
+ };
816
+
817
+ declare const useGetOrchestratorConfig: () => OrchestratorConfig;
818
+
861
819
  declare const determinePageIndex: (pageIndex: number, pageSize: number) => number;
862
820
  declare const determineNewSortOrder: <T>(currentSortField: keyof T, currentSortOrder: SortOrder, newSortField: keyof T) => SortOrder;
863
821
  declare const getDataSortHandler: <Type>(setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type_1>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void) => ({ field, sortOrder }: WfoDataSorting<Type>) => void;
@@ -1569,20 +1527,6 @@ declare class WfoErrorBoundary extends React__default.Component<ErrorBoundaryPro
1569
1527
  render(): string | number | boolean | Iterable<React__default.ReactNode> | React__default.PromiseLikeOfReactNode | _emotion_react_jsx_runtime.JSX.Element | null | undefined;
1570
1528
  }
1571
1529
 
1572
- declare type WfoStepListRef = {
1573
- scrollToStep: (stepId: string) => void;
1574
- };
1575
- declare type WfoStepListProps = {
1576
- stepListItems: StepListItem[];
1577
- showHiddenKeys: boolean;
1578
- startedAt: string;
1579
- onToggleExpandStepListItem: (stepListItem: StepListItem) => void;
1580
- onTriggerExpandStepListItem: (stepListItem: StepListItem) => void;
1581
- isTask: boolean;
1582
- processId: string;
1583
- };
1584
- declare const WfoStepList: React__default.ForwardRefExoticComponent<WfoStepListProps & React__default.RefAttributes<WfoStepListRef>>;
1585
-
1586
1530
  declare type StepListItem = {
1587
1531
  step: Step;
1588
1532
  isExpanded: boolean;
@@ -1631,6 +1575,20 @@ interface WfoStepProps {
1631
1575
  }
1632
1576
  declare const WfoStep: React__default.ForwardRefExoticComponent<WfoStepProps & React__default.RefAttributes<HTMLDivElement>>;
1633
1577
 
1578
+ declare type WfoStepListRef = {
1579
+ scrollToStep: (stepId: string) => void;
1580
+ };
1581
+ declare type WfoStepListProps = {
1582
+ stepListItems: StepListItem[];
1583
+ showHiddenKeys: boolean;
1584
+ startedAt: string;
1585
+ onToggleExpandStepListItem: (stepListItem: StepListItem) => void;
1586
+ onTriggerExpandStepListItem: (stepListItem: StepListItem) => void;
1587
+ isTask: boolean;
1588
+ processId: string;
1589
+ };
1590
+ declare const WfoStepList: React__default.ForwardRefExoticComponent<WfoStepListProps & React__default.RefAttributes<WfoStepListRef>>;
1591
+
1634
1592
  interface WfoStepStatusIconProps {
1635
1593
  stepStatus: StepStatus;
1636
1594
  isStartStep?: boolean;
@@ -1905,6 +1863,22 @@ declare const useGetEngineStatusQuery: _reduxjs_toolkit_dist_query_react_buildHo
1905
1863
  data: unknown;
1906
1864
  meta?: {} | undefined;
1907
1865
  } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
1866
+ declare const useGetCacheNamesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1867
+ baseQueryType?: BaseQueryTypes | undefined;
1868
+ apiName?: string | undefined;
1869
+ }) => {
1870
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
1871
+ data?: undefined;
1872
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
1873
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
1874
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
1875
+ data?: undefined;
1876
+ meta?: {} | undefined;
1877
+ } | {
1878
+ error?: undefined;
1879
+ data: unknown;
1880
+ meta?: {} | undefined;
1881
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, CacheNames, "orchestratorApi">>;
1908
1882
  declare const useClearCacheMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1909
1883
  baseQueryType?: BaseQueryTypes | undefined;
1910
1884
  apiName?: string | undefined;
@@ -2515,6 +2489,9 @@ interface CacheOption {
2515
2489
  value: string;
2516
2490
  label: string;
2517
2491
  }
2492
+ declare type CacheNames = {
2493
+ [key: string]: string;
2494
+ };
2518
2495
  declare enum Locale {
2519
2496
  enGB = "en-GB",
2520
2497
  nlNL = "nl-NL"
@@ -2608,7 +2585,6 @@ declare type OrchestratorConfig = {
2608
2585
  graphqlEndpointCore: string;
2609
2586
  engineStatusEndpoint: string;
2610
2587
  processesEndpoint: string;
2611
- subscriptionActionsEndpoint: string;
2612
2588
  subscriptionProcessesEndpoint: string;
2613
2589
  workflowInformationLinkUrl: string;
2614
2590
  authActive: boolean;
@@ -2620,6 +2596,24 @@ declare enum ColorModes {
2620
2596
  LIGHT = "LIGHT",
2621
2597
  DARK = "DARK"
2622
2598
  }
2599
+ interface SubscriptionAction {
2600
+ name: string;
2601
+ description: string;
2602
+ reason?: string;
2603
+ usable_when?: string[];
2604
+ locked_relations?: string[];
2605
+ unterminated_parents?: string[];
2606
+ unterminated_in_use_by_subscriptions?: string[];
2607
+ status?: string;
2608
+ action?: string;
2609
+ }
2610
+ declare type SubscriptionActions = {
2611
+ reason?: string;
2612
+ locked_relations?: string[];
2613
+ modify: SubscriptionAction[];
2614
+ terminate: SubscriptionAction[];
2615
+ system: SubscriptionAction[];
2616
+ };
2623
2617
 
2624
2618
  interface NodeSubscription {
2625
2619
  name: string;
@@ -2719,7 +2713,21 @@ declare function getApiClient(apiEndPoint: string, accessToken?: string): ApiCli
2719
2713
 
2720
2714
  declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
2721
2715
  declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
2722
- declare const PROCESS_STATUS_COUNTS_ENDPOINT = "/processes/status-counts";
2716
+ declare const PROCESSES_ENDPOINT = "processes";
2717
+ declare const PROCESS_STATUS_COUNTS_ENDPOINT: string;
2718
+ declare const PROCESSES_RESUME_ALL_ENDPOINT = "resume-all";
2719
+ declare const PROCESS_RESUME_ENDPOINT = "resume";
2720
+ declare const PROCESS_ABORT_ENDPOINT = "abort";
2721
+ declare const SETTINGS_ENDPOINT = "/settings";
2722
+ declare const SETTINGS_STATUS_ENDPOINT: string;
2723
+ declare const SETTINGS_CACHE_NAMES_ENDPOINT: string;
2724
+ declare const SETTINGS_CACHE_ENDPOINT: string;
2725
+ declare const SETTINGS_SEARCH_INDEX_RESET_ENDPOINT: string;
2726
+ declare const IPAM_ENDPOINT = "surf/ipam";
2727
+ declare const IPAM_PREFIX_FILTERS_ENDPOINT: string;
2728
+ declare const IPAM_IP_BLOCKS_ENDPOINT: string;
2729
+ declare const IPAM_FREE_SUBNETS_ENDPOINT: string;
2730
+ declare const SUBSCRIPTION_ACTIONS_ENDPOINT = "subscriptions/workflows";
2723
2731
 
2724
2732
  declare const useGetTranslationMessages: (locale: string | undefined) => {
2725
2733
  pydanticForms: {
@@ -3382,6 +3390,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
3382
3390
  retrieve_stored_settings_title: string;
3383
3391
  };
3384
3392
  metadata: {
3393
+ title: string;
3385
3394
  tabs: {
3386
3395
  products: string;
3387
3396
  productBlocks: string;
@@ -3471,6 +3480,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
3471
3480
  openWorkflowTaskInfo: string;
3472
3481
  };
3473
3482
  steps: {
3483
+ taskSteps: string;
3474
3484
  steps: string;
3475
3485
  showDelta: string;
3476
3486
  hideDelta: string;
@@ -3517,7 +3527,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
3517
3527
  note: string;
3518
3528
  metadata: string;
3519
3529
  customerFullName: string;
3520
- customerAbbreviation: string;
3530
+ customerShortcode: string;
3521
3531
  };
3522
3532
  detail: {
3523
3533
  title: string;
@@ -3825,4 +3835,6 @@ declare const snakeToKebab: (value: string) => string;
3825
3835
  declare const toOptionalArrayEntry: <T>(data: T, condition: boolean) => [] | [T];
3826
3836
  declare const optionalArrayMapper: <T, U>(data: T[] | undefined, mapper: (input: T) => U) => U[];
3827
3837
 
3828
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AppDispatch, type AutoFieldsProps, BadgeType, BaseApiClient, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, CacheTags, ColorModes, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscription, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, type SelectFieldProps, type ServicePort, type ShowConfirmDialog, type ShowConfirmDialogType, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, WfoActiveWorkflowsSummaryCard, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoEuiBasicTableColumn, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoRefresh, WfoRelatedSubscriptions, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatus, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionListTab, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, WfoTimeline, type WfoTimelineProps, WfoToastsList, WfoTrash, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, handlePromiseErrorWithCallback, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapSortableAndFilterableValuesToTableColumnConfig, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, splitPrefixStyling, stop, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toOptionalArrayEntry, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomerQuery, useGetCustomersQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useQueryWithFetch, useRawProcessDetails, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useSubscriptionDetailValueOverride, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, workflowFieldMapper, workflowsQuery };
3838
+ declare const filterDataByCriteria: <Type>(data: Type[], filterCriteria: GraphqlFilter<Type>[]) => Type[];
3839
+
3840
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AppDispatch, type AutoFieldsProps, BadgeType, BaseApiClient, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, CacheTags, ColorModes, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscription, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type ShowConfirmDialog, type ShowConfirmDialogType, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, WfoActiveWorkflowsSummaryCard, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoEuiBasicTableColumn, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoRefresh, WfoRelatedSubscriptions, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatus, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionListTab, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, WfoTimeline, type WfoTimelineProps, WfoToastsList, WfoTrash, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, handlePromiseErrorWithCallback, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapSortableAndFilterableValuesToTableColumnConfig, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, splitPrefixStyling, stop, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toOptionalArrayEntry, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailValueOverride, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, workflowFieldMapper, workflowsQuery };