@orchestrator-ui/orchestrator-ui-components 1.5.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) 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 +21 -0
  5. package/dist/index.d.ts +1218 -1137
  6. package/dist/index.js +1166 -976
  7. package/package.json +1 -1
  8. package/src/components/WfoBadges/WfoProductBlockBadge/WfoProductBlockBadge.tsx +1 -0
  9. package/src/components/WfoForms/formFields/utils.spec.ts +1 -0
  10. package/src/components/WfoJsonCodeBlock/WfoJsonCodeBlock.tsx +11 -5
  11. package/src/components/WfoJsonCodeBlock/styles.ts +13 -0
  12. package/src/components/WfoKeyValueTable/WfoValueCell.tsx +8 -1
  13. package/src/components/WfoProcessList/WfoProcessesList.tsx +5 -1
  14. package/src/components/WfoProcessList/processListObjectMappers.ts +7 -4
  15. package/src/components/WfoSubscription/WfoSubscription.tsx +5 -5
  16. package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +74 -62
  17. package/src/components/WfoSubscription/WfoSubscriptionProductBlock.tsx +24 -5
  18. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +11 -1
  19. package/src/components/WfoSubscriptionsList/subscriptionResultMappers.ts +3 -0
  20. package/src/components/WfoTable/WfoInlineJson/WfoInlineJson.tsx +14 -0
  21. package/src/components/WfoTable/WfoInlineJson/index.ts +1 -0
  22. package/src/components/WfoTable/index.ts +1 -0
  23. package/src/components/WfoTable/utils/constants.ts +2 -2
  24. package/src/components/WfoWorkflowSteps/WfoStepStatusIcon/WfoStepStatusIcon.tsx +7 -0
  25. package/src/components/index.ts +1 -0
  26. package/src/icons/WfoExternalLink.tsx +30 -0
  27. package/src/icons/index.ts +1 -0
  28. package/src/messages/en-GB.json +3 -0
  29. package/src/messages/nl-NL.json +2 -0
  30. package/src/pages/metadata/WfoMetadataPageLayout.tsx +4 -4
  31. package/src/pages/metadata/WfoProductBlocksPage.tsx +25 -1
  32. package/src/pages/metadata/WfoProductsPage.tsx +32 -1
  33. package/src/pages/metadata/WfoResourceTypesPage.tsx +23 -4
  34. package/src/pages/metadata/WfoWorkflowsPage.tsx +24 -2
  35. package/src/pages/metadata/index.ts +2 -0
  36. package/src/pages/subscriptions/WfoSubscriptionDetailPage.tsx +2 -2
  37. package/src/pages/subscriptions/WfoSubscriptionsListPage.tsx +1 -1
  38. package/src/pages/workflows/index.ts +2 -0
  39. package/src/rtk/endpoints/subscriptionDetail.ts +1 -0
  40. package/src/rtk/endpoints/subscriptionList.ts +1 -0
  41. package/src/types/types.ts +5 -2
  42. package/src/utils/getDefaultTableConfig.ts +1 -0
  43. package/src/utils/index.ts +1 -0
  44. package/src/utils/resultFlattener.spec.ts +51 -0
  45. package/src/utils/resultFlattener.ts +25 -0
package/dist/index.d.ts CHANGED
@@ -168,7 +168,8 @@ declare enum BadgeType {
168
168
  RESOURCE_TYPE = "resource_type",
169
169
  PRODUCT_BLOCK = "product_block",
170
170
  PRODUCT_BLOCK_TAG = "product_block_tag",
171
- PRODUCT_TAG = "product_tag"
171
+ PRODUCT_TAG = "product_tag",
172
+ PRODUCT = "product"
172
173
  }
173
174
  interface FixedInputDefinition {
174
175
  fixedInputId: string;
@@ -434,6 +435,7 @@ declare type Subscription = {
434
435
  product: Pick<ProductDefinition, 'name' | 'tag' | 'productType'>;
435
436
  productBlockInstances: ProductBlockInstance[];
436
437
  customer: Pick<Customer, 'fullname' | 'shortcode'>;
438
+ metadata: object;
437
439
  };
438
440
  declare type SubscriptionSummary = Pick<Subscription, 'subscriptionId' | 'description' | 'startDate'>;
439
441
  declare type SubscriptionDropdownOption = {
@@ -458,6 +460,7 @@ declare type SubscriptionDetail = {
458
460
  endDate: string;
459
461
  startDate: string;
460
462
  status: SubscriptionStatus;
463
+ metadata: object;
461
464
  productBlockInstances: ProductBlockInstance[];
462
465
  customerId?: string | null;
463
466
  customer?: Customer;
@@ -1030,7 +1033,7 @@ declare type TableSettingsModalProps<T> = {
1030
1033
  declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1031
1034
 
1032
1035
  declare const DEFAULT_PAGE_SIZES: number[];
1033
- declare const DEFAULT_PAGE_SIZE = 10;
1036
+ declare const DEFAULT_PAGE_SIZE = 15;
1034
1037
  declare const ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY = "activeProcessesListTable";
1035
1038
  declare const COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY = "completedProcessesListTable";
1036
1039
  declare const ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY = "activeTasksListTable";
@@ -1206,6 +1209,8 @@ declare const WfoBell: FC<WfoIconProps>;
1206
1209
 
1207
1210
  declare const WfoWarningTriangle: FC<WfoIconProps>;
1208
1211
 
1212
+ declare const WfoExternalLink: FC<WfoIconProps>;
1213
+
1209
1214
  declare type WfoSortButtonProps = {
1210
1215
  WfoIconComponent: FC<WfoIconProps>;
1211
1216
  isActive: boolean;
@@ -1224,6 +1229,11 @@ declare type WfoFirstUUIDPartProps = {
1224
1229
  };
1225
1230
  declare const WfoFirstPartUUID: FC<WfoFirstUUIDPartProps>;
1226
1231
 
1232
+ declare type WfoInlineJsonProps = {
1233
+ data: object | null;
1234
+ };
1235
+ declare const WfoInlineJson: FC<WfoInlineJsonProps>;
1236
+
1227
1237
  declare enum TimelinePosition {
1228
1238
  PAST = "past",
1229
1239
  CURRENT = "current",
@@ -1695,6 +1705,9 @@ declare type ProcessListItem = Pick<Process, 'workflowName' | 'lastStep' | 'last
1695
1705
  customer: string;
1696
1706
  customerAbbreviation: string;
1697
1707
  };
1708
+ declare type ProcessListExportItem = Omit<ProcessListItem, 'subscriptions'> & {
1709
+ subscriptions: string;
1710
+ };
1698
1711
  declare type WfoProcessesListProps = {
1699
1712
  alwaysOnFilters?: FilterQuery<ProcessListItem>[];
1700
1713
  defaultHiddenColumns: TableColumnKeys<ProcessListItem> | undefined;
@@ -1713,6 +1726,7 @@ declare const WfoTextAnchor: ({ text, onClick }: WfoTextAnchorProps) => _emotion
1713
1726
 
1714
1727
  declare type WfoJsonCodeBlockProps = {
1715
1728
  data: object;
1729
+ isBasicStyle?: boolean;
1716
1730
  };
1717
1731
  declare const WfoJsonCodeBlock: FC<WfoJsonCodeBlockProps>;
1718
1732
 
@@ -1826,1009 +1840,48 @@ declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.E
1826
1840
 
1827
1841
  declare const WfoStartWorkflowButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
1828
1842
 
1829
- declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
1830
- declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
1843
+ declare enum BaseQueryTypes {
1844
+ fetch = "fetch",
1845
+ graphql = "graphql",
1846
+ custom = "custom"
1847
+ }
1848
+ declare enum CacheTags {
1849
+ engineStatus = "engineStatus",
1850
+ processList = "processList",
1851
+ processListSummary = "processListSummary",
1852
+ subscription = "subscription",
1853
+ subscriptionList = "subscriptionList"
1854
+ }
1855
+ declare type ExtraOptions = {
1856
+ baseQueryType?: BaseQueryTypes;
1857
+ apiName?: string;
1858
+ };
1859
+ declare const prepareHeaders: (headers: Headers) => Promise<Headers>;
1860
+ declare const orchestratorApi: _reduxjs_toolkit_query_react.Api<(args: any, api: _reduxjs_toolkit_query_react.BaseQueryApi, extraOptions: ExtraOptions) => {
1861
+ error: _reduxjs_toolkit_query_react.FetchBaseQueryError;
1862
+ data?: undefined;
1863
+ meta?: _reduxjs_toolkit_query_react.FetchBaseQueryMeta | undefined;
1864
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query_react.FetchBaseQueryError, _reduxjs_toolkit_query_react.FetchBaseQueryMeta>> | {
1865
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
1866
+ data?: undefined;
1867
+ meta?: {} | undefined;
1868
+ } | {
1869
+ error?: undefined;
1870
+ data: unknown;
1871
+ meta?: {} | undefined;
1872
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, {}, "orchestratorApi", CacheTags, typeof _reduxjs_toolkit_query_react.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
1831
1873
 
1832
- declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
1833
- declare const useGetTranslationMessages: (locale: string | undefined) => {
1834
- pydanticForms: {
1835
- backendTranslations: Record<string, string>;
1836
- userInputForm: {
1837
- cancel: string;
1838
- submit: string;
1839
- previous: string;
1840
- previousQuestion: string;
1841
- startTask: string;
1842
- startWorkflow: string;
1843
- resumeTask: string;
1844
- resumeWorkflow: string;
1845
- inputFieldsHaveValidationErrors: string;
1846
- };
1847
- widgets: {
1848
- customer: {
1849
- placeholder: string;
1850
- loading: string;
1851
- };
1852
- contactPersonName: {
1853
- placeholder: string;
1854
- };
1855
- ipvAnyNetworkField: {
1856
- manuallySelectedPrefix: string;
1857
- };
1858
- node_select: {
1859
- nodes_loading: string;
1860
- select_node: string;
1861
- no_nodes_placeholder: string;
1862
- };
1863
- locationCode: {
1864
- placeholder: string;
1865
- };
1866
- product: {
1867
- placeholder: string;
1868
- };
1869
- select: {
1870
- placeholder: string;
1871
- };
1872
- vlan: {
1873
- vlansInUseError: string;
1874
- vlansInUse: string;
1875
- missingInIms: string;
1876
- nsiVlansAvailable: string;
1877
- nsiNoPortsAvailable: string;
1878
- allPortsAvailable: string;
1879
- placeholder: string;
1880
- placeholderNoServicePort: string;
1881
- invalidVlan: string;
1882
- untaggedPortInUse: string;
1883
- taggedOnly: string;
1884
- loadingIms: string;
1885
- };
1886
- subscription: {
1887
- placeholder: string;
1888
- loading: string;
1889
- };
1890
- nodePort: {
1891
- loadingNodes: string;
1892
- loadingPorts: string;
1893
- selectNode: string;
1894
- selectPort: string;
1895
- selectNodeFirst: string;
1896
- };
1897
- };
1898
- } | {
1899
- backendTranslations: Record<string, string>;
1900
- userInputForm: {
1901
- cancel: string;
1902
- submit: string;
1903
- previous: string;
1904
- startTask: string;
1905
- previousQuestion: string;
1906
- startWorkflow: string;
1907
- resumeTask: string;
1908
- resumeWorkflow: string;
1909
- inputFieldsHaveValidationErrors: string;
1910
- };
1911
- widgets: {
1912
- customer: {
1913
- placeholder: string;
1914
- loading: string;
1915
- };
1916
- contactPersonName: {
1917
- placeholder: string;
1918
- };
1919
- ipvAnyNetworkField: {
1920
- manuallySelectedPrefix: string;
1921
- };
1922
- node_select: {
1923
- nodes_loading: string;
1924
- select_node: string;
1925
- no_nodes_placeholder: string;
1926
- };
1927
- locationCode: {
1928
- placeholder: string;
1929
- };
1930
- product: {
1931
- placeholder: string;
1932
- };
1933
- select: {
1934
- placeholder: string;
1935
- };
1936
- vlan: {
1937
- vlansInUseError: string;
1938
- vlansInUse: string;
1939
- missingInIms: string;
1940
- nsiVlansAvailable: string;
1941
- nsiNoPortsAvailable: string;
1942
- allPortsAvailable: string;
1943
- placeholder: string;
1944
- placeholderNoServicePort: string;
1945
- invalidVlan: string;
1946
- untaggedPortInUse: string;
1947
- taggedOnly: string;
1948
- loadingIms: string;
1949
- };
1950
- subscription: {
1951
- placeholder: string;
1952
- loading: string;
1953
- };
1954
- nodePort: {
1955
- loadingNodes: string;
1956
- loadingPorts: string;
1957
- selectNode: string;
1958
- selectPort: string;
1959
- selectNodeFirst: string;
1960
- };
1961
- };
1962
- };
1963
- main: {
1964
- metadata: string;
1965
- metadataProducts: string;
1966
- metadataProductblocks: string;
1967
- metadataResourceTypes: string;
1968
- metadataWorkflows: string;
1969
- mobileTitle: string;
1970
- settings: string;
1971
- start: string;
1972
- subscriptions: string;
1973
- tasks: string;
1974
- title: string;
1975
- welcome: string;
1976
- workflows: string;
1977
- darkMode: string;
1978
- lightMode: string;
1979
- websocketConnected: string;
1980
- websocketDisconnected: string;
1981
- };
1982
- common: {
1983
- product: string;
1984
- deselect: string;
1985
- close: string;
1986
- editColumns: string;
1987
- loading: string;
1988
- newSubscription: string;
1989
- newTask: string;
1990
- noFailedTasks: string;
1991
- noItemsFound: string;
1992
- search: string;
1993
- errorMessage: string;
1994
- export: string;
1995
- unauthorizedPage: string;
1996
- insyncTrue: string;
1997
- insyncFalse: string;
1998
- };
1999
- confirmationDialog: {
2000
- title: string;
2001
- confirm: string;
2002
- cancel: string;
2003
- leavePage: string;
2004
- leavePageSub: string;
2005
- stay: string;
2006
- leave: string;
2007
- };
2008
- workflow: {
2009
- start_workflow_title: string;
2010
- };
2011
- errors: {
2012
- notAllResultsExported: string;
2013
- notAllResultsExportedTitle: string;
2014
- invalidQueryParts: string;
2015
- notAllowedWhenEngineIsNotRunningMessage: string;
2016
- notAllowedWhenEngineIsNotRunningTitle: string;
2017
- retrieve_stored_settings: string;
2018
- retrieve_stored_settings_title: string;
2019
- };
2020
- metadata: {
2021
- tabs: {
2022
- products: string;
2023
- productBlocks: string;
2024
- resourceTypes: string;
2025
- workflows: string;
2026
- };
2027
- products: {
2028
- id: string;
2029
- name: string;
2030
- tag: string;
2031
- description: string;
2032
- productType: string;
2033
- status: string;
2034
- productBlocks: string;
2035
- fixedInputs: string;
2036
- createdAt: string;
2037
- };
2038
- productBlocks: {
2039
- id: string;
2040
- name: string;
2041
- description: string;
2042
- tag: string;
2043
- status: string;
2044
- resourceTypes: string;
2045
- dependingProductBlocks: string;
2046
- createdAt: string;
2047
- endDate: string;
2048
- parentIds: string;
2049
- };
2050
- resourceTypes: {
2051
- type: string;
2052
- description: string;
2053
- resourceId: string;
2054
- usedInProductBlocks: string;
2055
- };
2056
- workflows: {
2057
- name: string;
2058
- description: string;
2059
- target: string;
2060
- productTags: string;
2061
- createdAt: string;
2062
- };
2063
- };
2064
- processes: {
2065
- index: {
2066
- workflowName: string;
2067
- step: string;
2068
- status: string;
2069
- product: string;
2070
- customer: string;
2071
- customerAbbreviation: string;
2072
- subscriptions: string;
2073
- createdBy: string;
2074
- assignee: string;
2075
- processId: string;
2076
- started: string;
2077
- lastModified: string;
2078
- workflowTarget: string;
2079
- productTag: string;
2080
- };
2081
- detail: {
2082
- retry: string;
2083
- resume: string;
2084
- abort: string;
2085
- delete: string;
2086
- deleteQuestion: string;
2087
- abortTaskQuestion: string;
2088
- abortWorkflowQuestion: string;
2089
- retryTaskQuestion: string;
2090
- retryWorkflowQuestion: string;
2091
- status: string;
2092
- startedBy: string;
2093
- lastStep: string;
2094
- startedOn: string;
2095
- lastUpdate: string;
2096
- relatedSubscriptions: string;
2097
- subscriptions: string;
2098
- customer: string;
2099
- };
2100
- steps: {
2101
- taskSteps: string;
2102
- workflowSteps: string;
2103
- showDelta: string;
2104
- hideDelta: string;
2105
- viewOptions: string;
2106
- expandAll: string;
2107
- collapseAll: string;
2108
- duration: string;
2109
- userInput: string;
2110
- submitTaskFormLabel: string;
2111
- submitWorkflowFormLabel: string;
2112
- };
2113
- delta: {
2114
- title: string;
2115
- };
2116
- };
2117
- workflows: {
2118
- tabs: {
2119
- active: string;
2120
- completed: string;
2121
- };
2122
- index: {
2123
- title: string;
2124
- };
2125
- };
2126
- subscriptions: {
2127
- tabs: {
2128
- active: string;
2129
- terminated: string;
2130
- transient: string;
2131
- all: string;
2132
- };
2133
- index: {
2134
- id: string;
2135
- description: string;
2136
- status: string;
2137
- insync: string;
2138
- product: string;
2139
- tag: string;
2140
- startDate: string;
2141
- endDate: string;
2142
- note: string;
2143
- customerFullname: string;
2144
- customerShortcode: string;
2145
- };
2146
- detail: {
2147
- title: string;
2148
- tabs: {
2149
- general: string;
2150
- serviceConfiguration: string;
2151
- workflows: string;
2152
- relatedSubscriptions: string;
2153
- };
2154
- loadingStatus: string;
2155
- actions: {
2156
- create: string;
2157
- modify: string;
2158
- tasks: string;
2159
- terminate: string;
2160
- actions: string;
2161
- subscription: {
2162
- no_modify_deleted_related_objects: string;
2163
- no_modify_in_use_by_subscription: string;
2164
- no_modify_invalid_status: string;
2165
- no_modify_workflow: string;
2166
- no_termination_workflow: string;
2167
- no_validate_workflow: string;
2168
- not_in_sync: string;
2169
- relations_not_in_sync: string;
2170
- no_modify_subscription_in_use_by_others: string;
2171
- };
2172
- };
2173
- subscriptionInstanceId: string;
2174
- ownerSubscriptionId: string;
2175
- inUseByRelations: string;
2176
- showDetails: string;
2177
- self: string;
2178
- hideDetails: string;
2179
- subscriptionDetails: string;
2180
- productName: string;
2181
- fixedInputs: string;
2182
- productInfo: string;
2183
- noProductBlockSelected: string;
2184
- productBlocks: string;
2185
- ctaSelectProductBlock: string;
2186
- startedBy: string;
2187
- startedAt: string;
2188
- status: string;
2189
- id: string;
2190
- blockTitleSubscriptionDetails: string;
2191
- blockTitleFixedInputs: string;
2192
- blockTitleProductInfo: string;
2193
- subscriptionId: string;
2194
- description: string;
2195
- startDate: string;
2196
- insync: string;
2197
- customer: string;
2198
- customerUuid: string;
2199
- name: string;
2200
- productType: string;
2201
- tag: string;
2202
- created: string;
2203
- endDate: string;
2204
- note: string;
2205
- noRelatedSubscriptions: string;
2206
- hideTerminatedRelatedSubscriptions: string;
2207
- processDetail: {
2208
- id: string;
2209
- status: string;
2210
- startedAt: string;
2211
- startedBy: string;
2212
- };
2213
- showAll: string;
2214
- hideAll: string;
2215
- see: string;
2216
- setInSync: string;
2217
- setInSyncQuestion: string;
2218
- setInSyncFailed: {
2219
- title: string;
2220
- text: string;
2221
- };
2222
- setInSyncSuccess: {
2223
- title: string;
2224
- text: string;
2225
- };
2226
- };
2227
- };
2228
- tasks: {
2229
- page: {
2230
- taskName: string;
2231
- rerunAll: string;
2232
- rerunAllQuestion: string;
2233
- };
2234
- tabs: {
2235
- active: string;
2236
- completed: string;
2237
- };
2238
- };
2239
- settings: {
2240
- page: {
2241
- flushButton: string;
2242
- flushCacheSettingsTitle: string;
2243
- engineStatus: string;
2244
- modifyEngine: string;
2245
- pauseEngine: string;
2246
- runningProcesses: string;
2247
- selectSettings: string;
2248
- startEngine: string;
2249
- resetTextSearchIndex: string;
2250
- resetTextSearchIndexButton: string;
2251
- };
2252
- };
2253
- startPage: {
2254
- activeSubscriptions: {
2255
- buttonText: string;
2256
- headerTitle: string;
2257
- listTitle: string;
2258
- };
2259
- outOfSyncSubscriptions: {
2260
- buttonText: string;
2261
- headerTitle: string;
2262
- listTitle: string;
2263
- };
2264
- activeWorkflows: {
2265
- buttonText: string;
2266
- headerTitle: string;
2267
- listTitle: string;
2268
- };
2269
- failedTasks: {
2270
- buttonText: string;
2271
- headerTitle: string;
2272
- listTitle: string;
2273
- };
2274
- products: {
2275
- headerTitle: string;
2276
- listTitle: string;
2277
- };
2278
- };
2279
- } | {
2280
- pydanticForms: {
2281
- backendTranslations: Record<string, string>;
2282
- userInputForm: {
2283
- cancel: string;
2284
- submit: string;
2285
- previous: string;
2286
- previousQuestion: string;
2287
- startTask: string;
2288
- startWorkflow: string;
2289
- resumeTask: string;
2290
- resumeWorkflow: string;
2291
- inputFieldsHaveValidationErrors: string;
2292
- };
2293
- widgets: {
2294
- customer: {
2295
- placeholder: string;
2296
- loading: string;
2297
- };
2298
- contactPersonName: {
2299
- placeholder: string;
2300
- };
2301
- ipvAnyNetworkField: {
2302
- manuallySelectedPrefix: string;
2303
- };
2304
- node_select: {
2305
- nodes_loading: string;
2306
- select_node: string;
2307
- no_nodes_placeholder: string;
2308
- };
2309
- locationCode: {
2310
- placeholder: string;
2311
- };
2312
- product: {
2313
- placeholder: string;
2314
- };
2315
- select: {
2316
- placeholder: string;
2317
- };
2318
- vlan: {
2319
- vlansInUseError: string;
2320
- vlansInUse: string;
2321
- missingInIms: string;
2322
- nsiVlansAvailable: string;
2323
- nsiNoPortsAvailable: string;
2324
- allPortsAvailable: string;
2325
- placeholder: string;
2326
- placeholderNoServicePort: string;
2327
- invalidVlan: string;
2328
- untaggedPortInUse: string;
2329
- taggedOnly: string;
2330
- loadingIms: string;
2331
- };
2332
- subscription: {
2333
- placeholder: string;
2334
- loading: string;
2335
- };
2336
- nodePort: {
2337
- loadingNodes: string;
2338
- loadingPorts: string;
2339
- selectNode: string;
2340
- selectPort: string;
2341
- selectNodeFirst: string;
2342
- };
2343
- };
2344
- } | {
2345
- backendTranslations: Record<string, string>;
2346
- userInputForm: {
2347
- cancel: string;
2348
- submit: string;
2349
- previous: string;
2350
- startTask: string;
2351
- previousQuestion: string;
2352
- startWorkflow: string;
2353
- resumeTask: string;
2354
- resumeWorkflow: string;
2355
- inputFieldsHaveValidationErrors: string;
2356
- };
2357
- widgets: {
2358
- customer: {
2359
- placeholder: string;
2360
- loading: string;
2361
- };
2362
- contactPersonName: {
2363
- placeholder: string;
2364
- };
2365
- ipvAnyNetworkField: {
2366
- manuallySelectedPrefix: string;
2367
- };
2368
- node_select: {
2369
- nodes_loading: string;
2370
- select_node: string;
2371
- no_nodes_placeholder: string;
2372
- };
2373
- locationCode: {
2374
- placeholder: string;
2375
- };
2376
- product: {
2377
- placeholder: string;
2378
- };
2379
- select: {
2380
- placeholder: string;
2381
- };
2382
- vlan: {
2383
- vlansInUseError: string;
2384
- vlansInUse: string;
2385
- missingInIms: string;
2386
- nsiVlansAvailable: string;
2387
- nsiNoPortsAvailable: string;
2388
- allPortsAvailable: string;
2389
- placeholder: string;
2390
- placeholderNoServicePort: string;
2391
- invalidVlan: string;
2392
- untaggedPortInUse: string;
2393
- taggedOnly: string;
2394
- loadingIms: string;
2395
- };
2396
- subscription: {
2397
- placeholder: string;
2398
- loading: string;
2399
- };
2400
- nodePort: {
2401
- loadingNodes: string;
2402
- loadingPorts: string;
2403
- selectNode: string;
2404
- selectPort: string;
2405
- selectNodeFirst: string;
2406
- };
2407
- };
2408
- };
2409
- main: {
2410
- metadata: string;
2411
- metadataProducts: string;
2412
- metadataProductblocks: string;
2413
- metadataResourceTypes: string;
2414
- metadataWorkflows: string;
2415
- mobileTitle: string;
2416
- settings: string;
2417
- start: string;
2418
- subscriptions: string;
2419
- tasks: string;
2420
- title: string;
2421
- welcome: string;
2422
- workflows: string;
2423
- darkMode: string;
2424
- lightMode: string;
2425
- websocketConnected: string;
2426
- websocketDisconnected: string;
2427
- };
2428
- common: {
2429
- product: string;
2430
- deselect: string;
2431
- close: string;
2432
- editColumns: string;
2433
- loading: string;
2434
- newSubscription: string;
2435
- newTask: string;
2436
- noFailedTasks: string;
2437
- noItemsFound: string;
2438
- search: string;
2439
- errorMessage: string;
2440
- export: string;
2441
- unauthorizedPage: string;
2442
- insyncTrue: string;
2443
- insyncFalse: string;
2444
- };
2445
- confirmationDialog: {
2446
- title: string;
2447
- confirm: string;
2448
- cancel: string;
2449
- leavePage: string;
2450
- leavePageSub: string;
2451
- stay: string;
2452
- leave: string;
2453
- };
2454
- workflow: {
2455
- start_workflow_title: string;
2456
- };
2457
- errors: {
2458
- notAllResultsExported: string;
2459
- notAllResultsExportedTitle: string;
2460
- invalidQueryParts: string;
2461
- notAllowedWhenEngineIsNotRunningMessage: string;
2462
- notAllowedWhenEngineIsNotRunningTitle: string;
2463
- retrieve_stored_settings: string;
2464
- retrieve_stored_settings_title: string;
2465
- };
2466
- metadata: {
2467
- tabs: {
2468
- products: string;
2469
- productBlocks: string;
2470
- resourceTypes: string;
2471
- workflows: string;
2472
- };
2473
- products: {
2474
- id: string;
2475
- name: string;
2476
- description: string;
2477
- tag: string;
2478
- productType: string;
2479
- status: string;
2480
- productBlocks: string;
2481
- fixedInputs: string;
2482
- createdAt: string;
2483
- };
2484
- productBlocks: {
2485
- id: string;
2486
- name: string;
2487
- description: string;
2488
- tag: string;
2489
- status: string;
2490
- resourceTypes: string;
2491
- dependingProductBlocks: string;
2492
- createdAt: string;
2493
- endDate: string;
2494
- parentIds: string;
2495
- };
2496
- resourceTypes: {
2497
- type: string;
2498
- description: string;
2499
- resourceId: string;
2500
- usedInProductBlocks: string;
2501
- };
2502
- workflows: {
2503
- name: string;
2504
- description: string;
2505
- target: string;
2506
- productTags: string;
2507
- createdAt: string;
2508
- };
2509
- };
2510
- processes: {
2511
- index: {
2512
- workflowName: string;
2513
- step: string;
2514
- status: string;
2515
- product: string;
2516
- customer: string;
2517
- customerAbbreviation: string;
2518
- subscriptions: string;
2519
- createdBy: string;
2520
- assignee: string;
2521
- processId: string;
2522
- started: string;
2523
- lastModified: string;
2524
- workflowTarget: string;
2525
- productTag: string;
2526
- };
2527
- detail: {
2528
- retry: string;
2529
- resume: string;
2530
- abort: string;
2531
- delete: string;
2532
- deleteQuestion: string;
2533
- abortTaskQuestion: string;
2534
- abortWorkflowQuestion: string;
2535
- retryTaskQuestion: string;
2536
- retryWorkflowQuestion: string;
2537
- status: string;
2538
- startedBy: string;
2539
- lastStep: string;
2540
- startedOn: string;
2541
- lastUpdate: string;
2542
- relatedSubscriptions: string;
2543
- subscriptions: string;
2544
- customer: string;
2545
- };
2546
- steps: {
2547
- steps: string;
2548
- showDelta: string;
2549
- hideDelta: string;
2550
- viewOptions: string;
2551
- expandAll: string;
2552
- collapseAll: string;
2553
- duration: string;
2554
- userInput: string;
2555
- submitTaskFormLabel: string;
2556
- submitWorkflowFormLabel: string;
2557
- };
2558
- delta: {
2559
- title: string;
2560
- };
2561
- };
2562
- workflows: {
2563
- tabs: {
2564
- active: string;
2565
- completed: string;
2566
- };
2567
- index: {
2568
- title: string;
2569
- };
2570
- };
2571
- subscriptions: {
2572
- tabs: {
2573
- active: string;
2574
- terminated: string;
2575
- transient: string;
2576
- all: string;
2577
- };
2578
- index: {
2579
- id: string;
2580
- description: string;
2581
- status: string;
2582
- insync: string;
2583
- product: string;
2584
- tag: string;
2585
- startDate: string;
2586
- endDate: string;
2587
- note: string;
2588
- customerFullName: string;
2589
- customerAbbreviation: string;
2590
- };
2591
- detail: {
2592
- title: string;
2593
- tabs: {
2594
- general: string;
2595
- serviceConfiguration: string;
2596
- workflows: string;
2597
- relatedSubscriptions: string;
2598
- };
2599
- loadingStatus: string;
2600
- actions: {
2601
- create: string;
2602
- modify: string;
2603
- tasks: string;
2604
- terminate: string;
2605
- actions: string;
2606
- subscription: {
2607
- no_modify_deleted_related_objects: string;
2608
- no_modify_in_use_by_subscription: string;
2609
- no_modify_invalid_status: string;
2610
- no_modify_workflow: string;
2611
- no_termination_workflow: string;
2612
- no_validate_workflow: string;
2613
- not_in_sync: string;
2614
- relations_not_in_sync: string;
2615
- no_modify_subscription_in_use_by_others: string;
2616
- };
2617
- };
2618
- subscriptionInstanceId: string;
2619
- ownerSubscriptionId: string;
2620
- inUseByRelations: string;
2621
- showDetails: string;
2622
- hideDetails: string;
2623
- self: string;
2624
- subscriptionDetails: string;
2625
- productName: string;
2626
- fixedInputs: string;
2627
- productInfo: string;
2628
- noProductBlockSelected: string;
2629
- productBlocks: string;
2630
- ctaSelectProductBlock: string;
2631
- startedBy: string;
2632
- startedAt: string;
2633
- status: string;
2634
- id: string;
2635
- blockTitleSubscriptionDetails: string;
2636
- blockTitleFixedInputs: string;
2637
- blockTitleProductInfo: string;
2638
- subscriptionId: string;
2639
- description: string;
2640
- startDate: string;
2641
- insync: string;
2642
- customer: string;
2643
- customerUuid: string;
2644
- name: string;
2645
- productType: string;
2646
- tag: string;
2647
- created: string;
2648
- endDate: string;
2649
- note: string;
2650
- noRelatedSubscriptions: string;
2651
- hideTerminatedRelatedSubscriptions: string;
2652
- processDetail: {
2653
- id: string;
2654
- status: string;
2655
- startedAt: string;
2656
- startedBy: string;
2657
- };
2658
- showAll: string;
2659
- hideAll: string;
2660
- see: string;
2661
- setInSync: string;
2662
- setInSyncQuestion: string;
2663
- setInSyncFailed: {
2664
- title: string;
2665
- text: string;
2666
- };
2667
- setInSyncSuccess: {
2668
- title: string;
2669
- text: string;
2670
- };
2671
- };
2672
- };
2673
- tasks: {
2674
- page: {
2675
- taskName: string;
2676
- rerunAll: string;
2677
- rerunAllQuestion: string;
2678
- };
2679
- tabs: {
2680
- active: string;
2681
- completed: string;
2682
- };
2683
- };
2684
- settings: {
2685
- page: {
2686
- engineStatus: string;
2687
- flushButton: string;
2688
- flushCacheSettingsTitle: string;
2689
- modifyEngine: string;
2690
- pauseEngine: string;
2691
- runningProcesses: string;
2692
- selectSettings: string;
2693
- startEngine: string;
2694
- resetTextSearchIndex: string;
2695
- resetTextSearchIndexButton: string;
2696
- };
2697
- };
2698
- startPage: {
2699
- activeSubscriptions: {
2700
- buttonText: string;
2701
- headerTitle: string;
2702
- listTitle: string;
2703
- };
2704
- outOfSyncSubscriptions: {
2705
- buttonText: string;
2706
- headerTitle: string;
2707
- listTitle: string;
2708
- };
2709
- activeWorkflows: {
2710
- buttonText: string;
2711
- headerTitle: string;
2712
- listTitle: string;
2713
- };
2714
- failedTasks: {
2715
- buttonText: string;
2716
- headerTitle: string;
2717
- listTitle: string;
2718
- };
2719
- products: {
2720
- headerTitle: string;
2721
- listTitle: string;
2722
- };
2723
- };
2724
- };
2725
-
2726
- declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
2727
-
2728
- declare const RESOURCE_TYPE_FIELD_ID: keyof ResourceTypeDefinition;
2729
- declare const RESOURCE_TYPE_FIELD_TYPE: keyof ResourceTypeDefinition;
2730
- declare const RESOURCE_TYPE_FIELD_DESCRIPTION: keyof ResourceTypeDefinition;
2731
- declare const RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS: keyof ResourceTypeDefinition;
2732
- declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element;
2733
-
2734
- declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
2735
-
2736
- declare type WorkflowListItem = Pick<WorkflowDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
2737
- productTags: string[];
2738
- };
2739
- declare const WfoWorkflowsPage: () => _emotion_react_jsx_runtime.JSX.Element;
2740
-
2741
- declare const RENDER_ALL = "RENDER_ALL";
2742
- declare enum RenderDirection {
2743
- HORIZONTAL = "HORIZONTAL",
2744
- VERTICAL = "VERTICAL"
2745
- }
2746
- declare type WfoProcessesListSubscriptionsCellProps = {
2747
- subscriptions: Pick<Subscription, 'subscriptionId' | 'description'>[];
2748
- numberOfSubscriptionsToRender?: number | typeof RENDER_ALL;
2749
- renderDirection?: RenderDirection;
2750
- };
2751
- declare const WfoProcessListSubscriptionsCell: FC<WfoProcessesListSubscriptionsCellProps>;
2752
-
2753
- declare type GroupedStep = {
2754
- steps: Step[];
2755
- };
2756
- interface WfoProcessDetailPageProps {
2757
- processId: string;
2758
- processDetailRefetchInterval?: number;
2759
- }
2760
- declare const WfoProcessDetailPage: ({ processId, processDetailRefetchInterval, }: WfoProcessDetailPageProps) => _emotion_react_jsx_runtime.JSX.Element;
2761
-
2762
- interface WfoStartProcessPageProps {
2763
- processName: string;
2764
- isTask?: boolean;
2765
- }
2766
- interface UserInputForm {
2767
- stepUserInput?: JSONSchema6;
2768
- hasNext?: boolean;
2769
- }
2770
- declare const WfoStartProcessPage: ({ processName, isTask, }: WfoStartProcessPageProps) => _emotion_react_jsx_runtime.JSX.Element;
2771
-
2772
- declare const WfoStartPage: () => _emotion_react_jsx_runtime.JSX.Element;
2773
-
2774
- declare const WfoSubscriptionDetailPage: () => _emotion_react_jsx_runtime.JSX.Element;
2775
-
2776
- declare const WfoSubscriptionsListPage: () => _emotion_react_jsx_runtime.JSX.Element;
2777
-
2778
- declare const WfoTasksListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
2779
-
2780
- declare enum WfoTasksListTabType {
2781
- ACTIVE = "ACTIVE",
2782
- COMPLETED = "COMPLETED"
2783
- }
2784
- declare const defaultTasksListTabs: WfoFilterTab<WfoTasksListTabType, ProcessListItem>[];
2785
-
2786
- declare const getTasksListTabTypeFromString: (tabId?: string | undefined) => WfoTasksListTabType | undefined;
2787
-
2788
- declare const WfoWorkflowsListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
2789
-
2790
- declare enum BaseQueryTypes {
2791
- fetch = "fetch",
2792
- graphql = "graphql",
2793
- custom = "custom"
2794
- }
2795
- declare enum CacheTags {
2796
- engineStatus = "engineStatus",
2797
- processList = "processList",
2798
- processListSummary = "processListSummary",
2799
- subscription = "subscription",
2800
- subscriptionList = "subscriptionList"
2801
- }
2802
- declare type ExtraOptions = {
2803
- baseQueryType?: BaseQueryTypes;
2804
- apiName?: string;
2805
- };
2806
- declare const prepareHeaders: (headers: Headers) => Promise<Headers>;
2807
- declare const orchestratorApi: _reduxjs_toolkit_query_react.Api<(args: any, api: _reduxjs_toolkit_query_react.BaseQueryApi, extraOptions: ExtraOptions) => {
2808
- error: _reduxjs_toolkit_query_react.FetchBaseQueryError;
2809
- data?: undefined;
2810
- meta?: _reduxjs_toolkit_query_react.FetchBaseQueryMeta | undefined;
2811
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query_react.FetchBaseQueryError, _reduxjs_toolkit_query_react.FetchBaseQueryMeta>> | {
2812
- error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2813
- data?: undefined;
2814
- meta?: {} | undefined;
2815
- } | {
2816
- error?: undefined;
2817
- data: unknown;
2818
- meta?: {} | undefined;
2819
- } | 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>;
2820
-
2821
- declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2822
- baseQueryType?: BaseQueryTypes | undefined;
2823
- apiName?: string | undefined;
2824
- }) => {
2825
- error: _reduxjs_toolkit_query.FetchBaseQueryError;
2826
- data?: undefined;
2827
- meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2828
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2829
- error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2830
- data?: undefined;
2831
- meta?: {} | undefined;
1874
+ declare const useGetCustomersQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
1875
+ baseQueryType?: BaseQueryTypes | undefined;
1876
+ apiName?: string | undefined;
1877
+ }) => {
1878
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
1879
+ data?: undefined;
1880
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
1881
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
1882
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
1883
+ data?: undefined;
1884
+ meta?: {} | undefined;
2832
1885
  } | {
2833
1886
  error?: undefined;
2834
1887
  data: unknown;
@@ -3186,151 +2239,1176 @@ declare const useSetEngineStatusMutation: _reduxjs_toolkit_dist_query_react_buil
3186
2239
  data?: undefined;
3187
2240
  meta?: {} | undefined;
3188
2241
  } | {
3189
- error?: undefined;
3190
- data: unknown;
3191
- meta?: {} | undefined;
3192
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
2242
+ error?: undefined;
2243
+ data: unknown;
2244
+ meta?: {} | undefined;
2245
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, EngineStatusReturnValue, "orchestratorApi">>;
2246
+
2247
+ declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2248
+ baseQueryType?: BaseQueryTypes | undefined;
2249
+ apiName?: string | undefined;
2250
+ }) => {
2251
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2252
+ data?: undefined;
2253
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2254
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2255
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2256
+ data?: undefined;
2257
+ meta?: {} | undefined;
2258
+ } | {
2259
+ error?: undefined;
2260
+ data: unknown;
2261
+ meta?: {} | undefined;
2262
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
2263
+
2264
+ declare const subscriptionDetailQuery = "\n query SubscriptionDetail($subscriptionId: String!) {\n subscriptions(\n filterBy: { value: $subscriptionId, field: \"subscriptionId\" }\n ) {\n page {\n subscriptionId\n description\n fixedInputs\n insync\n note\n product {\n createdAt\n name\n status\n endDate\n description\n tag\n productType\n productId\n }\n endDate\n startDate\n status\n customerId\n metadata\n customer {\n fullname\n customerId\n shortcode\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n processes(sortBy: { field: \"startedAt\", order: ASC }) {\n page {\n processId\n lastStatus\n startedAt\n createdBy\n workflowTarget\n workflowName\n isTask\n }\n }\n }\n }\n }\n";
2265
+ declare type SubscriptionDetailResponse = {
2266
+ subscription: SubscriptionDetail;
2267
+ } & BaseGraphQlResult;
2268
+ declare const useGetSubscriptionDetailQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
2269
+ subscriptionId: string;
2270
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2271
+ baseQueryType?: BaseQueryTypes | undefined;
2272
+ apiName?: string | undefined;
2273
+ }) => {
2274
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2275
+ data?: undefined;
2276
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2277
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2278
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2279
+ data?: undefined;
2280
+ meta?: {} | undefined;
2281
+ } | {
2282
+ error?: undefined;
2283
+ data: unknown;
2284
+ meta?: {} | undefined;
2285
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDetailResponse, "orchestratorApi">>;
2286
+
2287
+ declare const subscriptionsDropdownOptionsQuery = "\n query SubscriptionDropdownOptions(\n $filterBy: [GraphqlFilter!]\n $first: Int!\n ) {\n subscriptions(filterBy: $filterBy, first: $first, after: 0) {\n page {\n description\n subscriptionId\n product {\n tag\n productId\n }\n customer {\n fullname\n customerId\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n fixedInputs\n }\n }\n }\n";
2288
+ declare type SubscriptionDropdownOptionsResponse = {
2289
+ subscriptionDropdownOptions: SubscriptionDropdownOption[];
2290
+ };
2291
+ declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<SubscriptionDropdownOption>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2292
+ baseQueryType?: BaseQueryTypes | undefined;
2293
+ apiName?: string | undefined;
2294
+ }) => {
2295
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2296
+ data?: undefined;
2297
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2298
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2299
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2300
+ data?: undefined;
2301
+ meta?: {} | undefined;
2302
+ } | {
2303
+ error?: undefined;
2304
+ data: unknown;
2305
+ meta?: {} | undefined;
2306
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
2307
+
2308
+ declare type WorkflowOption = {
2309
+ workflowName: WorkflowDefinition['name'];
2310
+ productName: ProductDefinition['name'];
2311
+ productId: ProductDefinition['productId'];
2312
+ };
2313
+ declare type StartOptionsResponse<StartOption> = {
2314
+ startOptions: StartOption[];
2315
+ };
2316
+ declare type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
2317
+ declare const useGetWorkflowOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2318
+ baseQueryType?: BaseQueryTypes | undefined;
2319
+ apiName?: string | undefined;
2320
+ }) => {
2321
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2322
+ data?: undefined;
2323
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2324
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2325
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2326
+ data?: undefined;
2327
+ meta?: {} | undefined;
2328
+ } | {
2329
+ error?: undefined;
2330
+ data: unknown;
2331
+ meta?: {} | undefined;
2332
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
2333
+ declare const useGetTaskOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
2334
+ baseQueryType?: BaseQueryTypes | undefined;
2335
+ apiName?: string | undefined;
2336
+ }) => {
2337
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
2338
+ data?: undefined;
2339
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
2340
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
2341
+ error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
2342
+ data?: undefined;
2343
+ meta?: {} | undefined;
2344
+ } | {
2345
+ error?: undefined;
2346
+ data: unknown;
2347
+ meta?: {} | undefined;
2348
+ } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
2349
+
2350
+ declare type ToastState = {
2351
+ messages: Toast[];
2352
+ };
2353
+ declare type ToastMessagesSlice = Slice<ToastState, {
2354
+ addToastMessage: (state: ToastState, action: PayloadAction<Toast>) => ToastState;
2355
+ removeToastMessage: (state: ToastState, action: PayloadAction<Toast['id']>) => ToastState;
2356
+ }, 'toastMessages', 'toastMessages'>;
2357
+ declare const toastMessagesSlice: ToastMessagesSlice;
2358
+ declare const addToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<Toast, "toastMessages/addToastMessage">;
2359
+ declare const removeToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<string, "toastMessages/removeToastMessage">;
2360
+ declare const toastMessagesReducer: Reducer<ToastState>;
2361
+
2362
+ declare type OrchestratorConfigSlice = Slice<OrchestratorConfig>;
2363
+ declare const getOrchestratorConfigSlice: (config: OrchestratorConfig) => OrchestratorConfigSlice;
2364
+
2365
+ declare type CustomApiConfig = {
2366
+ apiName: string;
2367
+ apiBaseUrl: string;
2368
+ };
2369
+ declare type CustomApiSlice = Slice<CustomApiConfig[]>;
2370
+ declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
2371
+
2372
+ declare type RootState = {
2373
+ orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
2374
+ toastMessages: ReturnType<typeof toastMessagesReducer>;
2375
+ orchestratorConfig: OrchestratorConfig;
2376
+ customApis: CustomApiConfig[];
2377
+ };
2378
+ declare const getOrchestratorStore: (orchestratorConfig: OrchestratorConfig, customApis: CustomApiConfig[]) => EnhancedStore<RootState>;
2379
+ declare type AppDispatch = Dispatch<UnknownAction>;
2380
+
2381
+ declare type StoreProviderProps = {
2382
+ initialOrchestratorConfig: OrchestratorConfig;
2383
+ customApis?: CustomApiConfig[];
2384
+ children: ReactNode;
2385
+ };
2386
+ declare const StoreProvider: ({ initialOrchestratorConfig, customApis, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
2387
+
2388
+ declare type SubscriptionListResponse = {
2389
+ subscriptions: Subscription[];
2390
+ } & BaseGraphQlResult;
2391
+
2392
+ declare type SubscriptionListItem = Pick<Subscription, 'subscriptionId' | 'description' | 'status' | 'insync' | 'note'> & {
2393
+ startDate: Date | null;
2394
+ endDate: Date | null;
2395
+ productName: string;
2396
+ tag: string | null;
2397
+ customerFullname: string;
2398
+ customerShortcode: string;
2399
+ metadata: object | null;
2400
+ };
2401
+ declare const mapGraphQlSubscriptionsResultToPageInfo: (graphqlResponse: SubscriptionListResponse) => GraphQLPageInfo;
2402
+ declare const mapGraphQlSubscriptionsResultToSubscriptionListItems: (graphqlResponse: SubscriptionListResponse) => SubscriptionListItem[];
2403
+
2404
+ declare enum WfoSubscriptionListTab {
2405
+ ACTIVE = "ACTIVE",
2406
+ TERMINATED = "TERMINATED",
2407
+ TRANSIENT = "TRANSIENT",
2408
+ ALL = "ALL"
2409
+ }
2410
+ declare const subscriptionListTabs: WfoFilterTab<WfoSubscriptionListTab, SubscriptionListItem>[];
2411
+
2412
+ declare type WfoSubscriptionsListProps = {
2413
+ alwaysOnFilters?: FilterQuery<SubscriptionListItem>[];
2414
+ dataDisplayParams: DataDisplayParams<SubscriptionListItem>;
2415
+ setDataDisplayParam: <DisplayParamKey extends keyof DataDisplayParams<SubscriptionListItem>>(prop: DisplayParamKey, value: DataDisplayParams<SubscriptionListItem>[DisplayParamKey]) => void;
2416
+ hiddenColumns: TableColumnKeys<SubscriptionListItem> | undefined;
2417
+ };
2418
+ declare const WfoSubscriptionsList: FC<WfoSubscriptionsListProps>;
2419
+
2420
+ declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
2421
+ declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
2422
+
2423
+ declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
2424
+ declare const useGetTranslationMessages: (locale: string | undefined) => {
2425
+ pydanticForms: {
2426
+ backendTranslations: Record<string, string>;
2427
+ userInputForm: {
2428
+ cancel: string;
2429
+ submit: string;
2430
+ previous: string;
2431
+ previousQuestion: string;
2432
+ startTask: string;
2433
+ startWorkflow: string;
2434
+ resumeTask: string;
2435
+ resumeWorkflow: string;
2436
+ inputFieldsHaveValidationErrors: string;
2437
+ };
2438
+ widgets: {
2439
+ customer: {
2440
+ placeholder: string;
2441
+ loading: string;
2442
+ };
2443
+ contactPersonName: {
2444
+ placeholder: string;
2445
+ };
2446
+ ipvAnyNetworkField: {
2447
+ manuallySelectedPrefix: string;
2448
+ };
2449
+ node_select: {
2450
+ nodes_loading: string;
2451
+ select_node: string;
2452
+ no_nodes_placeholder: string;
2453
+ };
2454
+ locationCode: {
2455
+ placeholder: string;
2456
+ };
2457
+ product: {
2458
+ placeholder: string;
2459
+ };
2460
+ select: {
2461
+ placeholder: string;
2462
+ };
2463
+ vlan: {
2464
+ vlansInUseError: string;
2465
+ vlansInUse: string;
2466
+ missingInIms: string;
2467
+ nsiVlansAvailable: string;
2468
+ nsiNoPortsAvailable: string;
2469
+ allPortsAvailable: string;
2470
+ placeholder: string;
2471
+ placeholderNoServicePort: string;
2472
+ invalidVlan: string;
2473
+ untaggedPortInUse: string;
2474
+ taggedOnly: string;
2475
+ loadingIms: string;
2476
+ };
2477
+ subscription: {
2478
+ placeholder: string;
2479
+ loading: string;
2480
+ };
2481
+ nodePort: {
2482
+ loadingNodes: string;
2483
+ loadingPorts: string;
2484
+ selectNode: string;
2485
+ selectPort: string;
2486
+ selectNodeFirst: string;
2487
+ };
2488
+ };
2489
+ } | {
2490
+ backendTranslations: Record<string, string>;
2491
+ userInputForm: {
2492
+ cancel: string;
2493
+ submit: string;
2494
+ previous: string;
2495
+ startTask: string;
2496
+ previousQuestion: string;
2497
+ startWorkflow: string;
2498
+ resumeTask: string;
2499
+ resumeWorkflow: string;
2500
+ inputFieldsHaveValidationErrors: string;
2501
+ };
2502
+ widgets: {
2503
+ customer: {
2504
+ placeholder: string;
2505
+ loading: string;
2506
+ };
2507
+ contactPersonName: {
2508
+ placeholder: string;
2509
+ };
2510
+ ipvAnyNetworkField: {
2511
+ manuallySelectedPrefix: string;
2512
+ };
2513
+ node_select: {
2514
+ nodes_loading: string;
2515
+ select_node: string;
2516
+ no_nodes_placeholder: string;
2517
+ };
2518
+ locationCode: {
2519
+ placeholder: string;
2520
+ };
2521
+ product: {
2522
+ placeholder: string;
2523
+ };
2524
+ select: {
2525
+ placeholder: string;
2526
+ };
2527
+ vlan: {
2528
+ vlansInUseError: string;
2529
+ vlansInUse: string;
2530
+ missingInIms: string;
2531
+ nsiVlansAvailable: string;
2532
+ nsiNoPortsAvailable: string;
2533
+ allPortsAvailable: string;
2534
+ placeholder: string;
2535
+ placeholderNoServicePort: string;
2536
+ invalidVlan: string;
2537
+ untaggedPortInUse: string;
2538
+ taggedOnly: string;
2539
+ loadingIms: string;
2540
+ };
2541
+ subscription: {
2542
+ placeholder: string;
2543
+ loading: string;
2544
+ };
2545
+ nodePort: {
2546
+ loadingNodes: string;
2547
+ loadingPorts: string;
2548
+ selectNode: string;
2549
+ selectPort: string;
2550
+ selectNodeFirst: string;
2551
+ };
2552
+ };
2553
+ };
2554
+ main: {
2555
+ metadata: string;
2556
+ metadataProducts: string;
2557
+ metadataProductblocks: string;
2558
+ metadataResourceTypes: string;
2559
+ metadataWorkflows: string;
2560
+ mobileTitle: string;
2561
+ settings: string;
2562
+ start: string;
2563
+ subscriptions: string;
2564
+ tasks: string;
2565
+ title: string;
2566
+ welcome: string;
2567
+ workflows: string;
2568
+ darkMode: string;
2569
+ lightMode: string;
2570
+ websocketConnected: string;
2571
+ websocketDisconnected: string;
2572
+ };
2573
+ common: {
2574
+ product: string;
2575
+ deselect: string;
2576
+ close: string;
2577
+ editColumns: string;
2578
+ loading: string;
2579
+ newSubscription: string;
2580
+ newTask: string;
2581
+ noFailedTasks: string;
2582
+ noItemsFound: string;
2583
+ search: string;
2584
+ errorMessage: string;
2585
+ export: string;
2586
+ unauthorizedPage: string;
2587
+ insyncTrue: string;
2588
+ insyncFalse: string;
2589
+ };
2590
+ confirmationDialog: {
2591
+ title: string;
2592
+ confirm: string;
2593
+ cancel: string;
2594
+ leavePage: string;
2595
+ leavePageSub: string;
2596
+ stay: string;
2597
+ leave: string;
2598
+ };
2599
+ workflow: {
2600
+ start_workflow_title: string;
2601
+ };
2602
+ errors: {
2603
+ notAllResultsExported: string;
2604
+ notAllResultsExportedTitle: string;
2605
+ invalidQueryParts: string;
2606
+ notAllowedWhenEngineIsNotRunningMessage: string;
2607
+ notAllowedWhenEngineIsNotRunningTitle: string;
2608
+ retrieve_stored_settings: string;
2609
+ retrieve_stored_settings_title: string;
2610
+ };
2611
+ metadata: {
2612
+ title: string;
2613
+ tabs: {
2614
+ products: string;
2615
+ productBlocks: string;
2616
+ resourceTypes: string;
2617
+ workflows: string;
2618
+ };
2619
+ products: {
2620
+ id: string;
2621
+ name: string;
2622
+ tag: string;
2623
+ description: string;
2624
+ productType: string;
2625
+ status: string;
2626
+ productBlocks: string;
2627
+ fixedInputs: string;
2628
+ createdAt: string;
2629
+ };
2630
+ productBlocks: {
2631
+ id: string;
2632
+ name: string;
2633
+ description: string;
2634
+ tag: string;
2635
+ status: string;
2636
+ resourceTypes: string;
2637
+ dependingProductBlocks: string;
2638
+ createdAt: string;
2639
+ endDate: string;
2640
+ parentIds: string;
2641
+ };
2642
+ resourceTypes: {
2643
+ type: string;
2644
+ description: string;
2645
+ resourceId: string;
2646
+ usedInProductBlocks: string;
2647
+ };
2648
+ workflows: {
2649
+ name: string;
2650
+ description: string;
2651
+ target: string;
2652
+ productTags: string;
2653
+ createdAt: string;
2654
+ };
2655
+ };
2656
+ processes: {
2657
+ index: {
2658
+ workflowName: string;
2659
+ step: string;
2660
+ status: string;
2661
+ product: string;
2662
+ customer: string;
2663
+ customerAbbreviation: string;
2664
+ subscriptions: string;
2665
+ createdBy: string;
2666
+ assignee: string;
2667
+ processId: string;
2668
+ started: string;
2669
+ lastModified: string;
2670
+ workflowTarget: string;
2671
+ productTag: string;
2672
+ };
2673
+ detail: {
2674
+ retry: string;
2675
+ resume: string;
2676
+ abort: string;
2677
+ delete: string;
2678
+ deleteQuestion: string;
2679
+ abortTaskQuestion: string;
2680
+ abortWorkflowQuestion: string;
2681
+ retryTaskQuestion: string;
2682
+ retryWorkflowQuestion: string;
2683
+ status: string;
2684
+ startedBy: string;
2685
+ lastStep: string;
2686
+ startedOn: string;
2687
+ lastUpdate: string;
2688
+ relatedSubscriptions: string;
2689
+ subscriptions: string;
2690
+ customer: string;
2691
+ };
2692
+ steps: {
2693
+ taskSteps: string;
2694
+ workflowSteps: string;
2695
+ showDelta: string;
2696
+ hideDelta: string;
2697
+ viewOptions: string;
2698
+ expandAll: string;
2699
+ collapseAll: string;
2700
+ duration: string;
2701
+ userInput: string;
2702
+ submitTaskFormLabel: string;
2703
+ submitWorkflowFormLabel: string;
2704
+ };
2705
+ delta: {
2706
+ title: string;
2707
+ };
2708
+ };
2709
+ workflows: {
2710
+ tabs: {
2711
+ active: string;
2712
+ completed: string;
2713
+ };
2714
+ index: {
2715
+ title: string;
2716
+ };
2717
+ };
2718
+ subscriptions: {
2719
+ tabs: {
2720
+ active: string;
2721
+ terminated: string;
2722
+ transient: string;
2723
+ all: string;
2724
+ };
2725
+ index: {
2726
+ id: string;
2727
+ description: string;
2728
+ status: string;
2729
+ insync: string;
2730
+ product: string;
2731
+ tag: string;
2732
+ startDate: string;
2733
+ endDate: string;
2734
+ metadata: string;
2735
+ note: string;
2736
+ customerFullname: string;
2737
+ customerShortcode: string;
2738
+ };
2739
+ detail: {
2740
+ title: string;
2741
+ tabs: {
2742
+ general: string;
2743
+ serviceConfiguration: string;
2744
+ workflows: string;
2745
+ relatedSubscriptions: string;
2746
+ };
2747
+ loadingStatus: string;
2748
+ actions: {
2749
+ create: string;
2750
+ modify: string;
2751
+ tasks: string;
2752
+ terminate: string;
2753
+ actions: string;
2754
+ subscription: {
2755
+ no_modify_deleted_related_objects: string;
2756
+ no_modify_in_use_by_subscription: string;
2757
+ no_modify_invalid_status: string;
2758
+ no_modify_workflow: string;
2759
+ no_termination_workflow: string;
2760
+ no_validate_workflow: string;
2761
+ not_in_sync: string;
2762
+ relations_not_in_sync: string;
2763
+ no_modify_subscription_in_use_by_others: string;
2764
+ };
2765
+ };
2766
+ subscriptionInstanceId: string;
2767
+ ownerSubscriptionId: string;
2768
+ inUseByRelations: string;
2769
+ showDetails: string;
2770
+ self: string;
2771
+ hideDetails: string;
2772
+ subscriptionDetails: string;
2773
+ productName: string;
2774
+ fixedInputs: string;
2775
+ productInfo: string;
2776
+ noProductBlockSelected: string;
2777
+ productBlocks: string;
2778
+ ctaSelectProductBlock: string;
2779
+ startedBy: string;
2780
+ startedAt: string;
2781
+ status: string;
2782
+ id: string;
2783
+ blockTitleSubscriptionDetails: string;
2784
+ blockTitleFixedInputs: string;
2785
+ blockTitleProductInfo: string;
2786
+ subscriptionId: string;
2787
+ description: string;
2788
+ startDate: string;
2789
+ insync: string;
2790
+ customer: string;
2791
+ customerUuid: string;
2792
+ name: string;
2793
+ productType: string;
2794
+ tag: string;
2795
+ created: string;
2796
+ endDate: string;
2797
+ metadata: string;
2798
+ note: string;
2799
+ noRelatedSubscriptions: string;
2800
+ hideTerminatedRelatedSubscriptions: string;
2801
+ processDetail: {
2802
+ id: string;
2803
+ status: string;
2804
+ startedAt: string;
2805
+ startedBy: string;
2806
+ };
2807
+ showAll: string;
2808
+ hideAll: string;
2809
+ see: string;
2810
+ setInSync: string;
2811
+ setInSyncQuestion: string;
2812
+ setInSyncFailed: {
2813
+ title: string;
2814
+ text: string;
2815
+ };
2816
+ setInSyncSuccess: {
2817
+ title: string;
2818
+ text: string;
2819
+ };
2820
+ };
2821
+ };
2822
+ tasks: {
2823
+ page: {
2824
+ taskName: string;
2825
+ rerunAll: string;
2826
+ rerunAllQuestion: string;
2827
+ };
2828
+ tabs: {
2829
+ active: string;
2830
+ completed: string;
2831
+ };
2832
+ };
2833
+ settings: {
2834
+ page: {
2835
+ flushButton: string;
2836
+ flushCacheSettingsTitle: string;
2837
+ engineStatus: string;
2838
+ modifyEngine: string;
2839
+ pauseEngine: string;
2840
+ runningProcesses: string;
2841
+ selectSettings: string;
2842
+ startEngine: string;
2843
+ resetTextSearchIndex: string;
2844
+ resetTextSearchIndexButton: string;
2845
+ };
2846
+ };
2847
+ startPage: {
2848
+ activeSubscriptions: {
2849
+ buttonText: string;
2850
+ headerTitle: string;
2851
+ listTitle: string;
2852
+ };
2853
+ outOfSyncSubscriptions: {
2854
+ buttonText: string;
2855
+ headerTitle: string;
2856
+ listTitle: string;
2857
+ };
2858
+ activeWorkflows: {
2859
+ buttonText: string;
2860
+ headerTitle: string;
2861
+ listTitle: string;
2862
+ };
2863
+ failedTasks: {
2864
+ buttonText: string;
2865
+ headerTitle: string;
2866
+ listTitle: string;
2867
+ };
2868
+ products: {
2869
+ headerTitle: string;
2870
+ listTitle: string;
2871
+ };
2872
+ };
2873
+ } | {
2874
+ pydanticForms: {
2875
+ backendTranslations: Record<string, string>;
2876
+ userInputForm: {
2877
+ cancel: string;
2878
+ submit: string;
2879
+ previous: string;
2880
+ previousQuestion: string;
2881
+ startTask: string;
2882
+ startWorkflow: string;
2883
+ resumeTask: string;
2884
+ resumeWorkflow: string;
2885
+ inputFieldsHaveValidationErrors: string;
2886
+ };
2887
+ widgets: {
2888
+ customer: {
2889
+ placeholder: string;
2890
+ loading: string;
2891
+ };
2892
+ contactPersonName: {
2893
+ placeholder: string;
2894
+ };
2895
+ ipvAnyNetworkField: {
2896
+ manuallySelectedPrefix: string;
2897
+ };
2898
+ node_select: {
2899
+ nodes_loading: string;
2900
+ select_node: string;
2901
+ no_nodes_placeholder: string;
2902
+ };
2903
+ locationCode: {
2904
+ placeholder: string;
2905
+ };
2906
+ product: {
2907
+ placeholder: string;
2908
+ };
2909
+ select: {
2910
+ placeholder: string;
2911
+ };
2912
+ vlan: {
2913
+ vlansInUseError: string;
2914
+ vlansInUse: string;
2915
+ missingInIms: string;
2916
+ nsiVlansAvailable: string;
2917
+ nsiNoPortsAvailable: string;
2918
+ allPortsAvailable: string;
2919
+ placeholder: string;
2920
+ placeholderNoServicePort: string;
2921
+ invalidVlan: string;
2922
+ untaggedPortInUse: string;
2923
+ taggedOnly: string;
2924
+ loadingIms: string;
2925
+ };
2926
+ subscription: {
2927
+ placeholder: string;
2928
+ loading: string;
2929
+ };
2930
+ nodePort: {
2931
+ loadingNodes: string;
2932
+ loadingPorts: string;
2933
+ selectNode: string;
2934
+ selectPort: string;
2935
+ selectNodeFirst: string;
2936
+ };
2937
+ };
2938
+ } | {
2939
+ backendTranslations: Record<string, string>;
2940
+ userInputForm: {
2941
+ cancel: string;
2942
+ submit: string;
2943
+ previous: string;
2944
+ startTask: string;
2945
+ previousQuestion: string;
2946
+ startWorkflow: string;
2947
+ resumeTask: string;
2948
+ resumeWorkflow: string;
2949
+ inputFieldsHaveValidationErrors: string;
2950
+ };
2951
+ widgets: {
2952
+ customer: {
2953
+ placeholder: string;
2954
+ loading: string;
2955
+ };
2956
+ contactPersonName: {
2957
+ placeholder: string;
2958
+ };
2959
+ ipvAnyNetworkField: {
2960
+ manuallySelectedPrefix: string;
2961
+ };
2962
+ node_select: {
2963
+ nodes_loading: string;
2964
+ select_node: string;
2965
+ no_nodes_placeholder: string;
2966
+ };
2967
+ locationCode: {
2968
+ placeholder: string;
2969
+ };
2970
+ product: {
2971
+ placeholder: string;
2972
+ };
2973
+ select: {
2974
+ placeholder: string;
2975
+ };
2976
+ vlan: {
2977
+ vlansInUseError: string;
2978
+ vlansInUse: string;
2979
+ missingInIms: string;
2980
+ nsiVlansAvailable: string;
2981
+ nsiNoPortsAvailable: string;
2982
+ allPortsAvailable: string;
2983
+ placeholder: string;
2984
+ placeholderNoServicePort: string;
2985
+ invalidVlan: string;
2986
+ untaggedPortInUse: string;
2987
+ taggedOnly: string;
2988
+ loadingIms: string;
2989
+ };
2990
+ subscription: {
2991
+ placeholder: string;
2992
+ loading: string;
2993
+ };
2994
+ nodePort: {
2995
+ loadingNodes: string;
2996
+ loadingPorts: string;
2997
+ selectNode: string;
2998
+ selectPort: string;
2999
+ selectNodeFirst: string;
3000
+ };
3001
+ };
3002
+ };
3003
+ main: {
3004
+ metadata: string;
3005
+ metadataProducts: string;
3006
+ metadataProductblocks: string;
3007
+ metadataResourceTypes: string;
3008
+ metadataWorkflows: string;
3009
+ mobileTitle: string;
3010
+ settings: string;
3011
+ start: string;
3012
+ subscriptions: string;
3013
+ tasks: string;
3014
+ title: string;
3015
+ welcome: string;
3016
+ workflows: string;
3017
+ darkMode: string;
3018
+ lightMode: string;
3019
+ websocketConnected: string;
3020
+ websocketDisconnected: string;
3021
+ };
3022
+ common: {
3023
+ product: string;
3024
+ deselect: string;
3025
+ close: string;
3026
+ editColumns: string;
3027
+ loading: string;
3028
+ newSubscription: string;
3029
+ newTask: string;
3030
+ noFailedTasks: string;
3031
+ noItemsFound: string;
3032
+ search: string;
3033
+ errorMessage: string;
3034
+ export: string;
3035
+ unauthorizedPage: string;
3036
+ insyncTrue: string;
3037
+ insyncFalse: string;
3038
+ };
3039
+ confirmationDialog: {
3040
+ title: string;
3041
+ confirm: string;
3042
+ cancel: string;
3043
+ leavePage: string;
3044
+ leavePageSub: string;
3045
+ stay: string;
3046
+ leave: string;
3047
+ };
3048
+ workflow: {
3049
+ start_workflow_title: string;
3050
+ };
3051
+ errors: {
3052
+ notAllResultsExported: string;
3053
+ notAllResultsExportedTitle: string;
3054
+ invalidQueryParts: string;
3055
+ notAllowedWhenEngineIsNotRunningMessage: string;
3056
+ notAllowedWhenEngineIsNotRunningTitle: string;
3057
+ retrieve_stored_settings: string;
3058
+ retrieve_stored_settings_title: string;
3059
+ };
3060
+ metadata: {
3061
+ tabs: {
3062
+ products: string;
3063
+ productBlocks: string;
3064
+ resourceTypes: string;
3065
+ workflows: string;
3066
+ };
3067
+ products: {
3068
+ id: string;
3069
+ name: string;
3070
+ description: string;
3071
+ tag: string;
3072
+ productType: string;
3073
+ status: string;
3074
+ productBlocks: string;
3075
+ fixedInputs: string;
3076
+ createdAt: string;
3077
+ };
3078
+ productBlocks: {
3079
+ id: string;
3080
+ name: string;
3081
+ description: string;
3082
+ tag: string;
3083
+ status: string;
3084
+ resourceTypes: string;
3085
+ dependingProductBlocks: string;
3086
+ createdAt: string;
3087
+ endDate: string;
3088
+ parentIds: string;
3089
+ };
3090
+ resourceTypes: {
3091
+ type: string;
3092
+ description: string;
3093
+ resourceId: string;
3094
+ usedInProductBlocks: string;
3095
+ };
3096
+ workflows: {
3097
+ name: string;
3098
+ description: string;
3099
+ target: string;
3100
+ productTags: string;
3101
+ createdAt: string;
3102
+ };
3103
+ };
3104
+ processes: {
3105
+ index: {
3106
+ workflowName: string;
3107
+ step: string;
3108
+ status: string;
3109
+ product: string;
3110
+ customer: string;
3111
+ customerAbbreviation: string;
3112
+ subscriptions: string;
3113
+ createdBy: string;
3114
+ assignee: string;
3115
+ processId: string;
3116
+ started: string;
3117
+ lastModified: string;
3118
+ workflowTarget: string;
3119
+ productTag: string;
3120
+ };
3121
+ detail: {
3122
+ retry: string;
3123
+ resume: string;
3124
+ abort: string;
3125
+ delete: string;
3126
+ deleteQuestion: string;
3127
+ abortTaskQuestion: string;
3128
+ abortWorkflowQuestion: string;
3129
+ retryTaskQuestion: string;
3130
+ retryWorkflowQuestion: string;
3131
+ status: string;
3132
+ startedBy: string;
3133
+ lastStep: string;
3134
+ startedOn: string;
3135
+ lastUpdate: string;
3136
+ relatedSubscriptions: string;
3137
+ subscriptions: string;
3138
+ customer: string;
3139
+ };
3140
+ steps: {
3141
+ steps: string;
3142
+ showDelta: string;
3143
+ hideDelta: string;
3144
+ viewOptions: string;
3145
+ expandAll: string;
3146
+ collapseAll: string;
3147
+ duration: string;
3148
+ userInput: string;
3149
+ submitTaskFormLabel: string;
3150
+ submitWorkflowFormLabel: string;
3151
+ };
3152
+ delta: {
3153
+ title: string;
3154
+ };
3155
+ };
3156
+ workflows: {
3157
+ tabs: {
3158
+ active: string;
3159
+ completed: string;
3160
+ };
3161
+ index: {
3162
+ title: string;
3163
+ };
3164
+ };
3165
+ subscriptions: {
3166
+ tabs: {
3167
+ active: string;
3168
+ terminated: string;
3169
+ transient: string;
3170
+ all: string;
3171
+ };
3172
+ index: {
3173
+ id: string;
3174
+ description: string;
3175
+ status: string;
3176
+ insync: string;
3177
+ product: string;
3178
+ tag: string;
3179
+ startDate: string;
3180
+ endDate: string;
3181
+ note: string;
3182
+ metadata: string;
3183
+ customerFullName: string;
3184
+ customerAbbreviation: string;
3185
+ };
3186
+ detail: {
3187
+ title: string;
3188
+ tabs: {
3189
+ general: string;
3190
+ serviceConfiguration: string;
3191
+ workflows: string;
3192
+ relatedSubscriptions: string;
3193
+ };
3194
+ loadingStatus: string;
3195
+ actions: {
3196
+ create: string;
3197
+ modify: string;
3198
+ tasks: string;
3199
+ terminate: string;
3200
+ actions: string;
3201
+ subscription: {
3202
+ no_modify_deleted_related_objects: string;
3203
+ no_modify_in_use_by_subscription: string;
3204
+ no_modify_invalid_status: string;
3205
+ no_modify_workflow: string;
3206
+ no_termination_workflow: string;
3207
+ no_validate_workflow: string;
3208
+ not_in_sync: string;
3209
+ relations_not_in_sync: string;
3210
+ no_modify_subscription_in_use_by_others: string;
3211
+ };
3212
+ };
3213
+ subscriptionInstanceId: string;
3214
+ ownerSubscriptionId: string;
3215
+ inUseByRelations: string;
3216
+ showDetails: string;
3217
+ hideDetails: string;
3218
+ self: string;
3219
+ subscriptionDetails: string;
3220
+ productName: string;
3221
+ fixedInputs: string;
3222
+ productInfo: string;
3223
+ noProductBlockSelected: string;
3224
+ productBlocks: string;
3225
+ ctaSelectProductBlock: string;
3226
+ startedBy: string;
3227
+ startedAt: string;
3228
+ status: string;
3229
+ id: string;
3230
+ blockTitleSubscriptionDetails: string;
3231
+ blockTitleFixedInputs: string;
3232
+ blockTitleProductInfo: string;
3233
+ subscriptionId: string;
3234
+ description: string;
3235
+ startDate: string;
3236
+ insync: string;
3237
+ customer: string;
3238
+ customerUuid: string;
3239
+ metadata: string;
3240
+ name: string;
3241
+ productType: string;
3242
+ tag: string;
3243
+ created: string;
3244
+ endDate: string;
3245
+ note: string;
3246
+ noRelatedSubscriptions: string;
3247
+ hideTerminatedRelatedSubscriptions: string;
3248
+ processDetail: {
3249
+ id: string;
3250
+ status: string;
3251
+ startedAt: string;
3252
+ startedBy: string;
3253
+ };
3254
+ showAll: string;
3255
+ hideAll: string;
3256
+ see: string;
3257
+ setInSync: string;
3258
+ setInSyncQuestion: string;
3259
+ setInSyncFailed: {
3260
+ title: string;
3261
+ text: string;
3262
+ };
3263
+ setInSyncSuccess: {
3264
+ title: string;
3265
+ text: string;
3266
+ };
3267
+ };
3268
+ };
3269
+ tasks: {
3270
+ page: {
3271
+ taskName: string;
3272
+ rerunAll: string;
3273
+ rerunAllQuestion: string;
3274
+ };
3275
+ tabs: {
3276
+ active: string;
3277
+ completed: string;
3278
+ };
3279
+ };
3280
+ settings: {
3281
+ page: {
3282
+ engineStatus: string;
3283
+ flushButton: string;
3284
+ flushCacheSettingsTitle: string;
3285
+ modifyEngine: string;
3286
+ pauseEngine: string;
3287
+ runningProcesses: string;
3288
+ selectSettings: string;
3289
+ startEngine: string;
3290
+ resetTextSearchIndex: string;
3291
+ resetTextSearchIndexButton: string;
3292
+ };
3293
+ };
3294
+ startPage: {
3295
+ activeSubscriptions: {
3296
+ buttonText: string;
3297
+ headerTitle: string;
3298
+ listTitle: string;
3299
+ };
3300
+ outOfSyncSubscriptions: {
3301
+ buttonText: string;
3302
+ headerTitle: string;
3303
+ listTitle: string;
3304
+ };
3305
+ activeWorkflows: {
3306
+ buttonText: string;
3307
+ headerTitle: string;
3308
+ listTitle: string;
3309
+ };
3310
+ failedTasks: {
3311
+ buttonText: string;
3312
+ headerTitle: string;
3313
+ listTitle: string;
3314
+ };
3315
+ products: {
3316
+ headerTitle: string;
3317
+ listTitle: string;
3318
+ };
3319
+ };
3320
+ };
3193
3321
 
3194
- declare const useStreamMessagesQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3195
- baseQueryType?: BaseQueryTypes | undefined;
3196
- apiName?: string | undefined;
3197
- }) => {
3198
- error: _reduxjs_toolkit_query.FetchBaseQueryError;
3199
- data?: undefined;
3200
- meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3201
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3202
- error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3203
- data?: undefined;
3204
- meta?: {} | undefined;
3205
- } | {
3206
- error?: undefined;
3207
- data: unknown;
3208
- meta?: {} | undefined;
3209
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, boolean, "orchestratorApi">>;
3322
+ declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
3210
3323
 
3211
- declare const subscriptionDetailQuery = "\n query SubscriptionDetail($subscriptionId: String!) {\n subscriptions(\n filterBy: { value: $subscriptionId, field: \"subscriptionId\" }\n ) {\n page {\n subscriptionId\n description\n fixedInputs\n insync\n note\n product {\n createdAt\n name\n status\n endDate\n description\n tag\n productType\n productId\n }\n endDate\n startDate\n status\n customerId\n customer {\n fullname\n customerId\n shortcode\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n processes(sortBy: { field: \"startedAt\", order: ASC }) {\n page {\n processId\n lastStatus\n startedAt\n createdBy\n workflowTarget\n workflowName\n isTask\n }\n }\n }\n }\n }\n";
3212
- declare type SubscriptionDetailResponse = {
3213
- subscription: SubscriptionDetail;
3214
- } & BaseGraphQlResult;
3215
- declare const useGetSubscriptionDetailQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<{
3216
- subscriptionId: string;
3217
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3218
- baseQueryType?: BaseQueryTypes | undefined;
3219
- apiName?: string | undefined;
3220
- }) => {
3221
- error: _reduxjs_toolkit_query.FetchBaseQueryError;
3222
- data?: undefined;
3223
- meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3224
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3225
- error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3226
- data?: undefined;
3227
- meta?: {} | undefined;
3228
- } | {
3229
- error?: undefined;
3230
- data: unknown;
3231
- meta?: {} | undefined;
3232
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDetailResponse, "orchestratorApi">>;
3324
+ declare const RESOURCE_TYPE_FIELD_ID: keyof ResourceTypeDefinition;
3325
+ declare const RESOURCE_TYPE_FIELD_TYPE: keyof ResourceTypeDefinition;
3326
+ declare const RESOURCE_TYPE_FIELD_DESCRIPTION: keyof ResourceTypeDefinition;
3327
+ declare const RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS: keyof ResourceTypeDefinition;
3328
+ declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element;
3233
3329
 
3234
- declare const subscriptionsDropdownOptionsQuery = "\n query SubscriptionDropdownOptions(\n $filterBy: [GraphqlFilter!]\n $first: Int!\n ) {\n subscriptions(filterBy: $filterBy, first: $first, after: 0) {\n page {\n description\n subscriptionId\n product {\n tag\n productId\n }\n customer {\n fullname\n customerId\n }\n productBlockInstances {\n id\n ownerSubscriptionId\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n fixedInputs\n }\n }\n }\n";
3235
- declare type SubscriptionDropdownOptionsResponse = {
3236
- subscriptionDropdownOptions: SubscriptionDropdownOption[];
3330
+ declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
3331
+
3332
+ declare type WorkflowListItem = Pick<WorkflowDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
3333
+ productTags: string[];
3237
3334
  };
3238
- declare const useGetSubscriptionsDropdownOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<GraphqlQueryVariables<SubscriptionDropdownOption>, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3239
- baseQueryType?: BaseQueryTypes | undefined;
3240
- apiName?: string | undefined;
3241
- }) => {
3242
- error: _reduxjs_toolkit_query.FetchBaseQueryError;
3243
- data?: undefined;
3244
- meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3245
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3246
- error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3247
- data?: undefined;
3248
- meta?: {} | undefined;
3249
- } | {
3250
- error?: undefined;
3251
- data: unknown;
3252
- meta?: {} | undefined;
3253
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, SubscriptionDropdownOptionsResponse, "orchestratorApi">>;
3335
+ declare const WfoWorkflowsPage: () => _emotion_react_jsx_runtime.JSX.Element;
3254
3336
 
3255
- declare type WorkflowOption = {
3256
- workflowName: WorkflowDefinition['name'];
3257
- productName: ProductDefinition['name'];
3258
- productId: ProductDefinition['productId'];
3337
+ interface MetadataLayoutProps {
3338
+ children: ReactNode;
3339
+ tabs?: MetaDataTab[];
3340
+ }
3341
+ interface MetaDataTab {
3342
+ id: number;
3343
+ translationKey: string;
3344
+ path: string;
3345
+ }
3346
+ declare const metaDataTabs: MetaDataTab[];
3347
+ declare const WfoMetadataPageLayout: ({ children, tabs, }: MetadataLayoutProps) => _emotion_react_jsx_runtime.JSX.Element;
3348
+
3349
+ declare const mapWorkflowDefinitionToWorkflowListItem: (workflows: WorkflowDefinition[]) => WorkflowListItem[];
3350
+ declare const workflowFieldMapper: (field: keyof WorkflowListItem) => keyof WorkflowDefinition;
3351
+ declare const graphQlWorkflowListMapper: ({ field, order, }: GraphQLSort<WorkflowListItem>) => {
3352
+ field: keyof WorkflowDefinition;
3353
+ order: SortOrder;
3259
3354
  };
3260
- declare type StartOptionsResponse<StartOption> = {
3261
- startOptions: StartOption[];
3355
+
3356
+ declare const RENDER_ALL = "RENDER_ALL";
3357
+ declare enum RenderDirection {
3358
+ HORIZONTAL = "HORIZONTAL",
3359
+ VERTICAL = "VERTICAL"
3360
+ }
3361
+ declare type WfoProcessesListSubscriptionsCellProps = {
3362
+ subscriptions: Pick<Subscription, 'subscriptionId' | 'description'>[];
3363
+ numberOfSubscriptionsToRender?: number | typeof RENDER_ALL;
3364
+ renderDirection?: RenderDirection;
3262
3365
  };
3263
- declare type TaskOption = Pick<WorkflowDefinition, 'name' | 'description'>;
3264
- declare const useGetWorkflowOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3265
- baseQueryType?: BaseQueryTypes | undefined;
3266
- apiName?: string | undefined;
3267
- }) => {
3268
- error: _reduxjs_toolkit_query.FetchBaseQueryError;
3269
- data?: undefined;
3270
- meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3271
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3272
- error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3273
- data?: undefined;
3274
- meta?: {} | undefined;
3275
- } | {
3276
- error?: undefined;
3277
- data: unknown;
3278
- meta?: {} | undefined;
3279
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<WorkflowOption>, "orchestratorApi">>;
3280
- declare const useGetTaskOptionsQuery: _reduxjs_toolkit_dist_query_react_buildHooks.UseQuery<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
3281
- baseQueryType?: BaseQueryTypes | undefined;
3282
- apiName?: string | undefined;
3283
- }) => {
3284
- error: _reduxjs_toolkit_query.FetchBaseQueryError;
3285
- data?: undefined;
3286
- meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
3287
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
3288
- error: _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse;
3289
- data?: undefined;
3290
- meta?: {} | undefined;
3291
- } | {
3292
- error?: undefined;
3293
- data: unknown;
3294
- meta?: {} | undefined;
3295
- } | PromiseLike<_reduxjs_toolkit_dist_query_baseQueryTypes.QueryReturnValue<unknown, _rtk_query_graphql_request_base_query_dist_GraphqlBaseQueryTypes.ErrorResponse, {}>>, CacheTags, StartOptionsResponse<TaskOption>, "orchestratorApi">>;
3366
+ declare const WfoProcessListSubscriptionsCell: FC<WfoProcessesListSubscriptionsCellProps>;
3296
3367
 
3297
- declare type ToastState = {
3298
- messages: Toast[];
3368
+ declare type GroupedStep = {
3369
+ steps: Step[];
3299
3370
  };
3300
- declare type ToastMessagesSlice = Slice<ToastState, {
3301
- addToastMessage: (state: ToastState, action: PayloadAction<Toast>) => ToastState;
3302
- removeToastMessage: (state: ToastState, action: PayloadAction<Toast['id']>) => ToastState;
3303
- }, 'toastMessages', 'toastMessages'>;
3304
- declare const toastMessagesSlice: ToastMessagesSlice;
3305
- declare const addToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<Toast, "toastMessages/addToastMessage">;
3306
- declare const removeToastMessage: _reduxjs_toolkit.ActionCreatorWithPayload<string, "toastMessages/removeToastMessage">;
3307
- declare const toastMessagesReducer: Reducer<ToastState>;
3371
+ interface WfoProcessDetailPageProps {
3372
+ processId: string;
3373
+ processDetailRefetchInterval?: number;
3374
+ }
3375
+ declare const WfoProcessDetailPage: ({ processId, processDetailRefetchInterval, }: WfoProcessDetailPageProps) => _emotion_react_jsx_runtime.JSX.Element;
3308
3376
 
3309
- declare type OrchestratorConfigSlice = Slice<OrchestratorConfig>;
3310
- declare const getOrchestratorConfigSlice: (config: OrchestratorConfig) => OrchestratorConfigSlice;
3377
+ interface WfoStartProcessPageProps {
3378
+ processName: string;
3379
+ isTask?: boolean;
3380
+ }
3381
+ interface UserInputForm {
3382
+ stepUserInput?: JSONSchema6;
3383
+ hasNext?: boolean;
3384
+ }
3385
+ declare const WfoStartProcessPage: ({ processName, isTask, }: WfoStartProcessPageProps) => _emotion_react_jsx_runtime.JSX.Element;
3311
3386
 
3312
- declare type CustomApiConfig = {
3313
- apiName: string;
3314
- apiBaseUrl: string;
3315
- };
3316
- declare type CustomApiSlice = Slice<CustomApiConfig[]>;
3317
- declare const getCustomApiSlice: (customApis: CustomApiConfig[]) => CustomApiSlice;
3387
+ declare const WfoStartPage: () => _emotion_react_jsx_runtime.JSX.Element;
3318
3388
 
3319
- declare type RootState = {
3320
- orchestratorApi: CombinedState<Record<string, never>, 'engineStatus', 'orchestratorApi'>;
3321
- toastMessages: ReturnType<typeof toastMessagesReducer>;
3322
- orchestratorConfig: OrchestratorConfig;
3323
- customApis: CustomApiConfig[];
3324
- };
3325
- declare const getOrchestratorStore: (orchestratorConfig: OrchestratorConfig, customApis: CustomApiConfig[]) => EnhancedStore<RootState>;
3326
- declare type AppDispatch = Dispatch<UnknownAction>;
3389
+ declare const WfoSubscriptionDetailPage: () => _emotion_react_jsx_runtime.JSX.Element;
3327
3390
 
3328
- declare type StoreProviderProps = {
3329
- initialOrchestratorConfig: OrchestratorConfig;
3330
- customApis?: CustomApiConfig[];
3331
- children: ReactNode;
3332
- };
3333
- declare const StoreProvider: ({ initialOrchestratorConfig, customApis, children, }: StoreProviderProps) => _emotion_react_jsx_runtime.JSX.Element;
3391
+ declare const WfoSubscriptionsListPage: () => _emotion_react_jsx_runtime.JSX.Element;
3392
+
3393
+ declare const WfoTasksListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
3394
+
3395
+ declare enum WfoTasksListTabType {
3396
+ ACTIVE = "ACTIVE",
3397
+ COMPLETED = "COMPLETED"
3398
+ }
3399
+ declare const defaultTasksListTabs: WfoFilterTab<WfoTasksListTabType, ProcessListItem>[];
3400
+
3401
+ declare const getTasksListTabTypeFromString: (tabId?: string | undefined) => WfoTasksListTabType | undefined;
3402
+
3403
+ declare const WfoWorkflowsListPage: () => _emotion_react_jsx_runtime.JSX.Element | null;
3404
+
3405
+ declare enum WfoWorkflowsListTabType {
3406
+ ACTIVE = "ACTIVE",
3407
+ COMPLETED = "COMPLETED"
3408
+ }
3409
+ declare const defaultWorkflowsListTabs: WfoFilterTab<WfoWorkflowsListTabType, ProcessListItem>[];
3410
+
3411
+ declare const getWorkflowsListTabTypeFromString: (tabId?: string | undefined) => WfoWorkflowsListTabType | undefined;
3334
3412
 
3335
3413
  declare const defaultOrchestratorTheme: EuiThemeModifications;
3336
3414
 
@@ -3379,4 +3457,7 @@ declare const getQueryVariablesForExport: <T extends object>(queryVariables: Gra
3379
3457
 
3380
3458
  declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
3381
3459
 
3382
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AppDispatch, type AutoFieldsProps, BadgeType, BaseApiClient, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, CacheTags, ColorModes, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, CustomerField, type CustomerFieldProps, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type Field, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type GraphQLPageInfo, type GraphQLSort, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, type KeyValue, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscription, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, type SelectFieldProps, type ServicePort, type ShowConfirmDialog, type ShowConfirmDialogType, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoEuiBasicTableColumn, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoRefresh, WfoRelatedSubscriptions, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatus, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsListPage, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, WfoToastsList, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberValueFromEnvironmentVariable, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapSortableAndFilterableValuesToTableColumnConfig, onlyUnique, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, renderEmptyElementWhenNotAllowedByPolicy, resourceTypesQuery, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, splitPrefixStyling, stop, subscriptionDetailQuery, subscriptionsDropdownOptionsQuery, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetWorkflowsQuery, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useRawProcessDetails, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, workflowsQuery };
3460
+ declare const getConcatenatedPagedResult: <T>(pagedResult: GraphQlSinglePage<T>, fields: (keyof T)[]) => string;
3461
+ declare const getConcatenatedResult: <T>(results: T[], fields: (keyof T)[]) => string;
3462
+
3463
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AppDispatch, type AutoFieldsProps, BadgeType, BaseApiClient, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, CacheTags, ColorModes, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, CustomerField, type CustomerFieldProps, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type Field, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, type KeyValue, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscription, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, type SelectFieldProps, type ServicePort, type ShowConfirmDialog, type ShowConfirmDialogType, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoEuiBasicTableColumn, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, WfoHeaderBadge, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoRefresh, WfoRelatedSubscriptions, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatus, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionListTab, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, WfoToastsList, type WfoTreeNodeMap, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWarningTriangle, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getLastUncompletedProcess, getLatestTaskDate, getNumberValueFromEnvironmentVariable, getOrchestratorConfigSlice, getOrchestratorStore, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapSortableAndFilterableValuesToTableColumnConfig, mapWorkflowDefinitionToWorkflowListItem, metaDataTabs, onlyUnique, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, renderEmptyElementWhenNotAllowedByPolicy, resourceTypesQuery, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, splitPrefixStyling, stop, subscriptionDetailQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, toastMessagesReducer, toastMessagesSlice, upperCaseFirstChar, urlPolicyMap, useCacheNames, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useFilterQueryWithRest, useGetCustomersQuery, useGetEngineStatusQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionDetailQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetWorkflowsQuery, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useProcessStatusCountsQuery, useQueryWithFetch, useRawProcessDetails, useResetTextSearchIndexMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionActions, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, workflowFieldMapper, workflowsQuery };