@orchestrator-ui/orchestrator-ui-components 0.9.1 → 0.11.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 (48) 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 +18 -0
  5. package/dist/index.d.ts +115 -43
  6. package/dist/index.js +5780 -5482
  7. package/package.json +2 -2
  8. package/src/components/WfoAuth/WfoAuth.tsx +35 -7
  9. package/src/components/WfoAuth/WfoIsAllowedToRender.tsx +17 -0
  10. package/src/components/WfoAuth/index.ts +1 -0
  11. package/src/components/WfoBadges/WfoFailedTasksBadge/WfoFailedTasksBadge.tsx +1 -3
  12. package/src/components/WfoBadges/WfoHeaderBadge/WfoHeaderBadge.tsx +1 -1
  13. package/src/components/WfoBadges/WfoSubscriptionSyncStatusBadge/WfoSubscriptionSyncStatusBadge.stories.tsx +27 -0
  14. package/src/components/WfoBadges/WfoSubscriptionSyncStatusBadge/WfoSubscriptionSyncStatusBadge.tsx +45 -0
  15. package/src/components/WfoBadges/WfoSubscriptionSyncStatusBadge/index.ts +1 -0
  16. package/src/components/WfoBadges/WfoWebsocketStatusBadge/WfoWebsocketStatusBadge.stories.tsx +13 -0
  17. package/src/components/WfoBadges/WfoWebsocketStatusBadge/WfoWebsocketStatusBadge.tsx +41 -0
  18. package/src/components/WfoBadges/WfoWebsocketStatusBadge/index.ts +1 -0
  19. package/src/components/WfoForms/formFields/CustomerField.tsx +4 -1
  20. package/src/components/WfoPageTemplate/WfoPageHeader/WfoPageHeader.tsx +47 -2
  21. package/src/components/WfoPageTemplate/WfoPageTemplate/WfoPageTemplate.tsx +4 -1
  22. package/src/components/WfoSubscription/WfoSubscription.tsx +25 -2
  23. package/src/contexts/ApiClientContext.tsx +2 -2
  24. package/src/contexts/OrchestratorConfigContext.tsx +1 -0
  25. package/src/contexts/PolicyContext.tsx +23 -0
  26. package/src/contexts/index.ts +2 -1
  27. package/src/hooks/DataFetchHooks.ts +2 -2
  28. package/src/hooks/index.ts +2 -1
  29. package/src/hooks/useMutateProcess.ts +2 -2
  30. package/src/hooks/useOrchestratorTheme.ts +3 -1
  31. package/src/hooks/usePolicy.ts +15 -0
  32. package/src/hooks/useQueryWithFetch.ts +2 -2
  33. package/src/hooks/useQueryWithGraphql.ts +2 -2
  34. package/src/hooks/useShowToastMessage.ts +4 -26
  35. package/src/hooks/useSubscriptionActions.ts +2 -2
  36. package/src/hooks/useWfoSession.ts +28 -0
  37. package/src/icons/WfoSideMenu.stories.tsx +1 -1
  38. package/src/messages/en-GB.json +8 -2
  39. package/src/messages/nl-NL.json +8 -2
  40. package/src/rtk/api.ts +9 -3
  41. package/src/rtk/endpoints/index.ts +1 -0
  42. package/src/rtk/endpoints/settings.ts +3 -3
  43. package/src/rtk/endpoints/streamMessages.ts +128 -0
  44. package/src/theme/defaultOrchestratorTheme.ts +28 -1
  45. package/src/types/types.ts +6 -0
  46. package/src/utils/getToastMessage.spec.ts +28 -0
  47. package/src/utils/getToastMessage.ts +35 -0
  48. package/src/hooks/useSessionWithToken.ts +0 -12
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@0.9.1 build
2
+ > @orchestrator-ui/orchestrator-ui-components@0.11.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.13 MB
12
- ESM ⚡️ Build success in 760ms
13
- DTS ⚡️ Build success in 11595ms
14
- DTS dist/index.d.ts 114.97 KB
11
+ ESM dist/index.js 2.14 MB
12
+ ESM ⚡️ Build success in 728ms
13
+ DTS ⚡️ Build success in 11922ms
14
+ DTS dist/index.d.ts 118.34 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@0.9.1 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@0.11.0 lint
3
3
  > eslint "src/**/*.ts*"
4
4
 
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@0.9.1 test
2
+ > @orchestrator-ui/orchestrator-ui-components@0.11.0 test
3
3
  > jest
4
4
 
5
5
  PASS Orchestrator UI Components Tests src/pages/processes/timelineUtils.spec.ts
@@ -9,24 +9,25 @@ PASS Orchestrator UI Components Tests src/components/WfoSubscription/utils/utils
9
9
  PASS Orchestrator UI Components Tests src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts
10
10
  PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
11
11
  PASS Orchestrator UI Components Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
12
- PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
13
12
  PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
14
- PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
15
- PASS Orchestrator UI Components Tests src/utils/string.spec.ts
13
+ PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
16
14
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
15
+ PASS Orchestrator UI Components Tests src/utils/string.spec.ts
16
+ PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
17
17
  PASS Orchestrator UI Components Tests src/messages/getTranslationMessages.spec.ts
18
- PASS Orchestrator UI Components Tests src/utils/sortObjectKeys.spec.ts
19
18
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/columns.spec.ts
19
+ PASS Orchestrator UI Components Tests src/utils/getToastMessage.spec.ts
20
+ PASS Orchestrator UI Components Tests src/utils/sortObjectKeys.spec.ts
20
21
  PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
21
- PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
22
22
  PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
23
- PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
23
+ PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
24
24
  PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
25
- PASS Orchestrator UI Components Tests src/utils/getQueryVariablesForExport.spec.ts
25
+ PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
26
26
  PASS Orchestrator UI Components Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
27
+ PASS Orchestrator UI Components Tests src/utils/getQueryVariablesForExport.spec.ts
27
28
 
28
- Test Suites: 22 passed, 22 total
29
- Tests: 131 passed, 131 total
29
+ Test Suites: 23 passed, 23 total
30
+ Tests: 135 passed, 135 total
30
31
  Snapshots: 0 total
31
- Time: 4.339 s
32
+ Time: 4.43 s
32
33
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 0.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 6332355: Adds dark theme behind feature toggle
8
+ - e808db4: Add a websocket that can be called to clear cache
9
+
10
+ ### Patch Changes
11
+
12
+ - c3da8a6: add customer abbrev to customer drop down string in form field
13
+ - 05c9acc: add status and insync badge to subscription detail page
14
+
15
+ ## 0.10.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 18da717: 460 Introduces a usePolicy hook to help with conditionally rendering of components. The useWfoSession hook can be used to identify the user
20
+
3
21
  ## 0.9.1
4
22
 
5
23
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import * as React from 'react';
2
- import React__default, { Ref, ReactNode, FC, ReactElement, ComponentType, HTMLProps, JSX, FunctionComponent, ErrorInfo } from 'react';
2
+ import React__default, { Ref, ReactNode, FC, ReactElement, ComponentType, HTMLProps, FunctionComponent, ErrorInfo } from 'react';
3
3
  import { JSONSchema6 } from 'json-schema';
4
4
  import * as uniforms from 'uniforms';
5
5
  import { HTMLFieldProps, FieldProps as FieldProps$2 } from 'uniforms';
6
6
  import * as _elastic_eui from '@elastic/eui';
7
- import { EuiBadgeProps, EuiThemeComputed, EuiBasicTableColumn, EuiDataGridColumn, Pagination as Pagination$1, Criteria as Criteria$1, EuiThemeModifications } from '@elastic/eui';
7
+ import { EuiBadgeProps, EuiThemeColorMode, EuiThemeComputed, EuiBasicTableColumn, EuiDataGridColumn, Pagination as Pagination$1, Criteria as Criteria$1, EuiThemeModifications } from '@elastic/eui';
8
8
  import { TextSize } from '@elastic/eui/src/components/text/text';
9
9
  import { TextColor } from '@elastic/eui/src/components/text/text_color';
10
10
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
@@ -20,6 +20,8 @@ import { EuiThemeComputed as EuiThemeComputed$1 } from '@elastic/eui/src/service
20
20
  import moment, { Moment } from 'moment-timezone';
