@orchestrator-ui/orchestrator-ui-components 8.0.0 → 8.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) 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 +17 -0
  5. package/dist/index.d.ts +384 -9
  6. package/dist/index.js +2594 -2452
  7. package/dist/index.js.map +1 -1
  8. package/package.json +6 -6
  9. package/src/components/WfoBadges/WfoProductStatusBadge/WfoProductStatusBadge.tsx +7 -4
  10. package/src/components/WfoBadges/WfoVersionIncompatibleBadge/WfoVersionIncompatibleBadge.tsx +4 -3
  11. package/src/components/WfoInlineNoteEdit/WfoProcessListNoteEdit.tsx +31 -0
  12. package/src/components/WfoInlineNoteEdit/index.ts +1 -0
  13. package/src/components/WfoInlineNoteEdit/styles.ts +11 -0
  14. package/src/components/WfoMetadata/WfoMetadataStatusField.tsx +48 -0
  15. package/src/components/WfoMetadata/index.ts +2 -0
  16. package/src/components/WfoProcessList/WfoProcessesList.tsx +8 -0
  17. package/src/components/WfoProcessList/processListObjectMappers.ts +4 -0
  18. package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +7 -0
  19. package/src/components/WfoSubscription/utils/utils.spec.ts +1 -0
  20. package/src/configuration/version.ts +1 -1
  21. package/src/hooks/useAgentPlanEvents.ts +0 -1
  22. package/src/messages/en-GB.json +4 -2
  23. package/src/messages/nl-NL.json +4 -2
  24. package/src/pages/metadata/WfoProductsPage.tsx +23 -7
  25. package/src/pages/processes/WfoProcessDetail.tsx +8 -1
  26. package/src/rtk/api.ts +1 -0
  27. package/src/rtk/endpoints/metadata/products.ts +23 -2
  28. package/src/rtk/endpoints/processDetail.ts +25 -1
  29. package/src/rtk/endpoints/processList.ts +1 -0
  30. package/src/rtk/endpoints/subscriptionDetail.ts +1 -0
  31. package/src/types/types.ts +13 -5
  32. package/src/utils/getProductNamesFromProcess.spec.ts +1 -0
package/dist/index.d.ts CHANGED
@@ -7212,7 +7212,7 @@ declare const useCreateScheduledTaskMutation: <R extends Record<string, any> = (
7212
7212
  reset: () => void;
7213
7213
  }];
7214
7214
 
7215
- declare const processDetailQuery = "query ProcessDetail($processId: String!) {\n processes(filterBy: { value: $processId, field: \"processId\" }) {\n page {\n processId\n lastStatus\n createdBy\n startedAt\n lastModifiedAt\n lastStep\n workflowName\n isTask\n form\n traceback\n userPermissions {\n retryAllowed\n resumeAllowed\n }\n steps {\n name\n status\n stepId\n stateDelta\n started\n completed\n }\n customer {\n fullname\n }\n subscriptions {\n page {\n product {\n name\n }\n description\n subscriptionId\n }\n }\n }\n }\n }";
7215
+ declare const processDetailQuery = "query ProcessDetail($processId: String!) {\n processes(filterBy: { value: $processId, field: \"processId\" }) {\n page {\n processId\n lastStatus\n createdBy\n startedAt\n lastModifiedAt\n lastStep\n workflowName\n isTask\n form\n traceback\n note\n userPermissions {\n retryAllowed\n resumeAllowed\n }\n steps {\n name\n status\n stepId\n stateDelta\n started\n completed\n }\n customer {\n fullname\n }\n subscriptions {\n page {\n product {\n name\n }\n description\n subscriptionId\n }\n }\n }\n }\n }";
7216
7216
  type ProcessDetailResponse = {
7217
7217
  processes: ProcessDetail[];
7218
7218
  };
@@ -8856,8 +8856,185 @@ declare const useAbortProcessMutation: <R extends Record<string, any> = ({
8856
8856
  } | undefined;
8857
8857
  reset: () => void;
8858
8858
  }];
