@orchestrator-ui/orchestrator-ui-components 7.5.1 → 7.7.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 +7 -7
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +7 -7
- package/CHANGELOG.md +26 -0
- package/dist/index.d.ts +542 -53
- package/dist/index.js +1297 -1101
- package/dist/index.js.map +1 -1
- package/jest.config.cjs +4 -1
- package/package.json +6 -6
- package/src/components/WfoAgent/ExportButton/ExportButton.tsx +5 -11
- package/src/components/WfoAgent/WfoAgent/WfoAgent.tsx +79 -31
- package/src/components/WfoAgent/WfoAgentChart/WfoAgentLineChart.tsx +2 -2
- package/src/components/WfoAgent/WfoAgentChart/WfoAgentPieChart.tsx +2 -2
- package/src/components/WfoAgent/WfoAgentTable/WfoAgentTable.tsx +9 -9
- package/src/components/WfoAgent/WfoAgentVisualization/WfoAgentVisualization.tsx +2 -2
- package/src/components/WfoAgent/WfoPlanProgress/WfoPlanProgress.tsx +107 -0
- package/src/components/WfoAgent/WfoPlanProgress/index.ts +1 -0
- package/src/components/WfoAgent/WfoPlanProgress/styles.ts +62 -0
- package/src/components/WfoAgent/WfoQueryArtifact/WfoQueryArtifact.tsx +40 -0
- package/src/components/WfoAgent/WfoQueryArtifact/index.ts +1 -0
- package/src/components/WfoAgent/index.ts +2 -0
- package/src/components/WfoBadges/WfoEngineStatusBadge/WfoEngineStatusBadge.tsx +3 -1
- package/src/components/WfoBadges/WfoVersionIncompatibleBadge/WfoVersionIncompatibleBadge.tsx +7 -6
- package/src/components/WfoBadges/WfoWebsocketStatusBadge/WfoWebsocketStatusBadge.tsx +9 -3
- package/src/components/WfoKeyValueTable/WfoValueCell.tsx +1 -1
- package/src/components/WfoPydanticForm/fields/WfoInteger.tsx +22 -3
- package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +3 -2
- package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +34 -3
- package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +9 -9
- package/src/components/WfoTable/WfoAdvancedTable/WfoAdvancedTable.tsx +1 -1
- package/src/components/WfoTable/WfoFirstPartUUID/WfoFirstPartUUID.tsx +1 -1
- package/src/components/WfoTitleWithWebsocketBadge/WfoTitleWithWebsocketBadge.tsx +3 -2
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +57 -40
- package/src/components/WfoWorkflowSteps/WfoStep/useStepDetailOverride.ts +9 -0
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoStepListHeader.tsx +0 -1
- package/src/configuration/constants.ts +3 -0
- package/src/configuration/version.ts +1 -1
- package/src/hooks/useAgentPlanEvents.ts +188 -0
- package/src/messages/en-GB.json +7 -0
- package/src/messages/nl-NL.json +2 -0
- package/src/pages/metadata/WfoScheduleTaskFormPage.tsx +153 -35
- package/src/rtk/endpoints/agentQueryResults.ts +19 -0
- package/src/rtk/endpoints/forms.ts +1 -1
- package/src/rtk/endpoints/index.ts +1 -0
- package/src/rtk/endpoints/metadata/scheduledTasks.ts +9 -17
- package/src/rtk/endpoints/streamMessages.ts +10 -23
- package/src/rtk/slices/orchestratorComponentOverride.ts +5 -1
- package/src/types/search.ts +19 -4
- package/src/utils/compareVersions.spec.ts +5 -0
- package/src/utils/compareVersions.ts +55 -23
- package/src/components/WfoAgent/ToolProgress/DiscoverFilterPathsDisplay.tsx +0 -99
- package/src/components/WfoAgent/ToolProgress/RunSearchDisplay.tsx +0 -34
- package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.styles.ts +0 -62
- package/src/components/WfoAgent/ToolProgress/SetFilterTreeDisplay.tsx +0 -107
- package/src/components/WfoAgent/ToolProgress/StartNewSearchDisplay.tsx +0 -60
- package/src/components/WfoAgent/ToolProgress/ToolProgress.tsx +0 -98
- package/src/components/WfoAgent/ToolProgress/index.ts +0 -1
- package/src/components/WfoAgent/ToolProgress/styles.ts +0 -52
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
2
|
import React__default, { FC, ReactNode, ReactElement, CSSProperties, HTMLAttributeAnchorTarget, FunctionComponent, ErrorInfo } from 'react';
|
|
3
3
|
import { EuiBadgeProps, EuiThemeComputed, EuiThemeModifications, EuiThemeColorMode, EuiContextMenuPanelDescriptor, EuiSideNavItemType, EuiSelectableOption } from '@elastic/eui';
|
|
4
4
|
import { TextSize } from '@elastic/eui/src/components/text/text';
|
|
@@ -5991,11 +5991,13 @@ type CronKwargs = {
|
|
|
5991
5991
|
};
|
|
5992
5992
|
type Kwargs = DateKwargs | InterValKwargs | CronKwargs;
|
|
5993
5993
|
type ScheduledTaskPostPayload = {
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
5998
|
-
|
|
5994
|
+
workflow_id: string;
|
|
5995
|
+
workflow_name: string;
|
|
5996
|
+
name: string;
|
|
5997
|
+
trigger: string;
|
|
5998
|
+
trigger_kwargs: Kwargs;
|
|
5999
|
+
scheduled_type: string;
|
|
6000
|
+
user_inputs: object[];
|
|
5999
6001
|
};
|
|
6000
6002
|
declare const useGetScheduledTasksQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
6001
6003
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
@@ -15584,7 +15586,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15584
15586
|
isError: false;
|
|
15585
15587
|
}, "isUninitialized"> & {
|
|
15586
15588
|
isUninitialized: true;
|
|
15587
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15589
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15588
15590
|
baseQueryType?: BaseQueryTypes;
|
|
15589
15591
|
apiName?: string;
|
|
15590
15592
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15611,7 +15613,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15611
15613
|
isLoading: true;
|
|
15612
15614
|
isFetching: boolean;
|
|
15613
15615
|
data: undefined;
|
|
15614
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15616
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15615
15617
|
baseQueryType?: BaseQueryTypes;
|
|
15616
15618
|
apiName?: string;
|
|
15617
15619
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15640,7 +15642,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15640
15642
|
error: undefined;
|
|
15641
15643
|
} & {
|
|
15642
15644
|
data: boolean;
|
|
15643
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15645
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15644
15646
|
baseQueryType?: BaseQueryTypes;
|
|
15645
15647
|
apiName?: string;
|
|
15646
15648
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15663,7 +15665,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15663
15665
|
isFetching: false;
|
|
15664
15666
|
isSuccess: false;
|
|
15665
15667
|
isError: false;
|
|
15666
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15668
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15667
15669
|
baseQueryType?: BaseQueryTypes;
|
|
15668
15670
|
apiName?: string;
|
|
15669
15671
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15693,7 +15695,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15693
15695
|
} & {
|
|
15694
15696
|
data: boolean;
|
|
15695
15697
|
currentData: boolean;
|
|
15696
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15698
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15697
15699
|
baseQueryType?: BaseQueryTypes;
|
|
15698
15700
|
apiName?: string;
|
|
15699
15701
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15716,7 +15718,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15716
15718
|
isFetching: false;
|
|
15717
15719
|
isSuccess: false;
|
|
15718
15720
|
isError: false;
|
|
15719
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15721
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15720
15722
|
baseQueryType?: BaseQueryTypes;
|
|
15721
15723
|
apiName?: string;
|
|
15722
15724
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15741,7 +15743,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15741
15743
|
isError: false;
|
|
15742
15744
|
}, "error" | "isError"> & {
|
|
15743
15745
|
isError: true;
|
|
15744
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15746
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15745
15747
|
baseQueryType?: BaseQueryTypes;
|
|
15746
15748
|
apiName?: string;
|
|
15747
15749
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15766,7 +15768,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15766
15768
|
isError: false;
|
|
15767
15769
|
}, "error">>)> & {
|
|
15768
15770
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
15769
|
-
}>(arg:
|
|
15771
|
+
}>(arg: string | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
15770
15772
|
skip?: boolean;
|
|
15771
15773
|
refetchOnMountOrArgChange?: boolean | number;
|
|
15772
15774
|
} & {
|
|
@@ -15789,7 +15791,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15789
15791
|
isError: false;
|
|
15790
15792
|
}, "isUninitialized"> & {
|
|
15791
15793
|
isUninitialized: true;
|
|
15792
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15794
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15793
15795
|
baseQueryType?: BaseQueryTypes;
|
|
15794
15796
|
apiName?: string;
|
|
15795
15797
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15816,7 +15818,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15816
15818
|
isLoading: true;
|
|
15817
15819
|
isFetching: boolean;
|
|
15818
15820
|
data: undefined;
|
|
15819
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15821
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15820
15822
|
baseQueryType?: BaseQueryTypes;
|
|
15821
15823
|
apiName?: string;
|
|
15822
15824
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15845,7 +15847,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15845
15847
|
error: undefined;
|
|
15846
15848
|
} & {
|
|
15847
15849
|
data: boolean;
|
|
15848
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15850
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15849
15851
|
baseQueryType?: BaseQueryTypes;
|
|
15850
15852
|
apiName?: string;
|
|
15851
15853
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15868,7 +15870,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15868
15870
|
isFetching: false;
|
|
15869
15871
|
isSuccess: false;
|
|
15870
15872
|
isError: false;
|
|
15871
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15873
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15872
15874
|
baseQueryType?: BaseQueryTypes;
|
|
15873
15875
|
apiName?: string;
|
|
15874
15876
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15898,7 +15900,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15898
15900
|
} & {
|
|
15899
15901
|
data: boolean;
|
|
15900
15902
|
currentData: boolean;
|
|
15901
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15903
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15902
15904
|
baseQueryType?: BaseQueryTypes;
|
|
15903
15905
|
apiName?: string;
|
|
15904
15906
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15921,7 +15923,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15921
15923
|
isFetching: false;
|
|
15922
15924
|
isSuccess: false;
|
|
15923
15925
|
isError: false;
|
|
15924
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15926
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15925
15927
|
baseQueryType?: BaseQueryTypes;
|
|
15926
15928
|
apiName?: string;
|
|
15927
15929
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15946,7 +15948,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15946
15948
|
isError: false;
|
|
15947
15949
|
}, "error" | "isError"> & {
|
|
15948
15950
|
isError: true;
|
|
15949
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
15951
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15950
15952
|
baseQueryType?: BaseQueryTypes;
|
|
15951
15953
|
apiName?: string;
|
|
15952
15954
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -15973,7 +15975,7 @@ declare const useStreamMessagesQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
15973
15975
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
15974
15976
|
}) => R) | undefined;
|
|
15975
15977
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
15976
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
15978
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15977
15979
|
baseQueryType?: BaseQueryTypes;
|
|
15978
15980
|
apiName?: string;
|
|
15979
15981
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16009,7 +16011,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16009
16011
|
isError: false;
|
|
16010
16012
|
}, "isUninitialized"> & {
|
|
16011
16013
|
isUninitialized: true;
|
|
16012
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16014
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16013
16015
|
baseQueryType?: BaseQueryTypes;
|
|
16014
16016
|
apiName?: string;
|
|
16015
16017
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16036,7 +16038,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16036
16038
|
isLoading: true;
|
|
16037
16039
|
isFetching: boolean;
|
|
16038
16040
|
data: undefined;
|
|
16039
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16041
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16040
16042
|
baseQueryType?: BaseQueryTypes;
|
|
16041
16043
|
apiName?: string;
|
|
16042
16044
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16065,7 +16067,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16065
16067
|
error: undefined;
|
|
16066
16068
|
} & {
|
|
16067
16069
|
data: boolean;
|
|
16068
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16070
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16069
16071
|
baseQueryType?: BaseQueryTypes;
|
|
16070
16072
|
apiName?: string;
|
|
16071
16073
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16088,7 +16090,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16088
16090
|
isFetching: false;
|
|
16089
16091
|
isSuccess: false;
|
|
16090
16092
|
isError: false;
|
|
16091
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16093
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16092
16094
|
baseQueryType?: BaseQueryTypes;
|
|
16093
16095
|
apiName?: string;
|
|
16094
16096
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16118,7 +16120,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16118
16120
|
} & {
|
|
16119
16121
|
data: boolean;
|
|
16120
16122
|
currentData: boolean;
|
|
16121
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16123
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16122
16124
|
baseQueryType?: BaseQueryTypes;
|
|
16123
16125
|
apiName?: string;
|
|
16124
16126
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16141,7 +16143,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16141
16143
|
isFetching: false;
|
|
16142
16144
|
isSuccess: false;
|
|
16143
16145
|
isError: false;
|
|
16144
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16146
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16145
16147
|
baseQueryType?: BaseQueryTypes;
|
|
16146
16148
|
apiName?: string;
|
|
16147
16149
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16166,7 +16168,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16166
16168
|
isError: false;
|
|
16167
16169
|
}, "error" | "isError"> & {
|
|
16168
16170
|
isError: true;
|
|
16169
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16171
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16170
16172
|
baseQueryType?: BaseQueryTypes;
|
|
16171
16173
|
apiName?: string;
|
|
16172
16174
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16211,7 +16213,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16211
16213
|
isError: false;
|
|
16212
16214
|
}, "isUninitialized"> & {
|
|
16213
16215
|
isUninitialized: true;
|
|
16214
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16216
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16215
16217
|
baseQueryType?: BaseQueryTypes;
|
|
16216
16218
|
apiName?: string;
|
|
16217
16219
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16238,7 +16240,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16238
16240
|
isLoading: true;
|
|
16239
16241
|
isFetching: boolean;
|
|
16240
16242
|
data: undefined;
|
|
16241
|
-
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16243
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16242
16244
|
baseQueryType?: BaseQueryTypes;
|
|
16243
16245
|
apiName?: string;
|
|
16244
16246
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16267,7 +16269,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16267
16269
|
error: undefined;
|
|
16268
16270
|
} & {
|
|
16269
16271
|
data: boolean;
|
|
16270
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16272
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16271
16273
|
baseQueryType?: BaseQueryTypes;
|
|
16272
16274
|
apiName?: string;
|
|
16273
16275
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16290,7 +16292,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16290
16292
|
isFetching: false;
|
|
16291
16293
|
isSuccess: false;
|
|
16292
16294
|
isError: false;
|
|
16293
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16295
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16294
16296
|
baseQueryType?: BaseQueryTypes;
|
|
16295
16297
|
apiName?: string;
|
|
16296
16298
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16320,7 +16322,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16320
16322
|
} & {
|
|
16321
16323
|
data: boolean;
|
|
16322
16324
|
currentData: boolean;
|
|
16323
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16325
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16324
16326
|
baseQueryType?: BaseQueryTypes;
|
|
16325
16327
|
apiName?: string;
|
|
16326
16328
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16343,7 +16345,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16343
16345
|
isFetching: false;
|
|
16344
16346
|
isSuccess: false;
|
|
16345
16347
|
isError: false;
|
|
16346
|
-
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16348
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16347
16349
|
baseQueryType?: BaseQueryTypes;
|
|
16348
16350
|
apiName?: string;
|
|
16349
16351
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16368,7 +16370,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16368
16370
|
isError: false;
|
|
16369
16371
|
}, "error" | "isError"> & {
|
|
16370
16372
|
isError: true;
|
|
16371
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
16373
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16372
16374
|
baseQueryType?: BaseQueryTypes;
|
|
16373
16375
|
apiName?: string;
|
|
16374
16376
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16394,7 +16396,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16394
16396
|
}, "error">>)> & {
|
|
16395
16397
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
16396
16398
|
}) => R) | undefined;
|
|
16397
|
-
}, "skip">) | undefined) => [(arg:
|
|
16399
|
+
}, "skip">) | undefined) => [(arg: string, preferCacheValue?: boolean) => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16398
16400
|
baseQueryType?: BaseQueryTypes;
|
|
16399
16401
|
apiName?: string;
|
|
16400
16402
|
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
@@ -16413,7 +16415,7 @@ declare const useLazyStreamMessagesQuery: <R extends Record<string, any> = _redu
|
|
|
16413
16415
|
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, boolean, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
16414
16416
|
reset: () => void;
|
|
16415
16417
|
}, {
|
|
16416
|
-
lastArg:
|
|
16418
|
+
lastArg: string;
|
|
16417
16419
|
}];
|
|
16418
16420
|
|
|
16419
16421
|
declare const useGetSubscriptionActionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
@@ -18282,7 +18284,7 @@ declare const useCheckEngineStatus: () => {
|
|
|
18282
18284
|
};
|
|
18283
18285
|
|
|
18284
18286
|
declare const useContentRef: () => {
|
|
18285
|
-
contentRef: React.RefObject<HTMLDivElement> | undefined;
|
|
18287
|
+
contentRef: React$1.RefObject<HTMLDivElement> | undefined;
|
|
18286
18288
|
};
|
|
18287
18289
|
|
|
18288
18290
|
declare const useOrchestratorConfig: (initialOrchestratorConfig: OrchestratorConfig) => {
|
|
@@ -18398,11 +18400,11 @@ type TreeContextType = {
|
|
|
18398
18400
|
selectIds: (ids: number[]) => void;
|
|
18399
18401
|
deselectIds: (ids: number[]) => void;
|
|
18400
18402
|
};
|
|
18401
|
-
declare const TreeContext: React.Context<TreeContextType | null>;
|
|
18403
|
+
declare const TreeContext: React$1.Context<TreeContextType | null>;
|
|
18402
18404
|
type TreeProviderProps = {
|
|
18403
18405
|
children: ReactNode;
|
|
18404
18406
|
};
|
|
18405
|
-
declare const TreeProvider: React.FC<TreeProviderProps>;
|
|
18407
|
+
declare const TreeProvider: React$1.FC<TreeProviderProps>;
|
|
18406
18408
|
|
|
18407
18409
|
type WfoErrorMonitoring = {
|
|
18408
18410
|
reportError: (error: Error | string) => void;
|
|
@@ -23095,6 +23097,432 @@ declare const useCheckAgentAvailabilityQuery: <R extends Record<string, any> = _
|
|
|
23095
23097
|
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>>;
|
|
23096
23098
|
};
|
|
23097
23099
|
|
|
23100
|
+
declare const useGetAgentQueryResultsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
23101
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
23102
|
+
originalArgs?: undefined | undefined;
|
|
23103
|
+
data?: undefined | undefined;
|
|
23104
|
+
error?: undefined | undefined;
|
|
23105
|
+
requestId?: undefined | undefined;
|
|
23106
|
+
endpointName?: string | undefined;
|
|
23107
|
+
startedTimeStamp?: undefined | undefined;
|
|
23108
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
23109
|
+
} & {
|
|
23110
|
+
currentData?: QueryResultsData | undefined;
|
|
23111
|
+
isUninitialized: false;
|
|
23112
|
+
isLoading: false;
|
|
23113
|
+
isFetching: false;
|
|
23114
|
+
isSuccess: false;
|
|
23115
|
+
isError: false;
|
|
23116
|
+
}, "isUninitialized"> & {
|
|
23117
|
+
isUninitialized: true;
|
|
23118
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23119
|
+
baseQueryType?: BaseQueryTypes;
|
|
23120
|
+
apiName?: string;
|
|
23121
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23122
|
+
}) => {
|
|
23123
|
+
error?: undefined;
|
|
23124
|
+
data: unknown;
|
|
23125
|
+
meta?: {} | undefined;
|
|
23126
|
+
} | {
|
|
23127
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23128
|
+
data?: undefined;
|
|
23129
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23130
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23131
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23132
|
+
data?: undefined;
|
|
23133
|
+
meta?: {} | undefined;
|
|
23134
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23135
|
+
currentData?: QueryResultsData | undefined;
|
|
23136
|
+
isUninitialized: false;
|
|
23137
|
+
isLoading: false;
|
|
23138
|
+
isFetching: false;
|
|
23139
|
+
isSuccess: false;
|
|
23140
|
+
isError: false;
|
|
23141
|
+
}, "data" | "isLoading" | "isFetching"> & {
|
|
23142
|
+
isLoading: true;
|
|
23143
|
+
isFetching: boolean;
|
|
23144
|
+
data: undefined;
|
|
23145
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23146
|
+
baseQueryType?: BaseQueryTypes;
|
|
23147
|
+
apiName?: string;
|
|
23148
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23149
|
+
}) => {
|
|
23150
|
+
error?: undefined;
|
|
23151
|
+
data: unknown;
|
|
23152
|
+
meta?: {} | undefined;
|
|
23153
|
+
} | {
|
|
23154
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23155
|
+
data?: undefined;
|
|
23156
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23157
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23158
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23159
|
+
data?: undefined;
|
|
23160
|
+
meta?: {} | undefined;
|
|
23161
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23162
|
+
currentData?: QueryResultsData | undefined;
|
|
23163
|
+
isUninitialized: false;
|
|
23164
|
+
isLoading: false;
|
|
23165
|
+
isFetching: false;
|
|
23166
|
+
isSuccess: false;
|
|
23167
|
+
isError: false;
|
|
23168
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
|
|
23169
|
+
isSuccess: true;
|
|
23170
|
+
isFetching: true;
|
|
23171
|
+
error: undefined;
|
|
23172
|
+
} & {
|
|
23173
|
+
data: QueryResultsData;
|
|
23174
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23175
|
+
baseQueryType?: BaseQueryTypes;
|
|
23176
|
+
apiName?: string;
|
|
23177
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23178
|
+
}) => {
|
|
23179
|
+
error?: undefined;
|
|
23180
|
+
data: unknown;
|
|
23181
|
+
meta?: {} | undefined;
|
|
23182
|
+
} | {
|
|
23183
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23184
|
+
data?: undefined;
|
|
23185
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23186
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23187
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23188
|
+
data?: undefined;
|
|
23189
|
+
meta?: {} | undefined;
|
|
23190
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23191
|
+
currentData?: QueryResultsData | undefined;
|
|
23192
|
+
isUninitialized: false;
|
|
23193
|
+
isLoading: false;
|
|
23194
|
+
isFetching: false;
|
|
23195
|
+
isSuccess: false;
|
|
23196
|
+
isError: false;
|
|
23197
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23198
|
+
baseQueryType?: BaseQueryTypes;
|
|
23199
|
+
apiName?: string;
|
|
23200
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23201
|
+
}) => {
|
|
23202
|
+
error?: undefined;
|
|
23203
|
+
data: unknown;
|
|
23204
|
+
meta?: {} | undefined;
|
|
23205
|
+
} | {
|
|
23206
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23207
|
+
data?: undefined;
|
|
23208
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23209
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23210
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23211
|
+
data?: undefined;
|
|
23212
|
+
meta?: {} | undefined;
|
|
23213
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23214
|
+
currentData?: QueryResultsData | undefined;
|
|
23215
|
+
isUninitialized: false;
|
|
23216
|
+
isLoading: false;
|
|
23217
|
+
isFetching: false;
|
|
23218
|
+
isSuccess: false;
|
|
23219
|
+
isError: false;
|
|
23220
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
|
|
23221
|
+
isSuccess: true;
|
|
23222
|
+
isFetching: false;
|
|
23223
|
+
error: undefined;
|
|
23224
|
+
} & {
|
|
23225
|
+
data: QueryResultsData;
|
|
23226
|
+
currentData: QueryResultsData;
|
|
23227
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23228
|
+
baseQueryType?: BaseQueryTypes;
|
|
23229
|
+
apiName?: string;
|
|
23230
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23231
|
+
}) => {
|
|
23232
|
+
error?: undefined;
|
|
23233
|
+
data: unknown;
|
|
23234
|
+
meta?: {} | undefined;
|
|
23235
|
+
} | {
|
|
23236
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23237
|
+
data?: undefined;
|
|
23238
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23239
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23240
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23241
|
+
data?: undefined;
|
|
23242
|
+
meta?: {} | undefined;
|
|
23243
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23244
|
+
currentData?: QueryResultsData | undefined;
|
|
23245
|
+
isUninitialized: false;
|
|
23246
|
+
isLoading: false;
|
|
23247
|
+
isFetching: false;
|
|
23248
|
+
isSuccess: false;
|
|
23249
|
+
isError: false;
|
|
23250
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23251
|
+
baseQueryType?: BaseQueryTypes;
|
|
23252
|
+
apiName?: string;
|
|
23253
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23254
|
+
}) => {
|
|
23255
|
+
error?: undefined;
|
|
23256
|
+
data: unknown;
|
|
23257
|
+
meta?: {} | undefined;
|
|
23258
|
+
} | {
|
|
23259
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23260
|
+
data?: undefined;
|
|
23261
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23262
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23263
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23264
|
+
data?: undefined;
|
|
23265
|
+
meta?: {} | undefined;
|
|
23266
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23267
|
+
currentData?: QueryResultsData | undefined;
|
|
23268
|
+
isUninitialized: false;
|
|
23269
|
+
isLoading: false;
|
|
23270
|
+
isFetching: false;
|
|
23271
|
+
isSuccess: false;
|
|
23272
|
+
isError: false;
|
|
23273
|
+
}, "error" | "isError"> & {
|
|
23274
|
+
isError: true;
|
|
23275
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23276
|
+
baseQueryType?: BaseQueryTypes;
|
|
23277
|
+
apiName?: string;
|
|
23278
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23279
|
+
}) => {
|
|
23280
|
+
error?: undefined;
|
|
23281
|
+
data: unknown;
|
|
23282
|
+
meta?: {} | undefined;
|
|
23283
|
+
} | {
|
|
23284
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23285
|
+
data?: undefined;
|
|
23286
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23287
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23288
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23289
|
+
data?: undefined;
|
|
23290
|
+
meta?: {} | undefined;
|
|
23291
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23292
|
+
currentData?: QueryResultsData | undefined;
|
|
23293
|
+
isUninitialized: false;
|
|
23294
|
+
isLoading: false;
|
|
23295
|
+
isFetching: false;
|
|
23296
|
+
isSuccess: false;
|
|
23297
|
+
isError: false;
|
|
23298
|
+
}, "error">>)> & {
|
|
23299
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
23300
|
+
}>(arg: string | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
23301
|
+
skip?: boolean;
|
|
23302
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
23303
|
+
} & {
|
|
23304
|
+
skip?: boolean;
|
|
23305
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
23306
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
23307
|
+
originalArgs?: undefined | undefined;
|
|
23308
|
+
data?: undefined | undefined;
|
|
23309
|
+
error?: undefined | undefined;
|
|
23310
|
+
requestId?: undefined | undefined;
|
|
23311
|
+
endpointName?: string | undefined;
|
|
23312
|
+
startedTimeStamp?: undefined | undefined;
|
|
23313
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
23314
|
+
} & {
|
|
23315
|
+
currentData?: QueryResultsData | undefined;
|
|
23316
|
+
isUninitialized: false;
|
|
23317
|
+
isLoading: false;
|
|
23318
|
+
isFetching: false;
|
|
23319
|
+
isSuccess: false;
|
|
23320
|
+
isError: false;
|
|
23321
|
+
}, "isUninitialized"> & {
|
|
23322
|
+
isUninitialized: true;
|
|
23323
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23324
|
+
baseQueryType?: BaseQueryTypes;
|
|
23325
|
+
apiName?: string;
|
|
23326
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23327
|
+
}) => {
|
|
23328
|
+
error?: undefined;
|
|
23329
|
+
data: unknown;
|
|
23330
|
+
meta?: {} | undefined;
|
|
23331
|
+
} | {
|
|
23332
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23333
|
+
data?: undefined;
|
|
23334
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23335
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23336
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23337
|
+
data?: undefined;
|
|
23338
|
+
meta?: {} | undefined;
|
|
23339
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23340
|
+
currentData?: QueryResultsData | undefined;
|
|
23341
|
+
isUninitialized: false;
|
|
23342
|
+
isLoading: false;
|
|
23343
|
+
isFetching: false;
|
|
23344
|
+
isSuccess: false;
|
|
23345
|
+
isError: false;
|
|
23346
|
+
}, "data" | "isLoading" | "isFetching"> & {
|
|
23347
|
+
isLoading: true;
|
|
23348
|
+
isFetching: boolean;
|
|
23349
|
+
data: undefined;
|
|
23350
|
+
}) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23351
|
+
baseQueryType?: BaseQueryTypes;
|
|
23352
|
+
apiName?: string;
|
|
23353
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23354
|
+
}) => {
|
|
23355
|
+
error?: undefined;
|
|
23356
|
+
data: unknown;
|
|
23357
|
+
meta?: {} | undefined;
|
|
23358
|
+
} | {
|
|
23359
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23360
|
+
data?: undefined;
|
|
23361
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23362
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23363
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23364
|
+
data?: undefined;
|
|
23365
|
+
meta?: {} | undefined;
|
|
23366
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23367
|
+
currentData?: QueryResultsData | undefined;
|
|
23368
|
+
isUninitialized: false;
|
|
23369
|
+
isLoading: false;
|
|
23370
|
+
isFetching: false;
|
|
23371
|
+
isSuccess: false;
|
|
23372
|
+
isError: false;
|
|
23373
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
|
|
23374
|
+
isSuccess: true;
|
|
23375
|
+
isFetching: true;
|
|
23376
|
+
error: undefined;
|
|
23377
|
+
} & {
|
|
23378
|
+
data: QueryResultsData;
|
|
23379
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23380
|
+
baseQueryType?: BaseQueryTypes;
|
|
23381
|
+
apiName?: string;
|
|
23382
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23383
|
+
}) => {
|
|
23384
|
+
error?: undefined;
|
|
23385
|
+
data: unknown;
|
|
23386
|
+
meta?: {} | undefined;
|
|
23387
|
+
} | {
|
|
23388
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23389
|
+
data?: undefined;
|
|
23390
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23391
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23392
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23393
|
+
data?: undefined;
|
|
23394
|
+
meta?: {} | undefined;
|
|
23395
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23396
|
+
currentData?: QueryResultsData | undefined;
|
|
23397
|
+
isUninitialized: false;
|
|
23398
|
+
isLoading: false;
|
|
23399
|
+
isFetching: false;
|
|
23400
|
+
isSuccess: false;
|
|
23401
|
+
isError: false;
|
|
23402
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23403
|
+
baseQueryType?: BaseQueryTypes;
|
|
23404
|
+
apiName?: string;
|
|
23405
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23406
|
+
}) => {
|
|
23407
|
+
error?: undefined;
|
|
23408
|
+
data: unknown;
|
|
23409
|
+
meta?: {} | undefined;
|
|
23410
|
+
} | {
|
|
23411
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23412
|
+
data?: undefined;
|
|
23413
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23414
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23415
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23416
|
+
data?: undefined;
|
|
23417
|
+
meta?: {} | undefined;
|
|
23418
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23419
|
+
currentData?: QueryResultsData | undefined;
|
|
23420
|
+
isUninitialized: false;
|
|
23421
|
+
isLoading: false;
|
|
23422
|
+
isFetching: false;
|
|
23423
|
+
isSuccess: false;
|
|
23424
|
+
isError: false;
|
|
23425
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
|
|
23426
|
+
isSuccess: true;
|
|
23427
|
+
isFetching: false;
|
|
23428
|
+
error: undefined;
|
|
23429
|
+
} & {
|
|
23430
|
+
data: QueryResultsData;
|
|
23431
|
+
currentData: QueryResultsData;
|
|
23432
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23433
|
+
baseQueryType?: BaseQueryTypes;
|
|
23434
|
+
apiName?: string;
|
|
23435
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23436
|
+
}) => {
|
|
23437
|
+
error?: undefined;
|
|
23438
|
+
data: unknown;
|
|
23439
|
+
meta?: {} | undefined;
|
|
23440
|
+
} | {
|
|
23441
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23442
|
+
data?: undefined;
|
|
23443
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23444
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23445
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23446
|
+
data?: undefined;
|
|
23447
|
+
meta?: {} | undefined;
|
|
23448
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23449
|
+
currentData?: QueryResultsData | undefined;
|
|
23450
|
+
isUninitialized: false;
|
|
23451
|
+
isLoading: false;
|
|
23452
|
+
isFetching: false;
|
|
23453
|
+
isSuccess: false;
|
|
23454
|
+
isError: false;
|
|
23455
|
+
}, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23456
|
+
baseQueryType?: BaseQueryTypes;
|
|
23457
|
+
apiName?: string;
|
|
23458
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23459
|
+
}) => {
|
|
23460
|
+
error?: undefined;
|
|
23461
|
+
data: unknown;
|
|
23462
|
+
meta?: {} | undefined;
|
|
23463
|
+
} | {
|
|
23464
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23465
|
+
data?: undefined;
|
|
23466
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23467
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23468
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23469
|
+
data?: undefined;
|
|
23470
|
+
meta?: {} | undefined;
|
|
23471
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23472
|
+
currentData?: QueryResultsData | undefined;
|
|
23473
|
+
isUninitialized: false;
|
|
23474
|
+
isLoading: false;
|
|
23475
|
+
isFetching: false;
|
|
23476
|
+
isSuccess: false;
|
|
23477
|
+
isError: false;
|
|
23478
|
+
}, "error" | "isError"> & {
|
|
23479
|
+
isError: true;
|
|
23480
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23481
|
+
baseQueryType?: BaseQueryTypes;
|
|
23482
|
+
apiName?: string;
|
|
23483
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23484
|
+
}) => {
|
|
23485
|
+
error?: undefined;
|
|
23486
|
+
data: unknown;
|
|
23487
|
+
meta?: {} | undefined;
|
|
23488
|
+
} | {
|
|
23489
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23490
|
+
data?: undefined;
|
|
23491
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23492
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23493
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23494
|
+
data?: undefined;
|
|
23495
|
+
meta?: {} | undefined;
|
|
23496
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>> & {
|
|
23497
|
+
currentData?: QueryResultsData | undefined;
|
|
23498
|
+
isUninitialized: false;
|
|
23499
|
+
isLoading: false;
|
|
23500
|
+
isFetching: false;
|
|
23501
|
+
isSuccess: false;
|
|
23502
|
+
isError: false;
|
|
23503
|
+
}, "error">>)> & {
|
|
23504
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
23505
|
+
}) => R) | undefined;
|
|
23506
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
23507
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
23508
|
+
baseQueryType?: BaseQueryTypes;
|
|
23509
|
+
apiName?: string;
|
|
23510
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
23511
|
+
}) => {
|
|
23512
|
+
error?: undefined;
|
|
23513
|
+
data: unknown;
|
|
23514
|
+
meta?: {} | undefined;
|
|
23515
|
+
} | {
|
|
23516
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
23517
|
+
data?: undefined;
|
|
23518
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
23519
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
23520
|
+
error: graphql.GraphQLError[] | undefined;
|
|
23521
|
+
data?: undefined;
|
|
23522
|
+
meta?: {} | undefined;
|
|
23523
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, QueryResultsData, "orchestratorApi", unknown>>;
|
|
23524
|
+
};
|
|
23525
|
+
|
|
23098
23526
|
type CustomApiConfig = {
|
|
23099
23527
|
apiName: string;
|
|
23100
23528
|
apiBaseUrl: string;
|
|
@@ -23112,6 +23540,14 @@ type OrchestratorComponentOverride = {
|
|
|
23112
23540
|
startPage?: {
|
|
23113
23541
|
summaryCardConfigurationOverride?: (defaultItems: ReactElement[]) => ReactElement[];
|
|
23114
23542
|
};
|
|
23543
|
+
stepDetail?: {
|
|
23544
|
+
stepHeader?: React.JSXElementConstructor<{
|
|
23545
|
+
step?: Step;
|
|
23546
|
+
}>;
|
|
23547
|
+
stepBody?: React.JSXElementConstructor<{
|
|
23548
|
+
step?: Step;
|
|
23549
|
+
}>;
|
|
23550
|
+
};
|
|
23115
23551
|
subscriptionDetail?: {
|
|
23116
23552
|
valueOverrides?: ValueOverrideConfiguration;
|
|
23117
23553
|
generalSectionConfigurationOverride?: (defaultSections: WfoSubscriptionDetailGeneralConfiguration[], subscriptionDetail: SubscriptionDetail) => WfoSubscriptionDetailGeneralConfiguration[];
|
|
@@ -23916,7 +24352,7 @@ type PathInfo$1 = {
|
|
|
23916
24352
|
pathCount?: number;
|
|
23917
24353
|
};
|
|
23918
24354
|
/** ---------- Agent visualization types ---------- */
|
|
23919
|
-
type
|
|
24355
|
+
type ResultRow = {
|
|
23920
24356
|
group_values: Record<string, string>;
|
|
23921
24357
|
aggregations: Record<string, number>;
|
|
23922
24358
|
};
|
|
@@ -23929,14 +24365,27 @@ declare enum VisualizationType {
|
|
|
23929
24365
|
LINE = "line",
|
|
23930
24366
|
TABLE = "table"
|
|
23931
24367
|
}
|
|
23932
|
-
type
|
|
23933
|
-
results:
|
|
23934
|
-
|
|
24368
|
+
type QueryResultsData = {
|
|
24369
|
+
results: ResultRow[];
|
|
24370
|
+
total_results: number;
|
|
23935
24371
|
metadata: SearchMetadata;
|
|
23936
24372
|
visualization_type: {
|
|
23937
24373
|
type: VisualizationType;
|
|
23938
24374
|
};
|
|
23939
24375
|
};
|
|
24376
|
+
type QueryArtifact = {
|
|
24377
|
+
query_id: string;
|
|
24378
|
+
total_results: number;
|
|
24379
|
+
visualization_type: {
|
|
24380
|
+
type: VisualizationType;
|
|
24381
|
+
};
|
|
24382
|
+
description: string;
|
|
24383
|
+
};
|
|
24384
|
+
type ExportArtifact = {
|
|
24385
|
+
query_id: string;
|
|
24386
|
+
download_url: string;
|
|
24387
|
+
description: string;
|
|
24388
|
+
};
|
|
23940
24389
|
|
|
23941
24390
|
type WfoSubscriptionStatusBadgeProps = {
|
|
23942
24391
|
status?: SubscriptionStatus;
|
|
@@ -23983,6 +24432,7 @@ type WfoWorkflowTargetBadgeProps = {
|
|
|
23983
24432
|
declare const WfoWorkflowTargetBadge: FC<WfoWorkflowTargetBadgeProps>;
|
|
23984
24433
|
|
|
23985
24434
|
interface WfoWebsocketStatusBadgeProps {
|
|
24435
|
+
wsUrl?: string;
|
|
23986
24436
|
hideWhenConnected?: boolean;
|
|
23987
24437
|
}
|
|
23988
24438
|
declare const WfoWebsocketStatusBadge: FC<WfoWebsocketStatusBadgeProps>;
|
|
@@ -24670,8 +25120,9 @@ declare const WfoProductsSummaryCard: () => _emotion_react_jsx_runtime.JSX.Eleme
|
|
|
24670
25120
|
|
|
24671
25121
|
interface WfoTitleWithWebsocketBadgeProps {
|
|
24672
25122
|
title: string;
|
|
25123
|
+
wsUrl?: string;
|
|
24673
25124
|
}
|
|
24674
|
-
declare const WfoTitleWithWebsocketBadge: ({ title }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
25125
|
+
declare const WfoTitleWithWebsocketBadge: ({ title, wsUrl }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
24675
25126
|
|
|
24676
25127
|
interface WfoRadioDropdownProps<T> {
|
|
24677
25128
|
options: WfoRadioDropdownOption<T>[];
|
|
@@ -27141,25 +27592,51 @@ declare const buildSearchParams: (debouncedQuery: SearchQuery | string, selected
|
|
|
27141
27592
|
declare function WfoAgent(): _emotion_react_jsx_runtime.JSX.Element;
|
|
27142
27593
|
|
|
27143
27594
|
type WfoAgentTableProps = {
|
|
27144
|
-
aggregationData:
|
|
27595
|
+
aggregationData: QueryResultsData;
|
|
27145
27596
|
};
|
|
27146
27597
|
declare function WfoAgentTable({ aggregationData }: WfoAgentTableProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
27147
27598
|
|
|
27148
27599
|
type WfoAgentLineChartProps = {
|
|
27149
|
-
aggregationData:
|
|
27600
|
+
aggregationData: QueryResultsData;
|
|
27150
27601
|
};
|
|
27151
27602
|
declare function WfoAgentLineChart({ aggregationData }: WfoAgentLineChartProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
27152
27603
|
|
|
27153
27604
|
type WfoAgentPieChartProps = {
|
|
27154
|
-
aggregationData:
|
|
27605
|
+
aggregationData: QueryResultsData;
|
|
27155
27606
|
};
|
|
27156
27607
|
declare function WfoAgentPieChart({ aggregationData }: WfoAgentPieChartProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
27157
27608
|
|
|
27158
27609
|
type WfoAgentVisualizationProps = {
|
|
27159
|
-
aggregationData:
|
|
27610
|
+
aggregationData: QueryResultsData;
|
|
27160
27611
|
};
|
|
27161
27612
|
declare function WfoAgentVisualization({ aggregationData }: WfoAgentVisualizationProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
27162
27613
|
|
|
27614
|
+
type ToolCallState = {
|
|
27615
|
+
id: string;
|
|
27616
|
+
name: string;
|
|
27617
|
+
status: 'executing' | 'complete';
|
|
27618
|
+
};
|
|
27619
|
+
type PlanStep = {
|
|
27620
|
+
step_name: string;
|
|
27621
|
+
reasoning: string | null;
|
|
27622
|
+
status: 'pending' | 'active' | 'completed';
|
|
27623
|
+
tool_calls: ToolCallState[];
|
|
27624
|
+
};
|
|
27625
|
+
type PlanExecutionState = {
|
|
27626
|
+
planning: boolean;
|
|
27627
|
+
steps: PlanStep[];
|
|
27628
|
+
};
|
|
27629
|
+
|
|
27630
|
+
type WfoPlanProgressProps = {
|
|
27631
|
+
executionState: PlanExecutionState;
|
|
27632
|
+
};
|
|
27633
|
+
declare const WfoPlanProgress: ({ executionState }: WfoPlanProgressProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
27634
|
+
|
|
27635
|
+
type WfoQueryArtifactProps = {
|
|
27636
|
+
artifact: QueryArtifact;
|
|
27637
|
+
};
|
|
27638
|
+
declare function WfoQueryArtifact({ artifact }: WfoQueryArtifactProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
27639
|
+
|
|
27163
27640
|
type WfoMonacoCodeBlockProps = {
|
|
27164
27641
|
data: object;
|
|
27165
27642
|
};
|
|
@@ -27216,8 +27693,9 @@ declare const METADATA_PRODUCT_BLOCK_ENDPOINT = "product_blocks";
|
|
|
27216
27693
|
declare const METADATA_RESOURCE_TYPE_ENDPOINT = "resource_types";
|
|
27217
27694
|
declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
|
|
27218
27695
|
declare const METADATA_SCHEDULES_ENDPOINT = "schedules";
|
|
27696
|
+
declare const SEARCH_QUERY_RESULTS_ENDPOINT = "search/queries";
|
|
27219
27697
|
|
|
27220
|
-
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "7.
|
|
27698
|
+
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "7.7.0";
|
|
27221
27699
|
|
|
27222
27700
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
27223
27701
|
pydanticForms: {
|
|
@@ -27685,6 +28163,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
27685
28163
|
subscriptionId: string;
|
|
27686
28164
|
description: string;
|
|
27687
28165
|
startDate: string;
|
|
28166
|
+
lastRunValidation: string;
|
|
28167
|
+
noValidateWorkflows: string;
|
|
27688
28168
|
insync: string;
|
|
27689
28169
|
customer: string;
|
|
27690
28170
|
customerUuid: string;
|
|
@@ -27853,6 +28333,11 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
27853
28333
|
get_valid_operators: string;
|
|
27854
28334
|
set_temporal_grouping: string;
|
|
27855
28335
|
};
|
|
28336
|
+
planProgress: {
|
|
28337
|
+
planning: string;
|
|
28338
|
+
completed: string;
|
|
28339
|
+
executing: string;
|
|
28340
|
+
};
|
|
27856
28341
|
visualization: {
|
|
27857
28342
|
noDataAvailable: string;
|
|
27858
28343
|
invalidDataStructure: string;
|
|
@@ -28401,6 +28886,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
28401
28886
|
subscriptionId: string;
|
|
28402
28887
|
description: string;
|
|
28403
28888
|
startDate: string;
|
|
28889
|
+
lastRunValidation: string;
|
|
28890
|
+
noValidateWorkflows: string;
|
|
28404
28891
|
insync: string;
|
|
28405
28892
|
customer: string;
|
|
28406
28893
|
customerUuid: string;
|
|
@@ -28562,7 +29049,9 @@ declare const graphQlWorkflowListMapper: ({ field, order }: GraphQLSort<Workflow
|
|
|
28562
29049
|
order: SortOrder;
|
|
28563
29050
|
};
|
|
28564
29051
|
|
|
28565
|
-
declare const
|
|
29052
|
+
declare const WfoScheduleTaskFormPageHardCoded: () => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
29053
|
+
declare const WfoScheduleTaskFormPageBackend: () => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
29054
|
+
declare const WfoScheduleTaskFormPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
28566
29055
|
|
|
28567
29056
|
declare const RENDER_ALL = "RENDER_ALL";
|
|
28568
29057
|
declare enum RenderDirection {
|
|
@@ -28729,4 +29218,4 @@ declare enum WfoQueryParams {
|
|
|
28729
29218
|
}
|
|
28730
29219
|
declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
|
|
28731
29220
|
|
|
28732
|
-
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AggregationResult, type AggregationResultsData, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, type EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldValue, type FileUploadPayload, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type Group, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, 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 PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo$1 as PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, RetrieverType, type RootState, Row, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoAgent, WfoAgentLineChart, type WfoAgentLineChartProps, WfoAgentPieChart, type WfoAgentPieChartProps, WfoAgentTable, type WfoAgentTableProps, WfoAgentVisualization, type WfoAgentVisualizationProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, 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, WfoPydanticForm, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, 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, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useAgentAvailability, useCheckAgentAvailabilityQuery, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchMutation, useSearchPathsQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|
|
29221
|
+
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, type EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExportArtifact, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldValue, type FileUploadPayload, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type Group, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, 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 PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo$1 as PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, type QueryArtifact, type QueryResultsData, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type ResultRow, RetrieverType, type RootState, Row, SEARCH_QUERY_RESULTS_ENDPOINT, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoAgent, WfoAgentLineChart, type WfoAgentLineChartProps, WfoAgentPieChart, type WfoAgentPieChartProps, WfoAgentTable, type WfoAgentTableProps, WfoAgentVisualization, type WfoAgentVisualizationProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlanProgress, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, 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, WfoPydanticForm, WfoQueryArtifact, type WfoQueryArtifactProps, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduleTaskFormPageBackend, WfoScheduleTaskFormPageHardCoded, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, 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, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useAgentAvailability, useCheckAgentAvailabilityQuery, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetAgentQueryResultsQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchMutation, useSearchPathsQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|