@orchestrator-ui/orchestrator-ui-components 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/.turbo/turbo-build.log +5 -5
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +9 -8
  4. package/CHANGELOG.md +19 -0
  5. package/dist/index.d.ts +1282 -1143
  6. package/dist/index.js +686 -333
  7. package/package.json +1 -1
  8. package/src/components/WfoBadges/WfoProductBlockBadge/WfoProductBlockBadge.tsx +1 -0
  9. package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +10 -0
  10. package/src/components/WfoPageTemplate/paths.ts +1 -0
  11. package/src/components/WfoProcessList/WfoProcessesList.tsx +5 -1
  12. package/src/components/WfoProcessList/processListObjectMappers.ts +7 -4
  13. package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +10 -6
  14. package/src/components/WfoTable/utils/constants.ts +1 -0
  15. package/src/components/index.ts +1 -0
  16. package/src/messages/en-GB.json +11 -1
  17. package/src/messages/nl-NL.json +10 -1
  18. package/src/pages/metadata/WfoMetadataPageLayout.tsx +10 -5
  19. package/src/pages/metadata/WfoProductBlocksPage.tsx +25 -1
  20. package/src/pages/metadata/WfoProductsPage.tsx +27 -1
  21. package/src/pages/metadata/WfoResourceTypesPage.tsx +23 -4
  22. package/src/pages/metadata/WfoTasksPage.tsx +226 -0
  23. package/src/pages/metadata/WfoWorkflowsPage.tsx +29 -6
  24. package/src/pages/metadata/index.ts +3 -0
  25. package/src/pages/metadata/taskListObjectMapper.ts +40 -0
  26. package/src/pages/subscriptions/WfoSubscriptionDetailPage.tsx +2 -2
  27. package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +1 -1
  28. package/src/pages/workflows/index.ts +2 -0
  29. package/src/rtk/endpoints/metadata/index.ts +1 -0
  30. package/src/rtk/endpoints/metadata/tasks.ts +74 -0
  31. package/src/types/types.ts +15 -2
  32. package/src/utils/getDefaultTableConfig.ts +2 -0
  33. package/src/utils/index.ts +1 -0
  34. package/src/utils/resultFlattener.spec.ts +51 -0
  35. package/src/utils/resultFlattener.ts +25 -0
package/dist/index.d.ts CHANGED
@@ -169,7 +169,8 @@ declare enum BadgeType {
169
169
  PRODUCT_BLOCK = "product_block",
170
170
  PRODUCT_BLOCK_TAG = "product_block_tag",
171
171
  PRODUCT_TAG = "product_tag",
172
- PRODUCT = "product"
172
+ PRODUCT = "product",
173
+ TASK = "task"
173
174
  }