8859
+ declare const usePatchProcessMutation: <R extends Record<string, any> = ({
8860
+ requestId?: undefined;
8861
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
8862
+ data?: undefined;
8863
+ error?: undefined;
8864
+ endpointName?: string;
8865
+ startedTimeStamp?: undefined;
8866
+ fulfilledTimeStamp?: undefined;
8867
+ } & {
8868
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
8869
+ isUninitialized: true;
8870
+ isLoading: false;
8871
+ isSuccess: false;
8872
+ isError: false;
8873
+ }) | ({
8874
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
8875
+ } & Omit<{
8876
+ requestId: string;
8877
+ data?: void | undefined;
8878
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8879
+ endpointName: string;
8880
+ startedTimeStamp: number;
8881
+ fulfilledTimeStamp?: number;
8882
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
8883
+ requestId: string;
8884
+ data?: void | undefined;
8885
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8886
+ endpointName: string;
8887
+ startedTimeStamp: number;
8888
+ fulfilledTimeStamp?: number;
8889
+ }, "data" | "fulfilledTimeStamp">> & {
8890
+ error: undefined;
8891
+ } & {
8892
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
8893
+ isUninitialized: false;
8894
+ isLoading: false;
8895
+ isSuccess: true;
8896
+ isError: false;
8897
+ }) | ({
8898
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
8899
+ } & {
8900
+ requestId: string;
8901
+ data?: void | undefined;
8902
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8903
+ endpointName: string;
8904
+ startedTimeStamp: number;
8905
+ fulfilledTimeStamp?: number;
8906
+ } & {
8907
+ data?: undefined;
8908
+ } & {
8909
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
8910
+ isUninitialized: false;
8911
+ isLoading: true;
8912
+ isSuccess: false;
8913
+ isError: false;
8914
+ }) | ({
8915
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
8916
+ } & Omit<{
8917
+ requestId: string;
8918
+ data?: void | undefined;
8919
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8920
+ endpointName: string;
8921
+ startedTimeStamp: number;
8922
+ fulfilledTimeStamp?: number;
8923
+ }, "error"> & Required<Pick<{
8924
+ requestId: string;
8925
+ data?: void | undefined;
8926
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8927
+ endpointName: string;
8928
+ startedTimeStamp: number;
8929
+ fulfilledTimeStamp?: number;
8930
+ }, "error">> & {
8931
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
8932
+ isUninitialized: false;
8933
+ isLoading: false;
8934
+ isSuccess: false;
8935
+ isError: true;
8936
+ })>(options?: {
8937
+ selectFromResult?: ((state: ({
8938
+ requestId?: undefined;
8939
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
8940
+ data?: undefined;
8941
+ error?: undefined;
8942
+ endpointName?: string;
8943
+ startedTimeStamp?: undefined;
8944
+ fulfilledTimeStamp?: undefined;
8945
+ } & {
8946
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
8947
+ isUninitialized: true;
8948
+ isLoading: false;
8949
+ isSuccess: false;
8950
+ isError: false;
8951
+ }) | ({
8952
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
8953
+ } & Omit<{
8954
+ requestId: string;
8955
+ data?: void | undefined;
8956
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8957
+ endpointName: string;
8958
+ startedTimeStamp: number;
8959
+ fulfilledTimeStamp?: number;
8960
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
8961
+ requestId: string;
8962
+ data?: void | undefined;
8963
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8964
+ endpointName: string;
8965
+ startedTimeStamp: number;
8966
+ fulfilledTimeStamp?: number;
8967
+ }, "data" | "fulfilledTimeStamp">> & {
8968
+ error: undefined;
8969
+ } & {
8970
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
8971
+ isUninitialized: false;
8972
+ isLoading: false;
8973
+ isSuccess: true;
8974
+ isError: false;
8975
+ }) | ({
8976
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
8977
+ } & {
8978
+ requestId: string;
8979
+ data?: void | undefined;
8980
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8981
+ endpointName: string;
8982
+ startedTimeStamp: number;
8983
+ fulfilledTimeStamp?: number;
8984
+ } & {
8985
+ data?: undefined;
8986
+ } & {
8987
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
8988
+ isUninitialized: false;
8989
+ isLoading: true;
8990
+ isSuccess: false;
8991
+ isError: false;
8992
+ }) | ({
8993
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
8994
+ } & Omit<{
8995
+ requestId: string;
8996
+ data?: void | undefined;
8997
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
8998
+ endpointName: string;
8999
+ startedTimeStamp: number;
9000
+ fulfilledTimeStamp?: number;
9001
+ }, "error"> & Required<Pick<{
9002
+ requestId: string;
9003
+ data?: void | undefined;
9004
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
9005
+ endpointName: string;
9006
+ startedTimeStamp: number;
9007
+ fulfilledTimeStamp?: number;
9008
+ }, "error">> & {
9009
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
9010
+ isUninitialized: false;
9011
+ isLoading: false;
9012
+ isSuccess: false;
9013
+ isError: true;
9014
+ })) => R) | undefined;
9015
+ fixedCacheKey?: string;
9016
+ } | undefined) => readonly [(arg: ProcessPatchParams) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<ProcessPatchParams, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
9017
+ baseQueryType?: BaseQueryTypes;
9018
+ apiName?: string;
9019
+ paramsSerializer?: (params: Record<string, unknown>) => string;
9020
+ }) => {
9021
+ error?: undefined;
9022
+ data: unknown;
9023
+ meta?: {} | undefined;
9024
+ } | {
9025
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
9026
+ data?: undefined;
9027
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
9028
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
9029
+ error: graphql.GraphQLError[] | undefined;
9030
+ data?: undefined;
9031
+ meta?: {} | undefined;
9032
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, void, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
9033
+ originalArgs?: ProcessPatchParams | undefined;
9034
+ reset: () => void;
9035
+ }];
8859
9036
 
