@orchestrator-ui/orchestrator-ui-components 1.38.1 → 2.0.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 (97) hide show
  1. package/.turbo/turbo-build.log +7 -7
  2. package/.turbo/turbo-lint.log +5 -2
  3. package/.turbo/turbo-test.log +11 -11
  4. package/CHANGELOG.md +25 -0
  5. package/dist/index.d.ts +252 -170
  6. package/dist/index.js +4355 -3498
  7. package/package.json +1 -1
  8. package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +6 -5
  9. package/src/components/WfoPageTemplate/WfoPageHeader/WfoPageHeader.tsx +3 -1
  10. package/src/components/WfoPageTemplate/WfoSidebar/WfoCopyright.tsx +1 -1
  11. package/src/components/WfoProcessList/WfoProcessesList.tsx +52 -51
  12. package/src/components/WfoRadioDropdown/WfoRadioDropdown.tsx +88 -0
  13. package/src/components/WfoRadioDropdown/index.ts +1 -0
  14. package/src/components/WfoStartButton/WfoStartButtonComboBox.tsx +4 -0
  15. package/src/components/WfoStartButton/WfoStartTaskComboBox.tsx +1 -0
  16. package/src/components/WfoStartButton/WfoStartWorkflowComboBox.tsx +1 -0
  17. package/src/components/WfoStartButton/styles.ts +0 -4
  18. package/src/components/WfoSubscription/WfoInSyncField.tsx +13 -9
  19. package/src/components/WfoSubscription/WfoInUseByRelations.tsx +4 -2
  20. package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +76 -29
  21. package/src/components/WfoSubscription/WfoRelatedSubscriptions.tsx +50 -56
  22. package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +17 -9
  23. package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +29 -160
  24. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +113 -0
  25. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionFixedInputSection.tsx +28 -0
  26. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionMetadataSection.tsx +29 -0
  27. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionProductInfoSection.tsx +55 -0
  28. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/index.ts +4 -0
  29. package/src/components/WfoSubscription/index.ts +3 -0
  30. package/src/components/WfoSubscription/overrides/index.ts +1 -0
  31. package/src/components/WfoSubscription/styles.ts +4 -1
  32. package/src/components/WfoSubscription/utils/utils.spec.ts +0 -13
  33. package/src/components/WfoSubscription/utils/utils.ts +18 -5
  34. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +105 -100
  35. package/src/components/WfoTable/{WfoTableWithFilter/WfoTableWithFilter.tsx → WfoAdvancedTable/WfoAdvancedTable.tsx} +65 -123
  36. package/src/components/WfoTable/WfoAdvancedTable/getRowDetailData.tsx +55 -0
  37. package/src/components/WfoTable/WfoAdvancedTable/index.ts +4 -0
  38. package/src/components/WfoTable/WfoAdvancedTable/toSortedTableColumnConfig.ts +12 -0
  39. package/src/components/WfoTable/WfoAdvancedTable/types.ts +23 -0
  40. package/src/components/WfoTable/WfoStatusColorField/WfoStatusColorField.tsx +16 -0
  41. package/src/components/WfoTable/WfoStatusColorField/index.ts +1 -0
  42. package/src/components/WfoTable/WfoStatusColorField/styles.ts +20 -0
  43. package/src/components/WfoTable/WfoTable/WfoExpandedRow.tsx +33 -0
  44. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoExpandableRow.tsx +48 -0
  45. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoExpandedGroupRow.tsx +71 -0
  46. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoGroupedTable.tsx +100 -0
  47. package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoGroupedTableGroups.tsx +74 -0
  48. package/src/components/WfoTable/WfoTable/WfoGroupedTable/styles.ts +39 -0
  49. package/src/components/WfoTable/WfoTable/WfoGroupedTable/useGroupedTableConfig.tsx +184 -0
  50. package/src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts +133 -0
  51. package/src/components/WfoTable/WfoTable/WfoGroupedTable/utils.ts +41 -0
  52. package/src/components/WfoTable/WfoTable/WfoMultilineCell.tsx +13 -0
  53. package/src/components/WfoTable/WfoTable/WfoTable.tsx +201 -0
  54. package/src/components/WfoTable/WfoTable/WfoTableDataRows.tsx +112 -0
  55. package/src/components/WfoTable/{WfoBasicTable → WfoTable/WfoTableHeaderCell}/WfoSortDirectionIcon.tsx +3 -3
  56. package/src/components/WfoTable/{WfoBasicTable → WfoTable/WfoTableHeaderCell}/WfoTableHeaderCell.tsx +4 -3
  57. package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/index.ts +2 -0
  58. package/src/components/WfoTable/WfoTable/WfoTableHeaderRow.tsx +114 -0
  59. package/src/components/WfoTable/WfoTable/WfoTruncateCell.tsx +23 -0
  60. package/src/components/WfoTable/WfoTable/constants.ts +1 -0
  61. package/src/components/WfoTable/WfoTable/index.ts +14 -0
  62. package/src/components/WfoTable/WfoTable/styles.ts +117 -0
  63. package/src/components/WfoTable/WfoTable/utils.spec.ts +79 -0
  64. package/src/components/WfoTable/WfoTable/utils.ts +78 -0
  65. package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +13 -12
  66. package/src/components/WfoTable/WfoTableWithFilter/index.ts +1 -1
  67. package/src/components/WfoTable/index.ts +4 -5
  68. package/src/components/WfoTable/utils/columns.ts +1 -48
  69. package/src/components/WfoTable/utils/tableUtils.ts +13 -10
  70. package/src/components/WfoTree/WfoTreeBranch.tsx +10 -1
  71. package/src/components/WfoTree/WfoTreeNode.tsx +8 -57
  72. package/src/components/WfoTree/WfoTreeNodeListItem.tsx +65 -0
  73. package/src/components/WfoTree/styles.ts +28 -4
  74. package/src/components/index.ts +1 -0
  75. package/src/configuration/policy-resources.ts +1 -0
  76. package/src/configuration/version.ts +1 -1
  77. package/src/icons/WfoXMarkSmall.tsx +29 -0
  78. package/src/messages/en-GB.json +4 -0
  79. package/src/messages/nl-NL.json +4 -0
  80. package/src/pages/metadata/WfoProductBlocksPage.tsx +42 -59
  81. package/src/pages/metadata/WfoProductsPage.tsx +41 -47
  82. package/src/pages/metadata/WfoResourceTypesPage.tsx +26 -35
  83. package/src/pages/metadata/WfoTasksPage.tsx +35 -33
  84. package/src/pages/metadata/WfoWorkflowsPage.tsx +33 -29
  85. package/src/pages/tasks/WfoTasksListPage.tsx +25 -19
  86. package/src/utils/getObjectKeys.ts +3 -0
  87. package/src/utils/index.ts +5 -3
  88. package/src/components/WfoTable/WfoBasicTable/WfoBasicTable.tsx +0 -194
  89. package/src/components/WfoTable/WfoBasicTable/WfoStatusColorField.tsx +0 -21
  90. package/src/components/WfoTable/WfoBasicTable/index.ts +0 -5
  91. package/src/components/WfoTable/WfoDataGridTable/WfoDataGridTable.stories.tsx +0 -136
  92. package/src/components/WfoTable/WfoDataGridTable/WfoDataGridTable.tsx +0 -146
  93. package/src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts +0 -113
  94. package/src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.ts +0 -81
  95. package/src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts +0 -52
  96. package/src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.ts +0 -23
  97. /package/src/components/WfoTable/{WfoBasicTable → WfoTable/WfoTableHeaderCell}/styles.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
