@orchestrator-ui/orchestrator-ui-components 1.3.0 → 1.4.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 (76) hide show
  1. package/.turbo/turbo-build.log +5 -5
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +7 -7
  4. package/CHANGELOG.md +25 -0
  5. package/dist/index.d.ts +417 -288
  6. package/dist/index.js +3338 -5612
  7. package/package.json +1 -3
  8. package/src/components/WfoForms/UserInputForm.tsx +7 -1
  9. package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +11 -15
  10. package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +2 -2
  11. package/src/components/WfoProcessList/WfoProcessesList.tsx +16 -9
  12. package/src/components/WfoProcessList/processListObjectMappers.ts +6 -10
  13. package/src/components/WfoSettings/WfoModifySettings.tsx +29 -13
  14. package/src/components/WfoSettings/WfoResetTextSearchIndexButton.tsx +22 -0
  15. package/src/components/WfoSettings/index.ts +1 -0
  16. package/src/components/{WfoButtonComboBox/WfoButtonComboBox.tsx → WfoStartButton/WfoStartButtonComboBox.tsx} +11 -17
  17. package/src/components/WfoStartButton/WfoStartTaskComboBox.tsx +47 -0
  18. package/src/components/WfoStartButton/WfoStartWorkflowComboBox.tsx +49 -0
  19. package/src/components/WfoStartButton/index.ts +2 -0
  20. package/src/components/WfoSubscription/WfoRelatedSubscriptions.tsx +30 -36
  21. package/src/components/WfoSubscription/WfoSubscription.tsx +17 -20
  22. package/src/components/WfoSubscription/index.ts +6 -4
  23. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +12 -16
  24. package/src/components/WfoSubscriptionsList/subscriptionResultMappers.ts +10 -12
  25. package/src/components/index.ts +2 -1
  26. package/src/configuration/constants.ts +3 -0
  27. package/src/hooks/index.ts +0 -1
  28. package/src/hooks/surf/useGetSubscriptionDropdownOptions.ts +6 -13
  29. package/src/hooks/surf/useIsTaggedPort.ts +6 -9
  30. package/src/index.ts +0 -1
  31. package/src/messages/en-GB.json +3 -1
  32. package/src/messages/nl-NL.json +3 -1
  33. package/src/pages/metadata/WfoProductBlocksPage.tsx +27 -37
  34. package/src/pages/metadata/WfoProductsPage.tsx +11 -16
  35. package/src/pages/metadata/WfoResourceTypesPage.tsx +33 -35
  36. package/src/pages/metadata/WfoWorkflowsPage.tsx +42 -40
  37. package/src/pages/metadata/workflowListObjectMapper.ts +4 -7
  38. package/src/pages/processes/WfoStartProcessPage.tsx +9 -21
  39. package/src/pages/startPage/WfoStartPage.tsx +56 -68
  40. package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +6 -7
  41. package/src/rtk/api.ts +11 -3
  42. package/src/rtk/endpoints/index.ts +11 -1
  43. package/src/rtk/endpoints/metadata/index.ts +3 -0
  44. package/src/rtk/endpoints/metadata/productBlocks.ts +88 -0
  45. package/src/rtk/endpoints/metadata/resourceTypes.ts +78 -0
  46. package/src/rtk/endpoints/metadata/workflows.ts +73 -0
  47. package/src/rtk/endpoints/processList.ts +2 -1
  48. package/src/rtk/endpoints/processListSummary.ts +70 -0
  49. package/src/rtk/endpoints/processSteps.ts +50 -0
  50. package/src/rtk/endpoints/products.ts +76 -0
  51. package/src/rtk/endpoints/productsSummary.ts +62 -0
  52. package/src/rtk/endpoints/relatedSubscriptions.ts +99 -0
  53. package/src/rtk/endpoints/settings.ts +10 -0
  54. package/src/rtk/endpoints/startOptions.ts +99 -0
  55. package/src/{graphqlQueries/subscriptionDetailQuery.ts → rtk/endpoints/subscriptionDetail.ts} +45 -11
  56. package/src/rtk/endpoints/subscriptionList.ts +86 -0
  57. package/src/rtk/endpoints/subscriptionListSummary.ts +70 -0
  58. package/src/rtk/endpoints/subscriptionsDropdownOptions.ts +72 -0
  59. package/src/types/types.ts +20 -0
  60. package/src/utils/index.ts +1 -0
  61. package/src/components/WfoPageTemplate/WfoSidebar/WfoStartCreateWorkflowButtonComboBox.tsx +0 -61
  62. package/src/components/WfoStartTaskButtonComboBox/WfoStartTaskButtonComboBox.tsx +0 -54
  63. package/src/components/WfoStartTaskButtonComboBox/index.ts +0 -1
  64. package/src/graphqlQueries/index.ts +0 -8
  65. package/src/graphqlQueries/processListQuery.ts +0 -101
  66. package/src/graphqlQueries/processStepsQuery.ts +0 -22
  67. package/src/graphqlQueries/productBlocksQuery.ts +0 -59
  68. package/src/graphqlQueries/productsQuery.ts +0 -85
  69. package/src/graphqlQueries/relatedSubscriptionsQuery.ts +0 -65
  70. package/src/graphqlQueries/resourceTypesQuery.ts +0 -52
  71. package/src/graphqlQueries/subscriptionsDropdownOptionsQuery.ts +0 -48
  72. package/src/graphqlQueries/subscriptionsListQuery.ts +0 -101
  73. package/src/graphqlQueries/workflows/workflowsQuery.ts +0 -48
  74. package/src/graphqlQueries/workflows/workflowsQueryForDropdownList.ts +0 -38
  75. package/src/hooks/useQueryWithGraphql.ts +0 -72
  76. /package/src/components/{WfoButtonComboBox → WfoStartButton}/styles.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -18,13 +18,10 @@ import { SerializedStyles } from '@emotion/react';
18
18
  import * as _emotion_utils from '@emotion/utils';
19
19
  import { EuiThemeComputed as EuiThemeComputed$1 } from '@elastic/eui/src/services/theme/types';
20
20
  import moment, { Moment } from 'moment-timezone';
