@orchestrator-ui/orchestrator-ui-components 3.2.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +7 -7
  4. package/CHANGELOG.md +8 -0
  5. package/dist/index.d.ts +601 -15
  6. package/dist/index.js +1885 -1607
  7. package/dist/index.js.map +1 -1
  8. package/package.json +1 -1
  9. package/src/components/{WfoInlineNoteEdit/WfoInlineNoteEdit.tsx → WfoInlineEdit/WfoInlineEdit.tsx} +10 -10
  10. package/src/components/WfoInlineEdit/index.ts +1 -0
  11. package/src/components/WfoInlineNoteEdit/WfoSubscriptionDetailNoteEdit.tsx +4 -3
  12. package/src/components/WfoInlineNoteEdit/WfoSubscriptionNoteEdit.tsx +4 -3
  13. package/src/components/WfoInlineNoteEdit/index.ts +0 -1
  14. package/src/components/WfoPageTemplate/WfoPageHeader/WfoHamburgerMenu.tsx +66 -5
  15. package/src/components/WfoSubscription/WfoCustomerDescriptionsField.tsx +100 -26
  16. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionExpandableMenuItem.tsx +1 -2
  17. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +2 -3
  18. package/src/components/WfoSubscription/WfoSubscriptionGeneralSections/WfoSubscriptionDetailSection.tsx +11 -15
  19. package/src/components/WfoSubscription/styles.ts +12 -0
  20. package/src/components/WfoTable/utils/tableUtils.spec.ts +37 -1
  21. package/src/components/WfoTable/utils/tableUtils.ts +11 -1
  22. package/src/components/index.ts +1 -0
  23. package/src/configuration/constants.ts +2 -0
  24. package/src/configuration/version.ts +1 -1
  25. package/src/icons/heroicons/WfoSquareStack3dStack.tsx +27 -0
  26. package/src/icons/heroicons/index.ts +1 -0
  27. package/src/messages/en-GB.json +10 -3
  28. package/src/messages/nl-NL.json +6 -1
  29. package/src/pages/metadata/WfoTasksPage.tsx +21 -6
  30. package/src/pages/metadata/WfoWorkflowsPage.tsx +19 -2
  31. package/src/pages/metadata/taskListObjectMapper.ts +2 -1
  32. package/src/pages/metadata/workflowListObjectMapper.ts +2 -2
  33. package/src/rtk/endpoints/customerDescriptions.ts +54 -0
  34. package/src/rtk/endpoints/metadata/tasks.ts +1 -0
  35. package/src/rtk/endpoints/metadata/workflows.ts +1 -0
  36. package/src/rtk/endpoints/subscriptionDetail.ts +1 -0
  37. package/src/rtk/endpoints/versions.ts +27 -0
  38. package/src/types/types.ts +3 -0
  39. package/src/utils/getDefaultTableConfig.ts +11 -2
package/dist/index.d.ts CHANGED
@@ -2181,7 +2181,7 @@ declare const useLazyGetResourceTypesQuery: <R extends Record<string, any> = _re
2181
2181
  }];
2182
2182
 
2183
2183
  declare const workflowsDescription = "\nquery MetadataWorkflowsDescription(\n $workflowName: String!\n) {\n workflows(\n filterBy: [{ field: \"name\", value: $workflowName }]\n ) {\n page {\n name\n description\n }\n }\n}\n";
2184
- declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"target\", value: \"CREATE|MODIFY|TERMINATE\" }\n ) {\n page {\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2184
+ declare const workflowsQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"target\", value: \"CREATE|MODIFY|TERMINATE\" }\n ) {\n page {\n workflowId\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2185
2185
  type WorkflowsDescriptionQueryVariables = {
2186
2186
  workflowName: string;
2187
2187
  };
@@ -2991,7 +2991,7 @@ declare const useGetDescriptionForWorkflowNameQuery: <R extends Record<string, a
2991
2991
  } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowsDescriptionResponse, "orchestratorApi">>;
2992
2992
  };
2993
2993
 
