@orchestrator-ui/orchestrator-ui-components 5.3.4 → 5.5.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 +6 -6
- package/CHANGELOG.md +18 -0
- package/dist/index.d.ts +234 -19
- package/dist/index.js +833 -720
- 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 +4 -2
- package/src/messages/nl-NL.json +4 -2
- 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/index.ts +1 -0
- 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.5.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.5.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 48ms
|
|
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 715ms
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 20119ms
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m837.50 KB[39m
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@5.
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@5.5.0 test
|
|
3
3
|
> jest
|
|
4
4
|
|
|
5
|
-
PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
|
|
6
5
|
PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
|
|
6
|
+
PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.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
|
|
12
|
-
PASS Wfo-UI Tests src/components/WfoTable/utils
|
|
11
|
+
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
|
|
13
12
|
PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
|
|
13
|
+
PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
|
|
14
14
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
|
|
15
15
|
PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
|
|
16
16
|
PASS Wfo-UI Tests src/utils/optionalArray.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.613 s)
|
|
39
38
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts
|
|
39
|
+
PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.328 s)
|
|
40
40
|
|
|
41
41
|
Test Suites: 35 passed, 35 total
|
|
42
42
|
Tests: 228 passed, 228 total
|
|
43
43
|
Snapshots: 0 total
|
|
44
|
-
Time:
|
|
44
|
+
Time: 7.851 s
|
|
45
45
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @orchestrator-ui/orchestrator-ui-components
|
|
2
2
|
|
|
3
|
+
## 5.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5b2d095: Fix RenderFormErrors to not display 0, added some translations
|
|
8
|
+
|
|
9
|
+
## 5.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- fb634ec: Improve Process Detail step timestamp using step started and completed datetime
|
|
14
|
+
- b338d31: Reflect RBAC rules from backend in GUI, requires minimum backend version of 4.2.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- b604a46: Updates to latest version of pydantic forms
|
|
19
|
+
- 796d299: Fixes for pydanticforms integration
|
|
20
|
+
|
|
3
21
|
## 5.3.4
|
|
4
22
|
|
|
5
23
|
### 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;
|
|
@@ -16348,6 +16349,192 @@ declare const useGetNodeSubscriptionOptionsQuery: <R extends Record<string, any>
|
|
|
16348
16349
|
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, NodeSubscriptionOption[], "orchestratorApi", unknown>>;
|
|
16349
16350
|
};
|
|
16350
16351
|
|
|
16352
|
+
interface FileUploadPayload {
|
|
16353
|
+
url: string;
|
|
16354
|
+
file: File;
|
|
16355
|
+
}
|
|
16356
|
+
interface FileUploadReturnValue {
|
|
16357
|
+
file_id: string;
|
|
16358
|
+
file_name: string;
|
|
16359
|
+
}
|
|
16360
|
+
declare const useUploadFileMutation: <R extends Record<string, any> = ({
|
|
16361
|
+
requestId?: undefined;
|
|
16362
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
16363
|
+
data?: undefined;
|
|
16364
|
+
error?: undefined;
|
|
16365
|
+
endpointName?: string;
|
|
16366
|
+
startedTimeStamp?: undefined;
|
|
16367
|
+
fulfilledTimeStamp?: undefined;
|
|
16368
|
+
} & {
|
|
16369
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
16370
|
+
isUninitialized: true;
|
|
16371
|
+
isLoading: false;
|
|
16372
|
+
isSuccess: false;
|
|
16373
|
+
isError: false;
|
|
16374
|
+
}) | ({
|
|
16375
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
16376
|
+
} & Omit<{
|
|
16377
|
+
requestId: string;
|
|
16378
|
+
data?: FileUploadReturnValue | undefined;
|
|
16379
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16380
|
+
endpointName: string;
|
|
16381
|
+
startedTimeStamp: number;
|
|
16382
|
+
fulfilledTimeStamp?: number;
|
|
16383
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
16384
|
+
requestId: string;
|
|
16385
|
+
data?: FileUploadReturnValue | undefined;
|
|
16386
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16387
|
+
endpointName: string;
|
|
16388
|
+
startedTimeStamp: number;
|
|
16389
|
+
fulfilledTimeStamp?: number;
|
|
16390
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
16391
|
+
error: undefined;
|
|
16392
|
+
} & {
|
|
16393
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
16394
|
+
isUninitialized: false;
|
|
16395
|
+
isLoading: false;
|
|
16396
|
+
isSuccess: true;
|
|
16397
|
+
isError: false;
|
|
16398
|
+
}) | ({
|
|
16399
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
16400
|
+
} & {
|
|
16401
|
+
requestId: string;
|
|
16402
|
+
data?: FileUploadReturnValue | undefined;
|
|
16403
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16404
|
+
endpointName: string;
|
|
16405
|
+
startedTimeStamp: number;
|
|
16406
|
+
fulfilledTimeStamp?: number;
|
|
16407
|
+
} & {
|
|
16408
|
+
data?: undefined;
|
|
16409
|
+
} & {
|
|
16410
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
16411
|
+
isUninitialized: false;
|
|
16412
|
+
isLoading: true;
|
|
16413
|
+
isSuccess: false;
|
|
16414
|
+
isError: false;
|
|
16415
|
+
}) | ({
|
|
16416
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
16417
|
+
} & Omit<{
|
|
16418
|
+
requestId: string;
|
|
16419
|
+
data?: FileUploadReturnValue | undefined;
|
|
16420
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16421
|
+
endpointName: string;
|
|
16422
|
+
startedTimeStamp: number;
|
|
16423
|
+
fulfilledTimeStamp?: number;
|
|
16424
|
+
}, "error"> & Required<Pick<{
|
|
16425
|
+
requestId: string;
|
|
16426
|
+
data?: FileUploadReturnValue | undefined;
|
|
16427
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16428
|
+
endpointName: string;
|
|
16429
|
+
startedTimeStamp: number;
|
|
16430
|
+
fulfilledTimeStamp?: number;
|
|
16431
|
+
}, "error">> & {
|
|
16432
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
16433
|
+
isUninitialized: false;
|
|
16434
|
+
isLoading: false;
|
|
16435
|
+
isSuccess: false;
|
|
16436
|
+
isError: true;
|
|
16437
|
+
})>(options?: {
|
|
16438
|
+
selectFromResult?: ((state: ({
|
|
16439
|
+
requestId?: undefined;
|
|
16440
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
16441
|
+
data?: undefined;
|
|
16442
|
+
error?: undefined;
|
|
16443
|
+
endpointName?: string;
|
|
16444
|
+
startedTimeStamp?: undefined;
|
|
16445
|
+
fulfilledTimeStamp?: undefined;
|
|
16446
|
+
} & {
|
|
16447
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
16448
|
+
isUninitialized: true;
|
|
16449
|
+
isLoading: false;
|
|
16450
|
+
isSuccess: false;
|
|
16451
|
+
isError: false;
|
|
16452
|
+
}) | ({
|
|
16453
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
16454
|
+
} & Omit<{
|
|
16455
|
+
requestId: string;
|
|
16456
|
+
data?: FileUploadReturnValue | undefined;
|
|
16457
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16458
|
+
endpointName: string;
|
|
16459
|
+
startedTimeStamp: number;
|
|
16460
|
+
fulfilledTimeStamp?: number;
|
|
16461
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
16462
|
+
requestId: string;
|
|
16463
|
+
data?: FileUploadReturnValue | undefined;
|
|
16464
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16465
|
+
endpointName: string;
|
|
16466
|
+
startedTimeStamp: number;
|
|
16467
|
+
fulfilledTimeStamp?: number;
|
|
16468
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
16469
|
+
error: undefined;
|
|
16470
|
+
} & {
|
|
16471
|
+
status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
|
|
16472
|
+
isUninitialized: false;
|
|
16473
|
+
isLoading: false;
|
|
16474
|
+
isSuccess: true;
|
|
16475
|
+
isError: false;
|
|
16476
|
+
}) | ({
|
|
16477
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
16478
|
+
} & {
|
|
16479
|
+
requestId: string;
|
|
16480
|
+
data?: FileUploadReturnValue | undefined;
|
|
16481
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16482
|
+
endpointName: string;
|
|
16483
|
+
startedTimeStamp: number;
|
|
16484
|
+
fulfilledTimeStamp?: number;
|
|
16485
|
+
} & {
|
|
16486
|
+
data?: undefined;
|
|
16487
|
+
} & {
|
|
16488
|
+
status: _reduxjs_toolkit_query.QueryStatus.pending;
|
|
16489
|
+
isUninitialized: false;
|
|
16490
|
+
isLoading: true;
|
|
16491
|
+
isSuccess: false;
|
|
16492
|
+
isError: false;
|
|
16493
|
+
}) | ({
|
|
16494
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
16495
|
+
} & Omit<{
|
|
16496
|
+
requestId: string;
|
|
16497
|
+
data?: FileUploadReturnValue | undefined;
|
|
16498
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16499
|
+
endpointName: string;
|
|
16500
|
+
startedTimeStamp: number;
|
|
16501
|
+
fulfilledTimeStamp?: number;
|
|
16502
|
+
}, "error"> & Required<Pick<{
|
|
16503
|
+
requestId: string;
|
|
16504
|
+
data?: FileUploadReturnValue | undefined;
|
|
16505
|
+
error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
|
|
16506
|
+
endpointName: string;
|
|
16507
|
+
startedTimeStamp: number;
|
|
16508
|
+
fulfilledTimeStamp?: number;
|
|
16509
|
+
}, "error">> & {
|
|
16510
|
+
status: _reduxjs_toolkit_query.QueryStatus.rejected;
|
|
16511
|
+
isUninitialized: false;
|
|
16512
|
+
isLoading: false;
|
|
16513
|
+
isSuccess: false;
|
|
16514
|
+
isError: true;
|
|
16515
|
+
})) => R) | undefined;
|
|
16516
|
+
fixedCacheKey?: string;
|
|
16517
|
+
} | undefined) => readonly [(arg: FileUploadPayload) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<FileUploadPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
16518
|
+
baseQueryType?: BaseQueryTypes;
|
|
16519
|
+
apiName?: string;
|
|
16520
|
+
paramsSerializer?: (params: Record<string, unknown>) => string;
|
|
16521
|
+
}) => {
|
|
16522
|
+
error?: undefined;
|
|
16523
|
+
data: unknown;
|
|
16524
|
+
meta?: {} | undefined;
|
|
16525
|
+
} | {
|
|
16526
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
16527
|
+
data?: undefined;
|
|
16528
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
16529
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
16530
|
+
error: graphql.GraphQLError[] | undefined;
|
|
16531
|
+
data?: undefined;
|
|
16532
|
+
meta?: {} | undefined;
|
|
16533
|
+
} | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, FileUploadReturnValue, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
|
|
16534
|
+
originalArgs?: FileUploadPayload | undefined;
|
|
16535
|
+
reset: () => void;
|
|
16536
|
+
}];
|
|
16537
|
+
|
|
16351
16538
|
type CustomApiConfig = {
|
|
16352
16539
|
apiName: string;
|
|
16353
16540
|
apiBaseUrl: string;
|
|
@@ -16458,6 +16645,10 @@ type FormValidationError = {
|
|
|
16458
16645
|
data: ValidationErrorData;
|
|
16459
16646
|
status: HttpStatus;
|
|
16460
16647
|
};
|
|
16648
|
+
interface FormUserPermissions {
|
|
16649
|
+
retryAllowed: boolean;
|
|
16650
|
+
resumeAllowed: boolean;
|
|
16651
|
+
}
|
|
16461
16652
|
|
|
16462
16653
|
type Nullable<T> = T | null;
|
|
16463
16654
|
type GenericResponse = {
|
|
@@ -16625,6 +16816,7 @@ interface ProcessDetail {
|
|
|
16625
16816
|
isTask: boolean;
|
|
16626
16817
|
steps: Step[];
|
|
16627
16818
|
traceback: string | null;
|
|
16819
|
+
userPermissions: FormUserPermissions;
|
|
16628
16820
|
subscriptions: {
|
|
16629
16821
|
page: {
|
|
16630
16822
|
product: Pick<ProductDefinition, 'name'>;
|
|
@@ -16668,9 +16860,10 @@ interface Step {
|
|
|
16668
16860
|
name: string;
|
|
16669
16861
|
status: StepStatus;
|
|
16670
16862
|
stepId: string;
|
|
16671
|
-
executed: string;
|
|
16672
16863
|
state: StepState | undefined;
|
|
16673
16864
|
stateDelta: StepState;
|
|
16865
|
+
started: string;
|
|
16866
|
+
completed: string;
|
|
16674
16867
|
}
|
|
16675
16868
|
interface WorkflowDefinition {
|
|
16676
16869
|
workflowId: string;
|
|
@@ -16678,6 +16871,7 @@ interface WorkflowDefinition {
|
|
|
16678
16871
|
description: string;
|
|
16679
16872
|
target: WorkflowTarget;
|
|
16680
16873
|
isTask: boolean;
|
|
16874
|
+
isAllowed: boolean;
|
|
16681
16875
|
products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
|
|
16682
16876
|
createdAt: string;
|
|
16683
16877
|
}
|
|
@@ -16793,6 +16987,7 @@ type StartComboBoxOption = {
|
|
|
16793
16987
|
productId?: string;
|
|
16794
16988
|
};
|
|
16795
16989
|
label: string;
|
|
16990
|
+
disabled?: boolean;
|
|
16796
16991
|
};
|
|
16797
16992
|
interface GraphQlResultPage<T> {
|
|
16798
16993
|
page: T[];
|
|
@@ -17379,6 +17574,7 @@ interface IProps$1 {
|
|
|
17379
17574
|
userInput: object;
|
|
17380
17575
|
isTask?: boolean;
|
|
17381
17576
|
isResuming?: boolean;
|
|
17577
|
+
disabled?: boolean;
|
|
17382
17578
|
}
|
|
17383
17579
|
declare module 'uniforms' {
|
|
17384
17580
|
interface FilterDOMProps {
|
|
@@ -17394,7 +17590,7 @@ declare module 'uniforms' {
|
|
|
17394
17590
|
options: never;
|
|
17395
17591
|
}
|
|
17396
17592
|
}
|
|
17397
|
-
declare function WfoUserInputForm({ router, stepUserInput, validSubmit, cancel, previous, hasNext, hasPrev, userInput, isTask, isResuming, }: IProps$1): _emotion_react_jsx_runtime.JSX.Element;
|
|
17593
|
+
declare function WfoUserInputForm({ router, stepUserInput, validSubmit, cancel, previous, hasNext, hasPrev, userInput, isTask, isResuming, disabled, }: IProps$1): _emotion_react_jsx_runtime.JSX.Element;
|
|
17398
17594
|
|
|
17399
17595
|
interface UserInputFormWizardProps {
|
|
17400
17596
|
stepUserInput: InputForm;
|
|
@@ -17403,8 +17599,9 @@ interface UserInputFormWizardProps {
|
|
|
17403
17599
|
isTask: boolean;
|
|
17404
17600
|
hasNext?: boolean;
|
|
17405
17601
|
isResuming?: boolean;
|
|
17602
|
+
allowSubmit?: boolean;
|
|
17406
17603
|
}
|
|
17407
|
-
declare const UserInputFormWizard: ({ hasNext, stepUserInput, stepSubmit, cancel, isTask, isResuming, }: UserInputFormWizardProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
17604
|
+
declare const UserInputFormWizard: ({ hasNext, stepUserInput, stepSubmit, cancel, isTask, isResuming, allowSubmit, }: UserInputFormWizardProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
17408
17605
|
|
|
17409
17606
|
type AcceptItemType = 'info' | 'label' | 'warning' | 'url' | 'checkbox' | '>checkbox' | 'checkbox?' | '>checkbox?' | 'skip' | 'margin' | 'value';
|
|
17410
17607
|
type AcceptItem = [string, AcceptItemType, Record<string, string>?];
|
|
@@ -17898,6 +18095,7 @@ interface WfoWorkflowStepListProps {
|
|
|
17898
18095
|
processId: string;
|
|
17899
18096
|
isTask: boolean;
|
|
17900
18097
|
userInputForm?: InputForm;
|
|
18098
|
+
userPermissions: FormUserPermissions;
|
|
17901
18099
|
}
|
|
17902
18100
|
declare const WfoProcessRawData: ({ processId }: {
|
|
17903
18101
|
processId: string;
|
|
@@ -17927,11 +18125,13 @@ declare const WfoStepListHeader: FC<WfoStepListHeaderProps>;
|
|
|
17927
18125
|
interface WfoStepProps {
|
|
17928
18126
|
stepListItem: StepListItem;
|
|
17929
18127
|
startedAt: string;
|
|
18128
|
+
completedAt: string;
|
|
17930
18129
|
showHiddenKeys: boolean;
|
|
17931
18130
|
onToggleStepDetail: () => void;
|
|
17932
18131
|
isTask: boolean;
|
|
17933
18132
|
isStartStep?: boolean;
|
|
17934
18133
|
processId?: string;
|
|
18134
|
+
userPermissions: FormUserPermissions;
|
|
17935
18135
|
}
|
|
17936
18136
|
declare const WfoStep: React__default.ForwardRefExoticComponent<WfoStepProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
17937
18137
|
|
|
@@ -17941,11 +18141,11 @@ type WfoStepListRef = {
|
|
|
17941
18141
|
type WfoStepListProps = {
|
|
17942
18142
|
stepListItems: StepListItem[];
|
|
17943
18143
|
showHiddenKeys: boolean;
|
|
17944
|
-
startedAt: string;
|
|
17945
18144
|
onToggleExpandStepListItem: (stepListItem: StepListItem) => void;
|
|
17946
18145
|
onTriggerExpandStepListItem: (stepListItem: StepListItem) => void;
|
|
17947
18146
|
isTask: boolean;
|
|
17948
18147
|
processId: string;
|
|
18148
|
+
userPermissions: FormUserPermissions;
|
|
17949
18149
|
};
|
|
17950
18150
|
declare const WfoStepList: React__default.ForwardRefExoticComponent<WfoStepListProps & React__default.RefAttributes<WfoStepListRef>>;
|
|
17951
18151
|
|
|
@@ -18141,22 +18341,31 @@ interface WfoPydanticFormProps {
|
|
|
18141
18341
|
startProcessPayload?: StartWorkflowPayload;
|
|
18142
18342
|
isTask?: boolean;
|
|
18143
18343
|
}
|
|
18344
|
+
declare const useWfoPydanticFormConfig: () => {
|
|
18345
|
+
wfoComponentMatcherExtender: ComponentMatcherExtender;
|
|
18346
|
+
pydanticLabelProvider: PydanticFormLabelProvider;
|
|
18347
|
+
customTranslations: {
|
|
18348
|
+
cancel: string;
|
|
18349
|
+
startWorkflow: string;
|
|
18350
|
+
widgets: {};
|
|
18351
|
+
};
|
|
18352
|
+
};
|
|
18144
18353
|
declare const WfoPydanticForm: ({ processName, startProcessPayload, isTask, }: WfoPydanticFormProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18145
18354
|
|
|
18146
|
-
declare const
|
|
18355
|
+
declare const WfoTextArea: PydanticFormControlledElement;
|
|
18147
18356
|
|
|
18148
|
-
declare const
|
|
18357
|
+
declare const WfoText: PydanticFormControlledElement;
|
|
18149
18358
|
|
|
18150
|
-
declare const
|
|
18359
|
+
declare const WfoLabel: PydanticFormElement;
|
|
18151
18360
|
|
|
18152
|
-
declare const
|
|
18361
|
+
declare const WfoDivider: PydanticFormElement;
|
|
18153
18362
|
|
|
18154
|
-
declare const
|
|
18363
|
+
declare const WfoCheckbox: PydanticFormControlledElement;
|
|
18155
18364
|
|
|
18156
18365
|
declare const getStyles: ({ theme }: WfoTheme) => {
|
|
18157
18366
|
summaryFieldStyle: _emotion_react.SerializedStyles;
|
|
18158
18367
|
};
|
|
18159
|
-
declare const
|
|
18368
|
+
declare const WfoSummary: PydanticFormElement;
|
|
18160
18369
|
|
|
18161
18370
|
declare const WfoObjectField: ({ pydanticFormField, }: PydanticFormElementProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18162
18371
|
|
|
@@ -18164,12 +18373,14 @@ declare const getWfoObjectFieldStyles: () => {
|
|
|
18164
18373
|
wfoObjectFieldStyles: _emotion_react.SerializedStyles;
|
|
18165
18374
|
};
|
|
18166
18375
|
|
|
18167
|
-
declare const MinusButton: ({ index, onRemove, }: {
|
|
18376
|
+
declare const MinusButton: ({ index, onRemove, testId, }: {
|
|
18168
18377
|
index: number;
|
|
18169
18378
|
onRemove: (index: number) => void;
|
|
18379
|
+
testId: string;
|
|
18170
18380
|
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18171
|
-
declare const PlusButton: ({ onClick }: {
|
|
18381
|
+
declare const PlusButton: ({ onClick, testId, }: {
|
|
18172
18382
|
onClick: () => void;
|
|
18383
|
+
testId: string;
|
|
18173
18384
|
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
18174
18385
|
declare const WfoArrayField: ({ pydanticFormField, }: PydanticFormElementProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
18175
18386
|
|
|
@@ -18180,14 +18391,16 @@ declare const getWfoArrayFieldStyles: () => {
|
|
|
18180
18391
|
plusButtonWrapper: _emotion_react.SerializedStyles;
|
|
18181
18392
|
};
|
|
18182
18393
|
|
|
18183
|
-
declare const
|
|
18394
|
+
declare const WfoRadio: PydanticFormControlledElement;
|
|
18184
18395
|
|
|
18185
|
-
declare const
|
|
18396
|
+
declare const WfoInteger: PydanticFormControlledElement;
|
|
18186
18397
|
|
|
18187
18398
|
declare const Row: RowRenderComponent;
|
|
18188
18399
|
|
|
18189
18400
|
declare const Footer: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
18190
18401
|
|
|
18402
|
+
declare const Header: () => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
18403
|
+
|
|
18191
18404
|
declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
|
|
18192
18405
|
declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
|
|
18193
18406
|
declare const PROCESSES_ENDPOINT = "processes";
|
|
@@ -18214,7 +18427,7 @@ declare const METADATA_PRODUCT_BLOCK_ENDPOINT = "product_blocks";
|
|
|
18214
18427
|
declare const METADATA_RESOURCE_TYPE_ENDPOINT = "resource_types";
|
|
18215
18428
|
declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
|
|
18216
18429
|
|
|
18217
|
-
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "5.
|
|
18430
|
+
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "5.5.0";
|
|
18218
18431
|
|
|
18219
18432
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
18220
18433
|
pydanticForms: {
|
|
@@ -18287,6 +18500,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
18287
18500
|
errorUploading: string;
|
|
18288
18501
|
fileToBig: string;
|
|
18289
18502
|
initialPromptText: string;
|
|
18503
|
+
supportedFileTypes: string;
|
|
18290
18504
|
};
|
|
18291
18505
|
};
|
|
18292
18506
|
};
|
|
@@ -18534,6 +18748,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
18534
18748
|
not_in_sync: string;
|
|
18535
18749
|
relations_not_in_sync: string;
|
|
18536
18750
|
no_modify_subscription_in_use_by_others: string;
|
|
18751
|
+
insufficient_workflow_permissions: string;
|
|
18537
18752
|
};
|
|
18538
18753
|
};
|
|
18539
18754
|
subscriptionInstanceId: string;
|
|
@@ -18873,4 +19088,4 @@ declare enum WfoQueryParams {
|
|
|
18873
19088
|
}
|
|
18874
19089
|
declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
|
|
18875
19090
|
|
|
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 };
|
|
19091
|
+
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 FileUploadPayload, 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, useUploadFileMutation, useVlansByServicePortQuery, useWfoErrorMonitoring, useWfoPydanticFormConfig, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|