21
- import * as graphql from 'graphql';
22
- import { TypedDocumentNode } from '@graphql-typed-document-node/core';
23
- import { Variables } from 'graphql-request/build/esm/types';
24
21
  import * as next_auth_react from 'next-auth/react';
25
22
  import { UseSessionOptions } from 'next-auth/react';
26
23
  import { Session } from 'next-auth';
27
- import { Variables as Variables$1 } from 'graphql-request/build/cjs/types';
24
+ import { Variables } from 'graphql-request/build/cjs/types';
28
25
  import * as _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes from '@rtk-query/graphql-request-base-query/dist/GraphqlBaseQueryTypes';
29
26
  import * as _reduxjs_toolkit_dist_query_baseQueryTypes from '@reduxjs/toolkit/dist/query/baseQueryTypes';
30
27
  import * as _reduxjs_toolkit_query_react from '@reduxjs/toolkit/query/react';
@@ -152,6 +149,7 @@ interface ProductDefinition {
152
149
  productBlocks: Pick<ProductBlockDefinition, 'name'>[];
153
150
  fixedInputs: Pick<FixedInputDefinition, 'name' | 'value'>[];
154
151
  }
152
+ declare type ProductsSummary = Pick<ProductDefinition, 'name'> & SubscriptionsResult<never>;
155
153
  declare enum WorkflowTarget {
156
154
  CREATE = "create",
157
155
  MODIFY = "modify",
@@ -340,11 +338,21 @@ interface CustomersResult {
340
338
  interface WorkflowDefinitionsResult<T = WorkflowDefinition> {
341
339
  workflows: GraphQlResultPage<T>;
342
340
  }
341
+ interface StartOptionsResult<T> {
342
+ workflows: GraphQlSinglePage<T>;
343
+ }
343
344
  interface RelatedSubscriptionsResult {
344
345
  subscriptions: GraphQlSinglePage<Pick<Subscription, 'subscriptionId'> & {
345
346
  inUseBySubscriptions: GraphQlResultPage<RelatedSubscription>;
346
347
  }>;
347
348
  }
349
+ declare type StartComboBoxOption = {
350
+ data: {
351
+ workflowName: string;
352
+ productId?: string;
353
+ };
354
+ label: string;
355
+ };
348
356
  interface GraphQlResultPage<T> {
349
357
  page: T[];
350
358
  pageInfo: GraphQLPageInfo;
@@ -380,6 +388,7 @@ declare type Subscription = {
380
388
  productBlockInstances: ProductBlockInstance[];
381
389
  customer: Pick<Customer, 'fullname' | 'shortcode'>;
382
390
  };
391
+ declare type SubscriptionSummary = Pick<Subscription, 'subscriptionId' | 'description' | 'startDate'>;
383
392
  declare type SubscriptionDropdownOption = {
384
393
  description: Subscription['description'];
385
394
  subscriptionId: Subscription['subscriptionId'];
@@ -699,234 +708,6 @@ declare const useCheckEngineStatus: () => {
699
708
  isEngineRunningNow: () => Promise<boolean>;
700
709
  };
701
710
 
702
- declare const useQueryWithGraphql: <U, V extends Variables>(query: TypedDocumentNode<U, V>, queryVars: V, cacheKeys: string[] | string, options?: UseQueryOptions<U, unknown, U, react_query.QueryKey>) => {
703
- data: undefined;
704
- isError: false;
705
- isIdle: true;
706
- isLoading: false;
707
- isLoadingError: false;
708
- isRefetchError: false;
709
- isSuccess: false;
710
- status: "idle";
711
- dataUpdatedAt: number;
712
- errorUpdatedAt: number;
713
- failureCount: number;
714
- errorUpdateCount: number;
715
- isFetched: boolean;
716
- isFetchedAfterMount: boolean;
717
- isFetching: boolean;
718
- isPlaceholderData: boolean;
719
- isPreviousData: boolean;
720
- isRefetching: boolean;
721
- isStale: boolean;
722
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
723
- remove: () => void;
724
- } | {
725
- data: undefined;
726
- isError: true;
727
- isIdle: false;
728
- isLoading: false;
729
- isLoadingError: true;
730
- isRefetchError: false;
731
- isSuccess: false;
732
- status: "error";
733
- dataUpdatedAt: number;
734
- errorUpdatedAt: number;
735
- failureCount: number;
736
- errorUpdateCount: number;
737
- isFetched: boolean;
738
- isFetchedAfterMount: boolean;
739
- isFetching: boolean;
740
- isPlaceholderData: boolean;
741
- isPreviousData: boolean;
742
- isRefetching: boolean;
743
- isStale: boolean;
744
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
745
- remove: () => void;
746
- } | {
747
- data: undefined;
748
- isError: false;
749
- isIdle: false;
750
- isLoading: true;
751
- isLoadingError: false;
752
- isRefetchError: false;
753
- isSuccess: false;
754
- status: "loading";
755
- dataUpdatedAt: number;
756
- errorUpdatedAt: number;
757
- failureCount: number;
758
- errorUpdateCount: number;
759
- isFetched: boolean;
760
- isFetchedAfterMount: boolean;
761
- isFetching: boolean;
762
- isPlaceholderData: boolean;
763
- isPreviousData: boolean;
764
- isRefetching: boolean;
765
- isStale: boolean;
766
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
767
- remove: () => void;
768
- } | {
769
- data: U;
770
- isError: true;
771
- isIdle: false;
772
- isLoading: false;
773
- isLoadingError: false;
774
- isRefetchError: true;
775
- isSuccess: false;
776
- status: "error";
777
- dataUpdatedAt: number;
778
- errorUpdatedAt: number;
779
- failureCount: number;
780
- errorUpdateCount: number;
781
- isFetched: boolean;
782
- isFetchedAfterMount: boolean;
783
- isFetching: boolean;
784
- isPlaceholderData: boolean;
785
- isPreviousData: boolean;
786
- isRefetching: boolean;
787
- isStale: boolean;
788
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
789
- remove: () => void;
790
- } | {
791
- data: U;
792
- isError: false;
793
- isIdle: false;
794
- isLoading: false;
795
- isLoadingError: false;
796
- isRefetchError: false;
797
- isSuccess: true;
798
- status: "success";
799
- dataUpdatedAt: number;
800
- errorUpdatedAt: number;
801
- failureCount: number;
802
- errorUpdateCount: number;
803
- isFetched: boolean;
804
- isFetchedAfterMount: boolean;
805
- isFetching: boolean;
806
- isPlaceholderData: boolean;
807
- isPreviousData: boolean;
808
- isRefetching: boolean;
809
- isStale: boolean;
810
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
811
- remove: () => void;
812
- };
813
- declare const useQueryWithGraphqlLazy: <U, V extends Variables>(query: TypedDocumentNode<U, V>, queryVars: V, cacheKeys: string[] | string, options?: UseQueryOptions<U, unknown, U, react_query.QueryKey>) => {
814
- data: undefined;
815
- isError: false;
816
- isIdle: true;
817
- isLoading: false;
818
- isLoadingError: false;
819
- isRefetchError: false;
820
- isSuccess: false;
821
- status: "idle";
822
- dataUpdatedAt: number;
823
- errorUpdatedAt: number;
824
- failureCount: number;
825
- errorUpdateCount: number;
826
- isFetched: boolean;
827
- isFetchedAfterMount: boolean;
828
- isFetching: boolean;
829
- isPlaceholderData: boolean;
830
- isPreviousData: boolean;
831
- isRefetching: boolean;
832
- isStale: boolean;
833
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
834
- remove: () => void;
835
- getData: () => Promise<U | undefined>;
836
- } | {
837
- data: undefined;
838
- isError: true;
839
- isIdle: false;
840
- isLoading: false;
841
- isLoadingError: true;
842
- isRefetchError: false;
843
- isSuccess: false;
844
- status: "error";
845
- dataUpdatedAt: number;
846
- errorUpdatedAt: number;
847
- failureCount: number;
848
- errorUpdateCount: number;
849
- isFetched: boolean;
850
- isFetchedAfterMount: boolean;
851
- isFetching: boolean;
852
- isPlaceholderData: boolean;
853
- isPreviousData: boolean;
854
- isRefetching: boolean;
855
- isStale: boolean;
856
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
857
- remove: () => void;
858
- getData: () => Promise<U | undefined>;
859
- } | {
860
- data: undefined;
861
- isError: false;
862
- isIdle: false;
863
- isLoading: true;
864
- isLoadingError: false;
865
- isRefetchError: false;
866
- isSuccess: false;
867
- status: "loading";
868
- dataUpdatedAt: number;
869
- errorUpdatedAt: number;
870
- failureCount: number;
871
- errorUpdateCount: number;
872
- isFetched: boolean;
873
- isFetchedAfterMount: boolean;
874
- isFetching: boolean;
875
- isPlaceholderData: boolean;
876
- isPreviousData: boolean;
877
- isRefetching: boolean;
878
- isStale: boolean;
879
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
880
- remove: () => void;
881
- getData: () => Promise<U | undefined>;
882
- } | {
883
- data: U;
884
- isError: true;
885
- isIdle: false;
886
- isLoading: false;
887
- isLoadingError: false;
888
- isRefetchError: true;
889
- isSuccess: false;
890
- status: "error";
891
- dataUpdatedAt: number;
892
- errorUpdatedAt: number;
893
- failureCount: number;
894
- errorUpdateCount: number;
895
- isFetched: boolean;
896
- isFetchedAfterMount: boolean;
897
- isFetching: boolean;
898
- isPlaceholderData: boolean;
899
- isPreviousData: boolean;
900
- isRefetching: boolean;
901
- isStale: boolean;
902
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
903
- remove: () => void;
904
- getData: () => Promise<U | undefined>;
905
- } | {
906
- data: U;
907
- isError: false;
908
- isIdle: false;
909
- isLoading: false;
910
- isLoadingError: false;
911
- isRefetchError: false;
912
- isSuccess: true;
913
- status: "success";
914
- dataUpdatedAt: number;
915
- errorUpdatedAt: number;
916
- failureCount: number;
917
- errorUpdateCount: number;
918
- isFetched: boolean;
919
- isFetchedAfterMount: boolean;
920
- isFetching: boolean;
921
- isPlaceholderData: boolean;
922
- isPreviousData: boolean;
923
- isRefetching: boolean;
924
- isStale: boolean;
925
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
926
- remove: () => void;
927
- getData: () => Promise<U | undefined>;
928
- };
929
-
930
711
  declare const useMutateProcess: () => {
931
712
  retryAllProcesses: react_query.UseMutationResult<void, unknown, void, unknown>;
932
713
  retryProcess: react_query.UseMutationResult<void, unknown, string, unknown>;
@@ -1018,7 +799,7 @@ declare const useWfoSession: <R extends boolean>(options?: UseSessionOptions<R>
1018
799
  session: WfoSession | null;
1019
800
  };
1020
801
 
1021
- declare const useQueryWithFetch: <T, V extends Variables$1>(url: string, queryVars: V, queryKey: string, options?: UseQueryOptions<T, unknown, T, [string, ...unknown[]]> | undefined) => react_query.UseQueryResult<T, unknown>;
802
+ 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>;
1022
803
 
1023
804
  declare enum SubscriptionDetailTab {
1024
805
  GENERAL_TAB = "general",
@@ -1034,11 +815,37 @@ declare const getWorkflowTargetIconContent: (workflowTarget: WorkflowTarget) =>
1034
815
  declare const getLastUncompletedProcess: (processes: SubscriptionDetailProcess[]) => SubscriptionDetailProcess | undefined;
1035
816
  declare const getLatestTaskDate: (processes: SubscriptionDetailProcess[]) => string;
1036
817
 
818
+ interface SubscriptionKeyValueBlockProps {
819
+ title: string;
820
+ keyValues: WfoKeyValueTableDataType[];
821
+ }
822
+ declare const SubscriptionKeyValueBlock: ({ title, keyValues, }: SubscriptionKeyValueBlockProps) => _emotion_react_jsx_runtime.JSX.Element;
823
+
824
+ interface WfoInSyncFieldProps {
825
+ subscriptionDetail: SubscriptionDetail;
826
+ }
827
+ declare const WfoInSyncField: ({ subscriptionDetail }: WfoInSyncFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
828
+
1037
829
  interface WfoProcessesTimelineProps {
1038
830
  subscriptionDetailProcesses: SubscriptionDetailProcess[];
1039
831
  }
1040
832
  declare const WfoProcessesTimeline: ({ subscriptionDetailProcesses, }: WfoProcessesTimelineProps) => _emotion_react_jsx_runtime.JSX.Element;
1041
833
 
834
+ interface WfoRelatedSubscriptionsProps {
835
+ subscriptionId: string;
836
+ }
837
+ declare const WfoRelatedSubscriptions: ({ subscriptionId, }: WfoRelatedSubscriptionsProps) => _emotion_react_jsx_runtime.JSX.Element;
838
+
839
+ declare type WfoSubscriptionProps = {
840
+ subscriptionId: string;
841
+ };
842
+ declare const WfoSubscription: ({ subscriptionId }: WfoSubscriptionProps) => _emotion_react_jsx_runtime.JSX.Element;
843
+
844
+ declare type WfoSubscriptionActionsProps = {
845
+ subscriptionId: string;
846
+ };
847
+ declare const WfoSubscriptionActions: FC<WfoSubscriptionActionsProps>;
848
+
1042
849
  interface WfoSubscriptionProductBlockProps {
1043
850
  ownerSubscriptionId: string;
1044
851
  subscriptionInstanceId: string;
@@ -1049,17 +856,6 @@ interface WfoSubscriptionProductBlockProps {
1049
856
  declare const HIDDEN_KEYS: string[];
1050
857
  declare const WfoSubscriptionProductBlock: ({ ownerSubscriptionId, subscriptionInstanceId, productBlockInstanceValues, inUseByRelations, }: WfoSubscriptionProductBlockProps) => _emotion_react_jsx_runtime.JSX.Element;
1051
858
 
1052
- declare type WfoSubscriptionActionsProps = {
1053
- subscriptionId: string;
1054
- };
1055
- declare const WfoSubscriptionActions: FC<WfoSubscriptionActionsProps>;
1056
-
1057
- interface SubscriptionKeyValueBlockProps {
1058
- title: string;
1059
- keyValues: WfoKeyValueTableDataType[];
1060
- }
1061
- declare const SubscriptionKeyValueBlock: ({ title, keyValues, }: SubscriptionKeyValueBlockProps) => _emotion_react_jsx_runtime.JSX.Element;
1062
-
1063
859
  interface WfoSubscriptionDetailTreeProps {
1064
860
  productBlockInstances: ProductBlockInstance[];
1065
861
  }
@@ -1070,16 +866,6 @@ interface WfoSubscriptionGeneralProps {
1070
866
  }
1071
867
  declare const WfoSubscriptionGeneral: ({ subscriptionDetail, }: WfoSubscriptionGeneralProps) => _emotion_react_jsx_runtime.JSX.Element;
1072
868
 
1073
- declare type WfoSubscriptionProps = {
1074
- subscriptionId: string;
1075
- };
1076
- declare const WfoSubscription: ({ subscriptionId }: WfoSubscriptionProps) => _emotion_react_jsx_runtime.JSX.Element;
1077
-
1078
- interface WfoInSyncFieldProps {
1079
- subscriptionDetail: SubscriptionDetail;
1080
- }
1081
- declare const WfoInSyncField: ({ subscriptionDetail }: WfoInSyncFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
1082
-
1083
869
  declare type WfoEuiBasicTableColumn<T extends object> = Omit<EuiBasicTableColumn<T>, 'render'>;
1084
870
  declare type WfoTableDataColumnConfig<T extends object, Property> = WfoEuiBasicTableColumn<T> & {
1085
871
  field: Property;
@@ -1748,8 +1534,6 @@ interface IProps {
1748
1534
  }
1749
1535
  declare function CreateForm(props: IProps): _emotion_react_jsx_runtime.JSX.Element;
1750
1536
 
1751
- declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
1752
-
1753
1537
  declare type WfoDateTimeProps = {
1754
1538
  dateOrIsoString: Date | string | null;
1755
1539
  };
@@ -1838,6 +1622,8 @@ declare const WfoModifySettings: () => _emotion_react_jsx_runtime.JSX.Element;
1838
1622
 
1839
1623
  declare const WfoStatus: () => _emotion_react_jsx_runtime.JSX.Element;
1840
1624
 
1625
+ declare const WfoResetTextSearchIndexButton: () => _emotion_react_jsx_runtime.JSX.Element;
1626
+
1841
1627
  interface WfoInsyncIconProps {
1842
1628
  inSync: boolean;
1843
1629
  }
@@ -1928,37 +1714,18 @@ declare const WfoStepStatusIcon: ({ stepStatus, isStartStep, }: WfoStepStatusIco
1928
1714
  declare const STEP_STATE_HIDDEN_KEYS: string[];
1929
1715
  declare const getStepContent: (stepDelta: StepState, showHiddenKeys: boolean) => StepState;
1930
1716
 
1931
- declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
1932
-
1933
- declare const GET_SUBSCRIPTIONS_LIST_GRAPHQL_QUERY: graphql.DocumentNode;
1934
- declare const GET_SUBSCRIPTIONS_LIST_SUMMARY_GRAPHQL_QUERY: graphql.DocumentNode;
1935
- declare const getSubscriptionsListGraphQlQuery: <QueryVariablesType = Subscription>() => TypedDocumentNode<SubscriptionsResult<Subscription>, GraphqlQueryVariables<QueryVariablesType>>;
1936
- declare const getSubscriptionsListSummaryGraphQlQuery: <QueryVariablesType = Subscription>() => TypedDocumentNode<SubscriptionsResult<Pick<Subscription, "description" | "subscriptionId" | "startDate">>, GraphqlQueryVariables<QueryVariablesType>>;
1937
-
1938
- declare const GET_PRODUCTS_BLOCKS_GRAPHQL_QUERY: TypedDocumentNode<ProductBlockDefinitionsResult, GraphqlQueryVariables<ProductBlockDefinition>>;
1939
-
1940
- declare const GET_PRODUCTS_GRAPHQL_QUERY: graphql.DocumentNode;
1941
- declare const GET_PRODUCTS_SUMMARY_GRAPHQL_QUERY: graphql.DocumentNode;
1942
- declare const getProductsSummaryQuery: () => TypedDocumentNode<ProductDefinitionsResult<Pick<ProductDefinition, 'name'> & SubscriptionsResult<never>>, GraphqlQueryVariables<ProductDefinition>>;
1943
- declare const getProductsQuery: () => TypedDocumentNode<ProductDefinitionsResult, GraphqlQueryVariables<ProductDefinition>>;
1944
-
1945
- declare const GET_RESOURCE_TYPES_GRAPHQL_QUERY: TypedDocumentNode<ResourceTypeDefinitionsResult, GraphqlQueryVariables<ResourceTypeDefinition>>;
1946
-
1947
- declare const GET_SUBSCRIPTION_DETAIL_GRAPHQL_QUERY: TypedDocumentNode<SubscriptionDetailResult, {
1948
- subscriptionId: string;
1949
- }>;
1717
+ interface WfoNoResultsProps {
1718
+ text: string;
1719
+ icon: ReactNode;
1720
+ }
1721
+ declare const WfoNoResults: ({ text, icon }: WfoNoResultsProps) => _emotion_react_jsx_runtime.JSX.Element;
1950
1722
 
1951
- declare const GET_SUBSCRIPTION_DROPDOWN_OPTIONS_GRAPHQL_QUERY: graphql.DocumentNode;
1952
- declare function getSubscriptionDropdownOptionsGraphQlQuery<QueryVariablesType = SubscriptionDropdownOption>(): TypedDocumentNode<SubscriptionDropdownOptionsResult, GraphqlQueryVariables<QueryVariablesType>>;
1723
+ declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
1953
1724
 
1954
- declare const GET_PROCESS_STEPS_GRAPHQL_QUERY: TypedDocumentNode<ProcessStepsResult, {
1955
- processName: string;
1956
- }>;
1725
+ declare const WfoStartWorkflowButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
1957
1726
 
1958
- declare const GET_PROCESS_LIST_SUMMARY_GRAPHQL_QUERY: graphql.DocumentNode;
1959
- declare const GET_PROCESS_LIST_GRAPHQL_QUERY: graphql.DocumentNode;
1960
- declare const getProcessListGraphQlQuery: () => TypedDocumentNode<ProcessListResult, GraphqlQueryVariables<Process>>;
1961
- declare const getProcessListSummaryGraphQlQuery: () => TypedDocumentNode<ProcessListResult<Pick<Process, 'processId' | 'workflowName' | 'startedAt'>>, GraphqlQueryVariables<Process>>;
1727
+ declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
1728
+ declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
1962
1729
 
1963
1730
  declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
1964
1731
  declare const useGetTranslationMessages: (locale: string | undefined) => {
@@ -2377,6 +2144,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2377
2144
  runningProcesses: string;
2378
2145
  selectSettings: string;
2379
2146
  startEngine: string;
2147
+ resetTextSearchIndex: string;
2148
+ resetTextSearchIndexButton: string;
2380
2149
  };
2381
2150
  };
2382
2151
  startPage: {
@@ -2820,6 +2589,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2820
2589
  runningProcesses: string;
2821
2590
  selectSettings: string;
2822
2591
  startEngine: string;
2592
+ resetTextSearchIndex: string;
2593
+ resetTextSearchIndexButton: string;
2823
2594
  };
2824
2595
  };
2825
2596
  startPage: {
@@ -2921,7 +2692,10 @@ declare enum BaseQueryTypes {
2921
2692
  }
2922
2693
  declare enum CacheTags {
2923
2694
  engineStatus = "engineStatus",
2924
- testStatus = "testStatus"
2695
+ processList = "processList",
2696
+ processListSummary = "processListSummary",
2697
+ subscription = "subscription",
2698
+ subscriptionList = "subscriptionList"
2925
2699
  }
2926
2700
  declare type ExtraOptions = {
2927
2701
  baseQueryType?: BaseQueryTypes;
@@ -2959,6 +2733,134 @@ declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks
2959
2733
  meta?: {} | undefined;
2960
2734
  } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, Customer[], "orchestratorApi">>;
2961
2735
 
2736
+ declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2737
+ baseQueryType?: BaseQueryTypes | undefined;
2738
+ apiName?: string | undefined;
2739
+ }) => {
2740
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2741
+ data?: undefined;
2742
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2743
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2744
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2745
+ data?: undefined;
2746
+ meta?: {} | undefined;
2747
+ } | {
2748
+ error?: undefined;
2749
+ data: unknown;
2750
+ meta?: {} | undefined;
2751
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
2752
+
2753
+ declare const productBlocksQuery = "\n query MetadataProductBlocks(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n ) {\n productBlocks(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n resourceTypes {\n description\n resourceType\n resourceTypeId\n }\n dependsOn {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n";
2754
+ declare type ProductBlocksResponse = {
2755
+ productBlocks: ProductBlockDefinition[];
2756
+ } & BaseGraphQlResult;
2757
+ declare const useGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2758
+ baseQueryType?: BaseQueryTypes | undefined;
2759
+ apiName?: string | undefined;
2760
+ }) => {
2761
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2762
+ data?: undefined;
2763
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2764
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2765
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2766
+ data?: undefined;
2767
+ meta?: {} | undefined;
2768
+ } | {
2769
+ error?: undefined;
2770
+ data: unknown;
2771
+ meta?: {} | undefined;
2772
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
2773
+ declare const useLazyGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2774
+ baseQueryType?: BaseQueryTypes | undefined;
2775
+ apiName?: string | undefined;
2776
+ }) => {
2777
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2778
+ data?: undefined;
2779
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2780
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2781
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2782
+ data?: undefined;
2783
+ meta?: {} | undefined;
2784
+ } | {
2785
+ error?: undefined;
2786
+ data: unknown;
2787
+ meta?: {} | undefined;
2788
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
2789
+
2790
+ declare const resourceTypesQuery = "\nquery MetadataResourceTypes(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n resourceTypes(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n resourceTypeId\n resourceType\n description\n productBlocks {\n description\n name\n productBlockId\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2791
+ declare type ResourceTypesResponse = {
2792
+ resourceTypes: ResourceTypeDefinition[];
2793
+ } & BaseGraphQlResult;
2794
+ declare const useGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2795
+ baseQueryType?: BaseQueryTypes | undefined;
2796
+ apiName?: string | undefined;
2797
+ }) => {
2798
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2799
+ data?: undefined;
2800
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2801
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2802
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2803
+ data?: undefined;
2804
+ meta?: {} | undefined;
2805
+ } | {
2806
+ error?: undefined;
2807
+ data: unknown;
2808
+ meta?: {} | undefined;
2809
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
2810
+ declare const useLazyGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2811
+ baseQueryType?: BaseQueryTypes | undefined;
2812
+ apiName?: string | undefined;
2813
+ }) => {
2814
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2815
+ data?: undefined;
2816
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2817
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2818
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2819
+ data?: undefined;
2820
+ meta?: {} | undefined;
2821
+ } | {
2822
+ error?: undefined;
2823
+ data: unknown;
2824
+ meta?: {} | undefined;
2825
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
2826
+
2827
+ declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2828
+ declare type WorkflowsResponse = {
2829
+ workflows: WorkflowDefinition[];
2830
+ } & BaseGraphQlResult;
2831
+ declare const useGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2832
+ baseQueryType?: BaseQueryTypes | undefined;
2833
+ apiName?: string | undefined;
2834
+ }) => {
2835
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2836
+ data?: undefined;
2837
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2838
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2839
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2840
+ data?: undefined;
2841
+ meta?: {} | undefined;
2842
+ } | {
2843
+ error?: undefined;
2844
+ data: unknown;
2845
+ meta?: {} | undefined;
2846
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
2847
+ declare const useLazyGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2848
+ baseQueryType?: BaseQueryTypes | undefined;
2849
+ apiName?: string | undefined;
2850
+ }) => {
2851
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2852
+ data?: undefined;
2853
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2854
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2855
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2856
+ data?: undefined;
2857
+ meta?: {} | undefined;
2858
+ } | {
2859
+ error?: undefined;
2860
+ data: unknown;
2861
+ meta?: {} | undefined;
2862
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
2863
+
2962
2864
  declare const processListQuery = "\n query ProcessList(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n processes(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n workflowName\n lastStep\n lastStatus\n workflowTarget\n product {\n name\n tag\n }\n customer {\n fullname\n shortcode\n }\n createdBy\n assignee\n processId\n startedAt\n lastModifiedAt\n isTask\n subscriptions {\n page {\n subscriptionId\n description\n }\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n endCursor\n sortFields\n filterFields\n }\n }\n }\n";
2963
2865
  declare type ProcessListResponse = {
2964
2866
  processes: Process[];
@@ -2979,6 +2881,144 @@ declare const useGetProcessListQuery: _reduxjs_toolkit_dist_query_react_buildHoo
2979
2881
  data: unknown;
2980
2882
  meta?: {} | undefined;
2981
2883
  } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProcessListResponse, "orchestratorApi">>;
2884
+ declare const useLazyGetProcessListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<Process>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2885
+ baseQueryType?: BaseQueryTypes | undefined;
2886
+ apiName?: string | undefined;
2887
+ }) => {
2888
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2889
+ data?: undefined;
2890
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2891
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2892
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2893
+ data?: undefined;
2894
+ meta?: {} | undefined;
2895
+ } | {
2896
+ error?: undefined;
2897
+ data: unknown;
2898
+ meta?: {} | undefined;
2899
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProcessListResponse, "orchestratorApi">>;
2900
+
2901
+ declare const processListSummaryQuery = "\n query ProcessListSummary(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n processes(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n processId\n workflowName\n startedAt\n }\n pageInfo {\n totalItems\n startCursor\n endCursor\n }\n }\n }\n";
2902
+ declare type ProcessSummary = Pick<Process, 'processId' | 'workflowName' | 'startedAt'>;
2903
+ declare type ProcessListSummaryResponse = {
2904
+ processes: ProcessSummary[];
2905
+ } & BaseGraphQlResult;
2906
+ declare const useGetProcessListSummaryQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<Process>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2907
+ baseQueryType?: BaseQueryTypes | undefined;
2908
+ apiName?: string | undefined;
2909
+ }) => {
2910
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2911
+ data?: undefined;
2912
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2913
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2914
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2915
+ data?: undefined;
2916
+ meta?: {} | undefined;
2917
+ } | {
2918
+ error?: undefined;
2919
+ data: unknown;
2920
+ meta?: {} | undefined;
2921
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProcessListSummaryResponse, "orchestratorApi">>;
2922
+
2923
+ declare const processStepsQuery = "\n query ProcessSteps($processName: String!) {\n workflows(filterBy: { field: \"name\", value: $processName }) {\n page {\n steps {\n name\n assignee\n }\n }\n }\n }\n";
2924
+ declare const useGetTimeLineItemsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2925
+ baseQueryType?: BaseQueryTypes | undefined;
2926
+ apiName?: string | undefined;
2927
+ }) => {
2928
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2929
+ data?: undefined;
2930
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2931
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2932
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2933
+ data?: undefined;
2934
+ meta?: {} | undefined;
2935
+ } | {
2936
+ error?: undefined;
2937
+ data: unknown;
2938
+ meta?: {} | undefined;
2939
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, TimelineItem[], "orchestratorApi">>;
2940
+
2941
+ declare const products = "\n query MetadataProducts(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n ) {\n products(first: $first, after: $after, sortBy: $sortBy, query: $query) {\n page {\n productId\n name\n description\n tag\n createdAt\n productType\n status\n productBlocks {\n name\n }\n fixedInputs {\n name\n value\n }\n endDate\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n";
2942
+ declare type ProductsResponse = {
2943
+ products: ProductDefinition[];
2944
+ } & BaseGraphQlResult;
2945
+ declare const useGetProductsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2946
+ baseQueryType?: BaseQueryTypes | undefined;
2947
+ apiName?: string | undefined;
2948
+ }) => {
2949
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2950
+ data?: undefined;
2951
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2952
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2953
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2954
+ data?: undefined;
2955
+ meta?: {} | undefined;
2956
+ } | {
2957
+ error?: undefined;
2958
+ data: unknown;
2959
+ meta?: {} | undefined;
2960
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductsResponse, "orchestratorApi">>;
2961
+ declare const useLazyGetProductsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2962
+ baseQueryType?: BaseQueryTypes | undefined;
2963
+ apiName?: string | undefined;
2964
+ }) => {
2965
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2966
+ data?: undefined;
2967
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2968
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2969
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2970
+ data?: undefined;
2971
+ meta?: {} | undefined;
2972
+ } | {
2973
+ error?: undefined;
2974
+ data: unknown;
2975
+ meta?: {} | undefined;
2976
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductsResponse, "orchestratorApi">>;
2977
+
2978
+ declare const productsSummary = "\n query MetadataProducts(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n ) {\n products(first: $first, after: $after, sortBy: $sortBy) {\n page {\n name\n subscriptions {\n pageInfo {\n totalItems\n }\n }\n }\n pageInfo {\n totalItems\n startCursor\n endCursor\n }\n }\n }\n";
2979
+ declare type ProductsSummaryResponse = {
2980
+ products: ProductsSummary[];
2981
+ } & BaseGraphQlResult;
2982
+ declare const useGetProductsSummaryQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductsSummary>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2983
+ baseQueryType?: BaseQueryTypes | undefined;
2984
+ apiName?: string | undefined;
2985
+ }) => {
2986
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2987
+ data?: undefined;
2988
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2989
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2990
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2991
+ data?: undefined;
2992
+ meta?: {} | undefined;
2993
+ } | {
2994
+ error?: undefined;
2995
+ data: unknown;
2996
+ meta?: {} | undefined;
2997
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductsSummaryResponse, "orchestratorApi">>;
2998
+
2999
+ declare const RelatedSubscriptionsQuery = "\nquery RelatedSubscriptions(\n $subscriptionId: String!\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $terminatedSubscriptionFilter: [GraphqlFilter!]\n) {\n subscriptions(\n filterBy: { value: $subscriptionId, field: \"subscriptionId\" }\n ) {\n page {\n subscriptionId\n inUseBySubscriptions(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $terminatedSubscriptionFilter\n ) {\n page {\n subscriptionId\n customer {\n fullname\n }\n description\n insync\n startDate\n status\n product {\n tag\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n }\n}\n";
3000
+ declare type RelatedSubscriptionsResponse = {
3001
+ relatedSubscriptions: RelatedSubscription[];
3002
+ } & BaseGraphQlResult;
3003
+ declare type RelatedSubscriptionVariables = GraphqlQueryVariables<RelatedSubscription> & Pick<Subscription, 'subscriptionId'> & {
3004
+ terminatedSubscriptionFilter?: GraphqlFilter<RelatedSubscription>;
3005
+ };
3006
+ declare const useGetRelatedSubscriptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<RelatedSubscriptionVariables, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3007
+ baseQueryType?: BaseQueryTypes | undefined;
3008
+ apiName?: string | undefined;
3009
+ }) => {
3010
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
3011
+ data?: undefined;
3012
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3013
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3014
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3015
+ data?: undefined;
3016
+ meta?: {} | undefined;
3017
+ } | {
3018
+ error?: undefined;
3019
+ data: unknown;
3020
+ meta?: {} | undefined;
3021
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, RelatedSubscriptionsResponse, "orchestratorApi">>;
2982
3022
 
2983
3023
  interface EngineStatusReturnValue {
2984
3024
  engineStatus: EngineStatus;
@@ -3016,6 +3056,22 @@ declare const useClearCacheMutation: _reduxjs_toolkit_dist_query_react_buildHook
3016
3056
  data: unknown;
3017
3057
  meta?: {} | undefined;
3018
3058
  } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
3059
+ declare const useResetTextSearchIndexMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<null, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3060
+ baseQueryType?: BaseQueryTypes | undefined;
3061
+ apiName?: string | undefined;
3062
+ }) => {
3063
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
3064
+ data?: undefined;
3065
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3066
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3067
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3068
+ data?: undefined;
3069
+ meta?: {} | undefined;
3070
+ } | {
3071
+ error?: undefined;
3072
+ data: unknown;
3073
+ meta?: {} | undefined;
3074
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
3019
3075
  declare const useSetEngineStatusMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<boolean, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3020
3076
  baseQueryType?: BaseQueryTypes | undefined;
3021
3077
  apiName?: string | undefined;
@@ -3050,7 +3106,13 @@ declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHoo
3050
3106
  meta?: {} | undefined;
3051
3107
  } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