- import React__default, { ReactNode, FC, ReactElement, Ref, HTMLAttributeAnchorTarget, ComponentType, HTMLProps, FunctionComponent, ErrorInfo } from 'react';
3
- import { EuiBadgeProps, EuiThemeComputed, EuiThemeModifications, EuiThemeColorModeStandard, EuiBasicTableColumn, EuiDataGridColumn, Pagination as Pagination$1, Criteria as Criteria$1, EuiThemeColorMode } from '@elastic/eui';
2
+ import React__default, { ReactNode, FC, CSSProperties, ReactElement, Ref, HTMLAttributeAnchorTarget, ComponentType, HTMLProps, FunctionComponent, ErrorInfo } from 'react';
3
+ import { EuiBadgeProps, EuiThemeComputed, EuiThemeModifications, EuiThemeColorModeStandard, EuiThemeColorMode } from '@elastic/eui';
4
4
  import { TextSize } from '@elastic/eui/src/components/text/text';
5
5
  import { TextColor } from '@elastic/eui/src/components/text/text_color';
6
6
  import { JSONSchema6 } from 'json-schema';
@@ -14,9 +14,8 @@ import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
14
14
  import { NextRouter } from 'next/router';
15
15
  import { EuiSideNavItemType } from '@elastic/eui/src/components/side_nav/side_nav_types';
16
16
  import { TranslationValues } from 'next-intl';
17
- import { EuiDataGridControlColumn, EuiDataGridSorting, EuiDataGridPaginationProps } from '@elastic/eui/src/components/datagrid/data_grid_types';
18
- import { Criteria } from '@elastic/eui/src/components/basic_table/basic_table';
19
- import { SerializedStyles } from '@emotion/react';
17
+ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
18
+ import { Slice, Reducer, PayloadAction, EnhancedStore, Dispatch, UnknownAction, SerializedError } from '@reduxjs/toolkit';
20
19
  import * as _emotion_utils from '@emotion/utils';
21
20
  import moment, { Moment } from 'moment-timezone';
22
21
  import * as _reduxjs_toolkit_dist_query_react_buildHooks from '@reduxjs/toolkit/dist/query/react/buildHooks';
@@ -27,8 +26,6 @@ import { IconType } from '@elastic/eui/src/components/icon';
27
26
  import * as next_auth_react from 'next-auth/react';
28
27
  import { UseSessionOptions } from 'next-auth/react';
29
28
  import { Session } from 'next-auth';
30
- import * as _reduxjs_toolkit from '@reduxjs/toolkit';
31
- import { Slice, Reducer, PayloadAction, EnhancedStore, Dispatch, UnknownAction, SerializedError } from '@reduxjs/toolkit';
32
29
  import { Toast } from '@elastic/eui/src/components/toast/global_toast_list';
33
30
  export { Toast } from '@elastic/eui/src/components/toast/global_toast_list';
34
31
  import { ClientError } from 'graphql-request';