8860
- declare const processListQuery = "\n query ProcessList(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n processes(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n workflowName\n lastStep\n lastStatus\n workflowTarget\n product {\n name\n tag\n }\n customer {\n fullname\n shortcode\n }\n createdBy\n assignee\n processId\n startedAt\n lastModifiedAt\n isTask\n subscriptions {\n page {\n subscriptionId\n description\n }\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n endCursor\n sortFields\n filterFields\n }\n }\n }\n";
9037
+ declare const processListQuery = "\n query ProcessList(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n $query: String\n ) {\n processes(\n first: $first\n after: $after\n sortBy: $sortBy\n filterBy: $filterBy\n query: $query\n ) {\n page {\n workflowName\n lastStep\n lastStatus\n workflowTarget\n product {\n name\n tag\n }\n customer {\n fullname\n shortcode\n }\n createdBy\n assignee\n processId\n startedAt\n lastModifiedAt\n isTask\n subscriptions {\n page {\n subscriptionId\n description\n }\n }\n note\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n totalItems\n endCursor\n sortFields\n filterFields\n }\n }\n }\n";
8861
9038
  type ProcessListResponse = {
8862
9039
  processes: Process[];
8863
9040
  } & BaseGraphQlResult;
@@ -11422,7 +11599,7 @@ declare const useLazyGetProductsQuery: <R extends Record<string, any> = _reduxjs
11422
11599
  }, {
11423
11600
  lastArg: GraphqlQueryVariables<ProductDefinition>;
11424
11601
  }];
