@orchestrator-ui/orchestrator-ui-components 1.6.0 → 1.6.1
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 +4 -4
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +12 -11
- package/CHANGELOG.md +7 -0
- package/dist/index.d.ts +1205 -1139
- package/dist/index.js +92 -12
- package/package.json +1 -1
- package/src/components/WfoProcessList/WfoProcessesList.tsx +5 -1
- package/src/components/WfoProcessList/processListObjectMappers.ts +7 -4
- package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +10 -6
- package/src/components/index.ts +1 -0
- package/src/messages/en-GB.json +1 -0
- package/src/pages/metadata/WfoMetadataPageLayout.tsx +4 -4
- package/src/pages/metadata/WfoProductBlocksPage.tsx +25 -1
- package/src/pages/metadata/WfoProductsPage.tsx +27 -1
- package/src/pages/metadata/WfoResourceTypesPage.tsx +23 -4
- package/src/pages/metadata/WfoWorkflowsPage.tsx +24 -2
- package/src/pages/metadata/index.ts +2 -0
- package/src/pages/subscriptions/WfoSubscriptionDetailPage.tsx +2 -2
- package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +1 -1
- package/src/pages/workflows/index.ts +2 -0
- package/src/types/types.ts +2 -2
- package/src/utils/index.ts +1 -0
- package/src/utils/resultFlattener.spec.ts +51 -0
- package/src/utils/resultFlattener.ts +25 -0
package/dist/index.d.ts
CHANGED
|
@@ -1705,6 +1705,9 @@ declare type ProcessListItem = Pick<Process, 'workflowName' | 'lastStep' | 'last
|
|
|
1705
1705
|
customer: string;
|
|
1706
1706
|
customerAbbreviation: string;
|
|
1707
1707
|
};
|
|
1708
|
+
declare type ProcessListExportItem = Omit<ProcessListItem, 'subscriptions'> & {
|
|
1709
|
+
subscriptions: string;
|
|
1710
|
+
};
|
|
1708
1711
|
declare type WfoProcessesListProps = {
|
|
1709
1712
|
alwaysOnFilters?: FilterQuery<ProcessListItem>[];
|
|
1710
1713
|
defaultHiddenColumns: TableColumnKeys<ProcessListItem> | undefined;
|
|
@@ -1837,1013 +1840,48 @@ declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.E
|
|
|
1837
1840
|
|
|
1838
1841
|
declare const WfoStartWorkflowButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
1839
1842
|
|
|
1840
|
-
declare
|
|
1841
|
-
|
|
1843
|
+
declare enum BaseQueryTypes {
|
|
1844
|
+
fetch = "fetch",
|
|
1845
|
+
graphql = "graphql",
|
|
1846
|
+
custom = "custom"
|
|
1847
|
+
}
|
|
1848
|
+
declare enum CacheTags {
|
|
1849
|
+
engineStatus = "engineStatus",
|
|
1850
|
+
processList = "processList",
|
|
1851
|
+
processListSummary = "processListSummary",
|
|
1852
|
+
subscription = "subscription",
|
|
1853
|
+
subscriptionList = "subscriptionList"
|
|
1854
|
+
}
|
|
1855
|
+
declare type ExtraOptions = {
|
|
1856
|
+
baseQueryType?: BaseQueryTypes;
|
|
1857
|
+
apiName?: string;
|
|
1858
|
+
};
|
|
1859
|
+
declare const prepareHeaders: (headers: Headers) => Promise<Headers>;
|
|
1860
|
+
declare const orchestratorApi: _reduxjs_toolkit_query_react.Api<(args: any, api: _reduxjs_toolkit_query_react.BaseQueryApi, extraOptions: ExtraOptions) => {
|
|
1861
|
+
error: _reduxjs_toolkit_query_react.FetchBaseQueryError;
|
|
1862
|
+
data?: undefined;
|
|
1863
|
+
meta?: _reduxjs_toolkit_query_react.FetchBaseQueryMeta | undefined;
|
|
1864
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query_react.FetchBaseQueryError, _reduxjs_toolkit_query_react.FetchBaseQueryMeta>> | {
|
|
1865
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
1866
|
+
data?: undefined;
|
|
1867
|
+
meta?: {} | undefined;
|
|
1868
|
+
} | {
|
|
1869
|
+
error?: undefined;
|
|
1870
|
+
data: unknown;
|
|
1871
|
+
meta?: {} | undefined;
|
|
1872
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, {}, "orchestratorApi", CacheTags, typeof _reduxjs_toolkit_query_react.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
|
|
1842
1873
|
|
|
1843
|
-
declare
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
resumeTask: string;
|
|
1855
|
-
resumeWorkflow: string;
|
|
1856
|
-
inputFieldsHaveValidationErrors: string;
|
|
1857
|
-
};
|
|
1858
|
-
widgets: {
|
|
1859
|
-
customer: {
|
|
1860
|
-
placeholder: string;
|
|
1861
|
-
loading: string;
|
|
1862
|
-
};
|
|
1863
|
-
contactPersonName: {
|
|
1864
|
-
placeholder: string;
|
|
1865
|
-
};
|
|
1866
|
-
ipvAnyNetworkField: {
|
|
1867
|
-
manuallySelectedPrefix: string;
|
|
1868
|
-
};
|
|
1869
|
-
node_select: {
|
|
1870
|
-
nodes_loading: string;
|
|
1871
|
-
select_node: string;
|
|
1872
|
-
no_nodes_placeholder: string;
|
|
1873
|
-
};
|
|
1874
|
-
locationCode: {
|
|
1875
|
-
placeholder: string;
|
|
1876
|
-
};
|
|
1877
|
-
product: {
|
|
1878
|
-
placeholder: string;
|
|
1879
|
-
};
|
|
1880
|
-
select: {
|
|
1881
|
-
placeholder: string;
|
|
1882
|
-
};
|
|
1883
|
-
vlan: {
|
|
1884
|
-
vlansInUseError: string;
|
|
1885
|
-
vlansInUse: string;
|
|
1886
|
-
missingInIms: string;
|
|
1887
|
-
nsiVlansAvailable: string;
|
|
1888
|
-
nsiNoPortsAvailable: string;
|
|
1889
|
-
allPortsAvailable: string;
|
|
1890
|
-
placeholder: string;
|
|
1891
|
-
placeholderNoServicePort: string;
|
|
1892
|
-
invalidVlan: string;
|
|
1893
|
-
untaggedPortInUse: string;
|
|
1894
|
-
taggedOnly: string;
|
|
1895
|
-
loadingIms: string;
|
|
1896
|
-
};
|
|
1897
|
-
subscription: {
|
|
1898
|
-
placeholder: string;
|
|
1899
|
-
loading: string;
|
|
1900
|
-
};
|
|
1901
|
-
nodePort: {
|
|
1902
|
-
loadingNodes: string;
|
|
1903
|
-
loadingPorts: string;
|
|
1904
|
-
selectNode: string;
|
|
1905
|
-
selectPort: string;
|
|
1906
|
-
selectNodeFirst: string;
|
|
1907
|
-
};
|
|
1908
|
-
};
|
|
1909
|
-
} | {
|
|
1910
|
-
backendTranslations: Record<string, string>;
|
|
1911
|
-
userInputForm: {
|
|
1912
|
-
cancel: string;
|
|
1913
|
-
submit: string;
|
|
1914
|
-
previous: string;
|
|
1915
|
-
startTask: string;
|
|
1916
|
-
previousQuestion: string;
|
|
1917
|
-
startWorkflow: string;
|
|
1918
|
-
resumeTask: string;
|
|
1919
|
-
resumeWorkflow: string;
|
|
1920
|
-
inputFieldsHaveValidationErrors: string;
|
|
1921
|
-
};
|
|
1922
|
-
widgets: {
|
|
1923
|
-
customer: {
|
|
1924
|
-
placeholder: string;
|
|
1925
|
-
loading: string;
|
|
1926
|
-
};
|
|
1927
|
-
contactPersonName: {
|
|
1928
|
-
placeholder: string;
|
|
1929
|
-
};
|
|
1930
|
-
ipvAnyNetworkField: {
|
|
1931
|
-
manuallySelectedPrefix: string;
|
|
1932
|
-
};
|
|
1933
|
-
node_select: {
|
|
1934
|
-
nodes_loading: string;
|
|
1935
|
-
select_node: string;
|
|
1936
|
-
no_nodes_placeholder: string;
|
|
1937
|
-
};
|
|
1938
|
-
locationCode: {
|
|
1939
|
-
placeholder: string;
|
|
1940
|
-
};
|
|
1941
|
-
product: {
|
|
1942
|
-
placeholder: string;
|
|
1943
|
-
};
|
|
1944
|
-
select: {
|
|
1945
|
-
placeholder: string;
|
|
1946
|
-
};
|
|
1947
|
-
vlan: {
|
|
1948
|
-
vlansInUseError: string;
|
|
1949
|
-
vlansInUse: string;
|
|
1950
|
-
missingInIms: string;
|
|
1951
|
-
nsiVlansAvailable: string;
|
|
1952
|
-
nsiNoPortsAvailable: string;
|
|
1953
|
-
allPortsAvailable: string;
|
|
1954
|
-
placeholder: string;
|
|
1955
|
-
placeholderNoServicePort: string;
|
|
1956
|
-
invalidVlan: string;
|
|
1957
|
-
untaggedPortInUse: string;
|
|
1958
|
-
taggedOnly: string;
|
|
1959
|
-
loadingIms: string;
|
|
1960
|
-
};
|
|
1961
|
-
subscription: {
|
|
1962
|
-
placeholder: string;
|
|
1963
|
-
loading: string;
|
|
1964
|
-
};
|
|
1965
|
-
nodePort: {
|
|
1966
|
-
loadingNodes: string;
|
|
1967
|
-
loadingPorts: string;
|
|
1968
|
-
selectNode: string;
|
|
1969
|
-
selectPort: string;
|
|
1970
|
-
selectNodeFirst: string;
|
|
1971
|
-
};
|
|
1972
|
-
};
|
|
1973
|
-
};
|
|
1974
|
-
main: {
|
|
1975
|
-
metadata: string;
|
|
1976
|
-
metadataProducts: string;
|
|
1977
|
-
metadataProductblocks: string;
|
|
1978
|
-
metadataResourceTypes: string;
|
|
1979
|
-
metadataWorkflows: string;
|
|
1980
|
-
mobileTitle: string;
|
|
1981
|
-
settings: string;
|
|
1982
|
-
start: string;
|
|
1983
|
-
subscriptions: string;
|
|
1984
|
-
tasks: string;
|
|
1985
|
-
title: string;
|
|
1986
|
-
welcome: string;
|
|
1987
|
-
workflows: string;
|
|
1988
|
-
darkMode: string;
|
|
1989
|
-
lightMode: string;
|
|
1990
|
-
websocketConnected: string;
|
|
1991
|
-
websocketDisconnected: string;
|
|
1992
|
-
};
|
|
1993
|
-
common: {
|
|
1994
|
-
product: string;
|
|
1995
|
-
deselect: string;
|
|
1996
|
-
close: string;
|
|
1997
|
-
editColumns: string;
|
|
1998
|
-
loading: string;
|
|
1999
|
-
newSubscription: string;
|
|
2000
|
-
newTask: string;
|
|
2001
|
-
noFailedTasks: string;
|
|
2002
|
-
noItemsFound: string;
|
|
2003
|
-
search: string;
|
|
2004
|
-
errorMessage: string;
|
|
2005
|
-
export: string;
|
|
2006
|
-
unauthorizedPage: string;
|
|
2007
|
-
insyncTrue: string;
|
|
2008
|
-
insyncFalse: string;
|
|
2009
|
-
};
|
|
2010
|
-
confirmationDialog: {
|
|
2011
|
-
title: string;
|
|
2012
|
-
confirm: string;
|
|
2013
|
-
cancel: string;
|
|
2014
|
-
leavePage: string;
|
|
2015
|
-
leavePageSub: string;
|
|
2016
|
-
stay: string;
|
|
2017
|
-
leave: string;
|
|
2018
|
-
};
|
|
2019
|
-
workflow: {
|
|
2020
|
-
start_workflow_title: string;
|
|
2021
|
-
};
|
|
2022
|
-
errors: {
|
|
2023
|
-
notAllResultsExported: string;
|
|
2024
|
-
notAllResultsExportedTitle: string;
|
|
2025
|
-
invalidQueryParts: string;
|
|
2026
|
-
notAllowedWhenEngineIsNotRunningMessage: string;
|
|
2027
|
-
notAllowedWhenEngineIsNotRunningTitle: string;
|
|
2028
|
-
retrieve_stored_settings: string;
|
|
2029
|
-
retrieve_stored_settings_title: string;
|
|
2030
|
-
};
|
|
2031
|
-
metadata: {
|
|
2032
|
-
tabs: {
|
|
2033
|
-
products: string;
|
|
2034
|
-
productBlocks: string;
|
|
2035
|
-
resourceTypes: string;
|
|
2036
|
-
workflows: string;
|
|
2037
|
-
};
|
|
2038
|
-
products: {
|
|
2039
|
-
id: string;
|
|
2040
|
-
name: string;
|
|
2041
|
-
tag: string;
|
|
2042
|
-
description: string;
|
|
2043
|
-
productType: string;
|
|
2044
|
-
status: string;
|
|
2045
|
-
productBlocks: string;
|
|
2046
|
-
fixedInputs: string;
|
|
2047
|
-
createdAt: string;
|
|
2048
|
-
};
|
|
2049
|
-
productBlocks: {
|
|
2050
|
-
id: string;
|
|
2051
|
-
name: string;
|
|
2052
|
-
description: string;
|
|
2053
|
-
tag: string;
|
|
2054
|
-
status: string;
|
|
2055
|
-
resourceTypes: string;
|
|
2056
|
-
dependingProductBlocks: string;
|
|
2057
|
-
createdAt: string;
|
|
2058
|
-
endDate: string;
|
|
2059
|
-
parentIds: string;
|
|
2060
|
-
};
|
|
2061
|
-
resourceTypes: {
|
|
2062
|
-
type: string;
|
|
2063
|
-
description: string;
|
|
2064
|
-
resourceId: string;
|
|
2065
|
-
usedInProductBlocks: string;
|
|
2066
|
-
};
|
|
2067
|
-
workflows: {
|
|
2068
|
-
name: string;
|
|
2069
|
-
description: string;
|
|
2070
|
-
target: string;
|
|
2071
|
-
productTags: string;
|
|
2072
|
-
createdAt: string;
|
|
2073
|
-
};
|
|
2074
|
-
};
|
|
2075
|
-
processes: {
|
|
2076
|
-
index: {
|
|
2077
|
-
workflowName: string;
|
|
2078
|
-
step: string;
|
|
2079
|
-
status: string;
|
|
2080
|
-
product: string;
|
|
2081
|
-
customer: string;
|
|
2082
|
-
customerAbbreviation: string;
|
|
2083
|
-
subscriptions: string;
|
|
2084
|
-
createdBy: string;
|
|
2085
|
-
assignee: string;
|
|
2086
|
-
processId: string;
|
|
2087
|
-
started: string;
|
|
2088
|
-
lastModified: string;
|
|
2089
|
-
workflowTarget: string;
|
|
2090
|
-
productTag: string;
|
|
2091
|
-
};
|
|
2092
|
-
detail: {
|
|
2093
|
-
retry: string;
|
|
2094
|
-
resume: string;
|
|
2095
|
-
abort: string;
|
|
2096
|
-
delete: string;
|
|
2097
|
-
deleteQuestion: string;
|
|
2098
|
-
abortTaskQuestion: string;
|
|
2099
|
-
abortWorkflowQuestion: string;
|
|
2100
|
-
retryTaskQuestion: string;
|
|
2101
|
-
retryWorkflowQuestion: string;
|
|
2102
|
-
status: string;
|
|
2103
|
-
startedBy: string;
|
|
2104
|
-
lastStep: string;
|
|
2105
|
-
startedOn: string;
|
|
2106
|
-
lastUpdate: string;
|
|
2107
|
-
relatedSubscriptions: string;
|
|
2108
|
-
subscriptions: string;
|
|
2109
|
-
customer: string;
|
|
2110
|
-
};
|
|
2111
|
-
steps: {
|
|
2112
|
-
taskSteps: string;
|
|
2113
|
-
workflowSteps: string;
|
|
2114
|
-
showDelta: string;
|
|
2115
|
-
hideDelta: string;
|
|
2116
|
-
viewOptions: string;
|
|
2117
|
-
expandAll: string;
|
|
2118
|
-
collapseAll: string;
|
|
2119
|
-
duration: string;
|
|
2120
|
-
userInput: string;
|
|
2121
|
-
submitTaskFormLabel: string;
|
|
2122
|
-
submitWorkflowFormLabel: string;
|
|
2123
|
-
};
|
|
2124
|
-
delta: {
|
|
2125
|
-
title: string;
|
|
2126
|
-
};
|
|
2127
|
-
};
|
|
2128
|
-
workflows: {
|
|
2129
|
-
tabs: {
|
|
2130
|
-
active: string;
|
|
2131
|
-
completed: string;
|
|
2132
|
-
};
|
|
2133
|
-
index: {
|
|
2134
|
-
title: string;
|
|
2135
|
-
};
|
|
2136
|
-
};
|
|
2137
|
-
subscriptions: {
|
|
2138
|
-
tabs: {
|
|
2139
|
-
active: string;
|
|
2140
|
-
terminated: string;
|
|
2141
|
-
transient: string;
|
|
2142
|
-
all: string;
|
|
2143
|
-
};
|
|
2144
|
-
index: {
|
|
2145
|
-
id: string;
|
|
2146
|
-
description: string;
|
|
2147
|
-
status: string;
|
|
2148
|
-
insync: string;
|
|
2149
|
-
product: string;
|
|
2150
|
-
tag: string;
|
|
2151
|
-
startDate: string;
|
|
2152
|
-
endDate: string;
|
|
2153
|
-
metadata: string;
|
|
2154
|
-
note: string;
|
|
2155
|
-
customerFullname: string;
|
|
2156
|
-
customerShortcode: string;
|
|
2157
|
-
};
|
|
2158
|
-
detail: {
|
|
2159
|
-
title: string;
|
|
2160
|
-
tabs: {
|
|
2161
|
-
general: string;
|
|
2162
|
-
serviceConfiguration: string;
|
|
2163
|
-
workflows: string;
|
|
2164
|
-
relatedSubscriptions: string;
|
|
2165
|
-
};
|
|
2166
|
-
loadingStatus: string;
|
|
2167
|
-
actions: {
|
|
2168
|
-
create: string;
|
|
2169
|
-
modify: string;
|
|
2170
|
-
tasks: string;
|
|
2171
|
-
terminate: string;
|
|
2172
|
-
actions: string;
|
|
2173
|
-
subscription: {
|
|
2174
|
-
no_modify_deleted_related_objects: string;
|
|
2175
|
-
no_modify_in_use_by_subscription: string;
|
|
2176
|
-
no_modify_invalid_status: string;
|
|
2177
|
-
no_modify_workflow: string;
|
|
2178
|
-
no_termination_workflow: string;
|
|
2179
|
-
no_validate_workflow: string;
|
|
2180
|
-
not_in_sync: string;
|
|
2181
|
-
relations_not_in_sync: string;
|
|
2182
|
-
no_modify_subscription_in_use_by_others: string;
|
|
2183
|
-
};
|
|
2184
|
-
};
|
|
2185
|
-
subscriptionInstanceId: string;
|
|
2186
|
-
ownerSubscriptionId: string;
|
|
2187
|
-
inUseByRelations: string;
|
|
2188
|
-
showDetails: string;
|
|
2189
|
-
self: string;
|
|
2190
|
-
hideDetails: string;
|
|
2191
|
-
subscriptionDetails: string;
|
|
2192
|
-
productName: string;
|
|
2193
|
-
fixedInputs: string;
|
|
2194
|
-
productInfo: string;
|
|
2195
|
-
noProductBlockSelected: string;
|
|
2196
|
-
productBlocks: string;
|
|
2197
|
-
ctaSelectProductBlock: string;
|
|
2198
|
-
startedBy: string;
|
|
2199
|
-
startedAt: string;
|
|
2200
|
-
status: string;
|
|
2201
|
-
id: string;
|
|
2202
|
-
blockTitleSubscriptionDetails: string;
|
|
2203
|
-
blockTitleFixedInputs: string;
|
|
2204
|
-
blockTitleProductInfo: string;
|
|
2205
|
-
subscriptionId: string;
|
|
2206
|
-
description: string;
|
|
2207
|
-
startDate: string;
|
|
2208
|
-
insync: string;
|
|
2209
|
-
customer: string;
|
|
2210
|
-
customerUuid: string;
|
|
2211
|
-
name: string;
|
|
2212
|
-
productType: string;
|
|
2213
|
-
tag: string;
|
|
2214
|
-
created: string;
|
|
2215
|
-
endDate: string;
|
|
2216
|
-
metadata: string;
|
|
2217
|
-
note: string;
|
|
2218
|
-
noRelatedSubscriptions: string;
|
|
2219
|
-
hideTerminatedRelatedSubscriptions: string;
|
|
2220
|
-
processDetail: {
|
|
2221
|
-
id: string;
|
|
2222
|
-
status: string;
|
|
2223
|
-
startedAt: string;
|
|
2224
|
-
startedBy: string;
|
|
2225
|
-
};
|
|
2226
|
-
showAll: string;
|
|
2227
|
-
hideAll: string;
|
|
2228
|
-
see: string;
|
|
2229
|
-
setInSync: string;
|
|
2230
|
-
setInSyncQuestion: string;
|
|
2231
|
-
setInSyncFailed: {
|
|
2232
|
-
title: string;
|
|
2233
|
-
text: string;
|
|
2234
|
-
};
|
|
2235
|
-
setInSyncSuccess: {
|
|
2236
|
-
title: string;
|
|
2237
|
-
text: string;
|
|
2238
|
-
};
|
|
2239
|
-
};
|
|
2240
|
-
};
|
|
2241
|
-
tasks: {
|
|
2242
|
-
page: {
|
|
2243
|
-
taskName: string;
|
|
2244
|
-
rerunAll: string;
|
|
2245
|
-
rerunAllQuestion: string;
|
|
2246
|
-
};
|
|
2247
|
-
tabs: {
|
|
2248
|
-
active: string;
|
|
2249
|
-
completed: string;
|
|
2250
|
-
};
|
|
2251
|
-
};
|
|
2252
|
-
settings: {
|
|
2253
|
-
page: {
|
|
2254
|
-
flushButton: string;
|
|
2255
|
-
flushCacheSettingsTitle: string;
|
|
2256
|
-
engineStatus: string;
|
|
2257
|
-
modifyEngine: string;
|
|
2258
|
-
pauseEngine: string;
|
|
2259
|
-
runningProcesses: string;
|
|
2260
|
-
selectSettings: string;
|
|
2261
|
-
startEngine: string;
|
|
2262
|
-
resetTextSearchIndex: string;
|
|
2263
|
-
resetTextSearchIndexButton: string;
|
|
2264
|
-
};
|
|
2265
|
-
};
|
|
2266
|
-
startPage: {
|
|
2267
|
-
activeSubscriptions: {
|
|
2268
|
-
buttonText: string;
|
|
2269
|
-
headerTitle: string;
|
|
2270
|
-
listTitle: string;
|
|
2271
|
-
};
|
|
2272
|
-
outOfSyncSubscriptions: {
|
|
2273
|
-
buttonText: string;
|
|
2274
|
-
headerTitle: string;
|
|
2275
|
-
listTitle: string;
|
|
2276
|
-
};
|
|
2277
|
-
activeWorkflows: {
|
|
2278
|
-
buttonText: string;
|
|
2279
|
-
headerTitle: string;
|
|
2280
|
-
listTitle: string;
|
|
2281
|
-
};
|
|
2282
|
-
failedTasks: {
|
|
2283
|
-
buttonText: string;
|
|
2284
|
-
headerTitle: string;
|
|
2285
|
-
listTitle: string;
|
|
2286
|
-
};
|
|
2287
|
-
products: {
|
|
2288
|
-
headerTitle: string;
|
|
2289
|
-
listTitle: string;
|
|
2290
|
-
};
|
|
2291
|
-
};
|
|
2292
|
-
} | {
|
|
2293
|
-
pydanticForms: {
|
|
2294
|
-
backendTranslations: Record<string, string>;
|
|
2295
|
-
userInputForm: {
|
|
2296
|
-
cancel: string;
|
|
2297
|
-
submit: string;
|
|
2298
|
-
previous: string;
|
|
2299
|
-
previousQuestion: string;
|
|
2300
|
-
startTask: string;
|
|
2301
|
-
startWorkflow: string;
|
|
2302
|
-
resumeTask: string;
|
|
2303
|
-
resumeWorkflow: string;
|
|
2304
|
-
inputFieldsHaveValidationErrors: string;
|
|
2305
|
-
};
|
|
2306
|
-
widgets: {
|
|
2307
|
-
customer: {
|
|
2308
|
-
placeholder: string;
|
|
2309
|
-
loading: string;
|
|
2310
|
-
};
|
|
2311
|
-
contactPersonName: {
|
|
2312
|
-
placeholder: string;
|
|
2313
|
-
};
|
|
2314
|
-
ipvAnyNetworkField: {
|
|
2315
|
-
manuallySelectedPrefix: string;
|
|
2316
|
-
};
|
|
2317
|
-
node_select: {
|
|
2318
|
-
nodes_loading: string;
|
|
2319
|
-
select_node: string;
|
|
2320
|
-
no_nodes_placeholder: string;
|
|
2321
|
-
};
|
|
2322
|
-
locationCode: {
|
|
2323
|
-
placeholder: string;
|
|
2324
|
-
};
|
|
2325
|
-
product: {
|
|
2326
|
-
placeholder: string;
|
|
2327
|
-
};
|
|
2328
|
-
select: {
|
|
2329
|
-
placeholder: string;
|
|
2330
|
-
};
|
|
2331
|
-
vlan: {
|
|
2332
|
-
vlansInUseError: string;
|
|
2333
|
-
vlansInUse: string;
|
|
2334
|
-
missingInIms: string;
|
|
2335
|
-
nsiVlansAvailable: string;
|
|
2336
|
-
nsiNoPortsAvailable: string;
|
|
2337
|
-
allPortsAvailable: string;
|
|
2338
|
-
placeholder: string;
|
|
2339
|
-
placeholderNoServicePort: string;
|
|
2340
|
-
invalidVlan: string;
|
|
2341
|
-
untaggedPortInUse: string;
|
|
2342
|
-
taggedOnly: string;
|
|
2343
|
-
loadingIms: string;
|
|
2344
|
-
};
|
|
2345
|
-
subscription: {
|
|
2346
|
-
placeholder: string;
|
|
2347
|
-
loading: string;
|
|
2348
|
-
};
|
|
2349
|
-
nodePort: {
|
|
2350
|
-
loadingNodes: string;
|
|
2351
|
-
loadingPorts: string;
|
|
2352
|
-
selectNode: string;
|
|
2353
|
-
selectPort: string;
|
|
2354
|
-
selectNodeFirst: string;
|
|
2355
|
-
};
|
|
2356
|
-
};
|
|
2357
|
-
} | {
|
|
2358
|
-
backendTranslations: Record<string, string>;
|
|
2359
|
-
userInputForm: {
|
|
2360
|
-
cancel: string;
|
|
2361
|
-
submit: string;
|
|
2362
|
-
previous: string;
|
|
2363
|
-
startTask: string;
|
|
2364
|
-
previousQuestion: string;
|
|
2365
|
-
startWorkflow: string;
|
|
2366
|
-
resumeTask: string;
|
|
2367
|
-
resumeWorkflow: string;
|
|
2368
|
-
inputFieldsHaveValidationErrors: string;
|
|
2369
|
-
};
|
|
2370
|
-
widgets: {
|
|
2371
|
-
customer: {
|
|
2372
|
-
placeholder: string;
|
|
2373
|
-
loading: string;
|
|
2374
|
-
};
|
|
2375
|
-
contactPersonName: {
|
|
2376
|
-
placeholder: string;
|
|
2377
|
-
};
|
|
2378
|
-
ipvAnyNetworkField: {
|
|
2379
|
-
manuallySelectedPrefix: string;
|
|
2380
|
-
};
|
|
2381
|
-
node_select: {
|
|
2382
|
-
nodes_loading: string;
|
|
2383
|
-
select_node: string;
|
|
2384
|
-
no_nodes_placeholder: string;
|
|
2385
|
-
};
|
|
2386
|
-
locationCode: {
|
|
2387
|
-
placeholder: string;
|
|
2388
|
-
};
|
|
2389
|
-
product: {
|
|
2390
|
-
placeholder: string;
|
|
2391
|
-
};
|
|
2392
|
-
select: {
|
|
2393
|
-
placeholder: string;
|
|
2394
|
-
};
|
|
2395
|
-
vlan: {
|
|
2396
|
-
vlansInUseError: string;
|
|
2397
|
-
vlansInUse: string;
|
|
2398
|
-
missingInIms: string;
|
|
2399
|
-
nsiVlansAvailable: string;
|
|
2400
|
-
nsiNoPortsAvailable: string;
|
|
2401
|
-
allPortsAvailable: string;
|
|
2402
|
-
placeholder: string;
|
|
2403
|
-
placeholderNoServicePort: string;
|
|
2404
|
-
invalidVlan: string;
|
|
2405
|
-
untaggedPortInUse: string;
|
|
2406
|
-
taggedOnly: string;
|
|
2407
|
-
loadingIms: string;
|
|
2408
|
-
};
|
|
2409
|
-
subscription: {
|
|
2410
|
-
placeholder: string;
|
|
2411
|
-
loading: string;
|
|
2412
|
-
};
|
|
2413
|
-
nodePort: {
|
|
2414
|
-
loadingNodes: string;
|
|
2415
|
-
loadingPorts: string;
|
|
2416
|
-
selectNode: string;
|
|
2417
|
-
selectPort: string;
|
|
2418
|
-
selectNodeFirst: string;
|
|
2419
|
-
};
|
|
2420
|
-
};
|
|
2421
|
-
};
|
|
2422
|
-
main: {
|
|
2423
|
-
metadata: string;
|
|
2424
|
-
metadataProducts: string;
|
|
2425
|
-
metadataProductblocks: string;
|
|
2426
|
-
metadataResourceTypes: string;
|
|
2427
|
-
metadataWorkflows: string;
|
|
2428
|
-
mobileTitle: string;
|
|
2429
|
-
settings: string;
|
|
2430
|
-
start: string;
|
|
2431
|
-
subscriptions: string;
|
|
2432
|
-
tasks: string;
|
|
2433
|
-
title: string;
|
|
2434
|
-
welcome: string;
|
|
2435
|
-
workflows: string;
|
|
2436
|
-
darkMode: string;
|
|
2437
|
-
lightMode: string;
|
|
2438
|
-
websocketConnected: string;
|
|
2439
|
-
websocketDisconnected: string;
|
|
2440
|
-
};
|
|
2441
|
-
common: {
|
|
2442
|
-
product: string;
|
|
2443
|
-
deselect: string;
|
|
2444
|
-
close: string;
|
|
2445
|
-
editColumns: string;
|
|
2446
|
-
loading: string;
|
|
2447
|
-
newSubscription: string;
|
|
2448
|
-
newTask: string;
|
|
2449
|
-
noFailedTasks: string;
|
|
2450
|
-
noItemsFound: string;
|
|
2451
|
-
search: string;
|
|
2452
|
-
errorMessage: string;
|
|
2453
|
-
export: string;
|
|
2454
|
-
unauthorizedPage: string;
|
|
2455
|
-
insyncTrue: string;
|
|
2456
|
-
insyncFalse: string;
|
|
2457
|
-
};
|
|
2458
|
-
confirmationDialog: {
|
|
2459
|
-
title: string;
|
|
2460
|
-
confirm: string;
|
|
2461
|
-
cancel: string;
|
|
2462
|
-
leavePage: string;
|
|
2463
|
-
leavePageSub: string;
|
|
2464
|
-
stay: string;
|
|
2465
|
-
leave: string;
|
|
2466
|
-
};
|
|
2467
|
-
workflow: {
|
|
2468
|
-
start_workflow_title: string;
|
|
2469
|
-
};
|
|
2470
|
-
errors: {
|
|
2471
|
-
notAllResultsExported: string;
|
|
2472
|
-
notAllResultsExportedTitle: string;
|
|
2473
|
-
invalidQueryParts: string;
|
|
2474
|
-
notAllowedWhenEngineIsNotRunningMessage: string;
|
|
2475
|
-
notAllowedWhenEngineIsNotRunningTitle: string;
|
|
2476
|
-
retrieve_stored_settings: string;
|
|
2477
|
-
retrieve_stored_settings_title: string;
|
|
2478
|
-
};
|
|
2479
|
-
metadata: {
|
|
2480
|
-
tabs: {
|
|
2481
|
-
products: string;
|
|
2482
|
-
productBlocks: string;
|
|
2483
|
-
resourceTypes: string;
|
|
2484
|
-
workflows: string;
|
|
2485
|
-
};
|
|
2486
|
-
products: {
|
|
2487
|
-
id: string;
|
|
2488
|
-
name: string;
|
|
2489
|
-
description: string;
|
|
2490
|
-
tag: string;
|
|
2491
|
-
productType: string;
|
|
2492
|
-
status: string;
|
|
2493
|
-
productBlocks: string;
|
|
2494
|
-
fixedInputs: string;
|
|
2495
|
-
createdAt: string;
|
|
2496
|
-
};
|
|
2497
|
-
productBlocks: {
|
|
2498
|
-
id: string;
|
|
2499
|
-
name: string;
|
|
2500
|
-
description: string;
|
|
2501
|
-
tag: string;
|
|
2502
|
-
status: string;
|
|
2503
|
-
resourceTypes: string;
|
|
2504
|
-
dependingProductBlocks: string;
|
|
2505
|
-
createdAt: string;
|
|
2506
|
-
endDate: string;
|
|
2507
|
-
parentIds: string;
|
|
2508
|
-
};
|
|
2509
|
-
resourceTypes: {
|
|
2510
|
-
type: string;
|
|
2511
|
-
description: string;
|
|
2512
|
-
resourceId: string;
|
|
2513
|
-
usedInProductBlocks: string;
|
|
2514
|
-
};
|
|
2515
|
-
workflows: {
|
|
2516
|
-
name: string;
|
|
2517
|
-
description: string;
|
|
2518
|
-
target: string;
|
|
2519
|
-
productTags: string;
|
|
2520
|
-
createdAt: string;
|
|
2521
|
-
};
|
|
2522
|
-
};
|
|
2523
|
-
processes: {
|
|
2524
|
-
index: {
|
|
2525
|
-
workflowName: string;
|
|
2526
|
-
step: string;
|
|
2527
|
-
status: string;
|
|
2528
|
-
product: string;
|
|
2529
|
-
customer: string;
|
|
2530
|
-
customerAbbreviation: string;
|
|
2531
|
-
subscriptions: string;
|
|
2532
|
-
createdBy: string;
|
|
2533
|
-
assignee: string;
|
|
2534
|
-
processId: string;
|
|
2535
|
-
started: string;
|
|
2536
|
-
lastModified: string;
|
|
2537
|
-
workflowTarget: string;
|
|
2538
|
-
productTag: string;
|
|
2539
|
-
};
|
|
2540
|
-
detail: {
|
|
2541
|
-
retry: string;
|
|
2542
|
-
resume: string;
|
|
2543
|
-
abort: string;
|
|
2544
|
-
delete: string;
|
|
2545
|
-
deleteQuestion: string;
|
|
2546
|
-
abortTaskQuestion: string;
|
|
2547
|
-
abortWorkflowQuestion: string;
|
|
2548
|
-
retryTaskQuestion: string;
|
|
2549
|
-
retryWorkflowQuestion: string;
|
|
2550
|
-
status: string;
|
|
2551
|
-
startedBy: string;
|
|
2552
|
-
lastStep: string;
|
|
2553
|
-
startedOn: string;
|
|
2554
|
-
lastUpdate: string;
|
|
2555
|
-
relatedSubscriptions: string;
|
|
2556
|
-
subscriptions: string;
|
|
2557
|
-
customer: string;
|
|
2558
|
-
};
|
|
2559
|
-
steps: {
|
|
2560
|
-
steps: string;
|
|
2561
|
-
showDelta: string;
|
|
2562
|
-
hideDelta: string;
|
|
2563
|
-
viewOptions: string;
|
|
2564
|
-
expandAll: string;
|
|
2565
|
-
collapseAll: string;
|
|
2566
|
-
duration: string;
|
|
2567
|
-
userInput: string;
|
|
2568
|
-
submitTaskFormLabel: string;
|
|
2569
|
-
submitWorkflowFormLabel: string;
|
|
2570
|
-
};
|
|
2571
|
-
delta: {
|
|
2572
|
-
title: string;
|
|
2573
|
-
};
|
|
2574
|
-
};
|
|
2575
|
-
workflows: {
|
|
2576
|
-
tabs: {
|
|
2577
|
-
active: string;
|
|
2578
|
-
completed: string;
|
|
2579
|
-
};
|
|
2580
|
-
index: {
|
|
2581
|
-
title: string;
|
|
2582
|
-
};
|
|
2583
|
-
};
|
|
2584
|
-
subscriptions: {
|
|
2585
|
-
tabs: {
|
|
2586
|
-
active: string;
|
|
2587
|
-
terminated: string;
|
|
2588
|
-
transient: string;
|
|
2589
|
-
all: string;
|
|
2590
|
-
};
|
|
2591
|
-
index: {
|
|
2592
|
-
id: string;
|
|
2593
|
-
description: string;
|
|
2594
|
-
status: string;
|
|
2595
|
-
insync: string;
|
|
2596
|
-
product: string;
|
|
2597
|
-
tag: string;
|
|
2598
|
-
startDate: string;
|
|
2599
|
-
endDate: string;
|
|
2600
|
-
note: string;
|
|
2601
|
-
metadata: string;
|
|
2602
|
-
customerFullName: string;
|
|
2603
|
-
customerAbbreviation: string;
|
|
2604
|
-
};
|
|
2605
|
-
detail: {
|
|
2606
|
-
title: string;
|
|
2607
|
-
tabs: {
|
|
2608
|
-
general: string;
|
|
2609
|
-
serviceConfiguration: string;
|
|
2610
|
-
workflows: string;
|
|
2611
|
-
relatedSubscriptions: string;
|
|
2612
|
-
};
|
|
2613
|
-
loadingStatus: string;
|
|
2614
|
-
actions: {
|
|
2615
|
-
create: string;
|
|
2616
|
-
modify: string;
|
|
2617
|
-
tasks: string;
|
|
2618
|
-
terminate: string;
|
|
2619
|
-
actions: string;
|
|
2620
|
-
subscription: {
|
|
2621
|
-
no_modify_deleted_related_objects: string;
|
|
2622
|
-
no_modify_in_use_by_subscription: string;
|
|
2623
|
-
no_modify_invalid_status: string;
|
|
2624
|
-
no_modify_workflow: string;
|
|
2625
|
-
no_termination_workflow: string;
|
|
2626
|
-
no_validate_workflow: string;
|
|
2627
|
-
not_in_sync: string;
|
|
2628
|
-
relations_not_in_sync: string;
|
|
2629
|
-
no_modify_subscription_in_use_by_others: string;
|
|
2630
|
-
};
|
|
2631
|
-
};
|
|
2632
|
-
subscriptionInstanceId: string;
|
|
2633
|
-
ownerSubscriptionId: string;
|
|
2634
|
-
inUseByRelations: string;
|
|
2635
|
-
showDetails: string;
|
|
2636
|
-
hideDetails: string;
|
|
2637
|
-
self: string;
|
|
2638
|
-
subscriptionDetails: string;
|
|
2639
|
-
productName: string;
|
|
2640
|
-
fixedInputs: string;
|
|
2641
|
-
productInfo: string;
|
|
2642
|
-
noProductBlockSelected: string;
|
|
2643
|
-
productBlocks: string;
|
|
2644
|
-
ctaSelectProductBlock: string;
|
|
2645
|
-
startedBy: string;
|
|
2646
|
-
startedAt: string;
|
|
2647
|
-
status: string;
|
|
2648
|
-
id: string;
|
|
2649
|
-
blockTitleSubscriptionDetails: string;
|
|
2650
|
-
blockTitleFixedInputs: string;
|
|
2651
|
-
blockTitleProductInfo: string;
|
|
2652
|
-
subscriptionId: string;
|
|
2653
|
-
description: string;
|
|
2654
|
-
startDate: string;
|
|
2655
|
-
insync: string;
|
|
2656
|
-
customer: string;
|
|
2657
|
-
customerUuid: string;
|
|
2658
|
-
metadata: string;
|
|
2659
|
-
name: string;
|
|
2660
|
-
productType: string;
|
|
2661
|
-
tag: string;
|
|
2662
|
-
created: string;
|
|
2663
|
-
endDate: string;
|
|
2664
|
-
note: string;
|
|
2665
|
-
noRelatedSubscriptions: string;
|
|
2666
|
-
hideTerminatedRelatedSubscriptions: string;
|
|
2667
|
-
processDetail: {
|
|
2668
|
-
id: string;
|
|
2669
|
-
status: string;
|
|
2670
|
-
startedAt: string;
|
|
2671
|
-
startedBy: string;
|
|
2672
|
-
};
|
|
2673
|
-
showAll: string;
|
|
2674
|
-
hideAll: string;
|
|
2675
|
-
see: string;
|
|
2676
|
-
setInSync: string;
|
|
2677
|
-
setInSyncQuestion: string;
|
|
2678
|
-
setInSyncFailed: {
|
|
2679
|
-
title: string;
|
|
2680
|
-
text: string;
|
|
2681
|
-
};
|
|
2682
|
-
setInSyncSuccess: {
|
|
2683
|
-
title: string;
|
|
2684
|
-
text: string;
|
|
2685
|
-
};
|
|
2686
|
-
};
|
|
2687
|
-
};
|
|
2688
|
-
tasks: {
|
|
2689
|
-
page: {
|
|
2690
|
-
taskName: string;
|
|
2691
|
-
rerunAll: string;
|
|
2692
|
-
rerunAllQuestion: string;
|
|
2693
|
-
};
|
|
2694
|
-
tabs: {
|
|
2695
|
-
active: string;
|
|
2696
|
-
completed: string;
|
|
2697
|
-
};
|
|
2698
|
-
};
|
|
2699
|
-
settings: {
|
|
2700
|
-
page: {
|
|
2701
|
-
engineStatus: string;
|
|
2702
|
-
flushButton: string;
|
|
2703
|
-
flushCacheSettingsTitle: string;
|
|
2704
|
-
modifyEngine: string;
|
|
2705
|
-
pauseEngine: string;
|
|
2706
|
-
runningProcesses: string;
|
|
2707
|
-
selectSettings: string;
|
|
2708
|
-
startEngine: string;
|
|
2709
|
-
resetTextSearchIndex: string;
|
|
2710
|
-
resetTextSearchIndexButton: string;
|
|
2711
|
-
};
|
|
2712
|
-
};
|
|
2713
|
-
startPage: {
|
|
2714
|
-
activeSubscriptions: {
|
|
2715
|
-
buttonText: string;
|
|
2716
|
-
headerTitle: string;
|
|
2717
|
-
listTitle: string;
|
|
2718
|
-
};
|
|
2719
|
-
outOfSyncSubscriptions: {
|
|
2720
|
-
buttonText: string;
|
|
2721
|
-
headerTitle: string;
|
|
2722
|
-
listTitle: string;
|
|
2723
|
-
};
|
|
2724
|
-
activeWorkflows: {
|
|
2725
|
-
buttonText: string;
|
|
2726
|
-
headerTitle: string;
|
|
2727
|
-
listTitle: string;
|
|
2728
|
-
};
|
|
2729
|
-
failedTasks: {
|
|
2730
|
-
buttonText: string;
|
|
2731
|
-
headerTitle: string;
|
|
2732
|
-
listTitle: string;
|
|
2733
|
-
};
|
|
2734
|
-
products: {
|
|
2735
|
-
headerTitle: string;
|
|
2736
|
-
listTitle: string;
|
|
2737
|
-
};
|
|
2738
|
-
};
|
|
2739
|
-
};
|
|
2740
|
-
|
|
2741
|
-
declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2742
|
-
|
|
2743
|
-
declare const RESOURCE_TYPE_FIELD_ID: keyof ResourceTypeDefinition;
|
|
2744
|
-
declare const RESOURCE_TYPE_FIELD_TYPE: keyof ResourceTypeDefinition;
|
|
2745
|
-
declare const RESOURCE_TYPE_FIELD_DESCRIPTION: keyof ResourceTypeDefinition;
|
|
2746
|
-
declare const RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS: keyof ResourceTypeDefinition;
|
|
2747
|
-
declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2748
|
-
|
|
2749
|
-
declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2750
|
-
|
|
2751
|
-
declare type WorkflowListItem = Pick<WorkflowDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
|
|
2752
|
-
productTags: string[];
|
|
2753
|
-
};
|
|
2754
|
-
declare const WfoWorkflowsPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2755
|
-
|
|
2756
|
-
declare const RENDER_ALL = "RENDER_ALL";
|
|
2757
|
-
declare enum RenderDirection {
|
|
2758
|
-
HORIZONTAL = "HORIZONTAL",
|
|
2759
|
-
VERTICAL = "VERTICAL"
|
|
2760
|
-
}
|
|
2761
|
-
declare type WfoProcessesListSubscriptionsCellProps = {
|
|
2762
|
-
subscriptions: Pick<Subscription, 'subscriptionId' | 'description'>[];
|
|
2763
|
-
numberOfSubscriptionsToRender?: number | typeof RENDER_ALL;
|
|
2764
|
-
renderDirection?: RenderDirection;
|
|
2765
|
-
};
|
|
2766
|
-
declare const WfoProcessListSubscriptionsCell: FC<WfoProcessesListSubscriptionsCellProps>;
|
|
2767
|
-
|
|
2768
|
-
declare type GroupedStep = {
|
|
2769
|
-
steps: Step[];
|
|
2770
|
-
};
|
|
2771
|
-
interface WfoProcessDetailPageProps {
|
|
2772
|
-
processId: string;
|
|
2773
|
-
processDetailRefetchInterval?: number;
|
|
2774
|
-
}
|
|
2775
|
-
declare const WfoProcessDetailPage: ({ processId, processDetailRefetchInterval, }: WfoProcessDetailPageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2776
|
-
|
|
2777
|
-
interface WfoStartProcessPageProps {
|
|
2778
|
-
processName: string;
|
|
2779
|
-
isTask?: boolean;
|
|
2780
|
-
}
|
|
2781
|
-
interface UserInputForm {
|
|
2782
|
-
stepUserInput?: JSONSchema6;
|
|
2783
|
-
hasNext?: boolean;
|
|
2784
|
-
}
|
|
2785
|
-
declare const WfoStartProcessPage: ({ processName, isTask, }: WfoStartProcessPageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2786
|
-
|
|
2787
|
-
declare const WfoStartPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2788
|
-
|
|
2789
|
-
declare const WfoSubscriptionDetailPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2790
|
-
|
|
2791
|
-
declare const WfoSubscriptionsListPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
2792
|
-
|
|
2793
|
-
declare const WfoTasksListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
2794
|
-
|
|
2795
|
-
declare enum WfoTasksListTabType {
|
|
2796
|
-
ACTIVE = "ACTIVE",
|
|
2797
|
-
COMPLETED = "COMPLETED"
|
|
2798
|
-
}
|
|
2799
|
-
declare const defaultTasksListTabs: WfoFilterTab<WfoTasksListTabType, ProcessListItem>[];
|
|
2800
|
-
|
|
2801
|
-
declare const getTasksListTabTypeFromString: (tabId?: string | undefined) => WfoTasksListTabType | undefined;
|
|
2802
|
-
|
|
2803
|
-
declare const WfoWorkflowsListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
2804
|
-
|
|
2805
|
-
declare enum BaseQueryTypes {
|
|
2806
|
-
fetch = "fetch",
|
|
2807
|
-
graphql = "graphql",
|
|
2808
|
-
custom = "custom"
|
|
2809
|
-
}
|
|
2810
|
-
declare enum CacheTags {
|
|
2811
|
-
engineStatus = "engineStatus",
|
|
2812
|
-
processList = "processList",
|
|
2813
|
-
processListSummary = "processListSummary",
|
|
2814
|
-
subscription = "subscription",
|
|
2815
|
-
subscriptionList = "subscriptionList"
|
|
2816
|
-
}
|
|
2817
|
-
declare type ExtraOptions = {
|
|
2818
|
-
baseQueryType?: BaseQueryTypes;
|
|
2819
|
-
apiName?: string;
|
|
2820
|
-
};
|
|
2821
|
-
declare const prepareHeaders: (headers: Headers) => Promise<Headers>;
|
|
2822
|
-
declare const orchestratorApi: _reduxjs_toolkit_query_react.Api<(args: any, api: _reduxjs_toolkit_query_react.BaseQueryApi, extraOptions: ExtraOptions) => {
|
|
2823
|
-
error: _reduxjs_toolkit_query_react.FetchBaseQueryError;
|
|
2824
|
-
data?: undefined;
|
|
2825
|
-
meta?: _reduxjs_toolkit_query_react.FetchBaseQueryMeta | undefined;
|
|
2826
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query_react.FetchBaseQueryError, _reduxjs_toolkit_query_react.FetchBaseQueryMeta>> | {
|
|
2827
|
-
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2828
|
-
data?: undefined;
|
|
2829
|
-
meta?: {} | undefined;
|
|
2830
|
-
} | {
|
|
2831
|
-
error?: undefined;
|
|
2832
|
-
data: unknown;
|
|
2833
|
-
meta?: {} | undefined;
|
|
2834
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, {}, "orchestratorApi", CacheTags, typeof _reduxjs_toolkit_query_react.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
|
|
2835
|
-
|
|
2836
|
-
declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2837
|
-
baseQueryType?: BaseQueryTypes | undefined;
|
|
2838
|
-
apiName?: string | undefined;
|
|
2839
|
-
}) => {
|
|
2840
|
-
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2841
|
-
data?: undefined;
|
|
2842
|
-
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2843
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2844
|
-
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2845
|
-
data?: undefined;
|
|
2846
|
-
meta?: {} | undefined;
|
|
1874
|
+
declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
1875
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
1876
|
+
apiName?: string | undefined;
|
|
1877
|
+
}) => {
|
|
1878
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
1879
|
+
data?: undefined;
|
|
1880
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
1881
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
1882
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
1883
|
+
data?: undefined;
|
|
1884
|
+
meta?: {} | undefined;
|
|
2847
1885
|
} | {
|
|
2848
1886
|
error?: undefined;
|
|
2849
1887
|
data: unknown;
|
|
@@ -3201,151 +2239,1176 @@ declare const useSetEngineStatusMutation: _reduxjs_toolkit_dist_query_react_buil
|
|
|
3201
2239
|
data?: undefined;
|
|
3202
2240
|
meta?: {} | undefined;
|
|
3203
2241
|
} | {
|
|
3204
|
-
error?: undefined;
|
|
3205
|
-
data: unknown;
|
|
3206
|
-
meta?: {} | undefined;
|
|
3207
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
|
|
2242
|
+
error?: undefined;
|
|
2243
|
+
data: unknown;
|
|
2244
|
+
meta?: {} | undefined;
|
|
2245
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
|
|
2246
|
+
|
|
2247
|
+
declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2248
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2249
|
+
apiName?: string | undefined;
|
|
2250
|
+
}) => {
|
|
2251
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2252
|
+
data?: undefined;
|
|
2253
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2254
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2255
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2256
|
+
data?: undefined;
|
|
2257
|
+
meta?: {} | undefined;
|
|
2258
|
+
} | {
|
|
2259
|
+
error?: undefined;
|
|
2260
|
+
data: unknown;
|
|
2261
|
+
meta?: {} | undefined;
|
|
2262
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
|
|
2263
|
+
|
|
2264
|
+
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 metadata\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";
|
|
2265
|
+
declare type SubscriptionDetailResponse = {
|
|
2266
|
+
subscription: SubscriptionDetail;
|
|
2267
|
+
} & BaseGraphQlResult;
|
|
2268
|
+
declare const useGetSubscriptionDetailQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
|
|
2269
|
+
subscriptionId: string;
|
|
2270
|
+
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2271
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2272
|
+
apiName?: string | undefined;
|
|
2273
|
+
}) => {
|
|
2274
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2275
|
+
data?: undefined;
|
|
2276
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2277
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2278
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2279
|
+
data?: undefined;
|
|
2280
|
+
meta?: {} | undefined;
|
|
2281
|
+
} | {
|
|
2282
|
+
error?: undefined;
|
|
2283
|
+
data: unknown;
|
|
2284
|
+
meta?: {} | undefined;
|
|
2285
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDetailResponse, "orchestratorApi">>;
|
|
2286
|
+
|
|
2287
|
+
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";
|
|
2288
|
+
declare type SubscriptionDropdownOptionsResponse = {
|
|
2289
|
+
subscriptionDropdownOptions: SubscriptionDropdownOption[];
|
|
2290
|
+
};
|
|
2291
|
+
declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<SubscriptionDropdownOption>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2292
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2293
|
+
apiName?: string | undefined;
|
|
2294
|
+
}) => {
|
|
2295
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2296
|
+
data?: undefined;
|
|
2297
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2298
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2299
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2300
|
+
data?: undefined;
|
|
2301
|
+
meta?: {} | undefined;
|
|
2302
|
+
} | {
|
|
2303
|
+
error?: undefined;
|
|
2304
|
+
data: unknown;
|
|
2305
|
+
meta?: {} | undefined;
|
|
2306
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
|
|
2307
|
+
|
|
2308
|
+
declare type WorkflowOption = {
|
|
2309
|
+
workflowName: WorkflowDefinition['name'];
|
|
2310
|
+
productName: ProductDefinition['name'];
|
|
2311
|
+
productId: ProductDefinition['productId'];
|
|
2312
|
+
};
|
|
2313
|
+
declare type StartOptionsResponse<StartOption> = {
|
|
2314
|
+
startOptions: StartOption[];
|
|
2315
|
+
};
|
|
2316
|
+
declare type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
|
|
2317
|
+
declare const useGetWorkflowOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2318
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2319
|
+
apiName?: string | undefined;
|
|
2320
|
+
}) => {
|
|
2321
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2322
|
+
data?: undefined;
|
|
2323
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2324
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2325
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2326
|
+
data?: undefined;
|
|
2327
|
+
meta?: {} | undefined;
|
|
2328
|
+
} | {
|
|
2329
|
+
error?: undefined;
|
|
2330
|
+
data: unknown;
|
|
2331
|
+
meta?: {} | undefined;
|
|
2332
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
|
|
2333
|
+
declare const useGetTaskOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
2334
|
+
baseQueryType?: BaseQueryTypes | undefined;
|
|
2335
|
+
apiName?: string | undefined;
|
|
2336
|
+
}) => {
|
|
2337
|
+
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
2338
|
+
data?: undefined;
|
|
2339
|
+
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
2340
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
2341
|
+
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
2342
|
+
data?: undefined;
|
|
2343
|
+
meta?: {} | undefined;
|
|
2344
|
+
} | {
|
|
2345
|
+
error?: undefined;
|
|
2346
|
+
data: unknown;
|
|
2347
|
+
meta?: {} | undefined;
|
|
2348
|
+
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
|
|
2349
|
+
|
|
2350
|
+
declare type ToastState = {
|
|
2351
|
+
messages: Toast[];
|
|
2352
|
+
};
|
|
2353
|
+
declare type ToastMessagesSlice = Slice<ToastState, {
|
|
2354
|
+
addToastMessage: (state: ToastState, action: PayloadAction<Toast>) => ToastState;
|
|
2355
|
+
removeToastMessage: (state: ToastState, action: PayloadAction<Toast['id']>) => ToastState;
|
|
2356
|
+
}, 'toastMessages', 'toastMessages'>;
|
|
2357
|
+
declare const toastMessagesSlice: ToastMessagesSlice;
|
|
2358
|
+
declare const addToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<Toast, "toastMessages/addToastMessage">;
|
|
2359
|
+
declare const removeToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<string, "toastMessages/removeToastMessage">;
|
|
2360
|
+
declare const toastMessagesReducer: Reducer<ToastState>;
|
|
2361
|
+
|
|
2362
|
+
declare type OrchestratorConfigSlice = Slice<OrchestratorConfig>;
|
|
2363
|
+
declare const getOrchestratorConfigSlice: (config: OrchestratorConfig) => OrchestratorConfigSlice;
|
|
2364
|
+
|
|
2365
|
+
declare type CustomApiConfig = {
|
|
2366
|
+
apiName: string;
|
|
2367
|
+
apiBaseUrl: string;
|
|
2368
|
+
};
|
|
2369
|
+
declare type CustomApiSlice = Slice<CustomApiConfig[]>;
|
|
2370
|
+
declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
|
|
2371
|
+
|
|
2372
|
+
declare type RootState = {
|
|
2373
|
+
orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
|
|
2374
|
+
toastMessages: ReturnType<typeof toastMessagesReducer>;
|
|
2375
|
+
orchestratorConfig: OrchestratorConfig;
|
|
2376
|
+
customApis: CustomApiConfig[];
|
|
2377
|
+
};
|
|
2378
|
+
declare const getOrchestratorStore: (orchestratorConfig: OrchestratorConfig, customApis: CustomApiConfig[]) => EnhancedStore<RootState>;
|
|
2379
|
+
declare type AppDispatch = Dispatch<UnknownAction>;
|
|
2380
|
+
|
|
2381
|
+
declare type StoreProviderProps = {
|
|
2382
|
+
initialOrchestratorConfig: OrchestratorConfig;
|
|
2383
|
+
customApis?: CustomApiConfig[];
|
|
2384
|
+
children: ReactNode;
|
|
2385
|
+
};
|
|
2386
|
+
declare const StoreProvider: ({ initialOrchestratorConfig, customApis, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2387
|
+
|
|
2388
|
+
declare type SubscriptionListResponse = {
|
|
2389
|
+
subscriptions: Subscription[];
|
|
2390
|
+
} & BaseGraphQlResult;
|
|
2391
|
+
|
|
2392
|
+
declare type SubscriptionListItem = Pick<Subscription, 'subscriptionId' | 'description' | 'status' | 'insync' | 'note'> & {
|
|
2393
|
+
startDate: Date | null;
|
|
2394
|
+
endDate: Date | null;
|
|
2395
|
+
productName: string;
|
|
2396
|
+
tag: string | null;
|
|
2397
|
+
customerFullname: string;
|
|
2398
|
+
customerShortcode: string;
|
|
2399
|
+
metadata: object | null;
|
|
2400
|
+
};
|
|
2401
|
+
declare const mapGraphQlSubscriptionsResultToPageInfo: (graphqlResponse: SubscriptionListResponse) => GraphQLPageInfo;
|
|
2402
|
+
declare const mapGraphQlSubscriptionsResultToSubscriptionListItems: (graphqlResponse: SubscriptionListResponse) => SubscriptionListItem[];
|
|
2403
|
+
|
|
2404
|
+
declare enum WfoSubscriptionListTab {
|
|
2405
|
+
ACTIVE = "ACTIVE",
|
|
2406
|
+
TERMINATED = "TERMINATED",
|
|
2407
|
+
TRANSIENT = "TRANSIENT",
|
|
2408
|
+
ALL = "ALL"
|
|
2409
|
+
}
|
|
2410
|
+
declare const subscriptionListTabs: WfoFilterTab<WfoSubscriptionListTab, SubscriptionListItem>[];
|
|
2411
|
+
|
|
2412
|
+
declare type WfoSubscriptionsListProps = {
|
|
2413
|
+
alwaysOnFilters?: FilterQuery<SubscriptionListItem>[];
|
|
2414
|
+
dataDisplayParams: DataDisplayParams<SubscriptionListItem>;
|
|
2415
|
+
setDataDisplayParam: <DisplayParamKey extends keyof DataDisplayParams<SubscriptionListItem>>(prop: DisplayParamKey, value: DataDisplayParams<SubscriptionListItem>[DisplayParamKey]) => void;
|
|
2416
|
+
hiddenColumns: TableColumnKeys<SubscriptionListItem> | undefined;
|
|
2417
|
+
};
|
|
2418
|
+
declare const WfoSubscriptionsList: FC<WfoSubscriptionsListProps>;
|
|
2419
|
+
|
|
2420
|
+
declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
|
|
2421
|
+
declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
|
|
2422
|
+
|
|
2423
|
+
declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
|
|
2424
|
+
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
2425
|
+
pydanticForms: {
|
|
2426
|
+
backendTranslations: Record<string, string>;
|
|
2427
|
+
userInputForm: {
|
|
2428
|
+
cancel: string;
|
|
2429
|
+
submit: string;
|
|
2430
|
+
previous: string;
|
|
2431
|
+
previousQuestion: string;
|
|
2432
|
+
startTask: string;
|
|
2433
|
+
startWorkflow: string;
|
|
2434
|
+
resumeTask: string;
|
|
2435
|
+
resumeWorkflow: string;
|
|
2436
|
+
inputFieldsHaveValidationErrors: string;
|
|
2437
|
+
};
|
|
2438
|
+
widgets: {
|
|
2439
|
+
customer: {
|
|
2440
|
+
placeholder: string;
|
|
2441
|
+
loading: string;
|
|
2442
|
+
};
|
|
2443
|
+
contactPersonName: {
|
|
2444
|
+
placeholder: string;
|
|
2445
|
+
};
|
|
2446
|
+
ipvAnyNetworkField: {
|
|
2447
|
+
manuallySelectedPrefix: string;
|
|
2448
|
+
};
|
|
2449
|
+
node_select: {
|
|
2450
|
+
nodes_loading: string;
|
|
2451
|
+
select_node: string;
|
|
2452
|
+
no_nodes_placeholder: string;
|
|
2453
|
+
};
|
|
2454
|
+
locationCode: {
|
|
2455
|
+
placeholder: string;
|
|
2456
|
+
};
|
|
2457
|
+
product: {
|
|
2458
|
+
placeholder: string;
|
|
2459
|
+
};
|
|
2460
|
+
select: {
|
|
2461
|
+
placeholder: string;
|
|
2462
|
+
};
|
|
2463
|
+
vlan: {
|
|
2464
|
+
vlansInUseError: string;
|
|
2465
|
+
vlansInUse: string;
|
|
2466
|
+
missingInIms: string;
|
|
2467
|
+
nsiVlansAvailable: string;
|
|
2468
|
+
nsiNoPortsAvailable: string;
|
|
2469
|
+
allPortsAvailable: string;
|
|
2470
|
+
placeholder: string;
|
|
2471
|
+
placeholderNoServicePort: string;
|
|
2472
|
+
invalidVlan: string;
|
|
2473
|
+
untaggedPortInUse: string;
|
|
2474
|
+
taggedOnly: string;
|
|
2475
|
+
loadingIms: string;
|
|
2476
|
+
};
|
|
2477
|
+
subscription: {
|
|
2478
|
+
placeholder: string;
|
|
2479
|
+
loading: string;
|
|
2480
|
+
};
|
|
2481
|
+
nodePort: {
|
|
2482
|
+
loadingNodes: string;
|
|
2483
|
+
loadingPorts: string;
|
|
2484
|
+
selectNode: string;
|
|
2485
|
+
selectPort: string;
|
|
2486
|
+
selectNodeFirst: string;
|
|
2487
|
+
};
|
|
2488
|
+
};
|
|
2489
|
+
} | {
|
|
2490
|
+
backendTranslations: Record<string, string>;
|
|
2491
|
+
userInputForm: {
|
|
2492
|
+
cancel: string;
|
|
2493
|
+
submit: string;
|
|
2494
|
+
previous: string;
|
|
2495
|
+
startTask: string;
|
|
2496
|
+
previousQuestion: string;
|
|
2497
|
+
startWorkflow: string;
|
|
2498
|
+
resumeTask: string;
|
|
2499
|
+
resumeWorkflow: string;
|
|
2500
|
+
inputFieldsHaveValidationErrors: string;
|
|
2501
|
+
};
|
|
2502
|
+
widgets: {
|
|
2503
|
+
customer: {
|
|
2504
|
+
placeholder: string;
|
|
2505
|
+
loading: string;
|
|
2506
|
+
};
|
|
2507
|
+
contactPersonName: {
|
|
2508
|
+
placeholder: string;
|
|
2509
|
+
};
|
|
2510
|
+
ipvAnyNetworkField: {
|
|
2511
|
+
manuallySelectedPrefix: string;
|
|
2512
|
+
};
|
|
2513
|
+
node_select: {
|
|
2514
|
+
nodes_loading: string;
|
|
2515
|
+
select_node: string;
|
|
2516
|
+
no_nodes_placeholder: string;
|
|
2517
|
+
};
|
|
2518
|
+
locationCode: {
|
|
2519
|
+
placeholder: string;
|
|
2520
|
+
};
|
|
2521
|
+
product: {
|
|
2522
|
+
placeholder: string;
|
|
2523
|
+
};
|
|
2524
|
+
select: {
|
|
2525
|
+
placeholder: string;
|
|
2526
|
+
};
|
|
2527
|
+
vlan: {
|
|
2528
|
+
vlansInUseError: string;
|
|
2529
|
+
vlansInUse: string;
|
|
2530
|
+
missingInIms: string;
|
|
2531
|
+
nsiVlansAvailable: string;
|
|
2532
|
+
nsiNoPortsAvailable: string;
|
|
2533
|
+
allPortsAvailable: string;
|
|
2534
|
+
placeholder: string;
|
|
2535
|
+
placeholderNoServicePort: string;
|
|
2536
|
+
invalidVlan: string;
|
|
2537
|
+
untaggedPortInUse: string;
|
|
2538
|
+
taggedOnly: string;
|
|
2539
|
+
loadingIms: string;
|
|
2540
|
+
};
|
|
2541
|
+
subscription: {
|
|
2542
|
+
placeholder: string;
|
|
2543
|
+
loading: string;
|
|
2544
|
+
};
|
|
2545
|
+
nodePort: {
|
|
2546
|
+
loadingNodes: string;
|
|
2547
|
+
loadingPorts: string;
|
|
2548
|
+
selectNode: string;
|
|
2549
|
+
selectPort: string;
|
|
2550
|
+
selectNodeFirst: string;
|
|
2551
|
+
};
|
|
2552
|
+
};
|
|
2553
|
+
};
|
|
2554
|
+
main: {
|
|
2555
|
+
metadata: string;
|
|
2556
|
+
metadataProducts: string;
|
|
2557
|
+
metadataProductblocks: string;
|
|
2558
|
+
metadataResourceTypes: string;
|
|
2559
|
+
metadataWorkflows: string;
|
|
2560
|
+
mobileTitle: string;
|
|
2561
|
+
settings: string;
|
|
2562
|
+
start: string;
|
|
2563
|
+
subscriptions: string;
|
|
2564
|
+
tasks: string;
|
|
2565
|
+
title: string;
|
|
2566
|
+
welcome: string;
|
|
2567
|
+
workflows: string;
|
|
2568
|
+
darkMode: string;
|
|
2569
|
+
lightMode: string;
|
|
2570
|
+
websocketConnected: string;
|
|
2571
|
+
websocketDisconnected: string;
|
|
2572
|
+
};
|
|
2573
|
+
common: {
|
|
2574
|
+
product: string;
|
|
2575
|
+
deselect: string;
|
|
2576
|
+
close: string;
|
|
2577
|
+
editColumns: string;
|
|
2578
|
+
loading: string;
|
|
2579
|
+
newSubscription: string;
|
|
2580
|
+
newTask: string;
|
|
2581
|
+
noFailedTasks: string;
|
|
2582
|
+
noItemsFound: string;
|
|
2583
|
+
search: string;
|
|
2584
|
+
errorMessage: string;
|
|
2585
|
+
export: string;
|
|
2586
|
+
unauthorizedPage: string;
|
|
2587
|
+
insyncTrue: string;
|
|
2588
|
+
insyncFalse: string;
|
|
2589
|
+
};
|
|
2590
|
+
confirmationDialog: {
|
|
2591
|
+
title: string;
|
|
2592
|
+
confirm: string;
|
|
2593
|
+
cancel: string;
|
|
2594
|
+
leavePage: string;
|
|
2595
|
+
leavePageSub: string;
|
|
2596
|
+
stay: string;
|
|
2597
|
+
leave: string;
|
|
2598
|
+
};
|
|
2599
|
+
workflow: {
|
|
2600
|
+
start_workflow_title: string;
|
|
2601
|
+
};
|
|
2602
|
+
errors: {
|
|
2603
|
+
notAllResultsExported: string;
|
|
2604
|
+
notAllResultsExportedTitle: string;
|
|
2605
|
+
invalidQueryParts: string;
|
|
2606
|
+
notAllowedWhenEngineIsNotRunningMessage: string;
|
|
2607
|
+
notAllowedWhenEngineIsNotRunningTitle: string;
|
|
2608
|
+
retrieve_stored_settings: string;
|
|
2609
|
+
retrieve_stored_settings_title: string;
|
|
2610
|
+
};
|
|
2611
|
+
metadata: {
|
|
2612
|
+
title: string;
|
|
2613
|
+
tabs: {
|
|
2614
|
+
products: string;
|
|
2615
|
+
productBlocks: string;
|
|
2616
|
+
resourceTypes: string;
|
|
2617
|
+
workflows: string;
|
|
2618
|
+
};
|
|
2619
|
+
products: {
|
|
2620
|
+
id: string;
|
|
2621
|
+
name: string;
|
|
2622
|
+
tag: string;
|
|
2623
|
+
description: string;
|
|
2624
|
+
productType: string;
|
|
2625
|
+
status: string;
|
|
2626
|
+
productBlocks: string;
|
|
2627
|
+
fixedInputs: string;
|
|
2628
|
+
createdAt: string;
|
|
2629
|
+
};
|
|
2630
|
+
productBlocks: {
|
|
2631
|
+
id: string;
|
|
2632
|
+
name: string;
|
|
2633
|
+
description: string;
|
|
2634
|
+
tag: string;
|
|
2635
|
+
status: string;
|
|
2636
|
+
resourceTypes: string;
|
|
2637
|
+
dependingProductBlocks: string;
|
|
2638
|
+
createdAt: string;
|
|
2639
|
+
endDate: string;
|
|
2640
|
+
parentIds: string;
|
|
2641
|
+
};
|
|
2642
|
+
resourceTypes: {
|
|
2643
|
+
type: string;
|
|
2644
|
+
description: string;
|
|
2645
|
+
resourceId: string;
|
|
2646
|
+
usedInProductBlocks: string;
|
|
2647
|
+
};
|
|
2648
|
+
workflows: {
|
|
2649
|
+
name: string;
|
|
2650
|
+
description: string;
|
|
2651
|
+
target: string;
|
|
2652
|
+
productTags: string;
|
|
2653
|
+
createdAt: string;
|
|
2654
|
+
};
|
|
2655
|
+
};
|
|
2656
|
+
processes: {
|
|
2657
|
+
index: {
|
|
2658
|
+
workflowName: string;
|
|
2659
|
+
step: string;
|
|
2660
|
+
status: string;
|
|
2661
|
+
product: string;
|
|
2662
|
+
customer: string;
|
|
2663
|
+
customerAbbreviation: string;
|
|
2664
|
+
subscriptions: string;
|
|
2665
|
+
createdBy: string;
|
|
2666
|
+
assignee: string;
|
|
2667
|
+
processId: string;
|
|
2668
|
+
started: string;
|
|
2669
|
+
lastModified: string;
|
|
2670
|
+
workflowTarget: string;
|
|
2671
|
+
productTag: string;
|
|
2672
|
+
};
|
|
2673
|
+
detail: {
|
|
2674
|
+
retry: string;
|
|
2675
|
+
resume: string;
|
|
2676
|
+
abort: string;
|
|
2677
|
+
delete: string;
|
|
2678
|
+
deleteQuestion: string;
|
|
2679
|
+
abortTaskQuestion: string;
|
|
2680
|
+
abortWorkflowQuestion: string;
|
|
2681
|
+
retryTaskQuestion: string;
|
|
2682
|
+
retryWorkflowQuestion: string;
|
|
2683
|
+
status: string;
|
|
2684
|
+
startedBy: string;
|
|
2685
|
+
lastStep: string;
|
|
2686
|
+
startedOn: string;
|
|
2687
|
+
lastUpdate: string;
|
|
2688
|
+
relatedSubscriptions: string;
|
|
2689
|
+
subscriptions: string;
|
|
2690
|
+
customer: string;
|
|
2691
|
+
};
|
|
2692
|
+
steps: {
|
|
2693
|
+
taskSteps: string;
|
|
2694
|
+
workflowSteps: string;
|
|
2695
|
+
showDelta: string;
|
|
2696
|
+
hideDelta: string;
|
|
2697
|
+
viewOptions: string;
|
|
2698
|
+
expandAll: string;
|
|
2699
|
+
collapseAll: string;
|
|
2700
|
+
duration: string;
|
|
2701
|
+
userInput: string;
|
|
2702
|
+
submitTaskFormLabel: string;
|
|
2703
|
+
submitWorkflowFormLabel: string;
|
|
2704
|
+
};
|
|
2705
|
+
delta: {
|
|
2706
|
+
title: string;
|
|
2707
|
+
};
|
|
2708
|
+
};
|
|
2709
|
+
workflows: {
|
|
2710
|
+
tabs: {
|
|
2711
|
+
active: string;
|
|
2712
|
+
completed: string;
|
|
2713
|
+
};
|
|
2714
|
+
index: {
|
|
2715
|
+
title: string;
|
|
2716
|
+
};
|
|
2717
|
+
};
|
|
2718
|
+
subscriptions: {
|
|
2719
|
+
tabs: {
|
|
2720
|
+
active: string;
|
|
2721
|
+
terminated: string;
|
|
2722
|
+
transient: string;
|
|
2723
|
+
all: string;
|
|
2724
|
+
};
|
|
2725
|
+
index: {
|
|
2726
|
+
id: string;
|
|
2727
|
+
description: string;
|
|
2728
|
+
status: string;
|
|
2729
|
+
insync: string;
|
|
2730
|
+
product: string;
|
|
2731
|
+
tag: string;
|
|
2732
|
+
startDate: string;
|
|
2733
|
+
endDate: string;
|
|
2734
|
+
metadata: string;
|
|
2735
|
+
note: string;
|
|
2736
|
+
customerFullname: string;
|
|
2737
|
+
customerShortcode: string;
|
|
2738
|
+
};
|
|
2739
|
+
detail: {
|
|
2740
|
+
title: string;
|
|
2741
|
+
tabs: {
|
|
2742
|
+
general: string;
|
|
2743
|
+
serviceConfiguration: string;
|
|
2744
|
+
workflows: string;
|
|
2745
|
+
relatedSubscriptions: string;
|
|
2746
|
+
};
|
|
2747
|
+
loadingStatus: string;
|
|
2748
|
+
actions: {
|
|
2749
|
+
create: string;
|
|
2750
|
+
modify: string;
|
|
2751
|
+
tasks: string;
|
|
2752
|
+
terminate: string;
|
|
2753
|
+
actions: string;
|
|
2754
|
+
subscription: {
|
|
2755
|
+
no_modify_deleted_related_objects: string;
|
|
2756
|
+
no_modify_in_use_by_subscription: string;
|
|
2757
|
+
no_modify_invalid_status: string;
|
|
2758
|
+
no_modify_workflow: string;
|
|
2759
|
+
no_termination_workflow: string;
|
|
2760
|
+
no_validate_workflow: string;
|
|
2761
|
+
not_in_sync: string;
|
|
2762
|
+
relations_not_in_sync: string;
|
|
2763
|
+
no_modify_subscription_in_use_by_others: string;
|
|
2764
|
+
};
|
|
2765
|
+
};
|
|
2766
|
+
subscriptionInstanceId: string;
|
|
2767
|
+
ownerSubscriptionId: string;
|
|
2768
|
+
inUseByRelations: string;
|
|
2769
|
+
showDetails: string;
|
|
2770
|
+
self: string;
|
|
2771
|
+
hideDetails: string;
|
|
2772
|
+
subscriptionDetails: string;
|
|
2773
|
+
productName: string;
|
|
2774
|
+
fixedInputs: string;
|
|
2775
|
+
productInfo: string;
|
|
2776
|
+
noProductBlockSelected: string;
|
|
2777
|
+
productBlocks: string;
|
|
2778
|
+
ctaSelectProductBlock: string;
|
|
2779
|
+
startedBy: string;
|
|
2780
|
+
startedAt: string;
|
|
2781
|
+
status: string;
|
|
2782
|
+
id: string;
|
|
2783
|
+
blockTitleSubscriptionDetails: string;
|
|
2784
|
+
blockTitleFixedInputs: string;
|
|
2785
|
+
blockTitleProductInfo: string;
|
|
2786
|
+
subscriptionId: string;
|
|
2787
|
+
description: string;
|
|
2788
|
+
startDate: string;
|
|
2789
|
+
insync: string;
|
|
2790
|
+
customer: string;
|
|
2791
|
+
customerUuid: string;
|
|
2792
|
+
name: string;
|
|
2793
|
+
productType: string;
|
|
2794
|
+
tag: string;
|
|
2795
|
+
created: string;
|
|
2796
|
+
endDate: string;
|
|
2797
|
+
metadata: string;
|
|
2798
|
+
note: string;
|
|
2799
|
+
noRelatedSubscriptions: string;
|
|
2800
|
+
hideTerminatedRelatedSubscriptions: string;
|
|
2801
|
+
processDetail: {
|
|
2802
|
+
id: string;
|
|
2803
|
+
status: string;
|
|
2804
|
+
startedAt: string;
|
|
2805
|
+
startedBy: string;
|
|
2806
|
+
};
|
|
2807
|
+
showAll: string;
|
|
2808
|
+
hideAll: string;
|
|
2809
|
+
see: string;
|
|
2810
|
+
setInSync: string;
|
|
2811
|
+
setInSyncQuestion: string;
|
|
2812
|
+
setInSyncFailed: {
|
|
2813
|
+
title: string;
|
|
2814
|
+
text: string;
|
|
2815
|
+
};
|
|
2816
|
+
setInSyncSuccess: {
|
|
2817
|
+
title: string;
|
|
2818
|
+
text: string;
|
|
2819
|
+
};
|
|
2820
|
+
};
|
|
2821
|
+
};
|
|
2822
|
+
tasks: {
|
|
2823
|
+
page: {
|
|
2824
|
+
taskName: string;
|
|
2825
|
+
rerunAll: string;
|
|
2826
|
+
rerunAllQuestion: string;
|
|
2827
|
+
};
|
|
2828
|
+
tabs: {
|
|
2829
|
+
active: string;
|
|
2830
|
+
completed: string;
|
|
2831
|
+
};
|
|
2832
|
+
};
|
|
2833
|
+
settings: {
|
|
2834
|
+
page: {
|
|
2835
|
+
flushButton: string;
|
|
2836
|
+
flushCacheSettingsTitle: string;
|
|
2837
|
+
engineStatus: string;
|
|
2838
|
+
modifyEngine: string;
|
|
2839
|
+
pauseEngine: string;
|
|
2840
|
+
runningProcesses: string;
|
|
2841
|
+
selectSettings: string;
|
|
2842
|
+
startEngine: string;
|
|
2843
|
+
resetTextSearchIndex: string;
|
|
2844
|
+
resetTextSearchIndexButton: string;
|
|
2845
|
+
};
|
|
2846
|
+
};
|
|
2847
|
+
startPage: {
|
|
2848
|
+
activeSubscriptions: {
|
|
2849
|
+
buttonText: string;
|
|
2850
|
+
headerTitle: string;
|
|
2851
|
+
listTitle: string;
|
|
2852
|
+
};
|
|
2853
|
+
outOfSyncSubscriptions: {
|
|
2854
|
+
buttonText: string;
|
|
2855
|
+
headerTitle: string;
|
|
2856
|
+
listTitle: string;
|
|
2857
|
+
};
|
|
2858
|
+
activeWorkflows: {
|
|
2859
|
+
buttonText: string;
|
|
2860
|
+
headerTitle: string;
|
|
2861
|
+
listTitle: string;
|
|
2862
|
+
};
|
|
2863
|
+
failedTasks: {
|
|
2864
|
+
buttonText: string;
|
|
2865
|
+
headerTitle: string;
|
|
2866
|
+
listTitle: string;
|
|
2867
|
+
};
|
|
2868
|
+
products: {
|
|
2869
|
+
headerTitle: string;
|
|
2870
|
+
listTitle: string;
|
|
2871
|
+
};
|
|
2872
|
+
};
|
|
2873
|
+
} | {
|
|
2874
|
+
pydanticForms: {
|
|
2875
|
+
backendTranslations: Record<string, string>;
|
|
2876
|
+
userInputForm: {
|
|
2877
|
+
cancel: string;
|
|
2878
|
+
submit: string;
|
|
2879
|
+
previous: string;
|
|
2880
|
+
previousQuestion: string;
|
|
2881
|
+
startTask: string;
|
|
2882
|
+
startWorkflow: string;
|
|
2883
|
+
resumeTask: string;
|
|
2884
|
+
resumeWorkflow: string;
|
|
2885
|
+
inputFieldsHaveValidationErrors: string;
|
|
2886
|
+
};
|
|
2887
|
+
widgets: {
|
|
2888
|
+
customer: {
|
|
2889
|
+
placeholder: string;
|
|
2890
|
+
loading: string;
|
|
2891
|
+
};
|
|
2892
|
+
contactPersonName: {
|
|
2893
|
+
placeholder: string;
|
|
2894
|
+
};
|
|
2895
|
+
ipvAnyNetworkField: {
|
|
2896
|
+
manuallySelectedPrefix: string;
|
|
2897
|
+
};
|
|
2898
|
+
node_select: {
|
|
2899
|
+
nodes_loading: string;
|
|
2900
|
+
select_node: string;
|
|
2901
|
+
no_nodes_placeholder: string;
|
|
2902
|
+
};
|
|
2903
|
+
locationCode: {
|
|
2904
|
+
placeholder: string;
|
|
2905
|
+
};
|
|
2906
|
+
product: {
|
|
2907
|
+
placeholder: string;
|
|
2908
|
+
};
|
|
2909
|
+
select: {
|
|
2910
|
+
placeholder: string;
|
|
2911
|
+
};
|
|
2912
|
+
vlan: {
|
|
2913
|
+
vlansInUseError: string;
|
|
2914
|
+
vlansInUse: string;
|
|
2915
|
+
missingInIms: string;
|
|
2916
|
+
nsiVlansAvailable: string;
|
|
2917
|
+
nsiNoPortsAvailable: string;
|
|
2918
|
+
allPortsAvailable: string;
|
|
2919
|
+
placeholder: string;
|
|
2920
|
+
placeholderNoServicePort: string;
|
|
2921
|
+
invalidVlan: string;
|
|
2922
|
+
untaggedPortInUse: string;
|
|
2923
|
+
taggedOnly: string;
|
|
2924
|
+
loadingIms: string;
|
|
2925
|
+
};
|
|
2926
|
+
subscription: {
|
|
2927
|
+
placeholder: string;
|
|
2928
|
+
loading: string;
|
|
2929
|
+
};
|
|
2930
|
+
nodePort: {
|
|
2931
|
+
loadingNodes: string;
|
|
2932
|
+
loadingPorts: string;
|
|
2933
|
+
selectNode: string;
|
|
2934
|
+
selectPort: string;
|
|
2935
|
+
selectNodeFirst: string;
|
|
2936
|
+
};
|
|
2937
|
+
};
|
|
2938
|
+
} | {
|
|
2939
|
+
backendTranslations: Record<string, string>;
|
|
2940
|
+
userInputForm: {
|
|
2941
|
+
cancel: string;
|
|
2942
|
+
submit: string;
|
|
2943
|
+
previous: string;
|
|
2944
|
+
startTask: string;
|
|
2945
|
+
previousQuestion: string;
|
|
2946
|
+
startWorkflow: string;
|
|
2947
|
+
resumeTask: string;
|
|
2948
|
+
resumeWorkflow: string;
|
|
2949
|
+
inputFieldsHaveValidationErrors: string;
|
|
2950
|
+
};
|
|
2951
|
+
widgets: {
|
|
2952
|
+
customer: {
|
|
2953
|
+
placeholder: string;
|
|
2954
|
+
loading: string;
|
|
2955
|
+
};
|
|
2956
|
+
contactPersonName: {
|
|
2957
|
+
placeholder: string;
|
|
2958
|
+
};
|
|
2959
|
+
ipvAnyNetworkField: {
|
|
2960
|
+
manuallySelectedPrefix: string;
|
|
2961
|
+
};
|
|
2962
|
+
node_select: {
|
|
2963
|
+
nodes_loading: string;
|
|
2964
|
+
select_node: string;
|
|
2965
|
+
no_nodes_placeholder: string;
|
|
2966
|
+
};
|
|
2967
|
+
locationCode: {
|
|
2968
|
+
placeholder: string;
|
|
2969
|
+
};
|
|
2970
|
+
product: {
|
|
2971
|
+
placeholder: string;
|
|
2972
|
+
};
|
|
2973
|
+
select: {
|
|
2974
|
+
placeholder: string;
|
|
2975
|
+
};
|
|
2976
|
+
vlan: {
|
|
2977
|
+
vlansInUseError: string;
|
|
2978
|
+
vlansInUse: string;
|
|
2979
|
+
missingInIms: string;
|
|
2980
|
+
nsiVlansAvailable: string;
|
|
2981
|
+
nsiNoPortsAvailable: string;
|
|
2982
|
+
allPortsAvailable: string;
|
|
2983
|
+
placeholder: string;
|
|
2984
|
+
placeholderNoServicePort: string;
|
|
2985
|
+
invalidVlan: string;
|
|
2986
|
+
untaggedPortInUse: string;
|
|
2987
|
+
taggedOnly: string;
|
|
2988
|
+
loadingIms: string;
|
|
2989
|
+
};
|
|
2990
|
+
subscription: {
|
|
2991
|
+
placeholder: string;
|
|
2992
|
+
loading: string;
|
|
2993
|
+
};
|
|
2994
|
+
nodePort: {
|
|
2995
|
+
loadingNodes: string;
|
|
2996
|
+
loadingPorts: string;
|
|
2997
|
+
selectNode: string;
|
|
2998
|
+
selectPort: string;
|
|
2999
|
+
selectNodeFirst: string;
|
|
3000
|
+
};
|
|
3001
|
+
};
|
|
3002
|
+
};
|
|
3003
|
+
main: {
|
|
3004
|
+
metadata: string;
|
|
3005
|
+
metadataProducts: string;
|
|
3006
|
+
metadataProductblocks: string;
|
|
3007
|
+
metadataResourceTypes: string;
|
|
3008
|
+
metadataWorkflows: string;
|
|
3009
|
+
mobileTitle: string;
|
|
3010
|
+
settings: string;
|
|
3011
|
+
start: string;
|
|
3012
|
+
subscriptions: string;
|
|
3013
|
+
tasks: string;
|
|
3014
|
+
title: string;
|
|
3015
|
+
welcome: string;
|
|
3016
|
+
workflows: string;
|
|
3017
|
+
darkMode: string;
|
|
3018
|
+
lightMode: string;
|
|
3019
|
+
websocketConnected: string;
|
|
3020
|
+
websocketDisconnected: string;
|
|
3021
|
+
};
|
|
3022
|
+
common: {
|
|
3023
|
+
product: string;
|
|
3024
|
+
deselect: string;
|
|
3025
|
+
close: string;
|
|
3026
|
+
editColumns: string;
|
|
3027
|
+
loading: string;
|
|
3028
|
+
newSubscription: string;
|
|
3029
|
+
newTask: string;
|
|
3030
|
+
noFailedTasks: string;
|
|
3031
|
+
noItemsFound: string;
|
|
3032
|
+
search: string;
|
|
3033
|
+
errorMessage: string;
|
|
3034
|
+
export: string;
|
|
3035
|
+
unauthorizedPage: string;
|
|
3036
|
+
insyncTrue: string;
|
|
3037
|
+
insyncFalse: string;
|
|
3038
|
+
};
|
|
3039
|
+
confirmationDialog: {
|
|
3040
|
+
title: string;
|
|
3041
|
+
confirm: string;
|
|
3042
|
+
cancel: string;
|
|
3043
|
+
leavePage: string;
|
|
3044
|
+
leavePageSub: string;
|
|
3045
|
+
stay: string;
|
|
3046
|
+
leave: string;
|
|
3047
|
+
};
|
|
3048
|
+
workflow: {
|
|
3049
|
+
start_workflow_title: string;
|
|
3050
|
+
};
|
|
3051
|
+
errors: {
|
|
3052
|
+
notAllResultsExported: string;
|
|
3053
|
+
notAllResultsExportedTitle: string;
|
|
3054
|
+
invalidQueryParts: string;
|
|
3055
|
+
notAllowedWhenEngineIsNotRunningMessage: string;
|
|
3056
|
+
notAllowedWhenEngineIsNotRunningTitle: string;
|
|
3057
|
+
retrieve_stored_settings: string;
|
|
3058
|
+
retrieve_stored_settings_title: string;
|
|
3059
|
+
};
|
|
3060
|
+
metadata: {
|
|
3061
|
+
tabs: {
|
|
3062
|
+
products: string;
|
|
3063
|
+
productBlocks: string;
|
|
3064
|
+
resourceTypes: string;
|
|
3065
|
+
workflows: string;
|
|
3066
|
+
};
|
|
3067
|
+
products: {
|
|
3068
|
+
id: string;
|
|
3069
|
+
name: string;
|
|
3070
|
+
description: string;
|
|
3071
|
+
tag: string;
|
|
3072
|
+
productType: string;
|
|
3073
|
+
status: string;
|
|
3074
|
+
productBlocks: string;
|
|
3075
|
+
fixedInputs: string;
|
|
3076
|
+
createdAt: string;
|
|
3077
|
+
};
|
|
3078
|
+
productBlocks: {
|
|
3079
|
+
id: string;
|
|
3080
|
+
name: string;
|
|
3081
|
+
description: string;
|
|
3082
|
+
tag: string;
|
|
3083
|
+
status: string;
|
|
3084
|
+
resourceTypes: string;
|
|
3085
|
+
dependingProductBlocks: string;
|
|
3086
|
+
createdAt: string;
|
|
3087
|
+
endDate: string;
|
|
3088
|
+
parentIds: string;
|
|
3089
|
+
};
|
|
3090
|
+
resourceTypes: {
|
|
3091
|
+
type: string;
|
|
3092
|
+
description: string;
|
|
3093
|
+
resourceId: string;
|
|
3094
|
+
usedInProductBlocks: string;
|
|
3095
|
+
};
|
|
3096
|
+
workflows: {
|
|
3097
|
+
name: string;
|
|
3098
|
+
description: string;
|
|
3099
|
+
target: string;
|
|
3100
|
+
productTags: string;
|
|
3101
|
+
createdAt: string;
|
|
3102
|
+
};
|
|
3103
|
+
};
|
|
3104
|
+
processes: {
|
|
3105
|
+
index: {
|
|
3106
|
+
workflowName: string;
|
|
3107
|
+
step: string;
|
|
3108
|
+
status: string;
|
|
3109
|
+
product: string;
|
|
3110
|
+
customer: string;
|
|
3111
|
+
customerAbbreviation: string;
|
|
3112
|
+
subscriptions: string;
|
|
3113
|
+
createdBy: string;
|
|
3114
|
+
assignee: string;
|
|
3115
|
+
processId: string;
|
|
3116
|
+
started: string;
|
|
3117
|
+
lastModified: string;
|
|
3118
|
+
workflowTarget: string;
|
|
3119
|
+
productTag: string;
|
|
3120
|
+
};
|
|
3121
|
+
detail: {
|
|
3122
|
+
retry: string;
|
|
3123
|
+
resume: string;
|
|
3124
|
+
abort: string;
|
|
3125
|
+
delete: string;
|
|
3126
|
+
deleteQuestion: string;
|
|
3127
|
+
abortTaskQuestion: string;
|
|
3128
|
+
abortWorkflowQuestion: string;
|
|
3129
|
+
retryTaskQuestion: string;
|
|
3130
|
+
retryWorkflowQuestion: string;
|
|
3131
|
+
status: string;
|
|
3132
|
+
startedBy: string;
|
|
3133
|
+
lastStep: string;
|
|
3134
|
+
startedOn: string;
|
|
3135
|
+
lastUpdate: string;
|
|
3136
|
+
relatedSubscriptions: string;
|
|
3137
|
+
subscriptions: string;
|
|
3138
|
+
customer: string;
|
|
3139
|
+
};
|
|
3140
|
+
steps: {
|
|
3141
|
+
steps: string;
|
|
3142
|
+
showDelta: string;
|
|
3143
|
+
hideDelta: string;
|
|
3144
|
+
viewOptions: string;
|
|
3145
|
+
expandAll: string;
|
|
3146
|
+
collapseAll: string;
|
|
3147
|
+
duration: string;
|
|
3148
|
+
userInput: string;
|
|
3149
|
+
submitTaskFormLabel: string;
|
|
3150
|
+
submitWorkflowFormLabel: string;
|
|
3151
|
+
};
|
|
3152
|
+
delta: {
|
|
3153
|
+
title: string;
|
|
3154
|
+
};
|
|
3155
|
+
};
|
|
3156
|
+
workflows: {
|
|
3157
|
+
tabs: {
|
|
3158
|
+
active: string;
|
|
3159
|
+
completed: string;
|
|
3160
|
+
};
|
|
3161
|
+
index: {
|
|
3162
|
+
title: string;
|
|
3163
|
+
};
|
|
3164
|
+
};
|
|
3165
|
+
subscriptions: {
|
|
3166
|
+
tabs: {
|
|
3167
|
+
active: string;
|
|
3168
|
+
terminated: string;
|
|
3169
|
+
transient: string;
|
|
3170
|
+
all: string;
|
|
3171
|
+
};
|
|
3172
|
+
index: {
|
|
3173
|
+
id: string;
|
|
3174
|
+
description: string;
|
|
3175
|
+
status: string;
|
|
3176
|
+
insync: string;
|
|
3177
|
+
product: string;
|
|
3178
|
+
tag: string;
|
|
3179
|
+
startDate: string;
|
|
3180
|
+
endDate: string;
|
|
3181
|
+
note: string;
|
|
3182
|
+
metadata: string;
|
|
3183
|
+
customerFullName: string;
|
|
3184
|
+
customerAbbreviation: string;
|
|
3185
|
+
};
|
|
3186
|
+
detail: {
|
|
3187
|
+
title: string;
|
|
3188
|
+
tabs: {
|
|
3189
|
+
general: string;
|
|
3190
|
+
serviceConfiguration: string;
|
|
3191
|
+
workflows: string;
|
|
3192
|
+
relatedSubscriptions: string;
|
|
3193
|
+
};
|
|
3194
|
+
loadingStatus: string;
|
|
3195
|
+
actions: {
|
|
3196
|
+
create: string;
|
|
3197
|
+
modify: string;
|
|
3198
|
+
tasks: string;
|
|
3199
|
+
terminate: string;
|
|
3200
|
+
actions: string;
|
|
3201
|
+
subscription: {
|
|
3202
|
+
no_modify_deleted_related_objects: string;
|
|
3203
|
+
no_modify_in_use_by_subscription: string;
|
|
3204
|
+
no_modify_invalid_status: string;
|
|
3205
|
+
no_modify_workflow: string;
|
|
3206
|
+
no_termination_workflow: string;
|
|
3207
|
+
no_validate_workflow: string;
|
|
3208
|
+
not_in_sync: string;
|
|
3209
|
+
relations_not_in_sync: string;
|
|
3210
|
+
no_modify_subscription_in_use_by_others: string;
|
|
3211
|
+
};
|
|
3212
|
+
};
|
|
3213
|
+
subscriptionInstanceId: string;
|
|
3214
|
+
ownerSubscriptionId: string;
|
|
3215
|
+
inUseByRelations: string;
|
|
3216
|
+
showDetails: string;
|
|
3217
|
+
hideDetails: string;
|
|
3218
|
+
self: string;
|
|
3219
|
+
subscriptionDetails: string;
|
|
3220
|
+
productName: string;
|
|
3221
|
+
fixedInputs: string;
|
|
3222
|
+
productInfo: string;
|
|
3223
|
+
noProductBlockSelected: string;
|
|
3224
|
+
productBlocks: string;
|
|
3225
|
+
ctaSelectProductBlock: string;
|
|
3226
|
+
startedBy: string;
|
|
3227
|
+
startedAt: string;
|
|
3228
|
+
status: string;
|
|
3229
|
+
id: string;
|
|
3230
|
+
blockTitleSubscriptionDetails: string;
|
|
3231
|
+
blockTitleFixedInputs: string;
|
|
3232
|
+
blockTitleProductInfo: string;
|
|
3233
|
+
subscriptionId: string;
|
|
3234
|
+
description: string;
|
|
3235
|
+
startDate: string;
|
|
3236
|
+
insync: string;
|
|
3237
|
+
customer: string;
|
|
3238
|
+
customerUuid: string;
|
|
3239
|
+
metadata: string;
|
|
3240
|
+
name: string;
|
|
3241
|
+
productType: string;
|
|
3242
|
+
tag: string;
|
|
3243
|
+
created: string;
|
|
3244
|
+
endDate: string;
|
|
3245
|
+
note: string;
|
|
3246
|
+
noRelatedSubscriptions: string;
|
|
3247
|
+
hideTerminatedRelatedSubscriptions: string;
|
|
3248
|
+
processDetail: {
|
|
3249
|
+
id: string;
|
|
3250
|
+
status: string;
|
|
3251
|
+
startedAt: string;
|
|
3252
|
+
startedBy: string;
|
|
3253
|
+
};
|
|
3254
|
+
showAll: string;
|
|
3255
|
+
hideAll: string;
|
|
3256
|
+
see: string;
|
|
3257
|
+
setInSync: string;
|
|
3258
|
+
setInSyncQuestion: string;
|
|
3259
|
+
setInSyncFailed: {
|
|
3260
|
+
title: string;
|
|
3261
|
+
text: string;
|
|
3262
|
+
};
|
|
3263
|
+
setInSyncSuccess: {
|
|
3264
|
+
title: string;
|
|
3265
|
+
text: string;
|
|
3266
|
+
};
|
|
3267
|
+
};
|
|
3268
|
+
};
|
|
3269
|
+
tasks: {
|
|
3270
|
+
page: {
|
|
3271
|
+
taskName: string;
|
|
3272
|
+
rerunAll: string;
|
|
3273
|
+
rerunAllQuestion: string;
|
|
3274
|
+
};
|
|
3275
|
+
tabs: {
|
|
3276
|
+
active: string;
|
|
3277
|
+
completed: string;
|
|
3278
|
+
};
|
|
3279
|
+
};
|
|
3280
|
+
settings: {
|
|
3281
|
+
page: {
|
|
3282
|
+
engineStatus: string;
|
|
3283
|
+
flushButton: string;
|
|
3284
|
+
flushCacheSettingsTitle: string;
|
|
3285
|
+
modifyEngine: string;
|
|
3286
|
+
pauseEngine: string;
|
|
3287
|
+
runningProcesses: string;
|
|
3288
|
+
selectSettings: string;
|
|
3289
|
+
startEngine: string;
|
|
3290
|
+
resetTextSearchIndex: string;
|
|
3291
|
+
resetTextSearchIndexButton: string;
|
|
3292
|
+
};
|
|
3293
|
+
};
|
|
3294
|
+
startPage: {
|
|
3295
|
+
activeSubscriptions: {
|
|
3296
|
+
buttonText: string;
|
|
3297
|
+
headerTitle: string;
|
|
3298
|
+
listTitle: string;
|
|
3299
|
+
};
|
|
3300
|
+
outOfSyncSubscriptions: {
|
|
3301
|
+
buttonText: string;
|
|
3302
|
+
headerTitle: string;
|
|
3303
|
+
listTitle: string;
|
|
3304
|
+
};
|
|
3305
|
+
activeWorkflows: {
|
|
3306
|
+
buttonText: string;
|
|
3307
|
+
headerTitle: string;
|
|
3308
|
+
listTitle: string;
|
|
3309
|
+
};
|
|
3310
|
+
failedTasks: {
|
|
3311
|
+
buttonText: string;
|
|
3312
|
+
headerTitle: string;
|
|
3313
|
+
listTitle: string;
|
|
3314
|
+
};
|
|
3315
|
+
products: {
|
|
3316
|
+
headerTitle: string;
|
|
3317
|
+
listTitle: string;
|
|
3318
|
+
};
|
|
3319
|
+
};
|
|
3320
|
+
};
|
|
3208
3321
|
|
|
3209
|
-
declare const
|
|
3210
|
-
baseQueryType?: BaseQueryTypes | undefined;
|
|
3211
|
-
apiName?: string | undefined;
|
|
3212
|
-
}) => {
|
|
3213
|
-
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3214
|
-
data?: undefined;
|
|
3215
|
-
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3216
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3217
|
-
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3218
|
-
data?: undefined;
|
|
3219
|
-
meta?: {} | undefined;
|
|
3220
|
-
} | {
|
|
3221
|
-
error?: undefined;
|
|
3222
|
-
data: unknown;
|
|
3223
|
-
meta?: {} | undefined;
|
|
3224
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
|
|
3322
|
+
declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3225
3323
|
|
|
3226
|
-
declare const
|
|
3227
|
-
declare
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
declare const
|
|
3231
|
-
subscriptionId: string;
|
|
3232
|
-
}, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3233
|
-
baseQueryType?: BaseQueryTypes | undefined;
|
|
3234
|
-
apiName?: string | undefined;
|
|
3235
|
-
}) => {
|
|
3236
|
-
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3237
|
-
data?: undefined;
|
|
3238
|
-
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3239
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3240
|
-
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3241
|
-
data?: undefined;
|
|
3242
|
-
meta?: {} | undefined;
|
|
3243
|
-
} | {
|
|
3244
|
-
error?: undefined;
|
|
3245
|
-
data: unknown;
|
|
3246
|
-
meta?: {} | undefined;
|
|
3247
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDetailResponse, "orchestratorApi">>;
|
|
3324
|
+
declare const RESOURCE_TYPE_FIELD_ID: keyof ResourceTypeDefinition;
|
|
3325
|
+
declare const RESOURCE_TYPE_FIELD_TYPE: keyof ResourceTypeDefinition;
|
|
3326
|
+
declare const RESOURCE_TYPE_FIELD_DESCRIPTION: keyof ResourceTypeDefinition;
|
|
3327
|
+
declare const RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS: keyof ResourceTypeDefinition;
|
|
3328
|
+
declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3248
3329
|
|
|
3249
|
-
declare const
|
|
3250
|
-
|
|
3251
|
-
|
|
3330
|
+
declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3331
|
+
|
|
3332
|
+
declare type WorkflowListItem = Pick<WorkflowDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
|
|
3333
|
+
productTags: string[];
|
|
3252
3334
|
};
|
|
3253
|
-
declare const
|
|
3254
|
-
baseQueryType?: BaseQueryTypes | undefined;
|
|
3255
|
-
apiName?: string | undefined;
|
|
3256
|
-
}) => {
|
|
3257
|
-
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3258
|
-
data?: undefined;
|
|
3259
|
-
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3260
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3261
|
-
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3262
|
-
data?: undefined;
|
|
3263
|
-
meta?: {} | undefined;
|
|
3264
|
-
} | {
|
|
3265
|
-
error?: undefined;
|
|
3266
|
-
data: unknown;
|
|
3267
|
-
meta?: {} | undefined;
|
|
3268
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
|
|
3335
|
+
declare const WfoWorkflowsPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3269
3336
|
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3337
|
+
interface MetadataLayoutProps {
|
|
3338
|
+
children: ReactNode;
|
|
3339
|
+
tabs?: MetaDataTab[];
|
|
3340
|
+
}
|
|
3341
|
+
interface MetaDataTab {
|
|
3342
|
+
id: number;
|
|
3343
|
+
translationKey: string;
|
|
3344
|
+
path: string;
|
|
3345
|
+
}
|
|
3346
|
+
declare const metaDataTabs: MetaDataTab[];
|
|
3347
|
+
declare const WfoMetadataPageLayout: ({ children, tabs, }: MetadataLayoutProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3348
|
+
|
|
3349
|
+
declare const mapWorkflowDefinitionToWorkflowListItem: (workflows: WorkflowDefinition[]) => WorkflowListItem[];
|
|
3350
|
+
declare const workflowFieldMapper: (field: keyof WorkflowListItem) => keyof WorkflowDefinition;
|
|
3351
|
+
declare const graphQlWorkflowListMapper: ({ field, order, }: GraphQLSort<WorkflowListItem>) => {
|
|
3352
|
+
field: keyof WorkflowDefinition;
|
|
3353
|
+
order: SortOrder;
|
|
3274
3354
|
};
|
|
3275
|
-
|
|
3276
|
-
|
|
3355
|
+
|
|
3356
|
+
declare const RENDER_ALL = "RENDER_ALL";
|
|
3357
|
+
declare enum RenderDirection {
|
|
3358
|
+
HORIZONTAL = "HORIZONTAL",
|
|
3359
|
+
VERTICAL = "VERTICAL"
|
|
3360
|
+
}
|
|
3361
|
+
declare type WfoProcessesListSubscriptionsCellProps = {
|
|
3362
|
+
subscriptions: Pick<Subscription, 'subscriptionId' | 'description'>[];
|
|
3363
|
+
numberOfSubscriptionsToRender?: number | typeof RENDER_ALL;
|
|
3364
|
+
renderDirection?: RenderDirection;
|
|
3277
3365
|
};
|
|
3278
|
-
declare
|
|
3279
|
-
declare const useGetWorkflowOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3280
|
-
baseQueryType?: BaseQueryTypes | undefined;
|
|
3281
|
-
apiName?: string | undefined;
|
|
3282
|
-
}) => {
|
|
3283
|
-
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3284
|
-
data?: undefined;
|
|
3285
|
-
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3286
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3287
|
-
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3288
|
-
data?: undefined;
|
|
3289
|
-
meta?: {} | undefined;
|
|
3290
|
-
} | {
|
|
3291
|
-
error?: undefined;
|
|
3292
|
-
data: unknown;
|
|
3293
|
-
meta?: {} | undefined;
|
|
3294
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
|
|
3295
|
-
declare const useGetTaskOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
|
|
3296
|
-
baseQueryType?: BaseQueryTypes | undefined;
|
|
3297
|
-
apiName?: string | undefined;
|
|
3298
|
-
}) => {
|
|
3299
|
-
error: _reduxjs_toolkit_query.FetchBaseQueryError;
|
|
3300
|
-
data?: undefined;
|
|
3301
|
-
meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
|
|
3302
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
|
|
3303
|
-
error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
|
|
3304
|
-
data?: undefined;
|
|
3305
|
-
meta?: {} | undefined;
|
|
3306
|
-
} | {
|
|
3307
|
-
error?: undefined;
|
|
3308
|
-
data: unknown;
|
|
3309
|
-
meta?: {} | undefined;
|
|
3310
|
-
} | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
|
|
3366
|
+
declare const WfoProcessListSubscriptionsCell: FC<WfoProcessesListSubscriptionsCellProps>;
|
|
3311
3367
|
|
|
3312
|
-
declare type
|
|
3313
|
-
|
|
3368
|
+
declare type GroupedStep = {
|
|
3369
|
+
steps: Step[];
|
|
3314
3370
|
};
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
}
|
|
3319
|
-
declare const
|
|
3320
|
-
declare const addToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<Toast, "toastMessages/addToastMessage">;
|
|
3321
|
-
declare const removeToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<string, "toastMessages/removeToastMessage">;
|
|
3322
|
-
declare const toastMessagesReducer: Reducer<ToastState>;
|
|
3371
|
+
interface WfoProcessDetailPageProps {
|
|
3372
|
+
processId: string;
|
|
3373
|
+
processDetailRefetchInterval?: number;
|
|
3374
|
+
}
|
|
3375
|
+
declare const WfoProcessDetailPage: ({ processId, processDetailRefetchInterval, }: WfoProcessDetailPageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3323
3376
|
|
|
3324
|
-
|
|
3325
|
-
|
|
3377
|
+
interface WfoStartProcessPageProps {
|
|
3378
|
+
processName: string;
|
|
3379
|
+
isTask?: boolean;
|
|
3380
|
+
}
|
|
3381
|
+
interface UserInputForm {
|
|
3382
|
+
stepUserInput?: JSONSchema6;
|
|
3383
|
+
hasNext?: boolean;
|
|
3384
|
+
}
|
|
3385
|
+
declare const WfoStartProcessPage: ({ processName, isTask, }: WfoStartProcessPageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3326
3386
|
|
|
3327
|
-
declare
|
|
3328
|
-
apiName: string;
|
|
3329
|
-
apiBaseUrl: string;
|
|
3330
|
-
};
|
|
3331
|
-
declare type CustomApiSlice = Slice<CustomApiConfig[]>;
|
|
3332
|
-
declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
|
|
3387
|
+
declare const WfoStartPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3333
3388
|
|
|
3334
|
-
declare
|
|
3335
|
-
orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
|
|
3336
|
-
toastMessages: ReturnType<typeof toastMessagesReducer>;
|
|
3337
|
-
orchestratorConfig: OrchestratorConfig;
|
|
3338
|
-
customApis: CustomApiConfig[];
|
|
3339
|
-
};
|
|
3340
|
-
declare const getOrchestratorStore: (orchestratorConfig: OrchestratorConfig, customApis: CustomApiConfig[]) => EnhancedStore<RootState>;
|
|
3341
|
-
declare type AppDispatch = Dispatch<UnknownAction>;
|
|
3389
|
+
declare const WfoSubscriptionDetailPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3342
3390
|
|
|
3343
|
-
declare
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3391
|
+
declare const WfoSubscriptionsListPage: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
3392
|
+
|
|
3393
|
+
declare const WfoTasksListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
3394
|
+
|
|
3395
|
+
declare enum WfoTasksListTabType {
|
|
3396
|
+
ACTIVE = "ACTIVE",
|
|
3397
|
+
COMPLETED = "COMPLETED"
|
|
3398
|
+
}
|
|
3399
|
+
declare const defaultTasksListTabs: WfoFilterTab<WfoTasksListTabType, ProcessListItem>[];
|
|
3400
|
+
|
|
3401
|
+
declare const getTasksListTabTypeFromString: (tabId?: string | undefined) => WfoTasksListTabType | undefined;
|
|
3402
|
+
|
|
3403
|
+
declare const WfoWorkflowsListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
3404
|
+
|
|
3405
|
+
declare enum WfoWorkflowsListTabType {
|
|
3406
|
+
ACTIVE = "ACTIVE",
|
|
3407
|
+
COMPLETED = "COMPLETED"
|
|
3408
|
+
}
|
|
3409
|
+
declare const defaultWorkflowsListTabs: WfoFilterTab<WfoWorkflowsListTabType, ProcessListItem>[];
|
|
3410
|
+
|
|
3411
|
+
declare const getWorkflowsListTabTypeFromString: (tabId?: string | undefined) => WfoWorkflowsListTabType | undefined;
|
|
3349
3412
|
|
|
3350
3413
|
declare const defaultOrchestratorTheme: EuiThemeModifications;
|
|
3351
3414
|
|
|
@@ -3394,4 +3457,7 @@ declare const getQueryVariablesForExport: <T extends object>(queryVariables: Gra
|
|
|
3394
3457
|
|
|
3395
3458
|
declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
|
|
3396
3459
|
|
|
3397
|
-
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, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, 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 };
|
|
3460
|
+
declare const getConcatenatedPagedResult: <T>(pagedResult: GraphQlSinglePage<T>, fields: (keyof T)[]) => string;
|
|
3461
|
+
declare const getConcatenatedResult: <T>(results: T[], fields: (keyof T)[]) => string;
|
|
3462
|
+
|
|
3463
|
+
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 GraphQlResultPage, type GraphQlSinglePage, 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, type MetaDataTab, 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 ProcessListExportItem, 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, type SubscriptionListItem, 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, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMetadataPageLayout, 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, WfoSubscriptionListTab, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, 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, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getConcatenatedPagedResult, getConcatenatedResult, 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, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapSortableAndFilterableValuesToTableColumnConfig, mapWorkflowDefinitionToWorkflowListItem, metaDataTabs, 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, subscriptionListTabs, 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, workflowFieldMapper, workflowsQuery };
|