@@ -764,35 +761,25 @@ declare const useWfoSession: <R extends boolean>(options?: UseSessionOptions<R>
764
761
 
765
762
  declare const useGetOrchestratorConfig: () => OrchestratorConfig;
766
763
 
767
- declare type WfoEuiBasicTableColumn<T extends object> = Omit<EuiBasicTableColumn<T>, 'render'>;
768
- declare type WfoTableDataColumnConfig<T extends object, Property> = WfoEuiBasicTableColumn<T> & {
769
- field: Property;
764
+ declare type TableSettingsColumnConfig<T> = {
765
+ field: keyof T;
770
766
  name: string;
771
- sortable?: boolean;
772
- filterable?: boolean;
773
- truncateText?: boolean;
774
- };
775
- declare const WFO_STATUS_COLOR_FIELD = "statusColorField";
776
- declare type WfoTableColumnsWithExtraNonDataFields<T extends object> = WfoTableColumns<T> & {
777
- [key: string]: EuiBasicTableColumn<T> & {
778
- field: string;
779
- name?: string;
780
- };
767
+ isVisible: boolean;
781
768
  };
782
- declare type WfoTableColumns<T extends object> = {
783
- [Property in keyof T]: WfoTableDataColumnConfig<T, Property> & {
784
- render?: (cellValue: T[Property], row: T) => ReactNode;
785
- renderDetails?: (cellValue: T[Property], row: T) => ReactNode;
786
- clipboardText?: (cellValue: T[Property], row: T) => string;
787
- };
769
+ declare type TableSettingsConfig<T> = {
770
+ columns: TableSettingsColumnConfig<T>[];
771
+ selectedPageSize: number;
788
772
  };
789
- declare type WfoTableControlColumnConfig<T extends object> = {
790
- [key: string]: WfoEuiBasicTableColumn<T> & {
791
- field: string;
792
- name?: string;
793
- render: (cellValue: never, row: T) => ReactNode;
794
- };
773
+ declare type TableSettingsModalProps<T> = {
774
+ tableConfig: TableSettingsConfig<T>;
775
+ pageSizeOptions: number[];
776
+ onClose: () => void;
777
+ onUpdateTableConfig: (updatedTableConfig: TableSettingsConfig<T>) => void;
778
+ onResetToDefaults: () => void;
795
779
  };
780
+ declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
781
+
782
+ declare const WFO_STATUS_COLOR_FIELD = "statusColorField";
796
783
  declare type TableColumnKeys<T> = Array<keyof T>;
797
784
  declare type WfoDataSorting<T> = {
798
785
  field: keyof T;
@@ -804,52 +791,6 @@ declare type WfoDataSearch<T> = {
804
791
  };
805
792
  declare const getSortDirectionFromString: (sortOrder?: string | undefined) => SortOrder | undefined;
806
793
 
807
- declare type WfoDataGridTableColumns<T> = {
808
- [Property in keyof T]: Omit<EuiDataGridColumn, 'id'> & {
809
- renderCell?: (cellValue: T[Property], row: T) => ReactNode;
810
- isHiddenByDefault?: boolean;
811
- };
812
- };
813
- declare type WfoControlColumn<T> = Omit<EuiDataGridControlColumn, 'rowCellRender' | 'headerCellRender' | 'footerCellRender' | 'footerCellProps' | 'headerCellProps'> & {
814
- rowCellRender: (row: T) => ReactNode;
815
- };
816
- declare const getInitialColumnOrder: <T>(columns: WfoDataGridTableColumns<T>, initialColumnOrder: TableColumnKeys<T>) => EuiDataGridColumn[];
817
- declare const mapColumnSortToEuiDataGridSorting: <T>(columnSort?: WfoDataSorting<T> | undefined, updateColumnSort?: ((columnSort: WfoDataSorting<T>) => void) | undefined) => EuiDataGridSorting;
818
-
819
- declare type Pagination = EuiDataGridPaginationProps & {
820
- totalRecords: number;
821
- };
822
- declare type WfoDataGridTableProps<T> = {
823
- data: T[];
824
- pagination: Pagination;
825
- columns: WfoDataGridTableColumns<T>;
826
- leadingControlColumns?: WfoControlColumn<T>[];
827
- trailingControlColumns?: WfoControlColumn<T>[];
828
- initialColumnOrder: TableColumnKeys<T>;
829
- dataSorting?: WfoDataSorting<T>;
830
- handleRowClick?: (row: T) => void;
831
- updateDataSorting?: (updatedDataSorting: WfoDataSorting<T>) => void;
832
- };
833
- declare const WfoDataGridTable: <T>({ data, pagination, columns, leadingControlColumns, trailingControlColumns, initialColumnOrder, dataSorting, handleRowClick, updateDataSorting, }: WfoDataGridTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
834
-
835
- declare type ColumnConfig<T> = {
836
- field: keyof T;
837
- name: string;
838
- isVisible: boolean;
839
- };
840
- declare type TableConfig<T> = {
841
- columns: ColumnConfig<T>[];
842
- selectedPageSize: number;
843
- };
844
- declare type TableSettingsModalProps<T> = {
845
- tableConfig: TableConfig<T>;
846
- pageSizeOptions: number[];
847
- onClose: () => void;
848
- onUpdateTableConfig: (updatedTableConfig: TableConfig<T>) => void;
849
- onResetToDefaults: () => void;
850
- };
851
- declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
852
-
853
794
  declare const DEFAULT_PAGE_SIZES: number[];
854
795
  declare const DEFAULT_PAGE_SIZE = 15;
855
796
  declare const PAGE_SIZES_INCLUDING_SHOW_ALL: number[];
@@ -864,8 +805,6 @@ declare const METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY = "metadataWorkflowsTab
864
805
  declare const METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY = "metadataTasksTable";
865
806
  declare const SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY = "subscriptionsTable";
866
807
 
867
- declare function mapSortableAndFilterableValuesToTableColumnConfig<T extends object>(tableColumnConfig: WfoTableColumns<T>, sortableFieldNames?: string[], filterableFieldNames?: string[]): WfoTableColumns<T>;
868
-
869
808
  declare type StoredTableConfig<T> = {
870
809
  hiddenColumns: TableColumnKeys<T>;
871
810
  selectedPageSize: number;
@@ -878,88 +817,16 @@ declare const clearTableConfigFromLocalStorage: (key: string) => void;
878
817
  declare const determinePageIndex: (pageIndex: number, pageSize: number) => number;
879
818
  declare const determineNewSortOrder: <T>(currentSortField: keyof T, currentSortOrder: SortOrder, newSortField: keyof T) => SortOrder;
880
819
  declare const getDataSortHandler: <Type>(setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type_1>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void) => ({ field, sortOrder }: WfoDataSorting<Type>) => void;
881
- declare const getPageChangeHandler: <Type>(setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type_1>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void) => (page: {
882
- index: number;
883
- size: number;
884
- } | undefined) => void;
820
+ declare const getPageSizeChangeHandler: <Type>(setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type_1>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void) => (pageSize: number) => void;
821
+ declare const getPageIndexChangeHandler: <Type>(setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type_1>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void) => (pageIndex: number) => void;
885
822
  declare const getQueryStringHandler: <Type>(setDataDisplayParam: <PropKey extends keyof DataDisplayParams<Type_1>>(prop: PropKey, value: DataDisplayParams<Type>[PropKey]) => void) => (queryString: string) => void;
886
823
 
887
- declare type WfoBasicTableColumns<T extends object> = {
888
- [Property in keyof T]: WfoTableDataColumnConfig<T, Property> & {
889
- render?: (cellValue: T[Property], row: T) => ReactNode;
890
- };
891
- };
892
- declare type WfoBasicTableColumnsWithControlColumns<T extends object> = WfoBasicTableColumns<T> & WfoTableControlColumnConfig<T>;
893
- declare type WfoBasicTableProps<T extends object> = {
894
- data: T[];
895
- columns: WfoBasicTableColumnsWithControlColumns<T> | WfoBasicTableColumns<T>;
896
- hiddenColumns?: TableColumnKeys<T>;
897
- dataSorting?: WfoDataSorting<T>;
898
- pagination?: Pagination$1;
899
- isLoading?: boolean;
900
- onCriteriaChange?: (criteria: Criteria<T>) => void;
901
- onUpdateDataSorting?: (updatedDataSorting: WfoDataSorting<T>) => void;
902
- onDataSearch?: (updatedDataSearch: WfoDataSearch<T>) => void;
903
- getStatusColorForRow?: (row: T) => string;
904
- isExpandable?: boolean;
905
- itemIdToExpandedRowMap?: Record<string, ReactNode>;
906
- itemId?: string;
907
- customTableStyle?: SerializedStyles;
908
- };
909
- declare const WfoBasicTable: <T extends object>({ data, columns, hiddenColumns, dataSorting, pagination, isLoading, onCriteriaChange, onUpdateDataSorting, onDataSearch, getStatusColorForRow, isExpandable, itemIdToExpandedRowMap, itemId, customTableStyle, }: WfoBasicTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
910
-
911
- declare type WfoSortDirectionIconProps = {
912
- sortDirection: SortOrder;
913
- };
914
- declare const WfoSortDirectionIcon: FC<WfoSortDirectionIconProps>;
915
-
916
- declare type WfoTableHeaderCellProps = {
917
- fieldName: string;
918
- sortOrder?: SortOrder;
919
- onSetSortOrder?: (updatedSortOrder: SortOrder) => void;
920
- onSearch?: (searchText: string) => void;
921
- children: string;
922
- };
923
- declare const WfoTableHeaderCell: FC<WfoTableHeaderCellProps>;
924
-
925
824
  declare type WfoStatusColorFieldProps = {
926
825
  color: string;
927
826
  };
928
827
  declare const WfoStatusColorField: ({ color }: WfoStatusColorFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
929
828
 
930
- declare const getWfoBasicTableStyles: ({ theme }: WfoTheme) => {
931
- basicTableStyle: _emotion_utils.SerializedStyles;
932
- headerCellContentStyle: _emotion_utils.SerializedStyles;
933
- headerCellPopoverHeaderStyle: _emotion_utils.SerializedStyles;
934
- headerCellPopoverHeaderTitleStyle: _emotion_utils.SerializedStyles;
935
- headerCellPopoverContentStyle: _emotion_utils.SerializedStyles;
936
- getHeaderCellButtonStyle: (isSortable: boolean) => _emotion_utils.SerializedStyles;
937
- getStatusColumnStyle: (columnNumber: number) => _emotion_utils.SerializedStyles;
938
- dropDownTableStyle: _emotion_utils.SerializedStyles;
939
- expandableTableStyle: _emotion_utils.SerializedStyles;
940
- };
941
-
942
- declare type WfoTableWithFilterProps<T extends object> = {
943
- data: T[];
944
- tableColumns: WfoTableColumns<T>;
945
- leadingControlColumns?: WfoTableControlColumnConfig<T>;
946
- trailingControlColumns?: WfoTableControlColumnConfig<T>;
947
- defaultHiddenColumns?: TableColumnKeys<T>;
948
- dataSorting: WfoDataSorting<T>;
949
- pagination: Pagination$1;
950
- queryString?: string;
951
- isLoading: boolean;
952
- localStorageKey: string;
953
- detailModal?: boolean;
954
- detailModalTitle?: string;
955
- onUpdateQueryString: (queryString: string) => void;
956
- onUpdatePage: (criterion: Criteria$1<T>['page']) => void;
957
- onUpdateDataSort: (dataSorting: WfoDataSorting<T>) => void;
958
- error?: WfoGraphqlError[];
959
- onExportData?: () => void;
960
- exportDataIsLoading?: boolean;
961
- };
962
- declare const WfoTableWithFilter: <T extends object>({ data, tableColumns, leadingControlColumns, trailingControlColumns, defaultHiddenColumns, dataSorting, pagination, queryString, isLoading, localStorageKey, detailModal, detailModalTitle, onUpdateQueryString, onUpdatePage, onUpdateDataSort, error, onExportData, exportDataIsLoading, }: WfoTableWithFilterProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
829
+ declare const updateQueryString: (queryString: string, fieldName: string, value: string) => string;
963
830
 
964
831
  declare type WfoIconProps = {
965
832
  width?: number | string;
@@ -1060,6 +927,162 @@ declare type WfoInlineJsonProps = {
1060
927
  };
1061
928
  declare const WfoInlineJson: FC<WfoInlineJsonProps>;
1062
929
 
930
+ declare type Pagination = {
931
+ pageSize: number;
932
+ pageIndex: number;
933
+ totalItemCount: number;
934
+ pageSizeOptions?: number[];
935
+ onChangeItemsPerPage?: (pageSize: number) => void;
936
+ onChangePage?: (pageIndex: number) => void;
937
+ };
938
+ declare enum ColumnType {
939
+ DATA = "data",
940
+ CONTROL = "control"
941
+ }
942
+ declare type CommonTableColumnConfigItemProps = {
943
+ numberOfColumnsToSpan?: number;
944
+ disableDefaultCellStyle?: boolean;
945
+ width?: CSSProperties['width'];
946
+ };
947
+ declare type WfoTableDataColumnConfigItem<T extends object, Property extends keyof T> = CommonTableColumnConfigItemProps & {
948
+ columnType: ColumnType.DATA;
949
+ label: string;
950
+ isSortable?: boolean;
951
+ isFilterable?: boolean;
952
+ renderData?: (cellValue: T[Property], row: T) => ReactNode;
953
+ };
954
+ declare type WfoTableControlColumnConfigItem<T extends object> = CommonTableColumnConfigItemProps & {
955
+ columnType: ColumnType.CONTROL;
956
+ label?: string;
957
+ renderControl: (row: T) => ReactNode;
958
+ };
959
+ declare type WfoTableDataColumnConfig<T extends object> = {
960
+ [Property in keyof T]: WfoTableDataColumnConfigItem<T, Property> | WfoTableControlColumnConfigItem<T>;
961
+ };
962
+ declare type WfoTableControlColumnConfig<T extends object> = {
963
+ [key: string]: WfoTableControlColumnConfigItem<T>;
964
+ };
965
+ declare type WfoTableColumnConfig<T extends object> = Partial<WfoTableDataColumnConfig<T> | WfoTableControlColumnConfig<T>>;
966
+ declare type WfoTableProps<T extends object> = {
967
+ data: T[];
968
+ columnConfig: WfoTableColumnConfig<T>;
969
+ hiddenColumns?: TableColumnKeys<T>;
970
+ columnOrder?: TableColumnKeys<T>;
971
+ isLoading?: boolean;
972
+ dataSorting?: WfoDataSorting<T>[];
973
+ rowExpandingConfiguration?: {
974
+ uniqueRowId: keyof WfoTableColumnConfig<T>;
975
+ uniqueRowIdToExpandedRowMap: Record<string, ReactNode>;
976
+ };
977
+ pagination?: Pagination;
978
+ overrideHeader?: (tableHeaderEntries: Array<[
979
+ string,
980
+ (WfoTableControlColumnConfigItem<T> | WfoTableDataColumnConfigItem<T, keyof T>)
981
+ ]>) => ReactNode;
982
+ onRowClick?: (row: T) => void;
983
+ onUpdateDataSorting?: (updatedDataSorting: WfoDataSorting<T>) => void;
984
+ onUpdateDataSearch?: (updatedDataSearch: WfoDataSearch<T>) => void;
985
+ className?: string;
986
+ };
987
+ declare const WfoTable: <T extends object>({ data, columnConfig, hiddenColumns, columnOrder, isLoading, dataSorting, rowExpandingConfiguration, pagination, overrideHeader, onUpdateDataSorting, onUpdateDataSearch, onRowClick, className, }: WfoTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
988
+
989
+ declare const TABLE_ROW_HEIGHT = "40px";
990
+
991
+ declare const getWfoTableStyles: ({ theme }: WfoTheme) => {
992
+ tableContainerStyle: _emotion_utils.SerializedStyles;
993
+ tableStyle: _emotion_utils.SerializedStyles;
994
+ headerStyle: _emotion_utils.SerializedStyles;
995
+ bodyLoadingStyle: _emotion_utils.SerializedStyles;
996
+ rowStyle: _emotion_utils.SerializedStyles;
997
+ dataRowStyle: _emotion_utils.SerializedStyles;
998
+ expandedRowStyle: _emotion_utils.SerializedStyles;
999
+ cellStyle: _emotion_utils.SerializedStyles;
1000
+ emptyTableMessageStyle: _emotion_utils.SerializedStyles;
1001
+ clickableStyle: _emotion_utils.SerializedStyles;
1002
+ setWidth: (width?: CSSProperties['width']) => false | _emotion_utils.SerializedStyles;
1003
+ };
1004
+
1005
+ declare type GroupType = {
1006
+ groupName: string;
1007
+ };
1008
+ declare type GroupedData<T> = {
1009
+ [Key: string]: T[] | GroupedData<T>;
1010
+ };
1011
+ declare type WfoGroupedTableProps<T extends object> = Pick<WfoTableProps<T>, 'columnConfig' | 'isLoading' | 'className'> & {
1012
+ data: GroupedData<T>;
1013
+ groupNameLabel: string;
1014
+ };
1015
+ declare const WfoGroupedTable: <T extends object>({ data, columnConfig, groupNameLabel, isLoading, className, }: WfoGroupedTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1016
+
1017
+ declare const groupData: <T>(data: T[], groupByFunctions: ((data: T) => string)[]) => GroupedData<T>;
1018
+ declare const getTotalNumberOfRows: <T>(groupedData: GroupedData<T>) => number;
1019
+
1020
+ declare const getWfoGroupedTableStyles: ({ theme }: WfoTheme) => {
1021
+ innerTableHeaderStyle: _emotion_utils.SerializedStyles;
1022
+ expandableRowContainerStyle: _emotion_utils.SerializedStyles;
1023
+ expandableRowTextStyle: _emotion_utils.SerializedStyles;
1024
+ getNestingStyle: (nestingLevel: number) => _emotion_utils.SerializedStyles;
1025
+ };
1026
+
1027
+ declare type WfoMultilineCellProps = {
1028
+ children?: ReactElement | string | null;
1029
+ };
1030
+ declare const WfoMultilineCell: FC<WfoMultilineCellProps>;
1031
+
1032
+ declare type WfoSortDirectionIconProps = {
1033
+ sortDirection: SortOrder;
1034
+ };
1035
+ declare const WfoSortDirectionIcon: FC<WfoSortDirectionIconProps>;
1036
+
1037
+ declare type WfoTableHeaderCellProps = {
1038
+ fieldName: string;
1039
+ sortOrder?: SortOrder;
1040
+ onSetSortOrder?: (updatedSortOrder: SortOrder) => void;
1041
+ onSearch?: (searchText: string) => void;
1042
+ children: string;
1043
+ };
1044
+ declare const WfoTableHeaderCell: FC<WfoTableHeaderCellProps>;
1045
+
1046
+ declare type WfoTruncateCellProps = {
1047
+ children?: ReactElement | string | null;
1048
+ };
1049
+ declare const WfoTruncateCell: FC<WfoTruncateCellProps>;
1050
+
1051
+ declare type WfoAdvancedTableDataColumnConfigItem<T extends object, Property extends keyof T> = WfoTableDataColumnConfigItem<T, Property> & {
1052
+ renderDetails?: (cellValue: T[Property], row: T) => ReactNode;
1053
+ clipboardText?: (cellValue: T[Property], row: T) => string;
1054
+ };
1055
+ declare type WfoAdvancedTableDataColumnConfig<T extends object> = {
1056
+ [Property in keyof T]: WfoAdvancedTableDataColumnConfigItem<T, Property> | WfoTableControlColumnConfigItem<T>;
1057
+ };
1058
+ declare type WfoAdvancedTableColumnConfig<T extends object> = Partial<WfoTableControlColumnConfig<T> | WfoAdvancedTableDataColumnConfig<T>>;
1059
+
1060
+ declare const getRowDetailData: <T extends object>(selectedDataForDetailModal: T, tableColumnConfig: WfoAdvancedTableColumnConfig<T>) => ({
1061
+ key: string;
1062
+ value: undefined;
1063
+ textToCopy?: undefined;
1064
+ } | {
1065
+ key: string;
1066
+ value: string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<React__default.AwaitedReactNode> | _emotion_react_jsx_runtime.JSX.Element;
1067
+ textToCopy: string | undefined;
1068
+ })[];
1069
+
1070
+ declare const toSortedTableColumnConfig: <T extends object>(columnConfig: WfoAdvancedTableColumnConfig<T>, columnKeys: ((string | number) & keyof T)[]) => WfoAdvancedTableColumnConfig<T>;
1071
+
1072
+ declare type WfoAdvancedTableProps<T extends object> = Omit<WfoTableProps<T>, 'columnConfig'> & {
1073
+ tableColumnConfig: WfoAdvancedTableColumnConfig<T>;
1074
+ defaultHiddenColumns?: TableColumnKeys<T>;
1075
+ queryString?: string;
1076
+ localStorageKey: string;
1077
+ detailModal?: boolean;
1078
+ detailModalTitle?: string;
1079
+ exportDataIsLoading?: boolean;
1080
+ error?: WfoGraphqlError[];
1081
+ onUpdateQueryString: (queryString: string) => void;
1082
+ onExportData?: () => void;
1083
+ };
1084
+ declare const WfoAdvancedTable: <T extends object>({ tableColumnConfig, defaultHiddenColumns, queryString, localStorageKey, detailModal, detailModalTitle, exportDataIsLoading, error, onUpdateQueryString, onExportData, ...tableProps }: WfoAdvancedTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1085
+
1063
1086
  declare type WfoSubscriptionsListProps = {
1064
1087
  alwaysOnFilters?: FilterQuery<SubscriptionListItem>[];
1065
1088
  dataDisplayParams: DataDisplayParams<SubscriptionListItem>;
@@ -1870,7 +1893,8 @@ declare enum PolicyResource {
1870
1893
  SUBSCRIPTION_VALIDATE = "/orchestrator/subscriptions/validate/",
1871
1894
  TASKS_CREATE = "/orchestrator/processes/create/task",
1872
1895
  TASKS_RETRY_ALL = "/orchestrator/processes/all-tasks/retry",
1873
- SETTINGS_FLUSH_CACHE = "/orchestrator/settings/flush-cache"
1896
+ SETTINGS_FLUSH_CACHE = "/orchestrator/settings/flush-cache",
1897
+ SET_IN_SYNC = "/orchestrator/subscriptions/set-in-sync"
1874
1898
  }
1875
1899
 
1876
1900
  declare const urlPolicyMap: Map<string, PolicyResource>;
@@ -1951,11 +1975,37 @@ declare const getWorkflowTargetColor: (workflowTarget: WorkflowTarget, theme: Eu
1951
1975
  declare const getWorkflowTargetIconContent: (workflowTarget: WorkflowTarget) => "C" | "T" | "X" | "M";
1952
1976
  declare const getLastUncompletedProcess: (processes: SubscriptionDetailProcess[]) => SubscriptionDetailProcess | undefined;
1953
1977
  declare const getLatestTaskDate: (processes: SubscriptionDetailProcess[]) => string;
1978
+ declare const sortProcessesByDate: (processList: SubscriptionDetailProcess[], sortOrder: SortOrder) => SubscriptionDetailProcess[];
1954
1979
 
1955
1980
  declare const useSubscriptionDetailValueOverride: () => {
1956
1981
  getOverriddenValue: (fieldValue: FieldValue) => React__default.ReactNode | null;
1957
1982
  };
1958
1983
 
1984
+ declare const useSubscriptionDetailGeneralSectionConfigurationOverride: () => {
1985
+ overrideSections: ((defaultSections: WfoSubscriptionDetailGeneralConfiguration[], subscriptionDetail: SubscriptionDetail) => WfoSubscriptionDetailGeneralConfiguration[]) | undefined;
1986
+ };
1987
+
1988
+ interface WfoSubscriptionDetailSectionProps {
1989
+ isFetching: boolean;
1990
+ subscriptionDetail: SubscriptionDetail;
1991
+ }
1992
+ declare const WfoSubscriptionDetailSection: ({ isFetching, subscriptionDetail, }: WfoSubscriptionDetailSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
1993
+
1994
+ interface WfoSubscriptionFixedInputSectionProps {
1995
+ fixedInputs: SubscriptionDetail['fixedInputs'];
1996
+ }
1997
+ declare const WfoSubscriptionFixedInputSection: ({ fixedInputs, }: WfoSubscriptionFixedInputSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
1998
+
1999
+ interface WfoSubscriptionMetadataSectionProps {
2000
+ metadata: SubscriptionDetail['metadata'];
2001
+ }
2002
+ declare const WfoSubscriptionMetadataSection: ({ metadata, }: WfoSubscriptionMetadataSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
2003
+
2004
+ interface WfoSubscriptionProductInfoSectionProps {
2005
+ product: SubscriptionDetail['product'];
2006
+ }
2007
+ declare const WfoSubscriptionProductInfoSection: ({ product, }: WfoSubscriptionProductInfoSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
2008
+
1959
2009
  interface SubscriptionKeyValueBlockProps {
1960
2010
  title: string;
1961
2011
  keyValues: WfoKeyValueTableDataType[];
@@ -2011,8 +2061,19 @@ interface WfoSubscriptionGeneralProps {
2011
2061
  subscriptionDetail: SubscriptionDetail;
2012
2062
  isFetching: boolean;
2013
2063
  }
2064
+ declare enum WfoSubscriptionGeneralSections {
2065
+ BLOCK_TITLE_SUBSCRIPTION_DETAILS = "blockTitleSubscriptionDetails",
2066
+ BLOCK_TITLE_METADATA = "metadata",
2067
+ BLOCK_TITLE_FIXED_INPUTS = "blockTitleFixedInputs",
2068
+ BLOCK_TITLE_PRODUCT_INFO = "blockTitleProductInfo"
2069
+ }
2014
2070
  declare const WfoSubscriptionGeneral: ({ subscriptionDetail, isFetching, }: WfoSubscriptionGeneralProps) => _emotion_react_jsx_runtime.JSX.Element;
2015
2071
 
2072
+ declare type WfoCustomerDescriptionsFieldProps = {
2073
+ customerDescriptions: CustomerDescriptions[];
2074
+ };
2075
+ declare const WfoCustomerDescriptionsField: FC<WfoCustomerDescriptionsFieldProps>;
2076
+
2016
2077
  declare enum TimelinePosition {
2017
2078
  PAST = "past",
2018
2079
  CURRENT = "current",
@@ -2554,9 +2615,9 @@ declare type WfoProcessesListProps = {
2554
2615
  localStorageKey: string;
2555
2616
  dataDisplayParams: DataDisplayParams<ProcessListItem>;
2556
2617
  setDataDisplayParam: <DisplayParamKey extends keyof DataDisplayParams<ProcessListItem>>(prop: DisplayParamKey, value: DataDisplayParams<ProcessListItem>[DisplayParamKey]) => void;
2557
- overrideDefaultTableColumns?: (defaultTableColumns: WfoTableColumns<ProcessListItem>) => WfoTableColumns<ProcessListItem>;
2618
+ overrideDefaultTableColumns?: (defaultTableColumns: WfoAdvancedTableColumnConfig<ProcessListItem>) => WfoAdvancedTableColumnConfig<ProcessListItem>;
2558
2619
  };
2559
- declare const WfoProcessesList: ({ alwaysOnFilters, defaultHiddenColumns, localStorageKey, dataDisplayParams, setDataDisplayParam, overrideDefaultTableColumns, }: WfoProcessesListProps) => _emotion_react_jsx_runtime.JSX.Element;
2620
+ declare const WfoProcessesList: ({ alwaysOnFilters, defaultHiddenColumns, localStorageKey, dataDisplayParams, overrideDefaultTableColumns, setDataDisplayParam, }: WfoProcessesListProps) => _emotion_react_jsx_runtime.JSX.Element;
2560
2621
 
2561
2622
  interface WfoTextAnchorProps {
2562
2623
  text: string;
@@ -2771,6 +2832,18 @@ interface WfoTitleWithWebsocketBadgeProps {
2771
2832
  }
2772
2833
  declare const WfoTitleWithWebsocketBadge: ({ title, }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
2773
2834
 
2835
+ interface WfoRadioDropdownProps<T> {
2836
+ options: WfoRadioDropdownOption<T>[];
2837
+ selectedOption: WfoRadioDropdownOption<T>;
2838
+ onUpdateOption: (value: WfoRadioDropdownOption<T>) => void;
2839
+ }
2840
+ declare type WfoRadioDropdownOption<T> = {
2841
+ label: string;
2842
+ id: string;
2843
+ value: T;
2844
+ };
2845
+ declare const WfoRadioDropdown: <T>({ options, onUpdateOption, selectedOption, }: WfoRadioDropdownProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
2846
+
2774
2847
  declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
2775
2848
  declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
2776
2849
  declare const PROCESSES_ENDPOINT = "processes";
@@ -2790,7 +2863,7 @@ declare const IPAM_IP_BLOCKS_ENDPOINT: string;
2790
2863
  declare const IPAM_FREE_SUBNETS_ENDPOINT: string;
2791
2864
  declare const SUBSCRIPTION_ACTIONS_ENDPOINT = "subscriptions/workflows";
2792
2865
 
2793
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "1.38.1";
2866
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.0.0";
2794
2867
 
2795
2868
  declare const useGetTranslationMessages: (locale: string | undefined) => {
2796
2869
  pydanticForms: {
@@ -3218,6 +3291,10 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
3218
3291
  title: string;
3219
3292
  text: string;
3220
3293
  };
3294
+ workflowsTab: {
3295
+ startWithOldestLabel: string;
3296
+ startWithNewestLabel: string;
3297
+ };
3221
3298
  };
3222
3299
  };
3223
3300
  tasks: {
@@ -3706,6 +3783,10 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
3706
3783
  title: string;
3707
3784
  text: string;
3708
3785
  };
3786
+ workflowsTab: {
3787
+ startWithOldestLabel: string;
3788
+ startWithNewestLabel: string;
3789
+ };
3709
3790
  };
3710
3791
  };
3711
3792
  tasks: {
@@ -3773,10 +3854,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
3773
3854
 
3774
3855
  declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
3775
3856
 
3776
- declare const RESOURCE_TYPE_FIELD_ID: keyof ResourceTypeDefinition;
3777
3857
  declare const RESOURCE_TYPE_FIELD_TYPE: keyof ResourceTypeDefinition;
3778
- declare const RESOURCE_TYPE_FIELD_DESCRIPTION: keyof ResourceTypeDefinition;
3779
- declare const RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS: keyof ResourceTypeDefinition;
3780
3858
  declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element;
3781
3859
 
3782
3860
  declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
@@ -3897,8 +3975,14 @@ declare const getDate: (date: Date | string | null) => Date | null;
3897
3975
 
3898
3976
  declare const getNumberValueFromEnvironmentVariable: (environmentVariable: string | undefined, defaultValue: number) => number;
3899
3977
 
3978
+ declare const filterDataByCriteria: <Type>(data: Type[], filterCriteria: GraphqlFilter<Type>[]) => Type[];
3979
+
3980
+ declare const getDefaultTableConfig: <T>(storageKey: string) => StoredTableConfig<T>;
3981
+
3900
3982
  declare function getEnvironmentVariables<T>(envVars: (keyof T)[]): Record<keyof T, string>;
3901
3983
 
3984
+ declare const getObjectKeys: <T extends object>(inputObject: T) => (keyof T)[];
3985
+
3902
3986
  declare const getProductNamesFromProcess: (process: ProcessDetail | undefined | Omit<ProcessDetail, 'status'>) => string;
3903
3987
 
3904
3988
  declare const getQueryVariablesForExport: <T extends object>(queryVariables: GraphqlQueryVariables<T>) => {
@@ -3915,8 +3999,8 @@ declare function getTypedFieldFromObject<T extends object>(field: string | undef
3915
3999
 
3916
4000
  declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
3917
4001
 
3918
- declare const getFirstUuidPart: (uuid: string) => string;
3919
- declare const isUuid4: (value: string) => boolean;
4002
+ declare const toOptionalArrayEntry: <T>(data: T, condition: boolean) => [] | [T];
4003
+ declare const optionalArrayMapper: <T, U>(data: T[] | undefined, mapper: (input: T) => U) => U[];
3920
4004
 
3921
4005
  declare const getConcatenatedPagedResult: <T>(pagedResult: GraphQlSinglePage<T>, fields: (keyof T)[]) => string;
3922
4006
  declare const getConcatenatedResult: <T>(results: T[], fields: (keyof T)[]) => string;
@@ -3928,11 +4012,9 @@ declare const snakeToHuman: (value: string) => string;
3928
4012
  declare const snakeToKebab: (value: string) => string;
3929
4013
  declare const isAllUpperCase: (str: string) => boolean;
3930
4014
 
3931
- declare const toOptionalArrayEntry: <T>(data: T, condition: boolean) => [] | [T];
3932
- declare const optionalArrayMapper: <T, U>(data: T[] | undefined, mapper: (input: T) => U) => U[];
3933
-
3934
- declare const filterDataByCriteria: <Type>(data: Type[], filterCriteria: GraphqlFilter<Type>[]) => Type[];
3935
-
3936
4015
  declare const toObjectWithSortedKeys: <T extends object>(inputObject: T, keyOrder: string[]) => T;
3937
4016
 
3938
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, type ColumnConfig, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, WfoErrorWithMessage, type WfoEuiBasicTableColumn, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoRefresh, WfoRelatedSubscriptions, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionListTab, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoTrash, type WfoTreeNodeMap, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapRtkErrorToWfoError, mapSortableAndFilterableValuesToTableColumnConfig, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSortedKeys, toOptionalArrayEntry, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailValueOverride, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, workflowFieldMapper, workflowsQuery };
4017
+ declare const getFirstUuidPart: (uuid: string) => string;
4018
+ declare const isUuid4: (value: string) => boolean;
4019
+
4020
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, WfoErrorWithMessage, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, 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, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageIndexChangeHandler, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSortedKeys, toOptionalArrayEntry, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, workflowFieldMapper, workflowsQuery };