3052
3108
 
3053
- declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3109
+ declare const subscriptionDetailQuery = "\n query SubscriptionDetail($subscriptionId: String!) {\n subscriptions(\n filterBy: { value: $subscriptionId, field: \"subscriptionId\" }\n ) {\n page {\n subscriptionId\n description\n fixedInputs\n insync\n note\n product {\n createdAt\n name\n status\n endDate\n description\n tag\n productType\n productId\n }\n endDate\n startDate\n status\n customerId\n customer {\n fullname\n customerId\n shortcode\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n processes(sortBy: { field: \"startedAt\", order: ASC }) {\n page {\n processId\n lastStatus\n startedAt\n createdBy\n workflowTarget\n workflowName\n isTask\n }\n }\n }\n }\n }\n";
3110
+ declare type SubscriptionDetailResponse = {
3111
+ subscription: SubscriptionDetail;
3112
+ } & BaseGraphQlResult;
3113
+ declare const useGetSubscriptionDetailQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
3114
+ subscriptionId: string;
3115
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3054
3116
  baseQueryType?: BaseQueryTypes | undefined;
3055
3117
  apiName?: string | undefined;
3056
3118
  }) => {
@@ -3065,7 +3127,70 @@ declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_reac
3065
3127
  error?: undefined;
3066
3128
  data: unknown;
3067
3129
  meta?: {} | undefined;
3068
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
3130
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDetailResponse, "orchestratorApi">>;
3131
+
3132
+ declare const subscriptionsDropdownOptionsQuery = "\n query SubscriptionDropdownOptions(\n $filterBy: [GraphqlFilter!]\n $first: Int!\n ) {\n subscriptions(filterBy: $filterBy, first: $first, after: 0) {\n page {\n description\n subscriptionId\n product {\n tag\n productId\n }\n customer {\n fullname\n customerId\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n fixedInputs\n }\n }\n }\n";
3133
+ declare type SubscriptionDropdownOptionsResponse = {
3134
+ subscriptionDropdownOptions: SubscriptionDropdownOption[];
3135
+ };
3136
+ declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<SubscriptionDropdownOption>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3137
+ baseQueryType?: BaseQueryTypes | undefined;
3138
+ apiName?: string | undefined;
3139
+ }) => {
3140
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
3141
+ data?: undefined;
3142
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3143
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3144
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3145
+ data?: undefined;
3146
+ meta?: {} | undefined;
3147
+ } | {
3148
+ error?: undefined;
3149
+ data: unknown;
3150
+ meta?: {} | undefined;
3151
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
3152
+
3153
+ declare type WorkflowOption = {
3154
+ workflowName: WorkflowDefinition['name'];
3155
+ productName: ProductDefinition['name'];
3156
+ productId: ProductDefinition['productId'];
3157
+ };
3158
+ declare type StartOptionsResponse<StartOption> = {
3159
+ startOptions: StartOption[];
3160
+ };
3161
+ declare type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
3162
+ declare const useGetWorkflowOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3163
+ baseQueryType?: BaseQueryTypes | undefined;
3164
+ apiName?: string | undefined;
3165
+ }) => {
3166
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
3167
+ data?: undefined;
3168
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3169
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3170
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3171
+ data?: undefined;
3172
+ meta?: {} | undefined;
3173
+ } | {
3174
+ error?: undefined;
3175
+ data: unknown;
3176
+ meta?: {} | undefined;
3177
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
3178
+ declare const useGetTaskOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3179
+ baseQueryType?: BaseQueryTypes | undefined;
3180
+ apiName?: string | undefined;
3181
+ }) => {
3182
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
3183
+ data?: undefined;
3184
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3185
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3186
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3187
+ data?: undefined;
3188
+ meta?: {} | undefined;
3189
+ } | {
3190
+ error?: undefined;
3191
+ data: unknown;
3192
+ meta?: {} | undefined;
3193
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
3069
3194
 
3070
3195
  declare type ToastState = {
3071
3196
  messages: Toast[];
@@ -3107,6 +3232,10 @@ declare const StoreProvider: ({ initialOrchestratorConfig, customApis, children,
3107
3232
 
3108
3233
  declare const defaultOrchestratorTheme: EuiThemeModifications;
3109
3234
 
3235
+ declare function initiateCsvFileDownload<T extends object>(data: T[], fileName: string): void;
3236
+ declare const getCsvFileNameWithDate: (fileNameWithoutExtension: string) => string;
3237
+ declare const csvDownloadHandler: <T extends object, U extends object>(dataFetchFunction: () => Promise<T | undefined>, dataMapper: (data: T) => U[], pageInfoMapper: (data: T) => GraphQLPageInfo, keyOrder: string[], filename: string, addToastFunction: (type: ToastTypes, text: string, title: string) => void, translationFunction: (translationKey: string, variables?: TranslationValues | undefined) => string) => () => Promise<void>;
3238
+
3110
3239
  declare const getCurrentBrowserLocale: () => string;
3111
3240
  declare const parseDate: (date: string | null | undefined) => Date | null;
3112
3241
  declare const calculateTimeDifference: (from: string, to: string) => string;
@@ -3148,4 +3277,4 @@ declare const getQueryVariablesForExport: <T extends object>(queryVariables: Gra
3148
3277
 
3149
3278
  declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
3150
3279
 
3151
- 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, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, 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 Field, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, GET_PROCESS_LIST_GRAPHQL_QUERY, GET_PROCESS_LIST_SUMMARY_GRAPHQL_QUERY, GET_PROCESS_STEPS_GRAPHQL_QUERY, GET_PRODUCTS_BLOCKS_GRAPHQL_QUERY, GET_PRODUCTS_GRAPHQL_QUERY, GET_PRODUCTS_SUMMARY_GRAPHQL_QUERY, GET_RESOURCE_TYPES_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_SUMMARY_GRAPHQL_QUERY, GET_SUBSCRIPTION_DETAIL_GRAPHQL_QUERY, GET_SUBSCRIPTION_DROPDOWN_OPTIONS_GRAPHQL_QUERY, type GraphQLPageInfo, type GraphQLSort, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InputForm, IpNetworkField, type KeyValue, 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_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, NestField, type NestFieldProps, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListItem, type ProcessListResponse, type ProcessListResult, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type RootState, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, type SelectFieldProps, type ShowConfirmDialog, type ShowConfirmDialogType, SortOrder, 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 SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, SubscriptionStatus, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, 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, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, 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, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoRefresh, 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, 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, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsListPage, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, WfoToastsList, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, defaultOrchestratorTheme, defaultTasksListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberValueFromEnvironmentVariable, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProcessListGraphQlQuery, getProcessListSummaryGraphQlQuery, getProductBlockTitle, getProductNamesFromProcess, getProductsQuery, getProductsSummaryQuery, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDropdownOptionsGraphQlQuery, getSubscriptionsListGraphQlQuery, getSubscriptionsListSummaryGraphQlQuery, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapSortableAndFilterableValuesToTableColumnConfig, onlyUnique, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, removeSuffix, removeToastMessage, renderEmptyElementWhenNotAllowedByPolicy, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, stop, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetTranslationMessages, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useQueryWithGraphql, useQueryWithGraphqlLazy, useRawProcessDetails, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment };
3280
+ 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, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, 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 Field, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type GraphQLPageInfo, type GraphQLSort, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InputForm, IpNetworkField, type KeyValue, 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_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, 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 ShowConfirmDialog, type ShowConfirmDialogType, 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, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, 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, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, 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, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, 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, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsListPage, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, WfoToastsList, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberValueFromEnvironmentVariable, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, initiateCsvFileDownload, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapSortableAndFilterableValuesToTableColumnConfig, onlyUnique, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, renderEmptyElementWhenNotAllowedByPolicy, resourceTypesQuery, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, stop, subscriptionDetailQuery, subscriptionsDropdownOptionsQuery, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetWorkflowsQuery, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useRawProcessDetails, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, workflowsQuery };