21
21
  import { Variables } from 'graphql-request/build/esm/types';
22
22
  import { TypedDocumentNode } from '@graphql-typed-document-node/core';
23
+ import * as next_auth_react from 'next-auth/react';
24
+ import { UseSessionOptions } from 'next-auth/react';
23
25
  import { Session } from 'next-auth';
24
26
  import { Variables as Variables$1 } from 'graphql-request/build/cjs/types';
25
27
  import * as graphql from 'graphql';
@@ -411,6 +413,7 @@ declare enum Environment {
411
413
  }
412
414
  declare type OrchestratorConfig = {
413
415
  environmentName: Environment | string;
416
+ orchestratorWebsocketUrl: string;
414
417
  orchestratorApiBaseUrl: string;
415
418
  graphqlEndpointCore: string;
416
419
  engineStatusEndpoint: string;
@@ -420,6 +423,10 @@ declare type OrchestratorConfig = {
420
423
  subscriptionProcessesEndpoint: string;
421
424
  authActive: boolean;
422
425
  };
426
+ declare enum ColorModes {
427
+ LIGHT = "LIGHT",
428
+ DARK = "DARK"
429
+ }
423
430
 
424
431
  interface NodeSubscription {
425
432
  name: string;
@@ -521,7 +528,7 @@ declare const WfoEngineStatusBadge: () => _emotion_react_jsx_runtime.JSX.Element
521
528
 
522
529
  declare type HeaderBadgeProps = EuiBadgeProps & {
523
530
  textColor: TextColor | string;
524
- children: ReactNode;
531
+ children?: ReactNode;
525
532
  };
526
533
  declare const WfoHeaderBadge: FC<HeaderBadgeProps>;
527
534
 
@@ -585,12 +592,14 @@ interface WfoPageHeaderProps {
585
592
  getAppLogo: (navigationHeight: number) => ReactElement;
586
593
  handleSideMenuClick: () => void;
587
594
  handleLogoutClick: () => void;
595
+ onThemeSwitch: (theme: EuiThemeColorMode) => void;
588
596
  }
589
597
  declare const WfoPageHeader: FC<WfoPageHeaderProps>;
590
598
 
591
599
  interface WfoPageTemplateProps {
592
600
  getAppLogo: (navigationHeight: number) => ReactElement;
593
601
  overrideMenuItems?: (defaultMenuItems: EuiSideNavItemType<object>[]) => EuiSideNavItemType<object>[];
602
+ onThemeSwitch: (theme: EuiThemeColorMode) => void;
594
603
  children: ReactNode;
595
604
  }
596
605
  declare const WfoPageTemplate: FC<WfoPageTemplateProps>;
@@ -894,6 +903,11 @@ declare const useOrchestratorTheme: () => {
894
903
  theme: _elastic_eui.EuiThemeComputed<{}>;
895
904
  multiplyByBaseUnit: (multiplier: number) => number;
896
905
  toSecondaryColor: (color: string) => string;
906
+ colorMode: _elastic_eui.EuiThemeColorModeStandard;
907
+ };
908
+
909
+ declare const usePolicy: () => {
910
+ isAllowed: (resource?: string | undefined) => boolean;
897
911
  };
898
912
 
899
913
  declare type ProcessStatusCounts = {
@@ -949,29 +963,19 @@ declare const useStoredTableConfig: <T>(localeStorageKey: string) => () => Store
949
963
 
950
964
  declare function useWithOrchestratorTheme<T>(getStylesFunction: (theme: EuiThemeComputed) => T): T;
951
965
 
952
- declare type SessionWithToken = Session & {
966
+ declare type WfoSession = Session & {
953
967
  accessToken?: string;
968
+ profile?: WfoUserProfile;
954
969
  };
955
- declare const useSessionWithToken: () => {
956
- session: SessionWithToken;
957
- update: (data?: any) => Promise<Session | null>;
958
- data: Session;
959
- status: "authenticated";
960
- } | {
961
- session: SessionWithToken;
962
- update: (data?: any) => Promise<Session | null>;
963
- data: null;
964
- status: "unauthenticated" | "loading";
965
- } | {
966
- session: SessionWithToken;
967
- update: (data?: any) => Promise<Session | null>;
968
- data: Session;
969
- status: "authenticated";
970
- } | {
971
- session: SessionWithToken;
972
- update: (data?: any) => Promise<Session | null>;
973
- data: null;
974
- status: "loading";
970
+ declare type WfoUserProfile = {
971
+ sub: string;
972
+ name: string;
973
+ preferred_username: string;
974
+ email: string;
975
+ [key: string]: unknown;
976
+ };
977
+ declare const useWfoSession: <R extends boolean>(options?: UseSessionOptions<R> | undefined) => Omit<next_auth_react.SessionContextValue<R>, "data"> & {
978
+ session: WfoSession | null;
975
979
  };
976
980
 
977
981
  declare const useQueryWithFetch: <T, V extends Variables$1>(url: string, queryVars: V, queryKey: string) => react_query.UseQueryResult<T, unknown>;
@@ -1350,6 +1354,15 @@ declare type AutoFieldsProps = {
1350
1354
  omitFields?: string[];
1351
1355
  };
1352
1356
 
1357
+ interface ApiContext {
1358
+ apiClient: ApiClient;
1359
+ }
1360
+ declare const ApiClientContext: React__default.Context<ApiContext>;
1361
+ declare type ApiClientContextProviderProps = {
1362
+ children: ReactNode;
1363
+ };
1364
+ declare const ApiClientContextProvider: ({ children, }: ApiClientContextProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
1365
+
1353
1366
  interface ConfirmDialogActions {
1354
1367
  showConfirmDialog: ShowConfirmDialogType;
1355
1368
  closeConfirmDialog: (e: React__default.KeyboardEvent<HTMLDivElement> | React__default.MouseEvent<HTMLButtonElement, MouseEvent> | React__default.MouseEvent<HTMLDivElement, MouseEvent> | undefined, confirm?: boolean) => void;
@@ -1373,6 +1386,16 @@ declare type OrchestratorConfigProviderProps = {
1373
1386
  };
1374
1387
  declare const OrchestratorConfigProvider: FC<OrchestratorConfigProviderProps>;
1375
1388
 
1389
+ declare type Policy = {
1390
+ isAllowedHandler: (routerPath: string, resource?: string) => boolean;
1391
+ };
1392
+ declare const PolicyContext: React__default.Context<Policy>;
1393
+ declare type PolicyProviderProps = {
1394
+ isAllowedHandler: (routerPath: string, resource?: string) => boolean;
1395
+ children: ReactNode;
1396
+ };
1397
+ declare const PolicyContextProvider: FC<PolicyProviderProps>;
1398
+
1376
1399
  declare type TreeContextType = {
1377
1400
  setDepths: (depths: number[]) => void;
1378
1401
  selectedIds: number[];
@@ -1392,15 +1415,6 @@ declare type TreeProviderProps = {
1392
1415
  };
1393
1416
  declare const TreeProvider: React.FC<TreeProviderProps>;
1394
1417
 
1395
- interface ApiContext {
1396
- apiClient: ApiClient;
1397
- }
1398
- declare const ApiClientContext: React__default.Context<ApiContext>;
1399
- declare type ApiClientContextProviderProps = {
1400
- children: ReactNode;
1401
- };
1402
- declare const ApiClientContextProvider: ({ children, }: ApiClientContextProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
1403
-
1404
1418
  declare module 'uniforms' {
1405
1419
  interface FilterDOMProps {
1406
1420
  customPropToFilter: never;
@@ -1695,9 +1709,35 @@ declare type WfoDateTimeProps = {
1695
1709
  declare const WfoDateTime: FC<WfoDateTimeProps>;
1696
1710
 
1697
1711
  interface AuthProps {
1698
- children: JSX.Element;
1699
- }
1700
- declare const WfoAuth: ({ children }: AuthProps) => JSX.Element;
1712
+ children: ReactNode;
1713
+ isAllowedHandler?: (routerPath: string, resource?: string) => boolean;
1714
+ }
1715
+ /**
1716
+ * The WfoAuth component exposes a function isAllowedHandler to apply policy checks.
1717
+ * In components in this library a usePolicy hook is available that exposes a function isAllowed
1718
+ * with 1 optional parameter "resource".
1719
+ *
1720
+ * For convenience there is also a WfoIsAllowedToRender component available. In both hook
1721
+ * and component the current route is determined in the usePolicy hook and passed as
1722
+ * first parameter in the isAllowedHandler function in this WfoAuth component.
1723
+ *
1724
+ * Example for usage in any component:
1725
+ * const { isAllowed } = usePolicy();
1726
+ * const isAllowedToDoOrSeeSomething: boolean = isAllowed('something')
1727
+ *
1728
+ * Example for implementing the isAllowed function:
1729
+ * const isAllowed = (routerPath: string, resource?: string) => {
1730
+ * // Your own rules to determine if something is allowed or not
1731
+ * // The useWfoSession hook can be used to get the current user profile
1732
+ * }
1733
+ */
1734
+ declare const WfoAuth: ({ children, isAllowedHandler, }: AuthProps) => _emotion_react_jsx_runtime.JSX.Element;
1735
+
1736
+ declare type WfoIsAllowedToRenderProps = {
1737
+ resource?: string;
1738
+ children: ReactNode;
1739
+ };
1740
+ declare const WfoIsAllowedToRender: FC<WfoIsAllowedToRenderProps>;
1701
1741
 
1702
1742
  interface WfoDropdownButtonProps {
1703
1743
  label: string;
@@ -2017,6 +2057,10 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2017
2057
  title: string;
2018
2058
  welcome: string;
2019
2059
  workflows: string;
2060
+ darkMode: string;
2061
+ lightMode: string;
2062
+ websocketConnected: string;
2063
+ websocketDisconnected: string;
2020
2064
  };
2021
2065
  common: {
2022
2066
  product: string;
@@ -2031,6 +2075,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2031
2075
  search: string;
2032
2076
  errorMessage: string;
2033
2077
  export: string;
2078
+ insyncTrue: string;
2079
+ insyncFalse: string;
2034
2080
  };
2035
2081
  confirmationDialog: {
2036
2082
  title: string;
@@ -2438,6 +2484,10 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2438
2484
  title: string;
2439
2485
  welcome: string;
2440
2486
  workflows: string;
2487
+ darkMode: string;
2488
+ lightMode: string;
2489
+ websocketConnected: string;
2490
+ websocketDisconnected: string;
2441
2491
  };
2442
2492
  common: {
2443
2493
  product: string;
@@ -2452,6 +2502,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2452
2502
  search: string;
2453
2503
  errorMessage: string;
2454
2504
  export: string;
2505
+ insyncTrue: string;
2506
+ insyncFalse: string;
2455
2507
  };
2456
2508
  confirmationDialog: {
2457
2509
  title: string;
@@ -2819,6 +2871,10 @@ declare enum BaseQueryTypes {
2819
2871
  graphql = "graphql",
2820
2872
  custom = "custom"
2821
2873
  }
2874
+ declare enum CacheTags {
2875
+ engineStatus = "engineStatus",
2876
+ testStatus = "testStatus"
2877
+ }
2822
2878
  declare type ExtraOptions = {
2823
2879
  baseQueryType?: BaseQueryTypes;
2824
2880
  };
@@ -2834,7 +2890,7 @@ declare const orchestratorApi: _reduxjs_toolkit_query_react.Api<(args: any, api:
2834
2890
  error?: undefined;
2835
2891
  data: unknown;
2836
2892
  meta?: {} | undefined;
2837
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, {}, "orchestratorApi", "engineStatus", typeof _reduxjs_toolkit_query_react.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
2893
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, {}, "orchestratorApi", CacheTags, typeof _reduxjs_toolkit_query_react.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
2838
2894
 
2839
2895
  declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2840
2896
  baseQueryType?: BaseQueryTypes | undefined;
@@ -2850,7 +2906,7 @@ declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks
2850
2906
  error?: undefined;
2851
2907
  data: unknown;
2852
2908
  meta?: {} | undefined;
2853
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, "engineStatus", Customer[], "orchestratorApi">>;
2909
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, Customer[], "orchestratorApi">>;
2854
2910
 
2855
2911
  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";
2856
2912
  declare type ProcessListResponse = {
@@ -2870,7 +2926,7 @@ declare const useGetProcessListQuery: _reduxjs_toolkit_dist_query_react_buildHoo
2870
2926
  error?: undefined;
2871
2927
  data: unknown;
2872
2928
  meta?: {} | undefined;
2873
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, "engineStatus", ProcessListResponse, "orchestratorApi">>;
2929
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProcessListResponse, "orchestratorApi">>;
2874
2930
 
2875
2931
  interface EngineStatusReturnValue {
2876
2932
  engineStatus: EngineStatus;
@@ -2890,7 +2946,7 @@ declare const useGetEngineStatusQuery: _reduxjs_toolkit_dist_query_react_buildHo
2890
2946
  error?: undefined;
2891
2947
  data: unknown;
2892
2948
  meta?: {} | undefined;
2893
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, "engineStatus", EngineStatusReturnValue, "orchestratorApi">>;
2949
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
2894
2950
  declare const useClearCacheMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2895
2951
  baseQueryType?: BaseQueryTypes | undefined;
2896
2952
  }) => {
@@ -2905,7 +2961,7 @@ declare const useClearCacheMutation: _reduxjs_toolkit_dist_query_react_buildHook
2905
2961
  error?: undefined;
2906
2962
  data: unknown;
2907
2963
  meta?: {} | undefined;
2908
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, "engineStatus", void, "orchestratorApi">>;
2964
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
2909
2965
  declare const useSetEngineStatusMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<boolean, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2910
2966
  baseQueryType?: BaseQueryTypes | undefined;
2911
2967
  }) => {
@@ -2920,7 +2976,23 @@ declare const useSetEngineStatusMutation: _reduxjs_toolkit_dist_query_react_buil
2920
2976
  error?: undefined;
2921
2977
  data: unknown;
2922
2978
  meta?: {} | undefined;
2923
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, "engineStatus", EngineStatusReturnValue, "orchestratorApi">>;
2979
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
2980
+
2981
+ declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2982
+ baseQueryType?: BaseQueryTypes | undefined;
2983
+ }) => {
2984
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2985
+ data?: undefined;
2986
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2987
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2988
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2989
+ data?: undefined;
2990
+ meta?: {} | undefined;
2991
+ } | {
2992
+ error?: undefined;
2993
+ data: unknown;
2994
+ meta?: {} | undefined;
2995
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
2924
2996
 
2925
2997
  declare type ToastState = {
2926
2998
  messages: Toast[];
@@ -2951,4 +3023,4 @@ declare type StoreProviderProps = {
2951
3023
  };
2952
3024
  declare const StoreProvider: ({ initialOrchestratorConfig, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
2953
3025
 
2954
- 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, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, 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 Field, type FieldValue, type FilterQuery, type FixedInputDefinition, GET_PROCESS_DETAIL_GRAPHQL_QUERY, 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, 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, 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 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 SessionWithToken, 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, 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, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, 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, 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, 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, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCurrentBrowserLocale, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, 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, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, processListQuery, removeSuffix, removeToastMessage, setTableConfigToLocalStorage, stop, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetTranslationMessages, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, useProcessStatusCountsQuery, useQueryWithFetch, useQueryWithGraphql, useQueryWithGraphqlLazy, useRawProcessDetails, useSessionWithToken, useSetEngineStatusMutation, useShowToastMessage, useStoredTableConfig, useSubscriptionActions, useWithOrchestratorTheme, utcTimestampToLocalMoment };
3026
+ 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 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 Field, type FieldValue, type FilterQuery, type FixedInputDefinition, GET_PROCESS_DETAIL_GRAPHQL_QUERY, 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, 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, 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, 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, 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, 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, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, 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, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCurrentBrowserLocale, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, 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, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, processListQuery, removeSuffix, removeToastMessage, setTableConfigToLocalStorage, stop, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetTranslationMessages, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useQueryWithGraphql, useQueryWithGraphqlLazy, useRawProcessDetails, useSetEngineStatusMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment };