@orchestrator-ui/orchestrator-ui-components 5.3.4 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +4 -4
- package/CHANGELOG.md +12 -0
- package/dist/index.d.ts +47 -19
- package/dist/index.js +806 -694
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/WfoForms/UserInputForm.tsx +6 -0
- package/src/components/WfoForms/UserInputFormWizard.tsx +3 -0
- package/src/components/WfoPydanticForm/Footer.tsx +7 -1
- package/src/components/WfoPydanticForm/Header.tsx +3 -1
- package/src/components/WfoPydanticForm/RenderFormErrors.tsx +33 -0
- package/src/components/WfoPydanticForm/Row.tsx +1 -0
- package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +194 -178
- package/src/components/WfoPydanticForm/fields/WfoArrayField/WfoArrayField.tsx +25 -4
- package/src/components/WfoPydanticForm/fields/{Checkbox.tsx → WfoCheckbox.tsx} +2 -1
- package/src/components/WfoPydanticForm/fields/{Divider.tsx → WfoDivider.tsx} +2 -1
- package/src/components/WfoPydanticForm/fields/{Integer.tsx → WfoInteger.tsx} +2 -1
- package/src/components/WfoPydanticForm/fields/{Label.tsx → WfoLabel.tsx} +2 -2
- package/src/components/WfoPydanticForm/fields/WfoObjectField/WfoObjectField.tsx +8 -2
- package/src/components/WfoPydanticForm/fields/{Radio.tsx → WfoRadio.tsx} +2 -1
- package/src/components/WfoPydanticForm/fields/{Summary.tsx → WfoSummary.tsx} +2 -2
- package/src/components/WfoPydanticForm/fields/{Text.tsx → WfoText.tsx} +3 -1
- package/src/components/WfoPydanticForm/fields/{TextArea.tsx → WfoTextArea.tsx} +2 -1
- package/src/components/WfoPydanticForm/fields/index.ts +8 -8
- package/src/components/WfoPydanticForm/index.ts +1 -0
- package/src/components/WfoStartButton/WfoStartTaskComboBox.tsx +1 -0
- package/src/components/WfoStartButton/WfoStartWorkflowComboBox.tsx +1 -0
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +10 -4
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStepForm.tsx +4 -1
- package/src/components/WfoWorkflowSteps/WfoStepList/WfoStepList.tsx +24 -30
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +4 -3
- package/src/configuration/version.ts +1 -1
- package/src/messages/en-GB.json +2 -1
- package/src/messages/nl-NL.json +2 -1
- package/src/pages/processes/WfoProcessDetail.tsx +1 -0
- package/src/pages/processes/WfoProcessDetailPage.tsx +1 -0
- package/src/pages/processes/timelineUtils.spec.ts +2 -1
- package/src/rtk/endpoints/processDetail.ts +6 -1
- package/src/rtk/endpoints/startOptions.ts +10 -1
- package/src/types/forms.ts +5 -0
- package/src/types/types.ts +6 -2
- package/src/utils/getProductNamesFromProcess.spec.ts +6 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@5.
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@5.4.0 build
|
|
3
3
|
> npm run generate-version && tsup src/index.ts
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @orchestrator-ui/orchestrator-ui-components@5.
|
|
6
|
+
> @orchestrator-ui/orchestrator-ui-components@5.4.0 generate-version
|
|
7
7
|
> node -p "'export const ORCHESTRATOR_UI_LIBRARY_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'" > src/configuration/version.ts && prettier --write src/configuration/version.ts
|
|
8
8
|
|
|
9
|
-
src/configuration/version.ts
|
|
9
|
+
src/configuration/version.ts 42ms
|
|
10
10
|
[34mCLI[39m Building entry: src/index.ts
|
|
11
11
|
[34mCLI[39m Using tsconfig: tsconfig.build.json
|
|
12
12
|
[34mCLI[39m tsup v8.4.0
|
|
@@ -15,7 +15,7 @@ src/configuration/version.ts 46ms
|
|
|
15
15
|
[34mESM[39m Build start
|
|
16
16
|
[34mDTS[39m Build start
|
|
17
17
|
[32mESM[39m [1mdist/index.js [22m[32m2.03 MB[39m
|
|
18
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m3.
|
|
19
|
-
[32mESM[39m ⚡️ Build success in
|
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
18
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m3.88 MB[39m
|
|
19
|
+
[32mESM[39m ⚡️ Build success in 583ms
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 20751ms
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m830.43 KB[39m
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@5.
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@5.4.0 test
|
|
3
3
|
> jest
|
|
4
4
|
|
|
5
5
|
PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
|
|
6
6
|
PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
|
|
7
7
|
PASS Wfo-UI Tests src/utils/date.spec.ts
|
|
8
8
|
PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
|
|
9
|
-
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
|
|
10
9
|
PASS Wfo-UI Tests src/utils/string.spec.ts
|
|
11
10
|
PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
|
|
11
|
+
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
|
|
12
12
|
PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
|
|
13
13
|
PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
|
|
14
14
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
|
|
@@ -35,11 +35,11 @@ PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
|
|
|
35
35
|
PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
|
|
36
36
|
PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
|
|
37
37
|
PASS Wfo-UI Tests src/utils/getQueryUrl.spec.ts
|
|
38
|
-
PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.
|
|
38
|
+
PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.515 s)
|
|
39
39
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts
|
|
40
40
|
|
|
41
41
|
Test Suites: 35 passed, 35 total
|
|
42
42
|
Tests: 228 passed, 228 total
|
|
43
43
|
Snapshots: 0 total
|
|
44
|
-
Time: 8.
|
|
44
|
+
Time: 8.063 s
|
|
45
45
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @orchestrator-ui/orchestrator-ui-components
|
|
2
2
|
|
|
3
|
+
## 5.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fb634ec: Improve Process Detail step timestamp using step started and completed datetime
|
|
8
|
+
- b338d31: Reflect RBAC rules from backend in GUI, requires minimum backend version of 4.2.0
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- b604a46: Updates to latest version of pydantic forms
|
|
13
|
+
- 796d299: Fixes for pydanticforms integration
|
|
14
|
+
|
|
3
15
|
## 5.3.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ import * as _emotion_react from '@emotion/react';
|
|
|
23
23
|
import moment, { Moment } from 'moment-timezone';
|
|
24
24
|
import * as csstype from 'csstype';
|
|
25
25
|
import { IconType } from '@elastic/eui/src/components/icon';
|
|
26
|
-
import { ComponentMatcherExtender, PydanticFormControlledElement, PydanticFormElement, PydanticFormElementProps, RowRenderComponent } from 'pydantic-forms';
|
|
26
|
+
import { ComponentMatcherExtender, PydanticFormLabelProvider, PydanticFormControlledElement, PydanticFormElement, PydanticFormElementProps, RowRenderComponent } from 'pydantic-forms';
|
|
27
27
|
import * as next_auth_react from 'next-auth/react';
|
|
28
28
|
import { UseSessionOptions } from 'next-auth/react';
|
|
29
29
|
import { Session } from 'next-auth';
|
|
@@ -4180,7 +4180,7 @@ declare const useLazyGetTasksQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
4180
4180
|
lastArg: GraphqlQueryVariables<TaskDefinition>;
|
|
4181
4181
|
}];
|
|
4182
4182
|
|
|
4183
|
-
declare const processDetailQuery = "query ProcessDetail($processId: String!) {\n processes(filterBy: { value: $processId, field: \"processId\" }) {\n page {\n processId\n lastStatus\n createdBy\n startedAt\n lastModifiedAt\n lastStep\n workflowName\n isTask\n form\n traceback\n steps {\n name\n status\n stepId\n
|
|
4183
|
+
declare const processDetailQuery = "query ProcessDetail($processId: String!) {\n processes(filterBy: { value: $processId, field: \"processId\" }) {\n page {\n processId\n lastStatus\n createdBy\n startedAt\n lastModifiedAt\n lastStep\n workflowName\n isTask\n form\n traceback\n userPermissions {\n retryAllowed\n resumeAllowed\n }\n steps {\n name\n status\n stepId\n stateDelta\n started\n completed\n }\n customer {\n fullname\n }\n subscriptions {\n page {\n product {\n name\n }\n description\n subscriptionId\n }\n }\n }\n }\n }";
|
|
4184
4184
|
type ProcessDetailResponse = {
|
|
4185
4185
|
processes: ProcessDetail[];
|
|
4186
4186
|
};
|
|
@@ -9579,6 +9579,7 @@ declare const useGetEnvironmentVariablesQuery: <R extends Record<string, any> =
|
|
|
9579
9579
|
|
|
9580
9580
|
type WorkflowOption = {
|
|
9581
9581
|
workflowName: WorkflowDefinition['name'];
|
|
9582
|
+
isAllowed: WorkflowDefinition['isAllowed'];
|
|
9582
9583
|
productName: ProductDefinition['name'];
|
|
9583
9584
|
productId: ProductDefinition['productId'];
|
|
9584
9585
|
productType: ProductDefinition['productType'];
|
|
@@ -9587,7 +9588,7 @@ type WorkflowOption = {
|
|
|
9587
9588
|
type StartOptionsResponse<StartOption> = {
|
|
9588
9589
|
startOptions: StartOption[];
|
|
9589
9590
|
};
|
|
9590
|
-
type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
|
|
9591
|
+
type TaskOption = Pick<WorkflowDefinition, 'name' | 'isAllowed' | 'description'>;
|
|
9591
9592
|
declare const useGetWorkflowOptionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
9592
9593
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
9593
9594
|
originalArgs?: undefined | undefined;
|
|
@@ -16458,6 +16459,10 @@ type FormValidationError = {
|
|
|
16458
16459
|
data: ValidationErrorData;
|
|
16459
16460
|
status: HttpStatus;
|
|
16460
16461
|
};
|
|
16462
|
+
interface FormUserPermissions {
|
|
16463
|
+
retryAllowed: boolean;
|
|
16464
|
+
resumeAllowed: boolean;
|
|
16465
|
+
}
|
|
16461
16466
|
|
|
16462
16467
|
type Nullable<T> = T | null;
|
|
16463
16468
|
type GenericResponse = {
|
|
@@ -16625,6 +16630,7 @@ interface ProcessDetail {
|
|
|
16625
16630
|
isTask: boolean;
|
|
16626
16631
|
steps: Step[];
|
|
16627
16632
|
traceback: string | null;
|
|
16633
|
+
userPermissions: FormUserPermissions;
|
|
16628
16634
|
subscriptions: {
|
|
16629
16635
|
page: {
|
|
16630
16636
|
product: Pick<ProductDefinition, 'name'>;
|
|
@@ -16668,9 +16674,10 @@ interface Step {
|
|
|
16668
16674
|
name: string;
|
|
16669
16675
|
status: StepStatus;
|
|
16670
16676
|
stepId: string;
|
|
16671
|
-
executed: string;
|
|
16672
16677
|
state: StepState | undefined;
|
|
16673
16678
|
stateDelta: StepState;
|
|
16679
|
+
started: string;
|
|
16680
|
+
completed: string;
|
|
16674
16681
|
}
|
|
16675
16682
|
interface WorkflowDefinition {
|
|
16676
16683
|
workflowId: string;
|
|
@@ -16678,6 +16685,7 @@ interface WorkflowDefinition {
|
|
|
16678
16685
|
description: string;
|
|
16679
16686
|
target: WorkflowTarget;
|
|
16680
16687
|
isTask: boolean;
|
|
16688
|
+
isAllowed: boolean;
|
|
16681
16689
|
products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
|
|
16682
16690
|
createdAt: string;
|
|
16683
16691
|
}
|
|
@@ -16793,6 +16801,7 @@ type StartComboBoxOption = {
|
|
|
16793
16801
|
productId?: string;
|
|
16794
16802
|
};
|
|
16795
16803
|
label: string;
|
|
16804
|
+
disabled?: boolean;
|
|
16796
16805
|
};
|
|
16797
16806
|
interface GraphQlResultPage<T> {
|
|
16798
16807
|
page: T[];
|
|
@@ -17379,6 +17388,7 @@ interface IProps$1 {
|
|
|
17379
17388
|
userInput: object;
|
|
17380
17389
|
isTask?: boolean;
|
|
17381
17390
|
isResuming?: boolean;
|
|
17391
|
+
disabled?: boolean;
|
|
17382
17392
|
}
|
|
17383
17393
|
declare module 'uniforms' {
|
|
17384
17394
|
interface FilterDOMProps {
|
|
@@ -17394,7 +17404,7 @@ declare module 'uniforms' {
|
|
|
17394
17404
|
options: never;
|
|
17395
17405
|
}
|
|
17396
17406
|
}
|
|
17397
|
-
declare function WfoUserInputForm({ router, stepUserInput, validSubmit, cancel, previous, hasNext, hasPrev, userInput, isTask, isResuming, }: IProps$1): _emotion_react_jsx_runtime.JSX.Element;
|
|
17407
|
+
declare function WfoUserInputForm({ router, stepUserInput, validSubmit, cancel, previous, hasNext, hasPrev, userInput, isTask, isResuming, disabled, }: IProps$1): _emotion_react_jsx_runtime.JSX.Element;
|
|
17398
17408
|
|
|
17399
17409
|
interface UserInputFormWizardProps {
|
|
17400
17410
|
stepUserInput: InputForm;
|
|
@@ -17403,8 +17413,9 @@ interface UserInputFormWizardProps {
|
|
|
17403
17413
|
isTask: boolean;
|
|
17404
17414
|
hasNext?: boolean;
|
|
17405
17415
|
isResuming?: boolean;
|
|
17416
|
+
allowSubmit?: boolean;
|
|
17406
17417
|
}
|
|
17407
|
-
declare const UserInputFormWizard: ({ hasNext, stepUserInput, stepSubmit, cancel, isTask, isResuming, }: UserInputFormWizardProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
17418
|
+
declare const UserInputFormWizard: ({ hasNext, stepUserInput, stepSubmit, cancel, isTask, isResuming, allowSubmit, }: UserInputFormWizardProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
17408
17419
|
|
|
17409
17420
|
type AcceptItemType = 'info' | 'label' | 'warning' | 'url' | 'checkbox' | '>checkbox' | 'checkbox?' | '>checkbox?' | 'skip' | 'margin' | 'value';
|
|
17410
17421
|
type AcceptItem = [string, AcceptItemType, Record<string, string>?];
|
|
@@ -17898,6 +17909,7 @@ interface WfoWorkflowStepListProps {
|
|
|
17898
17909
|
processId: string;
|
|
17899
17910
|
isTask: boolean;
|
|
17900
17911
|
userInputForm?: InputForm;
|
|
17912
|
+
userPermissions: FormUserPermissions;
|
|
17901
17913
|
}
|
|
17902
17914
|
declare const WfoProcessRawData: ({ processId }: {
|
|
17903
17915
|
processId: string;
|
|
@@ -17927,11 +17939,13 @@ declare const WfoStepListHeader: FC<WfoStepListHeaderProps>;
|
|
|
17927
17939
|
interface WfoStepProps {
|
|
17928
17940
|
stepListItem: StepListItem;
|
|
17929
17941
|
startedAt: string;
|
|
17942
|
+
completedAt: string;
|
|
17930
17943
|
showHiddenKeys: boolean;
|
|
17931
17944
|
onToggleStepDetail: () => void;
|
|
17932
17945
|
isTask: boolean;
|
|
17933
17946
|
isStartStep?: boolean;
|
|
17934
17947
|
processId?: string;
|
|
17948
|
+
userPermissions: FormUserPermissions;
|
|
17935
17949
|
}
|
|
17936
17950
|
declare const WfoStep: React__default.ForwardRefExoticComponent<WfoStepProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
17937
17951
|
|
|
@@ -17941,11 +17955,11 @@ type WfoStepListRef = {
|
|
|
17941
17955
|
type WfoStepListProps = {
|
|
17942
17956
|
stepListItems: StepListItem[];
|
|
17943
17957
|
showHiddenKeys: boolean;
|
|
17944
|
-
startedAt: string;
|
|
17945
17958
|
onToggleExpandStepListItem: (stepListItem: StepListItem) => void;
|
|
17946
17959
|
onTriggerExpandStepListItem: (stepListItem: StepListItem) => void;
|
|
17947
17960
|
isTask: boolean;
|
|
17948
17961
|
processId: string;
|
|
17962
|
+
userPermissions: FormUserPermissions;
|
|
17949
17963
|
};
|
|
17950
17964
|
declare const WfoStepList: React__default.ForwardRefExoticComponent<WfoStepListProps & React__default.RefAttributes<WfoStepListRef>>;
|
|
17951
17965
|
|
|
@@ -18141,22 +18155,31 @@ interface WfoPydanticFormProps {
|
|
|
18141
18155
|
startProcessPayload?: StartWorkflowPayload;
|
|
18142
18156
|
isTask?: boolean;
|
|
18143
18157
|
}
|
|
18158
|
+
declare const useWfoPydanticFormConfig: () => {
|
|
18159
|
+
wfoComponentMatcherExtender: ComponentMatcherExtender;
|
|
18160
|
+
pydanticLabelProvider: PydanticFormLabelProvider;
|
|
18161
|
+
customTranslations: {
|
|
18162
|
+
cancel: string;
|
|
18163
|
+
startWorkflow: string;
|
|
18164
|
+
widgets: {};
|
|
18165
|
+
};
|
|
18166
|
+
};
|
|
18144
18167
|
declare const WfoPydanticForm: ({ processName, startProcessPayload, isTask, }: WfoPydanticFormProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18145
18168
|
|
|
18146
|
-
declare const
|
|
18169
|
+
declare const WfoTextArea: PydanticFormControlledElement;
|
|
18147
18170
|
|
|
18148
|
-
declare const
|
|
18171
|
+
declare const WfoText: PydanticFormControlledElement;
|
|
18149
18172
|
|
|
18150
|
-
declare const
|
|
18173
|
+
declare const WfoLabel: PydanticFormElement;
|
|
18151
18174
|
|
|
18152
|
-
declare const
|
|
18175
|
+
declare const WfoDivider: PydanticFormElement;
|
|
18153
18176
|
|
|
18154
|
-
declare const
|
|
18177
|
+
declare const WfoCheckbox: PydanticFormControlledElement;
|
|
18155
18178
|
|
|
18156
18179
|
declare const getStyles: ({ theme }: WfoTheme) => {
|
|
18157
18180
|
summaryFieldStyle: _emotion_react.SerializedStyles;
|
|
18158
18181
|
};
|
|
18159
|
-
declare const
|
|
18182
|
+
declare const WfoSummary: PydanticFormElement;
|
|
18160
18183
|
|
|
18161
18184
|
declare const WfoObjectField: ({ pydanticFormField, }: PydanticFormElementProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18162
18185
|
|
|
@@ -18164,12 +18187,14 @@ declare const getWfoObjectFieldStyles: () => {
|
|
|
18164
18187
|
wfoObjectFieldStyles: _emotion_react.SerializedStyles;
|
|
18165
18188
|
};
|
|
18166
18189
|
|
|
18167
|
-
declare const MinusButton: ({ index, onRemove, }: {
|
|
18190
|
+
declare const MinusButton: ({ index, onRemove, testId, }: {
|
|
18168
18191
|
index: number;
|
|
18169
18192
|
onRemove: (index: number) => void;
|
|
18193
|
+
testId: string;
|
|
18170
18194
|
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18171
|
-
declare const PlusButton: ({ onClick }: {
|
|
18195
|
+
declare const PlusButton: ({ onClick, testId, }: {
|
|
18172
18196
|
onClick: () => void;
|
|
18197
|
+
testId: string;
|
|
18173
18198
|
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18174
18199
|
declare const WfoArrayField: ({ pydanticFormField, }: PydanticFormElementProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
18175
18200
|
|
|
@@ -18180,14 +18205,16 @@ declare const getWfoArrayFieldStyles: () => {
|
|
|
18180
18205
|
plusButtonWrapper: _emotion_react.SerializedStyles;
|
|
18181
18206
|
};
|
|
18182
18207
|
|
|
18183
|
-
declare const
|
|
18208
|
+
declare const WfoRadio: PydanticFormControlledElement;
|
|
18184
18209
|
|
|
18185
|
-
declare const
|
|
18210
|
+
declare const WfoInteger: PydanticFormControlledElement;
|
|
18186
18211
|
|
|
18187
18212
|
declare const Row: RowRenderComponent;
|
|
18188
18213
|
|
|
18189
18214
|
declare const Footer: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
18190
18215
|
|
|
18216
|
+
declare const Header: () => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
18217
|
+
|
|
18191
18218
|
declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
|
|
18192
18219
|
declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
|
|
18193
18220
|
declare const PROCESSES_ENDPOINT = "processes";
|
|
@@ -18214,7 +18241,7 @@ declare const METADATA_PRODUCT_BLOCK_ENDPOINT = "product_blocks";
|
|
|
18214
18241
|
declare const METADATA_RESOURCE_TYPE_ENDPOINT = "resource_types";
|
|
18215
18242
|
declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
|
|
18216
18243
|
|
|
18217
|
-
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "5.
|
|
18244
|
+
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "5.4.0";
|
|
18218
18245
|
|
|
18219
18246
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
18220
18247
|
pydanticForms: {
|
|
@@ -18534,6 +18561,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
18534
18561
|
not_in_sync: string;
|
|
18535
18562
|
relations_not_in_sync: string;
|
|
18536
18563
|
no_modify_subscription_in_use_by_others: string;
|
|
18564
|
+
insufficient_workflow_permissions: string;
|
|
18537
18565
|
};
|
|
18538
18566
|
};
|
|
18539
18567
|
subscriptionInstanceId: string;
|
|
@@ -18873,4 +18901,4 @@ declare enum WfoQueryParams {
|
|
|
18873
18901
|
}
|
|
18874
18902
|
declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
|
|
18875
18903
|
|
|
18876
|
-
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, Checkbox, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, type ContactPerson, 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, Divider, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, type EnvironmentVariable, type EnvironmentVariables, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps, type FieldValue, FileUploadField, type FileUploadProps, type FilterQuery, type FixedInputDefinition, Footer, 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, Integer, type IpBlock, IpNetworkField, type IpPrefix, KEY_CELL_CLASS_NAME, Label, 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, MinusButton, 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 Option, 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, PlusButton, 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, Radio, 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, Row, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, 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 SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryDisplay, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, Summary, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, type SurfSubscriptionDropdownOptionsFilterParams, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, Text, TextArea, 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, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoChartBar, 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, WfoEnvSettings, 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, WfoObjectField, 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, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, 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, getContactPersonStyles, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getUrlWithQueryParams, getUsedPrefixMin, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isFetchBaseQueryError, isNullOrEmpty, isRecord, 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, prop, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toSortedTableColumnConfig, toUrlParams, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContactPersonsQuery, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useFreePortsByNodeSubscriptionIdAndSpeedQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetNodeSubscriptionOptionsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSurfSubscriptionDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useImsNodesQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetSurfSubscriptionDropdownOptionsQuery, 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 };
|
|
18904
|
+
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, type ContactPerson, 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, type EnvironmentVariable, type EnvironmentVariables, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps, type FieldValue, FileUploadField, type FileUploadProps, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type 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, KEY_CELL_CLASS_NAME, 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, MinusButton, 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 Option, 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, PlusButton, 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, Row, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, 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 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, type SurfSubscriptionDropdownOptionsFilterParams, 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, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, 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, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, 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, WfoRadio, 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, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type 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, getContactPersonStyles, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getUrlWithQueryParams, getUsedPrefixMin, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isFetchBaseQueryError, isNullOrEmpty, isRecord, 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, prop, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toSortedTableColumnConfig, toUrlParams, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContactPersonsQuery, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useFreePortsByNodeSubscriptionIdAndSpeedQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetNodeSubscriptionOptionsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSurfSubscriptionDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useImsNodesQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetSurfSubscriptionDropdownOptionsQuery, 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, useWfoPydanticFormConfig, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|