11425
- declare const useUpdateProductMutation: <R extends Record<string, any> = ({
11602
+ declare const useUpdateProductDescriptionMutation: <R extends Record<string, any> = ({
11426
11603
  requestId?: undefined;
11427
11604
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
11428
11605
  data?: undefined;
@@ -11599,6 +11776,183 @@ declare const useUpdateProductMutation: <R extends Record<string, any> = ({
11599
11776
  originalArgs?: MetadataDescriptionParams | undefined;
11600
11777
  reset: () => void;
11601
11778
  }];
11779
+ declare const useUpdateProductStatusMutation: <R extends Record<string, any> = ({
11780
+ requestId?: undefined;
11781
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
11782
+ data?: undefined;
11783
+ error?: undefined;
11784
+ endpointName?: string;
11785
+ startedTimeStamp?: undefined;
11786
+ fulfilledTimeStamp?: undefined;
11787
+ } & {
11788
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
11789
+ isUninitialized: true;
11790
+ isLoading: false;
11791
+ isSuccess: false;
11792
+ isError: false;
11793
+ }) | ({
11794
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
11795
+ } & Omit<{
11796
+ requestId: string;
11797
+ data?: null | undefined;
11798
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11799
+ endpointName: string;
11800
+ startedTimeStamp: number;
11801
+ fulfilledTimeStamp?: number;
11802
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
11803
+ requestId: string;
11804
+ data?: null | undefined;
11805
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11806
+ endpointName: string;
11807
+ startedTimeStamp: number;
11808
+ fulfilledTimeStamp?: number;
11809
+ }, "data" | "fulfilledTimeStamp">> & {
11810
+ error: undefined;
11811
+ } & {
11812
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
11813
+ isUninitialized: false;
11814
+ isLoading: false;
11815
+ isSuccess: true;
11816
+ isError: false;
11817
+ }) | ({
11818
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
11819
+ } & {
11820
+ requestId: string;
11821
+ data?: null | undefined;
11822
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11823
+ endpointName: string;
11824
+ startedTimeStamp: number;
11825
+ fulfilledTimeStamp?: number;
11826
+ } & {
11827
+ data?: undefined;
11828
+ } & {
11829
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
11830
+ isUninitialized: false;
11831
+ isLoading: true;
11832
+ isSuccess: false;
11833
+ isError: false;
11834
+ }) | ({
11835
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
11836
+ } & Omit<{
11837
+ requestId: string;
11838
+ data?: null | undefined;
11839
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11840
+ endpointName: string;
11841
+ startedTimeStamp: number;
11842
+ fulfilledTimeStamp?: number;
11843
+ }, "error"> & Required<Pick<{
11844
+ requestId: string;
11845
+ data?: null | undefined;
11846
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11847
+ endpointName: string;
11848
+ startedTimeStamp: number;
11849
+ fulfilledTimeStamp?: number;
11850
+ }, "error">> & {
11851
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
11852
+ isUninitialized: false;
11853
+ isLoading: false;
11854
+ isSuccess: false;
11855
+ isError: true;
11856
+ })>(options?: {
11857
+ selectFromResult?: ((state: ({
11858
+ requestId?: undefined;
11859
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
11860
+ data?: undefined;
11861
+ error?: undefined;
11862
+ endpointName?: string;
11863
+ startedTimeStamp?: undefined;
11864
+ fulfilledTimeStamp?: undefined;
11865
+ } & {
11866
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
11867
+ isUninitialized: true;
11868
+ isLoading: false;
11869
+ isSuccess: false;
11870
+ isError: false;
11871
+ }) | ({
11872
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
11873
+ } & Omit<{
11874
+ requestId: string;
11875
+ data?: null | undefined;
11876
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11877
+ endpointName: string;
11878
+ startedTimeStamp: number;
11879
+ fulfilledTimeStamp?: number;
11880
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
11881
+ requestId: string;
11882
+ data?: null | undefined;
11883
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11884
+ endpointName: string;
11885
+ startedTimeStamp: number;
11886
+ fulfilledTimeStamp?: number;
11887
+ }, "data" | "fulfilledTimeStamp">> & {
11888
+ error: undefined;
11889
+ } & {
11890
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
11891
+ isUninitialized: false;
11892
+ isLoading: false;
11893
+ isSuccess: true;
11894
+ isError: false;
11895
+ }) | ({
11896
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
11897
+ } & {
11898
+ requestId: string;
11899
+ data?: null | undefined;
11900
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11901
+ endpointName: string;
11902
+ startedTimeStamp: number;
11903
+ fulfilledTimeStamp?: number;
11904
+ } & {
11905
+ data?: undefined;
11906
+ } & {
11907
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
11908
+ isUninitialized: false;
11909
+ isLoading: true;
11910
+ isSuccess: false;
11911
+ isError: false;
11912
+ }) | ({
11913
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
11914
+ } & Omit<{
11915
+ requestId: string;
11916
+ data?: null | undefined;
11917
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11918
+ endpointName: string;
11919
+ startedTimeStamp: number;
11920
+ fulfilledTimeStamp?: number;
11921
+ }, "error"> & Required<Pick<{
11922
+ requestId: string;
11923
+ data?: null | undefined;
11924
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
11925
+ endpointName: string;
11926
+ startedTimeStamp: number;
11927
+ fulfilledTimeStamp?: number;
11928
+ }, "error">> & {
11929
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
11930
+ isUninitialized: false;
11931
+ isLoading: false;
11932
+ isSuccess: false;
11933
+ isError: true;
11934
+ })) => R) | undefined;
11935
+ fixedCacheKey?: string;
11936
+ } | undefined) => readonly [(arg: MetadataStatusParams) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<MetadataStatusParams, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
11937
+ baseQueryType?: BaseQueryTypes;
11938
+ apiName?: string;
11939
+ paramsSerializer?: (params: Record<string, unknown>) => string;
11940
+ }) => {
11941
+ error?: undefined;
11942
+ data: unknown;
11943
+ meta?: {} | undefined;
11944
+ } | {
11945
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
11946
+ data?: undefined;
11947
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
11948
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
11949
+ error: graphql.GraphQLError[] | undefined;
11950
+ data?: undefined;
11951
+ meta?: {} | undefined;
11952
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, null, "orchestratorApi", unknown>>, _reduxjs_toolkit_query.TSHelpersNoInfer<R> & {
11953
+ originalArgs?: MetadataStatusParams | undefined;
11954
+ reset: () => void;
11955
+ }];
11602
11956
 
11603
11957
  declare const productsSummary = "\n query MetadataProducts(\n $first: Int!\n $after: Int!\n $sortBy: [GraphqlSort!]\n $filterBy: [GraphqlFilter!]\n ) {\n products(first: $first, after: $after, sortBy: $sortBy) {\n page {\n name\n subscriptions(filterBy: $filterBy) {\n pageInfo {\n totalItems\n }\n }\n }\n pageInfo {\n totalItems\n startCursor\n endCursor\n }\n }\n }\n";
11604
11958
  type ProductsSummaryResponse = {
@@ -17334,7 +17688,7 @@ declare const useLazyGetSubscriptionActionsQuery: <R extends Record<string, any>
17334
17688
  };
17335
17689
  }];
17336
17690
 
17337
- 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";
17691
+ 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 note\n }\n }\n}\n";
17338
17692
  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";
