@orchestrator-ui/orchestrator-ui-components 4.2.0 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +8 -8
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +6 -6
- package/CHANGELOG.md +26 -0
- package/dist/index.d.ts +2115 -336
- package/dist/index.js +2147 -1670
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/WfoBadges/WfoSubscriptionStatusBadge/WfoSubscriptionStatusBadge.tsx +6 -5
- package/src/components/WfoBadges/WfoWorkflowTargetBadge/WfoWorkflowTargetBadge.tsx +1 -0
- package/src/components/WfoButtonComboBox/WfoButtonComboBox.tsx +79 -0
- package/src/components/WfoButtonComboBox/index.ts +1 -0
- package/src/components/WfoButtonComboBox/styles.ts +28 -0
- package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +1 -1
- package/src/components/WfoForms/formFields/commonStyles.ts +2 -0
- package/src/components/WfoForms/formFields/index.ts +1 -0
- package/src/components/WfoPydanticForm/Footer.tsx +75 -34
- package/src/components/WfoPydanticForm/Row.tsx +2 -2
- package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +99 -8
- package/src/components/WfoPydanticForm/fields/Checkbox.tsx +22 -0
- package/src/components/WfoPydanticForm/fields/Divider.tsx +17 -0
- package/src/components/WfoPydanticForm/fields/Label.tsx +23 -0
- package/src/components/WfoPydanticForm/fields/Summary.tsx +125 -0
- package/src/components/WfoPydanticForm/fields/Text.tsx +28 -0
- package/src/components/WfoPydanticForm/fields/index.ts +5 -0
- package/src/components/WfoSubscription/WfoInSyncField.tsx +2 -2
- package/src/components/WfoSubscription/WfoSubscription.tsx +3 -2
- package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +3 -3
- package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +64 -14
- package/src/components/WfoSubscription/utils/utils.spec.ts +121 -0
- package/src/components/WfoSubscription/utils/utils.ts +42 -6
- package/src/configuration/version.ts +1 -1
- package/src/contexts/TreeContext.tsx +16 -0
- package/src/icons/WfoExclamationTriangle.tsx +29 -0
- package/src/icons/index.ts +1 -0
- package/src/messages/en-GB.json +2 -0
- package/src/messages/nl-NL.json +2 -0
- package/src/pages/metadata/WfoTasksPage.tsx +11 -26
- package/src/pages/metadata/WfoWorkflowsPage.tsx +11 -12
- package/src/rtk/endpoints/index.ts +1 -0
- package/src/rtk/endpoints/metadata/tasks.ts +9 -4
- package/src/rtk/endpoints/metadata/workflows.ts +10 -5
- package/src/rtk/endpoints/startOptions.ts +9 -3
- package/src/types/types.ts +7 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import React__default, { ReactNode, FC, ReactElement, CSSProperties, Ref, HTMLAttributeAnchorTarget, ComponentType, HTMLProps, FunctionComponent, ErrorInfo } from 'react';
|
|
3
|
-
import { EuiBadgeProps, EuiThemeComputed, EuiThemeModifications, EuiThemeColorModeStandard, EuiContextMenuPanelDescriptor, EuiThemeColorMode, EuiSideNavItemType } from '@elastic/eui';
|
|
3
|
+
import { EuiBadgeProps, EuiThemeComputed, EuiThemeModifications, EuiThemeColorModeStandard, EuiContextMenuPanelDescriptor, EuiThemeColorMode, EuiSideNavItemType, EuiSelectableOption } from '@elastic/eui';
|
|
4
4
|
import { TextSize } from '@elastic/eui/src/components/text/text';
|
|
5
5
|
import { TextColor } from '@elastic/eui/src/components/text/text_color';
|
|
6
6
|
import { JSONSchema6 } from 'json-schema';
|
|
@@ -2539,7 +2539,7 @@ declare const useUpdateResourceTypeMutation: <R extends Record<string, any> = ({
|
|
|
2539
2539
|
}];
|
|
2540
2540
|
|
|
2541
2541
|
declare const workflowsDescription = "\nquery MetadataWorkflowsDescription(\n $workflowName: String!\n) {\n workflows(\n filterBy: [{ field: \"name\", value: $workflowName }]\n ) {\n page {\n name\n description\n }\n }\n}\n";
|
|
2542
|
-
declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"target\", value: \"CREATE|MODIFY|TERMINATE\" }\n ) {\n page {\n workflowId\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
|
|
2542
|
+
declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"target\", value: \"CREATE|MODIFY|TERMINATE\" }\n ) {\n page {\n workflowId\n name\n description\n target\n isTask\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
|
|
2543
2543
|
type WorkflowsDescriptionQueryVariables = {
|
|
2544
2544
|
workflowName: string;
|
|
2545
2545
|
};
|
|
@@ -2580,7 +2580,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2580
2580
|
error: graphql.GraphQLError[] | undefined;
|
|
2581
2581
|
data?: undefined;
|
|
2582
2582
|
meta?: {} | undefined;
|
|
2583
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2583
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2584
2584
|
currentData?: WorkflowsResponse | undefined;
|
|
2585
2585
|
isUninitialized: false;
|
|
2586
2586
|
isLoading: false;
|
|
@@ -2610,7 +2610,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2610
2610
|
error: graphql.GraphQLError[] | undefined;
|
|
2611
2611
|
data?: undefined;
|
|
2612
2612
|
meta?: {} | undefined;
|
|
2613
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2613
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2614
2614
|
currentData?: WorkflowsResponse | undefined;
|
|
2615
2615
|
isUninitialized: false;
|
|
2616
2616
|
isLoading: false;
|
|
@@ -2636,7 +2636,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2636
2636
|
error: graphql.GraphQLError[] | undefined;
|
|
2637
2637
|
data?: undefined;
|
|
2638
2638
|
meta?: {} | undefined;
|
|
2639
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2639
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2640
2640
|
currentData?: WorkflowsResponse | undefined;
|
|
2641
2641
|
isUninitialized: false;
|
|
2642
2642
|
isLoading: false;
|
|
@@ -2660,7 +2660,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2660
2660
|
error: graphql.GraphQLError[] | undefined;
|
|
2661
2661
|
data?: undefined;
|
|
2662
2662
|
meta?: {} | undefined;
|
|
2663
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2663
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2664
2664
|
currentData?: WorkflowsResponse | undefined;
|
|
2665
2665
|
isUninitialized: false;
|
|
2666
2666
|
isLoading: false;
|
|
@@ -2707,7 +2707,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2707
2707
|
error: graphql.GraphQLError[] | undefined;
|
|
2708
2708
|
data?: undefined;
|
|
2709
2709
|
meta?: {} | undefined;
|
|
2710
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2710
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2711
2711
|
currentData?: WorkflowsResponse | undefined;
|
|
2712
2712
|
isUninitialized: false;
|
|
2713
2713
|
isLoading: false;
|
|
@@ -2737,7 +2737,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2737
2737
|
error: graphql.GraphQLError[] | undefined;
|
|
2738
2738
|
data?: undefined;
|
|
2739
2739
|
meta?: {} | undefined;
|
|
2740
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2740
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2741
2741
|
currentData?: WorkflowsResponse | undefined;
|
|
2742
2742
|
isUninitialized: false;
|
|
2743
2743
|
isLoading: false;
|
|
@@ -2763,7 +2763,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2763
2763
|
error: graphql.GraphQLError[] | undefined;
|
|
2764
2764
|
data?: undefined;
|
|
2765
2765
|
meta?: {} | undefined;
|
|
2766
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2766
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2767
2767
|
currentData?: WorkflowsResponse | undefined;
|
|
2768
2768
|
isUninitialized: false;
|
|
2769
2769
|
isLoading: false;
|
|
@@ -2787,7 +2787,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2787
2787
|
error: graphql.GraphQLError[] | undefined;
|
|
2788
2788
|
data?: undefined;
|
|
2789
2789
|
meta?: {} | undefined;
|
|
2790
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2790
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2791
2791
|
currentData?: WorkflowsResponse | undefined;
|
|
2792
2792
|
isUninitialized: false;
|
|
2793
2793
|
isLoading: false;
|
|
@@ -2813,7 +2813,7 @@ declare const useGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
2813
2813
|
error: graphql.GraphQLError[] | undefined;
|
|
2814
2814
|
data?: undefined;
|
|
2815
2815
|
meta?: {} | undefined;
|
|
2816
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>>;
|
|
2816
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>>;
|
|
2817
2817
|
};
|
|
2818
2818
|
declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
2819
2819
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
@@ -2848,7 +2848,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2848
2848
|
error: graphql.GraphQLError[] | undefined;
|
|
2849
2849
|
data?: undefined;
|
|
2850
2850
|
meta?: {} | undefined;
|
|
2851
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2851
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2852
2852
|
currentData?: WorkflowsResponse | undefined;
|
|
2853
2853
|
isUninitialized: false;
|
|
2854
2854
|
isLoading: false;
|
|
@@ -2878,7 +2878,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2878
2878
|
error: graphql.GraphQLError[] | undefined;
|
|
2879
2879
|
data?: undefined;
|
|
2880
2880
|
meta?: {} | undefined;
|
|
2881
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2881
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2882
2882
|
currentData?: WorkflowsResponse | undefined;
|
|
2883
2883
|
isUninitialized: false;
|
|
2884
2884
|
isLoading: false;
|
|
@@ -2904,7 +2904,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2904
2904
|
error: graphql.GraphQLError[] | undefined;
|
|
2905
2905
|
data?: undefined;
|
|
2906
2906
|
meta?: {} | undefined;
|
|
2907
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2907
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2908
2908
|
currentData?: WorkflowsResponse | undefined;
|
|
2909
2909
|
isUninitialized: false;
|
|
2910
2910
|
isLoading: false;
|
|
@@ -2928,7 +2928,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2928
2928
|
error: graphql.GraphQLError[] | undefined;
|
|
2929
2929
|
data?: undefined;
|
|
2930
2930
|
meta?: {} | undefined;
|
|
2931
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2931
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2932
2932
|
currentData?: WorkflowsResponse | undefined;
|
|
2933
2933
|
isUninitialized: false;
|
|
2934
2934
|
isLoading: false;
|
|
@@ -2972,7 +2972,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
2972
2972
|
error: graphql.GraphQLError[] | undefined;
|
|
2973
2973
|
data?: undefined;
|
|
2974
2974
|
meta?: {} | undefined;
|
|
2975
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
2975
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
2976
2976
|
currentData?: WorkflowsResponse | undefined;
|
|
2977
2977
|
isUninitialized: false;
|
|
2978
2978
|
isLoading: false;
|
|
@@ -3002,7 +3002,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
3002
3002
|
error: graphql.GraphQLError[] | undefined;
|
|
3003
3003
|
data?: undefined;
|
|
3004
3004
|
meta?: {} | undefined;
|
|
3005
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
3005
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3006
3006
|
currentData?: WorkflowsResponse | undefined;
|
|
3007
3007
|
isUninitialized: false;
|
|
3008
3008
|
isLoading: false;
|
|
@@ -3028,7 +3028,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
3028
3028
|
error: graphql.GraphQLError[] | undefined;
|
|
3029
3029
|
data?: undefined;
|
|
3030
3030
|
meta?: {} | undefined;
|
|
3031
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
3031
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3032
3032
|
currentData?: WorkflowsResponse | undefined;
|
|
3033
3033
|
isUninitialized: false;
|
|
3034
3034
|
isLoading: false;
|
|
@@ -3052,7 +3052,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
3052
3052
|
error: graphql.GraphQLError[] | undefined;
|
|
3053
3053
|
data?: undefined;
|
|
3054
3054
|
meta?: {} | undefined;
|
|
3055
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>> & {
|
|
3055
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3056
3056
|
currentData?: WorkflowsResponse | undefined;
|
|
3057
3057
|
isUninitialized: false;
|
|
3058
3058
|
isLoading: false;
|
|
@@ -3077,7 +3077,7 @@ declare const useLazyGetWorkflowsQuery: <R extends Record<string, any> = _reduxj
|
|
|
3077
3077
|
error: graphql.GraphQLError[] | undefined;
|
|
3078
3078
|
data?: undefined;
|
|
3079
3079
|
meta?: {} | undefined;
|
|
3080
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
3080
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsResponse | undefined, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
3081
3081
|
reset: () => void;
|
|
3082
3082
|
}, {
|
|
3083
3083
|
lastArg: GraphqlQueryVariables<WorkflowDefinition>;
|
|
@@ -3527,7 +3527,7 @@ declare const useUpdateWorkflowMutation: <R extends Record<string, any> = ({
|
|
|
3527
3527
|
reset: () => void;
|
|
3528
3528
|
}];
|
|
3529
3529
|
|
|
3530
|
-
declare const tasksQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"
|
|
3530
|
+
declare const tasksQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"isTask\", value: \"true\" }\n ) {\n page {\n workflowId\n name\n description\n target\n isTask\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
|
|
3531
3531
|
type TasksResponse = {
|
|
3532
3532
|
tasks: TaskDefinition[];
|
|
3533
3533
|
} & BaseGraphQlResult;
|
|
@@ -3564,7 +3564,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3564
3564
|
error: graphql.GraphQLError[] | undefined;
|
|
3565
3565
|
data?: undefined;
|
|
3566
3566
|
meta?: {} | undefined;
|
|
3567
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3567
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3568
3568
|
currentData?: TasksResponse | undefined;
|
|
3569
3569
|
isUninitialized: false;
|
|
3570
3570
|
isLoading: false;
|
|
@@ -3594,7 +3594,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3594
3594
|
error: graphql.GraphQLError[] | undefined;
|
|
3595
3595
|
data?: undefined;
|
|
3596
3596
|
meta?: {} | undefined;
|
|
3597
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3597
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3598
3598
|
currentData?: TasksResponse | undefined;
|
|
3599
3599
|
isUninitialized: false;
|
|
3600
3600
|
isLoading: false;
|
|
@@ -3620,7 +3620,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3620
3620
|
error: graphql.GraphQLError[] | undefined;
|
|
3621
3621
|
data?: undefined;
|
|
3622
3622
|
meta?: {} | undefined;
|
|
3623
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3623
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3624
3624
|
currentData?: TasksResponse | undefined;
|
|
3625
3625
|
isUninitialized: false;
|
|
3626
3626
|
isLoading: false;
|
|
@@ -3644,7 +3644,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3644
3644
|
error: graphql.GraphQLError[] | undefined;
|
|
3645
3645
|
data?: undefined;
|
|
3646
3646
|
meta?: {} | undefined;
|
|
3647
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3647
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3648
3648
|
currentData?: TasksResponse | undefined;
|
|
3649
3649
|
isUninitialized: false;
|
|
3650
3650
|
isLoading: false;
|
|
@@ -3691,7 +3691,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3691
3691
|
error: graphql.GraphQLError[] | undefined;
|
|
3692
3692
|
data?: undefined;
|
|
3693
3693
|
meta?: {} | undefined;
|
|
3694
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3694
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3695
3695
|
currentData?: TasksResponse | undefined;
|
|
3696
3696
|
isUninitialized: false;
|
|
3697
3697
|
isLoading: false;
|
|
@@ -3721,7 +3721,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3721
3721
|
error: graphql.GraphQLError[] | undefined;
|
|
3722
3722
|
data?: undefined;
|
|
3723
3723
|
meta?: {} | undefined;
|
|
3724
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3724
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3725
3725
|
currentData?: TasksResponse | undefined;
|
|
3726
3726
|
isUninitialized: false;
|
|
3727
3727
|
isLoading: false;
|
|
@@ -3747,7 +3747,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3747
3747
|
error: graphql.GraphQLError[] | undefined;
|
|
3748
3748
|
data?: undefined;
|
|
3749
3749
|
meta?: {} | undefined;
|
|
3750
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3750
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3751
3751
|
currentData?: TasksResponse | undefined;
|
|
3752
3752
|
isUninitialized: false;
|
|
3753
3753
|
isLoading: false;
|
|
@@ -3771,7 +3771,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3771
3771
|
error: graphql.GraphQLError[] | undefined;
|
|
3772
3772
|
data?: undefined;
|
|
3773
3773
|
meta?: {} | undefined;
|
|
3774
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3774
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3775
3775
|
currentData?: TasksResponse | undefined;
|
|
3776
3776
|
isUninitialized: false;
|
|
3777
3777
|
isLoading: false;
|
|
@@ -3797,7 +3797,7 @@ declare const useGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolki
|
|
|
3797
3797
|
error: graphql.GraphQLError[] | undefined;
|
|
3798
3798
|
data?: undefined;
|
|
3799
3799
|
meta?: {} | undefined;
|
|
3800
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>>;
|
|
3800
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>>;
|
|
3801
3801
|
};
|
|
3802
3802
|
declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3803
3803
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
@@ -3832,7 +3832,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3832
3832
|
error: graphql.GraphQLError[] | undefined;
|
|
3833
3833
|
data?: undefined;
|
|
3834
3834
|
meta?: {} | undefined;
|
|
3835
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3835
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3836
3836
|
currentData?: TasksResponse | undefined;
|
|
3837
3837
|
isUninitialized: false;
|
|
3838
3838
|
isLoading: false;
|
|
@@ -3862,7 +3862,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3862
3862
|
error: graphql.GraphQLError[] | undefined;
|
|
3863
3863
|
data?: undefined;
|
|
3864
3864
|
meta?: {} | undefined;
|
|
3865
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3865
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3866
3866
|
currentData?: TasksResponse | undefined;
|
|
3867
3867
|
isUninitialized: false;
|
|
3868
3868
|
isLoading: false;
|
|
@@ -3888,7 +3888,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3888
3888
|
error: graphql.GraphQLError[] | undefined;
|
|
3889
3889
|
data?: undefined;
|
|
3890
3890
|
meta?: {} | undefined;
|
|
3891
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3891
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3892
3892
|
currentData?: TasksResponse | undefined;
|
|
3893
3893
|
isUninitialized: false;
|
|
3894
3894
|
isLoading: false;
|
|
@@ -3912,7 +3912,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3912
3912
|
error: graphql.GraphQLError[] | undefined;
|
|
3913
3913
|
data?: undefined;
|
|
3914
3914
|
meta?: {} | undefined;
|
|
3915
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3915
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3916
3916
|
currentData?: TasksResponse | undefined;
|
|
3917
3917
|
isUninitialized: false;
|
|
3918
3918
|
isLoading: false;
|
|
@@ -3956,7 +3956,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3956
3956
|
error: graphql.GraphQLError[] | undefined;
|
|
3957
3957
|
data?: undefined;
|
|
3958
3958
|
meta?: {} | undefined;
|
|
3959
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3959
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3960
3960
|
currentData?: TasksResponse | undefined;
|
|
3961
3961
|
isUninitialized: false;
|
|
3962
3962
|
isLoading: false;
|
|
@@ -3986,7 +3986,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
3986
3986
|
error: graphql.GraphQLError[] | undefined;
|
|
3987
3987
|
data?: undefined;
|
|
3988
3988
|
meta?: {} | undefined;
|
|
3989
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
3989
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
3990
3990
|
currentData?: TasksResponse | undefined;
|
|
3991
3991
|
isUninitialized: false;
|
|
3992
3992
|
isLoading: false;
|
|
@@ -4012,7 +4012,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
4012
4012
|
error: graphql.GraphQLError[] | undefined;
|
|
4013
4013
|
data?: undefined;
|
|
4014
4014
|
meta?: {} | undefined;
|
|
4015
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
4015
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
4016
4016
|
currentData?: TasksResponse | undefined;
|
|
4017
4017
|
isUninitialized: false;
|
|
4018
4018
|
isLoading: false;
|
|
@@ -4036,7 +4036,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
4036
4036
|
error: graphql.GraphQLError[] | undefined;
|
|
4037
4037
|
data?: undefined;
|
|
4038
4038
|
meta?: {} | undefined;
|
|
4039
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>> & {
|
|
4039
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>> & {
|
|
4040
4040
|
currentData?: TasksResponse | undefined;
|
|
4041
4041
|
isUninitialized: false;
|
|
4042
4042
|
isLoading: false;
|
|
@@ -4061,7 +4061,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
4061
4061
|
error: graphql.GraphQLError[] | undefined;
|
|
4062
4062
|
data?: undefined;
|
|
4063
4063
|
meta?: {} | undefined;
|
|
4064
|
-
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
4064
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, TasksResponse | undefined, "orchestratorApi", unknown>>, [R][R extends any ? 0 : never] & {
|
|
4065
4065
|
reset: () => void;
|
|
4066
4066
|
}, {
|
|
4067
4067
|
lastArg: GraphqlQueryVariables<TaskDefinition>;
|
|
@@ -9067,6 +9067,7 @@ type WorkflowOption = {
|
|
|
9067
9067
|
productName: ProductDefinition['name'];
|
|
9068
9068
|
productId: ProductDefinition['productId'];
|
|
9069
9069
|
productType: ProductDefinition['productType'];
|
|
9070
|
+
productTag: ProductDefinition['tag'];
|
|
9070
9071
|
};
|
|
9071
9072
|
type StartOptionsResponse<StartOption> = {
|
|
9072
9073
|
startOptions: StartOption[];
|
|
@@ -11435,6 +11436,8 @@ type TreeContextType = {
|
|
|
11435
11436
|
collapseAll: () => void;
|
|
11436
11437
|
resetSelection: () => void;
|
|
11437
11438
|
selectAll: () => void;
|
|
11439
|
+
selectIds: (ids: number[]) => void;
|
|
11440
|
+
deselectIds: (ids: number[]) => void;
|
|
11438
11441
|
};
|
|
11439
11442
|
declare const TreeContext: React.Context<TreeContextType | null>;
|
|
11440
11443
|
type TreeProviderProps = {
|
|
@@ -11667,6 +11670,8 @@ declare const WfoPlannedWork: FC<WfoIconProps>;
|
|
|
11667
11670
|
|
|
11668
11671
|
declare const WfoCubeFill: FC<WfoIconProps>;
|
|
11669
11672
|
|
|
11673
|
+
declare const WfoExclamationTriangle: FC<WfoIconProps>;
|
|
11674
|
+
|
|
11670
11675
|
type WfoSortButtonProps = {
|
|
11671
11676
|
WfoIconComponent: FC<WfoIconProps>;
|
|
11672
11677
|
isActive: boolean;
|
|
@@ -13561,266 +13566,2035 @@ declare const useStartFormMutation: <R extends Record<string, any> = ({
|
|
|
13561
13566
|
reset: () => void;
|
|
13562
13567
|
}];
|
|
13563
13568
|
|
|
13564
|
-
type CustomApiConfig = {
|
|
13565
|
-
apiName: string;
|
|
13566
|
-
apiBaseUrl: string;
|
|
13567
|
-
};
|
|
13568
|
-
type CustomApiSlice = Slice<CustomApiConfig[]>;
|
|
13569
|
-
declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
|
|
13570
|
-
|
|
13571
|
-
type ValueOverrideFunction = (fieldValue: FieldValue | RenderableFieldValue, allFieldValues: FieldValue[] | RenderableFieldValue[]) => ReactNode;
|
|
13572
|
-
type ValueOverrideConfiguration = Record<string, ValueOverrideFunction>;
|
|
13573
|
-
type WfoSubscriptionDetailGeneralConfiguration = {
|
|
13574
|
-
id: string;
|
|
13575
|
-
node: ReactNode;
|
|
13576
|
-
};
|
|
13577
|
-
type OrchestratorComponentOverride = {
|
|
13578
|
-
startPage?: {
|
|
13579
|
-
summaryCardConfigurationOverride?: (defaultItems: ReactElement[]) => ReactElement[];
|
|
13580
|
-
};
|
|
13581
|
-
subscriptionDetail?: {
|
|
13582
|
-
valueOverrides?: ValueOverrideConfiguration;
|
|
13583
|
-
generalSectionConfigurationOverride?: (defaultSections: WfoSubscriptionDetailGeneralConfiguration[], subscriptionDetail: SubscriptionDetail) => WfoSubscriptionDetailGeneralConfiguration[];
|
|
13584
|
-
};
|
|
13585
|
-
};
|
|
13586
|
-
type OrchestratorComponentOverrideSlice = Slice<OrchestratorComponentOverride>;
|
|
13587
|
-
declare const getOrchestratorComponentOverrideSlice: (config: OrchestratorComponentOverride) => OrchestratorComponentOverrideSlice;
|
|
13588
|
-
|
|
13589
|
-
type ToastState = {
|
|
13590
|
-
messages: Toast[];
|
|
13591
|
-
};
|
|
13592
|
-
type ToastMessagesSlice = Slice<ToastState, {
|
|
13593
|
-
addToastMessage: (state: ToastState, action: PayloadAction<Toast>) => ToastState;
|
|
13594
|
-
removeToastMessage: (state: ToastState, action: PayloadAction<Toast['id']>) => ToastState;
|
|
13595
|
-
}, 'toastMessages', 'toastMessages'>;
|
|
13596
|
-
declare const toastMessagesSlice: ToastMessagesSlice;
|
|
13597
|
-
declare const addToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<Toast, "toastMessages/addToastMessage">;
|
|
13598
|
-
declare const removeToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<string, "toastMessages/removeToastMessage">;
|
|
13599
|
-
declare const toastMessagesReducer: Reducer<ToastState>;
|
|
13600
|
-
|
|
13601
|
-
type OrchestratorConfigSlice = Slice<OrchestratorConfig>;
|
|
13602
|
-
declare const getOrchestratorConfigSlice: (config: OrchestratorConfig) => OrchestratorConfigSlice;
|
|
13603
|
-
declare const selectOrchestratorConfig: (state: RootState) => OrchestratorConfig;
|
|
13604
|
-
|
|
13605
|
-
type PydanticForm = {
|
|
13606
|
-
componentMatcher?: ComponentMatcher;
|
|
13607
|
-
};
|
|
13608
|
-
|
|
13609
|
-
type RootState = {
|
|
13610
|
-
orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
|
|
13611
|
-
toastMessages: ReturnType<typeof toastMessagesReducer>;
|
|
13612
|
-
orchestratorConfig: OrchestratorConfig;
|
|
13613
|
-
orchestratorComponentOverride?: OrchestratorComponentOverride;
|
|
13614
|
-
pydanticForm?: PydanticForm;
|
|
13615
|
-
customApis: CustomApiConfig[];
|
|
13616
|
-
};
|
|
13617
|
-
type InitialOrchestratorStoreConfig = Pick<RootState, 'orchestratorConfig' | 'customApis' | 'orchestratorComponentOverride' | 'pydanticForm'>;
|
|
13618
|
-
declare const getOrchestratorStore: ({ orchestratorConfig, orchestratorComponentOverride, pydanticForm, customApis, }: InitialOrchestratorStoreConfig) => EnhancedStore<RootState>;
|
|
13619
|
-
type AppDispatch = Dispatch<UnknownAction>;
|
|
13620
|
-
|
|
13621
|
-
type StoreProviderProps = {
|
|
13622
|
-
initialOrchestratorConfig: OrchestratorConfig | null;
|
|
13623
|
-
orchestratorComponentOverride?: OrchestratorComponentOverride;
|
|
13624
|
-
componentMatcher?: ComponentMatcher;
|
|
13625
|
-
customApis?: CustomApiConfig[];
|
|
13626
|
-
children: ReactNode;
|
|
13627
|
-
};
|
|
13628
|
-
declare const StoreProvider: ({ initialOrchestratorConfig, orchestratorComponentOverride, componentMatcher, customApis, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
13629
|
-
|
|
13630
|
-
declare const wfoGraphqlRequestBaseQuery: <T, E = ErrorResponse>(options: GraphqlRequestBaseQueryArgs<E>, authActive: boolean) => BaseQueryFn<{
|
|
13631
|
-
document: string;
|
|
13632
|
-
variables?: GraphqlQueryVariables<T>;
|
|
13633
|
-
}, unknown, E, Partial<Pick<ClientError, "request" | "response">>>;
|
|
13634
|
-
|
|
13635
|
-
declare function stripUndefined(obj: object): Record<string, unknown>;
|
|
13636
|
-
declare const mapRtkErrorToWfoError: (error: FetchBaseQueryError | GraphQLError[] | SerializedError | undefined) => WfoGraphqlError[] | undefined;
|
|
13637
|
-
declare const getWebSocket: (url: string) => Promise<WebSocket>;
|
|
13638
|
-
|
|
13639
|
-
interface ValidationError {
|
|
13640
|
-
input_type: string;
|
|
13641
|
-
loc: (string | number)[];
|
|
13642
|
-
msg: string;
|
|
13643
|
-
type: string;
|
|
13644
|
-
ctx?: ValidationErrorContext;
|
|
13645
|
-
}
|
|
13646
|
-
interface ValidationErrorContext {
|
|
13647
|
-
[index: string]: string;
|
|
13648
|
-
}
|
|
13649
|
-
interface Form {
|
|
13650
|
-
stepUserInput?: JSONSchema6;
|
|
13651
|
-
hasNext?: boolean;
|
|
13652
|
-
}
|
|
13653
|
-
type InputForm = JSONSchema6;
|
|
13654
|
-
interface FormNotCompleteResponse {
|
|
13655
|
-
form: InputForm;
|
|
13656
|
-
meta?: {
|
|
13657
|
-
hasNext?: boolean;
|
|
13658
|
-
};
|
|
13659
|
-
}
|
|
13660
13569
|
type FieldProps$1<Value, Extra = object, InputElementType = HTMLInputElement, ElementType = HTMLDivElement> = HTMLFieldProps<Value, ElementType, {
|
|
13661
13570
|
inputRef?: Ref<InputElementType>;
|
|
13662
13571
|
description?: string;
|
|
13663
13572
|
} & Extra>;
|
|
13664
|
-
|
|
13665
|
-
detail: string;
|
|
13666
|
-
status: HttpStatus;
|
|
13667
|
-
title: string;
|
|
13668
|
-
traceback: string;
|
|
13669
|
-
type: string;
|
|
13670
|
-
validation_errors: [];
|
|
13671
|
-
};
|
|
13672
|
-
type FormValidationError = {
|
|
13673
|
-
data: ValidationErrorData;
|
|
13674
|
-
status: HttpStatus;
|
|
13675
|
-
};
|
|
13676
|
-
|
|
13677
|
-
type Nullable<T> = T | null;
|
|
13678
|
-
type GenericResponse = {
|
|
13679
|
-
[key: string]: unknown;
|
|
13680
|
-
};
|
|
13681
|
-
type StringifyObject<T extends object> = {
|
|
13682
|
-
[key in keyof T]: string;
|
|
13683
|
-
};
|
|
13684
|
-
type FieldValue = {
|
|
13685
|
-
field: string;
|
|
13686
|
-
value: string | number | boolean | null;
|
|
13687
|
-
};
|
|
13688
|
-
type RenderableFieldValue = {
|
|
13689
|
-
field: string;
|
|
13690
|
-
value: FieldValue['value'] | ReactNode;
|
|
13691
|
-
};
|
|
13692
|
-
declare enum EngineStatus {
|
|
13693
|
-
RUNNING = "RUNNING",
|
|
13694
|
-
PAUSING = "PAUSING",
|
|
13695
|
-
PAUSED = "PAUSED",
|
|
13696
|
-
UNKNOWN = "UNKNOWN"
|
|
13697
|
-
}
|
|
13698
|
-
declare enum WorkerTypes {
|
|
13699
|
-
CELERY = "CELERY",
|
|
13700
|
-
THREAD = "THREAD"
|
|
13701
|
-
}
|
|
13702
|
-
type Customer = {
|
|
13703
|
-
fullname: string;
|
|
13704
|
-
customerId: string;
|
|
13705
|
-
shortcode: string;
|
|
13706
|
-
};
|
|
13707
|
-
type CustomerWithSubscriptionCount = Customer & {
|
|
13708
|
-
subscriptions: {
|
|
13709
|
-
pageInfo: {
|
|
13710
|
-
totalItems: number;
|
|
13711
|
-
};
|
|
13712
|
-
};
|
|
13713
|
-
};
|
|
13714
|
-
type InUseByRelation = {
|
|
13715
|
-
subscription_instance_id: string;
|
|
13716
|
-
subscription_id: string;
|
|
13717
|
-
};
|
|
13718
|
-
type ProductBlockInstance = {
|
|
13719
|
-
id: number;
|
|
13720
|
-
subscriptionInstanceId: string;
|
|
13721
|
-
parent: Nullable<number>;
|
|
13722
|
-
productBlockInstanceValues: FieldValue[];
|
|
13723
|
-
inUseByRelations: InUseByRelation[];
|
|
13724
|
-
subscription: Pick<Subscription, 'subscriptionId' | 'description'>;
|
|
13725
|
-
};
|
|
13726
|
-
type ProductBlockInstanceForDropdown = Omit<ProductBlockInstance, 'inUseByRelations'>;
|
|
13727
|
-
interface ResourceTypeDefinition {
|
|
13728
|
-
description: string;
|
|
13729
|
-
resourceType: string;
|
|
13730
|
-
resourceTypeId: string;
|
|
13731
|
-
productBlocks: ProductBlockDefinition[];
|
|
13732
|
-
}
|
|
13733
|
-
interface ProductBlockDefinition {
|
|
13734
|
-
productBlockId: string;
|
|
13735
|
-
name: string;
|
|
13736
|
-
tag: string;
|
|
13737
|
-
description: string;
|
|
13738
|
-
status: ProductLifecycleStatus;
|
|
13739
|
-
createdAt: string;
|
|
13740
|
-
endDate: string | null;
|
|
13741
|
-
resourceTypes: ResourceTypeDefinition[];
|
|
13742
|
-
dependsOn: ProductBlockDefinition[];
|
|
13743
|
-
}
|
|
13744
|
-
declare enum ProductLifecycleStatus {
|
|
13745
|
-
ACTIVE = "active",
|
|
13746
|
-
PRE_PRODUCTION = "pre production",
|
|
13747
|
-
PHASE_OUT = "phase out",
|
|
13748
|
-
END_OF_LIFE = "end of life"
|
|
13749
|
-
}
|
|
13750
|
-
declare enum BadgeType {
|
|
13751
|
-
WORKFLOW = "workflow",
|
|
13752
|
-
FIXED_INPUT = "fixed_input",
|
|
13753
|
-
RESOURCE_TYPE = "resource_type",
|
|
13754
|
-
PRODUCT_BLOCK = "product_block",
|
|
13755
|
-
PRODUCT_BLOCK_TAG = "product_block_tag",
|
|
13756
|
-
PRODUCT_TAG = "product_tag",
|
|
13757
|
-
PRODUCT = "product",
|
|
13758
|
-
TASK = "task"
|
|
13759
|
-
}
|
|
13760
|
-
interface FixedInputDefinition {
|
|
13761
|
-
fixedInputId: string;
|
|
13762
|
-
name: string;
|
|
13763
|
-
value: string;
|
|
13764
|
-
productId: string;
|
|
13765
|
-
createdAt: string;
|
|
13766
|
-
description: string;
|
|
13767
|
-
required: boolean;
|
|
13768
|
-
}
|
|
13769
|
-
interface TreeBlock extends ProductBlockInstance {
|
|
13770
|
-
icon: string;
|
|
13771
|
-
label: string | number | boolean;
|
|
13772
|
-
callback: () => void;
|
|
13773
|
-
children: TreeBlock[];
|
|
13774
|
-
isOutsideCurrentSubscription: boolean;
|
|
13775
|
-
}
|
|
13776
|
-
interface ProductDefinition {
|
|
13777
|
-
productId: string;
|
|
13573
|
+
interface ContactPerson {
|
|
13778
13574
|
name: string;
|
|
13779
|
-
|
|
13780
|
-
tag: string;
|
|
13781
|
-
createdAt: string;
|
|
13782
|
-
productType: string;
|
|
13783
|
-
status: ProductLifecycleStatus;
|
|
13784
|
-
productBlocks: Pick<ProductBlockDefinition, 'name'>[];
|
|
13785
|
-
fixedInputs: Pick<FixedInputDefinition, 'name' | 'value'>[];
|
|
13786
|
-
}
|
|
13787
|
-
type ProductsSummary = Pick<ProductDefinition, 'name'> & SubscriptionsResult<never>;
|
|
13788
|
-
declare enum WorkflowTarget {
|
|
13789
|
-
CREATE = "create",
|
|
13790
|
-
MODIFY = "modify",
|
|
13791
|
-
TERMINATE = "terminate",
|
|
13792
|
-
SYSTEM = "system"
|
|
13575
|
+
email: string;
|
|
13793
13576
|
}
|
|
13794
|
-
|
|
13795
|
-
|
|
13796
|
-
|
|
13797
|
-
|
|
13798
|
-
|
|
13799
|
-
|
|
13800
|
-
|
|
13801
|
-
|
|
13802
|
-
|
|
13803
|
-
|
|
13804
|
-
|
|
13805
|
-
|
|
13806
|
-
|
|
13807
|
-
|
|
13808
|
-
|
|
13809
|
-
|
|
13810
|
-
|
|
13811
|
-
|
|
13812
|
-
|
|
13813
|
-
|
|
13814
|
-
|
|
13815
|
-
|
|
13816
|
-
}
|
|
13817
|
-
|
|
13818
|
-
|
|
13819
|
-
|
|
13820
|
-
|
|
13821
|
-
|
|
13822
|
-
|
|
13823
|
-
|
|
13577
|
+
|
|
13578
|
+
declare const useLocationCodesQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
13579
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
13580
|
+
originalArgs?: undefined | undefined;
|
|
13581
|
+
data?: undefined | undefined;
|
|
13582
|
+
error?: undefined | undefined;
|
|
13583
|
+
requestId?: undefined | undefined;
|
|
13584
|
+
endpointName?: string | undefined;
|
|
13585
|
+
startedTimeStamp?: undefined | undefined;
|
|
13586
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
13587
|
+
} & {
|
|
13588
|
+
currentData?: string[] | undefined;
|
|
13589
|
+
isUninitialized: false;
|
|
13590
|
+
isLoading: false;
|
|
13591
|
+
isFetching: false;
|
|
13592
|
+
isSuccess: false;
|
|
13593
|
+
isError: false;
|
|
13594
|
+
}, "isUninitialized"> & {
|
|
13595
|
+
isUninitialized: true;
|
|
13596
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13597
|
+
baseQueryType?: BaseQueryTypes;
|
|
13598
|
+
apiName?: string;
|
|
13599
|
+
}) => {
|
|
13600
|
+
error?: undefined;
|
|
13601
|
+
data: unknown;
|
|
13602
|
+
meta?: {} | undefined;
|
|
13603
|
+
} | {
|
|
13604
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13605
|
+
data?: undefined;
|
|
13606
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13607
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13608
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13609
|
+
data?: undefined;
|
|
13610
|
+
meta?: {} | undefined;
|
|
13611
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13612
|
+
currentData?: string[] | undefined;
|
|
13613
|
+
isUninitialized: false;
|
|
13614
|
+
isLoading: false;
|
|
13615
|
+
isFetching: false;
|
|
13616
|
+
isSuccess: false;
|
|
13617
|
+
isError: false;
|
|
13618
|
+
}, {
|
|
13619
|
+
isLoading: true;
|
|
13620
|
+
isFetching: boolean;
|
|
13621
|
+
data: undefined;
|
|
13622
|
+
} | ({
|
|
13623
|
+
isSuccess: true;
|
|
13624
|
+
isFetching: true;
|
|
13625
|
+
error: undefined;
|
|
13626
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13627
|
+
baseQueryType?: BaseQueryTypes;
|
|
13628
|
+
apiName?: string;
|
|
13629
|
+
}) => {
|
|
13630
|
+
error?: undefined;
|
|
13631
|
+
data: unknown;
|
|
13632
|
+
meta?: {} | undefined;
|
|
13633
|
+
} | {
|
|
13634
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13635
|
+
data?: undefined;
|
|
13636
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13637
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13638
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13639
|
+
data?: undefined;
|
|
13640
|
+
meta?: {} | undefined;
|
|
13641
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13642
|
+
currentData?: string[] | undefined;
|
|
13643
|
+
isUninitialized: false;
|
|
13644
|
+
isLoading: false;
|
|
13645
|
+
isFetching: false;
|
|
13646
|
+
isSuccess: false;
|
|
13647
|
+
isError: false;
|
|
13648
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
13649
|
+
isSuccess: true;
|
|
13650
|
+
isFetching: false;
|
|
13651
|
+
error: undefined;
|
|
13652
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13653
|
+
baseQueryType?: BaseQueryTypes;
|
|
13654
|
+
apiName?: string;
|
|
13655
|
+
}) => {
|
|
13656
|
+
error?: undefined;
|
|
13657
|
+
data: unknown;
|
|
13658
|
+
meta?: {} | undefined;
|
|
13659
|
+
} | {
|
|
13660
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13661
|
+
data?: undefined;
|
|
13662
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13663
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13664
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13665
|
+
data?: undefined;
|
|
13666
|
+
meta?: {} | undefined;
|
|
13667
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13668
|
+
currentData?: string[] | undefined;
|
|
13669
|
+
isUninitialized: false;
|
|
13670
|
+
isLoading: false;
|
|
13671
|
+
isFetching: false;
|
|
13672
|
+
isSuccess: false;
|
|
13673
|
+
isError: false;
|
|
13674
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
13675
|
+
isError: true;
|
|
13676
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13677
|
+
baseQueryType?: BaseQueryTypes;
|
|
13678
|
+
apiName?: string;
|
|
13679
|
+
}) => {
|
|
13680
|
+
error?: undefined;
|
|
13681
|
+
data: unknown;
|
|
13682
|
+
meta?: {} | undefined;
|
|
13683
|
+
} | {
|
|
13684
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13685
|
+
data?: undefined;
|
|
13686
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13687
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13688
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13689
|
+
data?: undefined;
|
|
13690
|
+
meta?: {} | undefined;
|
|
13691
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13692
|
+
currentData?: string[] | undefined;
|
|
13693
|
+
isUninitialized: false;
|
|
13694
|
+
isLoading: false;
|
|
13695
|
+
isFetching: false;
|
|
13696
|
+
isSuccess: false;
|
|
13697
|
+
isError: false;
|
|
13698
|
+
}, "error">>)>> & {
|
|
13699
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
13700
|
+
}>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
13701
|
+
skip?: boolean;
|
|
13702
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
13703
|
+
} & {
|
|
13704
|
+
skip?: boolean;
|
|
13705
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
13706
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
13707
|
+
originalArgs?: undefined | undefined;
|
|
13708
|
+
data?: undefined | undefined;
|
|
13709
|
+
error?: undefined | undefined;
|
|
13710
|
+
requestId?: undefined | undefined;
|
|
13711
|
+
endpointName?: string | undefined;
|
|
13712
|
+
startedTimeStamp?: undefined | undefined;
|
|
13713
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
13714
|
+
} & {
|
|
13715
|
+
currentData?: string[] | undefined;
|
|
13716
|
+
isUninitialized: false;
|
|
13717
|
+
isLoading: false;
|
|
13718
|
+
isFetching: false;
|
|
13719
|
+
isSuccess: false;
|
|
13720
|
+
isError: false;
|
|
13721
|
+
}, "isUninitialized"> & {
|
|
13722
|
+
isUninitialized: true;
|
|
13723
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13724
|
+
baseQueryType?: BaseQueryTypes;
|
|
13725
|
+
apiName?: string;
|
|
13726
|
+
}) => {
|
|
13727
|
+
error?: undefined;
|
|
13728
|
+
data: unknown;
|
|
13729
|
+
meta?: {} | undefined;
|
|
13730
|
+
} | {
|
|
13731
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13732
|
+
data?: undefined;
|
|
13733
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13734
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13735
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13736
|
+
data?: undefined;
|
|
13737
|
+
meta?: {} | undefined;
|
|
13738
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13739
|
+
currentData?: string[] | undefined;
|
|
13740
|
+
isUninitialized: false;
|
|
13741
|
+
isLoading: false;
|
|
13742
|
+
isFetching: false;
|
|
13743
|
+
isSuccess: false;
|
|
13744
|
+
isError: false;
|
|
13745
|
+
}, {
|
|
13746
|
+
isLoading: true;
|
|
13747
|
+
isFetching: boolean;
|
|
13748
|
+
data: undefined;
|
|
13749
|
+
} | ({
|
|
13750
|
+
isSuccess: true;
|
|
13751
|
+
isFetching: true;
|
|
13752
|
+
error: undefined;
|
|
13753
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13754
|
+
baseQueryType?: BaseQueryTypes;
|
|
13755
|
+
apiName?: string;
|
|
13756
|
+
}) => {
|
|
13757
|
+
error?: undefined;
|
|
13758
|
+
data: unknown;
|
|
13759
|
+
meta?: {} | undefined;
|
|
13760
|
+
} | {
|
|
13761
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13762
|
+
data?: undefined;
|
|
13763
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13764
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13765
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13766
|
+
data?: undefined;
|
|
13767
|
+
meta?: {} | undefined;
|
|
13768
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13769
|
+
currentData?: string[] | undefined;
|
|
13770
|
+
isUninitialized: false;
|
|
13771
|
+
isLoading: false;
|
|
13772
|
+
isFetching: false;
|
|
13773
|
+
isSuccess: false;
|
|
13774
|
+
isError: false;
|
|
13775
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
13776
|
+
isSuccess: true;
|
|
13777
|
+
isFetching: false;
|
|
13778
|
+
error: undefined;
|
|
13779
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13780
|
+
baseQueryType?: BaseQueryTypes;
|
|
13781
|
+
apiName?: string;
|
|
13782
|
+
}) => {
|
|
13783
|
+
error?: undefined;
|
|
13784
|
+
data: unknown;
|
|
13785
|
+
meta?: {} | undefined;
|
|
13786
|
+
} | {
|
|
13787
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13788
|
+
data?: undefined;
|
|
13789
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13790
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13791
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13792
|
+
data?: undefined;
|
|
13793
|
+
meta?: {} | undefined;
|
|
13794
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13795
|
+
currentData?: string[] | undefined;
|
|
13796
|
+
isUninitialized: false;
|
|
13797
|
+
isLoading: false;
|
|
13798
|
+
isFetching: false;
|
|
13799
|
+
isSuccess: false;
|
|
13800
|
+
isError: false;
|
|
13801
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
13802
|
+
isError: true;
|
|
13803
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13804
|
+
baseQueryType?: BaseQueryTypes;
|
|
13805
|
+
apiName?: string;
|
|
13806
|
+
}) => {
|
|
13807
|
+
error?: undefined;
|
|
13808
|
+
data: unknown;
|
|
13809
|
+
meta?: {} | undefined;
|
|
13810
|
+
} | {
|
|
13811
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13812
|
+
data?: undefined;
|
|
13813
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13814
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13815
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13816
|
+
data?: undefined;
|
|
13817
|
+
meta?: {} | undefined;
|
|
13818
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>> & {
|
|
13819
|
+
currentData?: string[] | undefined;
|
|
13820
|
+
isUninitialized: false;
|
|
13821
|
+
isLoading: false;
|
|
13822
|
+
isFetching: false;
|
|
13823
|
+
isSuccess: false;
|
|
13824
|
+
isError: false;
|
|
13825
|
+
}, "error">>)>> & {
|
|
13826
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
13827
|
+
}) => R) | undefined;
|
|
13828
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
13829
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13830
|
+
baseQueryType?: BaseQueryTypes;
|
|
13831
|
+
apiName?: string;
|
|
13832
|
+
}) => {
|
|
13833
|
+
error?: undefined;
|
|
13834
|
+
data: unknown;
|
|
13835
|
+
meta?: {} | undefined;
|
|
13836
|
+
} | {
|
|
13837
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13838
|
+
data?: undefined;
|
|
13839
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13840
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13841
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13842
|
+
data?: undefined;
|
|
13843
|
+
meta?: {} | undefined;
|
|
13844
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, string[], "orchestratorApi", unknown>>;
|
|
13845
|
+
};
|
|
13846
|
+
declare const useContactPersonsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
13847
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
13848
|
+
originalArgs?: undefined | undefined;
|
|
13849
|
+
data?: undefined | undefined;
|
|
13850
|
+
error?: undefined | undefined;
|
|
13851
|
+
requestId?: undefined | undefined;
|
|
13852
|
+
endpointName?: string | undefined;
|
|
13853
|
+
startedTimeStamp?: undefined | undefined;
|
|
13854
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
13855
|
+
} & {
|
|
13856
|
+
currentData?: ContactPerson[] | undefined;
|
|
13857
|
+
isUninitialized: false;
|
|
13858
|
+
isLoading: false;
|
|
13859
|
+
isFetching: false;
|
|
13860
|
+
isSuccess: false;
|
|
13861
|
+
isError: false;
|
|
13862
|
+
}, "isUninitialized"> & {
|
|
13863
|
+
isUninitialized: true;
|
|
13864
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
13865
|
+
customerIdValue: string;
|
|
13866
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13867
|
+
baseQueryType?: BaseQueryTypes;
|
|
13868
|
+
apiName?: string;
|
|
13869
|
+
}) => {
|
|
13870
|
+
error?: undefined;
|
|
13871
|
+
data: unknown;
|
|
13872
|
+
meta?: {} | undefined;
|
|
13873
|
+
} | {
|
|
13874
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13875
|
+
data?: undefined;
|
|
13876
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13877
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13878
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13879
|
+
data?: undefined;
|
|
13880
|
+
meta?: {} | undefined;
|
|
13881
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
13882
|
+
currentData?: ContactPerson[] | undefined;
|
|
13883
|
+
isUninitialized: false;
|
|
13884
|
+
isLoading: false;
|
|
13885
|
+
isFetching: false;
|
|
13886
|
+
isSuccess: false;
|
|
13887
|
+
isError: false;
|
|
13888
|
+
}, {
|
|
13889
|
+
isLoading: true;
|
|
13890
|
+
isFetching: boolean;
|
|
13891
|
+
data: undefined;
|
|
13892
|
+
} | ({
|
|
13893
|
+
isSuccess: true;
|
|
13894
|
+
isFetching: true;
|
|
13895
|
+
error: undefined;
|
|
13896
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
13897
|
+
customerIdValue: string;
|
|
13898
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13899
|
+
baseQueryType?: BaseQueryTypes;
|
|
13900
|
+
apiName?: string;
|
|
13901
|
+
}) => {
|
|
13902
|
+
error?: undefined;
|
|
13903
|
+
data: unknown;
|
|
13904
|
+
meta?: {} | undefined;
|
|
13905
|
+
} | {
|
|
13906
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13907
|
+
data?: undefined;
|
|
13908
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13909
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13910
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13911
|
+
data?: undefined;
|
|
13912
|
+
meta?: {} | undefined;
|
|
13913
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
13914
|
+
currentData?: ContactPerson[] | undefined;
|
|
13915
|
+
isUninitialized: false;
|
|
13916
|
+
isLoading: false;
|
|
13917
|
+
isFetching: false;
|
|
13918
|
+
isSuccess: false;
|
|
13919
|
+
isError: false;
|
|
13920
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
13921
|
+
isSuccess: true;
|
|
13922
|
+
isFetching: false;
|
|
13923
|
+
error: undefined;
|
|
13924
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
13925
|
+
customerIdValue: string;
|
|
13926
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13927
|
+
baseQueryType?: BaseQueryTypes;
|
|
13928
|
+
apiName?: string;
|
|
13929
|
+
}) => {
|
|
13930
|
+
error?: undefined;
|
|
13931
|
+
data: unknown;
|
|
13932
|
+
meta?: {} | undefined;
|
|
13933
|
+
} | {
|
|
13934
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13935
|
+
data?: undefined;
|
|
13936
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13937
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13938
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13939
|
+
data?: undefined;
|
|
13940
|
+
meta?: {} | undefined;
|
|
13941
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
13942
|
+
currentData?: ContactPerson[] | undefined;
|
|
13943
|
+
isUninitialized: false;
|
|
13944
|
+
isLoading: false;
|
|
13945
|
+
isFetching: false;
|
|
13946
|
+
isSuccess: false;
|
|
13947
|
+
isError: false;
|
|
13948
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
13949
|
+
isError: true;
|
|
13950
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
13951
|
+
customerIdValue: string;
|
|
13952
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
13953
|
+
baseQueryType?: BaseQueryTypes;
|
|
13954
|
+
apiName?: string;
|
|
13955
|
+
}) => {
|
|
13956
|
+
error?: undefined;
|
|
13957
|
+
data: unknown;
|
|
13958
|
+
meta?: {} | undefined;
|
|
13959
|
+
} | {
|
|
13960
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
13961
|
+
data?: undefined;
|
|
13962
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
13963
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
13964
|
+
error: graphql.GraphQLError[] | undefined;
|
|
13965
|
+
data?: undefined;
|
|
13966
|
+
meta?: {} | undefined;
|
|
13967
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
13968
|
+
currentData?: ContactPerson[] | undefined;
|
|
13969
|
+
isUninitialized: false;
|
|
13970
|
+
isLoading: false;
|
|
13971
|
+
isFetching: false;
|
|
13972
|
+
isSuccess: false;
|
|
13973
|
+
isError: false;
|
|
13974
|
+
}, "error">>)>> & {
|
|
13975
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
13976
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
13977
|
+
customerIdValue: string;
|
|
13978
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
13979
|
+
skip?: boolean;
|
|
13980
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
13981
|
+
} & {
|
|
13982
|
+
skip?: boolean;
|
|
13983
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
13984
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
13985
|
+
originalArgs?: undefined | undefined;
|
|
13986
|
+
data?: undefined | undefined;
|
|
13987
|
+
error?: undefined | undefined;
|
|
13988
|
+
requestId?: undefined | undefined;
|
|
13989
|
+
endpointName?: string | undefined;
|
|
13990
|
+
startedTimeStamp?: undefined | undefined;
|
|
13991
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
13992
|
+
} & {
|
|
13993
|
+
currentData?: ContactPerson[] | undefined;
|
|
13994
|
+
isUninitialized: false;
|
|
13995
|
+
isLoading: false;
|
|
13996
|
+
isFetching: false;
|
|
13997
|
+
isSuccess: false;
|
|
13998
|
+
isError: false;
|
|
13999
|
+
}, "isUninitialized"> & {
|
|
14000
|
+
isUninitialized: true;
|
|
14001
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14002
|
+
customerIdValue: string;
|
|
14003
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14004
|
+
baseQueryType?: BaseQueryTypes;
|
|
14005
|
+
apiName?: string;
|
|
14006
|
+
}) => {
|
|
14007
|
+
error?: undefined;
|
|
14008
|
+
data: unknown;
|
|
14009
|
+
meta?: {} | undefined;
|
|
14010
|
+
} | {
|
|
14011
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14012
|
+
data?: undefined;
|
|
14013
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14014
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14015
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14016
|
+
data?: undefined;
|
|
14017
|
+
meta?: {} | undefined;
|
|
14018
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
14019
|
+
currentData?: ContactPerson[] | undefined;
|
|
14020
|
+
isUninitialized: false;
|
|
14021
|
+
isLoading: false;
|
|
14022
|
+
isFetching: false;
|
|
14023
|
+
isSuccess: false;
|
|
14024
|
+
isError: false;
|
|
14025
|
+
}, {
|
|
14026
|
+
isLoading: true;
|
|
14027
|
+
isFetching: boolean;
|
|
14028
|
+
data: undefined;
|
|
14029
|
+
} | ({
|
|
14030
|
+
isSuccess: true;
|
|
14031
|
+
isFetching: true;
|
|
14032
|
+
error: undefined;
|
|
14033
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14034
|
+
customerIdValue: string;
|
|
14035
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14036
|
+
baseQueryType?: BaseQueryTypes;
|
|
14037
|
+
apiName?: string;
|
|
14038
|
+
}) => {
|
|
14039
|
+
error?: undefined;
|
|
14040
|
+
data: unknown;
|
|
14041
|
+
meta?: {} | undefined;
|
|
14042
|
+
} | {
|
|
14043
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14044
|
+
data?: undefined;
|
|
14045
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14046
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14047
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14048
|
+
data?: undefined;
|
|
14049
|
+
meta?: {} | undefined;
|
|
14050
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
14051
|
+
currentData?: ContactPerson[] | undefined;
|
|
14052
|
+
isUninitialized: false;
|
|
14053
|
+
isLoading: false;
|
|
14054
|
+
isFetching: false;
|
|
14055
|
+
isSuccess: false;
|
|
14056
|
+
isError: false;
|
|
14057
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
14058
|
+
isSuccess: true;
|
|
14059
|
+
isFetching: false;
|
|
14060
|
+
error: undefined;
|
|
14061
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14062
|
+
customerIdValue: string;
|
|
14063
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14064
|
+
baseQueryType?: BaseQueryTypes;
|
|
14065
|
+
apiName?: string;
|
|
14066
|
+
}) => {
|
|
14067
|
+
error?: undefined;
|
|
14068
|
+
data: unknown;
|
|
14069
|
+
meta?: {} | undefined;
|
|
14070
|
+
} | {
|
|
14071
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14072
|
+
data?: undefined;
|
|
14073
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14074
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14075
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14076
|
+
data?: undefined;
|
|
14077
|
+
meta?: {} | undefined;
|
|
14078
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
14079
|
+
currentData?: ContactPerson[] | undefined;
|
|
14080
|
+
isUninitialized: false;
|
|
14081
|
+
isLoading: false;
|
|
14082
|
+
isFetching: false;
|
|
14083
|
+
isSuccess: false;
|
|
14084
|
+
isError: false;
|
|
14085
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
14086
|
+
isError: true;
|
|
14087
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14088
|
+
customerIdValue: string;
|
|
14089
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14090
|
+
baseQueryType?: BaseQueryTypes;
|
|
14091
|
+
apiName?: string;
|
|
14092
|
+
}) => {
|
|
14093
|
+
error?: undefined;
|
|
14094
|
+
data: unknown;
|
|
14095
|
+
meta?: {} | undefined;
|
|
14096
|
+
} | {
|
|
14097
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14098
|
+
data?: undefined;
|
|
14099
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14100
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14101
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14102
|
+
data?: undefined;
|
|
14103
|
+
meta?: {} | undefined;
|
|
14104
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>> & {
|
|
14105
|
+
currentData?: ContactPerson[] | undefined;
|
|
14106
|
+
isUninitialized: false;
|
|
14107
|
+
isLoading: false;
|
|
14108
|
+
isFetching: false;
|
|
14109
|
+
isSuccess: false;
|
|
14110
|
+
isError: false;
|
|
14111
|
+
}, "error">>)>> & {
|
|
14112
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
14113
|
+
}) => R) | undefined;
|
|
14114
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
14115
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14116
|
+
customerIdValue: string;
|
|
14117
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14118
|
+
baseQueryType?: BaseQueryTypes;
|
|
14119
|
+
apiName?: string;
|
|
14120
|
+
}) => {
|
|
14121
|
+
error?: undefined;
|
|
14122
|
+
data: unknown;
|
|
14123
|
+
meta?: {} | undefined;
|
|
14124
|
+
} | {
|
|
14125
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14126
|
+
data?: undefined;
|
|
14127
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14128
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14129
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14130
|
+
data?: undefined;
|
|
14131
|
+
meta?: {} | undefined;
|
|
14132
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ContactPerson[], "orchestratorApi", unknown>>;
|
|
14133
|
+
};
|
|
14134
|
+
declare const useImsNodesQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
14135
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
14136
|
+
originalArgs?: undefined | undefined;
|
|
14137
|
+
data?: undefined | undefined;
|
|
14138
|
+
error?: undefined | undefined;
|
|
14139
|
+
requestId?: undefined | undefined;
|
|
14140
|
+
endpointName?: string | undefined;
|
|
14141
|
+
startedTimeStamp?: undefined | undefined;
|
|
14142
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
14143
|
+
} & {
|
|
14144
|
+
currentData?: ImsNode[] | undefined;
|
|
14145
|
+
isUninitialized: false;
|
|
14146
|
+
isLoading: false;
|
|
14147
|
+
isFetching: false;
|
|
14148
|
+
isSuccess: false;
|
|
14149
|
+
isError: false;
|
|
14150
|
+
}, "isUninitialized"> & {
|
|
14151
|
+
isUninitialized: true;
|
|
14152
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14153
|
+
locationCode: string;
|
|
14154
|
+
status: string;
|
|
14155
|
+
unsubscribedOnly: boolean;
|
|
14156
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14157
|
+
baseQueryType?: BaseQueryTypes;
|
|
14158
|
+
apiName?: string;
|
|
14159
|
+
}) => {
|
|
14160
|
+
error?: undefined;
|
|
14161
|
+
data: unknown;
|
|
14162
|
+
meta?: {} | undefined;
|
|
14163
|
+
} | {
|
|
14164
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14165
|
+
data?: undefined;
|
|
14166
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14167
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14168
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14169
|
+
data?: undefined;
|
|
14170
|
+
meta?: {} | undefined;
|
|
14171
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14172
|
+
currentData?: ImsNode[] | undefined;
|
|
14173
|
+
isUninitialized: false;
|
|
14174
|
+
isLoading: false;
|
|
14175
|
+
isFetching: false;
|
|
14176
|
+
isSuccess: false;
|
|
14177
|
+
isError: false;
|
|
14178
|
+
}, {
|
|
14179
|
+
isLoading: true;
|
|
14180
|
+
isFetching: boolean;
|
|
14181
|
+
data: undefined;
|
|
14182
|
+
} | ({
|
|
14183
|
+
isSuccess: true;
|
|
14184
|
+
isFetching: true;
|
|
14185
|
+
error: undefined;
|
|
14186
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14187
|
+
locationCode: string;
|
|
14188
|
+
status: string;
|
|
14189
|
+
unsubscribedOnly: boolean;
|
|
14190
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14191
|
+
baseQueryType?: BaseQueryTypes;
|
|
14192
|
+
apiName?: string;
|
|
14193
|
+
}) => {
|
|
14194
|
+
error?: undefined;
|
|
14195
|
+
data: unknown;
|
|
14196
|
+
meta?: {} | undefined;
|
|
14197
|
+
} | {
|
|
14198
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14199
|
+
data?: undefined;
|
|
14200
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14201
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14202
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14203
|
+
data?: undefined;
|
|
14204
|
+
meta?: {} | undefined;
|
|
14205
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14206
|
+
currentData?: ImsNode[] | undefined;
|
|
14207
|
+
isUninitialized: false;
|
|
14208
|
+
isLoading: false;
|
|
14209
|
+
isFetching: false;
|
|
14210
|
+
isSuccess: false;
|
|
14211
|
+
isError: false;
|
|
14212
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
14213
|
+
isSuccess: true;
|
|
14214
|
+
isFetching: false;
|
|
14215
|
+
error: undefined;
|
|
14216
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14217
|
+
locationCode: string;
|
|
14218
|
+
status: string;
|
|
14219
|
+
unsubscribedOnly: boolean;
|
|
14220
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14221
|
+
baseQueryType?: BaseQueryTypes;
|
|
14222
|
+
apiName?: string;
|
|
14223
|
+
}) => {
|
|
14224
|
+
error?: undefined;
|
|
14225
|
+
data: unknown;
|
|
14226
|
+
meta?: {} | undefined;
|
|
14227
|
+
} | {
|
|
14228
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14229
|
+
data?: undefined;
|
|
14230
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14231
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14232
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14233
|
+
data?: undefined;
|
|
14234
|
+
meta?: {} | undefined;
|
|
14235
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14236
|
+
currentData?: ImsNode[] | undefined;
|
|
14237
|
+
isUninitialized: false;
|
|
14238
|
+
isLoading: false;
|
|
14239
|
+
isFetching: false;
|
|
14240
|
+
isSuccess: false;
|
|
14241
|
+
isError: false;
|
|
14242
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
14243
|
+
isError: true;
|
|
14244
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14245
|
+
locationCode: string;
|
|
14246
|
+
status: string;
|
|
14247
|
+
unsubscribedOnly: boolean;
|
|
14248
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14249
|
+
baseQueryType?: BaseQueryTypes;
|
|
14250
|
+
apiName?: string;
|
|
14251
|
+
}) => {
|
|
14252
|
+
error?: undefined;
|
|
14253
|
+
data: unknown;
|
|
14254
|
+
meta?: {} | undefined;
|
|
14255
|
+
} | {
|
|
14256
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14257
|
+
data?: undefined;
|
|
14258
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14259
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14260
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14261
|
+
data?: undefined;
|
|
14262
|
+
meta?: {} | undefined;
|
|
14263
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14264
|
+
currentData?: ImsNode[] | undefined;
|
|
14265
|
+
isUninitialized: false;
|
|
14266
|
+
isLoading: false;
|
|
14267
|
+
isFetching: false;
|
|
14268
|
+
isSuccess: false;
|
|
14269
|
+
isError: false;
|
|
14270
|
+
}, "error">>)>> & {
|
|
14271
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
14272
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
14273
|
+
locationCode: string;
|
|
14274
|
+
status: string;
|
|
14275
|
+
unsubscribedOnly: boolean;
|
|
14276
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
14277
|
+
skip?: boolean;
|
|
14278
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
14279
|
+
} & {
|
|
14280
|
+
skip?: boolean;
|
|
14281
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
14282
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
14283
|
+
originalArgs?: undefined | undefined;
|
|
14284
|
+
data?: undefined | undefined;
|
|
14285
|
+
error?: undefined | undefined;
|
|
14286
|
+
requestId?: undefined | undefined;
|
|
14287
|
+
endpointName?: string | undefined;
|
|
14288
|
+
startedTimeStamp?: undefined | undefined;
|
|
14289
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
14290
|
+
} & {
|
|
14291
|
+
currentData?: ImsNode[] | undefined;
|
|
14292
|
+
isUninitialized: false;
|
|
14293
|
+
isLoading: false;
|
|
14294
|
+
isFetching: false;
|
|
14295
|
+
isSuccess: false;
|
|
14296
|
+
isError: false;
|
|
14297
|
+
}, "isUninitialized"> & {
|
|
14298
|
+
isUninitialized: true;
|
|
14299
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14300
|
+
locationCode: string;
|
|
14301
|
+
status: string;
|
|
14302
|
+
unsubscribedOnly: boolean;
|
|
14303
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14304
|
+
baseQueryType?: BaseQueryTypes;
|
|
14305
|
+
apiName?: string;
|
|
14306
|
+
}) => {
|
|
14307
|
+
error?: undefined;
|
|
14308
|
+
data: unknown;
|
|
14309
|
+
meta?: {} | undefined;
|
|
14310
|
+
} | {
|
|
14311
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14312
|
+
data?: undefined;
|
|
14313
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14314
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14315
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14316
|
+
data?: undefined;
|
|
14317
|
+
meta?: {} | undefined;
|
|
14318
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14319
|
+
currentData?: ImsNode[] | undefined;
|
|
14320
|
+
isUninitialized: false;
|
|
14321
|
+
isLoading: false;
|
|
14322
|
+
isFetching: false;
|
|
14323
|
+
isSuccess: false;
|
|
14324
|
+
isError: false;
|
|
14325
|
+
}, {
|
|
14326
|
+
isLoading: true;
|
|
14327
|
+
isFetching: boolean;
|
|
14328
|
+
data: undefined;
|
|
14329
|
+
} | ({
|
|
14330
|
+
isSuccess: true;
|
|
14331
|
+
isFetching: true;
|
|
14332
|
+
error: undefined;
|
|
14333
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14334
|
+
locationCode: string;
|
|
14335
|
+
status: string;
|
|
14336
|
+
unsubscribedOnly: boolean;
|
|
14337
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14338
|
+
baseQueryType?: BaseQueryTypes;
|
|
14339
|
+
apiName?: string;
|
|
14340
|
+
}) => {
|
|
14341
|
+
error?: undefined;
|
|
14342
|
+
data: unknown;
|
|
14343
|
+
meta?: {} | undefined;
|
|
14344
|
+
} | {
|
|
14345
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14346
|
+
data?: undefined;
|
|
14347
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14348
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14349
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14350
|
+
data?: undefined;
|
|
14351
|
+
meta?: {} | undefined;
|
|
14352
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14353
|
+
currentData?: ImsNode[] | undefined;
|
|
14354
|
+
isUninitialized: false;
|
|
14355
|
+
isLoading: false;
|
|
14356
|
+
isFetching: false;
|
|
14357
|
+
isSuccess: false;
|
|
14358
|
+
isError: false;
|
|
14359
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
14360
|
+
isSuccess: true;
|
|
14361
|
+
isFetching: false;
|
|
14362
|
+
error: undefined;
|
|
14363
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14364
|
+
locationCode: string;
|
|
14365
|
+
status: string;
|
|
14366
|
+
unsubscribedOnly: boolean;
|
|
14367
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14368
|
+
baseQueryType?: BaseQueryTypes;
|
|
14369
|
+
apiName?: string;
|
|
14370
|
+
}) => {
|
|
14371
|
+
error?: undefined;
|
|
14372
|
+
data: unknown;
|
|
14373
|
+
meta?: {} | undefined;
|
|
14374
|
+
} | {
|
|
14375
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14376
|
+
data?: undefined;
|
|
14377
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14378
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14379
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14380
|
+
data?: undefined;
|
|
14381
|
+
meta?: {} | undefined;
|
|
14382
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14383
|
+
currentData?: ImsNode[] | undefined;
|
|
14384
|
+
isUninitialized: false;
|
|
14385
|
+
isLoading: false;
|
|
14386
|
+
isFetching: false;
|
|
14387
|
+
isSuccess: false;
|
|
14388
|
+
isError: false;
|
|
14389
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
14390
|
+
isError: true;
|
|
14391
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14392
|
+
locationCode: string;
|
|
14393
|
+
status: string;
|
|
14394
|
+
unsubscribedOnly: boolean;
|
|
14395
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14396
|
+
baseQueryType?: BaseQueryTypes;
|
|
14397
|
+
apiName?: string;
|
|
14398
|
+
}) => {
|
|
14399
|
+
error?: undefined;
|
|
14400
|
+
data: unknown;
|
|
14401
|
+
meta?: {} | undefined;
|
|
14402
|
+
} | {
|
|
14403
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14404
|
+
data?: undefined;
|
|
14405
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14406
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14407
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14408
|
+
data?: undefined;
|
|
14409
|
+
meta?: {} | undefined;
|
|
14410
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>> & {
|
|
14411
|
+
currentData?: ImsNode[] | undefined;
|
|
14412
|
+
isUninitialized: false;
|
|
14413
|
+
isLoading: false;
|
|
14414
|
+
isFetching: false;
|
|
14415
|
+
isSuccess: false;
|
|
14416
|
+
isError: false;
|
|
14417
|
+
}, "error">>)>> & {
|
|
14418
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
14419
|
+
}) => R) | undefined;
|
|
14420
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
14421
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14422
|
+
locationCode: string;
|
|
14423
|
+
status: string;
|
|
14424
|
+
unsubscribedOnly: boolean;
|
|
14425
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14426
|
+
baseQueryType?: BaseQueryTypes;
|
|
14427
|
+
apiName?: string;
|
|
14428
|
+
}) => {
|
|
14429
|
+
error?: undefined;
|
|
14430
|
+
data: unknown;
|
|
14431
|
+
meta?: {} | undefined;
|
|
14432
|
+
} | {
|
|
14433
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14434
|
+
data?: undefined;
|
|
14435
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14436
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14437
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14438
|
+
data?: undefined;
|
|
14439
|
+
meta?: {} | undefined;
|
|
14440
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsNode[], "orchestratorApi", unknown>>;
|
|
14441
|
+
};
|
|
14442
|
+
declare const useVlansByServicePortQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
14443
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
14444
|
+
originalArgs?: undefined | undefined;
|
|
14445
|
+
data?: undefined | undefined;
|
|
14446
|
+
error?: undefined | undefined;
|
|
14447
|
+
requestId?: undefined | undefined;
|
|
14448
|
+
endpointName?: string | undefined;
|
|
14449
|
+
startedTimeStamp?: undefined | undefined;
|
|
14450
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
14451
|
+
} & {
|
|
14452
|
+
currentData?: VlanRange[] | undefined;
|
|
14453
|
+
isUninitialized: false;
|
|
14454
|
+
isLoading: false;
|
|
14455
|
+
isFetching: false;
|
|
14456
|
+
isSuccess: false;
|
|
14457
|
+
isError: false;
|
|
14458
|
+
}, "isUninitialized"> & {
|
|
14459
|
+
isUninitialized: true;
|
|
14460
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14461
|
+
subscriptionId: string;
|
|
14462
|
+
nsiVlansOnly: boolean;
|
|
14463
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14464
|
+
baseQueryType?: BaseQueryTypes;
|
|
14465
|
+
apiName?: string;
|
|
14466
|
+
}) => {
|
|
14467
|
+
error?: undefined;
|
|
14468
|
+
data: unknown;
|
|
14469
|
+
meta?: {} | undefined;
|
|
14470
|
+
} | {
|
|
14471
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14472
|
+
data?: undefined;
|
|
14473
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14474
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14475
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14476
|
+
data?: undefined;
|
|
14477
|
+
meta?: {} | undefined;
|
|
14478
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14479
|
+
currentData?: VlanRange[] | undefined;
|
|
14480
|
+
isUninitialized: false;
|
|
14481
|
+
isLoading: false;
|
|
14482
|
+
isFetching: false;
|
|
14483
|
+
isSuccess: false;
|
|
14484
|
+
isError: false;
|
|
14485
|
+
}, {
|
|
14486
|
+
isLoading: true;
|
|
14487
|
+
isFetching: boolean;
|
|
14488
|
+
data: undefined;
|
|
14489
|
+
} | ({
|
|
14490
|
+
isSuccess: true;
|
|
14491
|
+
isFetching: true;
|
|
14492
|
+
error: undefined;
|
|
14493
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14494
|
+
subscriptionId: string;
|
|
14495
|
+
nsiVlansOnly: boolean;
|
|
14496
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14497
|
+
baseQueryType?: BaseQueryTypes;
|
|
14498
|
+
apiName?: string;
|
|
14499
|
+
}) => {
|
|
14500
|
+
error?: undefined;
|
|
14501
|
+
data: unknown;
|
|
14502
|
+
meta?: {} | undefined;
|
|
14503
|
+
} | {
|
|
14504
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14505
|
+
data?: undefined;
|
|
14506
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14507
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14508
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14509
|
+
data?: undefined;
|
|
14510
|
+
meta?: {} | undefined;
|
|
14511
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14512
|
+
currentData?: VlanRange[] | undefined;
|
|
14513
|
+
isUninitialized: false;
|
|
14514
|
+
isLoading: false;
|
|
14515
|
+
isFetching: false;
|
|
14516
|
+
isSuccess: false;
|
|
14517
|
+
isError: false;
|
|
14518
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
14519
|
+
isSuccess: true;
|
|
14520
|
+
isFetching: false;
|
|
14521
|
+
error: undefined;
|
|
14522
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14523
|
+
subscriptionId: string;
|
|
14524
|
+
nsiVlansOnly: boolean;
|
|
14525
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14526
|
+
baseQueryType?: BaseQueryTypes;
|
|
14527
|
+
apiName?: string;
|
|
14528
|
+
}) => {
|
|
14529
|
+
error?: undefined;
|
|
14530
|
+
data: unknown;
|
|
14531
|
+
meta?: {} | undefined;
|
|
14532
|
+
} | {
|
|
14533
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14534
|
+
data?: undefined;
|
|
14535
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14536
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14537
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14538
|
+
data?: undefined;
|
|
14539
|
+
meta?: {} | undefined;
|
|
14540
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14541
|
+
currentData?: VlanRange[] | undefined;
|
|
14542
|
+
isUninitialized: false;
|
|
14543
|
+
isLoading: false;
|
|
14544
|
+
isFetching: false;
|
|
14545
|
+
isSuccess: false;
|
|
14546
|
+
isError: false;
|
|
14547
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
14548
|
+
isError: true;
|
|
14549
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14550
|
+
subscriptionId: string;
|
|
14551
|
+
nsiVlansOnly: boolean;
|
|
14552
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14553
|
+
baseQueryType?: BaseQueryTypes;
|
|
14554
|
+
apiName?: string;
|
|
14555
|
+
}) => {
|
|
14556
|
+
error?: undefined;
|
|
14557
|
+
data: unknown;
|
|
14558
|
+
meta?: {} | undefined;
|
|
14559
|
+
} | {
|
|
14560
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14561
|
+
data?: undefined;
|
|
14562
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14563
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14564
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14565
|
+
data?: undefined;
|
|
14566
|
+
meta?: {} | undefined;
|
|
14567
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14568
|
+
currentData?: VlanRange[] | undefined;
|
|
14569
|
+
isUninitialized: false;
|
|
14570
|
+
isLoading: false;
|
|
14571
|
+
isFetching: false;
|
|
14572
|
+
isSuccess: false;
|
|
14573
|
+
isError: false;
|
|
14574
|
+
}, "error">>)>> & {
|
|
14575
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
14576
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
14577
|
+
subscriptionId: string;
|
|
14578
|
+
nsiVlansOnly: boolean;
|
|
14579
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
14580
|
+
skip?: boolean;
|
|
14581
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
14582
|
+
} & {
|
|
14583
|
+
skip?: boolean;
|
|
14584
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
14585
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
14586
|
+
originalArgs?: undefined | undefined;
|
|
14587
|
+
data?: undefined | undefined;
|
|
14588
|
+
error?: undefined | undefined;
|
|
14589
|
+
requestId?: undefined | undefined;
|
|
14590
|
+
endpointName?: string | undefined;
|
|
14591
|
+
startedTimeStamp?: undefined | undefined;
|
|
14592
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
14593
|
+
} & {
|
|
14594
|
+
currentData?: VlanRange[] | undefined;
|
|
14595
|
+
isUninitialized: false;
|
|
14596
|
+
isLoading: false;
|
|
14597
|
+
isFetching: false;
|
|
14598
|
+
isSuccess: false;
|
|
14599
|
+
isError: false;
|
|
14600
|
+
}, "isUninitialized"> & {
|
|
14601
|
+
isUninitialized: true;
|
|
14602
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14603
|
+
subscriptionId: string;
|
|
14604
|
+
nsiVlansOnly: boolean;
|
|
14605
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14606
|
+
baseQueryType?: BaseQueryTypes;
|
|
14607
|
+
apiName?: string;
|
|
14608
|
+
}) => {
|
|
14609
|
+
error?: undefined;
|
|
14610
|
+
data: unknown;
|
|
14611
|
+
meta?: {} | undefined;
|
|
14612
|
+
} | {
|
|
14613
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14614
|
+
data?: undefined;
|
|
14615
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14616
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14617
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14618
|
+
data?: undefined;
|
|
14619
|
+
meta?: {} | undefined;
|
|
14620
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14621
|
+
currentData?: VlanRange[] | undefined;
|
|
14622
|
+
isUninitialized: false;
|
|
14623
|
+
isLoading: false;
|
|
14624
|
+
isFetching: false;
|
|
14625
|
+
isSuccess: false;
|
|
14626
|
+
isError: false;
|
|
14627
|
+
}, {
|
|
14628
|
+
isLoading: true;
|
|
14629
|
+
isFetching: boolean;
|
|
14630
|
+
data: undefined;
|
|
14631
|
+
} | ({
|
|
14632
|
+
isSuccess: true;
|
|
14633
|
+
isFetching: true;
|
|
14634
|
+
error: undefined;
|
|
14635
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14636
|
+
subscriptionId: string;
|
|
14637
|
+
nsiVlansOnly: boolean;
|
|
14638
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14639
|
+
baseQueryType?: BaseQueryTypes;
|
|
14640
|
+
apiName?: string;
|
|
14641
|
+
}) => {
|
|
14642
|
+
error?: undefined;
|
|
14643
|
+
data: unknown;
|
|
14644
|
+
meta?: {} | undefined;
|
|
14645
|
+
} | {
|
|
14646
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14647
|
+
data?: undefined;
|
|
14648
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14649
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14650
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14651
|
+
data?: undefined;
|
|
14652
|
+
meta?: {} | undefined;
|
|
14653
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14654
|
+
currentData?: VlanRange[] | undefined;
|
|
14655
|
+
isUninitialized: false;
|
|
14656
|
+
isLoading: false;
|
|
14657
|
+
isFetching: false;
|
|
14658
|
+
isSuccess: false;
|
|
14659
|
+
isError: false;
|
|
14660
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
14661
|
+
isSuccess: true;
|
|
14662
|
+
isFetching: false;
|
|
14663
|
+
error: undefined;
|
|
14664
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14665
|
+
subscriptionId: string;
|
|
14666
|
+
nsiVlansOnly: boolean;
|
|
14667
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14668
|
+
baseQueryType?: BaseQueryTypes;
|
|
14669
|
+
apiName?: string;
|
|
14670
|
+
}) => {
|
|
14671
|
+
error?: undefined;
|
|
14672
|
+
data: unknown;
|
|
14673
|
+
meta?: {} | undefined;
|
|
14674
|
+
} | {
|
|
14675
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14676
|
+
data?: undefined;
|
|
14677
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14678
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14679
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14680
|
+
data?: undefined;
|
|
14681
|
+
meta?: {} | undefined;
|
|
14682
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14683
|
+
currentData?: VlanRange[] | undefined;
|
|
14684
|
+
isUninitialized: false;
|
|
14685
|
+
isLoading: false;
|
|
14686
|
+
isFetching: false;
|
|
14687
|
+
isSuccess: false;
|
|
14688
|
+
isError: false;
|
|
14689
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
14690
|
+
isError: true;
|
|
14691
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14692
|
+
subscriptionId: string;
|
|
14693
|
+
nsiVlansOnly: boolean;
|
|
14694
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14695
|
+
baseQueryType?: BaseQueryTypes;
|
|
14696
|
+
apiName?: string;
|
|
14697
|
+
}) => {
|
|
14698
|
+
error?: undefined;
|
|
14699
|
+
data: unknown;
|
|
14700
|
+
meta?: {} | undefined;
|
|
14701
|
+
} | {
|
|
14702
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14703
|
+
data?: undefined;
|
|
14704
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14705
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14706
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14707
|
+
data?: undefined;
|
|
14708
|
+
meta?: {} | undefined;
|
|
14709
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>> & {
|
|
14710
|
+
currentData?: VlanRange[] | undefined;
|
|
14711
|
+
isUninitialized: false;
|
|
14712
|
+
isLoading: false;
|
|
14713
|
+
isFetching: false;
|
|
14714
|
+
isSuccess: false;
|
|
14715
|
+
isError: false;
|
|
14716
|
+
}, "error">>)>> & {
|
|
14717
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
14718
|
+
}) => R) | undefined;
|
|
14719
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
14720
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14721
|
+
subscriptionId: string;
|
|
14722
|
+
nsiVlansOnly: boolean;
|
|
14723
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14724
|
+
baseQueryType?: BaseQueryTypes;
|
|
14725
|
+
apiName?: string;
|
|
14726
|
+
}) => {
|
|
14727
|
+
error?: undefined;
|
|
14728
|
+
data: unknown;
|
|
14729
|
+
meta?: {} | undefined;
|
|
14730
|
+
} | {
|
|
14731
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14732
|
+
data?: undefined;
|
|
14733
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14734
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14735
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14736
|
+
data?: undefined;
|
|
14737
|
+
meta?: {} | undefined;
|
|
14738
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, VlanRange[], "orchestratorApi", unknown>>;
|
|
14739
|
+
};
|
|
14740
|
+
declare const useFreePortsByNodeSubscriptionIdAndSpeedQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
14741
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
14742
|
+
originalArgs?: undefined | undefined;
|
|
14743
|
+
data?: undefined | undefined;
|
|
14744
|
+
error?: undefined | undefined;
|
|
14745
|
+
requestId?: undefined | undefined;
|
|
14746
|
+
endpointName?: string | undefined;
|
|
14747
|
+
startedTimeStamp?: undefined | undefined;
|
|
14748
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
14749
|
+
} & {
|
|
14750
|
+
currentData?: ImsPort[] | undefined;
|
|
14751
|
+
isUninitialized: false;
|
|
14752
|
+
isLoading: false;
|
|
14753
|
+
isFetching: false;
|
|
14754
|
+
isSuccess: false;
|
|
14755
|
+
isError: false;
|
|
14756
|
+
}, "isUninitialized"> & {
|
|
14757
|
+
isUninitialized: true;
|
|
14758
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14759
|
+
nodeSubscriptionId: string;
|
|
14760
|
+
interfaceSpeed: number;
|
|
14761
|
+
mode: string;
|
|
14762
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14763
|
+
baseQueryType?: BaseQueryTypes;
|
|
14764
|
+
apiName?: string;
|
|
14765
|
+
}) => {
|
|
14766
|
+
error?: undefined;
|
|
14767
|
+
data: unknown;
|
|
14768
|
+
meta?: {} | undefined;
|
|
14769
|
+
} | {
|
|
14770
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14771
|
+
data?: undefined;
|
|
14772
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14773
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14774
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14775
|
+
data?: undefined;
|
|
14776
|
+
meta?: {} | undefined;
|
|
14777
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
14778
|
+
currentData?: ImsPort[] | undefined;
|
|
14779
|
+
isUninitialized: false;
|
|
14780
|
+
isLoading: false;
|
|
14781
|
+
isFetching: false;
|
|
14782
|
+
isSuccess: false;
|
|
14783
|
+
isError: false;
|
|
14784
|
+
}, {
|
|
14785
|
+
isLoading: true;
|
|
14786
|
+
isFetching: boolean;
|
|
14787
|
+
data: undefined;
|
|
14788
|
+
} | ({
|
|
14789
|
+
isSuccess: true;
|
|
14790
|
+
isFetching: true;
|
|
14791
|
+
error: undefined;
|
|
14792
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14793
|
+
nodeSubscriptionId: string;
|
|
14794
|
+
interfaceSpeed: number;
|
|
14795
|
+
mode: string;
|
|
14796
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14797
|
+
baseQueryType?: BaseQueryTypes;
|
|
14798
|
+
apiName?: string;
|
|
14799
|
+
}) => {
|
|
14800
|
+
error?: undefined;
|
|
14801
|
+
data: unknown;
|
|
14802
|
+
meta?: {} | undefined;
|
|
14803
|
+
} | {
|
|
14804
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14805
|
+
data?: undefined;
|
|
14806
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14807
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14808
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14809
|
+
data?: undefined;
|
|
14810
|
+
meta?: {} | undefined;
|
|
14811
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
14812
|
+
currentData?: ImsPort[] | undefined;
|
|
14813
|
+
isUninitialized: false;
|
|
14814
|
+
isLoading: false;
|
|
14815
|
+
isFetching: false;
|
|
14816
|
+
isSuccess: false;
|
|
14817
|
+
isError: false;
|
|
14818
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
14819
|
+
isSuccess: true;
|
|
14820
|
+
isFetching: false;
|
|
14821
|
+
error: undefined;
|
|
14822
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14823
|
+
nodeSubscriptionId: string;
|
|
14824
|
+
interfaceSpeed: number;
|
|
14825
|
+
mode: string;
|
|
14826
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14827
|
+
baseQueryType?: BaseQueryTypes;
|
|
14828
|
+
apiName?: string;
|
|
14829
|
+
}) => {
|
|
14830
|
+
error?: undefined;
|
|
14831
|
+
data: unknown;
|
|
14832
|
+
meta?: {} | undefined;
|
|
14833
|
+
} | {
|
|
14834
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14835
|
+
data?: undefined;
|
|
14836
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14837
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14838
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14839
|
+
data?: undefined;
|
|
14840
|
+
meta?: {} | undefined;
|
|
14841
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
14842
|
+
currentData?: ImsPort[] | undefined;
|
|
14843
|
+
isUninitialized: false;
|
|
14844
|
+
isLoading: false;
|
|
14845
|
+
isFetching: false;
|
|
14846
|
+
isSuccess: false;
|
|
14847
|
+
isError: false;
|
|
14848
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
14849
|
+
isError: true;
|
|
14850
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14851
|
+
nodeSubscriptionId: string;
|
|
14852
|
+
interfaceSpeed: number;
|
|
14853
|
+
mode: string;
|
|
14854
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14855
|
+
baseQueryType?: BaseQueryTypes;
|
|
14856
|
+
apiName?: string;
|
|
14857
|
+
}) => {
|
|
14858
|
+
error?: undefined;
|
|
14859
|
+
data: unknown;
|
|
14860
|
+
meta?: {} | undefined;
|
|
14861
|
+
} | {
|
|
14862
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14863
|
+
data?: undefined;
|
|
14864
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14865
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14866
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14867
|
+
data?: undefined;
|
|
14868
|
+
meta?: {} | undefined;
|
|
14869
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
14870
|
+
currentData?: ImsPort[] | undefined;
|
|
14871
|
+
isUninitialized: false;
|
|
14872
|
+
isLoading: false;
|
|
14873
|
+
isFetching: false;
|
|
14874
|
+
isSuccess: false;
|
|
14875
|
+
isError: false;
|
|
14876
|
+
}, "error">>)>> & {
|
|
14877
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
14878
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
14879
|
+
nodeSubscriptionId: string;
|
|
14880
|
+
interfaceSpeed: number;
|
|
14881
|
+
mode: string;
|
|
14882
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
14883
|
+
skip?: boolean;
|
|
14884
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
14885
|
+
} & {
|
|
14886
|
+
skip?: boolean;
|
|
14887
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
14888
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
14889
|
+
originalArgs?: undefined | undefined;
|
|
14890
|
+
data?: undefined | undefined;
|
|
14891
|
+
error?: undefined | undefined;
|
|
14892
|
+
requestId?: undefined | undefined;
|
|
14893
|
+
endpointName?: string | undefined;
|
|
14894
|
+
startedTimeStamp?: undefined | undefined;
|
|
14895
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
14896
|
+
} & {
|
|
14897
|
+
currentData?: ImsPort[] | undefined;
|
|
14898
|
+
isUninitialized: false;
|
|
14899
|
+
isLoading: false;
|
|
14900
|
+
isFetching: false;
|
|
14901
|
+
isSuccess: false;
|
|
14902
|
+
isError: false;
|
|
14903
|
+
}, "isUninitialized"> & {
|
|
14904
|
+
isUninitialized: true;
|
|
14905
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14906
|
+
nodeSubscriptionId: string;
|
|
14907
|
+
interfaceSpeed: number;
|
|
14908
|
+
mode: string;
|
|
14909
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14910
|
+
baseQueryType?: BaseQueryTypes;
|
|
14911
|
+
apiName?: string;
|
|
14912
|
+
}) => {
|
|
14913
|
+
error?: undefined;
|
|
14914
|
+
data: unknown;
|
|
14915
|
+
meta?: {} | undefined;
|
|
14916
|
+
} | {
|
|
14917
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14918
|
+
data?: undefined;
|
|
14919
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14920
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14921
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14922
|
+
data?: undefined;
|
|
14923
|
+
meta?: {} | undefined;
|
|
14924
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
14925
|
+
currentData?: ImsPort[] | undefined;
|
|
14926
|
+
isUninitialized: false;
|
|
14927
|
+
isLoading: false;
|
|
14928
|
+
isFetching: false;
|
|
14929
|
+
isSuccess: false;
|
|
14930
|
+
isError: false;
|
|
14931
|
+
}, {
|
|
14932
|
+
isLoading: true;
|
|
14933
|
+
isFetching: boolean;
|
|
14934
|
+
data: undefined;
|
|
14935
|
+
} | ({
|
|
14936
|
+
isSuccess: true;
|
|
14937
|
+
isFetching: true;
|
|
14938
|
+
error: undefined;
|
|
14939
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14940
|
+
nodeSubscriptionId: string;
|
|
14941
|
+
interfaceSpeed: number;
|
|
14942
|
+
mode: string;
|
|
14943
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14944
|
+
baseQueryType?: BaseQueryTypes;
|
|
14945
|
+
apiName?: string;
|
|
14946
|
+
}) => {
|
|
14947
|
+
error?: undefined;
|
|
14948
|
+
data: unknown;
|
|
14949
|
+
meta?: {} | undefined;
|
|
14950
|
+
} | {
|
|
14951
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14952
|
+
data?: undefined;
|
|
14953
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14954
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14955
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14956
|
+
data?: undefined;
|
|
14957
|
+
meta?: {} | undefined;
|
|
14958
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
14959
|
+
currentData?: ImsPort[] | undefined;
|
|
14960
|
+
isUninitialized: false;
|
|
14961
|
+
isLoading: false;
|
|
14962
|
+
isFetching: false;
|
|
14963
|
+
isSuccess: false;
|
|
14964
|
+
isError: false;
|
|
14965
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
14966
|
+
isSuccess: true;
|
|
14967
|
+
isFetching: false;
|
|
14968
|
+
error: undefined;
|
|
14969
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14970
|
+
nodeSubscriptionId: string;
|
|
14971
|
+
interfaceSpeed: number;
|
|
14972
|
+
mode: string;
|
|
14973
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
14974
|
+
baseQueryType?: BaseQueryTypes;
|
|
14975
|
+
apiName?: string;
|
|
14976
|
+
}) => {
|
|
14977
|
+
error?: undefined;
|
|
14978
|
+
data: unknown;
|
|
14979
|
+
meta?: {} | undefined;
|
|
14980
|
+
} | {
|
|
14981
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
14982
|
+
data?: undefined;
|
|
14983
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
14984
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
14985
|
+
error: graphql.GraphQLError[] | undefined;
|
|
14986
|
+
data?: undefined;
|
|
14987
|
+
meta?: {} | undefined;
|
|
14988
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
14989
|
+
currentData?: ImsPort[] | undefined;
|
|
14990
|
+
isUninitialized: false;
|
|
14991
|
+
isLoading: false;
|
|
14992
|
+
isFetching: false;
|
|
14993
|
+
isSuccess: false;
|
|
14994
|
+
isError: false;
|
|
14995
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
14996
|
+
isError: true;
|
|
14997
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
14998
|
+
nodeSubscriptionId: string;
|
|
14999
|
+
interfaceSpeed: number;
|
|
15000
|
+
mode: string;
|
|
15001
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15002
|
+
baseQueryType?: BaseQueryTypes;
|
|
15003
|
+
apiName?: string;
|
|
15004
|
+
}) => {
|
|
15005
|
+
error?: undefined;
|
|
15006
|
+
data: unknown;
|
|
15007
|
+
meta?: {} | undefined;
|
|
15008
|
+
} | {
|
|
15009
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15010
|
+
data?: undefined;
|
|
15011
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15012
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15013
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15014
|
+
data?: undefined;
|
|
15015
|
+
meta?: {} | undefined;
|
|
15016
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>> & {
|
|
15017
|
+
currentData?: ImsPort[] | undefined;
|
|
15018
|
+
isUninitialized: false;
|
|
15019
|
+
isLoading: false;
|
|
15020
|
+
isFetching: false;
|
|
15021
|
+
isSuccess: false;
|
|
15022
|
+
isError: false;
|
|
15023
|
+
}, "error">>)>> & {
|
|
15024
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
15025
|
+
}) => R) | undefined;
|
|
15026
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
15027
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15028
|
+
nodeSubscriptionId: string;
|
|
15029
|
+
interfaceSpeed: number;
|
|
15030
|
+
mode: string;
|
|
15031
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15032
|
+
baseQueryType?: BaseQueryTypes;
|
|
15033
|
+
apiName?: string;
|
|
15034
|
+
}) => {
|
|
15035
|
+
error?: undefined;
|
|
15036
|
+
data: unknown;
|
|
15037
|
+
meta?: {} | undefined;
|
|
15038
|
+
} | {
|
|
15039
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15040
|
+
data?: undefined;
|
|
15041
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15042
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15043
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15044
|
+
data?: undefined;
|
|
15045
|
+
meta?: {} | undefined;
|
|
15046
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, ImsPort[], "orchestratorApi", unknown>>;
|
|
15047
|
+
};
|
|
15048
|
+
declare const useGetNodeSubscriptionOptionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
15049
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
15050
|
+
originalArgs?: undefined | undefined;
|
|
15051
|
+
data?: undefined | undefined;
|
|
15052
|
+
error?: undefined | undefined;
|
|
15053
|
+
requestId?: undefined | undefined;
|
|
15054
|
+
endpointName?: string | undefined;
|
|
15055
|
+
startedTimeStamp?: undefined | undefined;
|
|
15056
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
15057
|
+
} & {
|
|
15058
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15059
|
+
isUninitialized: false;
|
|
15060
|
+
isLoading: false;
|
|
15061
|
+
isFetching: false;
|
|
15062
|
+
isSuccess: false;
|
|
15063
|
+
isError: false;
|
|
15064
|
+
}, "isUninitialized"> & {
|
|
15065
|
+
isUninitialized: true;
|
|
15066
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15067
|
+
statuses: string;
|
|
15068
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15069
|
+
baseQueryType?: BaseQueryTypes;
|
|
15070
|
+
apiName?: string;
|
|
15071
|
+
}) => {
|
|
15072
|
+
error?: undefined;
|
|
15073
|
+
data: unknown;
|
|
15074
|
+
meta?: {} | undefined;
|
|
15075
|
+
} | {
|
|
15076
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15077
|
+
data?: undefined;
|
|
15078
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15079
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15080
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15081
|
+
data?: undefined;
|
|
15082
|
+
meta?: {} | undefined;
|
|
15083
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15084
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15085
|
+
isUninitialized: false;
|
|
15086
|
+
isLoading: false;
|
|
15087
|
+
isFetching: false;
|
|
15088
|
+
isSuccess: false;
|
|
15089
|
+
isError: false;
|
|
15090
|
+
}, {
|
|
15091
|
+
isLoading: true;
|
|
15092
|
+
isFetching: boolean;
|
|
15093
|
+
data: undefined;
|
|
15094
|
+
} | ({
|
|
15095
|
+
isSuccess: true;
|
|
15096
|
+
isFetching: true;
|
|
15097
|
+
error: undefined;
|
|
15098
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15099
|
+
statuses: string;
|
|
15100
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15101
|
+
baseQueryType?: BaseQueryTypes;
|
|
15102
|
+
apiName?: string;
|
|
15103
|
+
}) => {
|
|
15104
|
+
error?: undefined;
|
|
15105
|
+
data: unknown;
|
|
15106
|
+
meta?: {} | undefined;
|
|
15107
|
+
} | {
|
|
15108
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15109
|
+
data?: undefined;
|
|
15110
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15111
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15112
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15113
|
+
data?: undefined;
|
|
15114
|
+
meta?: {} | undefined;
|
|
15115
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15116
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15117
|
+
isUninitialized: false;
|
|
15118
|
+
isLoading: false;
|
|
15119
|
+
isFetching: false;
|
|
15120
|
+
isSuccess: false;
|
|
15121
|
+
isError: false;
|
|
15122
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
15123
|
+
isSuccess: true;
|
|
15124
|
+
isFetching: false;
|
|
15125
|
+
error: undefined;
|
|
15126
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15127
|
+
statuses: string;
|
|
15128
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15129
|
+
baseQueryType?: BaseQueryTypes;
|
|
15130
|
+
apiName?: string;
|
|
15131
|
+
}) => {
|
|
15132
|
+
error?: undefined;
|
|
15133
|
+
data: unknown;
|
|
15134
|
+
meta?: {} | undefined;
|
|
15135
|
+
} | {
|
|
15136
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15137
|
+
data?: undefined;
|
|
15138
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15139
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15140
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15141
|
+
data?: undefined;
|
|
15142
|
+
meta?: {} | undefined;
|
|
15143
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15144
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15145
|
+
isUninitialized: false;
|
|
15146
|
+
isLoading: false;
|
|
15147
|
+
isFetching: false;
|
|
15148
|
+
isSuccess: false;
|
|
15149
|
+
isError: false;
|
|
15150
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
15151
|
+
isError: true;
|
|
15152
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15153
|
+
statuses: string;
|
|
15154
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15155
|
+
baseQueryType?: BaseQueryTypes;
|
|
15156
|
+
apiName?: string;
|
|
15157
|
+
}) => {
|
|
15158
|
+
error?: undefined;
|
|
15159
|
+
data: unknown;
|
|
15160
|
+
meta?: {} | undefined;
|
|
15161
|
+
} | {
|
|
15162
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15163
|
+
data?: undefined;
|
|
15164
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15165
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15166
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15167
|
+
data?: undefined;
|
|
15168
|
+
meta?: {} | undefined;
|
|
15169
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15170
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15171
|
+
isUninitialized: false;
|
|
15172
|
+
isLoading: false;
|
|
15173
|
+
isFetching: false;
|
|
15174
|
+
isSuccess: false;
|
|
15175
|
+
isError: false;
|
|
15176
|
+
}, "error">>)>> & {
|
|
15177
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
15178
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
15179
|
+
statuses: string;
|
|
15180
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
15181
|
+
skip?: boolean;
|
|
15182
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
15183
|
+
} & {
|
|
15184
|
+
skip?: boolean;
|
|
15185
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
15186
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
15187
|
+
originalArgs?: undefined | undefined;
|
|
15188
|
+
data?: undefined | undefined;
|
|
15189
|
+
error?: undefined | undefined;
|
|
15190
|
+
requestId?: undefined | undefined;
|
|
15191
|
+
endpointName?: string | undefined;
|
|
15192
|
+
startedTimeStamp?: undefined | undefined;
|
|
15193
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
15194
|
+
} & {
|
|
15195
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15196
|
+
isUninitialized: false;
|
|
15197
|
+
isLoading: false;
|
|
15198
|
+
isFetching: false;
|
|
15199
|
+
isSuccess: false;
|
|
15200
|
+
isError: false;
|
|
15201
|
+
}, "isUninitialized"> & {
|
|
15202
|
+
isUninitialized: true;
|
|
15203
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15204
|
+
statuses: string;
|
|
15205
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15206
|
+
baseQueryType?: BaseQueryTypes;
|
|
15207
|
+
apiName?: string;
|
|
15208
|
+
}) => {
|
|
15209
|
+
error?: undefined;
|
|
15210
|
+
data: unknown;
|
|
15211
|
+
meta?: {} | undefined;
|
|
15212
|
+
} | {
|
|
15213
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15214
|
+
data?: undefined;
|
|
15215
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15216
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15217
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15218
|
+
data?: undefined;
|
|
15219
|
+
meta?: {} | undefined;
|
|
15220
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15221
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15222
|
+
isUninitialized: false;
|
|
15223
|
+
isLoading: false;
|
|
15224
|
+
isFetching: false;
|
|
15225
|
+
isSuccess: false;
|
|
15226
|
+
isError: false;
|
|
15227
|
+
}, {
|
|
15228
|
+
isLoading: true;
|
|
15229
|
+
isFetching: boolean;
|
|
15230
|
+
data: undefined;
|
|
15231
|
+
} | ({
|
|
15232
|
+
isSuccess: true;
|
|
15233
|
+
isFetching: true;
|
|
15234
|
+
error: undefined;
|
|
15235
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15236
|
+
statuses: string;
|
|
15237
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15238
|
+
baseQueryType?: BaseQueryTypes;
|
|
15239
|
+
apiName?: string;
|
|
15240
|
+
}) => {
|
|
15241
|
+
error?: undefined;
|
|
15242
|
+
data: unknown;
|
|
15243
|
+
meta?: {} | undefined;
|
|
15244
|
+
} | {
|
|
15245
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15246
|
+
data?: undefined;
|
|
15247
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15248
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15249
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15250
|
+
data?: undefined;
|
|
15251
|
+
meta?: {} | undefined;
|
|
15252
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15253
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15254
|
+
isUninitialized: false;
|
|
15255
|
+
isLoading: false;
|
|
15256
|
+
isFetching: false;
|
|
15257
|
+
isSuccess: false;
|
|
15258
|
+
isError: false;
|
|
15259
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
15260
|
+
isSuccess: true;
|
|
15261
|
+
isFetching: false;
|
|
15262
|
+
error: undefined;
|
|
15263
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15264
|
+
statuses: string;
|
|
15265
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15266
|
+
baseQueryType?: BaseQueryTypes;
|
|
15267
|
+
apiName?: string;
|
|
15268
|
+
}) => {
|
|
15269
|
+
error?: undefined;
|
|
15270
|
+
data: unknown;
|
|
15271
|
+
meta?: {} | undefined;
|
|
15272
|
+
} | {
|
|
15273
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15274
|
+
data?: undefined;
|
|
15275
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15276
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15277
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15278
|
+
data?: undefined;
|
|
15279
|
+
meta?: {} | undefined;
|
|
15280
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15281
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15282
|
+
isUninitialized: false;
|
|
15283
|
+
isLoading: false;
|
|
15284
|
+
isFetching: false;
|
|
15285
|
+
isSuccess: false;
|
|
15286
|
+
isError: false;
|
|
15287
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
15288
|
+
isError: true;
|
|
15289
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15290
|
+
statuses: string;
|
|
15291
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15292
|
+
baseQueryType?: BaseQueryTypes;
|
|
15293
|
+
apiName?: string;
|
|
15294
|
+
}) => {
|
|
15295
|
+
error?: undefined;
|
|
15296
|
+
data: unknown;
|
|
15297
|
+
meta?: {} | undefined;
|
|
15298
|
+
} | {
|
|
15299
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15300
|
+
data?: undefined;
|
|
15301
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15302
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15303
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15304
|
+
data?: undefined;
|
|
15305
|
+
meta?: {} | undefined;
|
|
15306
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>> & {
|
|
15307
|
+
currentData?: NodeSubscriptionOption[] | undefined;
|
|
15308
|
+
isUninitialized: false;
|
|
15309
|
+
isLoading: false;
|
|
15310
|
+
isFetching: false;
|
|
15311
|
+
isSuccess: false;
|
|
15312
|
+
isError: false;
|
|
15313
|
+
}, "error">>)>> & {
|
|
15314
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
15315
|
+
}) => R) | undefined;
|
|
15316
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
15317
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
15318
|
+
statuses: string;
|
|
15319
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
15320
|
+
baseQueryType?: BaseQueryTypes;
|
|
15321
|
+
apiName?: string;
|
|
15322
|
+
}) => {
|
|
15323
|
+
error?: undefined;
|
|
15324
|
+
data: unknown;
|
|
15325
|
+
meta?: {} | undefined;
|
|
15326
|
+
} | {
|
|
15327
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
15328
|
+
data?: undefined;
|
|
15329
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
15330
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
15331
|
+
error: graphql.GraphQLError[] | undefined;
|
|
15332
|
+
data?: undefined;
|
|
15333
|
+
meta?: {} | undefined;
|
|
15334
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>>;
|
|
15335
|
+
};
|
|
15336
|
+
|
|
15337
|
+
type CustomApiConfig = {
|
|
15338
|
+
apiName: string;
|
|
15339
|
+
apiBaseUrl: string;
|
|
15340
|
+
};
|
|
15341
|
+
type CustomApiSlice = Slice<CustomApiConfig[]>;
|
|
15342
|
+
declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
|
|
15343
|
+
|
|
15344
|
+
type ValueOverrideFunction = (fieldValue: FieldValue | RenderableFieldValue, allFieldValues: FieldValue[] | RenderableFieldValue[]) => ReactNode;
|
|
15345
|
+
type ValueOverrideConfiguration = Record<string, ValueOverrideFunction>;
|
|
15346
|
+
type WfoSubscriptionDetailGeneralConfiguration = {
|
|
15347
|
+
id: string;
|
|
15348
|
+
node: ReactNode;
|
|
15349
|
+
};
|
|
15350
|
+
type OrchestratorComponentOverride = {
|
|
15351
|
+
startPage?: {
|
|
15352
|
+
summaryCardConfigurationOverride?: (defaultItems: ReactElement[]) => ReactElement[];
|
|
15353
|
+
};
|
|
15354
|
+
subscriptionDetail?: {
|
|
15355
|
+
valueOverrides?: ValueOverrideConfiguration;
|
|
15356
|
+
generalSectionConfigurationOverride?: (defaultSections: WfoSubscriptionDetailGeneralConfiguration[], subscriptionDetail: SubscriptionDetail) => WfoSubscriptionDetailGeneralConfiguration[];
|
|
15357
|
+
};
|
|
15358
|
+
};
|
|
15359
|
+
type OrchestratorComponentOverrideSlice = Slice<OrchestratorComponentOverride>;
|
|
15360
|
+
declare const getOrchestratorComponentOverrideSlice: (config: OrchestratorComponentOverride) => OrchestratorComponentOverrideSlice;
|
|
15361
|
+
|
|
15362
|
+
type ToastState = {
|
|
15363
|
+
messages: Toast[];
|
|
15364
|
+
};
|
|
15365
|
+
type ToastMessagesSlice = Slice<ToastState, {
|
|
15366
|
+
addToastMessage: (state: ToastState, action: PayloadAction<Toast>) => ToastState;
|
|
15367
|
+
removeToastMessage: (state: ToastState, action: PayloadAction<Toast['id']>) => ToastState;
|
|
15368
|
+
}, 'toastMessages', 'toastMessages'>;
|
|
15369
|
+
declare const toastMessagesSlice: ToastMessagesSlice;
|
|
15370
|
+
declare const addToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<Toast, "toastMessages/addToastMessage">;
|
|
15371
|
+
declare const removeToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<string, "toastMessages/removeToastMessage">;
|
|
15372
|
+
declare const toastMessagesReducer: Reducer<ToastState>;
|
|
15373
|
+
|
|
15374
|
+
type OrchestratorConfigSlice = Slice<OrchestratorConfig>;
|
|
15375
|
+
declare const getOrchestratorConfigSlice: (config: OrchestratorConfig) => OrchestratorConfigSlice;
|
|
15376
|
+
declare const selectOrchestratorConfig: (state: RootState) => OrchestratorConfig;
|
|
15377
|
+
|
|
15378
|
+
type PydanticForm = {
|
|
15379
|
+
componentMatcher?: ComponentMatcher;
|
|
15380
|
+
};
|
|
15381
|
+
|
|
15382
|
+
type RootState = {
|
|
15383
|
+
orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
|
|
15384
|
+
toastMessages: ReturnType<typeof toastMessagesReducer>;
|
|
15385
|
+
orchestratorConfig: OrchestratorConfig;
|
|
15386
|
+
orchestratorComponentOverride?: OrchestratorComponentOverride;
|
|
15387
|
+
pydanticForm?: PydanticForm;
|
|
15388
|
+
customApis: CustomApiConfig[];
|
|
15389
|
+
};
|
|
15390
|
+
type InitialOrchestratorStoreConfig = Pick<RootState, 'orchestratorConfig' | 'customApis' | 'orchestratorComponentOverride' | 'pydanticForm'>;
|
|
15391
|
+
declare const getOrchestratorStore: ({ orchestratorConfig, orchestratorComponentOverride, pydanticForm, customApis, }: InitialOrchestratorStoreConfig) => EnhancedStore<RootState>;
|
|
15392
|
+
type AppDispatch = Dispatch<UnknownAction>;
|
|
15393
|
+
|
|
15394
|
+
type StoreProviderProps = {
|
|
15395
|
+
initialOrchestratorConfig: OrchestratorConfig | null;
|
|
15396
|
+
orchestratorComponentOverride?: OrchestratorComponentOverride;
|
|
15397
|
+
componentMatcher?: ComponentMatcher;
|
|
15398
|
+
customApis?: CustomApiConfig[];
|
|
15399
|
+
children: ReactNode;
|
|
15400
|
+
};
|
|
15401
|
+
declare const StoreProvider: ({ initialOrchestratorConfig, orchestratorComponentOverride, componentMatcher, customApis, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
15402
|
+
|
|
15403
|
+
declare const wfoGraphqlRequestBaseQuery: <T, E = ErrorResponse>(options: GraphqlRequestBaseQueryArgs<E>, authActive: boolean) => BaseQueryFn<{
|
|
15404
|
+
document: string;
|
|
15405
|
+
variables?: GraphqlQueryVariables<T>;
|
|
15406
|
+
}, unknown, E, Partial<Pick<ClientError, "request" | "response">>>;
|
|
15407
|
+
|
|
15408
|
+
declare function stripUndefined(obj: object): Record<string, unknown>;
|
|
15409
|
+
declare const mapRtkErrorToWfoError: (error: FetchBaseQueryError | GraphQLError[] | SerializedError | undefined) => WfoGraphqlError[] | undefined;
|
|
15410
|
+
declare const getWebSocket: (url: string) => Promise<WebSocket>;
|
|
15411
|
+
|
|
15412
|
+
interface ValidationError {
|
|
15413
|
+
input_type: string;
|
|
15414
|
+
loc: (string | number)[];
|
|
15415
|
+
msg: string;
|
|
15416
|
+
type: string;
|
|
15417
|
+
ctx?: ValidationErrorContext;
|
|
15418
|
+
}
|
|
15419
|
+
interface ValidationErrorContext {
|
|
15420
|
+
[index: string]: string;
|
|
15421
|
+
}
|
|
15422
|
+
interface Form {
|
|
15423
|
+
stepUserInput?: JSONSchema6;
|
|
15424
|
+
hasNext?: boolean;
|
|
15425
|
+
}
|
|
15426
|
+
type InputForm = JSONSchema6;
|
|
15427
|
+
interface FormNotCompleteResponse {
|
|
15428
|
+
form: InputForm;
|
|
15429
|
+
meta?: {
|
|
15430
|
+
hasNext?: boolean;
|
|
15431
|
+
};
|
|
15432
|
+
}
|
|
15433
|
+
type FieldProps<Value, Extra = object, InputElementType = HTMLInputElement, ElementType = HTMLDivElement> = HTMLFieldProps<Value, ElementType, {
|
|
15434
|
+
inputRef?: Ref<InputElementType>;
|
|
15435
|
+
description?: string;
|
|
15436
|
+
} & Extra>;
|
|
15437
|
+
type ValidationErrorData = {
|
|
15438
|
+
detail: string;
|
|
15439
|
+
status: HttpStatus;
|
|
15440
|
+
title: string;
|
|
15441
|
+
traceback: string;
|
|
15442
|
+
type: string;
|
|
15443
|
+
validation_errors: [];
|
|
15444
|
+
};
|
|
15445
|
+
type FormValidationError = {
|
|
15446
|
+
data: ValidationErrorData;
|
|
15447
|
+
status: HttpStatus;
|
|
15448
|
+
};
|
|
15449
|
+
|
|
15450
|
+
type Nullable<T> = T | null;
|
|
15451
|
+
type GenericResponse = {
|
|
15452
|
+
[key: string]: unknown;
|
|
15453
|
+
};
|
|
15454
|
+
type StringifyObject<T extends object> = {
|
|
15455
|
+
[key in keyof T]: string;
|
|
15456
|
+
};
|
|
15457
|
+
type FieldValue = {
|
|
15458
|
+
field: string;
|
|
15459
|
+
value: string | number | boolean | null;
|
|
15460
|
+
};
|
|
15461
|
+
type RenderableFieldValue = {
|
|
15462
|
+
field: string;
|
|
15463
|
+
value: FieldValue['value'] | ReactNode;
|
|
15464
|
+
};
|
|
15465
|
+
declare enum EngineStatus {
|
|
15466
|
+
RUNNING = "RUNNING",
|
|
15467
|
+
PAUSING = "PAUSING",
|
|
15468
|
+
PAUSED = "PAUSED",
|
|
15469
|
+
UNKNOWN = "UNKNOWN"
|
|
15470
|
+
}
|
|
15471
|
+
declare enum WorkerTypes {
|
|
15472
|
+
CELERY = "CELERY",
|
|
15473
|
+
THREAD = "THREAD"
|
|
15474
|
+
}
|
|
15475
|
+
type Customer = {
|
|
15476
|
+
fullname: string;
|
|
15477
|
+
customerId: string;
|
|
15478
|
+
shortcode: string;
|
|
15479
|
+
};
|
|
15480
|
+
type CustomerWithSubscriptionCount = Customer & {
|
|
15481
|
+
subscriptions: {
|
|
15482
|
+
pageInfo: {
|
|
15483
|
+
totalItems: number;
|
|
15484
|
+
};
|
|
15485
|
+
};
|
|
15486
|
+
};
|
|
15487
|
+
type InUseByRelation = {
|
|
15488
|
+
subscription_instance_id: string;
|
|
15489
|
+
subscription_id: string;
|
|
15490
|
+
};
|
|
15491
|
+
type ProductBlockInstance = {
|
|
15492
|
+
id: number;
|
|
15493
|
+
subscriptionInstanceId: string;
|
|
15494
|
+
parent: Nullable<number>;
|
|
15495
|
+
productBlockInstanceValues: FieldValue[];
|
|
15496
|
+
inUseByRelations: InUseByRelation[];
|
|
15497
|
+
subscription: Pick<Subscription, 'subscriptionId' | 'description'>;
|
|
15498
|
+
};
|
|
15499
|
+
type ProductBlockInstanceForDropdown = Omit<ProductBlockInstance, 'inUseByRelations'>;
|
|
15500
|
+
interface ResourceTypeDefinition {
|
|
15501
|
+
description: string;
|
|
15502
|
+
resourceType: string;
|
|
15503
|
+
resourceTypeId: string;
|
|
15504
|
+
productBlocks: ProductBlockDefinition[];
|
|
15505
|
+
}
|
|
15506
|
+
interface ProductBlockDefinition {
|
|
15507
|
+
productBlockId: string;
|
|
15508
|
+
name: string;
|
|
15509
|
+
tag: string;
|
|
15510
|
+
description: string;
|
|
15511
|
+
status: ProductLifecycleStatus;
|
|
15512
|
+
createdAt: string;
|
|
15513
|
+
endDate: string | null;
|
|
15514
|
+
resourceTypes: ResourceTypeDefinition[];
|
|
15515
|
+
dependsOn: ProductBlockDefinition[];
|
|
15516
|
+
}
|
|
15517
|
+
declare enum ProductLifecycleStatus {
|
|
15518
|
+
ACTIVE = "active",
|
|
15519
|
+
PRE_PRODUCTION = "pre production",
|
|
15520
|
+
PHASE_OUT = "phase out",
|
|
15521
|
+
END_OF_LIFE = "end of life"
|
|
15522
|
+
}
|
|
15523
|
+
declare enum BadgeType {
|
|
15524
|
+
WORKFLOW = "workflow",
|
|
15525
|
+
FIXED_INPUT = "fixed_input",
|
|
15526
|
+
RESOURCE_TYPE = "resource_type",
|
|
15527
|
+
PRODUCT_BLOCK = "product_block",
|
|
15528
|
+
PRODUCT_BLOCK_TAG = "product_block_tag",
|
|
15529
|
+
PRODUCT_TAG = "product_tag",
|
|
15530
|
+
PRODUCT = "product",
|
|
15531
|
+
TASK = "task"
|
|
15532
|
+
}
|
|
15533
|
+
interface FixedInputDefinition {
|
|
15534
|
+
fixedInputId: string;
|
|
15535
|
+
name: string;
|
|
15536
|
+
value: string;
|
|
15537
|
+
productId: string;
|
|
15538
|
+
createdAt: string;
|
|
15539
|
+
description: string;
|
|
15540
|
+
required: boolean;
|
|
15541
|
+
}
|
|
15542
|
+
interface TreeBlock extends ProductBlockInstance {
|
|
15543
|
+
icon: string;
|
|
15544
|
+
label: string | number | boolean;
|
|
15545
|
+
callback: () => void;
|
|
15546
|
+
children: TreeBlock[];
|
|
15547
|
+
isOutsideCurrentSubscription: boolean;
|
|
15548
|
+
}
|
|
15549
|
+
interface ProductDefinition {
|
|
15550
|
+
productId: string;
|
|
15551
|
+
name: string;
|
|
15552
|
+
description: string;
|
|
15553
|
+
tag: string;
|
|
15554
|
+
createdAt: string;
|
|
15555
|
+
productType: string;
|
|
15556
|
+
status: ProductLifecycleStatus;
|
|
15557
|
+
productBlocks: Pick<ProductBlockDefinition, 'name'>[];
|
|
15558
|
+
fixedInputs: Pick<FixedInputDefinition, 'name' | 'value'>[];
|
|
15559
|
+
}
|
|
15560
|
+
type ProductsSummary = Pick<ProductDefinition, 'name'> & SubscriptionsResult<never>;
|
|
15561
|
+
declare enum WorkflowTarget {
|
|
15562
|
+
CREATE = "create",
|
|
15563
|
+
MODIFY = "modify",
|
|
15564
|
+
TERMINATE = "terminate",
|
|
15565
|
+
SYSTEM = "system",
|
|
15566
|
+
VALIDATE = "validate"
|
|
15567
|
+
}
|
|
15568
|
+
type Process = {
|
|
15569
|
+
workflowName: string;
|
|
15570
|
+
lastStep: string;
|
|
15571
|
+
lastStatus: ProcessStatus;
|
|
15572
|
+
workflowTarget: WorkflowTarget;
|
|
15573
|
+
product?: {
|
|
15574
|
+
name: string;
|
|
15575
|
+
tag: string;
|
|
15576
|
+
};
|
|
15577
|
+
customer: {
|
|
15578
|
+
fullname: string;
|
|
15579
|
+
shortcode: string;
|
|
15580
|
+
};
|
|
15581
|
+
createdBy: string;
|
|
15582
|
+
assignee: string;
|
|
15583
|
+
processId: string;
|
|
15584
|
+
startedAt: string;
|
|
15585
|
+
lastModifiedAt: string;
|
|
15586
|
+
isTask: boolean;
|
|
15587
|
+
subscriptions: {
|
|
15588
|
+
page: Pick<Subscription, 'subscriptionId' | 'description'>[];
|
|
15589
|
+
};
|
|
15590
|
+
};
|
|
15591
|
+
declare enum StepStatus {
|
|
15592
|
+
FORM = "form",// Only this one is frontend only
|
|
15593
|
+
SUCCESS = "success",
|
|
15594
|
+
FAILED = "failed",
|
|
15595
|
+
PENDING = "pending",
|
|
15596
|
+
RUNNING = "running",
|
|
15597
|
+
SKIPPED = "skipped",
|
|
13824
15598
|
SUSPEND = "suspend",
|
|
13825
15599
|
WAITING = "waiting",
|
|
13826
15600
|
AWAITING_CALLBACK = "awaiting_callback",
|
|
@@ -13889,16 +15663,18 @@ interface Step {
|
|
|
13889
15663
|
interface WorkflowDefinition {
|
|
13890
15664
|
workflowId: string;
|
|
13891
15665
|
name: string;
|
|
13892
|
-
description
|
|
15666
|
+
description: string;
|
|
13893
15667
|
target: WorkflowTarget;
|
|
15668
|
+
isTask: boolean;
|
|
13894
15669
|
products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
|
|
13895
15670
|
createdAt: string;
|
|
13896
15671
|
}
|
|
13897
15672
|
interface TaskDefinition {
|
|
13898
15673
|
workflowId: string;
|
|
13899
15674
|
name: string;
|
|
13900
|
-
description
|
|
15675
|
+
description: string;
|
|
13901
15676
|
target: WorkflowTarget;
|
|
15677
|
+
isTask: boolean;
|
|
13902
15678
|
products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
|
|
13903
15679
|
createdAt: string;
|
|
13904
15680
|
}
|
|
@@ -14087,7 +15863,7 @@ type SubscriptionDetail = {
|
|
|
14087
15863
|
customer?: Customer;
|
|
14088
15864
|
customerDescriptions: CustomerDescriptions[];
|
|
14089
15865
|
externalServices?: ExternalService[];
|
|
14090
|
-
processes
|
|
15866
|
+
processes?: GraphQlSinglePage<SubscriptionDetailProcess>;
|
|
14091
15867
|
};
|
|
14092
15868
|
type SubscriptionDetailProcess = Pick<Process, 'processId' | 'lastStatus' | 'startedAt' | 'createdBy' | 'workflowTarget' | 'workflowName' | 'isTask'>;
|
|
14093
15869
|
type RelatedSubscription = Pick<Subscription, 'subscriptionId' | 'description' | 'status' | 'startDate' | 'insync'> & {
|
|
@@ -14148,6 +15924,7 @@ type SubscriptionActions = {
|
|
|
14148
15924
|
modify: SubscriptionAction[];
|
|
14149
15925
|
terminate: SubscriptionAction[];
|
|
14150
15926
|
system: SubscriptionAction[];
|
|
15927
|
+
validate: SubscriptionAction[];
|
|
14151
15928
|
};
|
|
14152
15929
|
declare enum CacheTagType {
|
|
14153
15930
|
workerStatus = "workerStatus",
|
|
@@ -14168,7 +15945,7 @@ type CacheTag = {
|
|
|
14168
15945
|
declare const CACHETAG_TYPE_LIST = "LIST";
|
|
14169
15946
|
|
|
14170
15947
|
type WfoSubscriptionStatusBadgeProps = {
|
|
14171
|
-
status
|
|
15948
|
+
status?: SubscriptionStatus;
|
|
14172
15949
|
};
|
|
14173
15950
|
declare const WfoSubscriptionStatusBadge: FC<WfoSubscriptionStatusBadgeProps>;
|
|
14174
15951
|
|
|
@@ -14416,9 +16193,10 @@ declare const getProductBlockTitle: (instanceValues: FieldValue[]) => string | n
|
|
|
14416
16193
|
declare const flattenArrayProps: (action: SubscriptionAction) => TranslationValues;
|
|
14417
16194
|
declare const getWorkflowTargetColor: (workflowTarget: WorkflowTarget, theme: EuiThemeComputed) => string;
|
|
14418
16195
|
declare const getWorkflowTargetIconContent: (workflowTarget: WorkflowTarget) => "C" | "T" | "X" | "M";
|
|
14419
|
-
declare const getLastUncompletedProcess: (processes
|
|
14420
|
-
declare const getLatestTaskDate: (processes
|
|
16196
|
+
declare const getLastUncompletedProcess: (processes?: SubscriptionDetailProcess[]) => SubscriptionDetailProcess | undefined;
|
|
16197
|
+
declare const getLatestTaskDate: (processes?: SubscriptionDetailProcess[]) => string;
|
|
14421
16198
|
declare const sortProcessesByDate: (processList: SubscriptionDetailProcess[], sortOrder: SortOrder) => SubscriptionDetailProcess[];
|
|
16199
|
+
declare const mapProductBlockInstancesToEuiSelectableOptions: (productBlockInstances: ProductBlockInstance[]) => EuiSelectableOption[];
|
|
14422
16200
|
|
|
14423
16201
|
declare const useSubscriptionDetailValueOverride: () => {
|
|
14424
16202
|
getOverriddenValue: (fieldValue: FieldValue | RenderableFieldValue, allFieldValues: FieldValue[] | RenderableFieldValue[]) => React__default.ReactNode | null;
|
|
@@ -14593,19 +16371,10 @@ interface UserInputFormWizardProps {
|
|
|
14593
16371
|
}
|
|
14594
16372
|
declare const UserInputFormWizard: ({ hasNext, stepUserInput, stepSubmit, cancel, isTask, isResuming, }: UserInputFormWizardProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
14595
16373
|
|
|
14596
|
-
type FieldProps<Value, Extra = object, InputElementType = HTMLInputElement, ElementType = HTMLDivElement> = HTMLFieldProps<Value, ElementType, {
|
|
14597
|
-
inputRef?: Ref<InputElementType>;
|
|
14598
|
-
description?: string;
|
|
14599
|
-
} & Extra>;
|
|
14600
|
-
interface ContactPerson {
|
|
14601
|
-
name: string;
|
|
14602
|
-
email: string;
|
|
14603
|
-
}
|
|
14604
|
-
|
|
14605
16374
|
type AcceptItemType = 'info' | 'label' | 'warning' | 'url' | 'checkbox' | '>checkbox' | 'checkbox?' | '>checkbox?' | 'skip' | 'margin' | 'value';
|
|
14606
16375
|
type AcceptItem = [string, AcceptItemType, Record<string, string>?];
|
|
14607
16376
|
type AcceptValue = 'SKIPPED' | 'ACCEPTED' | 'INCOMPLETE';
|
|
14608
|
-
type AcceptFieldProps = FieldProps<AcceptValue, {
|
|
16377
|
+
type AcceptFieldProps = FieldProps$1<AcceptValue, {
|
|
14609
16378
|
data?: AcceptItem[];
|
|
14610
16379
|
}>;
|
|
14611
16380
|
declare module 'uniforms' {
|
|
@@ -14615,28 +16384,28 @@ declare module 'uniforms' {
|
|
|
14615
16384
|
}
|
|
14616
16385
|
declare const AcceptField: uniforms.ConnectedField<AcceptFieldProps, AcceptValue | undefined>;
|
|
14617
16386
|
|
|
14618
|
-
type BoolFieldProps = FieldProps
|
|
16387
|
+
type BoolFieldProps = FieldProps<boolean>;
|
|
14619
16388
|
declare const BoolField: uniforms.ConnectedField<BoolFieldProps, boolean | undefined>;
|
|
14620
16389
|
|
|
14621
|
-
type DividerFieldProps = FieldProps
|
|
16390
|
+
type DividerFieldProps = FieldProps<null, object, null, HTMLDivElement>;
|
|
14622
16391
|
declare const DividerField: uniforms.ConnectedField<DividerFieldProps, null | undefined>;
|
|
14623
16392
|
|
|
14624
|
-
type ErrorFieldProps = FieldProps
|
|
16393
|
+
type ErrorFieldProps = FieldProps<null>;
|
|
14625
16394
|
declare const ErrorField: uniforms.ConnectedField<ErrorFieldProps, null | undefined>;
|
|
14626
16395
|
|
|
14627
16396
|
type ErrorsFieldProps = HTMLProps<HTMLDivElement>;
|
|
14628
16397
|
declare const ErrorsField: (props: ErrorsFieldProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
14629
16398
|
|
|
14630
|
-
type LabelFieldProps = FieldProps
|
|
16399
|
+
type LabelFieldProps = FieldProps<null, object, null, HTMLDivElement>;
|
|
14631
16400
|
declare const LabelField: uniforms.ConnectedField<LabelFieldProps, null | undefined>;
|
|
14632
16401
|
|
|
14633
|
-
type ListAddFieldProps = FieldProps<string, {
|
|
16402
|
+
type ListAddFieldProps = FieldProps$1<string, {
|
|
14634
16403
|
initialCount?: number;
|
|
14635
16404
|
outerList?: boolean;
|
|
14636
16405
|
}>;
|
|
14637
16406
|
declare const ListAddField: uniforms.ConnectedField<ListAddFieldProps, string | undefined>;
|
|
14638
16407
|
|
|
14639
|
-
type ListDelFieldProps = FieldProps<null, {
|
|
16408
|
+
type ListDelFieldProps = FieldProps$1<null, {
|
|
14640
16409
|
initialCount?: number;
|
|
14641
16410
|
itemProps?: object;
|
|
14642
16411
|
outerList?: boolean;
|
|
@@ -14650,23 +16419,23 @@ declare module 'uniforms' {
|
|
|
14650
16419
|
outerList: never;
|
|
14651
16420
|
}
|
|
14652
16421
|
}
|
|
14653
|
-
type ListFieldProps = FieldProps<unknown[], {
|
|
16422
|
+
type ListFieldProps = FieldProps$1<unknown[], {
|
|
14654
16423
|
initialCount?: number;
|
|
14655
16424
|
itemProps?: object;
|
|
14656
16425
|
uniqueItems?: boolean;
|
|
14657
16426
|
}, null, HTMLUListElement>;
|
|
14658
16427
|
declare const ListField: uniforms.ConnectedField<ListFieldProps, unknown[] | undefined>;
|
|
14659
16428
|
|
|
14660
|
-
type ListSelectFieldProps = FieldProps<string | string[], {
|
|
16429
|
+
type ListSelectFieldProps = FieldProps$1<string | string[], {
|
|
14661
16430
|
allowedValues?: string[];
|
|
14662
16431
|
transform?(value: string): string;
|
|
14663
16432
|
}>;
|
|
14664
16433
|
declare function ListSelectField({ allowedValues, fieldType, name, transform, ...props }: ListSelectFieldProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
14665
16434
|
|
|
14666
|
-
type LongTextFieldProps = FieldProps
|
|
16435
|
+
type LongTextFieldProps = FieldProps<string, object, HTMLTextAreaElement>;
|
|
14667
16436
|
declare const LongTextField: uniforms.ConnectedField<LongTextFieldProps, string | undefined>;
|
|
14668
16437
|
|
|
14669
|
-
type NumFieldProps = FieldProps
|
|
16438
|
+
type NumFieldProps = FieldProps<number, {
|
|
14670
16439
|
max?: number;
|
|
14671
16440
|
min?: number;
|
|
14672
16441
|
precision?: number;
|
|
@@ -14674,29 +16443,33 @@ type NumFieldProps = FieldProps$1<number, {
|
|
|
14674
16443
|
}>;
|
|
14675
16444
|
declare const NumField: uniforms.ConnectedField<NumFieldProps, number | undefined>;
|
|
14676
16445
|
|
|
14677
|
-
type RadioFieldProps = FieldProps
|
|
16446
|
+
type RadioFieldProps = FieldProps<string, {
|
|
14678
16447
|
allowedValues?: string[];
|
|
14679
16448
|
checkboxes?: boolean;
|
|
14680
16449
|
transform?(value: string): string;
|
|
14681
16450
|
}>;
|
|
14682
16451
|
declare const RadioField: uniforms.ConnectedField<RadioFieldProps, string | undefined>;
|
|
14683
16452
|
|
|
14684
|
-
type SelectFieldProps = FieldProps<string | string[], {
|
|
16453
|
+
type SelectFieldProps = FieldProps$1<string | string[], {
|
|
14685
16454
|
allowedValues?: string[];
|
|
14686
16455
|
transform?(value: string): string;
|
|
14687
16456
|
}>;
|
|
14688
16457
|
declare function UnconnectedSelectField({ allowedValues, disabled, fieldType, id, label, description, name, onChange, placeholder, readOnly, transform, value, error, showInlineError, errorMessage, ...props }: SelectFieldProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
14689
16458
|
|
|
14690
|
-
type SubmitFieldProps = FieldProps
|
|
16459
|
+
type SubmitFieldProps = FieldProps<null, object, HTMLInputElement, HTMLInputElement>;
|
|
14691
16460
|
declare const SubmitField: ({ disabled, inputRef, readOnly, value, ...props }: SubmitFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
14692
16461
|
|
|
14693
|
-
type SubscriptionSummaryFieldProps = FieldProps<string>;
|
|
16462
|
+
type SubscriptionSummaryFieldProps = FieldProps$1<string>;
|
|
16463
|
+
interface SubscriptionSummaryDisplayProps {
|
|
16464
|
+
subscriptionId: string;
|
|
16465
|
+
}
|
|
16466
|
+
declare const SubscriptionSummaryDisplay: ({ subscriptionId, }: SubscriptionSummaryDisplayProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
14694
16467
|
declare const SubscriptionSummaryField: uniforms.ConnectedField<SubscriptionSummaryFieldProps, string | undefined>;
|
|
14695
16468
|
|
|
14696
|
-
type TextFieldProps = FieldProps
|
|
16469
|
+
type TextFieldProps = FieldProps<string>;
|
|
14697
16470
|
declare const TextField: uniforms.ConnectedField<TextFieldProps, string | undefined>;
|
|
14698
16471
|
|
|
14699
|
-
type DateFieldProps = FieldProps<Date, {
|
|
16472
|
+
type DateFieldProps = FieldProps$1<Date, {
|
|
14700
16473
|
max?: Date;
|
|
14701
16474
|
min?: Date;
|
|
14702
16475
|
}>;
|
|
@@ -14726,7 +16499,7 @@ declare const getStyles: ({ theme }: WfoTheme) => {
|
|
|
14726
16499
|
};
|
|
14727
16500
|
|
|
14728
16501
|
declare function stop(e: React__default.SyntheticEvent): void;
|
|
14729
|
-
type ContactPersonNameFieldProps = FieldProps<string, {
|
|
16502
|
+
type ContactPersonNameFieldProps = FieldProps$1<string, {
|
|
14730
16503
|
customerId?: string;
|
|
14731
16504
|
customerKey?: string;
|
|
14732
16505
|
}>;
|
|
@@ -14756,7 +16529,7 @@ declare module 'uniforms' {
|
|
|
14756
16529
|
}
|
|
14757
16530
|
declare const ImsNodeIdField: uniforms.ConnectedField<ImsNodeIdFieldProps, number | undefined>;
|
|
14758
16531
|
|
|
14759
|
-
type ImsPortFieldProps = FieldProps<number, {
|
|
16532
|
+
type ImsPortFieldProps = FieldProps$1<number, {
|
|
14760
16533
|
nodeSubscriptionId?: string;
|
|
14761
16534
|
interfaceSpeed: number | string;
|
|
14762
16535
|
imsPortMode?: 'patched' | 'unpatched' | 'all';
|
|
@@ -14775,7 +16548,7 @@ declare const ImsPortIdField: uniforms.ConnectedField<ImsPortFieldProps, number
|
|
|
14775
16548
|
declare const imsPortIdFieldStyling: _emotion_react.SerializedStyles;
|
|
14776
16549
|
|
|
14777
16550
|
declare function getUsedPrefixMin(netmask: string, prefixMin: number | undefined, name: string): number;
|
|
14778
|
-
type IPvAnyNetworkFieldProps = FieldProps<string, {
|
|
16551
|
+
type IPvAnyNetworkFieldProps = FieldProps$1<string, {
|
|
14779
16552
|
prefixMin?: number;
|
|
14780
16553
|
}>;
|
|
14781
16554
|
declare const IpNetworkField: uniforms.ConnectedField<IPvAnyNetworkFieldProps, string | undefined>;
|
|
@@ -14786,7 +16559,7 @@ declare const splitPrefixStyling: _emotion_react.SerializedStyles;
|
|
|
14786
16559
|
|
|
14787
16560
|
declare function utcTimestampToLocalMoment(utc_timestamp: number): moment.Moment;
|
|
14788
16561
|
declare function localMomentToUtcTimestamp(local_moment: Moment): number;
|
|
14789
|
-
type TimestampFieldProps = FieldProps<number, {
|
|
16562
|
+
type TimestampFieldProps = FieldProps$1<number, {
|
|
14790
16563
|
max?: number;
|
|
14791
16564
|
min?: number;
|
|
14792
16565
|
showTimeSelect: boolean;
|
|
@@ -14796,14 +16569,14 @@ type TimestampFieldProps = FieldProps<number, {
|
|
|
14796
16569
|
}>;
|
|
14797
16570
|
declare const TimestampField: uniforms.ConnectedField<TimestampFieldProps, number | undefined>;
|
|
14798
16571
|
|
|
14799
|
-
type VlanFieldProps = FieldProps<string, {
|
|
16572
|
+
type VlanFieldProps = FieldProps$1<string, {
|
|
14800
16573
|
subscriptionFieldName?: string;
|
|
14801
16574
|
nsiVlansOnly?: boolean;
|
|
14802
16575
|
}>;
|
|
14803
16576
|
type VlanRange = [number, number];
|
|
14804
16577
|
declare const VlanField: uniforms.ConnectedField<VlanFieldProps, string | undefined>;
|
|
14805
16578
|
|
|
14806
|
-
type FileUploadProps = FieldProps
|
|
16579
|
+
type FileUploadProps = FieldProps<string>;
|
|
14807
16580
|
declare const FileUploadField: uniforms.ConnectedField<FileUploadProps, string | undefined>;
|
|
14808
16581
|
|
|
14809
16582
|
interface ServicePort {
|
|
@@ -14869,7 +16642,7 @@ interface NodeSubscriptionOptionsResult {
|
|
|
14869
16642
|
|
|
14870
16643
|
declare const ipamStates: (string | null)[];
|
|
14871
16644
|
|
|
14872
|
-
type NestFieldProps = FieldProps<null, {
|
|
16645
|
+
type NestFieldProps = FieldProps$1<null, {
|
|
14873
16646
|
fields?: unknown[];
|
|
14874
16647
|
itemProps?: object;
|
|
14875
16648
|
}>;
|
|
@@ -14882,7 +16655,7 @@ declare module 'uniforms' {
|
|
|
14882
16655
|
}
|
|
14883
16656
|
declare const NestField: uniforms.ConnectedField<NestFieldProps, null | undefined>;
|
|
14884
16657
|
|
|
14885
|
-
type OptGroupFieldProps = FieldProps<null, {
|
|
16658
|
+
type OptGroupFieldProps = FieldProps$1<null, {
|
|
14886
16659
|
fields?: unknown[];
|
|
14887
16660
|
itemProps?: object;
|
|
14888
16661
|
}>;
|
|
@@ -14900,7 +16673,7 @@ declare module 'uniforms' {
|
|
|
14900
16673
|
statuses: never;
|
|
14901
16674
|
}
|
|
14902
16675
|
}
|
|
14903
|
-
type SubscriptionFieldProps = FieldProps<string, {
|
|
16676
|
+
type SubscriptionFieldProps = FieldProps$1<string, {
|
|
14904
16677
|
productIds?: string[];
|
|
14905
16678
|
excludedSubscriptionIds?: string[];
|
|
14906
16679
|
customerId?: string;
|
|
@@ -14935,6 +16708,10 @@ declare const CustomerField: uniforms.ConnectedField<CustomerFieldProps, string
|
|
|
14935
16708
|
|
|
14936
16709
|
declare const ConnectedSelectField: uniforms.ConnectedField<SelectFieldProps, string | string[] | undefined>;
|
|
14937
16710
|
|
|
16711
|
+
declare const getCommonFormFieldStyles: ({ theme }: WfoTheme) => {
|
|
16712
|
+
formRowStyle: _emotion_react.SerializedStyles;
|
|
16713
|
+
};
|
|
16714
|
+
|
|
14938
16715
|
interface IProps {
|
|
14939
16716
|
preselectedInput?: unknown;
|
|
14940
16717
|
formKey: string;
|
|
@@ -15353,7 +17130,7 @@ declare const METADATA_PRODUCT_BLOCK_ENDPOINT = "product_blocks";
|
|
|
15353
17130
|
declare const METADATA_RESOURCE_TYPE_ENDPOINT = "resource_types";
|
|
15354
17131
|
declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
|
|
15355
17132
|
|
|
15356
|
-
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "
|
|
17133
|
+
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "5.1.0";
|
|
15357
17134
|
|
|
15358
17135
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
15359
17136
|
pydanticForms: {
|
|
@@ -15718,6 +17495,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
15718
17495
|
};
|
|
15719
17496
|
showAll: string;
|
|
15720
17497
|
hideAll: string;
|
|
17498
|
+
selectByNameTitle: string;
|
|
17499
|
+
selectByNameButtonText: string;
|
|
15721
17500
|
see: string;
|
|
15722
17501
|
setInSync: string;
|
|
15723
17502
|
setInSyncQuestion: string;
|
|
@@ -15992,4 +17771,4 @@ declare enum WfoQueryParams {
|
|
|
15992
17771
|
}
|
|
15993
17772
|
declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
|
|
15994
17773
|
|
|
15995
|
-
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type ApiResult, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps$1 as FieldProps, type FieldValue, FileUploadField, type FileUploadProps, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, type LocalColumnWidths, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, 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_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MetaDataTab, type MetadataDescriptionParams, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StringifyObject, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UseQuery, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, 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, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, 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, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, createSideNavDivider, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getUrlWithQueryParams, getUsedPrefixMin, getWebSocket, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isNullOrEmpty, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|
|
17774
|
+
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type ApiResult, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps, type FieldValue, FileUploadField, type FileUploadProps, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, type LocalColumnWidths, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, 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_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MetaDataTab, type MetadataDescriptionParams, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StringifyObject, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryDisplay, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UseQuery, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, 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, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, 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, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, createSideNavDivider, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getCommonFormFieldStyles, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getUrlWithQueryParams, getUsedPrefixMin, getWebSocket, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isNullOrEmpty, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContactPersonsQuery, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useFreePortsByNodeSubscriptionIdAndSpeedQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetNodeSubscriptionOptionsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useImsNodesQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useLocationCodesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useVlansByServicePortQuery, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|