174
175
  interface FixedInputDefinition {
175
176
  fixedInputId: string;
@@ -305,6 +306,13 @@ interface WorkflowDefinition {
305
306
  products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
306
307
  createdAt: string;
307
308
  }
309
+ interface TaskDefinition {
310
+ name: string;
311
+ description?: string;
312
+ target: WorkflowTarget;
313
+ products: Pick<ProductDefinition, 'tag' | 'productId' | 'name'>[];
314
+ createdAt: string;
315
+ }
308
316
  declare type Field<Type> = keyof Type;
309
317
  declare enum SortOrder {
310
318
  ASC = "ASC",
@@ -383,6 +391,9 @@ declare type ProcessDetailResultRaw = {
383
391
  interface CustomersResult {
384
392
  customers: GraphQlSinglePage<Customer>;
385
393
  }
394
+ interface TaskDefinitionsResult<T = TaskDefinition> {
395
+ workflows: GraphQlResultPage<T>;
396
+ }
386
397
  interface WorkflowDefinitionsResult<T = WorkflowDefinition> {
387
398
  workflows: GraphQlResultPage<T>;
388
399
  }
@@ -746,6 +757,7 @@ declare const PATH_METADATA_PRODUCTS = "/metadata/products";
746
757
  declare const PATH_METADATA_PRODUCT_BLOCKS = "/metadata/productblocks";
747
758
  declare const PATH_METADATA_RESOURCE_TYPES = "/metadata/resource-types";
748
759
  declare const PATH_METADATA_WORKFLOWS = "/metadata/workflows";
760
+ declare const PATH_METADATA_TASKS = "/metadata/tasks";
749
761
  declare const PATH_TASKS = "/tasks";
750
762
  declare const PATH_SETTINGS = "/settings";
751
763
 
@@ -1042,6 +1054,7 @@ declare const METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY = "metadataResourc
1042
1054
  declare const METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY = "metadataProductBlocksTable";
1043
1055
  declare const METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY = "metadataProductTable";
1044
1056
  declare const METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY = "metadataWorkflowsTable";
1057
+ declare const METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY = "metadataTasksTable";
1045
1058
  declare const SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY = "subscriptionsTable";
1046
1059
 
1047
1060
  declare function mapSortableAndFilterableValuesToTableColumnConfig<T extends object>(tableColumnConfig: WfoTableColumns<T>, sortableFieldNames?: string[], filterableFieldNames?: string[]): WfoTableColumns<T>;
@@ -1705,6 +1718,9 @@ declare type ProcessListItem = Pick<Process, 'workflowName' | 'lastStep' | 'last
1705
1718
  customer: string;
1706
1719
  customerAbbreviation: string;
1707
1720
  };
1721
+ declare type ProcessListExportItem = Omit<ProcessListItem, 'subscriptions'> & {
1722
+ subscriptions: string;
1723
+ };
1708
1724
  declare type WfoProcessesListProps = {
1709
1725
  alwaysOnFilters?: FilterQuery<ProcessListItem>[];
1710
1726
  defaultHiddenColumns: TableColumnKeys<ProcessListItem> | undefined;
@@ -1837,993 +1853,62 @@ declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.E
1837
1853
 
1838
1854
  declare const WfoStartWorkflowButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
1839
1855
 
1840
- declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
1841
- declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
1856
+ declare enum BaseQueryTypes {
1857
+ fetch = "fetch",
1858
+ graphql = "graphql",
1859
+ custom = "custom"
1860
+ }
1861
+ declare enum CacheTags {
1862
+ engineStatus = "engineStatus",
1863
+ processList = "processList",
1864
+ processListSummary = "processListSummary",
1865
+ subscription = "subscription",
1866
+ subscriptionList = "subscriptionList"
1867
+ }
1868
+ declare type ExtraOptions = {
1869
+ baseQueryType?: BaseQueryTypes;
1870
+ apiName?: string;
1871
+ };
1872
+ declare const prepareHeaders: (headers: Headers) => Promise<Headers>;
1873
+ declare const orchestratorApi: _reduxjs_toolkit_query_react.Api<(args: any, api: _reduxjs_toolkit_query_react.BaseQueryApi, extraOptions: ExtraOptions) => {
1874
+ error: _reduxjs_toolkit_query_react.FetchBaseQueryError;
1875
+ data?: undefined;
1876
+ meta?: _reduxjs_toolkit_query_react.FetchBaseQueryMeta | undefined;
1877
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query_react.FetchBaseQueryError, _reduxjs_toolkit_query_react.FetchBaseQueryMeta>> | {
1878
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
1879
+ data?: undefined;
1880
+ meta?: {} | undefined;
1881
+ } | {
1882
+ error?: undefined;
1883
+ data: unknown;
1884
+ meta?: {} | undefined;
1885
+ } | 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
1886
 
1843
- declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
1844
- declare const useGetTranslationMessages: (locale: string | undefined) => {
1845
- pydanticForms: {
1846
- backendTranslations: Record<string, string>;
1847
- userInputForm: {
1848
- cancel: string;
1849
- submit: string;
1850
- previous: string;
1851
- previousQuestion: string;
1852
- startTask: string;
1853
- startWorkflow: string;
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
- };
1887
+ declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1888
+ baseQueryType?: BaseQueryTypes | undefined;
1889
+ apiName?: string | undefined;
1890
+ }) => {
1891
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
1892
+ data?: undefined;
1893
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
1894
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
1895
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
1896
+ data?: undefined;
1897
+ meta?: {} | undefined;
2292
1898
  } | {
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;
1899
+ error?: undefined;
1900
+ data: unknown;
1901
+ meta?: {} | undefined;
1902
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, Customer[], "orchestratorApi">>;
2804
1903
 
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;
1904
+ declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1905
+ baseQueryType?: BaseQueryTypes | undefined;
1906
+ apiName?: string | undefined;
1907
+ }) => {
1908
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2824
1909
  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>> | {
1910
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
1911
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2827
1912
  error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2828
1913
  data?: undefined;
2829
1914
  meta?: {} | undefined;
@@ -2831,9 +1916,13 @@ declare const orchestratorApi: _reduxjs_toolkit_query_react.Api<(args: any, api:
2831
1916
  error?: undefined;
2832
1917
  data: unknown;
2833
1918
  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>;
1919
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
2835
1920
 
2836
- declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1921
+ declare const productBlocksQuery = "\n query MetadataProductBlocks(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n ) {\n productBlocks(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n resourceTypes {\n description\n resourceType\n resourceTypeId\n }\n dependsOn {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n";
1922
+ declare type ProductBlocksResponse = {
1923
+ productBlocks: ProductBlockDefinition[];
1924
+ } & BaseGraphQlResult;
1925
+ declare const useGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2837
1926
  baseQueryType?: BaseQueryTypes | undefined;
2838
1927
  apiName?: string | undefined;
2839
1928
  }) => {
@@ -2848,9 +1937,8 @@ declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks
2848
1937
  error?: undefined;
2849
1938
  data: unknown;
2850
1939
  meta?: {} | undefined;
2851
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, Customer[], "orchestratorApi">>;
2852
-
2853
- declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_react_buildHooks.UseMutation<_reduxjs_toolkit_query.MutationDefinition<string, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1940
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
1941
+ declare const useLazyGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2854
1942
  baseQueryType?: BaseQueryTypes | undefined;
2855
1943
  apiName?: string | undefined;
2856
1944
  }) => {
@@ -2865,13 +1953,13 @@ declare const useSetSubscriptionInSyncMutation: _reduxjs_toolkit_dist_query_reac
2865
1953
  error?: undefined;
2866
1954
  data: unknown;
2867
1955
  meta?: {} | undefined;
2868
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, void, "orchestratorApi">>;
1956
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
2869
1957
 
2870
- declare const productBlocksQuery = "\n query MetadataProductBlocks(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n ) {\n productBlocks(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n resourceTypes {\n description\n resourceType\n resourceTypeId\n }\n dependsOn {\n productBlockId\n name\n tag\n description\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n }\n";
2871
- declare type ProductBlocksResponse = {
2872
- productBlocks: ProductBlockDefinition[];
1958
+ declare const resourceTypesQuery = "\nquery MetadataResourceTypes(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n resourceTypes(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n resourceTypeId\n resourceType\n description\n productBlocks {\n description\n name\n productBlockId\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
1959
+ declare type ResourceTypesResponse = {
1960
+ resourceTypes: ResourceTypeDefinition[];
2873
1961
  } & BaseGraphQlResult;
2874
- declare const useGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1962
+ declare const useGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2875
1963
  baseQueryType?: BaseQueryTypes | undefined;
2876
1964
  apiName?: string | undefined;
2877
1965
  }) => {
@@ -2886,8 +1974,8 @@ declare const useGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildH
2886
1974
  error?: undefined;
2887
1975
  data: unknown;
2888
1976
  meta?: {} | undefined;
2889
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
2890
- declare const useLazyGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ProductBlockDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1977
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
1978
+ declare const useLazyGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2891
1979
  baseQueryType?: BaseQueryTypes | undefined;
2892
1980
  apiName?: string | undefined;
2893
1981
  }) => {
@@ -2902,13 +1990,13 @@ declare const useLazyGetProductBlocksQuery: _reduxjs_toolkit_dist_query_react_bu
2902
1990
  error?: undefined;
2903
1991
  data: unknown;
2904
1992
  meta?: {} | undefined;
2905
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ProductBlocksResponse, "orchestratorApi">>;
1993
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
2906
1994
 
2907
- declare const resourceTypesQuery = "\nquery MetadataResourceTypes(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n resourceTypes(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n resourceTypeId\n resourceType\n description\n productBlocks {\n description\n name\n productBlockId\n status\n createdAt\n endDate\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2908
- declare type ResourceTypesResponse = {
2909
- resourceTypes: ResourceTypeDefinition[];
1995
+ declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
1996
+ declare type WorkflowsResponse = {
1997
+ workflows: WorkflowDefinition[];
2910
1998
  } & BaseGraphQlResult;
2911
- declare const useGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1999
+ declare const useGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2912
2000
  baseQueryType?: BaseQueryTypes | undefined;
2913
2001
  apiName?: string | undefined;
2914
2002
  }) => {
@@ -2923,8 +2011,8 @@ declare const useGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildH
2923
2011
  error?: undefined;
2924
2012
  data: unknown;
2925
2013
  meta?: {} | undefined;
2926
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
2927
- declare const useLazyGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<ResourceTypeDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2014
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
2015
+ declare const useLazyGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2928
2016
  baseQueryType?: BaseQueryTypes | undefined;
2929
2017
  apiName?: string | undefined;
2930
2018
  }) => {
@@ -2939,13 +2027,13 @@ declare const useLazyGetResourceTypesQuery: _reduxjs_toolkit_dist_query_react_bu
2939
2027
  error?: undefined;
2940
2028
  data: unknown;
2941
2029
  meta?: {} | undefined;
2942
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, ResourceTypesResponse, "orchestratorApi">>;
2030
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
2943
2031
 
2944
- declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n ) {\n page {\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2945
- declare type WorkflowsResponse = {
2946
- workflows: WorkflowDefinition[];
2032
+ declare const tasksQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"target\", value: \"SYSTEM\" }\n ) {\n page {\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2033
+ declare type TasksResponse = {
2034
+ tasks: TaskDefinition[];
2947
2035
  } & BaseGraphQlResult;
2948
- declare const useGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2036
+ declare const useGetTasksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<TaskDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2949
2037
  baseQueryType?: BaseQueryTypes | undefined;
2950
2038
  apiName?: string | undefined;
2951
2039
  }) => {
@@ -2960,8 +2048,8 @@ declare const useGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks
2960
2048
  error?: undefined;
2961
2049
  data: unknown;
2962
2050
  meta?: {} | undefined;
2963
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
2964
- declare const useLazyGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<WorkflowDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2051
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, TasksResponse, "orchestratorApi">>;
2052
+ declare const useLazyGetTasksQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseLazyQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<TaskDefinition>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2965
2053
  baseQueryType?: BaseQueryTypes | undefined;
2966
2054
  apiName?: string | undefined;
2967
2055
  }) => {
@@ -2976,7 +2064,7 @@ declare const useLazyGetWorkflowsQuery: _reduxjs_toolkit_dist_query_react_buildH
2976
2064
  error?: undefined;
2977
2065
  data: unknown;
2978
2066
  meta?: {} | undefined;
2979
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, WorkflowsResponse, "orchestratorApi">>;
2067
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, TasksResponse, "orchestratorApi">>;
2980
2068
 
2981
2069
  declare const processListQuery = "\n query ProcessList(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n processes(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n workflowName\n lastStep\n lastStatus\n workflowTarget\n product {\n name\n tag\n }\n customer {\n fullname\n shortcode\n }\n createdBy\n assignee\n processId\n startedAt\n lastModifiedAt\n isTask\n subscriptions {\n page {\n subscriptionId\n description\n }\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n endCursor\n sortFields\n filterFields\n }\n }\n }\n";
2982
2070
  declare type ProcessListResponse = {
@@ -3201,151 +2289,1199 @@ declare const useSetEngineStatusMutation: _reduxjs_toolkit_dist_query_react_buil
3201
2289
  data?: undefined;
3202
2290
  meta?: {} | undefined;
3203
2291
  } | {
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">>;
2292
+ error?: undefined;
2293
+ data: unknown;
2294
+ meta?: {} | undefined;
2295
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
2296
+
2297
+ declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2298
+ baseQueryType?: BaseQueryTypes | undefined;
2299
+ apiName?: string | undefined;
2300
+ }) => {
2301
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2302
+ data?: undefined;
2303
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2304
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2305
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2306
+ data?: undefined;
2307
+ meta?: {} | undefined;
2308
+ } | {
2309
+ error?: undefined;
2310
+ data: unknown;
2311
+ meta?: {} | undefined;
2312
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
2313
+
2314
+ 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";
2315
+ declare type SubscriptionDetailResponse = {
2316
+ subscription: SubscriptionDetail;
2317
+ } & BaseGraphQlResult;
2318
+ declare const useGetSubscriptionDetailQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
2319
+ subscriptionId: string;
2320
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2321
+ baseQueryType?: BaseQueryTypes | undefined;
2322
+ apiName?: string | undefined;
2323
+ }) => {
2324
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2325
+ data?: undefined;
2326
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2327
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2328
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2329
+ data?: undefined;
2330
+ meta?: {} | undefined;
2331
+ } | {
2332
+ error?: undefined;
2333
+ data: unknown;
2334
+ meta?: {} | undefined;
2335
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDetailResponse, "orchestratorApi">>;
2336
+
2337
+ 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";
2338
+ declare type SubscriptionDropdownOptionsResponse = {
2339
+ subscriptionDropdownOptions: SubscriptionDropdownOption[];
2340
+ };
2341
+ declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<SubscriptionDropdownOption>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2342
+ baseQueryType?: BaseQueryTypes | undefined;
2343
+ apiName?: string | undefined;
2344
+ }) => {
2345
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2346
+ data?: undefined;
2347
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2348
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2349
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2350
+ data?: undefined;
2351
+ meta?: {} | undefined;
2352
+ } | {
2353
+ error?: undefined;
2354
+ data: unknown;
2355
+ meta?: {} | undefined;
2356
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
2357
+
2358
+ declare type WorkflowOption = {
2359
+ workflowName: WorkflowDefinition['name'];
2360
+ productName: ProductDefinition['name'];
2361
+ productId: ProductDefinition['productId'];
2362
+ };
2363
+ declare type StartOptionsResponse<StartOption> = {
2364
+ startOptions: StartOption[];
2365
+ };
2366
+ declare type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
2367
+ declare const useGetWorkflowOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2368
+ baseQueryType?: BaseQueryTypes | undefined;
2369
+ apiName?: string | undefined;
2370
+ }) => {
2371
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2372
+ data?: undefined;
2373
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2374
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2375
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2376
+ data?: undefined;
2377
+ meta?: {} | undefined;
2378
+ } | {
2379
+ error?: undefined;
2380
+ data: unknown;
2381
+ meta?: {} | undefined;
2382
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
2383
+ declare const useGetTaskOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2384
+ baseQueryType?: BaseQueryTypes | undefined;
2385
+ apiName?: string | undefined;
2386
+ }) => {
2387
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2388
+ data?: undefined;
2389
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2390
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2391
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2392
+ data?: undefined;
2393
+ meta?: {} | undefined;
2394
+ } | {
2395
+ error?: undefined;
2396
+ data: unknown;
2397
+ meta?: {} | undefined;
2398
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
2399
+
2400
+ declare type ToastState = {
2401
+ messages: Toast[];
2402
+ };
2403
+ declare type ToastMessagesSlice = Slice<ToastState, {
2404
+ addToastMessage: (state: ToastState, action: PayloadAction<Toast>) => ToastState;
2405
+ removeToastMessage: (state: ToastState, action: PayloadAction<Toast['id']>) => ToastState;
2406
+ }, 'toastMessages', 'toastMessages'>;
2407
+ declare const toastMessagesSlice: ToastMessagesSlice;
2408
+ declare const addToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<Toast, "toastMessages/addToastMessage">;
2409
+ declare const removeToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<string, "toastMessages/removeToastMessage">;
2410
+ declare const toastMessagesReducer: Reducer<ToastState>;
2411
+
2412
+ declare type OrchestratorConfigSlice = Slice<OrchestratorConfig>;
2413
+ declare const getOrchestratorConfigSlice: (config: OrchestratorConfig) => OrchestratorConfigSlice;
2414
+
2415
+ declare type CustomApiConfig = {
2416
+ apiName: string;
2417
+ apiBaseUrl: string;
2418
+ };
2419
+ declare type CustomApiSlice = Slice<CustomApiConfig[]>;
2420
+ declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
2421
+
2422
+ declare type RootState = {
2423
+ orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
2424
+ toastMessages: ReturnType<typeof toastMessagesReducer>;
2425
+ orchestratorConfig: OrchestratorConfig;
2426
+ customApis: CustomApiConfig[];
2427
+ };
2428
+ declare const getOrchestratorStore: (orchestratorConfig: OrchestratorConfig, customApis: CustomApiConfig[]) => EnhancedStore<RootState>;
2429
+ declare type AppDispatch = Dispatch<UnknownAction>;
2430
+
2431
+ declare type StoreProviderProps = {
2432
+ initialOrchestratorConfig: OrchestratorConfig;
2433
+ customApis?: CustomApiConfig[];
2434
+ children: ReactNode;
2435
+ };
2436
+ declare const StoreProvider: ({ initialOrchestratorConfig, customApis, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
2437
+
2438
+ declare type SubscriptionListResponse = {
2439
+ subscriptions: Subscription[];
2440
+ } & BaseGraphQlResult;
2441
+
2442
+ declare type SubscriptionListItem = Pick<Subscription, 'subscriptionId' | 'description' | 'status' | 'insync' | 'note'> & {
2443
+ startDate: Date | null;
2444
+ endDate: Date | null;
2445
+ productName: string;
2446
+ tag: string | null;
2447
+ customerFullname: string;
2448
+ customerShortcode: string;
2449
+ metadata: object | null;
2450
+ };
2451
+ declare const mapGraphQlSubscriptionsResultToPageInfo: (graphqlResponse: SubscriptionListResponse) => GraphQLPageInfo;
2452
+ declare const mapGraphQlSubscriptionsResultToSubscriptionListItems: (graphqlResponse: SubscriptionListResponse) => SubscriptionListItem[];
2453
+
2454
+ declare enum WfoSubscriptionListTab {
2455
+ ACTIVE = "ACTIVE",
2456
+ TERMINATED = "TERMINATED",
2457
+ TRANSIENT = "TRANSIENT",
2458
+ ALL = "ALL"
2459
+ }
2460
+ declare const subscriptionListTabs: WfoFilterTab<WfoSubscriptionListTab, SubscriptionListItem>[];
2461
+
2462
+ declare type WfoSubscriptionsListProps = {
2463
+ alwaysOnFilters?: FilterQuery<SubscriptionListItem>[];
2464
+ dataDisplayParams: DataDisplayParams<SubscriptionListItem>;
2465
+ setDataDisplayParam: <DisplayParamKey extends keyof DataDisplayParams<SubscriptionListItem>>(prop: DisplayParamKey, value: DataDisplayParams<SubscriptionListItem>[DisplayParamKey]) => void;
2466
+ hiddenColumns: TableColumnKeys<SubscriptionListItem> | undefined;
2467
+ };
2468
+ declare const WfoSubscriptionsList: FC<WfoSubscriptionsListProps>;
2469
+
2470
+ declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
2471
+ declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
2472
+
2473
+ declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
2474
+ declare const useGetTranslationMessages: (locale: string | undefined) => {
2475
+ pydanticForms: {
2476
+ backendTranslations: Record<string, string>;
2477
+ userInputForm: {
2478
+ cancel: string;
2479
+ submit: string;
2480
+ previous: string;
2481
+ previousQuestion: string;
2482
+ startTask: string;
2483
+ startWorkflow: string;
2484
+ resumeTask: string;
2485
+ resumeWorkflow: string;
2486
+ inputFieldsHaveValidationErrors: string;
2487
+ };
2488
+ widgets: {
2489
+ customer: {
2490
+ placeholder: string;
2491
+ loading: string;
2492
+ };
2493
+ contactPersonName: {
2494
+ placeholder: string;
2495
+ };
2496
+ ipvAnyNetworkField: {
2497
+ manuallySelectedPrefix: string;
2498
+ };
2499
+ node_select: {
2500
+ nodes_loading: string;
2501
+ select_node: string;
2502
+ no_nodes_placeholder: string;
2503
+ };
2504
+ locationCode: {
2505
+ placeholder: string;
2506
+ };
2507
+ product: {
2508
+ placeholder: string;
2509
+ };
2510
+ select: {
2511
+ placeholder: string;
2512
+ };
2513
+ vlan: {
2514
+ vlansInUseError: string;
2515
+ vlansInUse: string;
2516
+ missingInIms: string;
2517
+ nsiVlansAvailable: string;
2518
+ nsiNoPortsAvailable: string;
2519
+ allPortsAvailable: string;
2520
+ placeholder: string;
2521
+ placeholderNoServicePort: string;
2522
+ invalidVlan: string;
2523
+ untaggedPortInUse: string;
2524
+ taggedOnly: string;
2525
+ loadingIms: string;
2526
+ };
2527
+ subscription: {
2528
+ placeholder: string;
2529
+ loading: string;
2530
+ };
2531
+ nodePort: {
2532
+ loadingNodes: string;
2533
+ loadingPorts: string;
2534
+ selectNode: string;
2535
+ selectPort: string;
2536
+ selectNodeFirst: string;
2537
+ };
2538
+ };
2539
+ } | {
2540
+ backendTranslations: Record<string, string>;
2541
+ userInputForm: {
2542
+ cancel: string;
2543
+ submit: string;
2544
+ previous: string;
2545
+ startTask: string;
2546
+ previousQuestion: string;
2547
+ startWorkflow: string;
2548
+ resumeTask: string;
2549
+ resumeWorkflow: string;
2550
+ inputFieldsHaveValidationErrors: string;
2551
+ };
2552
+ widgets: {
2553
+ customer: {
2554
+ placeholder: string;
2555
+ loading: string;
2556
+ };
2557
+ contactPersonName: {
2558
+ placeholder: string;
2559
+ };
2560
+ ipvAnyNetworkField: {
2561
+ manuallySelectedPrefix: string;
2562
+ };
2563
+ node_select: {
2564
+ nodes_loading: string;
2565
+ select_node: string;
2566
+ no_nodes_placeholder: string;
2567
+ };
2568
+ locationCode: {
2569
+ placeholder: string;
2570
+ };
2571
+ product: {
2572
+ placeholder: string;
2573
+ };
2574
+ select: {
2575
+ placeholder: string;
2576
+ };
2577
+ vlan: {
2578
+ vlansInUseError: string;
2579
+ vlansInUse: string;
2580
+ missingInIms: string;
2581
+ nsiVlansAvailable: string;
2582
+ nsiNoPortsAvailable: string;
2583
+ allPortsAvailable: string;
2584
+ placeholder: string;
2585
+ placeholderNoServicePort: string;
2586
+ invalidVlan: string;
2587
+ untaggedPortInUse: string;
2588
+ taggedOnly: string;
2589
+ loadingIms: string;
2590
+ };
2591
+ subscription: {
2592
+ placeholder: string;
2593
+ loading: string;
2594
+ };
2595
+ nodePort: {
2596
+ loadingNodes: string;
2597
+ loadingPorts: string;
2598
+ selectNode: string;
2599
+ selectPort: string;
2600
+ selectNodeFirst: string;
2601
+ };
2602
+ };
2603
+ };
2604
+ main: {
2605
+ metadata: string;
2606
+ metadataProducts: string;
2607
+ metadataProductblocks: string;
2608
+ metadataResourceTypes: string;
2609
+ metadataWorkflows: string;
2610
+ metadataTasks: string;
2611
+ mobileTitle: string;
2612
+ settings: string;
2613
+ start: string;
2614
+ subscriptions: string;
2615
+ tasks: string;
2616
+ title: string;
2617
+ welcome: string;
2618
+ workflows: string;
2619
+ darkMode: string;
2620
+ lightMode: string;
2621
+ websocketConnected: string;
2622
+ websocketDisconnected: string;
2623
+ };
2624
+ common: {
2625
+ product: string;
2626
+ deselect: string;
2627
+ close: string;
2628
+ editColumns: string;
2629
+ loading: string;
2630
+ newSubscription: string;
2631
+ newTask: string;
2632
+ noFailedTasks: string;
2633
+ noItemsFound: string;
2634
+ search: string;
2635
+ errorMessage: string;
2636
+ export: string;
2637
+ unauthorizedPage: string;
2638
+ insyncTrue: string;
2639
+ insyncFalse: string;
2640
+ };
2641
+ confirmationDialog: {
2642
+ title: string;
2643
+ confirm: string;
2644
+ cancel: string;
2645
+ leavePage: string;
2646
+ leavePageSub: string;
2647
+ stay: string;
2648
+ leave: string;
2649
+ };
2650
+ workflow: {
2651
+ start_workflow_title: string;
2652
+ };
2653
+ errors: {
2654
+ notAllResultsExported: string;
2655
+ notAllResultsExportedTitle: string;
2656
+ invalidQueryParts: string;
2657
+ notAllowedWhenEngineIsNotRunningMessage: string;
2658
+ notAllowedWhenEngineIsNotRunningTitle: string;
2659
+ retrieve_stored_settings: string;
2660
+ retrieve_stored_settings_title: string;
2661
+ };
2662
+ metadata: {
2663
+ title: string;
2664
+ tabs: {
2665
+ products: string;
2666
+ productBlocks: string;
2667
+ resourceTypes: string;
2668
+ workflows: string;
2669
+ tasks: string;
2670
+ };
2671
+ products: {
2672
+ id: string;
2673
+ name: string;
2674
+ tag: string;
2675
+ description: string;
2676
+ productType: string;
2677
+ status: string;
2678
+ productBlocks: string;
2679
+ fixedInputs: string;
2680
+ createdAt: string;
2681
+ };
2682
+ productBlocks: {
2683
+ id: string;
2684
+ name: string;
2685
+ description: string;
2686
+ tag: string;
2687
+ status: string;
2688
+ resourceTypes: string;
2689
+ dependingProductBlocks: string;
2690
+ createdAt: string;
2691
+ endDate: string;
2692
+ parentIds: string;
2693
+ };
2694
+ resourceTypes: {
2695
+ type: string;
2696
+ description: string;
2697
+ resourceId: string;
2698
+ usedInProductBlocks: string;
2699
+ };
2700
+ workflows: {
2701
+ name: string;
2702
+ description: string;
2703
+ target: string;
2704
+ productTags: string;
2705
+ createdAt: string;
2706
+ };
2707
+ tasks: {
2708
+ name: string;
2709
+ description: string;
2710
+ target: string;
2711
+ productTags: string;
2712
+ createdAt: string;
2713
+ };
2714
+ };
2715
+ processes: {
2716
+ index: {
2717
+ workflowName: string;
2718
+ step: string;
2719
+ status: string;
2720
+ product: string;
2721
+ customer: string;
2722
+ customerAbbreviation: string;
2723
+ subscriptions: string;
2724
+ createdBy: string;
2725
+ assignee: string;
2726
+ processId: string;
2727
+ started: string;
2728
+ lastModified: string;
2729
+ workflowTarget: string;
2730
+ productTag: string;
2731
+ };
2732
+ detail: {
2733
+ retry: string;
2734
+ resume: string;
2735
+ abort: string;
2736
+ delete: string;
2737
+ deleteQuestion: string;
2738
+ abortTaskQuestion: string;
2739
+ abortWorkflowQuestion: string;
2740
+ retryTaskQuestion: string;
2741
+ retryWorkflowQuestion: string;
2742
+ status: string;
2743
+ startedBy: string;
2744
+ lastStep: string;
2745
+ startedOn: string;
2746
+ lastUpdate: string;
2747
+ relatedSubscriptions: string;
2748
+ subscriptions: string;
2749
+ customer: string;
2750
+ };
2751
+ steps: {
2752
+ taskSteps: string;
2753
+ workflowSteps: string;
2754
+ showDelta: string;
2755
+ hideDelta: string;
2756
+ viewOptions: string;
2757
+ expandAll: string;
2758
+ collapseAll: string;
2759
+ duration: string;
2760
+ userInput: string;
2761
+ submitTaskFormLabel: string;
2762
+ submitWorkflowFormLabel: string;
2763
+ };
2764
+ delta: {
2765
+ title: string;
2766
+ };
2767
+ };
2768
+ workflows: {
2769
+ tabs: {
2770
+ active: string;
2771
+ completed: string;
2772
+ };
2773
+ index: {
2774
+ title: string;
2775
+ };
2776
+ };
2777
+ subscriptions: {
2778
+ tabs: {
2779
+ active: string;
2780
+ terminated: string;
2781
+ transient: string;
2782
+ all: string;
2783
+ };
2784
+ index: {
2785
+ id: string;
2786
+ description: string;
2787
+ status: string;
2788
+ insync: string;
2789
+ product: string;
2790
+ tag: string;
2791
+ startDate: string;
2792
+ endDate: string;
2793
+ metadata: string;
2794
+ note: string;
2795
+ customerFullname: string;
2796
+ customerShortcode: string;
2797
+ };
2798
+ detail: {
2799
+ title: string;
2800
+ tabs: {
2801
+ general: string;
2802
+ serviceConfiguration: string;
2803
+ workflows: string;
2804
+ relatedSubscriptions: string;
2805
+ };
2806
+ loadingStatus: string;
2807
+ actions: {
2808
+ create: string;
2809
+ modify: string;
2810
+ tasks: string;
2811
+ terminate: string;
2812
+ actions: string;
2813
+ subscription: {
2814
+ no_modify_deleted_related_objects: string;
2815
+ no_modify_in_use_by_subscription: string;
2816
+ no_modify_invalid_status: string;
2817
+ no_modify_workflow: string;
2818
+ no_termination_workflow: string;
2819
+ no_validate_workflow: string;
2820
+ not_in_sync: string;
2821
+ relations_not_in_sync: string;
2822
+ no_modify_subscription_in_use_by_others: string;
2823
+ };
2824
+ };
2825
+ subscriptionInstanceId: string;
2826
+ ownerSubscriptionId: string;
2827
+ inUseByRelations: string;
2828
+ showDetails: string;
2829
+ self: string;
2830
+ hideDetails: string;
2831
+ subscriptionDetails: string;
2832
+ productName: string;
2833
+ fixedInputs: string;
2834
+ productInfo: string;
2835
+ noProductBlockSelected: string;
2836
+ productBlocks: string;
2837
+ ctaSelectProductBlock: string;
2838
+ startedBy: string;
2839
+ startedAt: string;
2840
+ status: string;
2841
+ id: string;
2842
+ blockTitleSubscriptionDetails: string;
2843
+ blockTitleFixedInputs: string;
2844
+ blockTitleProductInfo: string;
2845
+ subscriptionId: string;
2846
+ description: string;
2847
+ startDate: string;
2848
+ insync: string;
2849
+ customer: string;
2850
+ customerUuid: string;
2851
+ name: string;
2852
+ productType: string;
2853
+ tag: string;
2854
+ created: string;
2855
+ endDate: string;
2856
+ metadata: string;
2857
+ note: string;
2858
+ noRelatedSubscriptions: string;
2859
+ hideTerminatedRelatedSubscriptions: string;
2860
+ processDetail: {
2861
+ id: string;
2862
+ status: string;
2863
+ startedAt: string;
2864
+ startedBy: string;
2865
+ };
2866
+ showAll: string;
2867
+ hideAll: string;
2868
+ see: string;
2869
+ setInSync: string;
2870
+ setInSyncQuestion: string;
2871
+ setInSyncFailed: {
2872
+ title: string;
2873
+ text: string;
2874
+ };
2875
+ setInSyncSuccess: {
2876
+ title: string;
2877
+ text: string;
2878
+ };
2879
+ };
2880
+ };
2881
+ tasks: {
2882
+ page: {
2883
+ taskName: string;
2884
+ rerunAll: string;
2885
+ rerunAllQuestion: string;
2886
+ };
2887
+ tabs: {
2888
+ active: string;
2889
+ completed: string;
2890
+ };
2891
+ };
2892
+ settings: {
2893
+ page: {
2894
+ flushButton: string;
2895
+ flushCacheSettingsTitle: string;
2896
+ engineStatus: string;
2897
+ modifyEngine: string;
2898
+ pauseEngine: string;
2899
+ runningProcesses: string;
2900
+ selectSettings: string;
2901
+ startEngine: string;
2902
+ resetTextSearchIndex: string;
2903
+ resetTextSearchIndexButton: string;
2904
+ };
2905
+ };
2906
+ startPage: {
2907
+ activeSubscriptions: {
2908
+ buttonText: string;
2909
+ headerTitle: string;
2910
+ listTitle: string;
2911
+ };
2912
+ outOfSyncSubscriptions: {
2913
+ buttonText: string;
2914
+ headerTitle: string;
2915
+ listTitle: string;
2916
+ };
2917
+ activeWorkflows: {
2918
+ buttonText: string;
2919
+ headerTitle: string;
2920
+ listTitle: string;
2921
+ };
2922
+ failedTasks: {
2923
+ buttonText: string;
2924
+ headerTitle: string;
2925
+ listTitle: string;
2926
+ };
2927
+ products: {
2928
+ headerTitle: string;
2929
+ listTitle: string;
2930
+ };
2931
+ };
2932
+ } | {
2933
+ pydanticForms: {
2934
+ backendTranslations: Record<string, string>;
2935
+ userInputForm: {
2936
+ cancel: string;
2937
+ submit: string;
2938
+ previous: string;
2939
+ previousQuestion: string;
2940
+ startTask: string;
2941
+ startWorkflow: string;
2942
+ resumeTask: string;
2943
+ resumeWorkflow: string;
2944
+ inputFieldsHaveValidationErrors: string;
2945
+ };
2946
+ widgets: {
2947
+ customer: {
2948
+ placeholder: string;
2949
+ loading: string;
2950
+ };
2951
+ contactPersonName: {
2952
+ placeholder: string;
2953
+ };
2954
+ ipvAnyNetworkField: {
2955
+ manuallySelectedPrefix: string;
2956
+ };
2957
+ node_select: {
2958
+ nodes_loading: string;
2959
+ select_node: string;
2960
+ no_nodes_placeholder: string;
2961
+ };
2962
+ locationCode: {
2963
+ placeholder: string;
2964
+ };
2965
+ product: {
2966
+ placeholder: string;
2967
+ };
2968
+ select: {
2969
+ placeholder: string;
2970
+ };
2971
+ vlan: {
2972
+ vlansInUseError: string;
2973
+ vlansInUse: string;
2974
+ missingInIms: string;
2975
+ nsiVlansAvailable: string;
2976
+ nsiNoPortsAvailable: string;
2977
+ allPortsAvailable: string;
2978
+ placeholder: string;
2979
+ placeholderNoServicePort: string;
2980
+ invalidVlan: string;
2981
+ untaggedPortInUse: string;
2982
+ taggedOnly: string;
2983
+ loadingIms: string;
2984
+ };
2985
+ subscription: {
2986
+ placeholder: string;
2987
+ loading: string;
2988
+ };
2989
+ nodePort: {
2990
+ loadingNodes: string;
2991
+ loadingPorts: string;
2992
+ selectNode: string;
2993
+ selectPort: string;
2994
+ selectNodeFirst: string;
2995
+ };
2996
+ };
2997
+ } | {
2998
+ backendTranslations: Record<string, string>;
2999
+ userInputForm: {
3000
+ cancel: string;
3001
+ submit: string;
3002
+ previous: string;
3003
+ startTask: string;
3004
+ previousQuestion: string;
3005
+ startWorkflow: string;
3006
+ resumeTask: string;
3007
+ resumeWorkflow: string;
3008
+ inputFieldsHaveValidationErrors: string;
3009
+ };
3010
+ widgets: {
3011
+ customer: {
3012
+ placeholder: string;
3013
+ loading: string;
3014
+ };
3015
+ contactPersonName: {
3016
+ placeholder: string;
3017
+ };
3018
+ ipvAnyNetworkField: {
3019
+ manuallySelectedPrefix: string;
3020
+ };
3021
+ node_select: {
3022
+ nodes_loading: string;
3023
+ select_node: string;
3024
+ no_nodes_placeholder: string;
3025
+ };
3026
+ locationCode: {
3027
+ placeholder: string;
3028
+ };
3029
+ product: {
3030
+ placeholder: string;
3031
+ };
3032
+ select: {
3033
+ placeholder: string;
3034
+ };
3035
+ vlan: {
3036
+ vlansInUseError: string;
3037
+ vlansInUse: string;
3038
+ missingInIms: string;
3039
+ nsiVlansAvailable: string;
3040
+ nsiNoPortsAvailable: string;
3041
+ allPortsAvailable: string;
3042
+ placeholder: string;
3043
+ placeholderNoServicePort: string;
3044
+ invalidVlan: string;
3045
+ untaggedPortInUse: string;
3046
+ taggedOnly: string;
3047
+ loadingIms: string;
3048
+ };
3049
+ subscription: {
3050
+ placeholder: string;
3051
+ loading: string;
3052
+ };
3053
+ nodePort: {
3054
+ loadingNodes: string;
3055
+ loadingPorts: string;
3056
+ selectNode: string;
3057
+ selectPort: string;
3058
+ selectNodeFirst: string;
3059
+ };
3060
+ };
3061
+ };
3062
+ main: {
3063
+ metadata: string;
3064
+ metadataProducts: string;
3065
+ metadataProductblocks: string;
3066
+ metadataResourceTypes: string;
3067
+ metadataWorkflows: string;
3068
+ metadataTasks: string;
3069
+ mobileTitle: string;
3070
+ settings: string;
3071
+ start: string;
3072
+ subscriptions: string;
3073
+ tasks: string;
3074
+ title: string;
3075
+ welcome: string;
3076
+ workflows: string;
3077
+ darkMode: string;
3078
+ lightMode: string;
3079
+ websocketConnected: string;
3080
+ websocketDisconnected: string;
3081
+ };
3082
+ common: {
3083
+ product: string;
3084
+ deselect: string;
3085
+ close: string;
3086
+ editColumns: string;
3087
+ loading: string;
3088
+ newSubscription: string;
3089
+ newTask: string;
3090
+ noFailedTasks: string;
3091
+ noItemsFound: string;
3092
+ search: string;
3093
+ errorMessage: string;
3094
+ export: string;
3095
+ unauthorizedPage: string;
3096
+ insyncTrue: string;
3097
+ insyncFalse: string;
3098
+ };
3099
+ confirmationDialog: {
3100
+ title: string;
3101
+ confirm: string;
3102
+ cancel: string;
3103
+ leavePage: string;
3104
+ leavePageSub: string;
3105
+ stay: string;
3106
+ leave: string;
3107
+ };
3108
+ workflow: {
3109
+ start_workflow_title: string;
3110
+ };
3111
+ errors: {
3112
+ notAllResultsExported: string;
3113
+ notAllResultsExportedTitle: string;
3114
+ invalidQueryParts: string;
3115
+ notAllowedWhenEngineIsNotRunningMessage: string;
3116
+ notAllowedWhenEngineIsNotRunningTitle: string;
3117
+ retrieve_stored_settings: string;
3118
+ retrieve_stored_settings_title: string;
3119
+ };
3120
+ metadata: {
3121
+ tabs: {
3122
+ products: string;
3123
+ productBlocks: string;
3124
+ resourceTypes: string;
3125
+ workflows: string;
3126
+ tasks: string;
3127
+ };
3128
+ products: {
3129
+ id: string;
3130
+ name: string;
3131
+ description: string;
3132
+ tag: string;
3133
+ productType: string;
3134
+ status: string;
3135
+ productBlocks: string;
3136
+ fixedInputs: string;
3137
+ createdAt: string;
3138
+ };
3139
+ productBlocks: {
3140
+ id: string;
3141
+ name: string;
3142
+ description: string;
3143
+ tag: string;
3144
+ status: string;
3145
+ resourceTypes: string;
3146
+ dependingProductBlocks: string;
3147
+ createdAt: string;
3148
+ endDate: string;
3149
+ parentIds: string;
3150
+ };
3151
+ resourceTypes: {
3152
+ type: string;
3153
+ description: string;
3154
+ resourceId: string;
3155
+ usedInProductBlocks: string;
3156
+ };
3157
+ workflows: {
3158
+ name: string;
3159
+ description: string;
3160
+ target: string;
3161
+ productTags: string;
3162
+ createdAt: string;
3163
+ };
3164
+ tasks: {
3165
+ name: string;
3166
+ description: string;
3167
+ target: string;
3168
+ productTags: string;
3169
+ createdAt: string;
3170
+ };
3171
+ };
3172
+ processes: {
3173
+ index: {
3174
+ workflowName: string;
3175
+ step: string;
3176
+ status: string;
3177
+ product: string;
3178
+ customer: string;
3179
+ customerAbbreviation: string;
3180
+ subscriptions: string;
3181
+ createdBy: string;
3182
+ assignee: string;
3183
+ processId: string;
3184
+ started: string;
3185
+ lastModified: string;
3186
+ workflowTarget: string;
3187
+ productTag: string;
3188
+ };
3189
+ detail: {
3190
+ retry: string;
3191
+ resume: string;
3192
+ abort: string;
3193
+ delete: string;
3194
+ deleteQuestion: string;
3195
+ abortTaskQuestion: string;
3196
+ abortWorkflowQuestion: string;
3197
+ retryTaskQuestion: string;
3198
+ retryWorkflowQuestion: string;
3199
+ status: string;
3200
+ startedBy: string;
3201
+ lastStep: string;
3202
+ startedOn: string;
3203
+ lastUpdate: string;
3204
+ relatedSubscriptions: string;
3205
+ subscriptions: string;
3206
+ customer: string;
3207
+ };
3208
+ steps: {
3209
+ steps: string;
3210
+ showDelta: string;
3211
+ hideDelta: string;
3212
+ viewOptions: string;
3213
+ expandAll: string;
3214
+ collapseAll: string;
3215
+ duration: string;
3216
+ userInput: string;
3217
+ submitTaskFormLabel: string;
3218
+ submitWorkflowFormLabel: string;
3219
+ };
3220
+ delta: {
3221
+ title: string;
3222
+ };
3223
+ };
3224
+ workflows: {
3225
+ tabs: {
3226
+ active: string;
3227
+ completed: string;
3228
+ };
3229
+ index: {
3230
+ title: string;
3231
+ };
3232
+ };
3233
+ subscriptions: {
3234
+ tabs: {
3235
+ active: string;
3236
+ terminated: string;
3237
+ transient: string;
3238
+ all: string;
3239
+ };
3240
+ index: {
3241
+ id: string;
3242
+ description: string;
3243
+ status: string;
3244
+ insync: string;
3245
+ product: string;
3246
+ tag: string;
3247
+ startDate: string;
3248
+ endDate: string;
3249
+ note: string;
3250
+ metadata: string;
3251
+ customerFullName: string;
3252
+ customerAbbreviation: string;
3253
+ };
3254
+ detail: {
3255
+ title: string;
3256
+ tabs: {
3257
+ general: string;
3258
+ serviceConfiguration: string;
3259
+ workflows: string;
3260
+ relatedSubscriptions: string;
3261
+ };
3262
+ loadingStatus: string;
3263
+ actions: {
3264
+ create: string;
3265
+ modify: string;
3266
+ tasks: string;
3267
+ terminate: string;
3268
+ actions: string;
3269
+ subscription: {
3270
+ no_modify_deleted_related_objects: string;
3271
+ no_modify_in_use_by_subscription: string;
3272
+ no_modify_invalid_status: string;
3273
+ no_modify_workflow: string;
3274
+ no_termination_workflow: string;
3275
+ no_validate_workflow: string;
3276
+ not_in_sync: string;
3277
+ relations_not_in_sync: string;
3278
+ no_modify_subscription_in_use_by_others: string;
3279
+ };
3280
+ };
3281
+ subscriptionInstanceId: string;
3282
+ ownerSubscriptionId: string;
3283
+ inUseByRelations: string;
3284
+ showDetails: string;
3285
+ hideDetails: string;
3286
+ self: string;
3287
+ subscriptionDetails: string;
3288
+ productName: string;
3289
+ fixedInputs: string;
3290
+ productInfo: string;
3291
+ noProductBlockSelected: string;
3292
+ productBlocks: string;
3293
+ ctaSelectProductBlock: string;
3294
+ startedBy: string;
3295
+ startedAt: string;
3296
+ status: string;
3297
+ id: string;
3298
+ blockTitleSubscriptionDetails: string;
3299
+ blockTitleFixedInputs: string;
3300
+ blockTitleProductInfo: string;
3301
+ subscriptionId: string;
3302
+ description: string;
3303
+ startDate: string;
3304
+ insync: string;
3305
+ customer: string;
3306
+ customerUuid: string;
3307
+ metadata: string;
3308
+ name: string;
3309
+ productType: string;
3310
+ tag: string;
3311
+ created: string;
3312
+ endDate: string;
3313
+ note: string;
3314
+ noRelatedSubscriptions: string;
3315
+ hideTerminatedRelatedSubscriptions: string;
3316
+ processDetail: {
3317
+ id: string;
3318
+ status: string;
3319
+ startedAt: string;
3320
+ startedBy: string;
3321
+ };
3322
+ showAll: string;
3323
+ hideAll: string;
3324
+ see: string;
3325
+ setInSync: string;
3326
+ setInSyncQuestion: string;
3327
+ setInSyncFailed: {
3328
+ title: string;
3329
+ text: string;
3330
+ };
3331
+ setInSyncSuccess: {
3332
+ title: string;
3333
+ text: string;
3334
+ };
3335
+ };
3336
+ };
3337
+ tasks: {
3338
+ page: {
3339
+ taskName: string;
3340
+ rerunAll: string;
3341
+ rerunAllQuestion: string;
3342
+ };
3343
+ tabs: {
3344
+ active: string;
3345
+ completed: string;
3346
+ };
3347
+ };
3348
+ settings: {
3349
+ page: {
3350
+ engineStatus: string;
3351
+ flushButton: string;
3352
+ flushCacheSettingsTitle: string;
3353
+ modifyEngine: string;
3354
+ pauseEngine: string;
3355
+ runningProcesses: string;
3356
+ selectSettings: string;
3357
+ startEngine: string;
3358
+ resetTextSearchIndex: string;
3359
+ resetTextSearchIndexButton: string;
3360
+ };
3361
+ };
3362
+ startPage: {
3363
+ activeSubscriptions: {
3364
+ buttonText: string;
3365
+ headerTitle: string;
3366
+ listTitle: string;
3367
+ };
3368
+ outOfSyncSubscriptions: {
3369
+ buttonText: string;
3370
+ headerTitle: string;
3371
+ listTitle: string;
3372
+ };
3373
+ activeWorkflows: {
3374
+ buttonText: string;
3375
+ headerTitle: string;
3376
+ listTitle: string;
3377
+ };
3378
+ failedTasks: {
3379
+ buttonText: string;
3380
+ headerTitle: string;
3381
+ listTitle: string;
3382
+ };
3383
+ products: {
3384
+ headerTitle: string;
3385
+ listTitle: string;
3386
+ };
3387
+ };
3388
+ };
3208
3389
 
3209
- declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
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">>;
3390
+ declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
3225
3391
 
3226
- 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";
3227
- declare type SubscriptionDetailResponse = {
3228
- subscription: SubscriptionDetail;
3229
- } & BaseGraphQlResult;
3230
- declare const useGetSubscriptionDetailQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
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">>;
3392
+ declare const RESOURCE_TYPE_FIELD_ID: keyof ResourceTypeDefinition;
3393
+ declare const RESOURCE_TYPE_FIELD_TYPE: keyof ResourceTypeDefinition;
3394
+ declare const RESOURCE_TYPE_FIELD_DESCRIPTION: keyof ResourceTypeDefinition;
3395
+ declare const RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS: keyof ResourceTypeDefinition;
3396
+ declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element;
3248
3397
 
3249
- 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";
3250
- declare type SubscriptionDropdownOptionsResponse = {
3251
- subscriptionDropdownOptions: SubscriptionDropdownOption[];
3252
- };
3253
- declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<SubscriptionDropdownOption>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
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">>;
3398
+ declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
3269
3399
 
3270
- declare type WorkflowOption = {
3271
- workflowName: WorkflowDefinition['name'];
3272
- productName: ProductDefinition['name'];
3273
- productId: ProductDefinition['productId'];
3274
- };
3275
- declare type StartOptionsResponse<StartOption> = {
3276
- startOptions: StartOption[];
3400
+ declare type WorkflowListItem = Pick<WorkflowDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
3401
+ productTags: string[];
3277
3402
  };
3278
- declare type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
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">>;
3403
+ declare const WfoWorkflowsPage: () => _emotion_react_jsx_runtime.JSX.Element;
3311
3404
 
3312
- declare type ToastState = {
3313
- messages: Toast[];
3405
+ declare type TaskListItem = Pick<TaskDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
3406
+ productTags: string[];
3314
3407
  };
3315
- declare type ToastMessagesSlice = Slice<ToastState, {
3316
- addToastMessage: (state: ToastState, action: PayloadAction<Toast>) => ToastState;
3317
- removeToastMessage: (state: ToastState, action: PayloadAction<Toast['id']>) => ToastState;
3318
- }, 'toastMessages', 'toastMessages'>;
3319
- declare const toastMessagesSlice: ToastMessagesSlice;
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>;
3408
+ declare const WfoTasksPage: () => _emotion_react_jsx_runtime.JSX.Element;
3323
3409
 
3324
- declare type OrchestratorConfigSlice = Slice<OrchestratorConfig>;
3325
- declare const getOrchestratorConfigSlice: (config: OrchestratorConfig) => OrchestratorConfigSlice;
3410
+ interface MetadataLayoutProps {
3411
+ children: ReactNode;
3412
+ tabs?: MetaDataTab[];
3413
+ }
3414
+ interface MetaDataTab {
3415
+ id: number;
3416
+ translationKey: string;
3417
+ path: string;
3418
+ }
3419
+ declare const metaDataTabs: MetaDataTab[];
3420
+ declare const WfoMetadataPageLayout: ({ children, tabs, }: MetadataLayoutProps) => _emotion_react_jsx_runtime.JSX.Element;
3326
3421
 
3327
- declare type CustomApiConfig = {
3328
- apiName: string;
3329
- apiBaseUrl: string;
3422
+ declare const mapWorkflowDefinitionToWorkflowListItem: (workflows: WorkflowDefinition[]) => WorkflowListItem[];
3423
+ declare const workflowFieldMapper: (field: keyof WorkflowListItem) => keyof WorkflowDefinition;
3424
+ declare const graphQlWorkflowListMapper: ({ field, order, }: GraphQLSort<WorkflowListItem>) => {
3425
+ field: keyof WorkflowDefinition;
3426
+ order: SortOrder;
3330
3427
  };
3331
- declare type CustomApiSlice = Slice<CustomApiConfig[]>;
3332
- declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
3333
3428
 
3334
- declare type RootState = {
3335
- orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
3336
- toastMessages: ReturnType<typeof toastMessagesReducer>;
3337
- orchestratorConfig: OrchestratorConfig;
3338
- customApis: CustomApiConfig[];
3429
+ declare const RENDER_ALL = "RENDER_ALL";
3430
+ declare enum RenderDirection {
3431
+ HORIZONTAL = "HORIZONTAL",
3432
+ VERTICAL = "VERTICAL"
3433
+ }
3434
+ declare type WfoProcessesListSubscriptionsCellProps = {
3435
+ subscriptions: Pick<Subscription, 'subscriptionId' | 'description'>[];
3436
+ numberOfSubscriptionsToRender?: number | typeof RENDER_ALL;
3437
+ renderDirection?: RenderDirection;
3339
3438
  };
3340
- declare const getOrchestratorStore: (orchestratorConfig: OrchestratorConfig, customApis: CustomApiConfig[]) => EnhancedStore<RootState>;
3341
- declare type AppDispatch = Dispatch<UnknownAction>;
3439
+ declare const WfoProcessListSubscriptionsCell: FC<WfoProcessesListSubscriptionsCellProps>;
3342
3440
 
3343
- declare type StoreProviderProps = {
3344
- initialOrchestratorConfig: OrchestratorConfig;
3345
- customApis?: CustomApiConfig[];
3346
- children: ReactNode;
3441
+ declare type GroupedStep = {
3442
+ steps: Step[];
3347
3443
  };
3348
- declare const StoreProvider: ({ initialOrchestratorConfig, customApis, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
3444
+ interface WfoProcessDetailPageProps {
3445
+ processId: string;
3446
+ processDetailRefetchInterval?: number;
3447
+ }
3448
+ declare const WfoProcessDetailPage: ({ processId, processDetailRefetchInterval, }: WfoProcessDetailPageProps) => _emotion_react_jsx_runtime.JSX.Element;
3449
+
3450
+ interface WfoStartProcessPageProps {
3451
+ processName: string;
3452
+ isTask?: boolean;
3453
+ }
3454
+ interface UserInputForm {
3455
+ stepUserInput?: JSONSchema6;
3456
+ hasNext?: boolean;
3457
+ }
3458
+ declare const WfoStartProcessPage: ({ processName, isTask, }: WfoStartProcessPageProps) => _emotion_react_jsx_runtime.JSX.Element;
3459
+
3460
+ declare const WfoStartPage: () => _emotion_react_jsx_runtime.JSX.Element;
3461
+
3462
+ declare const WfoSubscriptionDetailPage: () => _emotion_react_jsx_runtime.JSX.Element;
3463
+
3464
+ declare const WfoSubscriptionsListPage: () => _emotion_react_jsx_runtime.JSX.Element;
3465
+
3466
+ declare const WfoTasksListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
3467
+
3468
+ declare enum WfoTasksListTabType {
3469
+ ACTIVE = "ACTIVE",
3470
+ COMPLETED = "COMPLETED"
3471
+ }
3472
+ declare const defaultTasksListTabs: WfoFilterTab<WfoTasksListTabType, ProcessListItem>[];
3473
+
3474
+ declare const getTasksListTabTypeFromString: (tabId?: string | undefined) => WfoTasksListTabType | undefined;
3475
+
3476
+ declare const WfoWorkflowsListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
3477
+
3478
+ declare enum WfoWorkflowsListTabType {
3479
+ ACTIVE = "ACTIVE",
3480
+ COMPLETED = "COMPLETED"
3481
+ }
3482
+ declare const defaultWorkflowsListTabs: WfoFilterTab<WfoWorkflowsListTabType, ProcessListItem>[];
3483
+
3484
+ declare const getWorkflowsListTabTypeFromString: (tabId?: string | undefined) => WfoWorkflowsListTabType | undefined;
3349
3485
 
3350
3486
  declare const defaultOrchestratorTheme: EuiThemeModifications;
3351
3487
 
@@ -3394,4 +3530,7 @@ declare const getQueryVariablesForExport: <T extends object>(queryVariables: Gra
3394
3530
 
3395
3531
  declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
3396
3532
 
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 };
3533
+ declare const getConcatenatedPagedResult: <T>(pagedResult: GraphQlSinglePage<T>, fields: (keyof T)[]) => string;
3534
+ declare const getConcatenatedResult: <T>(results: T[], fields: (keyof T)[]) => string;
3535
+
3536
+ 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_TASKS_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_TASKS, 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, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, 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, WfoTasksPage, 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, tasksQuery, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useRawProcessDetails, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, workflowFieldMapper, workflowsQuery };