@orchestrator-ui/orchestrator-ui-components 1.3.1 → 1.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 +5 -5
- package/.turbo/turbo-lint.log +7 -1
- package/.turbo/turbo-test.log +7 -7
- package/CHANGELOG.md +31 -2
- package/LICENSE.txt +202 -0
- package/README.md +22 -0
- package/dist/index.d.ts +531 -314
- package/dist/index.js +5120 -7384
- package/package.json +21 -4
- package/src/api/index.ts +4 -3
- package/src/api/types.ts +53 -0
- package/src/components/WfoDropdownButton/WfoDropdownButton.tsx +2 -0
- package/src/components/WfoForms/AutoFieldLoader.tsx +6 -6
- package/src/components/WfoForms/formFields/AcceptField.tsx +2 -1
- package/src/components/WfoForms/formFields/BoolField.tsx +2 -1
- package/src/components/WfoForms/formFields/DividerField.tsx +1 -1
- package/src/components/WfoForms/formFields/ErrorField.tsx +1 -1
- package/src/components/WfoForms/formFields/LabelField.tsx +1 -1
- package/src/components/WfoForms/formFields/ListAddField.tsx +2 -1
- package/src/components/WfoForms/formFields/ListDelField.tsx +2 -1
- package/src/components/WfoForms/formFields/LongTextField.tsx +1 -1
- package/src/components/WfoForms/formFields/NumField.tsx +1 -1
- package/src/components/WfoForms/formFields/ProductField.tsx +8 -7
- package/src/components/WfoForms/formFields/RadioField.tsx +1 -1
- package/src/components/WfoForms/formFields/SelectField.tsx +4 -2
- package/src/components/WfoForms/formFields/SubmitField.tsx +1 -1
- package/src/components/WfoForms/formFields/SubscriptionField.tsx +5 -4
- package/src/components/WfoForms/formFields/SubscriptionSummaryField.tsx +11 -15
- package/src/components/WfoForms/formFields/TextField.tsx +1 -1
- package/src/components/WfoForms/formFields/{ContactPersonAutocomplete.tsx → deprecated/ContactPersonAutocomplete.tsx} +4 -3
- package/src/components/WfoForms/formFields/{ContactPersonNameField.tsx → deprecated/ContactPersonNameField.tsx} +3 -2
- package/src/components/WfoForms/formFields/{ImsNodeIdField.tsx → deprecated/ImsNodeIdField.tsx} +4 -3
- package/src/components/WfoForms/formFields/{ImsPortIdField.tsx → deprecated/ImsPortIdField.tsx} +7 -4
- package/src/components/WfoForms/formFields/{IpNetworkField.tsx → deprecated/IpNetworkField.tsx} +4 -3
- package/src/components/WfoForms/formFields/{IpPrefixTableField.tsx → deprecated/IpPrefixTableField.tsx} +5 -4
- package/src/components/WfoForms/formFields/{SplitPrefix.tsx → deprecated/SplitPrefix.tsx} +3 -2
- package/src/components/WfoForms/formFields/{TimestampField.tsx → deprecated/TimestampField.tsx} +1 -1
- package/src/components/WfoForms/formFields/{VlanField.tsx → deprecated/VlanField.tsx} +5 -4
- package/src/components/WfoForms/formFields/deprecated/index.ts +13 -0
- package/src/components/WfoForms/formFields/{surf → deprecated}/types.ts +1 -1
- package/src/components/WfoForms/formFields/index.ts +1 -6
- package/src/components/WfoForms/formFields/utils.spec.ts +1 -1
- package/src/components/WfoForms/formFields/utils.ts +3 -2
- package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +2 -2
- package/src/components/WfoProcessList/WfoProcessesList.tsx +16 -9
- package/src/components/WfoProcessList/processListObjectMappers.ts +6 -10
- package/src/components/WfoSettings/WfoModifySettings.tsx +29 -13
- package/src/components/WfoSettings/WfoResetTextSearchIndexButton.tsx +22 -0
- package/src/components/WfoSettings/index.ts +1 -0
- package/src/components/{WfoButtonComboBox/WfoButtonComboBox.tsx → WfoStartButton/WfoStartButtonComboBox.tsx} +11 -17
- package/src/components/WfoStartButton/WfoStartTaskComboBox.tsx +47 -0
- package/src/components/WfoStartButton/WfoStartWorkflowComboBox.tsx +49 -0
- package/src/components/WfoStartButton/index.ts +2 -0
- package/src/components/WfoSubscription/WfoRelatedSubscriptions.tsx +30 -36
- package/src/components/WfoSubscription/WfoSubscription.tsx +17 -20
- package/src/components/WfoSubscription/index.ts +6 -4
- package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +12 -16
- package/src/components/WfoSubscriptionsList/subscriptionResultMappers.ts +10 -12
- package/src/components/index.ts +2 -1
- package/src/configuration/constants.ts +3 -0
- package/src/hooks/{surf → deprecated}/useGetSubscriptionDropdownOptions.ts +6 -13
- package/src/hooks/{surf → deprecated}/useIsTaggedPort.ts +6 -9
- package/src/hooks/index.ts +0 -1
- package/src/index.ts +0 -1
- package/src/messages/en-GB.json +3 -1
- package/src/messages/nl-NL.json +3 -1
- package/src/pages/metadata/WfoProductBlocksPage.tsx +27 -37
- package/src/pages/metadata/WfoProductsPage.tsx +11 -16
- package/src/pages/metadata/WfoResourceTypesPage.tsx +33 -35
- package/src/pages/metadata/WfoWorkflowsPage.tsx +42 -40
- package/src/pages/metadata/workflowListObjectMapper.ts +4 -7
- package/src/pages/processes/WfoStartProcessPage.tsx +0 -6
- package/src/pages/startPage/WfoStartPage.tsx +56 -68
- package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +6 -7
- package/src/rtk/api.ts +11 -3
- package/src/rtk/endpoints/index.ts +11 -2
- package/src/rtk/endpoints/metadata/index.ts +3 -0
- package/src/rtk/endpoints/metadata/productBlocks.ts +88 -0
- package/src/rtk/endpoints/metadata/resourceTypes.ts +78 -0
- package/src/rtk/endpoints/metadata/workflows.ts +73 -0
- package/src/rtk/endpoints/processList.ts +2 -1
- package/src/rtk/endpoints/processListSummary.ts +70 -0
- package/src/rtk/endpoints/products.ts +76 -0
- package/src/rtk/endpoints/productsSummary.ts +62 -0
- package/src/rtk/endpoints/relatedSubscriptions.ts +99 -0
- package/src/rtk/endpoints/settings.ts +10 -0
- package/src/rtk/endpoints/startOptions.ts +99 -0
- package/src/{graphqlQueries/subscriptionDetailQuery.ts → rtk/endpoints/subscriptionDetail.ts} +45 -11
- package/src/rtk/endpoints/subscriptionList.ts +86 -0
- package/src/rtk/endpoints/subscriptionListSummary.ts +70 -0
- package/src/rtk/endpoints/subscriptionsDropdownOptions.ts +72 -0
- package/src/types/types.ts +20 -0
- package/src/utils/index.ts +1 -0
- package/src/components/WfoPageTemplate/WfoSidebar/WfoStartCreateWorkflowButtonComboBox.tsx +0 -61
- package/src/components/WfoStartTaskButtonComboBox/WfoStartTaskButtonComboBox.tsx +0 -54
- package/src/components/WfoStartTaskButtonComboBox/index.ts +0 -1
- package/src/graphqlQueries/index.ts +0 -7
- package/src/graphqlQueries/processListQuery.ts +0 -101
- package/src/graphqlQueries/productBlocksQuery.ts +0 -59
- package/src/graphqlQueries/productsQuery.ts +0 -85
- package/src/graphqlQueries/relatedSubscriptionsQuery.ts +0 -65
- package/src/graphqlQueries/resourceTypesQuery.ts +0 -52
- package/src/graphqlQueries/subscriptionsDropdownOptionsQuery.ts +0 -48
- package/src/graphqlQueries/subscriptionsListQuery.ts +0 -101
- package/src/graphqlQueries/workflows/workflowsQuery.ts +0 -48
- package/src/graphqlQueries/workflows/workflowsQueryForDropdownList.ts +0 -38
- package/src/hooks/useQueryWithGraphql.ts +0 -72
- /package/src/components/WfoForms/formFields/{ContactPersonAutocompleteStyles.ts → deprecated/ContactPersonAutocompleteStyles.ts} +0 -0
- /package/src/components/WfoForms/formFields/{ImsPortIdFieldStyling.ts → deprecated/ImsPortIdFieldStyling.ts} +0 -0
- /package/src/components/WfoForms/formFields/{IpPrefixTableFieldStyling.ts → deprecated/IpPrefixTableFieldStyling.ts} +0 -0
- /package/src/components/WfoForms/formFields/{SplitPrefixStyling.ts → deprecated/SplitPrefixStyling.ts} +0 -0
- /package/src/components/WfoForms/formFields/{surf → deprecated}/utils.ts +0 -0
- /package/src/components/{WfoButtonComboBox → WfoStartButton}/styles.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -18,13 +18,10 @@ import { SerializedStyles } from '@emotion/react';
|
|
|
18
18
|
import * as _emotion_utils from '@emotion/utils';
|
|
19
19
|
import { EuiThemeComputed as EuiThemeComputed$1 } from '@elastic/eui/src/services/theme/types';
|
|
20
20
|
import moment, { Moment } from 'moment-timezone';
|
|
21
|
-
import * as graphql from 'graphql';
|
|
22
|
-
import { TypedDocumentNode } from '@graphql-typed-document-node/core';
|
|
23
|
-
import { Variables } from 'graphql-request/build/esm/types';
|
|
24
21
|
import * as next_auth_react from 'next-auth/react';
|
|
25
22
|
import { UseSessionOptions } from 'next-auth/react';
|
|
26
23
|
import { Session } from 'next-auth';
|
|
27
|
-
import { Variables
|
|
24
|
+
import { Variables } from 'graphql-request/build/cjs/types';
|
|
28
25
|
import * as _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes from '@rtk-query/graphql-request-base-query/dist/GraphqlBaseQueryTypes';
|
|
29
26
|
import * as _reduxjs_toolkit_dist_query_baseQueryTypes from '@reduxjs/toolkit/dist/query/baseQueryTypes';
|
|
30
27
|
import * as _reduxjs_toolkit_query_react from '@reduxjs/toolkit/query/react';
|
|
@@ -36,6 +33,53 @@ import { Reducer, Slice, PayloadAction, EnhancedStore, Dispatch, UnknownAction }
|
|
|
36
33
|
import { Toast } from '@elastic/eui/src/components/toast/global_toast_list';
|
|
37
34
|
export { Toast } from '@elastic/eui/src/components/toast/global_toast_list';
|
|
38
35
|
|
|
36
|
+
declare type LegacyFixedInput = {
|
|
37
|
+
name: string;
|
|
38
|
+
value: string;
|
|
39
|
+
created_at: number;
|
|
40
|
+
fixed_input_id: string;
|
|
41
|
+
product_id: string;
|
|
42
|
+
};
|
|
43
|
+
declare type LegacyWorkflow = {
|
|
44
|
+
name: string;
|
|
45
|
+
description: string;
|
|
46
|
+
target: string;
|
|
47
|
+
created_at: number;
|
|
48
|
+
workflow_id: string;
|
|
49
|
+
};
|
|
50
|
+
declare type LegacyResourceType = {
|
|
51
|
+
resource_type_id: string;
|
|
52
|
+
resource_type: string;
|
|
53
|
+
description: string;
|
|
54
|
+
};
|
|
55
|
+
declare type LegacyProductBlock = {
|
|
56
|
+
product_block_id: string;
|
|
57
|
+
name: string;
|
|
58
|
+
tag: string;
|
|
59
|
+
description: string;
|
|
60
|
+
status: string;
|
|
61
|
+
created_at: number;
|
|
62
|
+
end_date: number;
|
|
63
|
+
resource_types: LegacyResourceType[];
|
|
64
|
+
parent_ids: string[];
|
|
65
|
+
};
|
|
66
|
+
declare type LegacyProduct = {
|
|
67
|
+
name: string;
|
|
68
|
+
tag: string;
|
|
69
|
+
description: string;
|
|
70
|
+
product_id: string;
|
|
71
|
+
created_at: number;
|
|
72
|
+
product_type: string;
|
|
73
|
+
end_date: number;
|
|
74
|
+
status: string;
|
|
75
|
+
fixed_inputs: LegacyFixedInput[];
|
|
76
|
+
workflows: LegacyWorkflow[];
|
|
77
|
+
product_blocks: LegacyProductBlock[];
|
|
78
|
+
create_subscription_workflow_key: string;
|
|
79
|
+
modify_subscription_workflow_key: string;
|
|
80
|
+
terminate_subscription_workflow_key: string;
|
|
81
|
+
};
|
|
82
|
+
|
|
39
83
|
interface ValidationError {
|
|
40
84
|
input_type: string;
|
|
41
85
|
loc: (string | number)[];
|
|
@@ -152,6 +196,7 @@ interface ProductDefinition {
|
|
|
152
196
|
productBlocks: Pick<ProductBlockDefinition, 'name'>[];
|
|
153
197
|
fixedInputs: Pick<FixedInputDefinition, 'name' | 'value'>[];
|
|
154
198
|
}
|
|
199
|
+
declare type ProductsSummary = Pick<ProductDefinition, 'name'> & SubscriptionsResult<never>;
|
|
155
200
|
declare enum WorkflowTarget {
|
|
156
201
|
CREATE = "create",
|
|
157
202
|
MODIFY = "modify",
|
|
@@ -340,11 +385,21 @@ interface CustomersResult {
|
|
|
340
385
|
interface WorkflowDefinitionsResult<T = WorkflowDefinition> {
|
|
341
386
|
workflows: GraphQlResultPage<T>;
|
|
342
387
|
}
|
|
388
|
+
interface StartOptionsResult<T> {
|
|
389
|
+
workflows: GraphQlSinglePage<T>;
|
|
390
|
+
}
|
|
343
391
|
interface RelatedSubscriptionsResult {
|
|
344
392
|
subscriptions: GraphQlSinglePage<Pick<Subscription, 'subscriptionId'> & {
|
|
345
393
|
inUseBySubscriptions: GraphQlResultPage<RelatedSubscription>;
|
|
346
394
|
}>;
|
|
347
395
|
}
|
|
396
|
+
declare type StartComboBoxOption = {
|
|
397
|
+
data: {
|
|
398
|
+
workflowName: string;
|
|
399
|
+
productId?: string;
|
|
400
|
+
};
|
|
401
|
+
label: string;
|
|
402
|
+
};
|
|
348
403
|
interface GraphQlResultPage<T> {
|
|
349
404
|
page: T[];
|
|
350
405
|
pageInfo: GraphQLPageInfo;
|
|
@@ -380,6 +435,7 @@ declare type Subscription = {
|
|
|
380
435
|
productBlockInstances: ProductBlockInstance[];
|
|
381
436
|
customer: Pick<Customer, 'fullname' | 'shortcode'>;
|
|
382
437
|
};
|
|
438
|
+
declare type SubscriptionSummary = Pick<Subscription, 'subscriptionId' | 'description' | 'startDate'>;
|
|
383
439
|
declare type SubscriptionDropdownOption = {
|
|
384
440
|
description: Subscription['description'];
|
|
385
441
|
subscriptionId: Subscription['subscriptionId'];
|
|
@@ -460,6 +516,27 @@ interface NodeSubscription {
|
|
|
460
516
|
end_date: number;
|
|
461
517
|
note: string;
|
|
462
518
|
}
|
|
519
|
+
interface ServicePort {
|
|
520
|
+
subscription_id?: string;
|
|
521
|
+
vlan?: string;
|
|
522
|
+
bandwidth?: number;
|
|
523
|
+
nonremovable?: boolean;
|
|
524
|
+
modifiable?: boolean;
|
|
525
|
+
}
|
|
526
|
+
declare enum PortMode {
|
|
527
|
+
TAGGED = "tagged",
|
|
528
|
+
UNTAGGED = "untagged",
|
|
529
|
+
LINK_MEMBER = "link_member"
|
|
530
|
+
}
|
|
531
|
+
declare enum ProductTag {
|
|
532
|
+
MSC = "MSC",
|
|
533
|
+
MSCNL = "MSCNL",
|
|
534
|
+
IRBSP = "IRBSP",
|
|
535
|
+
SP = "SP",
|
|
536
|
+
SPNL = "SPNL",
|
|
537
|
+
AGGSP = "AGGSP",
|
|
538
|
+
AGGSPNL = "AGGSPNL"
|
|
539
|
+
}
|
|
463
540
|
interface ImsPort {
|
|
464
541
|
id: number;
|
|
465
542
|
line_name: string;
|
|
@@ -469,6 +546,15 @@ interface ImsPort {
|
|
|
469
546
|
patchposition: string;
|
|
470
547
|
status: string;
|
|
471
548
|
}
|
|
549
|
+
interface ImsNode {
|
|
550
|
+
id: number;
|
|
551
|
+
name: string;
|
|
552
|
+
status: string;
|
|
553
|
+
}
|
|
554
|
+
interface SortOption<nameStrings = string> {
|
|
555
|
+
name: nameStrings;
|
|
556
|
+
descending: boolean;
|
|
557
|
+
}
|
|
472
558
|
interface IpPrefix {
|
|
473
559
|
id: number;
|
|
474
560
|
prefix: string;
|
|
@@ -502,7 +588,7 @@ declare class ApiClient extends BaseApiClient {
|
|
|
502
588
|
}>;
|
|
503
589
|
startProcess: (workflowName: string, processInput: object) => Promise<unknown>;
|
|
504
590
|
resumeProcess: (processId: string, userInput: object[]) => Promise<object>;
|
|
505
|
-
products: () => Promise<
|
|
591
|
+
products: () => Promise<LegacyProduct[]>;
|
|
506
592
|
productById: (productId: string) => Promise<ProductDefinition>;
|
|
507
593
|
prefix_filters: () => Promise<IpPrefix[]>;
|
|
508
594
|
ip_blocks: (parentPrefix: number) => Promise<IpBlock[]>;
|
|
@@ -699,234 +785,6 @@ declare const useCheckEngineStatus: () => {
|
|
|
699
785
|
isEngineRunningNow: () => Promise<boolean>;
|
|
700
786
|
};
|
|
701
787
|
|
|
702
|
-
declare const useQueryWithGraphql: <U, V extends Variables>(query: TypedDocumentNode<U, V>, queryVars: V, cacheKeys: string[] | string, options?: UseQueryOptions<U, unknown, U, react_query.QueryKey>) => {
|
|
703
|
-
data: undefined;
|
|
704
|
-
isError: false;
|
|
705
|
-
isIdle: true;
|
|
706
|
-
isLoading: false;
|
|
707
|
-
isLoadingError: false;
|
|
708
|
-
isRefetchError: false;
|
|
709
|
-
isSuccess: false;
|
|
710
|
-
status: "idle";
|
|
711
|
-
dataUpdatedAt: number;
|
|
712
|
-
errorUpdatedAt: number;
|
|
713
|
-
failureCount: number;
|
|
714
|
-
errorUpdateCount: number;
|
|
715
|
-
isFetched: boolean;
|
|
716
|
-
isFetchedAfterMount: boolean;
|
|
717
|
-
isFetching: boolean;
|
|
718
|
-
isPlaceholderData: boolean;
|
|
719
|
-
isPreviousData: boolean;
|
|
720
|
-
isRefetching: boolean;
|
|
721
|
-
isStale: boolean;
|
|
722
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
723
|
-
remove: () => void;
|
|
724
|
-
} | {
|
|
725
|
-
data: undefined;
|
|
726
|
-
isError: true;
|
|
727
|
-
isIdle: false;
|
|
728
|
-
isLoading: false;
|
|
729
|
-
isLoadingError: true;
|
|
730
|
-
isRefetchError: false;
|
|
731
|
-
isSuccess: false;
|
|
732
|
-
status: "error";
|
|
733
|
-
dataUpdatedAt: number;
|
|
734
|
-
errorUpdatedAt: number;
|
|
735
|
-
failureCount: number;
|
|
736
|
-
errorUpdateCount: number;
|
|
737
|
-
isFetched: boolean;
|
|
738
|
-
isFetchedAfterMount: boolean;
|
|
739
|
-
isFetching: boolean;
|
|
740
|
-
isPlaceholderData: boolean;
|
|
741
|
-
isPreviousData: boolean;
|
|
742
|
-
isRefetching: boolean;
|
|
743
|
-
isStale: boolean;
|
|
744
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
745
|
-
remove: () => void;
|
|
746
|
-
} | {
|
|
747
|
-
data: undefined;
|
|
748
|
-
isError: false;
|
|
749
|
-
isIdle: false;
|
|
750
|
-
isLoading: true;
|
|
751
|
-
isLoadingError: false;
|
|
752
|
-
isRefetchError: false;
|
|
753
|
-
isSuccess: false;
|
|
754
|
-
status: "loading";
|
|
755
|
-
dataUpdatedAt: number;
|
|
756
|
-
errorUpdatedAt: number;
|
|
757
|
-
failureCount: number;
|
|
758
|
-
errorUpdateCount: number;
|
|
759
|
-
isFetched: boolean;
|
|
760
|
-
isFetchedAfterMount: boolean;
|
|
761
|
-
isFetching: boolean;
|
|
762
|
-
isPlaceholderData: boolean;
|
|
763
|
-
isPreviousData: boolean;
|
|
764
|
-
isRefetching: boolean;
|
|
765
|
-
isStale: boolean;
|
|
766
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
767
|
-
remove: () => void;
|
|
768
|
-
} | {
|
|
769
|
-
data: U;
|
|
770
|
-
isError: true;
|
|
771
|
-
isIdle: false;
|
|
772
|
-
isLoading: false;
|
|
773
|
-
isLoadingError: false;
|
|
774
|
-
isRefetchError: true;
|
|
775
|
-
isSuccess: false;
|
|
776
|
-
status: "error";
|
|
777
|
-
dataUpdatedAt: number;
|
|
778
|
-
errorUpdatedAt: number;
|
|
779
|
-
failureCount: number;
|
|
780
|
-
errorUpdateCount: number;
|
|
781
|
-
isFetched: boolean;
|
|
782
|
-
isFetchedAfterMount: boolean;
|
|
783
|
-
isFetching: boolean;
|
|
784
|
-
isPlaceholderData: boolean;
|
|
785
|
-
isPreviousData: boolean;
|
|
786
|
-
isRefetching: boolean;
|
|
787
|
-
isStale: boolean;
|
|
788
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
789
|
-
remove: () => void;
|
|
790
|
-
} | {
|
|
791
|
-
data: U;
|
|
792
|
-
isError: false;
|
|
793
|
-
isIdle: false;
|
|
794
|
-
isLoading: false;
|
|
795
|
-
isLoadingError: false;
|
|
796
|
-
isRefetchError: false;
|
|
797
|
-
isSuccess: true;
|
|
798
|
-
status: "success";
|
|
799
|
-
dataUpdatedAt: number;
|
|
800
|
-
errorUpdatedAt: number;
|
|
801
|
-
failureCount: number;
|
|
802
|
-
errorUpdateCount: number;
|
|
803
|
-
isFetched: boolean;
|
|
804
|
-
isFetchedAfterMount: boolean;
|
|
805
|
-
isFetching: boolean;
|
|
806
|
-
isPlaceholderData: boolean;
|
|
807
|
-
isPreviousData: boolean;
|
|
808
|
-
isRefetching: boolean;
|
|
809
|
-
isStale: boolean;
|
|
810
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
811
|
-
remove: () => void;
|
|
812
|
-
};
|
|
813
|
-
declare const useQueryWithGraphqlLazy: <U, V extends Variables>(query: TypedDocumentNode<U, V>, queryVars: V, cacheKeys: string[] | string, options?: UseQueryOptions<U, unknown, U, react_query.QueryKey>) => {
|
|
814
|
-
data: undefined;
|
|
815
|
-
isError: false;
|
|
816
|
-
isIdle: true;
|
|
817
|
-
isLoading: false;
|
|
818
|
-
isLoadingError: false;
|
|
819
|
-
isRefetchError: false;
|
|
820
|
-
isSuccess: false;
|
|
821
|
-
status: "idle";
|
|
822
|
-
dataUpdatedAt: number;
|
|
823
|
-
errorUpdatedAt: number;
|
|
824
|
-
failureCount: number;
|
|
825
|
-
errorUpdateCount: number;
|
|
826
|
-
isFetched: boolean;
|
|
827
|
-
isFetchedAfterMount: boolean;
|
|
828
|
-
isFetching: boolean;
|
|
829
|
-
isPlaceholderData: boolean;
|
|
830
|
-
isPreviousData: boolean;
|
|
831
|
-
isRefetching: boolean;
|
|
832
|
-
isStale: boolean;
|
|
833
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
834
|
-
remove: () => void;
|
|
835
|
-
getData: () => Promise<U | undefined>;
|
|
836
|
-
} | {
|
|
837
|
-
data: undefined;
|
|
838
|
-
isError: true;
|
|
839
|
-
isIdle: false;
|
|
840
|
-
isLoading: false;
|
|
841
|
-
isLoadingError: true;
|
|
842
|
-
isRefetchError: false;
|
|
843
|
-
isSuccess: false;
|
|
844
|
-
status: "error";
|
|
845
|
-
dataUpdatedAt: number;
|
|
846
|
-
errorUpdatedAt: number;
|
|
847
|
-
failureCount: number;
|
|
848
|
-
errorUpdateCount: number;
|
|
849
|
-
isFetched: boolean;
|
|
850
|
-
isFetchedAfterMount: boolean;
|
|
851
|
-
isFetching: boolean;
|
|
852
|
-
isPlaceholderData: boolean;
|
|
853
|
-
isPreviousData: boolean;
|
|
854
|
-
isRefetching: boolean;
|
|
855
|
-
isStale: boolean;
|
|
856
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
857
|
-
remove: () => void;
|
|
858
|
-
getData: () => Promise<U | undefined>;
|
|
859
|
-
} | {
|
|
860
|
-
data: undefined;
|
|
861
|
-
isError: false;
|
|
862
|
-
isIdle: false;
|
|
863
|
-
isLoading: true;
|
|
864
|
-
isLoadingError: false;
|
|
865
|
-
isRefetchError: false;
|
|
866
|
-
isSuccess: false;
|
|
867
|
-
status: "loading";
|
|
868
|
-
dataUpdatedAt: number;
|
|
869
|
-
errorUpdatedAt: number;
|
|
870
|
-
failureCount: number;
|
|
871
|
-
errorUpdateCount: number;
|
|
872
|
-
isFetched: boolean;
|
|
873
|
-
isFetchedAfterMount: boolean;
|
|
874
|
-
isFetching: boolean;
|
|
875
|
-
isPlaceholderData: boolean;
|
|
876
|
-
isPreviousData: boolean;
|
|
877
|
-
isRefetching: boolean;
|
|
878
|
-
isStale: boolean;
|
|
879
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
880
|
-
remove: () => void;
|
|
881
|
-
getData: () => Promise<U | undefined>;
|
|
882
|
-
} | {
|
|
883
|
-
data: U;
|
|
884
|
-
isError: true;
|
|
885
|
-
isIdle: false;
|
|
886
|
-
isLoading: false;
|
|
887
|
-
isLoadingError: false;
|
|
888
|
-
isRefetchError: true;
|
|
889
|
-
isSuccess: false;
|
|
890
|
-
status: "error";
|
|
891
|
-
dataUpdatedAt: number;
|
|
892
|
-
errorUpdatedAt: number;
|
|
893
|
-
failureCount: number;
|
|
894
|
-
errorUpdateCount: number;
|
|
895
|
-
isFetched: boolean;
|
|
896
|
-
isFetchedAfterMount: boolean;
|
|
897
|
-
isFetching: boolean;
|
|
898
|
-
isPlaceholderData: boolean;
|
|
899
|
-
isPreviousData: boolean;
|
|
900
|
-
isRefetching: boolean;
|
|
901
|
-
isStale: boolean;
|
|
902
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
903
|
-
remove: () => void;
|
|
904
|
-
getData: () => Promise<U | undefined>;
|
|
905
|
-
} | {
|
|
906
|
-
data: U;
|
|
907
|
-
isError: false;
|
|
908
|
-
isIdle: false;
|
|
909
|
-
isLoading: false;
|
|
910
|
-
isLoadingError: false;
|
|
911
|
-
isRefetchError: false;
|
|
912
|
-
isSuccess: true;
|
|
913
|
-
status: "success";
|
|
914
|
-
dataUpdatedAt: number;
|
|
915
|
-
errorUpdatedAt: number;
|
|
916
|
-
failureCount: number;
|
|
917
|
-
errorUpdateCount: number;
|
|
918
|
-
isFetched: boolean;
|
|
919
|
-
isFetchedAfterMount: boolean;
|
|
920
|
-
isFetching: boolean;
|
|
921
|
-
isPlaceholderData: boolean;
|
|
922
|
-
isPreviousData: boolean;
|
|
923
|
-
isRefetching: boolean;
|
|
924
|
-
isStale: boolean;
|
|
925
|
-
refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
|
|
926
|
-
remove: () => void;
|
|
927
|
-
getData: () => Promise<U | undefined>;
|
|
928
|
-
};
|
|
929
|
-
|
|
930
788
|
declare const useMutateProcess: () => {
|
|
931
789
|
retryAllProcesses: react_query.UseMutationResult<void, unknown, void, unknown>;
|
|
932
790
|
retryProcess: react_query.UseMutationResult<void, unknown, string, unknown>;
|
|
@@ -1018,7 +876,7 @@ declare const useWfoSession: <R extends boolean>(options?: UseSessionOptions<R>
|
|
|
1018
876
|
session: WfoSession | null;
|
|
1019
877
|
};
|
|
1020
878
|
|
|
1021
|
-
declare const useQueryWithFetch: <T, V extends Variables
|
|
879
|
+
declare const useQueryWithFetch: <T, V extends Variables>(url: string, queryVars: V, queryKey: string, options?: UseQueryOptions<T, unknown, T, [string, ...unknown[]]> | undefined) => react_query.UseQueryResult<T, unknown>;
|
|
1022
880
|
|
|
1023
881
|
declare enum SubscriptionDetailTab {
|
|
1024
882
|
GENERAL_TAB = "general",
|
|
@@ -1034,11 +892,37 @@ declare const getWorkflowTargetIconContent: (workflowTarget: WorkflowTarget) =>
|
|
|
1034
892
|
declare const getLastUncompletedProcess: (processes: SubscriptionDetailProcess[]) => SubscriptionDetailProcess | undefined;
|
|
1035
893
|
declare const getLatestTaskDate: (processes: SubscriptionDetailProcess[]) => string;
|
|
1036
894
|
|
|
895
|
+
interface SubscriptionKeyValueBlockProps {
|
|
896
|
+
title: string;
|
|
897
|
+
keyValues: WfoKeyValueTableDataType[];
|
|
898
|
+
}
|
|
899
|
+
declare const SubscriptionKeyValueBlock: ({ title, keyValues, }: SubscriptionKeyValueBlockProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
900
|
+
|
|
901
|
+
interface WfoInSyncFieldProps {
|
|
902
|
+
subscriptionDetail: SubscriptionDetail;
|
|
903
|
+
}
|
|
904
|
+
declare const WfoInSyncField: ({ subscriptionDetail }: WfoInSyncFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
905
|
+
|
|
1037
906
|
interface WfoProcessesTimelineProps {
|
|
1038
907
|
subscriptionDetailProcesses: SubscriptionDetailProcess[];
|
|
1039
908
|
}
|
|
1040
909
|
declare const WfoProcessesTimeline: ({ subscriptionDetailProcesses, }: WfoProcessesTimelineProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1041
910
|
|
|
911
|
+
interface WfoRelatedSubscriptionsProps {
|
|
912
|
+
subscriptionId: string;
|
|
913
|
+
}
|
|
914
|
+
declare const WfoRelatedSubscriptions: ({ subscriptionId, }: WfoRelatedSubscriptionsProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
915
|
+
|
|
916
|
+
declare type WfoSubscriptionProps = {
|
|
917
|
+
subscriptionId: string;
|
|
918
|
+
};
|
|
919
|
+
declare const WfoSubscription: ({ subscriptionId }: WfoSubscriptionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
920
|
+
|
|
921
|
+
declare type WfoSubscriptionActionsProps = {
|
|
922
|
+
subscriptionId: string;
|
|
923
|
+
};
|
|
924
|
+
declare const WfoSubscriptionActions: FC<WfoSubscriptionActionsProps>;
|
|
925
|
+
|
|
1042
926
|
interface WfoSubscriptionProductBlockProps {
|
|
1043
927
|
ownerSubscriptionId: string;
|
|
1044
928
|
subscriptionInstanceId: string;
|
|
@@ -1049,17 +933,6 @@ interface WfoSubscriptionProductBlockProps {
|
|
|
1049
933
|
declare const HIDDEN_KEYS: string[];
|
|
1050
934
|
declare const WfoSubscriptionProductBlock: ({ ownerSubscriptionId, subscriptionInstanceId, productBlockInstanceValues, inUseByRelations, }: WfoSubscriptionProductBlockProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1051
935
|
|
|
1052
|
-
declare type WfoSubscriptionActionsProps = {
|
|
1053
|
-
subscriptionId: string;
|
|
1054
|
-
};
|
|
1055
|
-
declare const WfoSubscriptionActions: FC<WfoSubscriptionActionsProps>;
|
|
1056
|
-
|
|
1057
|
-
interface SubscriptionKeyValueBlockProps {
|
|
1058
|
-
title: string;
|
|
1059
|
-
keyValues: WfoKeyValueTableDataType[];
|
|
1060
|
-
}
|
|
1061
|
-
declare const SubscriptionKeyValueBlock: ({ title, keyValues, }: SubscriptionKeyValueBlockProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1062
|
-
|
|
1063
936
|
interface WfoSubscriptionDetailTreeProps {
|
|
1064
937
|
productBlockInstances: ProductBlockInstance[];
|
|
1065
938
|
}
|
|
@@ -1070,16 +943,6 @@ interface WfoSubscriptionGeneralProps {
|
|
|
1070
943
|
}
|
|
1071
944
|
declare const WfoSubscriptionGeneral: ({ subscriptionDetail, }: WfoSubscriptionGeneralProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1072
945
|
|
|
1073
|
-
declare type WfoSubscriptionProps = {
|
|
1074
|
-
subscriptionId: string;
|
|
1075
|
-
};
|
|
1076
|
-
declare const WfoSubscription: ({ subscriptionId }: WfoSubscriptionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1077
|
-
|
|
1078
|
-
interface WfoInSyncFieldProps {
|
|
1079
|
-
subscriptionDetail: SubscriptionDetail;
|
|
1080
|
-
}
|
|
1081
|
-
declare const WfoInSyncField: ({ subscriptionDetail }: WfoInSyncFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1082
|
-
|
|
1083
946
|
declare type WfoEuiBasicTableColumn<T extends object> = Omit<EuiBasicTableColumn<T>, 'render'>;
|
|
1084
947
|
declare type WfoTableDataColumnConfig<T extends object, Property> = WfoEuiBasicTableColumn<T> & {
|
|
1085
948
|
field: Property;
|
|
@@ -1483,6 +1346,10 @@ declare type FieldProps<Value, Extra = object, InputElementType = HTMLInputEleme
|
|
|
1483
1346
|
inputRef?: Ref<InputElementType>;
|
|
1484
1347
|
description?: string;
|
|
1485
1348
|
} & Extra>;
|
|
1349
|
+
interface ContactPerson {
|
|
1350
|
+
name: string;
|
|
1351
|
+
email: string;
|
|
1352
|
+
}
|
|
1486
1353
|
|
|
1487
1354
|
declare type AcceptItemType = 'info' | 'label' | 'warning' | 'url' | 'checkbox' | '>checkbox' | 'checkbox?' | '>checkbox?' | 'skip' | 'margin' | 'value';
|
|
1488
1355
|
declare type AcceptItem = [string, AcceptItemType, Record<string, string>?];
|
|
@@ -1594,17 +1461,28 @@ declare type DateFieldProps = FieldProps<Date, {
|
|
|
1594
1461
|
}>;
|
|
1595
1462
|
declare const DateField: uniforms.ConnectedField<DateFieldProps, Date | undefined>;
|
|
1596
1463
|
|
|
1597
|
-
declare
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1464
|
+
declare type LocationCodeFieldProps = {
|
|
1465
|
+
locationCodes?: string[];
|
|
1466
|
+
} & Omit<SelectFieldProps, 'placeholder' | 'allowedValues'>;
|
|
1467
|
+
declare module 'uniforms' {
|
|
1468
|
+
interface FilterDOMProps {
|
|
1469
|
+
locationCodes: never;
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
declare const LocationCodeField: uniforms.ConnectedField<LocationCodeFieldProps, string | string[] | undefined>;
|
|
1473
|
+
|
|
1474
|
+
interface ContactPersonAutocompleteProps {
|
|
1475
|
+
query: string;
|
|
1476
|
+
selectedItem: number;
|
|
1477
|
+
personIndex: number;
|
|
1478
|
+
itemSelected: (value: ContactPerson, index: number) => void;
|
|
1479
|
+
suggestions: ContactPerson[];
|
|
1480
|
+
}
|
|
1481
|
+
declare const ContactPersonAutocomplete: ({ query, selectedItem, personIndex, itemSelected, suggestions, }: ContactPersonAutocompleteProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
1482
|
+
|
|
1483
|
+
declare const getStyles: (theme: EuiThemeComputed$1) => {
|
|
1484
|
+
contactPersonAutocompleteStyling: _emotion_utils.SerializedStyles;
|
|
1485
|
+
};
|
|
1608
1486
|
|
|
1609
1487
|
declare function stop(e: React__default.SyntheticEvent): void;
|
|
1610
1488
|
declare type ContactPersonNameFieldProps = FieldProps<string, {
|
|
@@ -1653,15 +1531,28 @@ declare module 'uniforms' {
|
|
|
1653
1531
|
}
|
|
1654
1532
|
declare const ImsPortIdField: uniforms.ConnectedField<ImsPortFieldProps, number | undefined>;
|
|
1655
1533
|
|
|
1656
|
-
declare
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1534
|
+
declare const imsPortIdFieldStyling: _emotion_utils.SerializedStyles;
|
|
1535
|
+
|
|
1536
|
+
declare type IPvAnyNetworkFieldProps = FieldProps<string, {
|
|
1537
|
+
prefixMin?: number;
|
|
1538
|
+
}>;
|
|
1539
|
+
declare const IpNetworkField: uniforms.ConnectedField<IPvAnyNetworkFieldProps, string | undefined>;
|
|
1540
|
+
|
|
1541
|
+
declare const ipPrefixTableFieldStyling: _emotion_utils.SerializedStyles;
|
|
1542
|
+
|
|
1543
|
+
declare const splitPrefixStyling: _emotion_utils.SerializedStyles;
|
|
1544
|
+
|
|
1545
|
+
declare function utcTimestampToLocalMoment(utc_timestamp: number): moment.Moment;
|
|
1546
|
+
declare function localMomentToUtcTimestamp(local_moment: Moment): number;
|
|
1547
|
+
declare type TimestampFieldProps = FieldProps<number, {
|
|
1548
|
+
max?: number;
|
|
1549
|
+
min?: number;
|
|
1550
|
+
showTimeSelect: boolean;
|
|
1551
|
+
locale?: string;
|
|
1552
|
+
dateFormat?: string;
|
|
1553
|
+
timeFormat?: string;
|
|
1554
|
+
}>;
|
|
1555
|
+
declare const TimestampField: uniforms.ConnectedField<TimestampFieldProps, number | undefined>;
|
|
1665
1556
|
|
|
1666
1557
|
declare type VlanFieldProps = FieldProps<string, {
|
|
1667
1558
|
subscriptionFieldName?: string;
|
|
@@ -1669,6 +1560,8 @@ declare type VlanFieldProps = FieldProps<string, {
|
|
|
1669
1560
|
}>;
|
|
1670
1561
|
declare const VlanField: uniforms.ConnectedField<VlanFieldProps, string | undefined>;
|
|
1671
1562
|
|
|
1563
|
+
declare const ipamStates: (string | null)[];
|
|
1564
|
+
|
|
1672
1565
|
declare type NestFieldProps = FieldProps<null, {
|
|
1673
1566
|
fields?: unknown[];
|
|
1674
1567
|
itemProps?: object;
|
|
@@ -1713,11 +1606,6 @@ declare type SubscriptionFieldProps = FieldProps<string, {
|
|
|
1713
1606
|
}>;
|
|
1714
1607
|
declare const SubscriptionField: uniforms.ConnectedField<SubscriptionFieldProps, string | undefined>;
|
|
1715
1608
|
|
|
1716
|
-
declare type IPvAnyNetworkFieldProps = FieldProps<string, {
|
|
1717
|
-
prefixMin?: number;
|
|
1718
|
-
}>;
|
|
1719
|
-
declare const IpNetworkField: uniforms.ConnectedField<IPvAnyNetworkFieldProps, string | undefined>;
|
|
1720
|
-
|
|
1721
1609
|
declare type SummaryFieldProps = FieldProps$2<null, {
|
|
1722
1610
|
description?: string;
|
|
1723
1611
|
data?: {
|
|
@@ -1748,8 +1636,6 @@ interface IProps {
|
|
|
1748
1636
|
}
|
|
1749
1637
|
declare function CreateForm(props: IProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
1750
1638
|
|
|
1751
|
-
declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
1752
|
-
|
|
1753
1639
|
declare type WfoDateTimeProps = {
|
|
1754
1640
|
dateOrIsoString: Date | string | null;
|
|
1755
1641
|
};
|
|
@@ -1799,7 +1685,7 @@ interface WfoDropdownButtonProps {
|
|
|
1799
1685
|
isDisabled?: boolean;
|
|
1800
1686
|
children: ReactNode;
|
|
1801
1687
|
}
|
|
1802
|
-
declare const WfoDropdownButton: ({ label, children, }: WfoDropdownButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1688
|
+
declare const WfoDropdownButton: ({ label, isDisabled, children, }: WfoDropdownButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1803
1689
|
|
|
1804
1690
|
declare type ProcessListItem = Pick<Process, 'workflowName' | 'lastStep' | 'lastStatus' | 'workflowTarget' | 'createdBy' | 'assignee' | 'processId' | 'subscriptions'> & {
|
|
1805
1691
|
startedAt: Date;
|
|
@@ -1838,6 +1724,8 @@ declare const WfoModifySettings: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
|
1838
1724
|
|
|
1839
1725
|
declare const WfoStatus: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
1840
1726
|
|
|
1727
|
+
declare const WfoResetTextSearchIndexButton: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
1728
|
+
|
|
1841
1729
|
interface WfoInsyncIconProps {
|
|
1842
1730
|
inSync: boolean;
|
|
1843
1731
|
}
|
|
@@ -1928,33 +1816,18 @@ declare const WfoStepStatusIcon: ({ stepStatus, isStartStep, }: WfoStepStatusIco
|
|
|
1928
1816
|
declare const STEP_STATE_HIDDEN_KEYS: string[];
|
|
1929
1817
|
declare const getStepContent: (stepDelta: StepState, showHiddenKeys: boolean) => StepState;
|
|
1930
1818
|
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
declare const
|
|
1936
|
-
declare const getSubscriptionsListSummaryGraphQlQuery: <QueryVariablesType = Subscription>() => TypedDocumentNode<SubscriptionsResult<Pick<Subscription, "description" | "subscriptionId" | "startDate">>, GraphqlQueryVariables<QueryVariablesType>>;
|
|
1937
|
-
|
|
1938
|
-
declare const GET_PRODUCTS_BLOCKS_GRAPHQL_QUERY: TypedDocumentNode<ProductBlockDefinitionsResult, GraphqlQueryVariables<ProductBlockDefinition>>;
|
|
1939
|
-
|
|
1940
|
-
declare const GET_PRODUCTS_GRAPHQL_QUERY: graphql.DocumentNode;
|
|
1941
|
-
declare const GET_PRODUCTS_SUMMARY_GRAPHQL_QUERY: graphql.DocumentNode;
|
|
1942
|
-
declare const getProductsSummaryQuery: () => TypedDocumentNode<ProductDefinitionsResult<Pick<ProductDefinition, 'name'> & SubscriptionsResult<never>>, GraphqlQueryVariables<ProductDefinition>>;
|
|
1943
|
-
declare const getProductsQuery: () => TypedDocumentNode<ProductDefinitionsResult, GraphqlQueryVariables<ProductDefinition>>;
|
|
1944
|
-
|
|
1945
|
-
declare const GET_RESOURCE_TYPES_GRAPHQL_QUERY: TypedDocumentNode<ResourceTypeDefinitionsResult, GraphqlQueryVariables<ResourceTypeDefinition>>;
|
|
1819
|
+
interface WfoNoResultsProps {
|
|
1820
|
+
text: string;
|
|
1821
|
+
icon: ReactNode;
|
|
1822
|
+
}
|
|
1823
|
+
declare const WfoNoResults: ({ text, icon }: WfoNoResultsProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1946
1824
|
|
|
1947
|
-
declare const
|
|
1948
|
-
subscriptionId: string;
|
|
1949
|
-
}>;
|
|
1825
|
+
declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
1950
1826
|
|
|
1951
|
-
declare const
|
|
1952
|
-
declare function getSubscriptionDropdownOptionsGraphQlQuery<QueryVariablesType = SubscriptionDropdownOption>(): TypedDocumentNode<SubscriptionDropdownOptionsResult, GraphqlQueryVariables<QueryVariablesType>>;
|
|
1827
|
+
declare const WfoStartWorkflowButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
1953
1828
|
|
|
1954
|
-
declare const
|
|
1955
|
-
declare const
|
|
1956
|
-
declare const getProcessListGraphQlQuery: () => TypedDocumentNode<ProcessListResult, GraphqlQueryVariables<Process>>;
|
|
1957
|
-
declare const getProcessListSummaryGraphQlQuery: () => TypedDocumentNode<ProcessListResult<Pick<Process, 'processId' | 'workflowName' | 'startedAt'>>, GraphqlQueryVariables<Process>>;
|
|
1829
|
+
declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
|
|
1830
|
+
declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
|
|
1958
1831
|
|
|
1959
1832
|
declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
|
|
1960
1833
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
@@ -2373,6 +2246,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
2373
2246
|
runningProcesses: string;
|
|
2374
2247
|
selectSettings: string;
|
|
2375
2248
|
startEngine: string;
|
|
2249
|
+
resetTextSearchIndex: string;
|
|
2250
|
+
resetTextSearchIndexButton: string;
|
|
2376
2251
|
};
|
|
2377
2252
|
};
|
|
2378
2253
|
startPage: {
|
|
@@ -2816,6 +2691,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
|
2816
2691
|
runningProcesses: string;
|
|
2817
2692
|
selectSettings: string;
|
|
2818
2693
|
startEngine: string;
|
|
2694
|
+
resetTextSearchIndex: string;
|
|
2695
|
+
resetTextSearchIndexButton: string;
|
|
2819
2696
|
};
|
|
2820
2697
|
};
|
|
2821
2698
|
startPage: {
|
|
@@ -2917,7 +2794,10 @@ declare enum BaseQueryTypes {
|
|
|
2917
2794
|
}
|
|
2918
2795
|
declare enum CacheTags {
|
|
2919
2796
|
engineStatus = "engineStatus",
|
|
2920
|
-
|
|
2797
|
+
processList = "processList",
|
|
2798
|
+
processListSummary = "processListSummary",
|
|
2799
|
+
subscription = "subscription",
|
|
2800
|
+
subscriptionList = "subscriptionList"
|
|
2921
2801
|
}
|
|
2922
2802
|
declare type ExtraOptions = {
|
|
2923
2803
|
baseQueryType?: BaseQueryTypes;
|
|
@@ -2955,6 +2835,134 @@ declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks
|
|
|
2955
2835
|
meta?: {} | undefined;
|
|
2956
2836
|
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, Customer[], "orchestratorApi">>;
|
|
2957
2837
|
|
|
2838
|
+
declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2839
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2840
|
+
apiName?: string | undefined;
|
|
2841
|
+
}) => {
|
|
2842
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2843
|
+
data?: undefined;
|
|
2844
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2845
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2846
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2847
|
+
data?: undefined;
|
|
2848
|
+
meta?: {} | undefined;
|
|
2849
|
+
} | {
|
|
2850
|
+
error?: undefined;
|
|
2851
|
+
data: unknown;
|
|
2852
|
+
meta?: {} | undefined;
|
|
2853
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
|
|
2854
|
+
|
|
2855
|
+
declare const productBlocksQuery = "\n query MetadataProductBlocks(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n ) {\n productBlocks(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n resourceTypes {\n description\n resourceType\n resourceTypeId\n }\n dependsOn {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n";
|
|
2856
|
+
declare type ProductBlocksResponse = {
|
|
2857
|
+
productBlocks: ProductBlockDefinition[];
|
|
2858
|
+
} & BaseGraphQlResult;
|
|
2859
|
+
declare const useGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2860
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2861
|
+
apiName?: string | undefined;
|
|
2862
|
+
}) => {
|
|
2863
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2864
|
+
data?: undefined;
|
|
2865
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2866
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2867
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2868
|
+
data?: undefined;
|
|
2869
|
+
meta?: {} | undefined;
|
|
2870
|
+
} | {
|
|
2871
|
+
error?: undefined;
|
|
2872
|
+
data: unknown;
|
|
2873
|
+
meta?: {} | undefined;
|
|
2874
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
|
|
2875
|
+
declare const useLazyGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2876
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2877
|
+
apiName?: string | undefined;
|
|
2878
|
+
}) => {
|
|
2879
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2880
|
+
data?: undefined;
|
|
2881
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2882
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2883
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2884
|
+
data?: undefined;
|
|
2885
|
+
meta?: {} | undefined;
|
|
2886
|
+
} | {
|
|
2887
|
+
error?: undefined;
|
|
2888
|
+
data: unknown;
|
|
2889
|
+
meta?: {} | undefined;
|
|
2890
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
|
|
2891
|
+
|
|
2892
|
+
declare const resourceTypesQuery = "\nquery MetadataResourceTypes(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n resourceTypes(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n resourceTypeId\n resourceType\n description\n productBlocks {\n description\n name\n productBlockId\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
|
|
2893
|
+
declare type ResourceTypesResponse = {
|
|
2894
|
+
resourceTypes: ResourceTypeDefinition[];
|
|
2895
|
+
} & BaseGraphQlResult;
|
|
2896
|
+
declare const useGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2897
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2898
|
+
apiName?: string | undefined;
|
|
2899
|
+
}) => {
|
|
2900
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2901
|
+
data?: undefined;
|
|
2902
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2903
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2904
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2905
|
+
data?: undefined;
|
|
2906
|
+
meta?: {} | undefined;
|
|
2907
|
+
} | {
|
|
2908
|
+
error?: undefined;
|
|
2909
|
+
data: unknown;
|
|
2910
|
+
meta?: {} | undefined;
|
|
2911
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
|
|
2912
|
+
declare const useLazyGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2913
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2914
|
+
apiName?: string | undefined;
|
|
2915
|
+
}) => {
|
|
2916
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2917
|
+
data?: undefined;
|
|
2918
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2919
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2920
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2921
|
+
data?: undefined;
|
|
2922
|
+
meta?: {} | undefined;
|
|
2923
|
+
} | {
|
|
2924
|
+
error?: undefined;
|
|
2925
|
+
data: unknown;
|
|
2926
|
+
meta?: {} | undefined;
|
|
2927
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
|
|
2928
|
+
|
|
2929
|
+
declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
|
|
2930
|
+
declare type WorkflowsResponse = {
|
|
2931
|
+
workflows: WorkflowDefinition[];
|
|
2932
|
+
} & BaseGraphQlResult;
|
|
2933
|
+
declare const useGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2934
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2935
|
+
apiName?: string | undefined;
|
|
2936
|
+
}) => {
|
|
2937
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2938
|
+
data?: undefined;
|
|
2939
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2940
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2941
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2942
|
+
data?: undefined;
|
|
2943
|
+
meta?: {} | undefined;
|
|
2944
|
+
} | {
|
|
2945
|
+
error?: undefined;
|
|
2946
|
+
data: unknown;
|
|
2947
|
+
meta?: {} | undefined;
|
|
2948
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
|
|
2949
|
+
declare const useLazyGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2950
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2951
|
+
apiName?: string | undefined;
|
|
2952
|
+
}) => {
|
|
2953
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2954
|
+
data?: undefined;
|
|
2955
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2956
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2957
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2958
|
+
data?: undefined;
|
|
2959
|
+
meta?: {} | undefined;
|
|
2960
|
+
} | {
|
|
2961
|
+
error?: undefined;
|
|
2962
|
+
data: unknown;
|
|
2963
|
+
meta?: {} | undefined;
|
|
2964
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
|
|
2965
|
+
|
|
2958
2966
|
declare const processListQuery = "\n query ProcessList(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n processes(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n workflowName\n lastStep\n lastStatus\n workflowTarget\n product {\n name\n tag\n }\n customer {\n fullname\n shortcode\n }\n createdBy\n assignee\n processId\n startedAt\n lastModifiedAt\n isTask\n subscriptions {\n page {\n subscriptionId\n description\n }\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n endCursor\n sortFields\n filterFields\n }\n }\n }\n";
|
|
2959
2967
|
declare type ProcessListResponse = {
|
|
2960
2968
|
processes: Process[];
|
|
@@ -2975,6 +2983,144 @@ declare const useGetProcessListQuery: _reduxjs_toolkit_dist_query_react_buildHoo
|
|
|
2975
2983
|
data: unknown;
|
|
2976
2984
|
meta?: {} | undefined;
|
|
2977
2985
|
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProcessListResponse, "orchestratorApi">>;
|
|
2986
|
+
declare const useLazyGetProcessListQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<Process>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2987
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2988
|
+
apiName?: string | undefined;
|
|
2989
|
+
}) => {
|
|
2990
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2991
|
+
data?: undefined;
|
|
2992
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2993
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2994
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2995
|
+
data?: undefined;
|
|
2996
|
+
meta?: {} | undefined;
|
|
2997
|
+
} | {
|
|
2998
|
+
error?: undefined;
|
|
2999
|
+
data: unknown;
|
|
3000
|
+
meta?: {} | undefined;
|
|
3001
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProcessListResponse, "orchestratorApi">>;
|
|
3002
|
+
|
|
3003
|
+
declare const processListSummaryQuery = "\n query ProcessListSummary(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n processes(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n processId\n workflowName\n startedAt\n }\n pageInfo {\n totalItems\n startCursor\n endCursor\n }\n }\n }\n";
|
|
3004
|
+
declare type ProcessSummary = Pick<Process, 'processId' | 'workflowName' | 'startedAt'>;
|
|
3005
|
+
declare type ProcessListSummaryResponse = {
|
|
3006
|
+
processes: ProcessSummary[];
|
|
3007
|
+
} & BaseGraphQlResult;
|
|
3008
|
+
declare const useGetProcessListSummaryQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<Process>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3009
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3010
|
+
apiName?: string | undefined;
|
|
3011
|
+
}) => {
|
|
3012
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3013
|
+
data?: undefined;
|
|
3014
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3015
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3016
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3017
|
+
data?: undefined;
|
|
3018
|
+
meta?: {} | undefined;
|
|
3019
|
+
} | {
|
|
3020
|
+
error?: undefined;
|
|
3021
|
+
data: unknown;
|
|
3022
|
+
meta?: {} | undefined;
|
|
3023
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProcessListSummaryResponse, "orchestratorApi">>;
|
|
3024
|
+
|
|
3025
|
+
declare const processStepsQuery = "\n query ProcessSteps($processName: String!) {\n workflows(filterBy: { field: \"name\", value: $processName }) {\n page {\n steps {\n name\n assignee\n }\n }\n }\n }\n";
|
|
3026
|
+
declare const useGetTimeLineItemsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3027
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3028
|
+
apiName?: string | undefined;
|
|
3029
|
+
}) => {
|
|
3030
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3031
|
+
data?: undefined;
|
|
3032
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3033
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3034
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3035
|
+
data?: undefined;
|
|
3036
|
+
meta?: {} | undefined;
|
|
3037
|
+
} | {
|
|
3038
|
+
error?: undefined;
|
|
3039
|
+
data: unknown;
|
|
3040
|
+
meta?: {} | undefined;
|
|
3041
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, TimelineItem[], "orchestratorApi">>;
|
|
3042
|
+
|
|
3043
|
+
declare const products = "\n query MetadataProducts(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n ) {\n products(first: $first, after: $after, sortBy: $sortBy, query: $query) {\n page {\n productId\n name\n description\n tag\n createdAt\n productType\n status\n productBlocks {\n name\n }\n fixedInputs {\n name\n value\n }\n endDate\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n";
|
|
3044
|
+
declare type ProductsResponse = {
|
|
3045
|
+
products: ProductDefinition[];
|
|
3046
|
+
} & BaseGraphQlResult;
|
|
3047
|
+
declare const useGetProductsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3048
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3049
|
+
apiName?: string | undefined;
|
|
3050
|
+
}) => {
|
|
3051
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3052
|
+
data?: undefined;
|
|
3053
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3054
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3055
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3056
|
+
data?: undefined;
|
|
3057
|
+
meta?: {} | undefined;
|
|
3058
|
+
} | {
|
|
3059
|
+
error?: undefined;
|
|
3060
|
+
data: unknown;
|
|
3061
|
+
meta?: {} | undefined;
|
|
3062
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductsResponse, "orchestratorApi">>;
|
|
3063
|
+
declare const useLazyGetProductsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3064
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3065
|
+
apiName?: string | undefined;
|
|
3066
|
+
}) => {
|
|
3067
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3068
|
+
data?: undefined;
|
|
3069
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3070
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3071
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3072
|
+
data?: undefined;
|
|
3073
|
+
meta?: {} | undefined;
|
|
3074
|
+
} | {
|
|
3075
|
+
error?: undefined;
|
|
3076
|
+
data: unknown;
|
|
3077
|
+
meta?: {} | undefined;
|
|
3078
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductsResponse, "orchestratorApi">>;
|
|
3079
|
+
|
|
3080
|
+
declare const productsSummary = "\n query MetadataProducts(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n ) {\n products(first: $first, after: $after, sortBy: $sortBy) {\n page {\n name\n subscriptions {\n pageInfo {\n totalItems\n }\n }\n }\n pageInfo {\n totalItems\n startCursor\n endCursor\n }\n }\n }\n";
|
|
3081
|
+
declare type ProductsSummaryResponse = {
|
|
3082
|
+
products: ProductsSummary[];
|
|
3083
|
+
} & BaseGraphQlResult;
|
|
3084
|
+
declare const useGetProductsSummaryQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductsSummary>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3085
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3086
|
+
apiName?: string | undefined;
|
|
3087
|
+
}) => {
|
|
3088
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3089
|
+
data?: undefined;
|
|
3090
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3091
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3092
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3093
|
+
data?: undefined;
|
|
3094
|
+
meta?: {} | undefined;
|
|
3095
|
+
} | {
|
|
3096
|
+
error?: undefined;
|
|
3097
|
+
data: unknown;
|
|
3098
|
+
meta?: {} | undefined;
|
|
3099
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductsSummaryResponse, "orchestratorApi">>;
|
|
3100
|
+
|
|
3101
|
+
declare const RelatedSubscriptionsQuery = "\nquery RelatedSubscriptions(\n $subscriptionId: String!\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $terminatedSubscriptionFilter: [GraphqlFilter!]\n) {\n subscriptions(\n filterBy: { value: $subscriptionId, field: \"subscriptionId\" }\n ) {\n page {\n subscriptionId\n inUseBySubscriptions(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $terminatedSubscriptionFilter\n ) {\n page {\n subscriptionId\n customer {\n fullname\n }\n description\n insync\n startDate\n status\n product {\n tag\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n }\n}\n";
|
|
3102
|
+
declare type RelatedSubscriptionsResponse = {
|
|
3103
|
+
relatedSubscriptions: RelatedSubscription[];
|
|
3104
|
+
} & BaseGraphQlResult;
|
|
3105
|
+
declare type RelatedSubscriptionVariables = GraphqlQueryVariables<RelatedSubscription> & Pick<Subscription, 'subscriptionId'> & {
|
|
3106
|
+
terminatedSubscriptionFilter?: GraphqlFilter<RelatedSubscription>;
|
|
3107
|
+
};
|
|
3108
|
+
declare const useGetRelatedSubscriptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<RelatedSubscriptionVariables, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3109
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3110
|
+
apiName?: string | undefined;
|
|
3111
|
+
}) => {
|
|
3112
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3113
|
+
data?: undefined;
|
|
3114
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3115
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3116
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3117
|
+
data?: undefined;
|
|
3118
|
+
meta?: {} | undefined;
|
|
3119
|
+
} | {
|
|
3120
|
+
error?: undefined;
|
|
3121
|
+
data: unknown;
|
|
3122
|
+
meta?: {} | undefined;
|
|
3123
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, RelatedSubscriptionsResponse, "orchestratorApi">>;
|
|
2978
3124
|
|
|
2979
3125
|
interface EngineStatusReturnValue {
|
|
2980
3126
|
engineStatus: EngineStatus;
|
|
@@ -3012,6 +3158,22 @@ declare const useClearCacheMutation: _reduxjs_toolkit_dist_query_react_buildHook
|
|
|
3012
3158
|
data: unknown;
|
|
3013
3159
|
meta?: {} | undefined;
|
|
3014
3160
|
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
|
|
3161
|
+
declare const useResetTextSearchIndexMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<null, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3162
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3163
|
+
apiName?: string | undefined;
|
|
3164
|
+
}) => {
|
|
3165
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3166
|
+
data?: undefined;
|
|
3167
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3168
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3169
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3170
|
+
data?: undefined;
|
|
3171
|
+
meta?: {} | undefined;
|
|
3172
|
+
} | {
|
|
3173
|
+
error?: undefined;
|
|
3174
|
+
data: unknown;
|
|
3175
|
+
meta?: {} | undefined;
|
|
3176
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
|
|
3015
3177
|
declare const useSetEngineStatusMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<boolean, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3016
3178
|
baseQueryType?: BaseQueryTypes | undefined;
|
|
3017
3179
|
apiName?: string | undefined;
|
|
@@ -3046,7 +3208,13 @@ declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHoo
|
|
|
3046
3208
|
meta?: {} | undefined;
|
|
3047
3209
|
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
|
|
3048
3210
|
|
|
3049
|
-
declare const
|
|
3211
|
+
declare const subscriptionDetailQuery = "\n query SubscriptionDetail($subscriptionId: String!) {\n subscriptions(\n filterBy: { value: $subscriptionId, field: \"subscriptionId\" }\n ) {\n page {\n subscriptionId\n description\n fixedInputs\n insync\n note\n product {\n createdAt\n name\n status\n endDate\n description\n tag\n productType\n productId\n }\n endDate\n startDate\n status\n customerId\n customer {\n fullname\n customerId\n shortcode\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n processes(sortBy: { field: \"startedAt\", order: ASC }) {\n page {\n processId\n lastStatus\n startedAt\n createdBy\n workflowTarget\n workflowName\n isTask\n }\n }\n }\n }\n }\n";
|
|
3212
|
+
declare type SubscriptionDetailResponse = {
|
|
3213
|
+
subscription: SubscriptionDetail;
|
|
3214
|
+
} & BaseGraphQlResult;
|
|
3215
|
+
declare const useGetSubscriptionDetailQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3216
|
+
subscriptionId: string;
|
|
3217
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3050
3218
|
baseQueryType?: BaseQueryTypes | undefined;
|
|
3051
3219
|
apiName?: string | undefined;
|
|
3052
3220
|
}) => {
|
|
@@ -3061,10 +3229,13 @@ declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_reac
|
|
|
3061
3229
|
error?: undefined;
|
|
3062
3230
|
data: unknown;
|
|
3063
3231
|
meta?: {} | undefined;
|
|
3064
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags,
|
|
3232
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDetailResponse, "orchestratorApi">>;
|
|
3065
3233
|
|
|
3066
|
-
declare const
|
|
3067
|
-
declare
|
|
3234
|
+
declare const subscriptionsDropdownOptionsQuery = "\n query SubscriptionDropdownOptions(\n $filterBy: [GraphqlFilter!]\n $first: Int!\n ) {\n subscriptions(filterBy: $filterBy, first: $first, after: 0) {\n page {\n description\n subscriptionId\n product {\n tag\n productId\n }\n customer {\n fullname\n customerId\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n fixedInputs\n }\n }\n }\n";
|
|
3235
|
+
declare type SubscriptionDropdownOptionsResponse = {
|
|
3236
|
+
subscriptionDropdownOptions: SubscriptionDropdownOption[];
|
|
3237
|
+
};
|
|
3238
|
+
declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<SubscriptionDropdownOption>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3068
3239
|
baseQueryType?: BaseQueryTypes | undefined;
|
|
3069
3240
|
apiName?: string | undefined;
|
|
3070
3241
|
}) => {
|
|
@@ -3079,7 +3250,49 @@ declare const useGetTimeLineItemsQuery: _reduxjs_toolkit_dist_query_react_buildH
|
|
|
3079
3250
|
error?: undefined;
|
|
3080
3251
|
data: unknown;
|
|
3081
3252
|
meta?: {} | undefined;
|
|
3082
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags,
|
|
3253
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
|
|
3254
|
+
|
|
3255
|
+
declare type WorkflowOption = {
|
|
3256
|
+
workflowName: WorkflowDefinition['name'];
|
|
3257
|
+
productName: ProductDefinition['name'];
|
|
3258
|
+
productId: ProductDefinition['productId'];
|
|
3259
|
+
};
|
|
3260
|
+
declare type StartOptionsResponse<StartOption> = {
|
|
3261
|
+
startOptions: StartOption[];
|
|
3262
|
+
};
|
|
3263
|
+
declare type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
|
|
3264
|
+
declare const useGetWorkflowOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3265
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3266
|
+
apiName?: string | undefined;
|
|
3267
|
+
}) => {
|
|
3268
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3269
|
+
data?: undefined;
|
|
3270
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3271
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3272
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3273
|
+
data?: undefined;
|
|
3274
|
+
meta?: {} | undefined;
|
|
3275
|
+
} | {
|
|
3276
|
+
error?: undefined;
|
|
3277
|
+
data: unknown;
|
|
3278
|
+
meta?: {} | undefined;
|
|
3279
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
|
|
3280
|
+
declare const useGetTaskOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3281
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
3282
|
+
apiName?: string | undefined;
|
|
3283
|
+
}) => {
|
|
3284
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3285
|
+
data?: undefined;
|
|
3286
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3287
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3288
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3289
|
+
data?: undefined;
|
|
3290
|
+
meta?: {} | undefined;
|
|
3291
|
+
} | {
|
|
3292
|
+
error?: undefined;
|
|
3293
|
+
data: unknown;
|
|
3294
|
+
meta?: {} | undefined;
|
|
3295
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
|
|
3083
3296
|
|
|
3084
3297
|
declare type ToastState = {
|
|
3085
3298
|
messages: Toast[];
|
|
@@ -3121,6 +3334,10 @@ declare const StoreProvider: ({ initialOrchestratorConfig, customApis, children,
|
|
|
3121
3334
|
|
|
3122
3335
|
declare const defaultOrchestratorTheme: EuiThemeModifications;
|
|
3123
3336
|
|
|
3337
|
+
declare function initiateCsvFileDownload<T extends object>(data: T[], fileName: string): void;
|
|
3338
|
+
declare const getCsvFileNameWithDate: (fileNameWithoutExtension: string) => string;
|
|
3339
|
+
declare const csvDownloadHandler: <T extends object, U extends object>(dataFetchFunction: () => Promise<T | undefined>, dataMapper: (data: T) => U[], pageInfoMapper: (data: T) => GraphQLPageInfo, keyOrder: string[], filename: string, addToastFunction: (type: ToastTypes, text: string, title: string) => void, translationFunction: (translationKey: string, variables?: TranslationValues | undefined) => string) => () => Promise<void>;
|
|
3340
|
+
|
|
3124
3341
|
declare const getCurrentBrowserLocale: () => string;
|
|
3125
3342
|
declare const parseDate: (date: string | null | undefined) => Date | null;
|
|
3126
3343
|
declare const calculateTimeDifference: (from: string, to: string) => string;
|
|
@@ -3162,4 +3379,4 @@ declare const getQueryVariablesForExport: <T extends object>(queryVariables: Gra
|
|
|
3162
3379
|
|
|
3163
3380
|
declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
|
|
3164
3381
|
|
|
3165
|
-
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AppDispatch, type AutoFieldsProps, BadgeType, BaseApiClient, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, CacheTags, ColorModes, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, CustomerField, type CustomerFieldProps, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type Field, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, GET_PROCESS_LIST_GRAPHQL_QUERY, GET_PROCESS_LIST_SUMMARY_GRAPHQL_QUERY, GET_PRODUCTS_BLOCKS_GRAPHQL_QUERY, GET_PRODUCTS_GRAPHQL_QUERY, GET_PRODUCTS_SUMMARY_GRAPHQL_QUERY, GET_RESOURCE_TYPES_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_SUMMARY_GRAPHQL_QUERY, GET_SUBSCRIPTION_DETAIL_GRAPHQL_QUERY, GET_SUBSCRIPTION_DROPDOWN_OPTIONS_GRAPHQL_QUERY, type GraphQLPageInfo, type GraphQLSort, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InputForm, IpNetworkField, type KeyValue, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, NestField, type NestFieldProps, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListItem, type ProcessListResponse, type ProcessListResult, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type RootState, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, type SelectFieldProps, type ShowConfirmDialog, type ShowConfirmDialogType, SortOrder, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, SubscriptionStatus, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoEuiBasicTableColumn, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoRefresh, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStatistic, WfoStatus, 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, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsListPage, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, WfoToastsList, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, defaultOrchestratorTheme, defaultTasksListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberValueFromEnvironmentVariable, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProcessListGraphQlQuery, getProcessListSummaryGraphQlQuery, getProductBlockTitle, getProductNamesFromProcess, getProductsQuery, getProductsSummaryQuery, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDropdownOptionsGraphQlQuery, getSubscriptionsListGraphQlQuery, getSubscriptionsListSummaryGraphQlQuery, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapSortableAndFilterableValuesToTableColumnConfig, onlyUnique, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processStepsQuery, removeSuffix, removeToastMessage, renderEmptyElementWhenNotAllowedByPolicy, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, stop, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useQueryWithGraphql, useQueryWithGraphqlLazy, useRawProcessDetails, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment };
|
|
3382
|
+
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AppDispatch, type AutoFieldsProps, BadgeType, BaseApiClient, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, CacheTags, ColorModes, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, CustomerField, type CustomerFieldProps, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type Field, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type GraphQLPageInfo, type GraphQLSort, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, type KeyValue, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscription, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, type SelectFieldProps, type ServicePort, type ShowConfirmDialog, type ShowConfirmDialogType, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoEuiBasicTableColumn, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoRefresh, WfoRelatedSubscriptions, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatus, 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, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsListPage, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, WfoToastsList, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberValueFromEnvironmentVariable, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapSortableAndFilterableValuesToTableColumnConfig, onlyUnique, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, renderEmptyElementWhenNotAllowedByPolicy, resourceTypesQuery, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, splitPrefixStyling, stop, subscriptionDetailQuery, subscriptionsDropdownOptionsQuery, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetWorkflowsQuery, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useRawProcessDetails, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, workflowsQuery };
|