@orchestrator-ui/orchestrator-ui-components 1.38.2 → 2.1.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.
- package/.turbo/turbo-build.log +11 -9
- package/.turbo/turbo-lint.log +5 -2
- package/.turbo/turbo-test.log +14 -14
- package/CHANGELOG.md +30 -0
- package/dist/index.d.ts +329 -172
- package/dist/index.js +6152 -5545
- package/dist/index.js.map +1 -0
- package/package.json +2 -2
- package/src/components/WfoContentHeader/WfoContentHeader.tsx +55 -0
- package/src/components/WfoContentHeader/index.ts +1 -0
- package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +6 -5
- package/src/components/WfoInlineNoteEdit/WfoInlineNoteEdit.tsx +105 -0
- package/src/components/WfoInlineNoteEdit/index.ts +1 -0
- package/src/components/WfoPageTemplate/WfoPageHeader/WfoPageHeader.tsx +3 -1
- package/src/components/WfoPageTemplate/WfoSidebar/WfoCopyright.tsx +1 -1
- package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +6 -6
- package/src/components/WfoProcessList/WfoProcessesList.tsx +52 -51
- package/src/components/WfoRadioDropdown/WfoRadioDropdown.tsx +88 -0
- package/src/components/WfoRadioDropdown/index.ts +1 -0
- package/src/components/WfoRenderElementOrString/WfoRenderElementOrString.tsx +16 -0
- package/src/components/WfoRenderElementOrString/index.ts +1 -0
- package/src/components/WfoSubscription/WfoInSyncField.tsx +13 -9
- package/src/components/WfoSubscription/WfoInUseByRelations.tsx +4 -2
- package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +76 -29
- package/src/components/WfoSubscription/WfoRelatedSubscriptions.tsx +92 -84
- package/src/components/WfoSubscription/WfoSubscription.tsx +19 -37
- package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +17 -9
- package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +18 -156
- package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +119 -0
- package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionFixedInputSection.tsx +28 -0
- package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionMetadataSection.tsx +29 -0
- package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionProductInfoSection.tsx +55 -0
- package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/index.ts +4 -0
- package/src/components/WfoSubscription/index.ts +3 -0
- package/src/components/WfoSubscription/overrides/index.ts +1 -0
- package/src/components/WfoSubscription/styles.ts +4 -1
- package/src/components/WfoSubscription/utils/relatedSubscriptionsListItemsObjectMappers.ts +62 -0
- package/src/components/WfoSubscription/utils/utils.spec.ts +0 -13
- package/src/components/WfoSubscription/utils/utils.ts +18 -5
- package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +105 -100
- package/src/components/WfoTable/{WfoTableWithFilter/WfoTableWithFilter.tsx → WfoAdvancedTable/WfoAdvancedTable.tsx} +65 -123
- package/src/components/WfoTable/WfoAdvancedTable/getRowDetailData.tsx +55 -0
- package/src/components/WfoTable/WfoAdvancedTable/index.ts +4 -0
- package/src/components/WfoTable/WfoAdvancedTable/toSortedTableColumnConfig.ts +12 -0
- package/src/components/WfoTable/WfoAdvancedTable/types.ts +23 -0
- package/src/components/WfoTable/WfoStatusColorField/WfoStatusColorField.tsx +16 -0
- package/src/components/WfoTable/WfoStatusColorField/index.ts +1 -0
- package/src/components/WfoTable/WfoStatusColorField/styles.ts +20 -0
- package/src/components/WfoTable/WfoTable/WfoExpandedRow.tsx +33 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoExpandableRow.tsx +48 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoExpandedGroupRow.tsx +71 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoGroupedTable.tsx +100 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/WfoGroupedTableGroups.tsx +74 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/styles.ts +39 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/useGroupedTableConfig.tsx +184 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts +133 -0
- package/src/components/WfoTable/WfoTable/WfoGroupedTable/utils.ts +41 -0
- package/src/components/WfoTable/WfoTable/WfoMultilineCell.tsx +13 -0
- package/src/components/WfoTable/WfoTable/WfoTable.tsx +201 -0
- package/src/components/WfoTable/WfoTable/WfoTableDataRows.tsx +112 -0
- package/src/components/WfoTable/{WfoBasicTable → WfoTable/WfoTableHeaderCell}/WfoSortDirectionIcon.tsx +3 -3
- package/src/components/WfoTable/{WfoBasicTable → WfoTable/WfoTableHeaderCell}/WfoTableHeaderCell.tsx +4 -3
- package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/index.ts +2 -0
- package/src/components/WfoTable/WfoTable/WfoTableHeaderRow.tsx +114 -0
- package/src/components/WfoTable/WfoTable/WfoTruncateCell.tsx +23 -0
- package/src/components/WfoTable/WfoTable/constants.ts +1 -0
- package/src/components/WfoTable/WfoTable/index.ts +14 -0
- package/src/components/WfoTable/WfoTable/styles.ts +117 -0
- package/src/components/WfoTable/WfoTable/utils.spec.ts +79 -0
- package/src/components/WfoTable/WfoTable/utils.ts +78 -0
- package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +13 -12
- package/src/components/WfoTable/WfoTableWithFilter/index.ts +1 -1
- package/src/components/WfoTable/index.ts +4 -5
- package/src/components/WfoTable/utils/columns.ts +1 -48
- package/src/components/WfoTable/utils/tableUtils.ts +13 -10
- package/src/components/WfoTree/WfoTreeBranch.tsx +10 -1
- package/src/components/WfoTree/WfoTreeNode.tsx +8 -57
- package/src/components/WfoTree/WfoTreeNodeListItem.tsx +65 -0
- package/src/components/WfoTree/styles.ts +28 -4
- package/src/components/index.ts +4 -0
- package/src/configuration/policy-resources.ts +1 -0
- package/src/configuration/version.ts +1 -1
- package/src/icons/WfoXMarkSmall.tsx +29 -0
- package/src/messages/en-GB.json +4 -0
- package/src/messages/nl-NL.json +4 -0
- package/src/pages/metadata/WfoMetadataPageLayout.tsx +4 -4
- package/src/pages/metadata/WfoProductBlocksPage.tsx +42 -59
- package/src/pages/metadata/WfoProductsPage.tsx +41 -47
- package/src/pages/metadata/WfoResourceTypesPage.tsx +26 -35
- package/src/pages/metadata/WfoTasksPage.tsx +35 -33
- package/src/pages/metadata/WfoWorkflowsPage.tsx +33 -29
- package/src/pages/processes/WfoProcessDetail.tsx +47 -55
- package/src/pages/settings/WfoSettingsPage.tsx +9 -4
- package/src/pages/startPage/WfoStartPage.tsx +17 -1
- package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +4 -5
- package/src/pages/tasks/WfoTasksListPage.tsx +44 -52
- package/src/pages/workflows/WfoWorkflowsListPage.tsx +4 -5
- package/src/rtk/endpoints/index.ts +1 -0
- package/src/rtk/endpoints/relatedSubscriptions.ts +5 -4
- package/src/rtk/endpoints/subscriptionActions.ts +11 -1
- package/src/utils/getObjectKeys.ts +3 -0
- package/src/utils/index.ts +5 -3
- package/tsup.config.ts +10 -0
- package/src/components/WfoTable/WfoBasicTable/WfoBasicTable.tsx +0 -194
- package/src/components/WfoTable/WfoBasicTable/WfoStatusColorField.tsx +0 -21
- package/src/components/WfoTable/WfoBasicTable/index.ts +0 -5
- package/src/components/WfoTable/WfoDataGridTable/WfoDataGridTable.stories.tsx +0 -136
- package/src/components/WfoTable/WfoDataGridTable/WfoDataGridTable.tsx +0 -146
- package/src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts +0 -113
- package/src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.ts +0 -81
- package/src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts +0 -52
- package/src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.ts +0 -23
- /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,
|
|
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,21 +14,18 @@ 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
|
|
18
|
-
import {
|
|
19
|
-
import { SerializedStyles } from '@emotion/react';
|
|
20
|
-
import * as _emotion_utils from '@emotion/utils';
|
|
21
|
-
import moment, { Moment } from 'moment-timezone';
|
|
17
|
+
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
18
|
+
import { Slice, Reducer, PayloadAction, EnhancedStore, Dispatch, UnknownAction, SerializedError } from '@reduxjs/toolkit';
|
|
22
19
|
import * as _reduxjs_toolkit_dist_query_react_buildHooks from '@reduxjs/toolkit/dist/query/react/buildHooks';
|
|
23
20
|
import * as graphql from 'graphql';
|
|
24
21
|
import * as _reduxjs_toolkit_query from '@reduxjs/toolkit/query';
|
|
25
22
|
import { CombinedState, BaseQueryFn, FetchBaseQueryError } from '@reduxjs/toolkit/query';
|
|
23
|
+
import * as _emotion_utils from '@emotion/utils';
|
|
24
|
+
import moment, { Moment } from 'moment-timezone';
|
|
26
25
|
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
|
|
768
|
-
|
|
769
|
-
field: Property;
|
|
764
|
+
declare type TableSettingsColumnConfig<T> = {
|
|
765
|
+
field: keyof T;
|
|
770
766
|
name: string;
|
|
771
|
-
|
|
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
|
|
783
|
-
|
|
784
|
-
|
|
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
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
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
|
|
882
|
-
|
|
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
|
|
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>;
|
|
@@ -1147,6 +1170,66 @@ declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_que
|
|
|
1147
1170
|
meta?: {} | undefined;
|
|
1148
1171
|
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
|
|
1149
1172
|
|
|
1173
|
+
declare const useStartProcessMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
|
|
1174
|
+
workflowName: string;
|
|
1175
|
+
userInputs: object[];
|
|
1176
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
1177
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
1178
|
+
apiName?: string | undefined;
|
|
1179
|
+
}) => {
|
|
1180
|
+
error?: undefined;
|
|
1181
|
+
data: unknown;
|
|
1182
|
+
meta?: {} | undefined;
|
|
1183
|
+
} | {
|
|
1184
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
1185
|
+
data?: undefined;
|
|
1186
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
1187
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
1188
|
+
error: graphql.GraphQLError[] | undefined;
|
|
1189
|
+
data?: undefined;
|
|
1190
|
+
meta?: {} | undefined;
|
|
1191
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, {
|
|
1192
|
+
id: string;
|
|
1193
|
+
}, "orchestratorApi">>;
|
|
1194
|
+
declare const useResumeProcessMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
|
|
1195
|
+
processId: string;
|
|
1196
|
+
userInputs: object[];
|
|
1197
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
1198
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
1199
|
+
apiName?: string | undefined;
|
|
1200
|
+
}) => {
|
|
1201
|
+
error?: undefined;
|
|
1202
|
+
data: unknown;
|
|
1203
|
+
meta?: {} | undefined;
|
|
1204
|
+
} | {
|
|
1205
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
1206
|
+
data?: undefined;
|
|
1207
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
1208
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
1209
|
+
error: graphql.GraphQLError[] | undefined;
|
|
1210
|
+
data?: undefined;
|
|
1211
|
+
meta?: {} | undefined;
|
|
1212
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>;
|
|
1213
|
+
declare const useStartFormMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<{
|
|
1214
|
+
formKey: string;
|
|
1215
|
+
userInputs: object[];
|
|
1216
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
1217
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
1218
|
+
apiName?: string | undefined;
|
|
1219
|
+
}) => {
|
|
1220
|
+
error?: undefined;
|
|
1221
|
+
data: unknown;
|
|
1222
|
+
meta?: {} | undefined;
|
|
1223
|
+
} | {
|
|
1224
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
1225
|
+
data?: undefined;
|
|
1226
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
1227
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
1228
|
+
error: graphql.GraphQLError[] | undefined;
|
|
1229
|
+
data?: undefined;
|
|
1230
|
+
meta?: {} | undefined;
|
|
1231
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi">>;
|
|
1232
|
+
|
|
1150
1233
|
declare type CustomApiConfig = {
|
|
1151
1234
|
apiName: string;
|
|
1152
1235
|
apiBaseUrl: string;
|
|
@@ -1771,6 +1854,13 @@ declare const WfoWorkflowTargetBadge: FC<WfoWorkflowTargetBadgeProps>;
|
|
|
1771
1854
|
|
|
1772
1855
|
declare const WfoWebsocketStatusBadge: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
1773
1856
|
|
|
1857
|
+
declare type WfoContentHeaderProps = {
|
|
1858
|
+
title: ReactElement | string;
|
|
1859
|
+
subtitle?: ReactElement | string;
|
|
1860
|
+
children?: ReactElement | ReactElement[] | string;
|
|
1861
|
+
};
|
|
1862
|
+
declare const WfoContentHeader: FC<WfoContentHeaderProps>;
|
|
1863
|
+
|
|
1774
1864
|
declare type WfoExpandableFieldProps = {
|
|
1775
1865
|
isExpanded: boolean;
|
|
1776
1866
|
title: ReactNode;
|
|
@@ -1870,7 +1960,8 @@ declare enum PolicyResource {
|
|
|
1870
1960
|
SUBSCRIPTION_VALIDATE = "/orchestrator/subscriptions/validate/",
|
|
1871
1961
|
TASKS_CREATE = "/orchestrator/processes/create/task",
|
|
1872
1962
|
TASKS_RETRY_ALL = "/orchestrator/processes/all-tasks/retry",
|
|
1873
|
-
SETTINGS_FLUSH_CACHE = "/orchestrator/settings/flush-cache"
|
|
1963
|
+
SETTINGS_FLUSH_CACHE = "/orchestrator/settings/flush-cache",
|
|
1964
|
+
SET_IN_SYNC = "/orchestrator/subscriptions/set-in-sync"
|
|
1874
1965
|
}
|
|
1875
1966
|
|
|
1876
1967
|
declare const urlPolicyMap: Map<string, PolicyResource>;
|
|
@@ -1951,11 +2042,37 @@ declare const getWorkflowTargetColor: (workflowTarget: WorkflowTarget, theme: Eu
|
|
|
1951
2042
|
declare const getWorkflowTargetIconContent: (workflowTarget: WorkflowTarget) => "C" | "T" | "X" | "M";
|
|
1952
2043
|
declare const getLastUncompletedProcess: (processes: SubscriptionDetailProcess[]) => SubscriptionDetailProcess | undefined;
|
|
1953
2044
|
declare const getLatestTaskDate: (processes: SubscriptionDetailProcess[]) => string;
|
|
2045
|
+
declare const sortProcessesByDate: (processList: SubscriptionDetailProcess[], sortOrder: SortOrder) => SubscriptionDetailProcess[];
|
|
1954
2046
|
|
|
1955
2047
|
declare const useSubscriptionDetailValueOverride: () => {
|
|
1956
2048
|
getOverriddenValue: (fieldValue: FieldValue) => React__default.ReactNode | null;
|
|
1957
2049
|
};
|
|
1958
2050
|
|
|
2051
|
+
declare const useSubscriptionDetailGeneralSectionConfigurationOverride: () => {
|
|
2052
|
+
overrideSections: ((defaultSections: WfoSubscriptionDetailGeneralConfiguration[], subscriptionDetail: SubscriptionDetail) => WfoSubscriptionDetailGeneralConfiguration[]) | undefined;
|
|
2053
|
+
};
|
|
2054
|
+
|
|
2055
|
+
interface WfoSubscriptionDetailSectionProps {
|
|
2056
|
+
isFetching: boolean;
|
|
2057
|
+
subscriptionDetail: SubscriptionDetail;
|
|
2058
|
+
}
|
|
2059
|
+
declare const WfoSubscriptionDetailSection: ({ isFetching, subscriptionDetail, }: WfoSubscriptionDetailSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2060
|
+
|
|
2061
|
+
interface WfoSubscriptionFixedInputSectionProps {
|
|
2062
|
+
fixedInputs: SubscriptionDetail['fixedInputs'];
|
|
2063
|
+
}
|
|
2064
|
+
declare const WfoSubscriptionFixedInputSection: ({ fixedInputs, }: WfoSubscriptionFixedInputSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2065
|
+
|
|
2066
|
+
interface WfoSubscriptionMetadataSectionProps {
|
|
2067
|
+
metadata: SubscriptionDetail['metadata'];
|
|
2068
|
+
}
|
|
2069
|
+
declare const WfoSubscriptionMetadataSection: ({ metadata, }: WfoSubscriptionMetadataSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2070
|
+
|
|
2071
|
+
interface WfoSubscriptionProductInfoSectionProps {
|
|
2072
|
+
product: SubscriptionDetail['product'];
|
|
2073
|
+
}
|
|
2074
|
+
declare const WfoSubscriptionProductInfoSection: ({ product, }: WfoSubscriptionProductInfoSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2075
|
+
|
|
1959
2076
|
interface SubscriptionKeyValueBlockProps {
|
|
1960
2077
|
title: string;
|
|
1961
2078
|
keyValues: WfoKeyValueTableDataType[];
|
|
@@ -1973,6 +2090,7 @@ interface WfoProcessesTimelineProps {
|
|
|
1973
2090
|
}
|
|
1974
2091
|
declare const WfoProcessesTimeline: ({ subscriptionDetailProcesses, }: WfoProcessesTimelineProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1975
2092
|
|
|
2093
|
+
declare type RelatedSubscriptionListItem = Pick<SubscriptionListItem, 'subscriptionId' | 'description' | 'status' | 'insync' | 'customerFullname' | 'tag' | 'startDate'>;
|
|
1976
2094
|
interface WfoRelatedSubscriptionsProps {
|
|
1977
2095
|
subscriptionId: string;
|
|
1978
2096
|
}
|
|
@@ -2019,6 +2137,11 @@ declare enum WfoSubscriptionGeneralSections {
|
|
|
2019
2137
|
}
|
|
2020
2138
|
declare const WfoSubscriptionGeneral: ({ subscriptionDetail, isFetching, }: WfoSubscriptionGeneralProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2021
2139
|
|
|
2140
|
+
declare type WfoCustomerDescriptionsFieldProps = {
|
|
2141
|
+
customerDescriptions: CustomerDescriptions[];
|
|
2142
|
+
};
|
|
2143
|
+
declare const WfoCustomerDescriptionsField: FC<WfoCustomerDescriptionsFieldProps>;
|
|
2144
|
+
|
|
2022
2145
|
declare enum TimelinePosition {
|
|
2023
2146
|
PAST = "past",
|
|
2024
2147
|
CURRENT = "current",
|
|
@@ -2560,9 +2683,9 @@ declare type WfoProcessesListProps = {
|
|
|
2560
2683
|
localStorageKey: string;
|
|
2561
2684
|
dataDisplayParams: DataDisplayParams<ProcessListItem>;
|
|
2562
2685
|
setDataDisplayParam: <DisplayParamKey extends keyof DataDisplayParams<ProcessListItem>>(prop: DisplayParamKey, value: DataDisplayParams<ProcessListItem>[DisplayParamKey]) => void;
|
|
2563
|
-
overrideDefaultTableColumns?: (defaultTableColumns:
|
|
2686
|
+
overrideDefaultTableColumns?: (defaultTableColumns: WfoAdvancedTableColumnConfig<ProcessListItem>) => WfoAdvancedTableColumnConfig<ProcessListItem>;
|
|
2564
2687
|
};
|
|
2565
|
-
declare const WfoProcessesList: ({ alwaysOnFilters, defaultHiddenColumns, localStorageKey, dataDisplayParams,
|
|
2688
|
+
declare const WfoProcessesList: ({ alwaysOnFilters, defaultHiddenColumns, localStorageKey, dataDisplayParams, overrideDefaultTableColumns, setDataDisplayParam, }: WfoProcessesListProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2566
2689
|
|
|
2567
2690
|
interface WfoTextAnchorProps {
|
|
2568
2691
|
text: string;
|
|
@@ -2698,6 +2821,12 @@ interface WfoNoResultsProps {
|
|
|
2698
2821
|
}
|
|
2699
2822
|
declare const WfoNoResults: ({ text, icon }: WfoNoResultsProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2700
2823
|
|
|
2824
|
+
declare type WfoRenderElementOrStringProps = {
|
|
2825
|
+
renderString?: (value: string) => ReactElement;
|
|
2826
|
+
children: ReactElement | ReactElement[] | string;
|
|
2827
|
+
};
|
|
2828
|
+
declare const WfoRenderElementOrString: FC<WfoRenderElementOrStringProps>;
|
|
2829
|
+
|
|
2701
2830
|
declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2702
2831
|
|
|
2703
2832
|
declare const WfoStartWorkflowButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -2777,6 +2906,25 @@ interface WfoTitleWithWebsocketBadgeProps {
|
|
|
2777
2906
|
}
|
|
2778
2907
|
declare const WfoTitleWithWebsocketBadge: ({ title, }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2779
2908
|
|
|
2909
|
+
interface WfoRadioDropdownProps<T> {
|
|
2910
|
+
options: WfoRadioDropdownOption<T>[];
|
|
2911
|
+
selectedOption: WfoRadioDropdownOption<T>;
|
|
2912
|
+
onUpdateOption: (value: WfoRadioDropdownOption<T>) => void;
|
|
2913
|
+
}
|
|
2914
|
+
declare type WfoRadioDropdownOption<T> = {
|
|
2915
|
+
label: string;
|
|
2916
|
+
id: string;
|
|
2917
|
+
value: T;
|
|
2918
|
+
};
|
|
2919
|
+
declare const WfoRadioDropdown: <T>({ options, onUpdateOption, selectedOption, }: WfoRadioDropdownProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2920
|
+
|
|
2921
|
+
interface WfoInlineNoteEditProps {
|
|
2922
|
+
value: Subscription['note'];
|
|
2923
|
+
subscriptionId?: Subscription['subscriptionId'];
|
|
2924
|
+
onlyShowOnHover?: boolean;
|
|
2925
|
+
}
|
|
2926
|
+
declare const WfoInlineNoteEdit: FC<WfoInlineNoteEditProps>;
|
|
2927
|
+
|
|
2780
2928
|
declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
|
|
2781
2929
|
declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
|
|
2782
2930
|
declare const PROCESSES_ENDPOINT = "processes";
|
|
@@ -2796,7 +2944,7 @@ declare const IPAM_IP_BLOCKS_ENDPOINT: string;
|
|
|
2796
2944
|
declare const IPAM_FREE_SUBNETS_ENDPOINT: string;
|
|
2797
2945
|
declare const SUBSCRIPTION_ACTIONS_ENDPOINT = "subscriptions/workflows";
|
|
2798
2946
|
|
|
2799
|
-
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "1.
|
|
2947
|
+
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.1.0";
|
|
2800
2948
|
|
|
2801
2949
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
2802
2950
|
pydanticForms: {
|
|
@@ -3224,6 +3372,10 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
3224
3372
|
title: string;
|
|
3225
3373
|
text: string;
|
|
3226
3374
|
};
|
|
3375
|
+
workflowsTab: {
|
|
3376
|
+
startWithOldestLabel: string;
|
|
3377
|
+
startWithNewestLabel: string;
|
|
3378
|
+
};
|
|
3227
3379
|
};
|
|
3228
3380
|
};
|
|
3229
3381
|
tasks: {
|
|
@@ -3712,6 +3864,10 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
3712
3864
|
title: string;
|
|
3713
3865
|
text: string;
|
|
3714
3866
|
};
|
|
3867
|
+
workflowsTab: {
|
|
3868
|
+
startWithOldestLabel: string;
|
|
3869
|
+
startWithNewestLabel: string;
|
|
3870
|
+
};
|
|
3715
3871
|
};
|
|
3716
3872
|
};
|
|
3717
3873
|
tasks: {
|
|
@@ -3779,10 +3935,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
3779
3935
|
|
|
3780
3936
|
declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3781
3937
|
|
|
3782
|
-
declare const RESOURCE_TYPE_FIELD_ID: keyof ResourceTypeDefinition;
|
|
3783
3938
|
declare const RESOURCE_TYPE_FIELD_TYPE: keyof ResourceTypeDefinition;
|
|
3784
|
-
declare const RESOURCE_TYPE_FIELD_DESCRIPTION: keyof ResourceTypeDefinition;
|
|
3785
|
-
declare const RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS: keyof ResourceTypeDefinition;
|
|
3786
3939
|
declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3787
3940
|
|
|
3788
3941
|
declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -3903,8 +4056,14 @@ declare const getDate: (date: Date | string | null) => Date | null;
|
|
|
3903
4056
|
|
|
3904
4057
|
declare const getNumberValueFromEnvironmentVariable: (environmentVariable: string | undefined, defaultValue: number) => number;
|
|
3905
4058
|
|
|
4059
|
+
declare const filterDataByCriteria: <Type>(data: Type[], filterCriteria: GraphqlFilter<Type>[]) => Type[];
|
|
4060
|
+
|
|
4061
|
+
declare const getDefaultTableConfig: <T>(storageKey: string) => StoredTableConfig<T>;
|
|
4062
|
+
|
|
3906
4063
|
declare function getEnvironmentVariables<T>(envVars: (keyof T)[]): Record<keyof T, string>;
|
|
3907
4064
|
|
|
4065
|
+
declare const getObjectKeys: <T extends object>(inputObject: T) => (keyof T)[];
|
|
4066
|
+
|
|
3908
4067
|
declare const getProductNamesFromProcess: (process: ProcessDetail | undefined | Omit<ProcessDetail, 'status'>) => string;
|
|
3909
4068
|
|
|
3910
4069
|
declare const getQueryVariablesForExport: <T extends object>(queryVariables: GraphqlQueryVariables<T>) => {
|
|
@@ -3921,8 +4080,8 @@ declare function getTypedFieldFromObject<T extends object>(field: string | undef
|
|
|
3921
4080
|
|
|
3922
4081
|
declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
|
|
3923
4082
|
|
|
3924
|
-
declare const
|
|
3925
|
-
declare const
|
|
4083
|
+
declare const toOptionalArrayEntry: <T>(data: T, condition: boolean) => [] | [T];
|
|
4084
|
+
declare const optionalArrayMapper: <T, U>(data: T[] | undefined, mapper: (input: T) => U) => U[];
|
|
3926
4085
|
|
|
3927
4086
|
declare const getConcatenatedPagedResult: <T>(pagedResult: GraphQlSinglePage<T>, fields: (keyof T)[]) => string;
|
|
3928
4087
|
declare const getConcatenatedResult: <T>(results: T[], fields: (keyof T)[]) => string;
|
|
@@ -3934,11 +4093,9 @@ declare const snakeToHuman: (value: string) => string;
|
|
|
3934
4093
|
declare const snakeToKebab: (value: string) => string;
|
|
3935
4094
|
declare const isAllUpperCase: (str: string) => boolean;
|
|
3936
4095
|
|
|
3937
|
-
declare const toOptionalArrayEntry: <T>(data: T, condition: boolean) => [] | [T];
|
|
3938
|
-
declare const optionalArrayMapper: <T, U>(data: T[] | undefined, mapper: (input: T) => U) => U[];
|
|
3939
|
-
|
|
3940
|
-
declare const filterDataByCriteria: <Type>(data: Type[], filterCriteria: GraphqlFilter<Type>[]) => Type[];
|
|
3941
|
-
|
|
3942
4096
|
declare const toObjectWithSortedKeys: <T extends object>(inputObject: T, keyOrder: string[]) => T;
|
|
3943
4097
|
|
|
3944
|
-
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, WfoSubscriptionGeneralSections, 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 };
|
|
4098
|
+
declare const getFirstUuidPart: (uuid: string) => string;
|
|
4099
|
+
declare const isUuid4: (value: string) => boolean;
|
|
4100
|
+
|
|
4101
|
+
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, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, 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, WfoContentHeader, type WfoContentHeaderProps, 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, WfoInlineNoteEdit, 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, WfoRenderElementOrString, type WfoRenderElementOrStringProps, 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, useResumeProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, workflowFieldMapper, workflowsQuery };
|