2994
- declare const tasksQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"target\", value: \"SYSTEM\" }\n ) {\n page {\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2994
+ declare const tasksQuery = "\nquery MetadataWorkflows(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $query: String\n) {\n workflows(\n first: $first\n after: $after\n sortBy: $sortBy\n query: $query\n filterBy: { field: \"target\", value: \"SYSTEM\" }\n ) {\n page {\n workflowId\n name\n description\n target\n products {\n tag\n }\n createdAt\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n sortFields\n filterFields\n }\n }\n}\n";
2995
2995
  type TasksResponse = {
2996
2996
  tasks: TaskDefinition[];
2997
2997
  } & BaseGraphQlResult;
@@ -10001,7 +10001,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
10001
10001
  };
10002
10002
  }];
10003
10003
 
10004
- declare const subscriptionDetailFragment = "\nfragment SubscriptionDetail on SubscriptionInterface {\n subscriptionId\n description\n fixedInputs\n insync\n note\n product {\n createdAt\n name\n status\n endDate\n description\n tag\n productType\n productId\n }\n endDate\n startDate\n status\n customerId\n metadata\n customer {\n fullname\n customerId\n shortcode\n }\n customerDescriptions {\n subscriptionId\n description\n customerId\n }\n productBlockInstances {\n id\n subscription {\n subscriptionId\n description\n }\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n processes(first: 1000000, after: 0, sortBy: { field: \"startedAt\", order: ASC }) {\n page {\n processId\n lastStatus\n startedAt\n createdBy\n workflowTarget\n workflowName\n isTask\n }\n }\n}\n";
10004
+ declare const subscriptionDetailFragment = "\nfragment SubscriptionDetail on SubscriptionInterface {\n subscriptionId\n description\n fixedInputs\n insync\n note\n product {\n createdAt\n name\n status\n endDate\n description\n tag\n productType\n productId\n }\n endDate\n startDate\n status\n customerId\n metadata\n customer {\n fullname\n customerId\n shortcode\n }\n customerDescriptions {\n id\n subscriptionId\n description\n customerId\n }\n productBlockInstances {\n id\n subscription {\n subscriptionId\n description\n }\n parent\n productBlockInstanceValues\n subscriptionInstanceId\n inUseByRelations\n }\n processes(first: 1000000, after: 0, sortBy: { field: \"startedAt\", order: ASC }) {\n page {\n processId\n lastStatus\n startedAt\n createdBy\n workflowTarget\n workflowName\n isTask\n }\n }\n}\n";
10005
10005
  declare const subscriptionDetailQuery = "\n query SubscriptionDetail($subscriptionId: String!) {\n subscriptions(\n filterBy: { field: \"subscriptionId\", value: $subscriptionId }\n ) {\n page {\n ...SubscriptionDetail\n }\n }\n }\n";
10006
10006
  type SubscriptionDetailResponse = {
10007
10007
  subscription: SubscriptionDetail;
@@ -10816,6 +10816,7 @@ declare const determineNewSortOrder: <T>(currentSortField: keyof T, currentSortO
10816
10816
  declare const getDataSortHandler: <Type>(setDataDisplayParam: DataDisplayReturnValues<Type>["setDataDisplayParam"]) => ({ field, sortOrder }: WfoDataSorting<Type>) => void;
10817
10817
  declare const getPageSizeChangeHandler: <Type>(setDataDisplayParam: DataDisplayReturnValues<Type>["setDataDisplayParam"]) => (pageSize: number) => void;
10818
10818
  declare const getPageIndexChangeHandler: <Type>(setDataDisplayParam: DataDisplayReturnValues<Type>["setDataDisplayParam"]) => (pageIndex: number) => void;
10819
+ declare const hasSpecialCharacterOrSpace: (string: string) => boolean;
10819
10820
  declare const getQueryStringHandler: <Type>(setDataDisplayParam: DataDisplayReturnValues<Type>["setDataDisplayParam"]) => (queryString: string) => void;
10820
10821
 
10821
10822
  type WfoStatusColorFieldProps = {
@@ -10863,6 +10864,11 @@ declare const WfoWrench: {
10863
10864
  displayName: string;
10864
10865
  };
10865
10866
 
10867
+ declare const WfoSquareStack3dStack: {
10868
+ ({ className, ...iconProps }: WfoIconProps & Omit<WfoHeroIconsWrapperProps, "children">): _emotion_react_jsx_runtime.JSX.Element;
10869
+ displayName: string;
10870
+ };
10871
+
10866
10872
  declare const WfoXCircleFill: FC<WfoIconProps>;
10867
10873
 
10868
10874
  declare const WfoArrowsExpand: FC<WfoIconProps>;
@@ -13142,6 +13148,7 @@ interface Step {
13142
13148
  stateDelta: StepState;
13143
13149
  }
13144
13150
  interface WorkflowDefinition {
13151
+ workflowId: string;
13145
13152
  name: string;
13146
13153
  description?: string;
13147
13154
  target: WorkflowTarget;
@@ -13149,6 +13156,7 @@ interface WorkflowDefinition {
13149
13156
  createdAt: string;
13150
13157
  }
13151
13158
  interface TaskDefinition {
13159
+ workflowId: string;
13152
13160
  name: string;
13153
13161
  description?: string;
13154
13162
  target: WorkflowTarget;
@@ -13313,6 +13321,7 @@ type SubscriptionDropdownOption = {
13313
13321
  };
13314
13322
  };
13315
13323
  type CustomerDescriptions = {
13324
+ id: string;
13316
13325
  subscriptionId: string;
13317
13326
  description: string;
13318
13327
  customerId: string;
@@ -13760,6 +13769,8 @@ declare const WfoSubscriptionGeneral: ({ subscriptionDetail, isFetching, }: WfoS
13760
13769
 
13761
13770
  type WfoCustomerDescriptionsFieldProps = {
13762
13771
  customerDescriptions: CustomerDescriptions[];
13772
+ subscriptionCustomerId: SubscriptionDetail['customerId'];
13773
+ subscriptionId: SubscriptionDetail['subscriptionId'];
13763
13774
  };
13764
13775
  declare const WfoCustomerDescriptionsField: FC<WfoCustomerDescriptionsFieldProps>;
13765
13776
 
@@ -14487,13 +14498,6 @@ type WfoRadioDropdownOption<T> = {
14487
14498
  };
14488
14499
  declare const WfoRadioDropdown: <T>({ options, onUpdateOption, selectedOption, }: WfoRadioDropdownProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
14489
14500
 
14490
- interface WfoInlineNoteEditProps {
14491
- value: string;
14492
- onlyShowOnHover?: boolean;
14493
- triggerNoteModifyWorkflow?: (note: string) => void;
14494
- }
14495
- declare const WfoInlineNoteEdit: FC<WfoInlineNoteEditProps>;
14496
-
14497
14501
  interface WfoSubscriptionNoteEditProps {
14498
14502
  subscriptionId: Subscription['subscriptionId'];
14499
14503
  onlyShowOnHover?: boolean;
@@ -14513,6 +14517,13 @@ type WfoTableCodeBlockProps = {
14513
14517
  };
14514
14518
  declare const WfoTableCodeBlock: FC<WfoTableCodeBlockProps>;
14515
14519
 
14520
+ interface WfoInlineEditProps {
14521
+ value: string;
14522
+ onlyShowOnHover?: boolean;
14523
+ onSave?: (note: string) => void;
14524
+ }
14525
+ declare const WfoInlineEdit: FC<WfoInlineEditProps>;
14526
+
14516
14527
  declare const MAXIMUM_ITEMS_FOR_BULK_FETCHING = 1000;
14517
14528
  declare const NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS = 1000000;
14518
14529
  declare const PROCESSES_ENDPOINT = "processes";
@@ -14531,8 +14542,9 @@ declare const IPAM_PREFIX_FILTERS_ENDPOINT = "surf/ipam/prefix_filters";
14531
14542
  declare const IPAM_IP_BLOCKS_ENDPOINT = "surf/ipam/ip_blocks";
14532
14543
  declare const IPAM_FREE_SUBNETS_ENDPOINT = "surf/ipam/free_subnets";
14533
14544
  declare const SUBSCRIPTION_ACTIONS_ENDPOINT = "subscriptions/workflows";
14545
+ declare const CUSTOMER_DESCRIPTION_ENDPOINT = "/subscription_customer_descriptions";
14534
14546
 
14535
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "3.2.0";
14547
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "3.3.0";
14536
14548
 
14537
14549
  declare const useGetTranslationMessages: (locale: string | undefined) => {
14538
14550
  pydanticForms: {
@@ -14600,6 +14612,71 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
14600
14612
  selectNodeFirst: string;
14601
14613
  };
14602
14614
  };
14615
+ } | {
14616
+ backendTranslations: Record<string, string>;
14617
+ userInputForm: {
14618
+ cancel: string;
14619
+ submit: string;
14620
+ previous: string;
14621
+ next: string;
14622
+ startTask: string;
14623
+ previousQuestion: string;
14624
+ startWorkflow: string;
14625
+ resumeTask: string;
14626
+ resumeWorkflow: string;
14627
+ inputFieldsHaveValidationErrors: string;
14628
+ };
14629
+ widgets: {
14630
+ customer: {
14631
+ placeholder: string;
14632
+ loading: string;
14633
+ };
14634
+ contactPersonName: {
14635
+ placeholder: string;
14636
+ };
14637
+ ipvAnyNetworkField: {
14638
+ manuallySelectedPrefix: string;
14639
+ };
14640
+ node_select: {
14641
+ nodes_loading: string;
14642
+ select_node: string;
14643
+ no_nodes_placeholder: string;
14644
+ };
14645
+ locationCode: {
14646
+ placeholder: string;
14647
+ };
14648
+ product: {
14649
+ placeholder: string;
14650
+ };
14651
+ select: {
14652
+ placeholder: string;
14653
+ };
14654
+ vlan: {
14655
+ vlansInUseError: string;
14656
+ vlansInUse: string;
14657
+ missingInIms: string;
14658
+ nsiVlansAvailable: string;
14659
+ nsiNoPortsAvailable: string;
14660
+ allPortsAvailable: string;
14661
+ placeholder: string;
14662
+ placeholderNoServicePort: string;
14663
+ invalidVlan: string;
14664
+ untaggedPortInUse: string;
14665
+ taggedOnly: string;
14666
+ loadingIms: string;
14667
+ };
14668
+ subscription: {
14669
+ placeholder: string;
14670
+ loading: string;
14671
+ };
14672
+ nodePort: {
14673
+ loadingNodes: string;
14674
+ loadingPorts: string;
14675
+ selectNode: string;
14676
+ selectPort: string;
14677
+ selectNodeFirst: string;
14678
+ };
14679
+ };
14603
14680
  };
14604
14681
  main: {
14605
14682
  start: string;
@@ -14627,7 +14704,6 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
14627
14704
  savePreferences: string;
14628
14705
  numberOfRows: string;
14629
14706
  tableSettings: string;
14630
- openMenu: string;
14631
14707
  };
14632
14708
  common: {
14633
14709
  product: string;
@@ -14709,6 +14785,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
14709
14785
  usedInProductBlocks: string;
14710
14786
  };
14711
14787
  workflows: {
14788
+ workflowId: string;
14712
14789
  name: string;
14713
14790
  description: string;
14714
14791
  target: string;
@@ -14716,6 +14793,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
14716
14793
  createdAt: string;
14717
14794
  };
14718
14795
  tasks: {
14796
+ workflowId: string;
14719
14797
  name: string;
14720
14798
  description: string;
14721
14799
  target: string;
@@ -14966,6 +15044,514 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
14966
15044
  listTitle: string;
14967
15045
  };
14968
15046
  };
15047
+ hamburgerMenu: {
15048
+ openMenu: string;
15049
+ support: string;
15050
+ softwareVersions: string;
15051
+ logout: string;
15052
+ };
15053
+ } | {
15054
+ pydanticForms: {
15055
+ backendTranslations: Record<string, string>;
15056
+ userInputForm: {
15057
+ cancel: string;
15058
+ submit: string;
15059
+ previous: string;
15060
+ next: string;
15061
+ previousQuestion: string;
15062
+ startTask: string;
15063
+ startWorkflow: string;
15064
+ resumeTask: string;
15065
+ resumeWorkflow: string;
15066
+ inputFieldsHaveValidationErrors: string;
15067
+ };
15068
+ widgets: {
15069
+ customer: {
15070
+ placeholder: string;
15071
+ loading: string;
15072
+ };
15073
+ contactPersonName: {
15074
+ placeholder: string;
15075
+ };
15076
+ ipvAnyNetworkField: {
15077
+ manuallySelectedPrefix: string;
15078
+ };
15079
+ node_select: {
15080
+ nodes_loading: string;
15081
+ select_node: string;
15082
+ no_nodes_placeholder: string;
15083
+ };
15084
+ locationCode: {
15085
+ placeholder: string;
15086
+ };
15087
+ product: {
15088
+ placeholder: string;
15089
+ };
15090
+ select: {
15091
+ placeholder: string;
15092
+ };
15093
+ vlan: {
15094
+ vlansInUseError: string;
15095
+ vlansInUse: string;
15096
+ missingInIms: string;
15097
+ nsiVlansAvailable: string;
15098
+ nsiNoPortsAvailable: string;
15099
+ allPortsAvailable: string;
15100
+ placeholder: string;
15101
+ placeholderNoServicePort: string;
15102
+ invalidVlan: string;
15103
+ untaggedPortInUse: string;
15104
+ taggedOnly: string;
15105
+ loadingIms: string;
15106
+ };
15107
+ subscription: {
15108
+ placeholder: string;
15109
+ loading: string;
15110
+ };
15111
+ nodePort: {
15112
+ loadingNodes: string;
15113
+ loadingPorts: string;
15114
+ selectNode: string;
15115
+ selectPort: string;
15116
+ selectNodeFirst: string;
15117
+ };
15118
+ };
15119
+ } | {
15120
+ backendTranslations: Record<string, string>;
15121
+ userInputForm: {
15122
+ cancel: string;
15123
+ submit: string;
15124
+ previous: string;
15125
+ next: string;
15126
+ startTask: string;
15127
+ previousQuestion: string;
15128
+ startWorkflow: string;
15129
+ resumeTask: string;
15130
+ resumeWorkflow: string;
15131
+ inputFieldsHaveValidationErrors: string;
15132
+ };
15133
+ widgets: {
15134
+ customer: {
15135
+ placeholder: string;
15136
+ loading: string;
15137
+ };
15138
+ contactPersonName: {
15139
+ placeholder: string;
15140
+ };
15141
+ ipvAnyNetworkField: {
15142
+ manuallySelectedPrefix: string;
15143
+ };
15144
+ node_select: {
15145
+ nodes_loading: string;
15146
+ select_node: string;
15147
+ no_nodes_placeholder: string;
15148
+ };
15149
+ locationCode: {
15150
+ placeholder: string;
15151
+ };
15152
+ product: {
15153
+ placeholder: string;
15154
+ };
15155
+ select: {
15156
+ placeholder: string;
15157
+ };
15158
+ vlan: {
15159
+ vlansInUseError: string;
15160
+ vlansInUse: string;
15161
+ missingInIms: string;
15162
+ nsiVlansAvailable: string;
15163
+ nsiNoPortsAvailable: string;
15164
+ allPortsAvailable: string;
15165
+ placeholder: string;
15166
+ placeholderNoServicePort: string;
15167
+ invalidVlan: string;
15168
+ untaggedPortInUse: string;
15169
+ taggedOnly: string;
15170
+ loadingIms: string;
15171
+ };
15172
+ subscription: {
15173
+ placeholder: string;
15174
+ loading: string;
15175
+ };
15176
+ nodePort: {
15177
+ loadingNodes: string;
15178
+ loadingPorts: string;
15179
+ selectNode: string;
15180
+ selectPort: string;
15181
+ selectNodeFirst: string;
15182
+ };
15183
+ };
15184
+ };
15185
+ main: {
15186
+ start: string;
15187
+ ariaLabelToggleSideMenu: string;
15188
+ ariaLabelCurrentPage: string;
15189
+ metadata: string;
15190
+ metadataProducts: string;
15191
+ metadataProductblocks: string;
15192
+ metadataResourceTypes: string;
15193
+ metadataWorkflows: string;
15194
+ metadataTasks: string;
15195
+ mobileTitle: string;
15196
+ settings: string;
15197
+ subscriptions: string;
15198
+ tasks: string;
15199
+ title: string;
15200
+ welcome: string;
15201
+ workflows: string;
15202
+ darkMode: string;
15203
+ lightMode: string;
15204
+ websocketConnected: string;
15205
+ websocketDisconnected: string;
15206
+ websocketDisconnectedShort: string;
15207
+ resetToDefault: string;
15208
+ savePreferences: string;
15209
+ numberOfRows: string;
15210
+ tableSettings: string;
15211
+ openMenu: string;
15212
+ };
15213
+ common: {
15214
+ product: string;
15215
+ deselect: string;
15216
+ close: string;
15217
+ editColumns: string;
15218
+ loading: string;
15219
+ newSubscription: string;
15220
+ newTask: string;
15221
+ noFailedTasks: string;
15222
+ noItemsFound: string;
15223
+ search: string;
15224
+ errorMessage: string;
15225
+ unknownError: string;
15226
+ export: string;
15227
+ unauthorizedPage: string;
15228
+ insyncTrue: string;
15229
+ insyncFalse: string;
15230
+ searchModalTitle: string;
15231
+ searchModalText: string;
15232
+ };
15233
+ confirmationDialog: {
15234
+ title: string;
15235
+ confirm: string;
15236
+ cancel: string;
15237
+ leavePage: string;
15238
+ leavePageSub: string;
15239
+ stay: string;
15240
+ leave: string;
15241
+ };
15242
+ workflow: {
15243
+ start_workflow_title: string;
15244
+ };
15245
+ errors: {
15246
+ notAllResultsExported: string;
15247
+ notAllResultsExportedTitle: string;
15248
+ invalidQueryParts: string;
15249
+ notAllowedWhenEngineIsNotRunningMessage: string;
15250
+ notAllowedWhenEngineIsNotRunningTitle: string;
15251
+ retrieve_stored_settings: string;
15252
+ retrieve_stored_settings_title: string;
15253
+ };
15254
+ metadata: {
15255
+ title: string;
15256
+ tabs: {
15257
+ products: string;
15258
+ productBlocks: string;
15259
+ resourceTypes: string;
15260
+ workflows: string;
15261
+ tasks: string;
15262
+ };
15263
+ products: {
15264
+ id: string;
15265
+ name: string;
15266
+ description: string;
15267
+ tag: string;
15268
+ productType: string;
15269
+ status: string;
15270
+ productBlocks: string;
15271
+ fixedInputs: string;
15272
+ createdAt: string;
15273
+ };
15274
+ productBlocks: {
15275
+ id: string;
15276
+ name: string;
15277
+ description: string;
15278
+ tag: string;
15279
+ status: string;
15280
+ resourceTypes: string;
15281
+ dependingProductBlocks: string;
15282
+ createdAt: string;
15283
+ endDate: string;
15284
+ parentIds: string;
15285
+ };
15286
+ resourceTypes: {
15287
+ type: string;
15288
+ description: string;
15289
+ resourceId: string;
15290
+ usedInProductBlocks: string;
15291
+ };
15292
+ workflows: {
15293
+ name: string;
15294
+ description: string;
15295
+ target: string;
15296
+ productTags: string;
15297
+ createdAt: string;
15298
+ };
15299
+ tasks: {
15300
+ name: string;
15301
+ description: string;
15302
+ target: string;
15303
+ productTags: string;
15304
+ createdAt: string;
15305
+ };
15306
+ };
15307
+ processes: {
15308
+ index: {
15309
+ workflowName: string;
15310
+ step: string;
15311
+ status: string;
15312
+ product: string;
15313
+ customer: string;
15314
+ customerAbbreviation: string;
15315
+ subscriptions: string;
15316
+ createdBy: string;
15317
+ assignee: string;
15318
+ processId: string;
15319
+ started: string;
15320
+ lastModified: string;
15321
+ workflowTarget: string;
15322
+ productTag: string;
15323
+ };
15324
+ detail: {
15325
+ retry: string;
15326
+ resume: string;
15327
+ abort: string;
15328
+ delete: string;
15329
+ deleteQuestion: string;
15330
+ abortTaskQuestion: string;
15331
+ abortWorkflowQuestion: string;
15332
+ retryTaskQuestion: string;
15333
+ retryWorkflowQuestion: string;
15334
+ status: string;
15335
+ startedBy: string;
15336
+ lastStep: string;
15337
+ startedOn: string;
15338
+ lastUpdate: string;
15339
+ relatedSubscriptions: string;
15340
+ subscriptions: string;
15341
+ customer: string;
15342
+ openWorkflowTaskInfo: string;
15343
+ };
15344
+ steps: {
15345
+ taskSteps: string;
15346
+ workflowSteps: string;
15347
+ showDelta: string;
15348
+ hideDelta: string;
15349
+ showTraceback: string;
15350
+ hideTraceback: string;
15351
+ viewOptions: string;
15352
+ expandAll: string;
15353
+ collapseAll: string;
15354
+ duration: string;
15355
+ userInput: string;
15356
+ submitTaskFormLabel: string;
15357
+ submitWorkflowFormLabel: string;
15358
+ traceback: string;
15359
+ tableView: string;
15360
+ jsonView: string;
15361
+ };
15362
+ delta: {
15363
+ title: string;
15364
+ fullScreenExit: string;
15365
+ fullScreen: string;
15366
+ continuityAboveBelow: string;
15367
+ continuityWithin: string;
15368
+ };
15369
+ };
15370
+ workflows: {
15371
+ tabs: {
15372
+ active: string;
15373
+ completed: string;
15374
+ };
15375
+ index: {
15376
+ title: string;
15377
+ };
15378
+ };
15379
+ subscriptions: {
15380
+ tabs: {
15381
+ active: string;
15382
+ terminated: string;
15383
+ transient: string;
15384
+ all: string;
15385
+ };
15386
+ index: {
15387
+ id: string;
15388
+ description: string;
15389
+ status: string;
15390
+ insync: string;
15391
+ product: string;
15392
+ tag: string;
15393
+ startDate: string;
15394
+ endDate: string;
15395
+ note: string;
15396
+ metadata: string;
15397
+ customerFullname: string;
15398
+ customerShortcode: string;
15399
+ };
15400
+ detail: {
15401
+ title: string;
15402
+ tabs: {
15403
+ general: string;
15404
+ serviceConfiguration: string;
15405
+ workflows: string;
15406
+ relatedSubscriptions: string;
15407
+ };
15408
+ loadingStatus: string;
15409
+ actions: {
15410
+ create: string;
15411
+ modify: string;
15412
+ tasks: string;
15413
+ terminate: string;
15414
+ actions: string;
15415
+ lockedBySubscriptions: string;
15416
+ subscription: {
15417
+ no_modify_deleted_related_objects: string;
15418
+ no_modify_in_use_by_subscription: string;
15419
+ no_modify_invalid_status: string;
15420
+ no_modify_workflow: string;
15421
+ no_termination_workflow: string;
15422
+ no_validate_workflow: string;
15423
+ not_in_sync: string;
15424
+ relations_not_in_sync: string;
15425
+ no_modify_subscription_in_use_by_others: string;
15426
+ };
15427
+ };
15428
+ subscriptionInstanceId: string;
15429
+ ownerSubscriptionId: string;
15430
+ inUseByRelations: string;
15431
+ showDetails: string;
15432
+ hideDetails: string;
15433
+ self: string;
15434
+ subscriptionDetails: string;
15435
+ productName: string;
15436
+ fixedInputs: string;
15437
+ productInfo: string;
15438
+ noProductBlockSelected: string;
15439
+ productBlocks: string;
15440
+ ctaSelectProductBlock: string;
15441
+ startedBy: string;
15442
+ startedAt: string;
15443
+ status: string;
15444
+ id: string;
15445
+ blockTitleSubscriptionDetails: string;
15446
+ blockTitleFixedInputs: string;
15447
+ blockTitleProductInfo: string;
15448
+ subscriptionId: string;
15449
+ description: string;
15450
+ startDate: string;
15451
+ insync: string;
15452
+ customer: string;
15453
+ customerUuid: string;
15454
+ customerDescriptions: string;
15455
+ metadata: string;
15456
+ name: string;
15457
+ productType: string;
15458
+ tag: string;
15459
+ created: string;
15460
+ endDate: string;
15461
+ note: string;
15462
+ noRelatedSubscriptions: string;
15463
+ hideTerminatedRelatedSubscriptions: string;
15464
+ processDetail: {
15465
+ id: string;
15466
+ status: string;
15467
+ startedAt: string;
15468
+ startedBy: string;
15469
+ };
15470
+ showAll: string;
15471
+ hideAll: string;
15472
+ see: string;
15473
+ setInSync: string;
15474
+ setInSyncQuestion: string;
15475
+ setInSyncFailed: {
15476
+ title: string;
15477
+ text: string;
15478
+ };
15479
+ setInSyncSuccess: {
15480
+ title: string;
15481
+ text: string;
15482
+ };
15483
+ workflowsTab: {
15484
+ startWithOldestLabel: string;
15485
+ startWithNewestLabel: string;
15486
+ };
15487
+ };
15488
+ };
15489
+ tasks: {
15490
+ page: {
15491
+ taskName: string;
15492
+ rerunAll: string;
15493
+ rerunAllQuestion: string;
15494
+ };
15495
+ tabs: {
15496
+ active: string;
15497
+ completed: string;
15498
+ };
15499
+ };
15500
+ settings: {
15501
+ page: {
15502
+ engineStatusTitle: string;
15503
+ workerStatusTitle: string;
15504
+ flushButton: string;
15505
+ flushCacheSettingsTitle: string;
15506
+ modifyEngine: string;
15507
+ pauseEngine: string;
15508
+ runningProcesses: string;
15509
+ selectSettings: string;
15510
+ startEngine: string;
15511
+ resetTextSearchIndex: string;
15512
+ resetTextSearchIndexButton: string;
15513
+ status: string;
15514
+ numberOfQueuedJobs: string;
15515
+ numberOfRunningJobs: string;
15516
+ numberOfWorkersOnline: string;
15517
+ };
15518
+ };
15519
+ startPage: {
15520
+ myWorkflows: {
15521
+ buttonText: string;
15522
+ headerTitle: string;
15523
+ listTitle: string;
15524
+ };
15525
+ activeSubscriptions: {
15526
+ buttonText: string;
15527
+ headerTitle: string;
15528
+ listTitle: string;
15529
+ };
15530
+ outOfSyncSubscriptions: {
15531
+ buttonText: string;
15532
+ headerTitle: string;
15533
+ listTitle: string;
15534
+ };
15535
+ activeWorkflows: {
15536
+ buttonText: string;
15537
+ headerTitle: string;
15538
+ listTitle: string;
15539
+ };
15540
+ failedTasks: {
15541
+ buttonText: string;
15542
+ headerTitle: string;
15543
+ listTitle: string;
15544
+ };
15545
+ products: {
15546
+ headerTitle: string;
15547
+ listTitle: string;
15548
+ };
15549
+ };
15550
+ hamburgerMenu: {
15551
+ support: string;
15552
+ softwareVersions: string;
15553
+ logout: string;
15554
+ };
14969
15555
  };
14970
15556
 
14971
15557
  declare const WfoProductBlocksPage: () => _emotion_react_jsx_runtime.JSX.Element;
@@ -14975,12 +15561,12 @@ declare const WfoResourceTypesPage: () => _emotion_react_jsx_runtime.JSX.Element
14975
15561
 
14976
15562
  declare const WfoProductsPage: () => _emotion_react_jsx_runtime.JSX.Element;
14977
15563
 
14978
- type WorkflowListItem = Pick<WorkflowDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
15564
+ type WorkflowListItem = Pick<WorkflowDefinition, 'workflowId' | 'name' | 'description' | 'target' | 'createdAt'> & {
14979
15565
  productTags: string[];
14980
15566
  };
14981
15567
  declare const WfoWorkflowsPage: () => _emotion_react_jsx_runtime.JSX.Element;
14982
15568
 
14983
- type TaskListItem = Pick<TaskDefinition, 'name' | 'description' | 'target' | 'createdAt'> & {
15569
+ type TaskListItem = Pick<TaskDefinition, 'workflowId' | 'name' | 'description' | 'target' | 'createdAt'> & {
14984
15570
  productTags: string[];
14985
15571
  };
14986
15572
  declare const WfoTasksPage: () => _emotion_react_jsx_runtime.JSX.Element;
@@ -15142,4 +15728,4 @@ declare const isUuid4: (value: string) => boolean;
15142
15728
 
15143
15729
  declare const getCacheTag: (type: CacheTagType, id?: string) => CacheTag[];
15144
15730
 
15145
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type ApiResult, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StringifyObject, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UseQuery, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInlineNoteEdit, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPort, WfoProcessDetailPage, 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, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getUsedPrefixMin, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isNullOrEmpty, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, sideNavMenuDivider, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntry, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
15731
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type ApiResult, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, 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, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StringifyObject, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UseQuery, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPort, WfoProcessDetailPage, 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, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getUsedPrefixMin, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isNullOrEmpty, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, sideNavMenuDivider, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntry, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };