@orchestrator-ui/orchestrator-ui-components 8.6.0 → 8.7.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 (56) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +15 -12
  4. package/CHANGELOG.md +18 -0
  5. package/dist/index.d.ts +416 -1183
  6. package/dist/index.js +3457 -3072
  7. package/dist/index.js.map +1 -1
  8. package/package.json +3 -1
  9. package/src/components/WfoPydanticForm/fields/WfoCron.spec.ts +88 -0
  10. package/src/components/WfoPydanticForm/fields/WfoCron.tsx +233 -0
  11. package/src/components/WfoPydanticForm/fields/WfoSummary.tsx +42 -7
  12. package/src/components/WfoPydanticForm/fields/index.ts +1 -0
  13. package/src/components/WfoPydanticForm/fields/styles.ts +92 -0
  14. package/src/components/WfoSearchPage/WfoFilterGroup/WfoFilterGroup.tsx +1 -1
  15. package/src/components/WfoSearchPage/WfoSearchResults/WfoSearchResultItem.tsx +2 -1
  16. package/src/components/WfoSearchPage/utils.ts +37 -1
  17. package/src/components/WfoSubscription/WfoInUseByRelations.tsx +6 -2
  18. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionExpandableMenuItem.tsx +19 -14
  19. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +13 -1
  20. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionsMenuItem.tsx +3 -0
  21. package/src/components/WfoSubscription/WfoSubscriptionProductBlock/WfoSubscriptionProductBlock.tsx +1 -1
  22. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +5 -0
  23. package/src/components/WfoSubscriptionsList/subscriptionResultMappers.ts +3 -1
  24. package/src/components/WfoTable/WfoAdvancedTable/WfoAdvancedTable.tsx +2 -12
  25. package/src/components/WfoTable/WfoStructuredSearchTable/WfoExpandingSearchRow.tsx +21 -14
  26. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFieldSelector.tsx +27 -1
  27. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFilterBuilder.tsx +97 -91
  28. package/src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.tsx +32 -7
  29. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRuleGroup.tsx +5 -4
  30. package/src/components/WfoTable/WfoStructuredSearchTable/WfoStructuredSearchTable.tsx +32 -30
  31. package/src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.tsx +41 -11
  32. package/src/components/WfoTable/WfoStructuredSearchTable/styles.ts +22 -5
  33. package/src/components/WfoTable/WfoTable/WfoTable.tsx +1 -0
  34. package/src/components/WfoTable/WfoTable/WfoTableDataRows.tsx +16 -4
  35. package/src/components/WfoTable/WfoTable/styles.ts +8 -0
  36. package/src/components/WfoTable/WfoTable/utils.spec.ts +62 -1
  37. package/src/components/WfoTable/WfoTable/utils.ts +4 -1
  38. package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.spec.ts +45 -0
  39. package/src/components/WfoTable/WfoTableSettingsModal/index.ts +1 -0
  40. package/src/components/WfoTable/WfoTableSettingsModal/utils.ts +17 -0
  41. package/src/configuration/version.ts +1 -1
  42. package/src/hooks/index.ts +1 -0
  43. package/src/hooks/useGetPydanticFormsConfig.tsx +12 -0
  44. package/src/hooks/useLanguageCode.ts +11 -0
  45. package/src/messages/en-GB.json +442 -549
  46. package/src/messages/getTranslationMessages.spec.ts +47 -30
  47. package/src/messages/nl-NL.json +450 -411
  48. package/src/pages/WfoSearchPocPage.tsx +14 -5
  49. package/src/rtk/endpoints/subscriptionList.ts +1 -0
  50. package/src/theme/baseStyles/formFieldsBaseStyle.ts +0 -1
  51. package/src/types/search.ts +1 -1
  52. package/src/types/types.ts +1 -1
  53. package/src/utils/getDefaultTableConfig.ts +6 -1
  54. package/src/utils/index.ts +1 -0
  55. package/src/utils/integer.spec.ts +20 -0
  56. package/src/utils/integer.ts +3 -0
package/dist/index.d.ts CHANGED
@@ -19082,6 +19082,7 @@ type SubscriptionListItem = Pick<Subscription, 'subscriptionId' | 'description'
19082
19082
  tag: string | null;
19083
19083
  customerFullname: string;
19084
19084
  customerShortcode: string;
19085
+ customerId: string;
19085
19086
  metadata: object | null;
19086
19087
  };
19087
19088
  declare const mapGraphQlSubscriptionsResultToPageInfo: (graphqlResponse: SubscriptionListResponse) => GraphQLPageInfo;