17339
17693
  type SubscriptionDetailResponse = {
17340
17694
  subscription: SubscriptionDetail;
@@ -23787,6 +24141,7 @@ type Process = {
23787
24141
  subscriptions: {
23788
24142
  page: Pick<Subscription, 'subscriptionId' | 'description'>[];
23789
24143
  };
24144
+ note: string | null;
23790
24145
  };
23791
24146
  declare enum StepStatus {
23792
24147
  FORM = "form",// Only this one is frontend only
@@ -23824,6 +24179,7 @@ interface ProcessDetail {
23824
24179
  customer: {
23825
24180
  fullname: string;
23826
24181
  };
24182
+ note: string | null;
23827
24183
  }
23828
24184
  declare enum ProcessStatus {
23829
24185
  CREATE = "create",// Frontend only
@@ -24071,6 +24427,14 @@ type MetadataDescriptionParams = {
24071
24427
  id: string;
24072
24428
  description: string;
24073
24429
  };
24430
+ type ProcessPatchParams = {
24431
+ id: string;
24432
+ note: string | null;
24433
+ };
24434
+ type MetadataStatusParams = {
24435
+ id: string;
24436
+ status: ProductLifecycleStatus;
24437
+ };
24074
24438
  type SubscriptionDetail = {
24075
24439
  subscriptionId: string;
24076
24440
  description: string;
@@ -24091,7 +24455,7 @@ type SubscriptionDetail = {
24091
24455
  externalServices?: ExternalService[];
24092
24456
  processes?: GraphQlSinglePage<SubscriptionDetailProcess>;
24093
24457
  };
24094
- type SubscriptionDetailProcess = Pick<Process, 'processId' | 'lastStatus' | 'startedAt' | 'createdBy' | 'workflowTarget' | 'workflowName' | 'isTask'>;
24458
+ type SubscriptionDetailProcess = Pick<Process, 'processId' | 'lastStatus' | 'startedAt' | 'createdBy' | 'workflowTarget' | 'workflowName' | 'isTask' | 'note'>;
24095
24459
  type RelatedSubscription = Pick<Subscription, 'subscriptionId' | 'description' | 'status' | 'startDate' | 'insync'> & {
24096
24460
  product: Pick<ProductDefinition, 'tag'>;
24097
24461
  customer: Pick<Customer, 'fullname'>;
@@ -24165,7 +24529,8 @@ declare enum CacheTagType {
24165
24529
  processes = "processes",
24166
24530
  processStatusCounts = "processStatusCounts",
24167
24531
  subscriptions = "subscriptions",
24168
- scheduledTasks = "scheduledTags"
24532
+ scheduledTasks = "scheduledTags",
24533
+ metadataProducts = "metadataProducts"
24169
24534
  }
24170
24535
  interface MappedVersion {
24171
24536
  orchestratorUiVersion: string;
@@ -24851,7 +25216,7 @@ interface WfoDropdownButtonProps {
24851
25216
  }
24852
25217
  declare const WfoDropdownButton: ({ label, isDisabled, children }: WfoDropdownButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
24853
25218
 
24854
- type ProcessListItem = Pick<Process, 'workflowName' | 'lastStep' | 'lastStatus' | 'workflowTarget' | 'createdBy' | 'assignee' | 'processId' | 'subscriptions'> & {
25219
+ type ProcessListItem = Pick<Process, 'workflowName' | 'lastStep' | 'lastStatus' | 'workflowTarget' | 'createdBy' | 'assignee' | 'processId' | 'subscriptions' | 'note'> & {
24855
25220
  startedAt: Date;
24856
25221
  lastModifiedAt: Date;
24857
25222
  productName?: string;
@@ -25151,6 +25516,12 @@ interface WfoSubscriptionDetailNoteEditProps {
25151
25516
  }
25152
25517
  declare const WfoSubscriptionDetailNoteEdit: FC<WfoSubscriptionDetailNoteEditProps>;
25153
25518
 
25519
+ interface WfoProcessDetailNoteEditProps {
25520
+ processId: ProcessDetail['processId'];
25521
+ note: ProcessDetail['note'];
25522
+ }
25523
+ declare const WfoProcessListNoteEdit: FC<WfoProcessDetailNoteEditProps>;
25524
+
25154
25525
  type WfoTableCodeBlockProps = {
25155
25526
  stepState: StepState;
25156
25527
  };
@@ -27695,7 +28066,7 @@ declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
27695
28066
  declare const METADATA_SCHEDULES_ENDPOINT = "schedules";
27696
28067
  declare const SEARCH_QUERY_RESULTS_ENDPOINT = "search/queries";
27697
28068
 
27698
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.0.0";
28069
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.1.1";
27699
28070
 
27700
28071
  declare const useGetTranslationMessages: (locale: string | undefined) => {
27701
28072
  pydanticForms: {
@@ -28023,6 +28394,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28023
28394
  workflowTarget: string;
28024
28395
  productTag: string;
28025
28396
  showAllRelatedSubscriptions: string;
28397
+ note: string;
28026
28398
  };
28027
28399
  detail: {
28028
28400
  retry: string;
@@ -28183,6 +28555,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28183
28555
  status: string;
28184
28556
  startedAt: string;
28185
28557
  startedBy: string;
28558
+ note: string;
28186
28559
  };
28187
28560
  showAll: string;
28188
28561
  hideAll: string;
@@ -28746,6 +29119,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28746
29119
  workflowTarget: string;
28747
29120
  productTag: string;
28748
29121
  showAllRelatedSubscriptions: string;
29122
+ note: string;
28749
29123
  };
28750
29124
  detail: {
28751
29125
  retry: string;
@@ -28906,6 +29280,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28906
29280
  status: string;
28907
29281
  startedAt: string;
28908
29282
  startedBy: string;
29283
+ note: string;
28909
29284
  };
28910
29285
  showAll: string;
28911
29286
  hideAll: string;
@@ -29218,4 +29593,4 @@ declare enum WfoQueryParams {
29218
29593
  }
29219
29594
  declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
29220
29595
 
29221
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, 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 Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, type EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExportArtifact, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldValue, type FileUploadPayload, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type Group, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo$1 as PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, type QueryArtifact, type QueryResultsData, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type ResultRow, RetrieverType, type RootState, Row, SEARCH_QUERY_RESULTS_ENDPOINT, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoAgent, WfoAgentLineChart, type WfoAgentLineChartProps, WfoAgentPieChart, type WfoAgentPieChartProps, WfoAgentTable, type WfoAgentTableProps, WfoAgentVisualization, type WfoAgentVisualizationProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlanProgress, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, 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, WfoQueryArtifact, type WfoQueryArtifactProps, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduleTaskFormPageBackend, WfoScheduleTaskFormPageHardCoded, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, 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, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useAgentAvailability, useCheckAgentAvailabilityQuery, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetAgentQueryResultsQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchMutation, useSearchPathsQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
29596
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, 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 Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, type EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExportArtifact, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldValue, type FileUploadPayload, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type Group, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, type MetadataStatusParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo$1 as PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessPatchParams, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, type QueryArtifact, type QueryResultsData, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type ResultRow, RetrieverType, type RootState, Row, SEARCH_QUERY_RESULTS_ENDPOINT, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoAgent, WfoAgentLineChart, type WfoAgentLineChartProps, WfoAgentPieChart, type WfoAgentPieChartProps, WfoAgentTable, type WfoAgentTableProps, WfoAgentVisualization, type WfoAgentVisualizationProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlanProgress, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, WfoProcessDetailPage, WfoProcessListNoteEdit, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoPydanticForm, WfoQueryArtifact, type WfoQueryArtifactProps, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduleTaskFormPageBackend, WfoScheduleTaskFormPageHardCoded, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, 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, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useAgentAvailability, useCheckAgentAvailabilityQuery, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetAgentQueryResultsQuery, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePatchProcessMutation, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchMutation, useSearchPathsQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductDescriptionMutation, useUpdateProductStatusMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };