@orchestrator-ui/orchestrator-ui-components 5.2.1 → 5.2.4

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.
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@5.2.1 build
2
+ > @orchestrator-ui/orchestrator-ui-components@5.2.4 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@5.2.1 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@5.2.4 generate-version
7
7
  > node -p "'export const ORCHESTRATOR_UI_LIBRARY_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'" > src/configuration/version.ts && prettier --write src/configuration/version.ts
8
8
 
9
- src/configuration/version.ts 42ms
9
+ src/configuration/version.ts 37ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.build.json
12
12
  CLI tsup v8.4.0
@@ -16,6 +16,6 @@ src/configuration/version.ts 42ms
16
16
  DTS Build start
17
17
  ESM dist/index.js 1.99 MB
18
18
  ESM dist/index.js.map 3.70 MB
19
- ESM ⚡️ Build success in 593ms
20
- DTS ⚡️ Build success in 21433ms
21
- DTS dist/index.d.ts 813.29 KB
19
+ ESM ⚡️ Build success in 533ms
20
+ DTS ⚡️ Build success in 19594ms
21
+ DTS dist/index.d.ts 813.43 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@5.2.1 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@5.2.4 lint
3
3
  > eslint
4
4
 
@@ -1,11 +1,11 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@5.2.1 test
2
+ > @orchestrator-ui/orchestrator-ui-components@5.2.4 test
3
3
  > jest
4
4
 
5
5
  PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
6
6
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
7
- PASS Wfo-UI Tests src/utils/date.spec.ts
8
7
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
8
+ PASS Wfo-UI Tests src/utils/date.spec.ts
9
9
  PASS Wfo-UI Tests src/utils/string.spec.ts
10
10
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
11
11
  PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
@@ -35,11 +35,11 @@ PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
35
35
  PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
36
36
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
37
37
  PASS Wfo-UI Tests src/utils/getQueryUrl.spec.ts
38
- PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.54 s)
39
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.023 s)
38
+ PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.516 s)
39
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.119 s)
40
40
 
41
41
  Test Suites: 35 passed, 35 total
42
42
  Tests: 226 passed, 226 total
43
43
  Snapshots: 0 total
44
- Time: 8.195 s
44
+ Time: 8.217 s
45
45
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 5.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 4ef58e0: 1994 Adds classnames to the key and value cells to support style adjustments by the consumer
8
+
9
+ ## 5.2.3
10
+
11
+ ### Patch Changes
12
+
13
+ - c3e62c9: 2001 fix filter of summarycard
14
+
15
+ ## 5.2.2
16
+
17
+ ### Patch Changes
18
+
19
+ - 5fcb0c8: Fix regression in subscription delta
20
+
3
21
  ## 5.2.1
4
22
 
5
23
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -11631,7 +11631,7 @@ type SubscriptionListItem = Pick<Subscription, 'subscriptionId' | 'description'
11631
11631
  metadata: object | null;
11632
11632
  };
11633
11633
  declare const mapGraphQlSubscriptionsResultToPageInfo: (graphqlResponse: SubscriptionListResponse) => GraphQLPageInfo;
11634
- declare const mapGraphQlSubscriptionsResultToSubscriptionListItems: (graphqlResponse: SubscriptionListResponse) => SubscriptionListItem[];
11634
+ declare const mapGraphQlSubscriptionsResultToSubscriptionListItems: (graphqlResponse: SubscriptionListResponse | undefined) => SubscriptionListItem[];
11635
11635
 
11636
11636
  declare enum WfoSubscriptionListTab {
11637
11637
  ACTIVE = "ACTIVE",
@@ -17010,9 +17010,12 @@ interface WfoSubscriptionProductBlockProps {
17010
17010
  declare const HIDDEN_KEYS: string[];
17011
17011
  declare const WfoSubscriptionProductBlock: ({ productBlock, subscriptionId, subscriptionPath, }: WfoSubscriptionProductBlockProps) => _emotion_react_jsx_runtime.JSX.Element;
17012
17012
 
17013
+ declare const KEY_CELL_CLASS_NAME = "key-cell";
17014
+ declare const VALUE_CELL_CLASS_NAME = "value-cell";
17013
17015
  type WfoProductBlockKeyValueRowProps = {
17014
17016
  fieldValue: FieldValue | RenderableFieldValue;
17015
17017
  allFieldValues: FieldValue[] | RenderableFieldValue[];
17018
+ className?: string;
17016
17019
  };
17017
17020
  declare const WfoProductBlockKeyValueRow: FC<WfoProductBlockKeyValueRowProps>;
17018
17021
 
@@ -17796,10 +17799,10 @@ type WfoRadioDropdownOption<T> = {
17796
17799
  declare const WfoRadioDropdown: <T>({ options, onUpdateOption, selectedOption, }: WfoRadioDropdownProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
17797
17800
 
17798
17801
  interface WfoSubscriptionNoteEditProps {
17799
- subscriptionId: Subscription['subscriptionId'];
17800
17802
  onlyShowOnHover?: boolean;
17801
17803
  queryVariables: Record<string, unknown>;
17802
- useQuery: UseQuery<SubscriptionListResponse, Subscription>;
17804
+ endpointName: string | undefined;
17805
+ subscription: SubscriptionListItem;
17803
17806
  }
17804
17807
  declare const WfoSubscriptionNoteEdit: FC<WfoSubscriptionNoteEditProps>;
17805
17808
 
@@ -17874,7 +17877,7 @@ declare const METADATA_PRODUCT_BLOCK_ENDPOINT = "product_blocks";
17874
17877
  declare const METADATA_RESOURCE_TYPE_ENDPOINT = "resource_types";
17875
17878
  declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
17876
17879
 
17877
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "5.2.1";
17880
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "5.2.4";
17878
17881
 
17879
17882
  declare const useGetTranslationMessages: (locale: string | undefined) => {
17880
17883
  pydanticForms: {
@@ -18515,4 +18518,4 @@ declare enum WfoQueryParams {
18515
18518
  }
18516
18519
  declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
18517
18520
 
18518
- 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, type FieldValue, FileUploadField, type FileUploadProps, 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, type LocalColumnWidths, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, 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_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MetaDataTab, type MetadataDescriptionParams, 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 ProductBlockInstanceForDropdown, 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, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, 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 SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryDisplay, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, type SurfSubscriptionDropdownOptionsFilterParams, 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, WfoCubeFill, 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, WfoExclamationTriangle, 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, WfoProcessDetail, 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, WfoPydanticForm, WfoQueryParams, 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, createSideNavDivider, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getCommonFormFieldStyles, 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, getUrlWithQueryParams, getUsedPrefixMin, getWebSocket, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isNullOrEmpty, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, 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, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toSortedTableColumnConfig, toUrlParams, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContactPersonsQuery, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useFreePortsByNodeSubscriptionIdAndSpeedQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetNodeSubscriptionOptionsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSurfSubscriptionDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useImsNodesQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetSurfSubscriptionDropdownOptionsQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useLocationCodesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useVlansByServicePortQuery, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
18521
+ 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, type FieldValue, FileUploadField, type FileUploadProps, 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, KEY_CELL_CLASS_NAME, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, type LocalColumnWidths, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, 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_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MetaDataTab, type MetadataDescriptionParams, 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 ProductBlockInstanceForDropdown, 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, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, 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 SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryDisplay, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, type SurfSubscriptionDropdownOptionsFilterParams, 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, VALUE_CELL_CLASS_NAME, 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, WfoCubeFill, 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, WfoExclamationTriangle, 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, WfoProcessDetail, 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, WfoPydanticForm, WfoQueryParams, 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, createSideNavDivider, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getCommonFormFieldStyles, 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, getUrlWithQueryParams, getUsedPrefixMin, getWebSocket, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isNullOrEmpty, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, 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, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toSortedTableColumnConfig, toUrlParams, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useContactPersonsQuery, useContentRef, useDataDisplayParams, useDeleteProcessMutation, useFreePortsByNodeSubscriptionIdAndSpeedQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetNodeSubscriptionOptionsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSurfSubscriptionDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useImsNodesQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetSurfSubscriptionDropdownOptionsQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useLocationCodesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useVlansByServicePortQuery, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
package/dist/index.js CHANGED
@@ -26799,7 +26799,7 @@ var PolicyResource = /* @__PURE__ */ ((PolicyResource2) => {
26799
26799
  })(PolicyResource || {});
26800
26800
 
26801
26801
  // src/configuration/version.ts
26802
- var ORCHESTRATOR_UI_LIBRARY_VERSION = "5.2.1";
26802
+ var ORCHESTRATOR_UI_LIBRARY_VERSION = "5.2.4";
26803
26803
 
26804
26804
  // src/types/types.ts
26805
26805
  var EngineStatus = /* @__PURE__ */ ((EngineStatus3) => {
@@ -42788,7 +42788,9 @@ var WfoSubscriptionProductBlock = ({
42788
42788
  // src/components/WfoSubscription/WfoSubscriptionProductBlock/WfoProductBlockKeyValueRow.tsx
42789
42789
  import { EuiBadge as EuiBadge3 } from "@elastic/eui";
42790
42790
  import { Fragment as Fragment27, jsx as jsx124, jsxs as jsxs70 } from "@emotion/react/jsx-runtime";
42791
- var WfoProductBlockKeyValueRow = ({ fieldValue, allFieldValues }) => {
42791
+ var KEY_CELL_CLASS_NAME = "key-cell";
42792
+ var VALUE_CELL_CLASS_NAME = "value-cell";
42793
+ var WfoProductBlockKeyValueRow = ({ fieldValue, allFieldValues, className }) => {
42792
42794
  const { leftColumnStyle, rowStyle } = useWithOrchestratorTheme(getStyles6);
42793
42795
  const { getOverriddenValue } = useSubscriptionDetailValueOverride();
42794
42796
  const { field, value } = fieldValue;
@@ -42802,9 +42804,9 @@ var WfoProductBlockKeyValueRow = ({ fieldValue, allFieldValues }) => {
42802
42804
  return /* @__PURE__ */ jsx124(Fragment27, { children: value2 });
42803
42805
  }
42804
42806
  };
42805
- return /* @__PURE__ */ jsxs70("tr", { css: rowStyle, children: [
42806
- /* @__PURE__ */ jsx124("td", { css: leftColumnStyle, children: /* @__PURE__ */ jsx124("b", { children: camelToHuman(field) }) }),
42807
- /* @__PURE__ */ jsx124("td", { children: getOverriddenValue(fieldValue, allFieldValues) ?? /* @__PURE__ */ jsx124(WfoProductBlockValue, { value }) })
42807
+ return /* @__PURE__ */ jsxs70("tr", { className, css: rowStyle, children: [
42808
+ /* @__PURE__ */ jsx124("td", { className: KEY_CELL_CLASS_NAME, css: leftColumnStyle, children: /* @__PURE__ */ jsx124("b", { children: camelToHuman(field) }) }),
42809
+ /* @__PURE__ */ jsx124("td", { className: VALUE_CELL_CLASS_NAME, children: getOverriddenValue(fieldValue, allFieldValues) ?? /* @__PURE__ */ jsx124(WfoProductBlockValue, { value }) })
42808
42810
  ] });
42809
42811
  };
42810
42812
 
@@ -51409,7 +51411,7 @@ var WfoProcessSubscriptionDelta = ({
51409
51411
  const subscriptionId = data?.current_state?.subscription?.subscription_id ?? "";
51410
51412
  const newText = data?.current_state?.subscription ?? null;
51411
51413
  const oldSubscriptions = data?.current_state?.__old_subscriptions__ || {};
51412
- const oldSubscription = subscriptionId in oldSubscriptions;
51414
+ const oldSubscription = subscriptionId in oldSubscriptions ? oldSubscriptions[subscriptionId] : null;
51413
51415
  const oldText = oldSubscription || null;
51414
51416
  return isFetching ? /* @__PURE__ */ jsx218(WfoLoading, {}) : /* @__PURE__ */ jsx218(
51415
51417
  WfoDiff_default,
@@ -53085,36 +53087,39 @@ var WfoStartTaskButtonComboBox = () => {
53085
53087
 
53086
53088
  // src/components/WfoSubscriptionsList/subscriptionResultMappers.ts
53087
53089
  var mapGraphQlSubscriptionsResultToPageInfo = (graphqlResponse) => graphqlResponse.pageInfo;
53088
- var mapGraphQlSubscriptionsResultToSubscriptionListItems = (graphqlResponse) => graphqlResponse.subscriptions.map((subscription) => {
53089
- const {
53090
- description,
53091
- insync,
53092
- product,
53093
- startDate,
53094
- endDate,
53095
- status,
53096
- subscriptionId,
53097
- note,
53098
- customer,
53099
- metadata
53100
- } = subscription;
53101
- const { name: productName, tag } = product;
53102
- const { fullname: customerFullname, shortcode: customerShortcode } = customer;
53103
- return {
53104
- subscriptionId,
53105
- description,
53106
- status,
53107
- insync,
53108
- startDate: parseDate(startDate),
53109
- endDate: parseDate(endDate),
53110
- note,
53111
- productName,
53112
- tag,
53113
- customerFullname,
53114
- customerShortcode,
53115
- metadata: Object.keys(metadata).length > 0 ? metadata : null
53116
- };
53117
- });
53090
+ var mapGraphQlSubscriptionsResultToSubscriptionListItems = (graphqlResponse) => {
53091
+ if (!graphqlResponse) return [];
53092
+ return graphqlResponse.subscriptions.map((subscription) => {
53093
+ const {
53094
+ description,
53095
+ insync,
53096
+ product,
53097
+ startDate,
53098
+ endDate,
53099
+ status,
53100
+ subscriptionId,
53101
+ note,
53102
+ customer,
53103
+ metadata
53104
+ } = subscription;
53105
+ const { name: productName, tag } = product;
53106
+ const { fullname: customerFullname, shortcode: customerShortcode } = customer;
53107
+ return {
53108
+ subscriptionId,
53109
+ description,
53110
+ status,
53111
+ insync,
53112
+ startDate: parseDate(startDate),
53113
+ endDate: parseDate(endDate),
53114
+ note,
53115
+ productName,
53116
+ tag,
53117
+ customerFullname,
53118
+ customerShortcode,
53119
+ metadata: Object.keys(metadata).length > 0 ? metadata : null
53120
+ };
53121
+ });
53122
+ };
53118
53123
 
53119
53124
  // src/components/WfoSubscriptionsList/subscriptionListTabs.ts
53120
53125
  var WfoSubscriptionListTab = /* @__PURE__ */ ((WfoSubscriptionListTab2) => {
@@ -53228,24 +53233,16 @@ var {
53228
53233
  // src/components/WfoInlineNoteEdit/WfoSubscriptionNoteEdit.tsx
53229
53234
  import { jsx as jsx241 } from "@emotion/react/jsx-runtime";
53230
53235
  var WfoSubscriptionNoteEdit = ({
53231
- subscriptionId,
53232
53236
  onlyShowOnHover = false,
53233
53237
  queryVariables,
53234
- useQuery
53238
+ endpointName,
53239
+ subscription
53235
53240
  }) => {
53236
- const { selectedItem } = useQuery(queryVariables, {
53237
- selectFromResult: (result) => ({
53238
- selectedItem: result?.data?.subscriptions?.find(
53239
- (sub) => sub.subscriptionId === subscriptionId
53240
- )
53241
- })
53242
- });
53243
- const endpointName = useQuery().endpointName;
53244
53241
  const [startProcess] = useStartProcessMutation();
53245
53242
  const [updateSub] = useUpdateSubscriptionNoteOptimisticMutation();
53246
53243
  const triggerNoteModifyWorkflow = (note) => {
53247
53244
  const noteModifyPayload = [
53248
- { subscription_id: subscriptionId },
53245
+ { subscription_id: subscription.subscriptionId },
53249
53246
  { note: note === INVISIBLE_CHARACTER ? "" : note }
53250
53247
  ];
53251
53248
  startProcess({
@@ -53254,7 +53251,7 @@ var WfoSubscriptionNoteEdit = ({
53254
53251
  });
53255
53252
  updateSub({
53256
53253
  queryName: endpointName ?? "",
53257
- subscriptionId,
53254
+ subscriptionId: subscription.subscriptionId,
53258
53255
  graphQlQueryVariables: queryVariables,
53259
53256
  note
53260
53257
  });
@@ -53262,7 +53259,7 @@ var WfoSubscriptionNoteEdit = ({
53262
53259
  return /* @__PURE__ */ jsx241(
53263
53260
  WfoInlineEdit,
53264
53261
  {
53265
- value: selectedItem?.note?.trim() ? selectedItem.note : INVISIBLE_CHARACTER,
53262
+ value: subscription?.note?.trim() ? subscription.note : INVISIBLE_CHARACTER,
53266
53263
  onlyShowOnHover,
53267
53264
  onSave: triggerNoteModifyWorkflow
53268
53265
  }
@@ -53281,6 +53278,16 @@ var WfoSubscriptionsList = ({
53281
53278
  const t = useTranslations82("subscriptions.index");
53282
53279
  const tError = useTranslations82("errors");
53283
53280
  const { showToastMessage } = useShowToastMessage();
53281
+ const { sortBy: sortBy2, queryString, pageIndex, pageSize } = dataDisplayParams;
53282
+ const graphqlQueryVariables = {
53283
+ first: pageSize,
53284
+ after: pageIndex * pageSize,
53285
+ sortBy: sortBy2,
53286
+ filterBy: alwaysOnFilters,
53287
+ query: queryString || void 0
53288
+ };
53289
+ const { data, isFetching, error, endpointName } = useGetSubscriptionListQuery(graphqlQueryVariables);
53290
+ const subscriptionList = mapGraphQlSubscriptionsResultToSubscriptionListItems(data);
53284
53291
  const tableColumnConfig = {
53285
53292
  subscriptionId: {
53286
53293
  columnType: "data" /* DATA */,
@@ -53352,10 +53359,10 @@ var WfoSubscriptionsList = ({
53352
53359
  return /* @__PURE__ */ jsx242(
53353
53360
  WfoSubscriptionNoteEdit,
53354
53361
  {
53355
- queryVariables: graphqlQueryVariables,
53356
- subscriptionId: row.subscriptionId,
53357
53362
  onlyShowOnHover: true,
53358
- useQuery: useGetSubscriptionListQuery
53363
+ endpointName,
53364
+ queryVariables: graphqlQueryVariables,
53365
+ subscription: row
53359
53366
  }
53360
53367
  );
53361
53368
  }
@@ -53369,17 +53376,6 @@ var WfoSubscriptionsList = ({
53369
53376
  renderTooltip: (value) => value && /* @__PURE__ */ jsx242(WfoJsonCodeBlock, { data: value, isBasicStyle: false })
53370
53377
  }
53371
53378
  };
53372
- const { sortBy: sortBy2, queryString, pageIndex, pageSize } = dataDisplayParams;
53373
- const graphqlQueryVariables = {
53374
- first: pageSize,
53375
- after: pageIndex * pageSize,
53376
- sortBy: sortBy2,
53377
- filterBy: alwaysOnFilters,
53378
- query: queryString || void 0
53379
- };
53380
- const { data, isFetching, error } = useGetSubscriptionListQuery(
53381
- graphqlQueryVariables
53382
- );
53383
53379
  const [getSubscriptionListTrigger, { isFetching: isFetchingCsv }] = useLazyGetSubscriptionListQuery();
53384
53380
  const getSubscriptionListForExport = () => getSubscriptionListTrigger(
53385
53381
  getQueryVariablesForExport(graphqlQueryVariables)
@@ -53397,29 +53393,39 @@ var WfoSubscriptionsList = ({
53397
53393
  sortOrder: dataDisplayParams.sortBy?.order ?? "ASC" /* ASC */
53398
53394
  };
53399
53395
  const { totalItems, sortFields, filterFields } = data?.pageInfo ?? {};
53396
+ const pageChange = getPageIndexChangeHandler(setDataDisplayParam);
53397
+ const pageSizeChange = getPageSizeChangeHandler(setDataDisplayParam);
53398
+ const updateQuery = getQueryStringHandler(setDataDisplayParam);
53399
+ const updateSorting = getDataSortHandler(setDataDisplayParam);
53400
53400
  const pagination = {
53401
53401
  pageIndex: dataDisplayParams.pageIndex,
53402
53402
  pageSize: dataDisplayParams.pageSize,
53403
53403
  pageSizeOptions: DEFAULT_PAGE_SIZES,
53404
53404
  totalItemCount: totalItems ?? 0,
53405
- onChangePage: getPageIndexChangeHandler(
53406
- setDataDisplayParam
53407
- ),
53408
- onChangeItemsPerPage: getPageSizeChangeHandler(setDataDisplayParam)
53409
- };
53405
+ onChangePage: pageChange,
53406
+ onChangeItemsPerPage: pageSizeChange
53407
+ };
53408
+ const exportData = csvDownloadHandler(
53409
+ getSubscriptionListForExport,
53410
+ mapGraphQlSubscriptionsResultToSubscriptionListItems,
53411
+ mapGraphQlSubscriptionsResultToPageInfo,
53412
+ Object.keys(tableColumnConfig),
53413
+ getCsvFileNameWithDate("Subscriptions"),
53414
+ showToastMessage,
53415
+ tError
53416
+ );
53417
+ const tableConfig = mapSortableAndFilterableValuesToTableColumnConfig(
53418
+ tableColumnConfig,
53419
+ sortFields,
53420
+ filterFields
53421
+ );
53410
53422
  return /* @__PURE__ */ jsx242(
53411
53423
  WfoAdvancedTable,
53412
53424
  {
53413
53425
  queryString: dataDisplayParams.queryString,
53414
- onUpdateQueryString: getQueryStringHandler(
53415
- setDataDisplayParam
53416
- ),
53417
- data: data ? mapGraphQlSubscriptionsResultToSubscriptionListItems(data) : [],
53418
- tableColumnConfig: mapSortableAndFilterableValuesToTableColumnConfig(
53419
- tableColumnConfig,
53420
- sortFields,
53421
- filterFields
53422
- ),
53426
+ onUpdateQueryString: updateQuery,
53427
+ data: subscriptionList,
53428
+ tableColumnConfig: tableConfig,
53423
53429
  defaultHiddenColumns: hiddenColumns,
53424
53430
  dataSorting: [dataSorting],
53425
53431
  isLoading: isFetching,
@@ -53427,18 +53433,8 @@ var WfoSubscriptionsList = ({
53427
53433
  detailModalTitle: "Details - Subscription",
53428
53434
  pagination,
53429
53435
  error: mapRtkErrorToWfoError(error),
53430
- onUpdateDataSorting: getDataSortHandler(
53431
- setDataDisplayParam
53432
- ),
53433
- onExportData: csvDownloadHandler(
53434
- getSubscriptionListForExport,
53435
- mapGraphQlSubscriptionsResultToSubscriptionListItems,
53436
- mapGraphQlSubscriptionsResultToPageInfo,
53437
- Object.keys(tableColumnConfig),
53438
- getCsvFileNameWithDate("Subscriptions"),
53439
- showToastMessage,
53440
- tError
53441
- ),
53436
+ onUpdateDataSorting: updateSorting,
53437
+ onExportData: exportData,
53442
53438
  exportDataIsLoading: isFetchingCsv
53443
53439
  }
53444
53440
  );
@@ -54054,7 +54050,7 @@ var WfoMyWorkflowsSummaryCard = ({
54054
54050
  const queryParams = {
54055
54051
  ["activeTab" /* ACTIVE_TAB */]: "COMPLETED" /* COMPLETED */,
54056
54052
  ["sortBy" /* SORT_BY */]: "field-lastModifiedAt_order-DESC",
54057
- ["queryString" /* QUERY_STRING */]: `createdBy:${username}`
54053
+ ["queryString" /* QUERY_STRING */]: `createdBy:"${username}"`
54058
54054
  };
54059
54055
  return /* @__PURE__ */ jsx253(
54060
54056
  WfoSummaryCard,
@@ -55281,6 +55277,7 @@ export {
55281
55277
  ImsNodeIdField,
55282
55278
  ImsPortIdField,
55283
55279
  IpNetworkField,
55280
+ KEY_CELL_CLASS_NAME,
55284
55281
  LabelField,
55285
55282
  ListAddField,
55286
55283
  ListDelField,
@@ -55370,6 +55367,7 @@ export {
55370
55367
  TreeProvider,
55371
55368
  UnconnectedSelectField,
55372
55369
  UserInputFormWizard,
55370
+ VALUE_CELL_CLASS_NAME,
55373
55371
  VlanField,
55374
55372
  WFO_STATUS_COLOR_FIELD,
55375
55373
  WfoActiveWorkflowsSummaryCard,