@@ -19292,6 +19293,8 @@ declare const usePathAutocomplete: (prefix: string, entityType: EntityKind) => {
19292
19293
 
19293
19294
  declare const useGetPydanticFormsConfig: (getApiProvider: () => PydanticFormApiProvider, Footer: PydanticFormConfig["footerRenderer"]) => PydanticFormConfig;
19294
19295
 
19296
+ declare const useLanguageCode: () => string;
19297
+
19295
19298
  declare const WFO_STATUS_COLOR_FIELD = "statusColorField";
19296
19299
  type TableColumnKeys<T> = Array<keyof T>;
19297
19300
  type WfoDataSorting<T> = {
@@ -19356,6 +19359,8 @@ type TableSettingsModalProps<T> = {
19356
19359
  };
19357
19360
  declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, extraSettings, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19358
19361
 
19362
+ declare const getTableSettingsColumns: <T extends object>(columnConfig: WfoTableColumnConfig<T>, hiddenColumns: TableColumnKeys<T>) => TableSettingsColumnConfig<T>[];
19363
+
19359
19364
  type WfoStatusColorFieldProps = {
19360
19365
  color: string;
19361
19366
  };
@@ -19601,6 +19606,7 @@ type WfoTableProps<T extends object> = {
19601
19606
  rowExpandingConfiguration?: {
19602
19607
  uniqueRowId: keyof WfoTableColumnConfig<T>;
19603
19608
  uniqueRowIdToExpandedRowMap: Record<string, ReactNode>;
19609
+ shouldOnlyShowOnHover?: boolean;
19604
19610
  };
19605
19611
  pagination?: Pagination;
19606
19612
  overrideHeader?: (tableHeaderEntries: Array<[string, WfoTableControlColumnConfigItem<T> | WfoTableDataColumnConfigItem<T, keyof T>]>) => ReactNode;
@@ -19633,6 +19639,7 @@ declare const getWfoTableStyles: ({ theme, isDarkModeActive }: WfoThemeHelpers)
19633
19639
  dragAndDropStyle: _emotion_react.SerializedStyles;
19634
19640
  paginationStyle: _emotion_react.SerializedStyles;
19635
19641
  setWidth: (width?: CSSProperties["width"]) => false | _emotion_react.SerializedStyles;
19642
+ toggleExpandedRowOnHoverStyle: _emotion_react.SerializedStyles;
19636
19643
  };
19637
19644
 
19638
19645
  type GroupType = {
@@ -19792,9 +19799,9 @@ declare const WfoStructuredSearchTable: <T extends object>({ tableColumnConfig,
19792
19799
  interface WfoExpandingSearchRowProps {
19793
19800
  score?: number;
19794
19801
  perfectMatch?: number;
19795
- matchingField?: MatchingField | null;
19802
+ matchingFields?: MatchingField[] | null;
19796
19803
  }
19797
- declare const WfoExpandingSearchRow: ({ score, matchingField }: WfoExpandingSearchRowProps) => _emotion_react_jsx_runtime.JSX.Element | null;
19804
+ declare const WfoExpandingSearchRow: ({ score, matchingFields }: WfoExpandingSearchRowProps) => _emotion_react_jsx_runtime.JSX.Element | null;
19798
19805
 
19799
19806
  type WfoSubscriptionsListProps = {
19800
19807
  alwaysOnFilters?: FilterQuery<SubscriptionListItem>[];
@@ -19804,7 +19811,7 @@ type WfoSubscriptionsListProps = {
19804
19811
  };
19805
19812
  declare const WfoSubscriptionsList: FC<WfoSubscriptionsListProps>;
19806
19813
 
19807
- declare const subscriptionListQuery = "query SubscriptionsList(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n subscriptions(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n note\n startDate\n endDate\n description\n insync\n status\n subscriptionId\n product {\n name\n tag\n productType\n }\n customer {\n fullname\n shortcode\n }\n metadata\n }\n pageInfo {\n totalItems\n startCursor\n hasPreviousPage\n hasNextPage\n endCursor\n sortFields\n filterFields\n }\n }\n }\n";
19814
+ declare const subscriptionListQuery = "query SubscriptionsList(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n subscriptions(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n note\n startDate\n endDate\n description\n insync\n status\n subscriptionId\n product {\n name\n tag\n productType\n }\n customer {\n customerId\n fullname\n shortcode\n }\n metadata\n }\n pageInfo {\n totalItems\n startCursor\n hasPreviousPage\n hasNextPage\n endCursor\n sortFields\n filterFields\n }\n }\n }\n";
19808
19815
  type SubscriptionListResponse = {
19809
19816
  subscriptions: Subscription[];
19810
19817
  } & BaseGraphQlResult;
@@ -25213,7 +25220,7 @@ type Subscription = {
25213
25220
  status: SubscriptionStatus;
25214
25221
  product: Pick<ProductDefinition, 'name' | 'tag' | 'productType'>;
25215
25222
  productBlockInstances: ProductBlockInstance[];
25216
- customer: Pick<Customer, 'fullname' | 'shortcode'>;
25223
+ customer: Pick<Customer, 'customerId' | 'fullname' | 'shortcode'>;
25217
25224
  metadata: object;
25218
25225
  };
25219
25226
  type SubscriptionSummary = Pick<Subscription, 'subscriptionId' | 'description' | 'startDate'>;
@@ -25405,7 +25412,7 @@ interface SearchResult {
25405
25412
  entity_title: string;
25406
25413
  score: number;
25407
25414
  perfect_match: number;
25408
- matching_field?: MatchingField | null;
25415
+ matching_fields?: MatchingField[] | null;
25409
25416
  response_columns: Record<string, string | number | null>;
25410
25417
  }
25411
25418
  /** Paginated search results */
@@ -25936,6 +25943,7 @@ type WfoSubscriptionActionsProps = {
25936
25943
  subscriptionId: string;
25937
25944
  isLoading?: boolean;
25938
25945
  compactMode?: boolean;
25946
+ subscriptionPath?: string;
25939
25947
  };
25940
25948
  declare const WfoSubscriptionActions: FC<WfoSubscriptionActionsProps>;
25941
25949
 
@@ -28557,6 +28565,13 @@ declare const WfoMarkdownField: ({ pydanticFormField }: PydanticFormElementProps
28557
28565
 
28558
28566
  declare const WfoTimestampField: ({ onChange, value, pydanticFormField, disabled, }: PydanticFormControlledElementProps) => _emotion_react_jsx_runtime.JSX.Element;
28559
28567
 
28568
+ declare const CRON_FIELD_KEYS: readonly ["second", "minute", "hour", "dayOfMonth", "month", "dayOfWeek"];
28569
+ type CronFieldKey = (typeof CRON_FIELD_KEYS)[number];
28570
+ declare const getCronFieldLayout: (expression: string) => readonly CronFieldKey[];
28571
+ declare const getCronFieldIndexAtCursor: (expression: string, cursorPosition: number) => number;
28572
+ declare const getCronFieldSelectionRange: (expression: string, fieldIndex: number) => [number, number] | null;
28573
+ declare const WfoCron: PydanticFormControlledElement;
28574
+
28560
28575
  declare const Row: RowRenderComponent;
28561
28576
 
28562
28577
  type FooterProps = PydanticFormFooterProps & {
@@ -28787,7 +28802,14 @@ interface SearchQuery {
28787
28802
  text?: string;
28788
28803
  }
28789
28804
  declare const buildSearchParams: (debouncedQuery: SearchQuery | string, selectedEntityTab: EntityKind, filterGroup: Filter, pageSize: number, cursor: number, retriever?: Exclude<RetrieverType, "auto">) => SearchPaginationPayload;
28790
- declare const combineSearchFilters: (ruleGroup: RuleGroupType | false | undefined, tab: WfoSubscriptionListTab) => Filter;
28805
+ /**
28806
+ * The tab implicitly adds a status filter to the search (see addStatusFilterFromTab). The backend
28807
+ * reports every matched filter in matching_fields, so those implicit matches are removed here to
28808
+ * only show the user matches for filters they provided themselves. Matching on path AND value:
28809
+ * a status match that cannot come from the tab filter is kept.
28810
+ */
28811
+ declare const removeTabStatusMatchingFields: (matchingFields: MatchingField[] | null | undefined, tab: WfoSubscriptionListTab, entityKind: EntityKind) => MatchingField[];
28812
+ declare const addStatusFilterFromTab: (ruleGroup: RuleGroupType | false | undefined, tab: WfoSubscriptionListTab) => Filter;
28791
28813
 
28792
28814
  interface WfoWorkflowUserGuideProps {
28793
28815
  workflowName: string;
@@ -28860,118 +28882,75 @@ declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
28860
28882
  declare const METADATA_SCHEDULES_ENDPOINT = "schedules";
28861
28883
  declare const SEARCH_QUERY_RESULTS_ENDPOINT = "search/queries";
28862
28884
 
28863
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.6.0";
28885
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.7.1";
28864
28886
 
28865
28887
  declare const useGetTranslationMessages: (locale: string | undefined) => {
28866
28888
  pydanticForms: {
28867
28889
  backendTranslations: Record<string, string>;
28868
28890
  userInputForm: {
28869
28891
  cancel: string;
28870
- submit: string;
28871
- previous: string;
28892
+ inputFieldsHaveValidationErrors: string;
28872
28893
  next: string;
28894
+ preconditionFailedFallback: string;
28895
+ preconditionFailedTitle: string;
28896
+ previous: string;
28873
28897
  previousQuestion: string;
28874
- startTask: string;
28875
- startWorkflow: string;
28876
28898
  resumeTask: string;
28877
28899
  resumeWorkflow: string;
28878
- inputFieldsHaveValidationErrors: string;
28879
- preconditionFailedTitle: string;
28880
- preconditionFailedFallback: string;
28900
+ startTask: string;
28901
+ startWorkflow: string;
28881
28902
  };
28882
28903
  widgets: {
28883
- customer: {
28884
- placeholder: string;
28885
- loading: string;
28886
- };
28887
28904
  contactPersonName: {
28888
28905
  placeholder: string;
28889
28906
  };
28890
- ipvAnyNetworkField: {
28891
- manuallySelectedPrefix: string;
28892
- };
28893
- node_select: {
28894
- nodes_loading: string;
28895
- select_node: string;
28896
- no_nodes_placeholder: string;
28897
- };
28898
- locationCode: {
28899
- placeholder: string;
28907
+ cron: {
28908
+ allowedValues: string;
28909
+ alternativeSingleValues: string;
28910
+ anyValue: string;
28911
+ dayOfMonth: string;
28912
+ dayOfWeek: string;
28913
+ hour: string;
28914
+ invalidExpression: string;
28915
+ minute: string;
28916
+ month: string;
28917
+ nextOccurrences: string;
28918
+ possibleValues: string;
28919
+ rangeOfValues: string;
28920
+ second: string;
28921
+ stepValues: string;
28922
+ sundayNonStandard: string;
28923
+ valueListSeparator: string;
28900
28924
  };
28901
- product: {
28925
+ customer: {
28926
+ loading: string;
28902
28927
  placeholder: string;
28903
28928
  };
28904
- select: {
28905
- placeholder: string;
28929
+ fileUpload: {
28930
+ errorUploading: string;
28931
+ fileToBig: string;
28932
+ initialPromptText: string;
28933
+ invalidFiletype: string;
28934
+ supportedFileTypes: string;
28906
28935
  };
28907
- vlan: {
28908
- vlansInUseError: string;
28909
- vlansInUse: string;
28910
- missingInIms: string;
28911
- nsiVlansAvailable: string;
28912
- nsiNoPortsAvailable: string;
28913
- allPortsAvailable: string;
28914
- placeholder: string;
28915
- placeholderNoServicePort: string;
28916
- invalidVlan: string;
28917
- untaggedPortInUse: string;
28918
- taggedOnly: string;
28919
- loadingIms: string;
28936
+ ipvAnyNetworkField: {
28937
+ manuallySelectedPrefix: string;
28920
28938
  };
28921
- subscription: {
28939
+ locationCode: {
28922
28940
  placeholder: string;
28923
- loading: string;
28924
28941
  };
28925
28942
  nodePort: {
28926
28943
  loadingNodes: string;
28927
28944
  loadingPorts: string;
28928
28945
  noPorts: string;
28929
28946
  selectNode: string;
28930
- selectPort: string;
28931
28947
  selectNodeFirst: string;
28932
- };
28933
- fileUpload: {
28934
- invalidFiletype: string;
28935
- errorUploading: string;
28936
- fileToBig: string;
28937
- initialPromptText: string;
28938
- supportedFileTypes: string;
28939
- };
28940
- };
28941
- } | {
28942
- backendTranslations: Record<string, string>;
28943
- userInputForm: {
28944
- cancel: string;
28945
- submit: string;
28946
- previous: string;
28947
- next: string;
28948
- startTask: string;
28949
- previousQuestion: string;
28950
- startWorkflow: string;
28951
- resumeTask: string;
28952
- resumeWorkflow: string;
28953
- inputFieldsHaveValidationErrors: string;
28954
- preconditionFailedTitle: string;
28955
- preconditionFailedFallback: string;
28956
- };
28957
- widgets: {
28958
- customer: {
28959
- placeholder: string;
28960
- loading: string;
28961
- };
28962
- contactPersonName: {
28963
- placeholder: string;
28964
- };
28965
- ipvAnyNetworkField: {
28966
- manuallySelectedPrefix: string;
28948
+ selectPort: string;
28967
28949
  };
28968
28950
  node_select: {
28951
+ no_nodes_placeholder: string;
28969
28952
  nodes_loading: string;
28970
28953
  select_node: string;
28971
- no_nodes_placeholder: string;
28972
- };
28973
- locationCode: {
28974
- placeholder: string;
28975
28954
  };
28976
28955
  product: {
28977
28956
  placeholder: string;
@@ -28979,1253 +28958,505 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28979
28958
  select: {
28980
28959
  placeholder: string;
28981
28960
  };
28961
+ subscription: {
28962
+ loading: string;
28963
+ placeholder: string;
28964
+ };
28982
28965
  vlan: {
28983
- vlansInUseError: string;
28984
- vlansInUse: string;
28966
+ allPortsAvailable: string;
28967
+ invalidVlan: string;
28968
+ loadingIms: string;
28985
28969
  missingInIms: string;
28986
- nsiVlansAvailable: string;
28987
28970
  nsiNoPortsAvailable: string;
28988
- allPortsAvailable: string;
28971
+ nsiVlansAvailable: string;
28989
28972
  placeholder: string;
28990
28973
  placeholderNoServicePort: string;
28991
- invalidVlan: string;
28992
- untaggedPortInUse: string;
28993
28974
  taggedOnly: string;
28994
- loadingIms: string;
28995
- };
28996
- subscription: {
28997
- placeholder: string;
28998
- loading: string;
28999
- };
29000
- nodePort: {
29001
- loadingNodes: string;
29002
- loadingPorts: string;
29003
- selectNode: string;
29004
- selectPort: string;
29005
- noPorts: string;
29006
- selectNodeFirst: string;
29007
- };
29008
- fileUpload: {
29009
- invalidFiletype: string;
29010
- errorUploading: string;
29011
- fileToBig: string;
29012
- initialPromptText: string;
29013
- supportedFileTypes: string;
28975
+ untaggedPortInUse: string;
28976
+ vlansInUse: string;
28977
+ vlansInUseError: string;
29014
28978
  };
29015
28979
  };
29016
28980
  };
29017
- main: {
29018
- start: string;
29019
- ariaLabelToggleSideMenu: string;
29020
- ariaLabelCurrentPage: string;
29021
- metadata: string;
29022
- metadataProducts: string;
29023
- metadataProductblocks: string;
29024
- metadataResourceTypes: string;
29025
- metadataWorkflows: string;
29026
- metadataTasks: string;
29027
- metadataScheduledTasks: string;
29028
- mobileTitle: string;
29029
- settings: string;
29030
- subscriptions: string;
29031
- tasks: string;
29032
- title: string;
29033
- welcome: string;
29034
- workflows: string;
29035
- darkMode: string;
29036
- lightMode: string;
29037
- websocketConnected: string;
29038
- websocketDisconnected: string;
29039
- websocketDisconnectedShort: string;
29040
- resetToDefault: string;
29041
- savePreferences: string;
29042
- numberOfRows: string;
29043
- tableSettings: string;
29044
- openMenu: string;
29045
- incompatibleVersion: string;
29046
- incompatibleVersionText: string;
29047
- minimumOrchestratorCoreVersion: string;
29048
- };
29049
28981
  common: {
29050
- product: string;
28982
+ applyFilter: string;
28983
+ createFilter: string;
29051
28984
  deselect: string;
29052
- close: string;
29053
28985
  editColumns: string;
29054
- tableSettings: string;
28986
+ errorMessage: string;
28987
+ export: string;
28988
+ insyncFalse: string;
28989
+ insyncTrue: string;
28990
+ loadMore: string;
29055
28991
  loading: string;
29056
28992
  newSubscription: string;
29057
28993
  newTask: string;
29058
28994
  noFailedTasks: string;
29059
28995
  noItemsFound: string;
29060
- search: string;
29061
- errorMessage: string;
29062
- unknownError: string;
29063
- export: string;
29064
- unauthorizedPage: string;
29065
- insyncTrue: string;
29066
- insyncFalse: string;
29067
- searchModalTitle: string;
29068
- searchModalText: string;
28996
+ removeFilter: string;
29069
28997
  retrieval: string;
29070
28998
  retrieverAuto: string;
29071
28999
  retrieverFuzzy: string;
29072
- retrieverSemantic: string;
29073
29000
  retrieverHybrid: string;
29074
- createFilter: string;
29075
- applyFilter: string;
29076
- removeFilter: string;
29077
- cancel: string;
29078
- loadMore: string;
29001
+ retrieverSemantic: string;
29002
+ search: string;
29003
+ searchModalText: string;
29004
+ searchModalTitle: string;
29005
+ showAllColumnsInDetailView: string;
29006
+ tableSettings: string;
29007
+ unauthorizedPage: string;
29008
+ unknownError: string;
29079
29009
  };
29080
29010
  confirmationDialog: {
29081
- title: string;
29082
- confirm: string;
29083
29011
  cancel: string;
29084
- leavePage: string;
29085
- leavePageSub: string;
29086
- stay: string;
29087
- leave: string;
29088
- };
29089
- workflow: {
29090
- start_workflow_title: string;
29012
+ confirm: string;
29013
+ title: string;
29091
29014
  };
29092
29015
  errors: {
29016
+ failedDeletingScheduledTask: string;
29017
+ invalidQueryParts: string;
29093
29018
  notAllResultsExported: string;
29094
29019
  notAllResultsExportedTitle: string;
29095
- invalidQueryParts: string;
29096
29020
  notAllowedWhenEngineIsNotRunningMessage: string;
29097
29021
  notAllowedWhenEngineIsNotRunningTitle: string;
29098
29022
  retrieve_stored_settings: string;
29099
29023
  retrieve_stored_settings_title: string;
29100
- failedDeletingScheduledTask: string;
29024
+ };
29025
+ hamburgerMenu: {
29026
+ aoStatusPage: string;
29027
+ logout: string;
29028
+ openMenu: string;
29029
+ softwareVersions: string;
29030
+ support: string;
29031
+ };
29032
+ main: {
29033
+ ariaLabelCurrentPage: string;
29034
+ ariaLabelToggleSideMenu: string;
29035
+ darkMode: string;
29036
+ incompatibleVersion: string;
29037
+ incompatibleVersionText: string;
29038
+ lightMode: string;
29039
+ metadata: string;
29040
+ metadataProductblocks: string;
29041
+ metadataProducts: string;
29042
+ metadataResourceTypes: string;
29043
+ metadataScheduledTasks: string;
29044
+ metadataTasks: string;
29045
+ metadataWorkflows: string;
29046
+ minimumOrchestratorCoreVersion: string;
29047
+ mobileTitle: string;
29048
+ numberOfRows: string;
29049
+ resetToDefault: string;
29050
+ savePreferences: string;
29051
+ settings: string;
29052
+ start: string;
29053
+ subscriptions: string;
29054
+ tableSettings: string;
29055
+ tasks: string;
29056
+ websocketConnected: string;
29057
+ websocketDisconnected: string;
29058
+ welcome: string;
29059
+ workflows: string;
29101
29060
  };
29102
29061
  metadata: {
29103
- title: string;
29104
- tabs: {
29105
- products: string;
29106
- productBlocks: string;
29107
- resourceTypes: string;
29108
- workflows: string;
29109
- tasks: string;
29110
- scheduledTasks: string;
29111
- };
29112
- products: {
29062
+ productBlocks: {
29063
+ createdAt: string;
29064
+ dependingProductBlocks: string;
29065
+ description: string;
29066
+ endDate: string;
29113
29067
  id: string;
29114
29068
  name: string;
29069
+ resourceTypes: string;
29070
+ status: string;
29115
29071
  tag: string;
29072
+ };
29073
+ products: {
29074
+ createdAt: string;
29116
29075
  description: string;
29117
- productType: string;
29118
- status: string;
29119
- productBlocks: string;
29120
29076
  fixedInputs: string;
29121
- createdAt: string;
29122
- };
29123
- productBlocks: {
29124
29077
  id: string;
29125
29078
  name: string;
29126
- description: string;
29127
- tag: string;
29079
+ productBlocks: string;
29080
+ productType: string;
29128
29081
  status: string;
29129
- resourceTypes: string;
29130
- dependingProductBlocks: string;
29131
- createdAt: string;
29132
- endDate: string;
29133
- parentIds: string;
29082
+ tag: string;
29134
29083
  };
29135
29084
  resourceTypes: {
29136
- type: string;
29137
29085
  description: string;
29138
29086
  resourceId: string;
29087
+ type: string;
29139
29088
  usedInProductBlocks: string;
29140
29089
  };
29141
- workflows: {
29142
- workflowId: string;
29143
- name: string;
29144
- description: string;
29145
- target: string;
29146
- productTags: string;
29147
- createdAt: string;
29090
+ scheduledTasks: {
29091
+ addSchedule: string;
29092
+ ariaLabelDeleteButton: string;
29093
+ deleteConfirmationQuestion: string;
29094
+ nextRuntime: string;
29095
+ schedule: string;
29096
+ task: string;
29097
+ taskDescription: string;
29098
+ };
29099
+ tabs: {
29100
+ productBlocks: string;
29101
+ products: string;
29102
+ resourceTypes: string;
29103
+ scheduledTasks: string;
29104
+ tasks: string;
29105
+ workflows: string;
29148
29106
  };
29149
29107
  tasks: {
29150
- workflowId: string;
29151
- name: string;
29108
+ addSchedule: string;
29109
+ createdAt: string;
29152
29110
  description: string;
29153
- target: string;
29111
+ name: string;
29154
29112
  productTags: string;
29155
29113
  scheduled: string;
29156
- createdAt: string;
29157
- addSchedule: string;
29158
- };
29159
- scheduledTasks: {
29160
- task: string;
29161
- taskDescription: string;
29162
- nextRuntime: string;
29163
- schedule: string;
29164
- interval: string;
29165
- ariaLabelDeleteButton: string;
29166
- deleteConfirmationQuestion: string;
29167
- addSchedule: string;
29168
- };
29169
- scheduleTaskForm: {
29170
- newSchedule: string;
29171
- selectTask: string;
29172
- selectTaskType: string;
29173
- selectInterval: string;
29174
- taskTypeInterval: string;
29175
- taskTypeCron: string;
29176
- taskTypeDate: string;
29177
- firstRunDate: string;
29178
- "1hour": string;
29179
- "2hours": string;
29180
- "4hours": string;
29181
- "12hours": string;
29182
- "24hours": string;
29183
- "1week": string;
29184
- "2weeks": string;
29185
- "1month": string;
29186
- createScheduleButton: string;
29114
+ target: string;
29115
+ workflowId: string;
29187
29116
  };
29188
- };
29189
- workflowGuide: {
29190
29117
  title: string;
29191
- noGuideAvailable: string;
29192
- show: string;
29193
- hide: string;
29118
+ workflows: {
29119
+ createdAt: string;
29120
+ description: string;
29121
+ name: string;
29122
+ productTags: string;
29123
+ target: string;
29124
+ workflowId: string;
29125
+ };
29194
29126
  };
29195
29127
  processes: {
29196
- index: {
29197
- workflowName: string;
29198
- step: string;
29199
- status: string;
29200
- product: string;
29201
- customer: string;
29202
- customerAbbreviation: string;
29203
- subscriptions: string;
29204
- createdBy: string;
29205
- assignee: string;
29206
- processId: string;
29207
- started: string;
29208
- lastModified: string;
29209
- workflowTarget: string;
29210
- productTag: string;
29211
- showAllRelatedSubscriptions: string;
29212
- note: string;
29128
+ delta: {
29129
+ continuityAboveBelow: string;
29130
+ continuityWithin: string;
29131
+ fullScreen: string;
29132
+ fullScreenExit: string;
29133
+ title: string;
29213
29134
  };
29214
29135
  detail: {
29215
- retry: string;
29216
- resume: string;
29217
29136
  abort: string;
29218
- delete: string;
29219
- deleteQuestion: string;
29220
29137
  abortTaskQuestion: string;
29221
29138
  abortWorkflowQuestion: string;
29139
+ customer: string;
29140
+ delete: string;
29141
+ deleteQuestion: string;
29142
+ lastStep: string;
29143
+ lastUpdate: string;
29144
+ openWorkflowTaskInfo: string;
29145
+ relatedSubscriptions: string;
29146
+ retry: string;
29222
29147
  retryTaskQuestion: string;
29223
29148
  retryWorkflowQuestion: string;
29224
- status: string;
29225
29149
  startedBy: string;
29226
- lastStep: string;
29227
29150
  startedOn: string;
29228
- lastUpdate: string;
29229
- relatedSubscriptions: string;
29230
- subscriptions: string;
29151
+ status: string;
29152
+ };
29153
+ index: {
29154
+ assignee: string;
29155
+ createdBy: string;
29231
29156
  customer: string;
29232
- openWorkflowTaskInfo: string;
29157
+ customerAbbreviation: string;
29158
+ lastModified: string;
29159
+ note: string;
29160
+ processId: string;
29161
+ product: string;
29162
+ productTag: string;
29163
+ showAllRelatedSubscriptions: string;
29164
+ started: string;
29165
+ status: string;
29166
+ step: string;
29167
+ subscriptions: string;
29168
+ workflowName: string;
29169
+ workflowTarget: string;
29233
29170
  };
29234
29171
  steps: {
29235
- taskSteps: string;
29236
- workflowSteps: string;
29237
- showDelta: string;
29238
- hideDelta: string;
29239
- showTraceback: string;
29240
- hideTraceback: string;
29241
- viewOptions: string;
29242
- expandAll: string;
29172
+ codeView: {
29173
+ json: string;
29174
+ raw: string;
29175
+ table: string;
29176
+ };
29243
29177
  collapseAll: string;
29244
29178
  duration: string;
29245
- userInput: string;
29179
+ expandAll: string;
29180
+ hideDelta: string;
29181
+ hideTraceback: string;
29182
+ showDelta: string;
29183
+ showTraceback: string;
29246
29184
  submitTaskFormLabel: string;
29247
29185
  submitWorkflowFormLabel: string;
29186
+ taskSteps: string;
29248
29187
  traceback: string;
29249
- codeView: {
29250
- json: string;
29251
- table: string;
29252
- raw: string;
29253
- };
29254
- };
29255
- delta: {
29256
- title: string;
29257
- fullScreenExit: string;
29258
- fullScreen: string;
29259
- continuityAboveBelow: string;
29260
- continuityWithin: string;
29188
+ userInput: string;
29189
+ viewOptions: string;
29190
+ workflowSteps: string;
29261
29191
  };
29262
29192
  };
29263
- workflows: {
29264
- tabs: {
29265
- active: string;
29266
- completed: string;
29193
+ search: {
29194
+ availability: {
29195
+ unavailable: {
29196
+ documentation: string;
29197
+ instructions: {
29198
+ checkDockerConfig: string;
29199
+ checkVersion: string;
29200
+ restartService: string;
29201
+ setEnvironmentVariable: {
29202
+ after: string;
29203
+ before: string;
29204
+ };
29205
+ };
29206
+ retryButton: string;
29207
+ title: string;
29208
+ };
29267
29209
  };
29268
- index: {
29269
- title: string;
29270
- };
29271
- };
29272
- subscriptions: {
29273
- tabs: {
29274
- active: string;
29275
- terminated: string;
29276
- transient: string;
29277
- all: string;
29278
- };
29279
- index: {
29280
- id: string;
29281
- description: string;
29282
- status: string;
29283
- insync: string;
29284
- product: string;
29285
- tag: string;
29286
- startDate: string;
29287
- endDate: string;
29288
- metadata: string;
29289
- note: string;
29290
- customerFullname: string;
29291
- customerShortcode: string;
29292
- actions: string;
29293
- };
29294
- detail: {
29295
- title: string;
29296
- tabs: {
29297
- general: string;
29298
- serviceConfiguration: string;
29299
- workflows: string;
29300
- relatedSubscriptions: string;
29301
- };
29302
- loadingStatus: string;
29303
- actions: {
29304
- create: string;
29305
- modify: string;
29306
- tasks: string;
29307
- terminate: string;
29308
- reconcile: string;
29309
- actionStarted: string;
29310
- actionStartFailed: string;
29311
- actions: string;
29312
- lockedBySubscriptions: string;
29313
- notAvailable: string;
29314
- notAvailableForWorkflow: string;
29315
- reconcileSubscription: string;
29316
- validateSubscription: string;
29317
- subscription: {
29318
- no_modify_deleted_related_objects: string;
29319
- no_modify_in_use_by_subscription: string;
29320
- no_modify_invalid_status: string;
29321
- no_modify_workflow: string;
29322
- no_termination_workflow: string;
29323
- no_validate_workflow: string;
29324
- not_in_sync: string;
29325
- relations_not_in_sync: string;
29326
- no_modify_subscription_in_use_by_others: string;
29327
- insufficient_workflow_permissions: string;
29328
- running_process: string;
29329
- };
29330
- };
29331
- subscriptionInstanceId: string;
29332
- ownerSubscriptionId: string;
29333
- inUseByRelations: string;
29334
- showDetails: string;
29335
- self: string;
29336
- hideDetails: string;
29337
- subscriptionDetails: string;
29338
- productName: string;
29339
- fixedInputs: string;
29340
- productInfo: string;
29341
- noProductBlockSelected: string;
29342
- productBlocks: string;
29343
- ctaSelectProductBlock: string;
29344
- startedBy: string;
29345
- startedAt: string;
29346
- status: string;
29347
- id: string;
29348
- blockTitleSubscriptionDetails: string;
29349
- blockTitleFixedInputs: string;
29350
- blockTitleProductInfo: string;
29351
- subscriptionId: string;
29352
- description: string;
29353
- startDate: string;
29354
- lastRunValidation: string;
29355
- noValidateWorkflows: string;
29356
- insync: string;
29357
- customer: string;
29358
- customerUuid: string;
29359
- customerDescriptions: string;
29360
- name: string;
29361
- productType: string;
29362
- tag: string;
29363
- created: string;
29364
- endDate: string;
29365
- metadata: string;
29366
- note: string;
29367
- noRelatedSubscriptions: string;
29368
- hideTerminatedRelatedSubscriptions: string;
29369
- processDetail: {
29370
- id: string;
29371
- status: string;
29372
- startedAt: string;
29373
- startedBy: string;
29374
- note: string;
29375
- };
29376
- showAll: string;
29377
- hideAll: string;
29378
- selectByNameTitle: string;
29379
- selectByNameButtonText: string;
29380
- see: string;
29381
- setInSync: string;
29382
- subscriptionIsInSync: string;
29383
- setInSyncQuestion: string;
29384
- setInSyncFailed: {
29385
- title: string;
29386
- text: string;
29387
- };
29388
- setInSyncSuccess: {
29389
- title: string;
29390
- text: string;
29391
- };
29392
- workflowsTab: {
29393
- startWithOldestLabel: string;
29394
- startWithNewestLabel: string;
29395
- };
29396
- };
29397
- };
29398
- tasks: {
29399
- page: {
29400
- taskName: string;
29401
- rerunAll: string;
29402
- rerunAllQuestion: string;
29403
- };
29404
- tabs: {
29405
- active: string;
29406
- completed: string;
29210
+ page: {
29211
+ addGroup: string;
29212
+ addNestedGroup: string;
29213
+ addRule: string;
29214
+ anyPathOption: string;
29215
+ componentsGroupLabel: string;
29216
+ dismiss: string;
29217
+ emptyGroupDescription: string;
29218
+ emptyGroupTitle: string;
29219
+ enterNumber: string;
29220
+ enterValue: string;
29221
+ fieldLabel: string;
29222
+ fieldsGroupLabel: string;
29223
+ fromDate: string;
29224
+ fromNumber: string;
29225
+ groupLabel: string;
29226
+ hideFilters: string;
29227
+ loadingSearchResults: string;
29228
+ maxNestingDepth: string;
29229
+ nextPage: string;
29230
+ noResults: string;
29231
+ noResultsFound: string;
29232
+ noResultsMessage: string;
29233
+ noResultsSuggestions: string;
29234
+ operatorLabel: string;
29235
+ page: string;
29236
+ pathsCount: string;
29237
+ previousPage: string;
29238
+ removeConditionAriaLabel: string;
29239
+ removeGroup: string;
29240
+ removeRule: string;
29241
+ resultsOnPage: string;
29242
+ retrieval: string;
29243
+ retrieverAuto: string;
29244
+ retrieverFuzzy: string;
29245
+ retrieverHybrid: string;
29246
+ retrieverSemantic: string;
29247
+ searchError: string;
29248
+ searchFieldsPlaceholder: string;
29249
+ searchPlaceholder: string;
29250
+ searchResultsPagination: string;
29251
+ selectDateAndTime: string;
29252
+ selectFieldFirst: string;
29253
+ selectOrEnterValue: string;
29254
+ selectSpecificPathPlaceholder: string;
29255
+ showFilters: string;
29256
+ structuredFilters: string;
29257
+ toDate: string;
29258
+ toNumber: string;
29259
+ valueControlTo: string;
29260
+ valueLabel: string;
29261
+ viewDetails: string;
29407
29262
  };
29408
29263
  };
29409
29264
  settings: {
29410
29265
  page: {
29266
+ aoStackStatus: string;
29267
+ engineStatusTitle: string;
29411
29268
  flushButton: string;
29412
29269
  flushCacheSettingsTitle: string;
29413
- engineStatusTitle: string;
29414
- workerStatusTitle: string;
29415
29270
  modifyEngine: string;
29271
+ noSettingsExposed: string;
29272
+ numberOfQueuedJobs: string;
29273
+ numberOfRunningJobs: string;
29274
+ numberOfWorkersOnline: string;
29416
29275
  pauseEngine: string;
29276
+ resetTextSearchIndex: string;
29277
+ resetTextSearchIndexButton: string;
29417
29278
  runningProcesses: string;
29418
29279
  selectSettings: string;
29280
+ settingsOverviewLink: string;
29419
29281
  startEngine: string;
29420
- resetTextSearchIndex: string;
29421
- resetTextSearchIndexButton: string;
29422
29282
  status: string;
29423
- numberOfQueuedJobs: string;
29424
- numberOfRunningJobs: string;
29425
- numberOfWorkersOnline: string;
29426
29283
  viewStatusPage: string;
29427
- aoStackStatus: string;
29428
- noSettingsExposed: string;
29429
- settingsOverviewLink: string;
29430
- };
29431
- tabs: {
29432
- actions: string;
29433
- envSettings: string;
29434
- };
29435
- };
29436
- startPage: {
29437
- myWorkflows: {
29438
- buttonText: string;
29439
- headerTitle: string;
29440
- listTitle: string;
29441
- };
29442
- activeSubscriptions: {
29443
- buttonText: string;
29444
- headerTitle: string;
29445
- listTitle: string;
29446
- };
29447
- outOfSyncSubscriptions: {
29448
- buttonText: string;
29449
- headerTitle: string;
29450
- listTitle: string;
29451
- };
29452
- activeWorkflows: {
29453
- buttonText: string;
29454
- headerTitle: string;
29455
- listTitle: string;
29456
- };
29457
- failedTasks: {
29458
- buttonText: string;
29459
- headerTitle: string;
29460
- listTitle: string;
29461
- };
29462
- products: {
29463
- headerTitle: string;
29464
- listTitle: string;
29465
- };
29466
- };
29467
- hamburgerMenu: {
29468
- openMenu: string;
29469
- support: string;
29470
- softwareVersions: string;
29471
- logout: string;
29472
- aoStatusPage: string;
29473
- };
29474
- agent: {
29475
- title: string;
29476
- availability: {
29477
- unavailable: {
29478
- title: string;
29479
- instructions: {
29480
- setAgentEnvironment: {
29481
- before: string;
29482
- after: string;
29483
- };
29484
- setSearchEnvironment: {
29485
- before: string;
29486
- after: string;
29487
- };
29488
- checkVersion: string;
29489
- configureOpenAI: string;
29490
- restartService: string;
29491
- checkDockerConfig: string;
29492
- };
29493
- documentation: string;
29494
- retryButton: string;
29495
- };
29496
- };
29497
- page: {
29498
- filledParameters: string;
29499
- emptyGroup: string;
29500
- searchQuery: string;
29501
- activeFilters: string;
29502
- noFiltersApplied: string;
29503
- entityType: string;
29504
- action: string;
29505
- copilot: {
29506
- title: string;
29507
- initial: string;
29508
- };
29509
- suggestions: {
29510
- findActiveSubscriptions: string;
29511
- showTerminatedWorkflows: string;
29512
- listAllSubscriptionsAndExport: string;
29513
- showActiveSubscriptionsPerMonth: string;
29514
- };
29515
- tools: {
29516
- set_filter_tree: string;
29517
- start_new_search: string;
29518
- run_search: string;
29519
- discover_filter_paths: string;
29520
- run_aggregation: string;
29521
- prepare_export: string;
29522
- get_valid_operators: string;
29523
- set_temporal_grouping: string;
29524
- };
29525
- planProgress: {
29526
- planning: string;
29527
- completed: string;
29528
- executing: string;
29529
- };
29530
- visualization: {
29531
- noDataAvailable: string;
29532
- invalidDataStructure: string;
29533
- };
29534
- };
29535
- };
29536
- search: {
29537
- availability: {
29538
- unavailable: {
29539
- title: string;
29540
- instructions: {
29541
- setEnvironmentVariable: {
29542
- before: string;
29543
- after: string;
29544
- };
29545
- checkVersion: string;
29546
- restartService: string;
29547
- checkDockerConfig: string;
29548
- };
29549
- documentation: string;
29550
- retryButton: string;
29551
- };
29552
- };
29553
- page: {
29554
- selectFieldFirst: string;
29555
- maxNestingDepth: string;
29556
- addNestedGroup: string;
29557
- addRule: string;
29558
- addGroup: string;
29559
- removeGroup: string;
29560
- emptyGroupDescription: string;
29561
- emptyGroupTitle: string;
29562
- fieldSearchPlaceholder: string;
29563
- removeConditionAriaLabel: string;
29564
- groupLabel: string;
29565
- hideFilters: string;
29566
- showFilters: string;
29567
- structuredFilters: string;
29568
- retrieval: string;
29569
- retrieverAuto: string;
29570
- retrieverFuzzy: string;
29571
- retrieverSemantic: string;
29572
- retrieverHybrid: string;
29573
- searchError: string;
29574
- dismiss: string;
29575
- searchPlaceholder: string;
29576
- noResults: string;
29577
- noResultsMessage: string;
29578
- noResultsSuggestions: string;
29579
- noResultsFound: string;
29580
- loadingSearchResults: string;
29581
- previousPage: string;
29582
- page: string;
29583
- nextPage: string;
29584
- resultsOnPage: string;
29585
- searchResultsPagination: string;
29586
- viewDetails: string;
29587
- selectOrEnterValue: string;
29588
- enterValue: string;
29589
- fromNumber: string;
29590
- toNumber: string;
29591
- fromDate: string;
29592
- toDate: string;
29593
- enterNumber: string;
29594
- selectDateAndTime: string;
29595
- valueControlTo: string;
29596
- searchFieldsPlaceholder: string;
29597
- selectSpecificPathPlaceholder: string;
29598
- anyPathOption: string;
29599
- operatorLabel: string;
29600
- fieldLabel: string;
29601
- valueLabel: string;
29602
- fieldsGroupLabel: string;
29603
- componentsGroupLabel: string;
29604
- pathsCount: string;
29605
- id: string;
29606
- type: string;
29607
- title: string;
29608
- score: string;
29609
- matchingField: string;
29610
- perfectMatch: string;
29611
- removeRule: string;
29612
- };
29613
- tabs: {
29614
- subscriptions: string;
29615
- products: string;
29616
- workflows: string;
29617
- processes: string;
29618
- };
29619
- };
29620
- } | {
29621
- pydanticForms: {
29622
- backendTranslations: Record<string, string>;
29623
- userInputForm: {
29624
- cancel: string;
29625
- submit: string;
29626
- previous: string;
29627
- next: string;
29628
- previousQuestion: string;
29629
- startTask: string;
29630
- startWorkflow: string;
29631
- resumeTask: string;
29632
- resumeWorkflow: string;
29633
- inputFieldsHaveValidationErrors: string;
29634
- preconditionFailedTitle: string;
29635
- preconditionFailedFallback: string;
29636
- };
29637
- widgets: {
29638
- customer: {
29639
- placeholder: string;
29640
- loading: string;
29641
- };
29642
- contactPersonName: {
29643
- placeholder: string;
29644
- };
29645
- ipvAnyNetworkField: {
29646
- manuallySelectedPrefix: string;
29647
- };
29648
- node_select: {
29649
- nodes_loading: string;
29650
- select_node: string;
29651
- no_nodes_placeholder: string;
29652
- };
29653
- locationCode: {
29654
- placeholder: string;
29655
- };
29656
- product: {
29657
- placeholder: string;
29658
- };
29659
- select: {
29660
- placeholder: string;
29661
- };
29662
- vlan: {
29663
- vlansInUseError: string;
29664
- vlansInUse: string;
29665
- missingInIms: string;
29666
- nsiVlansAvailable: string;
29667
- nsiNoPortsAvailable: string;
29668
- allPortsAvailable: string;
29669
- placeholder: string;
29670
- placeholderNoServicePort: string;
29671
- invalidVlan: string;
29672
- untaggedPortInUse: string;
29673
- taggedOnly: string;
29674
- loadingIms: string;
29675
- };
29676
- subscription: {
29677
- placeholder: string;
29678
- loading: string;
29679
- };
29680
- nodePort: {
29681
- loadingNodes: string;
29682
- loadingPorts: string;
29683
- noPorts: string;
29684
- selectNode: string;
29685
- selectPort: string;
29686
- selectNodeFirst: string;
29687
- };
29688
- fileUpload: {
29689
- invalidFiletype: string;
29690
- errorUploading: string;
29691
- fileToBig: string;
29692
- initialPromptText: string;
29693
- supportedFileTypes: string;
29694
- };
29695
- };
29696
- } | {
29697
- backendTranslations: Record<string, string>;
29698
- userInputForm: {
29699
- cancel: string;
29700
- submit: string;
29701
- previous: string;
29702
- next: string;
29703
- startTask: string;
29704
- previousQuestion: string;
29705
- startWorkflow: string;
29706
- resumeTask: string;
29707
- resumeWorkflow: string;
29708
- inputFieldsHaveValidationErrors: string;
29709
- preconditionFailedTitle: string;
29710
- preconditionFailedFallback: string;
29711
- };
29712
- widgets: {
29713
- customer: {
29714
- placeholder: string;
29715
- loading: string;
29716
- };
29717
- contactPersonName: {
29718
- placeholder: string;
29719
- };
29720
- ipvAnyNetworkField: {
29721
- manuallySelectedPrefix: string;
29722
- };
29723
- node_select: {
29724
- nodes_loading: string;
29725
- select_node: string;
29726
- no_nodes_placeholder: string;
29727
- };
29728
- locationCode: {
29729
- placeholder: string;
29730
- };
29731
- product: {
29732
- placeholder: string;
29733
- };
29734
- select: {
29735
- placeholder: string;
29736
- };
29737
- vlan: {
29738
- vlansInUseError: string;
29739
- vlansInUse: string;
29740
- missingInIms: string;
29741
- nsiVlansAvailable: string;
29742
- nsiNoPortsAvailable: string;
29743
- allPortsAvailable: string;
29744
- placeholder: string;
29745
- placeholderNoServicePort: string;
29746
- invalidVlan: string;
29747
- untaggedPortInUse: string;
29748
- taggedOnly: string;
29749
- loadingIms: string;
29750
- };
29751
- subscription: {
29752
- placeholder: string;
29753
- loading: string;
29754
- };
29755
- nodePort: {
29756
- loadingNodes: string;
29757
- loadingPorts: string;
29758
- selectNode: string;
29759
- selectPort: string;
29760
- noPorts: string;
29761
- selectNodeFirst: string;
29762
- };
29763
- fileUpload: {
29764
- invalidFiletype: string;
29765
- errorUploading: string;
29766
- fileToBig: string;
29767
- initialPromptText: string;
29768
- supportedFileTypes: string;
29769
- };
29770
- };
29771
- };
29772
- main: {
29773
- start: string;
29774
- ariaLabelToggleSideMenu: string;
29775
- ariaLabelCurrentPage: string;
29776
- metadata: string;
29777
- metadataProducts: string;
29778
- metadataProductblocks: string;
29779
- metadataResourceTypes: string;
29780
- metadataWorkflows: string;
29781
- metadataTasks: string;
29782
- metadataScheduledTasks: string;
29783
- mobileTitle: string;
29784
- settings: string;
29785
- subscriptions: string;
29786
- tasks: string;
29787
- title: string;
29788
- welcome: string;
29789
- workflows: string;
29790
- darkMode: string;
29791
- lightMode: string;
29792
- websocketConnected: string;
29793
- websocketDisconnected: string;
29794
- websocketDisconnectedShort: string;
29795
- resetToDefault: string;
29796
- savePreferences: string;
29797
- numberOfRows: string;
29798
- tableSettings: string;
29799
- openMenu: string;
29800
- incompatibleVersion: string;
29801
- incompatibleVersionText: string;
29802
- minimumOrchestratorCoreVersion: string;
29803
- };
29804
- common: {
29805
- product: string;
29806
- deselect: string;
29807
- close: string;
29808
- editColumns: string;
29809
- tableSettings: string;
29810
- loading: string;
29811
- newSubscription: string;
29812
- newTask: string;
29813
- noFailedTasks: string;
29814
- noItemsFound: string;
29815
- search: string;
29816
- errorMessage: string;
29817
- unknownError: string;
29818
- export: string;
29819
- unauthorizedPage: string;
29820
- insyncTrue: string;
29821
- insyncFalse: string;
29822
- showAllColumnsInDetailView: string;
29823
- searchModalTitle: string;
29824
- searchModalText: string;
29825
- retrieval: string;
29826
- retrieverAuto: string;
29827
- retrieverFuzzy: string;
29828
- retrieverSemantic: string;
29829
- retrieverHybrid: string;
29830
- createFilter: string;
29831
- applyFilter: string;
29832
- removeFilter: string;
29833
- cancel: string;
29834
- loadMore: string;
29835
- };
29836
- confirmationDialog: {
29837
- title: string;
29838
- confirm: string;
29839
- cancel: string;
29840
- leavePage: string;
29841
- leavePageSub: string;
29842
- stay: string;
29843
- leave: string;
29844
- };
29845
- workflow: {
29846
- start_workflow_title: string;
29847
- };
29848
- errors: {
29849
- notAllResultsExported: string;
29850
- notAllResultsExportedTitle: string;
29851
- invalidQueryParts: string;
29852
- notAllowedWhenEngineIsNotRunningMessage: string;
29853
- notAllowedWhenEngineIsNotRunningTitle: string;
29854
- retrieve_stored_settings: string;
29855
- retrieve_stored_settings_title: string;
29856
- failedDeletingScheduledTask: string;
29857
- };
29858
- metadata: {
29859
- title: string;
29860
- tabs: {
29861
- products: string;
29862
- productBlocks: string;
29863
- resourceTypes: string;
29864
- workflows: string;
29865
- tasks: string;
29866
- };
29867
- products: {
29868
- id: string;
29869
- name: string;
29870
- description: string;
29871
- tag: string;
29872
- productType: string;
29873
- status: string;
29874
- productBlocks: string;
29875
- fixedInputs: string;
29876
- createdAt: string;
29877
- };
29878
- productBlocks: {
29879
- id: string;
29880
- name: string;
29881
- description: string;
29882
- tag: string;
29883
- status: string;
29884
- resourceTypes: string;
29885
- dependingProductBlocks: string;
29886
- createdAt: string;
29887
- endDate: string;
29888
- parentIds: string;
29889
- };
29890
- resourceTypes: {
29891
- type: string;
29892
- description: string;
29893
- resourceId: string;
29894
- usedInProductBlocks: string;
29895
- };
29896
- workflows: {
29897
- workflowId: string;
29898
- name: string;
29899
- description: string;
29900
- target: string;
29901
- productTags: string;
29902
- createdAt: string;
29903
- };
29904
- tasks: {
29905
- workflowId: string;
29906
- name: string;
29907
- description: string;
29908
- target: string;
29909
- productTags: string;
29910
- createdAt: string;
29911
- scheduled: string;
29912
- addSchedule: string;
29913
- };
29914
- scheduledTasks: {
29915
- task: string;
29916
- taskDecription: string;
29917
- nextRuntime: string;
29918
- schedule: string;
29919
- interval: string;
29920
- ariaLabelDeleteButton: string;
29921
- deleteConfirmationQuestion: string;
29922
- addSchedule: string;
29923
- };
29924
- scheduleTaskForm: {
29925
- newSchedule: string;
29926
- selectTask: string;
29927
- selectTaskType: string;
29928
- selectInterval: string;
29929
- taskTypeInterval: string;
29930
- taskTypeCron: string;
29931
- taskTypeDate: string;
29932
- firstRunDate: string;
29933
- "1hour": string;
29934
- "2hours": string;
29935
- "4hours": string;
29936
- "12hours": string;
29937
- "24hours": string;
29938
- "1week": string;
29939
- "2weeks": string;
29940
- "1month": string;
29941
- createScheduleButton: string;
29942
- };
29943
- };
29944
- workflowGuide: {
29945
- title: string;
29946
- noGuideAvailable: string;
29947
- show: string;
29948
- hide: string;
29949
- };
29950
- processes: {
29951
- index: {
29952
- workflowName: string;
29953
- step: string;
29954
- status: string;
29955
- product: string;
29956
- customer: string;
29957
- customerAbbreviation: string;
29958
- subscriptions: string;
29959
- createdBy: string;
29960
- assignee: string;
29961
- processId: string;
29962
- started: string;
29963
- lastModified: string;
29964
- workflowTarget: string;
29965
- productTag: string;
29966
- showAllRelatedSubscriptions: string;
29967
- note: string;
29968
- };
29969
- detail: {
29970
- retry: string;
29971
- resume: string;
29972
- abort: string;
29973
- delete: string;
29974
- deleteQuestion: string;
29975
- abortTaskQuestion: string;
29976
- abortWorkflowQuestion: string;
29977
- retryTaskQuestion: string;
29978
- retryWorkflowQuestion: string;
29979
- status: string;
29980
- startedBy: string;
29981
- lastStep: string;
29982
- startedOn: string;
29983
- lastUpdate: string;
29984
- relatedSubscriptions: string;
29985
- subscriptions: string;
29986
- customer: string;
29987
- openWorkflowTaskInfo: string;
29988
- };
29989
- steps: {
29990
- taskSteps: string;
29991
- workflowSteps: string;
29992
- showDelta: string;
29993
- hideDelta: string;
29994
- showTraceback: string;
29995
- hideTraceback: string;
29996
- viewOptions: string;
29997
- expandAll: string;
29998
- collapseAll: string;
29999
- duration: string;
30000
- userInput: string;
30001
- submitTaskFormLabel: string;
30002
- submitWorkflowFormLabel: string;
30003
- traceback: string;
30004
- codeView: {
30005
- json: string;
30006
- table: string;
30007
- raw: string;
30008
- };
30009
- };
30010
- delta: {
30011
- title: string;
30012
- fullScreenExit: string;
30013
- fullScreen: string;
30014
- continuityAboveBelow: string;
30015
- continuityWithin: string;
29284
+ workerStatusTitle: string;
30016
29285
  };
30017
- };
30018
- workflows: {
30019
29286
  tabs: {
30020
- active: string;
30021
- completed: string;
30022
- };
30023
- index: {
30024
- title: string;
29287
+ actions: string;
29288
+ envSettings: string;
30025
29289
  };
30026
29290
  };
30027
- subscriptions: {
30028
- tabs: {
30029
- active: string;
30030
- terminated: string;
30031
- transient: string;
30032
- all: string;
29291
+ startPage: {
29292
+ activeSubscriptions: {
29293
+ buttonText: string;
29294
+ headerTitle: string;
29295
+ listTitle: string;
30033
29296
  };
30034
- index: {
30035
- id: string;
30036
- description: string;
30037
- status: string;
30038
- insync: string;
30039
- product: string;
30040
- tag: string;
30041
- startDate: string;
30042
- endDate: string;
30043
- note: string;
30044
- metadata: string;
30045
- customerFullname: string;
30046
- customerShortcode: string;
30047
- actions: string;
29297
+ activeWorkflows: {
29298
+ buttonText: string;
29299
+ headerTitle: string;
29300
+ listTitle: string;
29301
+ };
29302
+ failedTasks: {
29303
+ buttonText: string;
29304
+ headerTitle: string;
29305
+ listTitle: string;
29306
+ };
29307
+ myWorkflows: {
29308
+ buttonText: string;
29309
+ headerTitle: string;
29310
+ listTitle: string;
29311
+ };
29312
+ outOfSyncSubscriptions: {
29313
+ buttonText: string;
29314
+ headerTitle: string;
29315
+ listTitle: string;
29316
+ };
29317
+ products: {
29318
+ headerTitle: string;
29319
+ listTitle: string;
30048
29320
  };
29321
+ };
29322
+ subscriptions: {
30049
29323
  detail: {
30050
- title: string;
30051
- tabs: {
30052
- general: string;
30053
- serviceConfiguration: string;
30054
- workflows: string;
30055
- relatedSubscriptions: string;
30056
- };
30057
- loadingStatus: string;
30058
29324
  actions: {
30059
- create: string;
30060
- modify: string;
30061
- tasks: string;
30062
- terminate: string;
30063
- reconcile: string;
30064
- notAvailable: string;
30065
- notAvailableForWorkflow: string;
30066
- reconcileSubscription: string;
30067
- validateSubscription: string;
30068
29325
  actions: string;
30069
- actionStarted: string;
30070
- actionStartFailed: string;
30071
29326
  lockedBySubscriptions: string;
29327
+ modify: string;
29328
+ reconcile: string;
30072
29329
  subscription: {
29330
+ insufficient_workflow_permissions: string;
30073
29331
  no_modify_deleted_related_objects: string;
30074
29332
  no_modify_in_use_by_subscription: string;
30075
29333
  no_modify_invalid_status: string;
29334
+ no_modify_subscription_in_use_by_others: string;
30076
29335
  no_modify_workflow: string;
30077
29336
  no_termination_workflow: string;
30078
29337
  no_validate_workflow: string;
30079
29338
  not_in_sync: string;
30080
29339
  relations_not_in_sync: string;
30081
- no_modify_subscription_in_use_by_others: string;
30082
- insufficient_workflow_permissions: string;
30083
29340
  running_process: string;
30084
29341
  };
29342
+ tasks: string;
29343
+ terminate: string;
30085
29344
  };
30086
- subscriptionInstanceId: string;
30087
- ownerSubscriptionId: string;
30088
- inUseByRelations: string;
30089
- showDetails: string;
30090
- hideDetails: string;
30091
- self: string;
30092
- subscriptionDetails: string;
30093
- productName: string;
30094
- fixedInputs: string;
30095
- productInfo: string;
30096
- noProductBlockSelected: string;
30097
- productBlocks: string;
30098
- ctaSelectProductBlock: string;
30099
- startedBy: string;
30100
- startedAt: string;
30101
- status: string;
30102
- id: string;
30103
- blockTitleSubscriptionDetails: string;
30104
29345
  blockTitleFixedInputs: string;
30105
29346
  blockTitleProductInfo: string;
30106
- subscriptionId: string;
30107
- description: string;
30108
- startDate: string;
30109
- lastRunValidation: string;
30110
- noValidateWorkflows: string;
30111
- insync: string;
29347
+ blockTitleSubscriptionDetails: string;
29348
+ created: string;
29349
+ ctaSelectProductBlock: string;
30112
29350
  customer: string;
30113
- customerUuid: string;
30114
29351
  customerDescriptions: string;
29352
+ customerUuid: string;
29353
+ description: string;
29354
+ endDate: string;
29355
+ hideAll: string;
29356
+ hideDetails: string;
29357
+ hideTerminatedRelatedSubscriptions: string;
29358
+ id: string;
29359
+ inUseByRelations: string;
29360
+ insync: string;
29361
+ lastRunValidation: string;
30115
29362
  metadata: string;
30116
29363
  name: string;
30117
- productType: string;
30118
- tag: string;
30119
- created: string;
30120
- endDate: string;
30121
- note: string;
29364
+ noProductBlockSelected: string;
30122
29365
  noRelatedSubscriptions: string;
30123
- hideTerminatedRelatedSubscriptions: string;
29366
+ noValidateWorkflows: string;
29367
+ note: string;
29368
+ ownerSubscriptionId: string;
30124
29369
  processDetail: {
30125
29370
  id: string;
30126
- status: string;
29371
+ note: string;
30127
29372
  startedAt: string;
30128
29373
  startedBy: string;
30129
- note: string;
29374
+ status: string;
30130
29375
  };
30131
- showAll: string;
30132
- hideAll: string;
30133
- selectByNameTitle: string;
30134
- selectByNameButtonText: string;
29376
+ productBlocks: string;
29377
+ productName: string;
29378
+ productType: string;
30135
29379
  see: string;
29380
+ selectByNameButtonText: string;
29381
+ selectByNameTitle: string;
29382
+ self: string;
30136
29383
  setInSync: string;
30137
- subscriptionIsInSync: string;
30138
- setInSyncQuestion: string;
30139
29384
  setInSyncFailed: {
30140
- title: string;
30141
29385
  text: string;
29386
+ title: string;
30142
29387
  };
29388
+ setInSyncQuestion: string;
30143
29389
  setInSyncSuccess: {
30144
- title: string;
30145
29390
  text: string;
29391
+ title: string;
29392
+ };
29393
+ showAll: string;
29394
+ showDetails: string;
29395
+ startDate: string;
29396
+ status: string;
29397
+ subscriptionId: string;
29398
+ subscriptionInstanceId: string;
29399
+ subscriptionIsInSync: string;
29400
+ tabs: {
29401
+ general: string;
29402
+ relatedSubscriptions: string;
29403
+ serviceConfiguration: string;
29404
+ workflows: string;
30146
29405
  };
29406
+ tag: string;
29407
+ title: string;
30147
29408
  workflowsTab: {
30148
- startWithOldestLabel: string;
30149
29409
  startWithNewestLabel: string;
29410
+ startWithOldestLabel: string;
30150
29411
  };
30151
29412
  };
29413
+ index: {
29414
+ customerFullname: string;
29415
+ customerId: string;
29416
+ customerShortcode: string;
29417
+ description: string;
29418
+ endDate: string;
29419
+ id: string;
29420
+ insync: string;
29421
+ metadata: string;
29422
+ note: string;
29423
+ product: string;
29424
+ startDate: string;
29425
+ status: string;
29426
+ tag: string;
29427
+ };
29428
+ tabs: {
29429
+ active: string;
29430
+ all: string;
29431
+ terminated: string;
29432
+ transient: string;
29433
+ };
30152
29434
  };
30153
29435
  tasks: {
30154
29436
  page: {
30155
- taskName: string;
30156
29437
  rerunAll: string;
30157
29438
  rerunAllQuestion: string;
29439
+ taskName: string;
30158
29440
  };
30159
29441
  tabs: {
30160
29442
  active: string;
30161
29443
  completed: string;
30162
29444
  };
30163
29445
  };
30164
- settings: {
30165
- page: {
30166
- flushButton: string;
30167
- flushCacheSettingsTitle: string;
30168
- engineStatusTitle: string;
30169
- workerStatusTitle: string;
30170
- modifyEngine: string;
30171
- pauseEngine: string;
30172
- runningProcesses: string;
30173
- selectSettings: string;
30174
- startEngine: string;
30175
- resetTextSearchIndex: string;
30176
- resetTextSearchIndexButton: string;
30177
- status: string;
30178
- numberOfQueuedJobs: string;
30179
- numberOfRunningJobs: string;
30180
- numberOfWorkersOnline: string;
30181
- viewStatusPage: string;
30182
- aoStackStatus: string;
30183
- noSettingsExposed: string;
30184
- settingsOverviewLink: string;
30185
- };
30186
- tabs: {
30187
- actions: string;
30188
- envSettings: string;
30189
- };
29446
+ workflowGuide: {
29447
+ hide: string;
29448
+ noGuideAvailable: string;
29449
+ show: string;
30190
29450
  };
30191
- startPage: {
30192
- myWorkflows: {
30193
- buttonText: string;
30194
- headerTitle: string;
30195
- listTitle: string;
30196
- };
30197
- activeSubscriptions: {
30198
- buttonText: string;
30199
- headerTitle: string;
30200
- listTitle: string;
30201
- };
30202
- outOfSyncSubscriptions: {
30203
- buttonText: string;
30204
- headerTitle: string;
30205
- listTitle: string;
30206
- };
30207
- activeWorkflows: {
30208
- buttonText: string;
30209
- headerTitle: string;
30210
- listTitle: string;
30211
- };
30212
- failedTasks: {
30213
- buttonText: string;
30214
- headerTitle: string;
30215
- listTitle: string;
29451
+ workflows: {
29452
+ index: {
29453
+ title: string;
30216
29454
  };
30217
- products: {
30218
- headerTitle: string;
30219
- listTitle: string;
29455
+ tabs: {
29456
+ active: string;
29457
+ completed: string;
30220
29458
  };
30221
29459
  };
30222
- hamburgerMenu: {
30223
- openMenu: string;
30224
- support: string;
30225
- softwareVersions: string;
30226
- logout: string;
30227
- aoStatusPage: string;
30228
- };
30229
29460
  };
30230
29461
 
30231
29462
  declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
@@ -30401,6 +29632,8 @@ declare const getStatusBadgeColor: (status: string) => any;
30401
29632
 
30402
29633
  declare function getTypedFieldFromObject<T extends object>(field: string | undefined, object: T): null | keyof T;
30403
29634
 
29635
+ declare const toPercentage: (fraction: number) => string;
29636
+
30404
29637
  declare const onlyUnique: (value: string, index: number, array: string[]) => boolean;
30405
29638
 
30406
29639
  declare const toOptionalArrayEntry: <T>(data: T, condition: boolean) => [T] | [];
@@ -30439,4 +29672,4 @@ declare enum WfoQueryParams {
30439
29672
  }
30440
29673
  declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
30441
29674
 
30442
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, CALLOUT_COLORS, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, type CalloutColor, ColorModes, ColumnType, type Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExportArtifact, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldToOperatorMap, type FieldValue, type FileUploadPayload, type Filter, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, type MetadataStatusParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorDisplay, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_SUBSCRIPTIONS_BETA, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessPatchParams, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, type QueryArtifact, type QueryResultsData, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type ResultColumToPropertyMap, type ResultRow, RetrieverType, type RootState, Row, SEARCH_QUERY_RESULTS_ENDPOINT, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchParams, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionRelation, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAutoExpandableTextArea, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExpandingSearchRow, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMarkdownField, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPageWithUserGuide, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, WfoProcessDetailPage, WfoProcessListNoteEdit, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoPydanticForm, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchPocPage, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoStructuredSearchTable, type WfoStructuredSearchTableColumnConfig, type WfoStructuredSearchTableDataColumnConfig, type WfoStructuredSearchTableDataColumnConfigItem, type WfoStructuredSearchTableProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, WfoTrashFilled, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowGuideExpandablePanel, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowGuideResponse, type WorkflowListItem, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, combineSearchFilters, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenSubscriptionActionProps as flattenArrayProps, flattenSubscriptionActionProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDiffTexts, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stringifyDiffText, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowGuideQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionDetailQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazySearchQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePatchProcessMutation, usePathAutocomplete, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchPathsQuery, useSearchQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductDescriptionMutation, useUpdateProductStatusMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
29675
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, CALLOUT_COLORS, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, type CalloutColor, ColorModes, ColumnType, type Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExportArtifact, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldToOperatorMap, type FieldValue, type FileUploadPayload, type Filter, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, type MetadataStatusParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorDisplay, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_SUBSCRIPTIONS_BETA, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessPatchParams, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, type QueryArtifact, type QueryResultsData, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type ResultColumToPropertyMap, type ResultRow, RetrieverType, type RootState, Row, SEARCH_QUERY_RESULTS_ENDPOINT, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchParams, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionRelation, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAutoExpandableTextArea, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCron, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExpandingSearchRow, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMarkdownField, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPageWithUserGuide, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, WfoProcessDetailPage, WfoProcessListNoteEdit, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoPydanticForm, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchPocPage, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoStructuredSearchTable, type WfoStructuredSearchTableColumnConfig, type WfoStructuredSearchTableDataColumnConfig, type WfoStructuredSearchTableDataColumnConfigItem, type WfoStructuredSearchTableProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, WfoTrashFilled, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowGuideExpandablePanel, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowGuideResponse, type WorkflowListItem, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addStatusFilterFromTab, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenSubscriptionActionProps as flattenArrayProps, flattenSubscriptionActionProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCronFieldIndexAtCursor, getCronFieldLayout, getCronFieldSelectionRange, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDiffTexts, getTableConfigFromLocalStorage, getTableSettingsColumns, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeTabStatusMatchingFields, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stringifyDiffText, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toPercentage, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowGuideQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLanguageCode, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionDetailQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazySearchQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePatchProcessMutation, usePathAutocomplete, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchPathsQuery, useSearchQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductDescriptionMutation, useUpdateProductStatusMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };