@orchestrator-ui/orchestrator-ui-components 8.4.4 → 8.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) 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 +1890 -562
  6. package/dist/index.js +3814 -2103
  7. package/dist/index.js.map +1 -1
  8. package/package.json +5 -4
  9. package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +23 -1
  10. package/src/components/WfoSearchBar/WfoSearchField.tsx +0 -1
  11. package/src/components/WfoSearchPage/WfoFilterGroup/WfoFilterGroup.tsx +5 -5
  12. package/src/components/WfoSearchPage/WfoSearch/WfoSearch.tsx +12 -5
  13. package/src/components/WfoSearchPage/constants.ts +0 -4
  14. package/src/components/WfoSearchPage/utils.ts +75 -20
  15. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionExpandableMenuItem.tsx +36 -18
  16. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionsMenuItem.tsx +38 -2
  17. package/src/components/WfoSubscription/utils/index.ts +3 -0
  18. package/src/components/WfoSubscription/utils/utils.spec.ts +39 -4
  19. package/src/components/WfoSubscription/utils/utils.ts +10 -4
  20. package/src/components/WfoTable/WfoStructuredSearchTable/WfoAddGroupAction.tsx +19 -0
  21. package/src/components/WfoTable/WfoStructuredSearchTable/WfoAddRuleAction.tsx +23 -0
  22. package/src/components/WfoTable/WfoStructuredSearchTable/WfoCombinatorSelector.tsx +30 -0
  23. package/src/components/WfoTable/WfoStructuredSearchTable/WfoExpandingSearchRow.tsx +38 -0
  24. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFieldSelector.tsx +84 -0
  25. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFilterBuilder.tsx +189 -0
  26. package/src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.tsx +33 -0
  27. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRangeEditor.tsx +64 -0
  28. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRemoveGroupAction.tsx +21 -0
  29. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRemoveRuleAction.tsx +20 -0
  30. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRule.tsx +16 -0
  31. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRuleGroup.tsx +73 -0
  32. package/src/components/WfoTable/WfoStructuredSearchTable/WfoStructuredSearchTable.tsx +323 -0
  33. package/src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.tsx +159 -0
  34. package/src/components/WfoTable/WfoStructuredSearchTable/index.ts +2 -0
  35. package/src/components/WfoTable/WfoStructuredSearchTable/styles.ts +146 -0
  36. package/src/components/WfoTable/WfoTable/WfoDragHandler.tsx +4 -2
  37. package/src/components/WfoTable/index.ts +2 -6
  38. package/src/components/WfoTitleWithWebsocketBadge/WfoTitleWithWebsocketBadge.tsx +14 -6
  39. package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +1 -0
  40. package/src/components/WfoWorkflowSteps/WfoStepList/WfoStepList.tsx +3 -0
  41. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +32 -12
  42. package/src/components/WfoWorkflowUserGuide/WfoPageWithUserGuide.tsx +38 -0
  43. package/src/components/WfoWorkflowUserGuide/WfoWorkflowGuideExpandablePanel.tsx +151 -0
  44. package/src/components/WfoWorkflowUserGuide/index.ts +2 -0
  45. package/src/components/WfoWorkflowUserGuide/styles.ts +87 -0
  46. package/src/components/index.ts +1 -0
  47. package/src/configuration/version.ts +1 -1
  48. package/src/contexts/OrchestratorConfigContext.tsx +1 -0
  49. package/src/hooks/index.ts +1 -0
  50. package/src/hooks/usePathAutoComplete.ts +3 -4
  51. package/src/hooks/useSearch.ts +20 -15
  52. package/src/hooks/useSearchPagination.ts +11 -8
  53. package/src/hooks/useUrlParams.ts +3 -5
  54. package/src/icons/WfoTrashFilled.tsx +13 -0
  55. package/src/icons/WfoXMarkSmall.tsx +2 -2
  56. package/src/icons/index.ts +1 -0
  57. package/src/messages/en-GB.json +94 -8
  58. package/src/messages/nl-NL.json +23 -5
  59. package/src/pages/WfoSearchPocPage.tsx +402 -0
  60. package/src/pages/index.ts +1 -0
  61. package/src/pages/processes/WfoProcessDetail.tsx +10 -10
  62. package/src/pages/processes/WfoProcessDetailPage.tsx +1 -0
  63. package/src/pages/processes/WfoStartProcessPage.tsx +15 -19
  64. package/src/rtk/api.ts +1 -0
  65. package/src/rtk/endpoints/index.ts +1 -0
  66. package/src/rtk/endpoints/search.ts +45 -10
  67. package/src/rtk/endpoints/workflowGuides.ts +25 -0
  68. package/src/types/search.ts +21 -5
  69. package/src/types/types.ts +10 -1
package/dist/index.d.ts CHANGED
@@ -17,6 +17,7 @@ import { TranslationValues } from 'next-intl';
17
17
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
18
18
  import { Slice, Reducer, PayloadAction, Dispatch, UnknownAction, EnhancedStore, SerializedError } from '@reduxjs/toolkit';
19
19
  import * as _emotion_react from '@emotion/react';
20
+ import { RuleGroupType } from 'react-querybuilder';
20
21
  import * as csstype from 'csstype';
21
22
  import { IconType } from '@elastic/eui/src/components/icon';
22
23
  import { PydanticFormApiProvider, PydanticFormConfig, ComponentMatcherExtender, PydanticFormControlledElement, PydanticFormElement, PydanticFormElementProps, PydanticFormControlledElementProps, RowRenderComponent, PydanticFormFooterProps, PydanticFormHeaderProps } from 'pydantic-forms';
@@ -43,6 +44,7 @@ declare enum HttpStatus {
43
44
  FormNotComplete = 510,
44
45
  BadGateway = 502,
45
46
  BadRequest = 400,
47
+ PreconditionFailed = 412,
46
48
  ServiceUnavailable = 503,
47
49
  Unauthorized = 401,
48
50
  Forbidden = 403,
@@ -19280,25 +19282,13 @@ declare const useGetWorkflowNameById: (workflowId: ScheduledTaskDefinition["work
19280
19282
  workflowName: string | undefined;
19281
19283
  };
19282
19284
 
19283
- declare const useGetPydanticFormsConfig: (getApiProvider: () => PydanticFormApiProvider, Footer: PydanticFormConfig["footerRenderer"]) => PydanticFormConfig;
19284
-
19285
- type TableSettingsColumnConfig<T> = {
19286
- field: keyof T;
19287
- name: string;
19288
- isVisible: boolean;
19289
- };
19290
- type TableSettingsConfig<T> = {
19291
- columns: TableSettingsColumnConfig<T>[];
19292
- selectedPageSize: number;
19293
- };
19294
- type TableSettingsModalProps<T> = {
19295
- tableConfig: TableSettingsConfig<T>;
19296
- pageSizeOptions: number[];
19297
- onClose: () => void;
19298
- onUpdateTableConfig: (updatedTableConfig: TableSettingsConfig<T>) => void;
19299
- onResetToDefaults: () => void;
19285
+ declare const usePathAutocomplete: (prefix: string, entityType: EntityKind) => {
19286
+ paths: PathInfo[];
19287
+ loading: boolean;
19288
+ error: string | null;
19300
19289
  };
19301
- declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19290
+
19291
+ declare const useGetPydanticFormsConfig: (getApiProvider: () => PydanticFormApiProvider, Footer: PydanticFormConfig["footerRenderer"]) => PydanticFormConfig;
19302
19292
 
19303
19293
  declare const WFO_STATUS_COLOR_FIELD = "statusColorField";
19304
19294
  type TableColumnKeys<T> = Array<keyof T>;
@@ -19345,6 +19335,24 @@ declare const hasSpecialCharacterOrSpace: (string: string) => boolean;
19345
19335
  declare const getQueryStringHandler: <Type>(setDataDisplayParam: DataDisplayReturnValues<Type>["setDataDisplayParam"]) => (queryString: string) => void;
19346
19336
  declare const getPageCount: (pagination: Pagination) => number;
19347
19337
 
19338
+ type TableSettingsColumnConfig<T> = {
19339
+ field: keyof T;
19340
+ name: string;
19341
+ isVisible: boolean;
19342
+ };
19343
+ type TableSettingsConfig<T> = {
19344
+ columns: TableSettingsColumnConfig<T>[];
19345
+ selectedPageSize: number;
19346
+ };
19347
+ type TableSettingsModalProps<T> = {
19348
+ tableConfig: TableSettingsConfig<T>;
19349
+ pageSizeOptions: number[];
19350
+ onClose: () => void;
19351
+ onUpdateTableConfig: (updatedTableConfig: TableSettingsConfig<T>) => void;
19352
+ onResetToDefaults: () => void;
19353
+ };
19354
+ declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19355
+
19348
19356
  type WfoStatusColorFieldProps = {
19349
19357
  color: string;
19350
19358
  };
@@ -19505,6 +19513,8 @@ declare const WfoExclamationTriangle: FC<WfoIconProps>;
19505
19513
 
19506
19514
  declare const WfoChartBar: FC<WfoIconProps>;
19507
19515
 
19516
+ declare const WfoTrashFilled: FC<WfoIconProps>;
19517
+
19508
19518
  type WfoSortButtonProps = {
19509
19519
  WfoIconComponent: FC<WfoIconProps>;
19510
19520
  isActive: boolean;
@@ -19728,6 +19738,59 @@ type WfoAdvancedTableProps<T extends object> = Omit<WfoTableProps<T>, 'columnCon
19728
19738
  };
19729
19739
  declare const WfoAdvancedTable: <T extends object>({ tableColumnConfig, defaultHiddenColumns, queryString, localStorageKey, detailModal, detailModalTitle, exportDataIsLoading, error, onUpdateQueryString, onExportData, disableSearch, extraButtons, ...tableProps }: WfoAdvancedTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19730
19740
 
19741
+ type WfoStructuredSearchTableDataColumnConfigItem<T extends object, Property extends keyof T> = WfoTableDataColumnConfigItem<T, Property> & {
19742
+ renderDetails?: (cellValue: T[Property], row: T) => React__default.ReactNode;
19743
+ clipboardText?: (cellValue: T[Property], row: T) => string;
19744
+ };
19745
+ type WfoStructuredSearchTableDataColumnConfig<T extends object> = {
19746
+ [Property in keyof T]: WfoStructuredSearchTableDataColumnConfigItem<T, Property> | WfoTableControlColumnConfigItem<T>;
19747
+ };
19748
+ type WfoStructuredSearchTableColumnConfig<T extends object> = Partial<WfoTableControlColumnConfig<T> | WfoStructuredSearchTableDataColumnConfig<T>>;
19749
+ type SearchParams = {
19750
+ queryText?: string | false;
19751
+ retrieverType?: RetrieverType;
19752
+ ruleGroup?: RuleGroupType | false;
19753
+ limit?: number;
19754
+ sortBy?: {
19755
+ field: string;
19756
+ sortOrder: string;
19757
+ };
19758
+ };
19759
+ type WfoStructuredSearchTableProps<T extends object> = Omit<WfoTableProps<T>, 'columnConfig' | 'onUpdateDataSearch'> & {
19760
+ tableColumnConfig: WfoStructuredSearchTableColumnConfig<T>;
19761
+ rowExpandingConfiguration: WfoTableProps<T>['rowExpandingConfiguration'];
19762
+ defaultHiddenColumns?: TableColumnKeys<T>;
19763
+ queryText?: string;
19764
+ localStorageKey: string;
19765
+ exportDataIsLoading?: boolean;
19766
+ error?: WfoGraphqlError[];
19767
+ onChangeQueryText: (queryString: string) => void;
19768
+ onSearchQueryText: (queryString: string) => void;
19769
+ onShowMore: () => void;
19770
+ onUpdateDataSorting: (updateSorting: WfoDataSorting<T>) => void;
19771
+ onExportData?: () => void;
19772
+ retrieverType: RetrieverType;
19773
+ onUpdateRetrieverType: (newRetrieverType: RetrieverType) => void;
19774
+ filterString?: string;
19775
+ onUpdateFilterString: (filterString: string) => void;
19776
+ isValidFilterString?: boolean;
19777
+ queryBuilderRuleGroup?: RuleGroupType;
19778
+ onUpdateQueryBuilder: (ruleGroup: RuleGroupType | false) => void;
19779
+ handleSearch: () => void;
19780
+ pageSize: number;
19781
+ setPageSize: React__default.Dispatch<React__default.SetStateAction<number>>;
19782
+ totalItems: number | false;
19783
+ hasNextPage: boolean;
19784
+ };
19785
+ declare const WfoStructuredSearchTable: <T extends object>({ tableColumnConfig, defaultHiddenColumns, queryText, localStorageKey, exportDataIsLoading, error, onChangeQueryText, onSearchQueryText, onShowMore, onExportData, retrieverType, onUpdateRetrieverType, filterString, onUpdateFilterString, isValidFilterString, queryBuilderRuleGroup, onUpdateQueryBuilder, onUpdateDataSorting, handleSearch, pageSize, setPageSize, totalItems, rowExpandingConfiguration, dataSorting, hasNextPage, data, isLoading, ...tableProps }: WfoStructuredSearchTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19786
+
19787
+ interface WfoExpandingSearchRowProps {
19788
+ score?: number;
19789
+ perfectMatch?: number;
19790
+ matchingField?: MatchingField | null;
19791
+ }
19792
+ declare const WfoExpandingSearchRow: ({ score, matchingField }: WfoExpandingSearchRowProps) => _emotion_react_jsx_runtime.JSX.Element | null;
19793
+
19731
19794
  type WfoSubscriptionsListProps = {
19732
19795
  alwaysOnFilters?: FilterQuery<SubscriptionListItem>[];
19733
19796
  dataDisplayParams: DataDisplayParams<SubscriptionListItem>;
@@ -21788,13 +21851,19 @@ declare const useUploadFileMutation: <R extends Record<string, any> = ({
21788
21851
  }];
21789
21852
 
21790
21853
  interface SearchPayload {
21854
+ order_by?: {
21855
+ element: string;
21856
+ direction: string;
21857
+ };
21858
+ response_columns: string[];
21791
21859
  entity_type: EntityKind;
21792
21860
  query: string;
21793
- filters?: Group;
21794
- limit?: number;
21861
+ filters?: Filter;
21862
+ limit?: number | number[];
21795
21863
  retriever?: RetrieverType;
21864
+ cursor?: string;
21796
21865
  }
21797
- interface SearchPaginationPayload extends SearchPayload {
21866
+ interface SearchPaginationPayload extends Omit<SearchPayload, 'cursor'> {
21798
21867
  cursor: number;
21799
21868
  }
21800
21869
  interface SearchDefinitionsResponse {
@@ -21803,164 +21872,52 @@ interface SearchDefinitionsResponse {
21803
21872
  value_schema: Record<string, value_schema>;
21804
21873
  };
21805
21874
  }
21806
- declare const useSearchMutation: <R extends Record<string, any> = ({
21807
- requestId?: undefined;
21808
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
21809
- data?: undefined;
21810
- error?: undefined;
21811
- endpointName?: string;
21812
- startedTimeStamp?: undefined;
21813
- fulfilledTimeStamp?: undefined;
21814
- } & {
21875
+ declare const useSearchQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
21815
21876
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
21816
- isUninitialized: true;
21817
- isLoading: false;
21818
- isSuccess: false;
21819
- isError: false;
21820
- }) | ({
21821
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21822
- } & Omit<{
21823
- requestId: string;
21824
- data?: PaginatedSearchResults | undefined;
21825
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21826
- endpointName: string;
21827
- startedTimeStamp: number;
21828
- fulfilledTimeStamp?: number;
21829
- }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
21830
- requestId: string;
21831
- data?: PaginatedSearchResults | undefined;
21832
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21833
- endpointName: string;
21834
- startedTimeStamp: number;
21835
- fulfilledTimeStamp?: number;
21836
- }, "data" | "fulfilledTimeStamp">> & {
21837
- error: undefined;
21877
+ originalArgs?: undefined | undefined;
21878
+ data?: undefined | undefined;
21879
+ error?: undefined | undefined;
21880
+ requestId?: undefined | undefined;
21881
+ endpointName?: string | undefined;
21882
+ startedTimeStamp?: undefined | undefined;
21883
+ fulfilledTimeStamp?: undefined | undefined;
21838
21884
  } & {
21839
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21885
+ currentData?: PaginatedSearchResults | undefined;
21840
21886
  isUninitialized: false;
21841
21887
  isLoading: false;
21842
- isSuccess: true;
21843
- isError: false;
21844
- }) | ({
21845
- status: _reduxjs_toolkit_query.QueryStatus.pending;
21846
- } & {
21847
- requestId: string;
21848
- data?: PaginatedSearchResults | undefined;
21849
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21850
- endpointName: string;
21851
- startedTimeStamp: number;
21852
- fulfilledTimeStamp?: number;
21853
- } & {
21854
- data?: undefined;
21855
- } & {
21856
- status: _reduxjs_toolkit_query.QueryStatus.pending;
21857
- isUninitialized: false;
21858
- isLoading: true;
21888
+ isFetching: false;
21859
21889
  isSuccess: false;
21860
21890
  isError: false;
21861
- }) | ({
21862
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
21863
- } & Omit<{
21864
- requestId: string;
21865
- data?: PaginatedSearchResults | undefined;
21866
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21867
- endpointName: string;
21868
- startedTimeStamp: number;
21869
- fulfilledTimeStamp?: number;
21870
- }, "error"> & Required<Pick<{
21871
- requestId: string;
21872
- data?: PaginatedSearchResults | undefined;
21873
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21874
- endpointName: string;
21875
- startedTimeStamp: number;
21876
- fulfilledTimeStamp?: number;
21877
- }, "error">> & {
21878
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
21891
+ }, "isUninitialized"> & {
21892
+ isUninitialized: true;
21893
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21894
+ baseQueryType?: BaseQueryTypes;
21895
+ apiName?: string;
21896
+ paramsSerializer?: (params: Record<string, unknown>) => string;
21897
+ }) => {
21898
+ error?: undefined;
21899
+ data: unknown;
21900
+ meta?: {} | undefined;
21901
+ } | {
21902
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
21903
+ data?: undefined;
21904
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
21905
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
21906
+ error: graphql.GraphQLError[] | undefined;
21907
+ data?: undefined;
21908
+ meta?: {} | undefined;
21909
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21910
+ currentData?: PaginatedSearchResults | undefined;
21879
21911
  isUninitialized: false;
21880
21912
  isLoading: false;
21913
+ isFetching: false;
21881
21914
  isSuccess: false;
21882
- isError: true;
21883
- })>(options?: {
21884
- selectFromResult?: ((state: ({
21885
- requestId?: undefined;
21886
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
21887
- data?: undefined;
21888
- error?: undefined;
21889
- endpointName?: string;
21890
- startedTimeStamp?: undefined;
21891
- fulfilledTimeStamp?: undefined;
21892
- } & {
21893
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
21894
- isUninitialized: true;
21895
- isLoading: false;
21896
- isSuccess: false;
21897
- isError: false;
21898
- }) | ({
21899
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21900
- } & Omit<{
21901
- requestId: string;
21902
- data?: PaginatedSearchResults | undefined;
21903
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21904
- endpointName: string;
21905
- startedTimeStamp: number;
21906
- fulfilledTimeStamp?: number;
21907
- }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
21908
- requestId: string;
21909
- data?: PaginatedSearchResults | undefined;
21910
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21911
- endpointName: string;
21912
- startedTimeStamp: number;
21913
- fulfilledTimeStamp?: number;
21914
- }, "data" | "fulfilledTimeStamp">> & {
21915
- error: undefined;
21916
- } & {
21917
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21918
- isUninitialized: false;
21919
- isLoading: false;
21920
- isSuccess: true;
21921
- isError: false;
21922
- }) | ({
21923
- status: _reduxjs_toolkit_query.QueryStatus.pending;
21924
- } & {
21925
- requestId: string;
21926
- data?: PaginatedSearchResults | undefined;
21927
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21928
- endpointName: string;
21929
- startedTimeStamp: number;
21930
- fulfilledTimeStamp?: number;
21931
- } & {
21932
- data?: undefined;
21933
- } & {
21934
- status: _reduxjs_toolkit_query.QueryStatus.pending;
21935
- isUninitialized: false;
21936
- isLoading: true;
21937
- isSuccess: false;
21938
- isError: false;
21939
- }) | ({
21940
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
21941
- } & Omit<{
21942
- requestId: string;
21943
- data?: PaginatedSearchResults | undefined;
21944
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21945
- endpointName: string;
21946
- startedTimeStamp: number;
21947
- fulfilledTimeStamp?: number;
21948
- }, "error"> & Required<Pick<{
21949
- requestId: string;
21950
- data?: PaginatedSearchResults | undefined;
21951
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
21952
- endpointName: string;
21953
- startedTimeStamp: number;
21954
- fulfilledTimeStamp?: number;
21955
- }, "error">> & {
21956
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
21957
- isUninitialized: false;
21958
- isLoading: false;
21959
- isSuccess: false;
21960
- isError: true;
21961
- })) => R) | undefined;
21962
- fixedCacheKey?: string;
21963
- } | undefined) => readonly [(arg: SearchPayload) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21915
+ isError: false;
21916
+ }, "data" | "isLoading" | "isFetching"> & {
21917
+ isLoading: true;
21918
+ isFetching: boolean;
21919
+ data: undefined;
21920
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21964
21921
  baseQueryType?: BaseQueryTypes;
21965
21922
  apiName?: string;
21966
21923
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -21976,188 +21933,1445 @@ declare const useSearchMutation: <R extends Record<string, any> = ({
21976
21933
  error: graphql.GraphQLError[] | undefined;
21977
21934
  data?: undefined;
21978
21935
  meta?: {} | undefined;
21979
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>, R & {
21980
- originalArgs?: SearchPayload | undefined;
21981
- reset: () => void;
21982
- }];
21983
- declare const useSearchWithPaginationMutation: <R extends Record<string, any> = ({
21984
- requestId?: undefined;
21985
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
21986
- data?: undefined;
21987
- error?: undefined;
21988
- endpointName?: string;
21989
- startedTimeStamp?: undefined;
21990
- fulfilledTimeStamp?: undefined;
21991
- } & {
21992
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
21993
- isUninitialized: true;
21936
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21937
+ currentData?: PaginatedSearchResults | undefined;
21938
+ isUninitialized: false;
21994
21939
  isLoading: false;
21940
+ isFetching: false;
21995
21941
  isSuccess: false;
21996
21942
  isError: false;
21997
- }) | ({
21998
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21999
- } & Omit<{
22000
- requestId: string;
22001
- data?: PaginatedSearchResults | undefined;
22002
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22003
- endpointName: string;
22004
- startedTimeStamp: number;
22005
- fulfilledTimeStamp?: number;
22006
- }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
22007
- requestId: string;
22008
- data?: PaginatedSearchResults | undefined;
22009
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22010
- endpointName: string;
22011
- startedTimeStamp: number;
22012
- fulfilledTimeStamp?: number;
22013
- }, "data" | "fulfilledTimeStamp">> & {
21943
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
21944
+ isSuccess: true;
21945
+ isFetching: true;
22014
21946
  error: undefined;
22015
21947
  } & {
22016
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21948
+ data: PaginatedSearchResults;
21949
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21950
+ baseQueryType?: BaseQueryTypes;
21951
+ apiName?: string;
21952
+ paramsSerializer?: (params: Record<string, unknown>) => string;
21953
+ }) => {
21954
+ error?: undefined;
21955
+ data: unknown;
21956
+ meta?: {} | undefined;
21957
+ } | {
21958
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
21959
+ data?: undefined;
21960
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
21961
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
21962
+ error: graphql.GraphQLError[] | undefined;
21963
+ data?: undefined;
21964
+ meta?: {} | undefined;
21965
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21966
+ currentData?: PaginatedSearchResults | undefined;
22017
21967
  isUninitialized: false;
22018
21968
  isLoading: false;
22019
- isSuccess: true;
21969
+ isFetching: false;
21970
+ isSuccess: false;
22020
21971
  isError: false;
22021
- }) | ({
22022
- status: _reduxjs_toolkit_query.QueryStatus.pending;
22023
- } & {
22024
- requestId: string;
22025
- data?: PaginatedSearchResults | undefined;
22026
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22027
- endpointName: string;
22028
- startedTimeStamp: number;
22029
- fulfilledTimeStamp?: number;
22030
- } & {
21972
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21973
+ baseQueryType?: BaseQueryTypes;
21974
+ apiName?: string;
21975
+ paramsSerializer?: (params: Record<string, unknown>) => string;
21976
+ }) => {
21977
+ error?: undefined;
21978
+ data: unknown;
21979
+ meta?: {} | undefined;
21980
+ } | {
21981
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22031
21982
  data?: undefined;
21983
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
21984
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
21985
+ error: graphql.GraphQLError[] | undefined;
21986
+ data?: undefined;
21987
+ meta?: {} | undefined;
21988
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21989
+ currentData?: PaginatedSearchResults | undefined;
21990
+ isUninitialized: false;
21991
+ isLoading: false;
21992
+ isFetching: false;
21993
+ isSuccess: false;
21994
+ isError: false;
21995
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
21996
+ isSuccess: true;
21997
+ isFetching: false;
21998
+ error: undefined;
22032
21999
  } & {
22033
- status: _reduxjs_toolkit_query.QueryStatus.pending;
22000
+ data: PaginatedSearchResults;
22001
+ currentData: PaginatedSearchResults;
22002
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22003
+ baseQueryType?: BaseQueryTypes;
22004
+ apiName?: string;
22005
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22006
+ }) => {
22007
+ error?: undefined;
22008
+ data: unknown;
22009
+ meta?: {} | undefined;
22010
+ } | {
22011
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22012
+ data?: undefined;
22013
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22014
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22015
+ error: graphql.GraphQLError[] | undefined;
22016
+ data?: undefined;
22017
+ meta?: {} | undefined;
22018
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22019
+ currentData?: PaginatedSearchResults | undefined;
22034
22020
  isUninitialized: false;
22035
- isLoading: true;
22021
+ isLoading: false;
22022
+ isFetching: false;
22036
22023
  isSuccess: false;
22037
22024
  isError: false;
22038
- }) | ({
22039
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
22040
- } & Omit<{
22041
- requestId: string;
22042
- data?: PaginatedSearchResults | undefined;
22043
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22044
- endpointName: string;
22045
- startedTimeStamp: number;
22046
- fulfilledTimeStamp?: number;
22047
- }, "error"> & Required<Pick<{
22048
- requestId: string;
22049
- data?: PaginatedSearchResults | undefined;
22050
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22051
- endpointName: string;
22052
- startedTimeStamp: number;
22053
- fulfilledTimeStamp?: number;
22054
- }, "error">> & {
22055
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
22025
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22026
+ baseQueryType?: BaseQueryTypes;
22027
+ apiName?: string;
22028
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22029
+ }) => {
22030
+ error?: undefined;
22031
+ data: unknown;
22032
+ meta?: {} | undefined;
22033
+ } | {
22034
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22035
+ data?: undefined;
22036
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22037
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22038
+ error: graphql.GraphQLError[] | undefined;
22039
+ data?: undefined;
22040
+ meta?: {} | undefined;
22041
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22042
+ currentData?: PaginatedSearchResults | undefined;
22056
22043
  isUninitialized: false;
22057
22044
  isLoading: false;
22045
+ isFetching: false;
22058
22046
  isSuccess: false;
22047
+ isError: false;
22048
+ }, "error" | "isError"> & {
22059
22049
  isError: true;
22060
- })>(options?: {
22061
- selectFromResult?: ((state: ({
22062
- requestId?: undefined;
22050
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22051
+ baseQueryType?: BaseQueryTypes;
22052
+ apiName?: string;
22053
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22054
+ }) => {
22055
+ error?: undefined;
22056
+ data: unknown;
22057
+ meta?: {} | undefined;
22058
+ } | {
22059
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22060
+ data?: undefined;
22061
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22062
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22063
+ error: graphql.GraphQLError[] | undefined;
22064
+ data?: undefined;
22065
+ meta?: {} | undefined;
22066
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22067
+ currentData?: PaginatedSearchResults | undefined;
22068
+ isUninitialized: false;
22069
+ isLoading: false;
22070
+ isFetching: false;
22071
+ isSuccess: false;
22072
+ isError: false;
22073
+ }, "error">>)> & {
22074
+ status: _reduxjs_toolkit_query.QueryStatus;
22075
+ }>(arg: typeof _reduxjs_toolkit_query.skipToken | SearchPayload, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
22076
+ skip?: boolean;
22077
+ refetchOnMountOrArgChange?: boolean | number;
22078
+ } & {
22079
+ skip?: boolean;
22080
+ selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22063
22081
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22064
- data?: undefined;
22065
- error?: undefined;
22066
- endpointName?: string;
22067
- startedTimeStamp?: undefined;
22068
- fulfilledTimeStamp?: undefined;
22082
+ originalArgs?: undefined | undefined;
22083
+ data?: undefined | undefined;
22084
+ error?: undefined | undefined;
22085
+ requestId?: undefined | undefined;
22086
+ endpointName?: string | undefined;
22087
+ startedTimeStamp?: undefined | undefined;
22088
+ fulfilledTimeStamp?: undefined | undefined;
22069
22089
  } & {
22070
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22090
+ currentData?: PaginatedSearchResults | undefined;
22091
+ isUninitialized: false;
22092
+ isLoading: false;
22093
+ isFetching: false;
22094
+ isSuccess: false;
22095
+ isError: false;
22096
+ }, "isUninitialized"> & {
22071
22097
  isUninitialized: true;
22098
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22099
+ baseQueryType?: BaseQueryTypes;
22100
+ apiName?: string;
22101
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22102
+ }) => {
22103
+ error?: undefined;
22104
+ data: unknown;
22105
+ meta?: {} | undefined;
22106
+ } | {
22107
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22108
+ data?: undefined;
22109
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22110
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22111
+ error: graphql.GraphQLError[] | undefined;
22112
+ data?: undefined;
22113
+ meta?: {} | undefined;
22114
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22115
+ currentData?: PaginatedSearchResults | undefined;
22116
+ isUninitialized: false;
22072
22117
  isLoading: false;
22118
+ isFetching: false;
22073
22119
  isSuccess: false;
22074
22120
  isError: false;
22075
- }) | ({
22076
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22077
- } & Omit<{
22078
- requestId: string;
22079
- data?: PaginatedSearchResults | undefined;
22080
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22081
- endpointName: string;
22082
- startedTimeStamp: number;
22083
- fulfilledTimeStamp?: number;
22084
- }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
22085
- requestId: string;
22086
- data?: PaginatedSearchResults | undefined;
22087
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22088
- endpointName: string;
22089
- startedTimeStamp: number;
22090
- fulfilledTimeStamp?: number;
22091
- }, "data" | "fulfilledTimeStamp">> & {
22121
+ }, "data" | "isLoading" | "isFetching"> & {
22122
+ isLoading: true;
22123
+ isFetching: boolean;
22124
+ data: undefined;
22125
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22126
+ baseQueryType?: BaseQueryTypes;
22127
+ apiName?: string;
22128
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22129
+ }) => {
22130
+ error?: undefined;
22131
+ data: unknown;
22132
+ meta?: {} | undefined;
22133
+ } | {
22134
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22135
+ data?: undefined;
22136
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22137
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22138
+ error: graphql.GraphQLError[] | undefined;
22139
+ data?: undefined;
22140
+ meta?: {} | undefined;
22141
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22142
+ currentData?: PaginatedSearchResults | undefined;
22143
+ isUninitialized: false;
22144
+ isLoading: false;
22145
+ isFetching: false;
22146
+ isSuccess: false;
22147
+ isError: false;
22148
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22149
+ isSuccess: true;
22150
+ isFetching: true;
22092
22151
  error: undefined;
22093
22152
  } & {
22094
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22153
+ data: PaginatedSearchResults;
22154
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22155
+ baseQueryType?: BaseQueryTypes;
22156
+ apiName?: string;
22157
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22158
+ }) => {
22159
+ error?: undefined;
22160
+ data: unknown;
22161
+ meta?: {} | undefined;
22162
+ } | {
22163
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22164
+ data?: undefined;
22165
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22166
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22167
+ error: graphql.GraphQLError[] | undefined;
22168
+ data?: undefined;
22169
+ meta?: {} | undefined;
22170
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22171
+ currentData?: PaginatedSearchResults | undefined;
22095
22172
  isUninitialized: false;
22096
22173
  isLoading: false;
22097
- isSuccess: true;
22174
+ isFetching: false;
22175
+ isSuccess: false;
22098
22176
  isError: false;
22099
- }) | ({
22100
- status: _reduxjs_toolkit_query.QueryStatus.pending;
22177
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22178
+ baseQueryType?: BaseQueryTypes;
22179
+ apiName?: string;
22180
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22181
+ }) => {
22182
+ error?: undefined;
22183
+ data: unknown;
22184
+ meta?: {} | undefined;
22185
+ } | {
22186
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22187
+ data?: undefined;
22188
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22189
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22190
+ error: graphql.GraphQLError[] | undefined;
22191
+ data?: undefined;
22192
+ meta?: {} | undefined;
22193
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22194
+ currentData?: PaginatedSearchResults | undefined;
22195
+ isUninitialized: false;
22196
+ isLoading: false;
22197
+ isFetching: false;
22198
+ isSuccess: false;
22199
+ isError: false;
22200
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
22201
+ isSuccess: true;
22202
+ isFetching: false;
22203
+ error: undefined;
22204
+ } & {
22205
+ data: PaginatedSearchResults;
22206
+ currentData: PaginatedSearchResults;
22207
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22208
+ baseQueryType?: BaseQueryTypes;
22209
+ apiName?: string;
22210
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22211
+ }) => {
22212
+ error?: undefined;
22213
+ data: unknown;
22214
+ meta?: {} | undefined;
22215
+ } | {
22216
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22217
+ data?: undefined;
22218
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22219
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22220
+ error: graphql.GraphQLError[] | undefined;
22221
+ data?: undefined;
22222
+ meta?: {} | undefined;
22223
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22224
+ currentData?: PaginatedSearchResults | undefined;
22225
+ isUninitialized: false;
22226
+ isLoading: false;
22227
+ isFetching: false;
22228
+ isSuccess: false;
22229
+ isError: false;
22230
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22231
+ baseQueryType?: BaseQueryTypes;
22232
+ apiName?: string;
22233
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22234
+ }) => {
22235
+ error?: undefined;
22236
+ data: unknown;
22237
+ meta?: {} | undefined;
22238
+ } | {
22239
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22240
+ data?: undefined;
22241
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22242
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22243
+ error: graphql.GraphQLError[] | undefined;
22244
+ data?: undefined;
22245
+ meta?: {} | undefined;
22246
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22247
+ currentData?: PaginatedSearchResults | undefined;
22248
+ isUninitialized: false;
22249
+ isLoading: false;
22250
+ isFetching: false;
22251
+ isSuccess: false;
22252
+ isError: false;
22253
+ }, "error" | "isError"> & {
22254
+ isError: true;
22255
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22256
+ baseQueryType?: BaseQueryTypes;
22257
+ apiName?: string;
22258
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22259
+ }) => {
22260
+ error?: undefined;
22261
+ data: unknown;
22262
+ meta?: {} | undefined;
22263
+ } | {
22264
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22265
+ data?: undefined;
22266
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22267
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22268
+ error: graphql.GraphQLError[] | undefined;
22269
+ data?: undefined;
22270
+ meta?: {} | undefined;
22271
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22272
+ currentData?: PaginatedSearchResults | undefined;
22273
+ isUninitialized: false;
22274
+ isLoading: false;
22275
+ isFetching: false;
22276
+ isSuccess: false;
22277
+ isError: false;
22278
+ }, "error">>)> & {
22279
+ status: _reduxjs_toolkit_query.QueryStatus;
22280
+ }) => R) | undefined;
22281
+ }) | undefined) => R & {
22282
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22283
+ baseQueryType?: BaseQueryTypes;
22284
+ apiName?: string;
22285
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22286
+ }) => {
22287
+ error?: undefined;
22288
+ data: unknown;
22289
+ meta?: {} | undefined;
22290
+ } | {
22291
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22292
+ data?: undefined;
22293
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22294
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22295
+ error: graphql.GraphQLError[] | undefined;
22296
+ data?: undefined;
22297
+ meta?: {} | undefined;
22298
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>;
22299
+ };
22300
+ declare const useLazySearchQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22301
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22302
+ originalArgs?: undefined | undefined;
22303
+ data?: undefined | undefined;
22304
+ error?: undefined | undefined;
22305
+ requestId?: undefined | undefined;
22306
+ endpointName?: string | undefined;
22307
+ startedTimeStamp?: undefined | undefined;
22308
+ fulfilledTimeStamp?: undefined | undefined;
22309
+ } & {
22310
+ currentData?: PaginatedSearchResults | undefined;
22311
+ isUninitialized: false;
22312
+ isLoading: false;
22313
+ isFetching: false;
22314
+ isSuccess: false;
22315
+ isError: false;
22316
+ }, "isUninitialized"> & {
22317
+ isUninitialized: true;
22318
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22319
+ baseQueryType?: BaseQueryTypes;
22320
+ apiName?: string;
22321
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22322
+ }) => {
22323
+ error?: undefined;
22324
+ data: unknown;
22325
+ meta?: {} | undefined;
22326
+ } | {
22327
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22328
+ data?: undefined;
22329
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22330
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22331
+ error: graphql.GraphQLError[] | undefined;
22332
+ data?: undefined;
22333
+ meta?: {} | undefined;
22334
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22335
+ currentData?: PaginatedSearchResults | undefined;
22336
+ isUninitialized: false;
22337
+ isLoading: false;
22338
+ isFetching: false;
22339
+ isSuccess: false;
22340
+ isError: false;
22341
+ }, "data" | "isLoading" | "isFetching"> & {
22342
+ isLoading: true;
22343
+ isFetching: boolean;
22344
+ data: undefined;
22345
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22346
+ baseQueryType?: BaseQueryTypes;
22347
+ apiName?: string;
22348
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22349
+ }) => {
22350
+ error?: undefined;
22351
+ data: unknown;
22352
+ meta?: {} | undefined;
22353
+ } | {
22354
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22355
+ data?: undefined;
22356
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22357
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22358
+ error: graphql.GraphQLError[] | undefined;
22359
+ data?: undefined;
22360
+ meta?: {} | undefined;
22361
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22362
+ currentData?: PaginatedSearchResults | undefined;
22363
+ isUninitialized: false;
22364
+ isLoading: false;
22365
+ isFetching: false;
22366
+ isSuccess: false;
22367
+ isError: false;
22368
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22369
+ isSuccess: true;
22370
+ isFetching: true;
22371
+ error: undefined;
22372
+ } & {
22373
+ data: PaginatedSearchResults;
22374
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22375
+ baseQueryType?: BaseQueryTypes;
22376
+ apiName?: string;
22377
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22378
+ }) => {
22379
+ error?: undefined;
22380
+ data: unknown;
22381
+ meta?: {} | undefined;
22382
+ } | {
22383
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22384
+ data?: undefined;
22385
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22386
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22387
+ error: graphql.GraphQLError[] | undefined;
22388
+ data?: undefined;
22389
+ meta?: {} | undefined;
22390
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22391
+ currentData?: PaginatedSearchResults | undefined;
22392
+ isUninitialized: false;
22393
+ isLoading: false;
22394
+ isFetching: false;
22395
+ isSuccess: false;
22396
+ isError: false;
22397
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22398
+ baseQueryType?: BaseQueryTypes;
22399
+ apiName?: string;
22400
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22401
+ }) => {
22402
+ error?: undefined;
22403
+ data: unknown;
22404
+ meta?: {} | undefined;
22405
+ } | {
22406
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22407
+ data?: undefined;
22408
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22409
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22410
+ error: graphql.GraphQLError[] | undefined;
22411
+ data?: undefined;
22412
+ meta?: {} | undefined;
22413
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22414
+ currentData?: PaginatedSearchResults | undefined;
22415
+ isUninitialized: false;
22416
+ isLoading: false;
22417
+ isFetching: false;
22418
+ isSuccess: false;
22419
+ isError: false;
22420
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
22421
+ isSuccess: true;
22422
+ isFetching: false;
22423
+ error: undefined;
22424
+ } & {
22425
+ data: PaginatedSearchResults;
22426
+ currentData: PaginatedSearchResults;
22427
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22428
+ baseQueryType?: BaseQueryTypes;
22429
+ apiName?: string;
22430
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22431
+ }) => {
22432
+ error?: undefined;
22433
+ data: unknown;
22434
+ meta?: {} | undefined;
22435
+ } | {
22436
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22437
+ data?: undefined;
22438
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22439
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22440
+ error: graphql.GraphQLError[] | undefined;
22441
+ data?: undefined;
22442
+ meta?: {} | undefined;
22443
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22444
+ currentData?: PaginatedSearchResults | undefined;
22445
+ isUninitialized: false;
22446
+ isLoading: false;
22447
+ isFetching: false;
22448
+ isSuccess: false;
22449
+ isError: false;
22450
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22451
+ baseQueryType?: BaseQueryTypes;
22452
+ apiName?: string;
22453
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22454
+ }) => {
22455
+ error?: undefined;
22456
+ data: unknown;
22457
+ meta?: {} | undefined;
22458
+ } | {
22459
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22460
+ data?: undefined;
22461
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22462
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22463
+ error: graphql.GraphQLError[] | undefined;
22464
+ data?: undefined;
22465
+ meta?: {} | undefined;
22466
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22467
+ currentData?: PaginatedSearchResults | undefined;
22468
+ isUninitialized: false;
22469
+ isLoading: false;
22470
+ isFetching: false;
22471
+ isSuccess: false;
22472
+ isError: false;
22473
+ }, "error" | "isError"> & {
22474
+ isError: true;
22475
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22476
+ baseQueryType?: BaseQueryTypes;
22477
+ apiName?: string;
22478
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22479
+ }) => {
22480
+ error?: undefined;
22481
+ data: unknown;
22482
+ meta?: {} | undefined;
22483
+ } | {
22484
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22485
+ data?: undefined;
22486
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22487
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22488
+ error: graphql.GraphQLError[] | undefined;
22489
+ data?: undefined;
22490
+ meta?: {} | undefined;
22491
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22492
+ currentData?: PaginatedSearchResults | undefined;
22493
+ isUninitialized: false;
22494
+ isLoading: false;
22495
+ isFetching: false;
22496
+ isSuccess: false;
22497
+ isError: false;
22498
+ }, "error">>)> & {
22499
+ status: _reduxjs_toolkit_query.QueryStatus;
22500
+ }>(options?: (_reduxjs_toolkit_query.SubscriptionOptions & Omit<{
22501
+ skip?: boolean;
22502
+ selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22503
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22504
+ originalArgs?: undefined | undefined;
22505
+ data?: undefined | undefined;
22506
+ error?: undefined | undefined;
22507
+ requestId?: undefined | undefined;
22508
+ endpointName?: string | undefined;
22509
+ startedTimeStamp?: undefined | undefined;
22510
+ fulfilledTimeStamp?: undefined | undefined;
22511
+ } & {
22512
+ currentData?: PaginatedSearchResults | undefined;
22513
+ isUninitialized: false;
22514
+ isLoading: false;
22515
+ isFetching: false;
22516
+ isSuccess: false;
22517
+ isError: false;
22518
+ }, "isUninitialized"> & {
22519
+ isUninitialized: true;
22520
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22521
+ baseQueryType?: BaseQueryTypes;
22522
+ apiName?: string;
22523
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22524
+ }) => {
22525
+ error?: undefined;
22526
+ data: unknown;
22527
+ meta?: {} | undefined;
22528
+ } | {
22529
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22530
+ data?: undefined;
22531
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22532
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22533
+ error: graphql.GraphQLError[] | undefined;
22534
+ data?: undefined;
22535
+ meta?: {} | undefined;
22536
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22537
+ currentData?: PaginatedSearchResults | undefined;
22538
+ isUninitialized: false;
22539
+ isLoading: false;
22540
+ isFetching: false;
22541
+ isSuccess: false;
22542
+ isError: false;
22543
+ }, "data" | "isLoading" | "isFetching"> & {
22544
+ isLoading: true;
22545
+ isFetching: boolean;
22546
+ data: undefined;
22547
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22548
+ baseQueryType?: BaseQueryTypes;
22549
+ apiName?: string;
22550
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22551
+ }) => {
22552
+ error?: undefined;
22553
+ data: unknown;
22554
+ meta?: {} | undefined;
22555
+ } | {
22556
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22557
+ data?: undefined;
22558
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22559
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22560
+ error: graphql.GraphQLError[] | undefined;
22561
+ data?: undefined;
22562
+ meta?: {} | undefined;
22563
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22564
+ currentData?: PaginatedSearchResults | undefined;
22565
+ isUninitialized: false;
22566
+ isLoading: false;
22567
+ isFetching: false;
22568
+ isSuccess: false;
22569
+ isError: false;
22570
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22571
+ isSuccess: true;
22572
+ isFetching: true;
22573
+ error: undefined;
22574
+ } & {
22575
+ data: PaginatedSearchResults;
22576
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22577
+ baseQueryType?: BaseQueryTypes;
22578
+ apiName?: string;
22579
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22580
+ }) => {
22581
+ error?: undefined;
22582
+ data: unknown;
22583
+ meta?: {} | undefined;
22584
+ } | {
22585
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22586
+ data?: undefined;
22587
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22588
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22589
+ error: graphql.GraphQLError[] | undefined;
22590
+ data?: undefined;
22591
+ meta?: {} | undefined;
22592
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22593
+ currentData?: PaginatedSearchResults | undefined;
22594
+ isUninitialized: false;
22595
+ isLoading: false;
22596
+ isFetching: false;
22597
+ isSuccess: false;
22598
+ isError: false;
22599
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22600
+ baseQueryType?: BaseQueryTypes;
22601
+ apiName?: string;
22602
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22603
+ }) => {
22604
+ error?: undefined;
22605
+ data: unknown;
22606
+ meta?: {} | undefined;
22607
+ } | {
22608
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22609
+ data?: undefined;
22610
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22611
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22612
+ error: graphql.GraphQLError[] | undefined;
22613
+ data?: undefined;
22614
+ meta?: {} | undefined;
22615
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22616
+ currentData?: PaginatedSearchResults | undefined;
22617
+ isUninitialized: false;
22618
+ isLoading: false;
22619
+ isFetching: false;
22620
+ isSuccess: false;
22621
+ isError: false;
22622
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
22623
+ isSuccess: true;
22624
+ isFetching: false;
22625
+ error: undefined;
22626
+ } & {
22627
+ data: PaginatedSearchResults;
22628
+ currentData: PaginatedSearchResults;
22629
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22630
+ baseQueryType?: BaseQueryTypes;
22631
+ apiName?: string;
22632
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22633
+ }) => {
22634
+ error?: undefined;
22635
+ data: unknown;
22636
+ meta?: {} | undefined;
22637
+ } | {
22638
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22639
+ data?: undefined;
22640
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22641
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22642
+ error: graphql.GraphQLError[] | undefined;
22643
+ data?: undefined;
22644
+ meta?: {} | undefined;
22645
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22646
+ currentData?: PaginatedSearchResults | undefined;
22647
+ isUninitialized: false;
22648
+ isLoading: false;
22649
+ isFetching: false;
22650
+ isSuccess: false;
22651
+ isError: false;
22652
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22653
+ baseQueryType?: BaseQueryTypes;
22654
+ apiName?: string;
22655
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22656
+ }) => {
22657
+ error?: undefined;
22658
+ data: unknown;
22659
+ meta?: {} | undefined;
22660
+ } | {
22661
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22662
+ data?: undefined;
22663
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22664
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22665
+ error: graphql.GraphQLError[] | undefined;
22666
+ data?: undefined;
22667
+ meta?: {} | undefined;
22668
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22669
+ currentData?: PaginatedSearchResults | undefined;
22670
+ isUninitialized: false;
22671
+ isLoading: false;
22672
+ isFetching: false;
22673
+ isSuccess: false;
22674
+ isError: false;
22675
+ }, "error" | "isError"> & {
22676
+ isError: true;
22677
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22678
+ baseQueryType?: BaseQueryTypes;
22679
+ apiName?: string;
22680
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22681
+ }) => {
22682
+ error?: undefined;
22683
+ data: unknown;
22684
+ meta?: {} | undefined;
22685
+ } | {
22686
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22687
+ data?: undefined;
22688
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22689
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22690
+ error: graphql.GraphQLError[] | undefined;
22691
+ data?: undefined;
22692
+ meta?: {} | undefined;
22693
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22694
+ currentData?: PaginatedSearchResults | undefined;
22695
+ isUninitialized: false;
22696
+ isLoading: false;
22697
+ isFetching: false;
22698
+ isSuccess: false;
22699
+ isError: false;
22700
+ }, "error">>)> & {
22701
+ status: _reduxjs_toolkit_query.QueryStatus;
22702
+ }) => R) | undefined;
22703
+ }, "skip">) | undefined) => [(arg: SearchPayload, preferCacheValue?: boolean) => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22704
+ baseQueryType?: BaseQueryTypes;
22705
+ apiName?: string;
22706
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22707
+ }) => {
22708
+ error?: undefined;
22709
+ data: unknown;
22710
+ meta?: {} | undefined;
22711
+ } | {
22712
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22713
+ data?: undefined;
22714
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22715
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22716
+ error: graphql.GraphQLError[] | undefined;
22717
+ data?: undefined;
22718
+ meta?: {} | undefined;
22719
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>, R & {
22720
+ reset: () => void;
22721
+ }, {
22722
+ lastArg: SearchPayload;
22723
+ }];
22724
+ declare const useSearchWithPaginationMutation: <R extends Record<string, any> = ({
22725
+ requestId?: undefined;
22726
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22727
+ data?: undefined;
22728
+ error?: undefined;
22729
+ endpointName?: string;
22730
+ startedTimeStamp?: undefined;
22731
+ fulfilledTimeStamp?: undefined;
22732
+ } & {
22733
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22734
+ isUninitialized: true;
22735
+ isLoading: false;
22736
+ isSuccess: false;
22737
+ isError: false;
22738
+ }) | ({
22739
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22740
+ } & Omit<{
22741
+ requestId: string;
22742
+ data?: PaginatedSearchResults | undefined;
22743
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22744
+ endpointName: string;
22745
+ startedTimeStamp: number;
22746
+ fulfilledTimeStamp?: number;
22747
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
22748
+ requestId: string;
22749
+ data?: PaginatedSearchResults | undefined;
22750
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22751
+ endpointName: string;
22752
+ startedTimeStamp: number;
22753
+ fulfilledTimeStamp?: number;
22754
+ }, "data" | "fulfilledTimeStamp">> & {
22755
+ error: undefined;
22756
+ } & {
22757
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22758
+ isUninitialized: false;
22759
+ isLoading: false;
22760
+ isSuccess: true;
22761
+ isError: false;
22762
+ }) | ({
22763
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
22764
+ } & {
22765
+ requestId: string;
22766
+ data?: PaginatedSearchResults | undefined;
22767
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22768
+ endpointName: string;
22769
+ startedTimeStamp: number;
22770
+ fulfilledTimeStamp?: number;
22771
+ } & {
22772
+ data?: undefined;
22773
+ } & {
22774
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
22775
+ isUninitialized: false;
22776
+ isLoading: true;
22777
+ isSuccess: false;
22778
+ isError: false;
22779
+ }) | ({
22780
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22781
+ } & Omit<{
22782
+ requestId: string;
22783
+ data?: PaginatedSearchResults | undefined;
22784
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22785
+ endpointName: string;
22786
+ startedTimeStamp: number;
22787
+ fulfilledTimeStamp?: number;
22788
+ }, "error"> & Required<Pick<{
22789
+ requestId: string;
22790
+ data?: PaginatedSearchResults | undefined;
22791
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22792
+ endpointName: string;
22793
+ startedTimeStamp: number;
22794
+ fulfilledTimeStamp?: number;
22795
+ }, "error">> & {
22796
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22797
+ isUninitialized: false;
22798
+ isLoading: false;
22799
+ isSuccess: false;
22800
+ isError: true;
22801
+ })>(options?: {
22802
+ selectFromResult?: ((state: ({
22803
+ requestId?: undefined;
22804
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22805
+ data?: undefined;
22806
+ error?: undefined;
22807
+ endpointName?: string;
22808
+ startedTimeStamp?: undefined;
22809
+ fulfilledTimeStamp?: undefined;
22810
+ } & {
22811
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22812
+ isUninitialized: true;
22813
+ isLoading: false;
22814
+ isSuccess: false;
22815
+ isError: false;
22816
+ }) | ({
22817
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22818
+ } & Omit<{
22819
+ requestId: string;
22820
+ data?: PaginatedSearchResults | undefined;
22821
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22822
+ endpointName: string;
22823
+ startedTimeStamp: number;
22824
+ fulfilledTimeStamp?: number;
22825
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
22826
+ requestId: string;
22827
+ data?: PaginatedSearchResults | undefined;
22828
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22829
+ endpointName: string;
22830
+ startedTimeStamp: number;
22831
+ fulfilledTimeStamp?: number;
22832
+ }, "data" | "fulfilledTimeStamp">> & {
22833
+ error: undefined;
22834
+ } & {
22835
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22836
+ isUninitialized: false;
22837
+ isLoading: false;
22838
+ isSuccess: true;
22839
+ isError: false;
22840
+ }) | ({
22841
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
22842
+ } & {
22843
+ requestId: string;
22844
+ data?: PaginatedSearchResults | undefined;
22845
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22846
+ endpointName: string;
22847
+ startedTimeStamp: number;
22848
+ fulfilledTimeStamp?: number;
22849
+ } & {
22850
+ data?: undefined;
22851
+ } & {
22852
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
22853
+ isUninitialized: false;
22854
+ isLoading: true;
22855
+ isSuccess: false;
22856
+ isError: false;
22857
+ }) | ({
22858
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22859
+ } & Omit<{
22860
+ requestId: string;
22861
+ data?: PaginatedSearchResults | undefined;
22862
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22863
+ endpointName: string;
22864
+ startedTimeStamp: number;
22865
+ fulfilledTimeStamp?: number;
22866
+ }, "error"> & Required<Pick<{
22867
+ requestId: string;
22868
+ data?: PaginatedSearchResults | undefined;
22869
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22870
+ endpointName: string;
22871
+ startedTimeStamp: number;
22872
+ fulfilledTimeStamp?: number;
22873
+ }, "error">> & {
22874
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22875
+ isUninitialized: false;
22876
+ isLoading: false;
22877
+ isSuccess: false;
22878
+ isError: true;
22879
+ })) => R) | undefined;
22880
+ fixedCacheKey?: string;
22881
+ } | undefined) => readonly [(arg: SearchPaginationPayload) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SearchPaginationPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22882
+ baseQueryType?: BaseQueryTypes;
22883
+ apiName?: string;
22884
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22885
+ }) => {
22886
+ error?: undefined;
22887
+ data: unknown;
22888
+ meta?: {} | undefined;
22889
+ } | {
22890
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22891
+ data?: undefined;
22892
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22893
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22894
+ error: graphql.GraphQLError[] | undefined;
22895
+ data?: undefined;
22896
+ meta?: {} | undefined;
22897
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>, R & {
22898
+ originalArgs?: SearchPaginationPayload | undefined;
22899
+ reset: () => void;
22900
+ }];
22901
+ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22902
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22903
+ originalArgs?: undefined | undefined;
22904
+ data?: undefined | undefined;
22905
+ error?: undefined | undefined;
22906
+ requestId?: undefined | undefined;
22907
+ endpointName?: string | undefined;
22908
+ startedTimeStamp?: undefined | undefined;
22909
+ fulfilledTimeStamp?: undefined | undefined;
22910
+ } & {
22911
+ currentData?: PathAutocompleteResponse | undefined;
22912
+ isUninitialized: false;
22913
+ isLoading: false;
22914
+ isFetching: false;
22915
+ isSuccess: false;
22916
+ isError: false;
22917
+ }, "isUninitialized"> & {
22918
+ isUninitialized: true;
22919
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22920
+ q: string;
22921
+ entity_type: EntityKind;
22922
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22923
+ baseQueryType?: BaseQueryTypes;
22924
+ apiName?: string;
22925
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22926
+ }) => {
22927
+ error?: undefined;
22928
+ data: unknown;
22929
+ meta?: {} | undefined;
22930
+ } | {
22931
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22932
+ data?: undefined;
22933
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22934
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22935
+ error: graphql.GraphQLError[] | undefined;
22936
+ data?: undefined;
22937
+ meta?: {} | undefined;
22938
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22939
+ currentData?: PathAutocompleteResponse | undefined;
22940
+ isUninitialized: false;
22941
+ isLoading: false;
22942
+ isFetching: false;
22943
+ isSuccess: false;
22944
+ isError: false;
22945
+ }, "data" | "isLoading" | "isFetching"> & {
22946
+ isLoading: true;
22947
+ isFetching: boolean;
22948
+ data: undefined;
22949
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22950
+ q: string;
22951
+ entity_type: EntityKind;
22952
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22953
+ baseQueryType?: BaseQueryTypes;
22954
+ apiName?: string;
22955
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22956
+ }) => {
22957
+ error?: undefined;
22958
+ data: unknown;
22959
+ meta?: {} | undefined;
22960
+ } | {
22961
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22962
+ data?: undefined;
22963
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22964
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22965
+ error: graphql.GraphQLError[] | undefined;
22966
+ data?: undefined;
22967
+ meta?: {} | undefined;
22968
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22969
+ currentData?: PathAutocompleteResponse | undefined;
22970
+ isUninitialized: false;
22971
+ isLoading: false;
22972
+ isFetching: false;
22973
+ isSuccess: false;
22974
+ isError: false;
22975
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22976
+ isSuccess: true;
22977
+ isFetching: true;
22978
+ error: undefined;
22979
+ } & {
22980
+ data: PathAutocompleteResponse;
22981
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22982
+ q: string;
22983
+ entity_type: EntityKind;
22984
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22985
+ baseQueryType?: BaseQueryTypes;
22986
+ apiName?: string;
22987
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22988
+ }) => {
22989
+ error?: undefined;
22990
+ data: unknown;
22991
+ meta?: {} | undefined;
22992
+ } | {
22993
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22994
+ data?: undefined;
22995
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22996
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22997
+ error: graphql.GraphQLError[] | undefined;
22998
+ data?: undefined;
22999
+ meta?: {} | undefined;
23000
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23001
+ currentData?: PathAutocompleteResponse | undefined;
23002
+ isUninitialized: false;
23003
+ isLoading: false;
23004
+ isFetching: false;
23005
+ isSuccess: false;
23006
+ isError: false;
23007
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23008
+ q: string;
23009
+ entity_type: EntityKind;
23010
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23011
+ baseQueryType?: BaseQueryTypes;
23012
+ apiName?: string;
23013
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23014
+ }) => {
23015
+ error?: undefined;
23016
+ data: unknown;
23017
+ meta?: {} | undefined;
23018
+ } | {
23019
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23020
+ data?: undefined;
23021
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23022
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23023
+ error: graphql.GraphQLError[] | undefined;
23024
+ data?: undefined;
23025
+ meta?: {} | undefined;
23026
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23027
+ currentData?: PathAutocompleteResponse | undefined;
23028
+ isUninitialized: false;
23029
+ isLoading: false;
23030
+ isFetching: false;
23031
+ isSuccess: false;
23032
+ isError: false;
23033
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
23034
+ isSuccess: true;
23035
+ isFetching: false;
23036
+ error: undefined;
23037
+ } & {
23038
+ data: PathAutocompleteResponse;
23039
+ currentData: PathAutocompleteResponse;
23040
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23041
+ q: string;
23042
+ entity_type: EntityKind;
23043
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23044
+ baseQueryType?: BaseQueryTypes;
23045
+ apiName?: string;
23046
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23047
+ }) => {
23048
+ error?: undefined;
23049
+ data: unknown;
23050
+ meta?: {} | undefined;
23051
+ } | {
23052
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23053
+ data?: undefined;
23054
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23055
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23056
+ error: graphql.GraphQLError[] | undefined;
23057
+ data?: undefined;
23058
+ meta?: {} | undefined;
23059
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23060
+ currentData?: PathAutocompleteResponse | undefined;
23061
+ isUninitialized: false;
23062
+ isLoading: false;
23063
+ isFetching: false;
23064
+ isSuccess: false;
23065
+ isError: false;
23066
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23067
+ q: string;
23068
+ entity_type: EntityKind;
23069
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23070
+ baseQueryType?: BaseQueryTypes;
23071
+ apiName?: string;
23072
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23073
+ }) => {
23074
+ error?: undefined;
23075
+ data: unknown;
23076
+ meta?: {} | undefined;
23077
+ } | {
23078
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23079
+ data?: undefined;
23080
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23081
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23082
+ error: graphql.GraphQLError[] | undefined;
23083
+ data?: undefined;
23084
+ meta?: {} | undefined;
23085
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23086
+ currentData?: PathAutocompleteResponse | undefined;
23087
+ isUninitialized: false;
23088
+ isLoading: false;
23089
+ isFetching: false;
23090
+ isSuccess: false;
23091
+ isError: false;
23092
+ }, "error" | "isError"> & {
23093
+ isError: true;
23094
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23095
+ q: string;
23096
+ entity_type: EntityKind;
23097
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23098
+ baseQueryType?: BaseQueryTypes;
23099
+ apiName?: string;
23100
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23101
+ }) => {
23102
+ error?: undefined;
23103
+ data: unknown;
23104
+ meta?: {} | undefined;
23105
+ } | {
23106
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23107
+ data?: undefined;
23108
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23109
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23110
+ error: graphql.GraphQLError[] | undefined;
23111
+ data?: undefined;
23112
+ meta?: {} | undefined;
23113
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23114
+ currentData?: PathAutocompleteResponse | undefined;
23115
+ isUninitialized: false;
23116
+ isLoading: false;
23117
+ isFetching: false;
23118
+ isSuccess: false;
23119
+ isError: false;
23120
+ }, "error">>)> & {
23121
+ status: _reduxjs_toolkit_query.QueryStatus;
23122
+ }>(arg: typeof _reduxjs_toolkit_query.skipToken | {
23123
+ q: string;
23124
+ entity_type: EntityKind;
23125
+ }, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
23126
+ skip?: boolean;
23127
+ refetchOnMountOrArgChange?: boolean | number;
23128
+ } & {
23129
+ skip?: boolean;
23130
+ selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
23131
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
23132
+ originalArgs?: undefined | undefined;
23133
+ data?: undefined | undefined;
23134
+ error?: undefined | undefined;
23135
+ requestId?: undefined | undefined;
23136
+ endpointName?: string | undefined;
23137
+ startedTimeStamp?: undefined | undefined;
23138
+ fulfilledTimeStamp?: undefined | undefined;
22101
23139
  } & {
22102
- requestId: string;
22103
- data?: PaginatedSearchResults | undefined;
22104
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22105
- endpointName: string;
22106
- startedTimeStamp: number;
22107
- fulfilledTimeStamp?: number;
23140
+ currentData?: PathAutocompleteResponse | undefined;
23141
+ isUninitialized: false;
23142
+ isLoading: false;
23143
+ isFetching: false;
23144
+ isSuccess: false;
23145
+ isError: false;
23146
+ }, "isUninitialized"> & {
23147
+ isUninitialized: true;
23148
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23149
+ q: string;
23150
+ entity_type: EntityKind;
23151
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23152
+ baseQueryType?: BaseQueryTypes;
23153
+ apiName?: string;
23154
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23155
+ }) => {
23156
+ error?: undefined;
23157
+ data: unknown;
23158
+ meta?: {} | undefined;
23159
+ } | {
23160
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23161
+ data?: undefined;
23162
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23163
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23164
+ error: graphql.GraphQLError[] | undefined;
23165
+ data?: undefined;
23166
+ meta?: {} | undefined;
23167
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23168
+ currentData?: PathAutocompleteResponse | undefined;
23169
+ isUninitialized: false;
23170
+ isLoading: false;
23171
+ isFetching: false;
23172
+ isSuccess: false;
23173
+ isError: false;
23174
+ }, "data" | "isLoading" | "isFetching"> & {
23175
+ isLoading: true;
23176
+ isFetching: boolean;
23177
+ data: undefined;
23178
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23179
+ q: string;
23180
+ entity_type: EntityKind;
23181
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23182
+ baseQueryType?: BaseQueryTypes;
23183
+ apiName?: string;
23184
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23185
+ }) => {
23186
+ error?: undefined;
23187
+ data: unknown;
23188
+ meta?: {} | undefined;
23189
+ } | {
23190
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23191
+ data?: undefined;
23192
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23193
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23194
+ error: graphql.GraphQLError[] | undefined;
23195
+ data?: undefined;
23196
+ meta?: {} | undefined;
23197
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23198
+ currentData?: PathAutocompleteResponse | undefined;
23199
+ isUninitialized: false;
23200
+ isLoading: false;
23201
+ isFetching: false;
23202
+ isSuccess: false;
23203
+ isError: false;
23204
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
23205
+ isSuccess: true;
23206
+ isFetching: true;
23207
+ error: undefined;
23208
+ } & {
23209
+ data: PathAutocompleteResponse;
23210
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23211
+ q: string;
23212
+ entity_type: EntityKind;
23213
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23214
+ baseQueryType?: BaseQueryTypes;
23215
+ apiName?: string;
23216
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23217
+ }) => {
23218
+ error?: undefined;
23219
+ data: unknown;
23220
+ meta?: {} | undefined;
23221
+ } | {
23222
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23223
+ data?: undefined;
23224
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23225
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23226
+ error: graphql.GraphQLError[] | undefined;
23227
+ data?: undefined;
23228
+ meta?: {} | undefined;
23229
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23230
+ currentData?: PathAutocompleteResponse | undefined;
23231
+ isUninitialized: false;
23232
+ isLoading: false;
23233
+ isFetching: false;
23234
+ isSuccess: false;
23235
+ isError: false;
23236
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23237
+ q: string;
23238
+ entity_type: EntityKind;
23239
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23240
+ baseQueryType?: BaseQueryTypes;
23241
+ apiName?: string;
23242
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23243
+ }) => {
23244
+ error?: undefined;
23245
+ data: unknown;
23246
+ meta?: {} | undefined;
23247
+ } | {
23248
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23249
+ data?: undefined;
23250
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23251
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23252
+ error: graphql.GraphQLError[] | undefined;
23253
+ data?: undefined;
23254
+ meta?: {} | undefined;
23255
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23256
+ currentData?: PathAutocompleteResponse | undefined;
23257
+ isUninitialized: false;
23258
+ isLoading: false;
23259
+ isFetching: false;
23260
+ isSuccess: false;
23261
+ isError: false;
23262
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
23263
+ isSuccess: true;
23264
+ isFetching: false;
23265
+ error: undefined;
22108
23266
  } & {
23267
+ data: PathAutocompleteResponse;
23268
+ currentData: PathAutocompleteResponse;
23269
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23270
+ q: string;
23271
+ entity_type: EntityKind;
23272
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23273
+ baseQueryType?: BaseQueryTypes;
23274
+ apiName?: string;
23275
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23276
+ }) => {
23277
+ error?: undefined;
23278
+ data: unknown;
23279
+ meta?: {} | undefined;
23280
+ } | {
23281
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23282
+ data?: undefined;
23283
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23284
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23285
+ error: graphql.GraphQLError[] | undefined;
23286
+ data?: undefined;
23287
+ meta?: {} | undefined;
23288
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23289
+ currentData?: PathAutocompleteResponse | undefined;
23290
+ isUninitialized: false;
23291
+ isLoading: false;
23292
+ isFetching: false;
23293
+ isSuccess: false;
23294
+ isError: false;
23295
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23296
+ q: string;
23297
+ entity_type: EntityKind;
23298
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23299
+ baseQueryType?: BaseQueryTypes;
23300
+ apiName?: string;
23301
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23302
+ }) => {
23303
+ error?: undefined;
23304
+ data: unknown;
23305
+ meta?: {} | undefined;
23306
+ } | {
23307
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22109
23308
  data?: undefined;
22110
- } & {
22111
- status: _reduxjs_toolkit_query.QueryStatus.pending;
23309
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23310
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23311
+ error: graphql.GraphQLError[] | undefined;
23312
+ data?: undefined;
23313
+ meta?: {} | undefined;
23314
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23315
+ currentData?: PathAutocompleteResponse | undefined;
22112
23316
  isUninitialized: false;
22113
- isLoading: true;
23317
+ isLoading: false;
23318
+ isFetching: false;
22114
23319
  isSuccess: false;
22115
23320
  isError: false;
22116
- }) | ({
22117
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
22118
- } & Omit<{
22119
- requestId: string;
22120
- data?: PaginatedSearchResults | undefined;
22121
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22122
- endpointName: string;
22123
- startedTimeStamp: number;
22124
- fulfilledTimeStamp?: number;
22125
- }, "error"> & Required<Pick<{
22126
- requestId: string;
22127
- data?: PaginatedSearchResults | undefined;
22128
- error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22129
- endpointName: string;
22130
- startedTimeStamp: number;
22131
- fulfilledTimeStamp?: number;
22132
- }, "error">> & {
22133
- status: _reduxjs_toolkit_query.QueryStatus.rejected;
23321
+ }, "error" | "isError"> & {
23322
+ isError: true;
23323
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23324
+ q: string;
23325
+ entity_type: EntityKind;
23326
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23327
+ baseQueryType?: BaseQueryTypes;
23328
+ apiName?: string;
23329
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23330
+ }) => {
23331
+ error?: undefined;
23332
+ data: unknown;
23333
+ meta?: {} | undefined;
23334
+ } | {
23335
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23336
+ data?: undefined;
23337
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23338
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23339
+ error: graphql.GraphQLError[] | undefined;
23340
+ data?: undefined;
23341
+ meta?: {} | undefined;
23342
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23343
+ currentData?: PathAutocompleteResponse | undefined;
22134
23344
  isUninitialized: false;
22135
23345
  isLoading: false;
23346
+ isFetching: false;
22136
23347
  isSuccess: false;
22137
- isError: true;
22138
- })) => R) | undefined;
22139
- fixedCacheKey?: string;
22140
- } | undefined) => readonly [(arg: SearchPaginationPayload) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SearchPaginationPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22141
- baseQueryType?: BaseQueryTypes;
22142
- apiName?: string;
22143
- paramsSerializer?: (params: Record<string, unknown>) => string;
22144
- }) => {
22145
- error?: undefined;
22146
- data: unknown;
22147
- meta?: {} | undefined;
22148
- } | {
22149
- error: _reduxjs_toolkit_query.FetchBaseQueryError;
22150
- data?: undefined;
22151
- meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22152
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22153
- error: graphql.GraphQLError[] | undefined;
22154
- data?: undefined;
22155
- meta?: {} | undefined;
22156
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>, R & {
22157
- originalArgs?: SearchPaginationPayload | undefined;
22158
- reset: () => void;
22159
- }];
22160
- declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
23348
+ isError: false;
23349
+ }, "error">>)> & {
23350
+ status: _reduxjs_toolkit_query.QueryStatus;
23351
+ }) => R) | undefined;
23352
+ }) | undefined) => R & {
23353
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
23354
+ q: string;
23355
+ entity_type: EntityKind;
23356
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23357
+ baseQueryType?: BaseQueryTypes;
23358
+ apiName?: string;
23359
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23360
+ }) => {
23361
+ error?: undefined;
23362
+ data: unknown;
23363
+ meta?: {} | undefined;
23364
+ } | {
23365
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23366
+ data?: undefined;
23367
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23368
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23369
+ error: graphql.GraphQLError[] | undefined;
23370
+ data?: undefined;
23371
+ meta?: {} | undefined;
23372
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>>;
23373
+ };
23374
+ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22161
23375
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22162
23376
  originalArgs?: undefined | undefined;
22163
23377
  data?: undefined | undefined;
@@ -22167,7 +23381,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22167
23381
  startedTimeStamp?: undefined | undefined;
22168
23382
  fulfilledTimeStamp?: undefined | undefined;
22169
23383
  } & {
22170
- currentData?: PathAutocompleteResponse | undefined;
23384
+ currentData?: SearchDefinitionsResponse | undefined;
22171
23385
  isUninitialized: false;
22172
23386
  isLoading: false;
22173
23387
  isFetching: false;
@@ -22175,10 +23389,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22175
23389
  isError: false;
22176
23390
  }, "isUninitialized"> & {
22177
23391
  isUninitialized: true;
22178
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22179
- q: string;
22180
- entity_type: EntityKind;
22181
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23392
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22182
23393
  baseQueryType?: BaseQueryTypes;
22183
23394
  apiName?: string;
22184
23395
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22194,8 +23405,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22194
23405
  error: graphql.GraphQLError[] | undefined;
22195
23406
  data?: undefined;
22196
23407
  meta?: {} | undefined;
22197
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22198
- currentData?: PathAutocompleteResponse | undefined;
23408
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23409
+ currentData?: SearchDefinitionsResponse | undefined;
22199
23410
  isUninitialized: false;
22200
23411
  isLoading: false;
22201
23412
  isFetching: false;
@@ -22205,10 +23416,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22205
23416
  isLoading: true;
22206
23417
  isFetching: boolean;
22207
23418
  data: undefined;
22208
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22209
- q: string;
22210
- entity_type: EntityKind;
22211
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23419
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22212
23420
  baseQueryType?: BaseQueryTypes;
22213
23421
  apiName?: string;
22214
23422
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22224,8 +23432,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22224
23432
  error: graphql.GraphQLError[] | undefined;
22225
23433
  data?: undefined;
22226
23434
  meta?: {} | undefined;
22227
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22228
- currentData?: PathAutocompleteResponse | undefined;
23435
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23436
+ currentData?: SearchDefinitionsResponse | undefined;
22229
23437
  isUninitialized: false;
22230
23438
  isLoading: false;
22231
23439
  isFetching: false;
@@ -22236,11 +23444,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22236
23444
  isFetching: true;
22237
23445
  error: undefined;
22238
23446
  } & {
22239
- data: PathAutocompleteResponse;
22240
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22241
- q: string;
22242
- entity_type: EntityKind;
22243
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23447
+ data: SearchDefinitionsResponse;
23448
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22244
23449
  baseQueryType?: BaseQueryTypes;
22245
23450
  apiName?: string;
22246
23451
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22256,17 +23461,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22256
23461
  error: graphql.GraphQLError[] | undefined;
22257
23462
  data?: undefined;
22258
23463
  meta?: {} | undefined;
22259
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22260
- currentData?: PathAutocompleteResponse | undefined;
23464
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23465
+ currentData?: SearchDefinitionsResponse | undefined;
22261
23466
  isUninitialized: false;
22262
23467
  isLoading: false;
22263
23468
  isFetching: false;
22264
23469
  isSuccess: false;
22265
23470
  isError: false;
22266
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22267
- q: string;
22268
- entity_type: EntityKind;
22269
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23471
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22270
23472
  baseQueryType?: BaseQueryTypes;
22271
23473
  apiName?: string;
22272
23474
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22282,8 +23484,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22282
23484
  error: graphql.GraphQLError[] | undefined;
22283
23485
  data?: undefined;
22284
23486
  meta?: {} | undefined;
22285
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22286
- currentData?: PathAutocompleteResponse | undefined;
23487
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23488
+ currentData?: SearchDefinitionsResponse | undefined;
22287
23489
  isUninitialized: false;
22288
23490
  isLoading: false;
22289
23491
  isFetching: false;
@@ -22294,12 +23496,9 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22294
23496
  isFetching: false;
22295
23497
  error: undefined;
22296
23498
  } & {
22297
- data: PathAutocompleteResponse;
22298
- currentData: PathAutocompleteResponse;
22299
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22300
- q: string;
22301
- entity_type: EntityKind;
22302
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23499
+ data: SearchDefinitionsResponse;
23500
+ currentData: SearchDefinitionsResponse;
23501
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22303
23502
  baseQueryType?: BaseQueryTypes;
22304
23503
  apiName?: string;
22305
23504
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22315,17 +23514,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22315
23514
  error: graphql.GraphQLError[] | undefined;
22316
23515
  data?: undefined;
22317
23516
  meta?: {} | undefined;
22318
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22319
- currentData?: PathAutocompleteResponse | undefined;
23517
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23518
+ currentData?: SearchDefinitionsResponse | undefined;
22320
23519
  isUninitialized: false;
22321
23520
  isLoading: false;
22322
23521
  isFetching: false;
22323
23522
  isSuccess: false;
22324
23523
  isError: false;
22325
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22326
- q: string;
22327
- entity_type: EntityKind;
22328
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23524
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22329
23525
  baseQueryType?: BaseQueryTypes;
22330
23526
  apiName?: string;
22331
23527
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22341,8 +23537,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22341
23537
  error: graphql.GraphQLError[] | undefined;
22342
23538
  data?: undefined;
22343
23539
  meta?: {} | undefined;
22344
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22345
- currentData?: PathAutocompleteResponse | undefined;
23540
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23541
+ currentData?: SearchDefinitionsResponse | undefined;
22346
23542
  isUninitialized: false;
22347
23543
  isLoading: false;
22348
23544
  isFetching: false;
@@ -22350,10 +23546,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22350
23546
  isError: false;
22351
23547
  }, "error" | "isError"> & {
22352
23548
  isError: true;
22353
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22354
- q: string;
22355
- entity_type: EntityKind;
22356
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23549
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22357
23550
  baseQueryType?: BaseQueryTypes;
22358
23551
  apiName?: string;
22359
23552
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22369,8 +23562,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22369
23562
  error: graphql.GraphQLError[] | undefined;
22370
23563
  data?: undefined;
22371
23564
  meta?: {} | undefined;
22372
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22373
- currentData?: PathAutocompleteResponse | undefined;
23565
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23566
+ currentData?: SearchDefinitionsResponse | undefined;
22374
23567
  isUninitialized: false;
22375
23568
  isLoading: false;
22376
23569
  isFetching: false;
@@ -22378,10 +23571,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22378
23571
  isError: false;
22379
23572
  }, "error">>)> & {
22380
23573
  status: _reduxjs_toolkit_query.QueryStatus;
22381
- }>(arg: typeof _reduxjs_toolkit_query.skipToken | {
22382
- q: string;
22383
- entity_type: EntityKind;
22384
- }, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
23574
+ }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
22385
23575
  skip?: boolean;
22386
23576
  refetchOnMountOrArgChange?: boolean | number;
22387
23577
  } & {
@@ -22396,7 +23586,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22396
23586
  startedTimeStamp?: undefined | undefined;
22397
23587
  fulfilledTimeStamp?: undefined | undefined;
22398
23588
  } & {
22399
- currentData?: PathAutocompleteResponse | undefined;
23589
+ currentData?: SearchDefinitionsResponse | undefined;
22400
23590
  isUninitialized: false;
22401
23591
  isLoading: false;
22402
23592
  isFetching: false;
@@ -22404,10 +23594,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22404
23594
  isError: false;
22405
23595
  }, "isUninitialized"> & {
22406
23596
  isUninitialized: true;
22407
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22408
- q: string;
22409
- entity_type: EntityKind;
22410
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23597
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22411
23598
  baseQueryType?: BaseQueryTypes;
22412
23599
  apiName?: string;
22413
23600
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22423,8 +23610,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22423
23610
  error: graphql.GraphQLError[] | undefined;
22424
23611
  data?: undefined;
22425
23612
  meta?: {} | undefined;
22426
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22427
- currentData?: PathAutocompleteResponse | undefined;
23613
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23614
+ currentData?: SearchDefinitionsResponse | undefined;
22428
23615
  isUninitialized: false;
22429
23616
  isLoading: false;
22430
23617
  isFetching: false;
@@ -22434,10 +23621,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22434
23621
  isLoading: true;
22435
23622
  isFetching: boolean;
22436
23623
  data: undefined;
22437
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22438
- q: string;
22439
- entity_type: EntityKind;
22440
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23624
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22441
23625
  baseQueryType?: BaseQueryTypes;
22442
23626
  apiName?: string;
22443
23627
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22453,8 +23637,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22453
23637
  error: graphql.GraphQLError[] | undefined;
22454
23638
  data?: undefined;
22455
23639
  meta?: {} | undefined;
22456
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22457
- currentData?: PathAutocompleteResponse | undefined;
23640
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23641
+ currentData?: SearchDefinitionsResponse | undefined;
22458
23642
  isUninitialized: false;
22459
23643
  isLoading: false;
22460
23644
  isFetching: false;
@@ -22465,11 +23649,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22465
23649
  isFetching: true;
22466
23650
  error: undefined;
22467
23651
  } & {
22468
- data: PathAutocompleteResponse;
22469
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22470
- q: string;
22471
- entity_type: EntityKind;
22472
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23652
+ data: SearchDefinitionsResponse;
23653
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22473
23654
  baseQueryType?: BaseQueryTypes;
22474
23655
  apiName?: string;
22475
23656
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22485,17 +23666,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22485
23666
  error: graphql.GraphQLError[] | undefined;
22486
23667
  data?: undefined;
22487
23668
  meta?: {} | undefined;
22488
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22489
- currentData?: PathAutocompleteResponse | undefined;
23669
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23670
+ currentData?: SearchDefinitionsResponse | undefined;
22490
23671
  isUninitialized: false;
22491
23672
  isLoading: false;
22492
23673
  isFetching: false;
22493
23674
  isSuccess: false;
22494
23675
  isError: false;
22495
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22496
- q: string;
22497
- entity_type: EntityKind;
22498
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23676
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22499
23677
  baseQueryType?: BaseQueryTypes;
22500
23678
  apiName?: string;
22501
23679
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22511,8 +23689,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22511
23689
  error: graphql.GraphQLError[] | undefined;
22512
23690
  data?: undefined;
22513
23691
  meta?: {} | undefined;
22514
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22515
- currentData?: PathAutocompleteResponse | undefined;
23692
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23693
+ currentData?: SearchDefinitionsResponse | undefined;
22516
23694
  isUninitialized: false;
22517
23695
  isLoading: false;
22518
23696
  isFetching: false;
@@ -22523,12 +23701,9 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22523
23701
  isFetching: false;
22524
23702
  error: undefined;
22525
23703
  } & {
22526
- data: PathAutocompleteResponse;
22527
- currentData: PathAutocompleteResponse;
22528
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22529
- q: string;
22530
- entity_type: EntityKind;
22531
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23704
+ data: SearchDefinitionsResponse;
23705
+ currentData: SearchDefinitionsResponse;
23706
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22532
23707
  baseQueryType?: BaseQueryTypes;
22533
23708
  apiName?: string;
22534
23709
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22544,17 +23719,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22544
23719
  error: graphql.GraphQLError[] | undefined;
22545
23720
  data?: undefined;
22546
23721
  meta?: {} | undefined;
22547
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22548
- currentData?: PathAutocompleteResponse | undefined;
23722
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23723
+ currentData?: SearchDefinitionsResponse | undefined;
22549
23724
  isUninitialized: false;
22550
23725
  isLoading: false;
22551
23726
  isFetching: false;
22552
23727
  isSuccess: false;
22553
23728
  isError: false;
22554
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22555
- q: string;
22556
- entity_type: EntityKind;
22557
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23729
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22558
23730
  baseQueryType?: BaseQueryTypes;
22559
23731
  apiName?: string;
22560
23732
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22570,8 +23742,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22570
23742
  error: graphql.GraphQLError[] | undefined;
22571
23743
  data?: undefined;
22572
23744
  meta?: {} | undefined;
22573
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22574
- currentData?: PathAutocompleteResponse | undefined;
23745
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23746
+ currentData?: SearchDefinitionsResponse | undefined;
22575
23747
  isUninitialized: false;
22576
23748
  isLoading: false;
22577
23749
  isFetching: false;
@@ -22579,10 +23751,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22579
23751
  isError: false;
22580
23752
  }, "error" | "isError"> & {
22581
23753
  isError: true;
22582
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22583
- q: string;
22584
- entity_type: EntityKind;
22585
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23754
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22586
23755
  baseQueryType?: BaseQueryTypes;
22587
23756
  apiName?: string;
22588
23757
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22598,8 +23767,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22598
23767
  error: graphql.GraphQLError[] | undefined;
22599
23768
  data?: undefined;
22600
23769
  meta?: {} | undefined;
22601
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22602
- currentData?: PathAutocompleteResponse | undefined;
23770
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23771
+ currentData?: SearchDefinitionsResponse | undefined;
22603
23772
  isUninitialized: false;
22604
23773
  isLoading: false;
22605
23774
  isFetching: false;
@@ -22609,10 +23778,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22609
23778
  status: _reduxjs_toolkit_query.QueryStatus;
22610
23779
  }) => R) | undefined;
22611
23780
  }) | undefined) => R & {
22612
- refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
22613
- q: string;
22614
- entity_type: EntityKind;
22615
- }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23781
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22616
23782
  baseQueryType?: BaseQueryTypes;
22617
23783
  apiName?: string;
22618
23784
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22628,9 +23794,11 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22628
23794
  error: graphql.GraphQLError[] | undefined;
22629
23795
  data?: undefined;
22630
23796
  meta?: {} | undefined;
22631
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>>;
23797
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>>;
22632
23798
  };
22633
- declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
23799
+
23800
+ type AvailabilityCheckResponse = Record<string, unknown>;
23801
+ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22634
23802
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22635
23803
  originalArgs?: undefined | undefined;
22636
23804
  data?: undefined | undefined;
@@ -22640,7 +23808,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22640
23808
  startedTimeStamp?: undefined | undefined;
22641
23809
  fulfilledTimeStamp?: undefined | undefined;
22642
23810
  } & {
22643
- currentData?: SearchDefinitionsResponse | undefined;
23811
+ currentData?: AvailabilityCheckResponse | undefined;
22644
23812
  isUninitialized: false;
22645
23813
  isLoading: false;
22646
23814
  isFetching: false;
@@ -22664,8 +23832,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22664
23832
  error: graphql.GraphQLError[] | undefined;
22665
23833
  data?: undefined;
22666
23834
  meta?: {} | undefined;
22667
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22668
- currentData?: SearchDefinitionsResponse | undefined;
23835
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23836
+ currentData?: AvailabilityCheckResponse | undefined;
22669
23837
  isUninitialized: false;
22670
23838
  isLoading: false;
22671
23839
  isFetching: false;
@@ -22691,8 +23859,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22691
23859
  error: graphql.GraphQLError[] | undefined;
22692
23860
  data?: undefined;
22693
23861
  meta?: {} | undefined;
22694
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22695
- currentData?: SearchDefinitionsResponse | undefined;
23862
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23863
+ currentData?: AvailabilityCheckResponse | undefined;
22696
23864
  isUninitialized: false;
22697
23865
  isLoading: false;
22698
23866
  isFetching: false;
@@ -22703,7 +23871,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22703
23871
  isFetching: true;
22704
23872
  error: undefined;
22705
23873
  } & {
22706
- data: SearchDefinitionsResponse;
23874
+ data: AvailabilityCheckResponse;
22707
23875
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22708
23876
  baseQueryType?: BaseQueryTypes;
22709
23877
  apiName?: string;
@@ -22720,8 +23888,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22720
23888
  error: graphql.GraphQLError[] | undefined;
22721
23889
  data?: undefined;
22722
23890
  meta?: {} | undefined;
22723
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22724
- currentData?: SearchDefinitionsResponse | undefined;
23891
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23892
+ currentData?: AvailabilityCheckResponse | undefined;
22725
23893
  isUninitialized: false;
22726
23894
  isLoading: false;
22727
23895
  isFetching: false;
@@ -22743,8 +23911,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22743
23911
  error: graphql.GraphQLError[] | undefined;
22744
23912
  data?: undefined;
22745
23913
  meta?: {} | undefined;
22746
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22747
- currentData?: SearchDefinitionsResponse | undefined;
23914
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23915
+ currentData?: AvailabilityCheckResponse | undefined;
22748
23916
  isUninitialized: false;
22749
23917
  isLoading: false;
22750
23918
  isFetching: false;
@@ -22755,8 +23923,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22755
23923
  isFetching: false;
22756
23924
  error: undefined;
22757
23925
  } & {
22758
- data: SearchDefinitionsResponse;
22759
- currentData: SearchDefinitionsResponse;
23926
+ data: AvailabilityCheckResponse;
23927
+ currentData: AvailabilityCheckResponse;
22760
23928
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22761
23929
  baseQueryType?: BaseQueryTypes;
22762
23930
  apiName?: string;
@@ -22773,8 +23941,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22773
23941
  error: graphql.GraphQLError[] | undefined;
22774
23942
  data?: undefined;
22775
23943
  meta?: {} | undefined;
22776
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22777
- currentData?: SearchDefinitionsResponse | undefined;
23944
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23945
+ currentData?: AvailabilityCheckResponse | undefined;
22778
23946
  isUninitialized: false;
22779
23947
  isLoading: false;
22780
23948
  isFetching: false;
@@ -22796,8 +23964,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22796
23964
  error: graphql.GraphQLError[] | undefined;
22797
23965
  data?: undefined;
22798
23966
  meta?: {} | undefined;
22799
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22800
- currentData?: SearchDefinitionsResponse | undefined;
23967
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23968
+ currentData?: AvailabilityCheckResponse | undefined;
22801
23969
  isUninitialized: false;
22802
23970
  isLoading: false;
22803
23971
  isFetching: false;
@@ -22821,8 +23989,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22821
23989
  error: graphql.GraphQLError[] | undefined;
22822
23990
  data?: undefined;
22823
23991
  meta?: {} | undefined;
22824
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22825
- currentData?: SearchDefinitionsResponse | undefined;
23992
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23993
+ currentData?: AvailabilityCheckResponse | undefined;
22826
23994
  isUninitialized: false;
22827
23995
  isLoading: false;
22828
23996
  isFetching: false;
@@ -22845,7 +24013,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22845
24013
  startedTimeStamp?: undefined | undefined;
22846
24014
  fulfilledTimeStamp?: undefined | undefined;
22847
24015
  } & {
22848
- currentData?: SearchDefinitionsResponse | undefined;
24016
+ currentData?: AvailabilityCheckResponse | undefined;
22849
24017
  isUninitialized: false;
22850
24018
  isLoading: false;
22851
24019
  isFetching: false;
@@ -22869,8 +24037,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22869
24037
  error: graphql.GraphQLError[] | undefined;
22870
24038
  data?: undefined;
22871
24039
  meta?: {} | undefined;
22872
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22873
- currentData?: SearchDefinitionsResponse | undefined;
24040
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24041
+ currentData?: AvailabilityCheckResponse | undefined;
22874
24042
  isUninitialized: false;
22875
24043
  isLoading: false;
22876
24044
  isFetching: false;
@@ -22896,8 +24064,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22896
24064
  error: graphql.GraphQLError[] | undefined;
22897
24065
  data?: undefined;
22898
24066
  meta?: {} | undefined;
22899
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22900
- currentData?: SearchDefinitionsResponse | undefined;
24067
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24068
+ currentData?: AvailabilityCheckResponse | undefined;
22901
24069
  isUninitialized: false;
22902
24070
  isLoading: false;
22903
24071
  isFetching: false;
@@ -22908,7 +24076,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22908
24076
  isFetching: true;
22909
24077
  error: undefined;
22910
24078
  } & {
22911
- data: SearchDefinitionsResponse;
24079
+ data: AvailabilityCheckResponse;
22912
24080
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22913
24081
  baseQueryType?: BaseQueryTypes;
22914
24082
  apiName?: string;
@@ -22925,8 +24093,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22925
24093
  error: graphql.GraphQLError[] | undefined;
22926
24094
  data?: undefined;
22927
24095
  meta?: {} | undefined;
22928
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22929
- currentData?: SearchDefinitionsResponse | undefined;
24096
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24097
+ currentData?: AvailabilityCheckResponse | undefined;
22930
24098
  isUninitialized: false;
22931
24099
  isLoading: false;
22932
24100
  isFetching: false;
@@ -22948,8 +24116,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22948
24116
  error: graphql.GraphQLError[] | undefined;
22949
24117
  data?: undefined;
22950
24118
  meta?: {} | undefined;
22951
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22952
- currentData?: SearchDefinitionsResponse | undefined;
24119
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24120
+ currentData?: AvailabilityCheckResponse | undefined;
22953
24121
  isUninitialized: false;
22954
24122
  isLoading: false;
22955
24123
  isFetching: false;
@@ -22960,8 +24128,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22960
24128
  isFetching: false;
22961
24129
  error: undefined;
22962
24130
  } & {
22963
- data: SearchDefinitionsResponse;
22964
- currentData: SearchDefinitionsResponse;
24131
+ data: AvailabilityCheckResponse;
24132
+ currentData: AvailabilityCheckResponse;
22965
24133
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22966
24134
  baseQueryType?: BaseQueryTypes;
22967
24135
  apiName?: string;
@@ -22978,8 +24146,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22978
24146
  error: graphql.GraphQLError[] | undefined;
22979
24147
  data?: undefined;
22980
24148
  meta?: {} | undefined;
22981
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22982
- currentData?: SearchDefinitionsResponse | undefined;
24149
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24150
+ currentData?: AvailabilityCheckResponse | undefined;
22983
24151
  isUninitialized: false;
22984
24152
  isLoading: false;
22985
24153
  isFetching: false;
@@ -23001,8 +24169,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
23001
24169
  error: graphql.GraphQLError[] | undefined;
23002
24170
  data?: undefined;
23003
24171
  meta?: {} | undefined;
23004
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23005
- currentData?: SearchDefinitionsResponse | undefined;
24172
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24173
+ currentData?: AvailabilityCheckResponse | undefined;
23006
24174
  isUninitialized: false;
23007
24175
  isLoading: false;
23008
24176
  isFetching: false;
@@ -23026,8 +24194,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
23026
24194
  error: graphql.GraphQLError[] | undefined;
23027
24195
  data?: undefined;
23028
24196
  meta?: {} | undefined;
23029
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23030
- currentData?: SearchDefinitionsResponse | undefined;
24197
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24198
+ currentData?: AvailabilityCheckResponse | undefined;
23031
24199
  isUninitialized: false;
23032
24200
  isLoading: false;
23033
24201
  isFetching: false;
@@ -23053,11 +24221,13 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
23053
24221
  error: graphql.GraphQLError[] | undefined;
23054
24222
  data?: undefined;
23055
24223
  meta?: {} | undefined;
23056
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>>;
24224
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>>;
23057
24225
  };
23058
24226
 
23059
- type AvailabilityCheckResponse = Record<string, unknown>;
23060
- declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
24227
+ interface WorkflowGuideResponse {
24228
+ content: string;
24229
+ }
24230
+ declare const useGetWorkflowGuideQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
23061
24231
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
23062
24232
  originalArgs?: undefined | undefined;
23063
24233
  data?: undefined | undefined;
@@ -23067,7 +24237,7 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23067
24237
  startedTimeStamp?: undefined | undefined;
23068
24238
  fulfilledTimeStamp?: undefined | undefined;
23069
24239
  } & {
23070
- currentData?: AvailabilityCheckResponse | undefined;
24240
+ currentData?: WorkflowGuideResponse | undefined;
23071
24241
  isUninitialized: false;
23072
24242
  isLoading: false;
23073
24243
  isFetching: false;
@@ -23075,7 +24245,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23075
24245
  isError: false;
23076
24246
  }, "isUninitialized"> & {
23077
24247
  isUninitialized: true;
23078
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24248
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24249
+ workflowName: string;
24250
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23079
24251
  baseQueryType?: BaseQueryTypes;
23080
24252
  apiName?: string;
23081
24253
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23091,8 +24263,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23091
24263
  error: graphql.GraphQLError[] | undefined;
23092
24264
  data?: undefined;
23093
24265
  meta?: {} | undefined;
23094
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23095
- currentData?: AvailabilityCheckResponse | undefined;
24266
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24267
+ currentData?: WorkflowGuideResponse | undefined;
23096
24268
  isUninitialized: false;
23097
24269
  isLoading: false;
23098
24270
  isFetching: false;
@@ -23102,7 +24274,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23102
24274
  isLoading: true;
23103
24275
  isFetching: boolean;
23104
24276
  data: undefined;
23105
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24277
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24278
+ workflowName: string;
24279
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23106
24280
  baseQueryType?: BaseQueryTypes;
23107
24281
  apiName?: string;
23108
24282
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23118,8 +24292,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23118
24292
  error: graphql.GraphQLError[] | undefined;
23119
24293
  data?: undefined;
23120
24294
  meta?: {} | undefined;
23121
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23122
- currentData?: AvailabilityCheckResponse | undefined;
24295
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24296
+ currentData?: WorkflowGuideResponse | undefined;
23123
24297
  isUninitialized: false;
23124
24298
  isLoading: false;
23125
24299
  isFetching: false;
@@ -23130,8 +24304,10 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23130
24304
  isFetching: true;
23131
24305
  error: undefined;
23132
24306
  } & {
23133
- data: AvailabilityCheckResponse;
23134
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24307
+ data: WorkflowGuideResponse;
24308
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24309
+ workflowName: string;
24310
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23135
24311
  baseQueryType?: BaseQueryTypes;
23136
24312
  apiName?: string;
23137
24313
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23147,14 +24323,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23147
24323
  error: graphql.GraphQLError[] | undefined;
23148
24324
  data?: undefined;
23149
24325
  meta?: {} | undefined;
23150
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23151
- currentData?: AvailabilityCheckResponse | undefined;
24326
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24327
+ currentData?: WorkflowGuideResponse | undefined;
23152
24328
  isUninitialized: false;
23153
24329
  isLoading: false;
23154
24330
  isFetching: false;
23155
24331
  isSuccess: false;
23156
24332
  isError: false;
23157
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24333
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24334
+ workflowName: string;
24335
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23158
24336
  baseQueryType?: BaseQueryTypes;
23159
24337
  apiName?: string;
23160
24338
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23170,8 +24348,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23170
24348
  error: graphql.GraphQLError[] | undefined;
23171
24349
  data?: undefined;
23172
24350
  meta?: {} | undefined;
23173
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23174
- currentData?: AvailabilityCheckResponse | undefined;
24351
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24352
+ currentData?: WorkflowGuideResponse | undefined;
23175
24353
  isUninitialized: false;
23176
24354
  isLoading: false;
23177
24355
  isFetching: false;
@@ -23182,9 +24360,11 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23182
24360
  isFetching: false;
23183
24361
  error: undefined;
23184
24362
  } & {
23185
- data: AvailabilityCheckResponse;
23186
- currentData: AvailabilityCheckResponse;
23187
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24363
+ data: WorkflowGuideResponse;
24364
+ currentData: WorkflowGuideResponse;
24365
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24366
+ workflowName: string;
24367
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23188
24368
  baseQueryType?: BaseQueryTypes;
23189
24369
  apiName?: string;
23190
24370
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23200,14 +24380,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23200
24380
  error: graphql.GraphQLError[] | undefined;
23201
24381
  data?: undefined;
23202
24382
  meta?: {} | undefined;
23203
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23204
- currentData?: AvailabilityCheckResponse | undefined;
24383
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24384
+ currentData?: WorkflowGuideResponse | undefined;
23205
24385
  isUninitialized: false;
23206
24386
  isLoading: false;
23207
24387
  isFetching: false;
23208
24388
  isSuccess: false;
23209
24389
  isError: false;
23210
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24390
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24391
+ workflowName: string;
24392
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23211
24393
  baseQueryType?: BaseQueryTypes;
23212
24394
  apiName?: string;
23213
24395
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23223,8 +24405,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23223
24405
  error: graphql.GraphQLError[] | undefined;
23224
24406
  data?: undefined;
23225
24407
  meta?: {} | undefined;
23226
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23227
- currentData?: AvailabilityCheckResponse | undefined;
24408
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24409
+ currentData?: WorkflowGuideResponse | undefined;
23228
24410
  isUninitialized: false;
23229
24411
  isLoading: false;
23230
24412
  isFetching: false;
@@ -23232,7 +24414,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23232
24414
  isError: false;
23233
24415
  }, "error" | "isError"> & {
23234
24416
  isError: true;
23235
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24417
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24418
+ workflowName: string;
24419
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23236
24420
  baseQueryType?: BaseQueryTypes;
23237
24421
  apiName?: string;
23238
24422
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23248,8 +24432,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23248
24432
  error: graphql.GraphQLError[] | undefined;
23249
24433
  data?: undefined;
23250
24434
  meta?: {} | undefined;
23251
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23252
- currentData?: AvailabilityCheckResponse | undefined;
24435
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24436
+ currentData?: WorkflowGuideResponse | undefined;
23253
24437
  isUninitialized: false;
23254
24438
  isLoading: false;
23255
24439
  isFetching: false;
@@ -23257,7 +24441,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23257
24441
  isError: false;
23258
24442
  }, "error">>)> & {
23259
24443
  status: _reduxjs_toolkit_query.QueryStatus;
23260
- }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
24444
+ }>(arg: typeof _reduxjs_toolkit_query.skipToken | {
24445
+ workflowName: string;
24446
+ }, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
23261
24447
  skip?: boolean;
23262
24448
  refetchOnMountOrArgChange?: boolean | number;
23263
24449
  } & {
@@ -23272,7 +24458,7 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23272
24458
  startedTimeStamp?: undefined | undefined;
23273
24459
  fulfilledTimeStamp?: undefined | undefined;
23274
24460
  } & {
23275
- currentData?: AvailabilityCheckResponse | undefined;
24461
+ currentData?: WorkflowGuideResponse | undefined;
23276
24462
  isUninitialized: false;
23277
24463
  isLoading: false;
23278
24464
  isFetching: false;
@@ -23280,7 +24466,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23280
24466
  isError: false;
23281
24467
  }, "isUninitialized"> & {
23282
24468
  isUninitialized: true;
23283
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24469
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24470
+ workflowName: string;
24471
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23284
24472
  baseQueryType?: BaseQueryTypes;
23285
24473
  apiName?: string;
23286
24474
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23296,8 +24484,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23296
24484
  error: graphql.GraphQLError[] | undefined;
23297
24485
  data?: undefined;
23298
24486
  meta?: {} | undefined;
23299
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23300
- currentData?: AvailabilityCheckResponse | undefined;
24487
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24488
+ currentData?: WorkflowGuideResponse | undefined;
23301
24489
  isUninitialized: false;
23302
24490
  isLoading: false;
23303
24491
  isFetching: false;
@@ -23307,7 +24495,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23307
24495
  isLoading: true;
23308
24496
  isFetching: boolean;
23309
24497
  data: undefined;
23310
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24498
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24499
+ workflowName: string;
24500
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23311
24501
  baseQueryType?: BaseQueryTypes;
23312
24502
  apiName?: string;
23313
24503
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23323,8 +24513,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23323
24513
  error: graphql.GraphQLError[] | undefined;
23324
24514
  data?: undefined;
23325
24515
  meta?: {} | undefined;
23326
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23327
- currentData?: AvailabilityCheckResponse | undefined;
24516
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24517
+ currentData?: WorkflowGuideResponse | undefined;
23328
24518
  isUninitialized: false;
23329
24519
  isLoading: false;
23330
24520
  isFetching: false;
@@ -23335,8 +24525,10 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23335
24525
  isFetching: true;
23336
24526
  error: undefined;
23337
24527
  } & {
23338
- data: AvailabilityCheckResponse;
23339
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24528
+ data: WorkflowGuideResponse;
24529
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24530
+ workflowName: string;
24531
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23340
24532
  baseQueryType?: BaseQueryTypes;
23341
24533
  apiName?: string;
23342
24534
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23352,14 +24544,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23352
24544
  error: graphql.GraphQLError[] | undefined;
23353
24545
  data?: undefined;
23354
24546
  meta?: {} | undefined;
23355
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23356
- currentData?: AvailabilityCheckResponse | undefined;
24547
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24548
+ currentData?: WorkflowGuideResponse | undefined;
23357
24549
  isUninitialized: false;
23358
24550
  isLoading: false;
23359
24551
  isFetching: false;
23360
24552
  isSuccess: false;
23361
24553
  isError: false;
23362
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24554
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24555
+ workflowName: string;
24556
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23363
24557
  baseQueryType?: BaseQueryTypes;
23364
24558
  apiName?: string;
23365
24559
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23375,8 +24569,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23375
24569
  error: graphql.GraphQLError[] | undefined;
23376
24570
  data?: undefined;
23377
24571
  meta?: {} | undefined;
23378
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23379
- currentData?: AvailabilityCheckResponse | undefined;
24572
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24573
+ currentData?: WorkflowGuideResponse | undefined;
23380
24574
  isUninitialized: false;
23381
24575
  isLoading: false;
23382
24576
  isFetching: false;
@@ -23387,9 +24581,11 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23387
24581
  isFetching: false;
23388
24582
  error: undefined;
23389
24583
  } & {
23390
- data: AvailabilityCheckResponse;
23391
- currentData: AvailabilityCheckResponse;
23392
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24584
+ data: WorkflowGuideResponse;
24585
+ currentData: WorkflowGuideResponse;
24586
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24587
+ workflowName: string;
24588
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23393
24589
  baseQueryType?: BaseQueryTypes;
23394
24590
  apiName?: string;
23395
24591
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23405,14 +24601,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23405
24601
  error: graphql.GraphQLError[] | undefined;
23406
24602
  data?: undefined;
23407
24603
  meta?: {} | undefined;
23408
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23409
- currentData?: AvailabilityCheckResponse | undefined;
24604
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24605
+ currentData?: WorkflowGuideResponse | undefined;
23410
24606
  isUninitialized: false;
23411
24607
  isLoading: false;
23412
24608
  isFetching: false;
23413
24609
  isSuccess: false;
23414
24610
  isError: false;
23415
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24611
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24612
+ workflowName: string;
24613
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23416
24614
  baseQueryType?: BaseQueryTypes;
23417
24615
  apiName?: string;
23418
24616
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23428,8 +24626,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23428
24626
  error: graphql.GraphQLError[] | undefined;
23429
24627
  data?: undefined;
23430
24628
  meta?: {} | undefined;
23431
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23432
- currentData?: AvailabilityCheckResponse | undefined;
24629
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24630
+ currentData?: WorkflowGuideResponse | undefined;
23433
24631
  isUninitialized: false;
23434
24632
  isLoading: false;
23435
24633
  isFetching: false;
@@ -23437,7 +24635,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23437
24635
  isError: false;
23438
24636
  }, "error" | "isError"> & {
23439
24637
  isError: true;
23440
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24638
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24639
+ workflowName: string;
24640
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23441
24641
  baseQueryType?: BaseQueryTypes;
23442
24642
  apiName?: string;
23443
24643
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23453,8 +24653,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23453
24653
  error: graphql.GraphQLError[] | undefined;
23454
24654
  data?: undefined;
23455
24655
  meta?: {} | undefined;
23456
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23457
- currentData?: AvailabilityCheckResponse | undefined;
24656
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24657
+ currentData?: WorkflowGuideResponse | undefined;
23458
24658
  isUninitialized: false;
23459
24659
  isLoading: false;
23460
24660
  isFetching: false;
@@ -23464,7 +24664,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23464
24664
  status: _reduxjs_toolkit_query.QueryStatus;
23465
24665
  }) => R) | undefined;
23466
24666
  }) | undefined) => R & {
23467
- refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24667
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
24668
+ workflowName: string;
24669
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23468
24670
  baseQueryType?: BaseQueryTypes;
23469
24671
  apiName?: string;
23470
24672
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23480,7 +24682,7 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23480
24682
  error: graphql.GraphQLError[] | undefined;
23481
24683
  data?: undefined;
23482
24684
  meta?: {} | undefined;
23483
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>>;
24685
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>>;
23484
24686
  };
23485
24687
 
23486
24688
  type CustomApiConfig = {
@@ -24099,6 +25301,7 @@ type OrchestratorConfig = {
24099
25301
  useWebSockets: boolean;
24100
25302
  useThemeToggle: boolean;
24101
25303
  showWorkflowInformationLink: boolean;
25304
+ showWorkflowUserGuide: boolean;
24102
25305
  enableSupportMenuItem: boolean;
24103
25306
  supportMenuItemUrl: string;
24104
25307
  enableAoStackStatus: boolean;
@@ -24109,20 +25312,26 @@ declare enum ColorModes {
24109
25312
  LIGHT = "LIGHT",
24110
25313
  DARK = "DARK"
24111
25314
  }
25315
+ interface SubscriptionRelation {
25316
+ subscription_id: string;
25317
+ subscription_description: string;
25318
+ }
24112
25319
  interface SubscriptionAction {
24113
25320
  name: string;
24114
25321
  description: string;
24115
25322
  reason?: string;
24116
25323
  usable_when?: string[];
24117
25324
  locked_relations?: string[];
24118
- unterminated_parents?: string[];
25325
+ locked_relations_detail?: SubscriptionRelation[];
24119
25326
  unterminated_in_use_by_subscriptions?: string[];
25327
+ unterminated_in_use_by_subscriptions_detail?: SubscriptionRelation[];
24120
25328
  status?: string;
24121
25329
  action?: string;
24122
25330
  }
24123
25331
  type SubscriptionActions = {
24124
25332
  reason?: string;
24125
25333
  locked_relations?: string[];
25334
+ locked_relations_detail?: SubscriptionRelation[];
24126
25335
  modify: SubscriptionAction[];
24127
25336
  terminate: SubscriptionAction[];
24128
25337
  system: SubscriptionAction[];
@@ -24168,7 +25377,12 @@ declare enum Intervals {
24168
25377
  ONE_MONTH = "1months"
24169
25378
  }
24170
25379
 
24171
- type EntityKind = 'SUBSCRIPTION' | 'PRODUCT' | 'WORKFLOW' | 'PROCESS';
25380
+ declare enum EntityKind {
25381
+ SUBSCRIPTION = "SUBSCRIPTION",
25382
+ PRODUCT = "PRODUCT",
25383
+ WORKFLOW = "WORKFLOW",
25384
+ PROCESS = "PROCESS"
25385
+ }
24172
25386
  declare enum RetrieverType {
24173
25387
  Auto = "auto",
24174
25388
  Fuzzy = "fuzzy",
@@ -24187,13 +25401,19 @@ interface SearchResult {
24187
25401
  score: number;
24188
25402
  perfect_match: number;
24189
25403
  matching_field?: MatchingField | null;
25404
+ response_columns: Record<string, string | number | null>;
24190
25405
  }
24191
25406
  /** Paginated search results */
24192
25407
  type PaginatedSearchResults = {
24193
25408
  data: SearchResult[];
25409
+ cursor: {
25410
+ total_items: number;
25411
+ start_cursor: number;
25412
+ end_cursor: number;
25413
+ };
24194
25414
  page_info: {
24195
25415
  has_next_page: boolean;
24196
- next_page_cursor: number | null;
25416
+ next_page_cursor: string | null;
24197
25417
  };
24198
25418
  search_metadata: {
24199
25419
  search_type: string | null;
@@ -24263,10 +25483,14 @@ type PathFilter = {
24263
25483
  path: string;
24264
25484
  condition: DateEqFilter | DateNeqFilter | DateLtFilter | DateLteFilter | DateGtFilter | DateGteFilter | DateBetweenFilter | DateIsNullFilter | DateIsNotNullFilter | StrEqFilter | StrNeFilter | LtreeDescendantFilter | LtreeAncestorFilter | LtreeMatchesFilter;
24265
25485
  };
25486
+ interface OperatorDisplay {
25487
+ symbol: string;
25488
+ description: string;
25489
+ }
24266
25490
  type ActionType = 'select';
24267
25491
  type BaseSearchParameters = {
24268
25492
  query?: string | null;
24269
- filters?: PathFilter[] | Group | null;
25493
+ filters?: PathFilter[] | Filter | null;
24270
25494
  action: ActionType;
24271
25495
  };
24272
25496
  type SubscriptionSearchParameters = BaseSearchParameters & {
@@ -24290,9 +25514,9 @@ type Condition = {
24290
25514
  value?: unknown;
24291
25515
  };
24292
25516
  };
24293
- type Group = {
25517
+ type Filter = {
24294
25518
  op: 'AND' | 'OR';
24295
- children: Array<Group | Condition>;
25519
+ children: Array<Filter | Condition>;
24296
25520
  };
24297
25521
  type value_schema = {
24298
25522
  kind: 'string' | 'number' | 'datetime' | 'boolean' | 'object' | 'none';
@@ -24309,7 +25533,7 @@ type PathAutocompleteResponse = {
24309
25533
  components: PathLeaf[];
24310
25534
  };
24311
25535
  type PathDataType = 'string' | 'number' | 'datetime' | 'boolean' | 'component';
24312
- type PathInfo$1 = {
25536
+ type PathInfo = {
24313
25537
  path: string;
24314
25538
  type: PathDataType;
24315
25539
  operators: string[];
@@ -24630,7 +25854,7 @@ declare enum SubscriptionDetailTab {
24630
25854
  }
24631
25855
  declare const getFieldFromProductBlockInstanceValues: (instanceValues: FieldValue[], field: string) => string | number | boolean;
24632
25856
  declare const getProductBlockTitle: (instanceValues: FieldValue[]) => string | number | boolean;
24633
- declare const flattenArrayProps: (action: SubscriptionAction) => TranslationValues;
25857
+ declare const flattenSubscriptionActionProps: (action?: SubscriptionAction | null) => TranslationValues;
24634
25858
  declare const getWorkflowTargetColor: (workflowTarget: WorkflowTarget, theme: EuiThemeComputed) => string;
24635
25859
  declare const getWorkflowTargetIconContent: (workflowTarget: WorkflowTarget) => "C" | "T" | "X" | "R" | "M";
24636
25860
  declare const getLastUncompletedProcess: (processes?: SubscriptionDetailProcess[]) => SubscriptionDetailProcess | undefined;
@@ -24917,6 +26141,7 @@ interface WfoWorkflowStepListProps {
24917
26141
  traceBack: string | null;
24918
26142
  startedAt: string;
24919
26143
  processId: string;
26144
+ workflowName?: string;
24920
26145
  isTask: boolean;
24921
26146
  userInputForm?: InputForm;
24922
26147
  userPermissions: FormUserPermissions;
@@ -24955,6 +26180,7 @@ interface WfoStepProps {
24955
26180
  isTask: boolean;
24956
26181
  isStartStep?: boolean;
24957
26182
  processId?: string;
26183
+ workflowName?: string;
24958
26184
  userPermissions: FormUserPermissions;
24959
26185
  }
24960
26186
  declare const WfoStep: React__default.ForwardRefExoticComponent<WfoStepProps & React__default.RefAttributes<HTMLDivElement>>;
@@ -24969,6 +26195,7 @@ type WfoStepListProps = {
24969
26195
  onTriggerExpandStepListItem: (stepListItem: StepListItem) => void;
24970
26196
  isTask: boolean;
24971
26197
  processId: string;
26198
+ workflowName?: string;
24972
26199
  userPermissions: FormUserPermissions;
24973
26200
  };
24974
26201
  declare const WfoStepList: React__default.ForwardRefExoticComponent<WfoStepListProps & React__default.RefAttributes<WfoStepListRef>>;
@@ -25098,8 +26325,9 @@ declare const WfoProductsSummaryCard: () => _emotion_react_jsx_runtime.JSX.Eleme
25098
26325
  interface WfoTitleWithWebsocketBadgeProps {
25099
26326
  title: string | ReactNode;
25100
26327
  wsUrl?: string;
26328
+ extraElement?: ReactNode;
25101
26329
  }
25102
- declare const WfoTitleWithWebsocketBadge: ({ title, wsUrl }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
26330
+ declare const WfoTitleWithWebsocketBadge: ({ title, wsUrl, extraElement, }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
25103
26331
 
25104
26332
  interface WfoRadioDropdownProps<T> {
25105
26333
  options: WfoRadioDropdownOption<T>[];
@@ -27390,9 +28618,9 @@ interface WfoPathBreadcrumbProps {
27390
28618
  declare const WfoPathBreadcrumb: FC<WfoPathBreadcrumbProps>;
27391
28619
 
27392
28620
  interface FilterGroupProps {
27393
- group: Group;
28621
+ group: Filter;
27394
28622
  entityType: EntityKind;
27395
- onChange: (group: Group) => void;
28623
+ onChange: (group: Filter) => void;
27396
28624
  onRemove?: () => void;
27397
28625
  depth?: number;
27398
28626
  isRoot?: boolean;
@@ -27458,11 +28686,11 @@ interface PathSelectorProps {
27458
28686
  }
27459
28687
  interface SelectedPathDisplayProps {
27460
28688
  condition: Condition;
27461
- selectedPathInfo: PathInfo$1 | null;
28689
+ selectedPathInfo: PathInfo | null;
27462
28690
  onEdit: () => void;
27463
28691
  }
27464
28692
  interface OperatorSelectorProps {
27465
- selectedPathInfo: PathInfo$1 | null;
28693
+ selectedPathInfo: PathInfo | null;
27466
28694
  condition: Condition;
27467
28695
  onOperatorChange: (op: string) => void;
27468
28696
  }
@@ -27473,7 +28701,7 @@ interface PathOptionRenderProps {
27473
28701
  };
27474
28702
  searchValue: string;
27475
28703
  contentClassName?: string;
27476
- paths: PathInfo$1[];
28704
+ paths: PathInfo[];
27477
28705
  }
27478
28706
  interface PathSelectionOptionRenderProps {
27479
28707
  option: {
@@ -27497,24 +28725,24 @@ declare const WfoOperatorSelector: FC<OperatorSelectorProps>;
27497
28725
  declare const WfoRenderPathOption: FC<PathOptionRenderProps>;
27498
28726
  declare const WfoRenderPathSelectionOption: FC<PathSelectionOptionRenderProps>;
27499
28727
 
27500
- declare const createOptionsFromPaths: (paths: PathInfo$1[], group: string) => {
28728
+ declare const createOptionsFromPaths: (paths: PathInfo[], group: string) => {
27501
28729
  label: string;
27502
28730
  value: string;
27503
28731
  'data-type': PathDataType;
27504
28732
  'data-operators': string;
27505
28733
  }[];
27506
- declare const shouldHideValueInput: (selectedPathInfo: PathInfo$1 | null, operatorSelected: boolean) => boolean;
27507
- declare const isFullPathSelected: (path: string, selectedPathInfo: PathInfo$1 | null) => boolean;
28734
+ declare const shouldHideValueInput: (selectedPathInfo: PathInfo | null, operatorSelected: boolean) => boolean;
28735
+ declare const isFullPathSelected: (path: string, selectedPathInfo: PathInfo | null) => boolean;
27508
28736
  declare const getFieldNameFromPath: (path: string, isComponent: boolean) => string;
27509
28737
  declare const getFieldNameFromFullPath: (fullPath: string) => string;
27510
- declare const getPathSelectionOptions: (selectedFieldName: string, paths: PathInfo$1[]) => {
28738
+ declare const getPathSelectionOptions: (selectedFieldName: string, paths: PathInfo[]) => {
27511
28739
  label: string;
27512
28740
  value: string;
27513
28741
  fullPath: string;
27514
28742
  }[];
27515
28743
 
27516
28744
  interface ValueControlProps {
27517
- pathInfo: PathInfo$1 | null;
28745
+ pathInfo: PathInfo | null;
27518
28746
  operator: string;
27519
28747
  value: unknown;
27520
28748
  onChange: (value: unknown) => void;
@@ -27525,22 +28753,13 @@ declare function isSubscriptionSearchResult(item: SearchResult): boolean;
27525
28753
  declare function isProcessSearchResult(item: SearchResult): boolean;
27526
28754
  declare function isProductSearchResult(item: SearchResult): boolean;
27527
28755
  declare function isWorkflowSearchResult(item: SearchResult): boolean;
27528
- declare const isCondition: (item: Group | Condition) => item is Condition;
28756
+ declare const isCondition: (item: Filter | Condition) => item is Condition;
27529
28757
  declare const getEndpointPath: (entityType: EntityKind) => string;
27530
28758
  declare const getDetailUrl: (result: SearchResult, baseUrl: string) => string;
27531
- declare const ENTITY_TABS: ({
27532
- id: "SUBSCRIPTION";
27533
- label: string;
27534
- } | {
27535
- id: "PRODUCT";
27536
- label: string;
27537
- } | {
27538
- id: "WORKFLOW";
27539
- label: string;
27540
- } | {
27541
- id: "PROCESS";
28759
+ declare const ENTITY_TABS: {
28760
+ id: EntityKind;
27542
28761
  label: string;
27543
- })[];
28762
+ }[];
27544
28763
  interface ThemeColors {
27545
28764
  success: string;
27546
28765
  primary: string;
@@ -27552,29 +28771,28 @@ interface Theme {
27552
28771
  colors: ThemeColors;
27553
28772
  }
27554
28773
  declare const getTypeColor: (type: string, theme: Theme) => string;
27555
- interface PathInfo {
27556
- type?: string;
27557
- [key: string]: unknown;
27558
- }
27559
- interface OperatorDisplay {
27560
- symbol: string;
27561
- description: string;
27562
- }
27563
28774
  declare const getOperatorDisplay: (op: string, selectedPathInfo?: PathInfo) => OperatorDisplay;
27564
28775
  declare const getButtonColor: (op: string, pathInfo: PathInfo | null, condition: Condition) => "primary" | "text";
27565
28776
  declare const getButtonFill: (op: string, pathInfo: PathInfo | null, condition: Condition) => boolean;
27566
- declare const isFilterValid: (group: Group) => boolean;
28777
+ declare const isFilterValid: (group: Filter) => boolean;
27567
28778
  interface SearchQuery {
27568
28779
  text?: string;
27569
28780
  }
27570
- declare const buildSearchParams: (debouncedQuery: SearchQuery | string, selectedEntityTab: EntityKind, filterGroup: Group, pageSize: number, retriever?: Exclude<RetrieverType, "auto">) => {
27571
- action: "select";
27572
- entity_type: EntityKind;
27573
- query: string;
27574
- filters: Group | undefined;
27575
- limit: number;
27576
- retriever: RetrieverType.Fuzzy | RetrieverType.Semantic | RetrieverType.Hybrid | undefined;
27577
- };
28781
+ declare const buildSearchParams: (debouncedQuery: SearchQuery | string, selectedEntityTab: EntityKind, filterGroup: Filter, pageSize: number, cursor: number, retriever?: Exclude<RetrieverType, "auto">) => SearchPaginationPayload;
28782
+ declare const combineSearchFilters: (ruleGroup: RuleGroupType | false | undefined, tab: WfoSubscriptionListTab) => Filter;
28783
+
28784
+ interface WfoWorkflowUserGuideProps {
28785
+ workflowName: string;
28786
+ isExpanded: boolean;
28787
+ onToggle: () => void;
28788
+ }
28789
+ declare const WfoWorkflowGuideExpandablePanel: ({ workflowName, isExpanded, onToggle }: WfoWorkflowUserGuideProps) => _emotion_react_jsx_runtime.JSX.Element;
28790
+
28791
+ interface WfoFormWithUserGuideProps {
28792
+ workflowName?: string;
28793
+ children: ReactNode;
28794
+ }
28795
+ declare const WfoPageWithUserGuide: ({ workflowName, children }: WfoFormWithUserGuideProps) => _emotion_react_jsx_runtime.JSX.Element;
27578
28796
 
27579
28797
  type WfoMonacoCodeBlockProps = {
27580
28798
  data: object;
@@ -27634,7 +28852,7 @@ declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
27634
28852
  declare const METADATA_SCHEDULES_ENDPOINT = "schedules";
27635
28853
  declare const SEARCH_QUERY_RESULTS_ENDPOINT = "search/queries";
27636
28854
 
27637
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.4.4";
28855
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.5.0";
27638
28856
 
27639
28857
  declare const useGetTranslationMessages: (locale: string | undefined) => {
27640
28858
  pydanticForms: {
@@ -27650,6 +28868,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27650
28868
  resumeTask: string;
27651
28869
  resumeWorkflow: string;
27652
28870
  inputFieldsHaveValidationErrors: string;
28871
+ preconditionFailedTitle: string;
28872
+ preconditionFailedFallback: string;
27653
28873
  };
27654
28874
  widgets: {
27655
28875
  customer: {
@@ -27723,6 +28943,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27723
28943
  resumeTask: string;
27724
28944
  resumeWorkflow: string;
27725
28945
  inputFieldsHaveValidationErrors: string;
28946
+ preconditionFailedTitle: string;
28947
+ preconditionFailedFallback: string;
27726
28948
  };
27727
28949
  widgets: {
27728
28950
  customer: {
@@ -27835,7 +29057,16 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27835
29057
  insyncFalse: string;
27836
29058
  searchModalTitle: string;
27837
29059
  searchModalText: string;
27838
- showAllColumnsInDetailView: string;
29060
+ retrieval: string;
29061
+ retrieverAuto: string;
29062
+ retrieverFuzzy: string;
29063
+ retrieverSemantic: string;
29064
+ retrieverHybrid: string;
29065
+ createFilter: string;
29066
+ applyFilter: string;
29067
+ removeFilter: string;
29068
+ cancel: string;
29069
+ loadMore: string;
27839
29070
  };
27840
29071
  confirmationDialog: {
27841
29072
  title: string;
@@ -27946,6 +29177,12 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27946
29177
  createScheduleButton: string;
27947
29178
  };
27948
29179
  };
29180
+ workflowGuide: {
29181
+ title: string;
29182
+ noGuideAvailable: string;
29183
+ show: string;
29184
+ hide: string;
29185
+ };
27949
29186
  processes: {
27950
29187
  index: {
27951
29188
  workflowName: string;
@@ -28225,6 +29462,68 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28225
29462
  logout: string;
28226
29463
  aoStatusPage: string;
28227
29464
  };
29465
+ agent: {
29466
+ title: string;
29467
+ availability: {
29468
+ unavailable: {
29469
+ title: string;
29470
+ instructions: {
29471
+ setAgentEnvironment: {
29472
+ before: string;
29473
+ after: string;
29474
+ };
29475
+ setSearchEnvironment: {
29476
+ before: string;
29477
+ after: string;
29478
+ };
29479
+ checkVersion: string;
29480
+ configureOpenAI: string;
29481
+ restartService: string;
29482
+ checkDockerConfig: string;
29483
+ };
29484
+ documentation: string;
29485
+ retryButton: string;
29486
+ };
29487
+ };
29488
+ page: {
29489
+ filledParameters: string;
29490
+ emptyGroup: string;
29491
+ searchQuery: string;
29492
+ activeFilters: string;
29493
+ noFiltersApplied: string;
29494
+ entityType: string;
29495
+ action: string;
29496
+ copilot: {
29497
+ title: string;
29498
+ initial: string;
29499
+ };
29500
+ suggestions: {
29501
+ findActiveSubscriptions: string;
29502
+ showTerminatedWorkflows: string;
29503
+ listAllSubscriptionsAndExport: string;
29504
+ showActiveSubscriptionsPerMonth: string;
29505
+ };
29506
+ tools: {
29507
+ set_filter_tree: string;
29508
+ start_new_search: string;
29509
+ run_search: string;
29510
+ discover_filter_paths: string;
29511
+ run_aggregation: string;
29512
+ prepare_export: string;
29513
+ get_valid_operators: string;
29514
+ set_temporal_grouping: string;
29515
+ };
29516
+ planProgress: {
29517
+ planning: string;
29518
+ completed: string;
29519
+ executing: string;
29520
+ };
29521
+ visualization: {
29522
+ noDataAvailable: string;
29523
+ invalidDataStructure: string;
29524
+ };
29525
+ };
29526
+ };
28228
29527
  search: {
28229
29528
  availability: {
28230
29529
  unavailable: {
@@ -28246,7 +29545,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28246
29545
  selectFieldFirst: string;
28247
29546
  maxNestingDepth: string;
28248
29547
  addNestedGroup: string;
28249
- addCondition: string;
29548
+ addRule: string;
28250
29549
  addGroup: string;
28251
29550
  removeGroup: string;
28252
29551
  emptyGroupDescription: string;
@@ -28294,6 +29593,13 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28294
29593
  fieldsGroupLabel: string;
28295
29594
  componentsGroupLabel: string;
28296
29595
  pathsCount: string;
29596
+ id: string;
29597
+ type: string;
29598
+ title: string;
29599
+ score: string;
29600
+ matchingField: string;
29601
+ perfectMatch: string;
29602
+ removeRule: string;
28297
29603
  };
28298
29604
  tabs: {
28299
29605
  subscriptions: string;
@@ -28316,6 +29622,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28316
29622
  resumeTask: string;
28317
29623
  resumeWorkflow: string;
28318
29624
  inputFieldsHaveValidationErrors: string;
29625
+ preconditionFailedTitle: string;
29626
+ preconditionFailedFallback: string;
28319
29627
  };
28320
29628
  widgets: {
28321
29629
  customer: {
@@ -28389,6 +29697,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28389
29697
  resumeTask: string;
28390
29698
  resumeWorkflow: string;
28391
29699
  inputFieldsHaveValidationErrors: string;
29700
+ preconditionFailedTitle: string;
29701
+ preconditionFailedFallback: string;
28392
29702
  };
28393
29703
  widgets: {
28394
29704
  customer: {
@@ -28502,6 +29812,16 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28502
29812
  showAllColumnsInDetailView: string;
28503
29813
  searchModalTitle: string;
28504
29814
  searchModalText: string;
29815
+ retrieval: string;
29816
+ retrieverAuto: string;
29817
+ retrieverFuzzy: string;
29818
+ retrieverSemantic: string;
29819
+ retrieverHybrid: string;
29820
+ createFilter: string;
29821
+ applyFilter: string;
29822
+ removeFilter: string;
29823
+ cancel: string;
29824
+ loadMore: string;
28505
29825
  };
28506
29826
  confirmationDialog: {
28507
29827
  title: string;
@@ -28611,6 +29931,12 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28611
29931
  createScheduleButton: string;
28612
29932
  };
28613
29933
  };
29934
+ workflowGuide: {
29935
+ title: string;
29936
+ noGuideAvailable: string;
29937
+ show: string;
29938
+ hide: string;
29939
+ };
28614
29940
  processes: {
28615
29941
  index: {
28616
29942
  workflowName: string;
@@ -29018,6 +30344,8 @@ declare const defaultWorkflowsListTabs: WfoFilterTab<WfoWorkflowsListTabType, Pr
29018
30344
 
29019
30345
  declare const getWorkflowsListTabTypeFromString: (tabId?: string) => WfoWorkflowsListTabType | undefined;
29020
30346
 
30347
+ declare const WfoSearchPocPage: () => _emotion_react_jsx_runtime.JSX.Element;
30348
+
29021
30349
  declare function initiateCsvFileDownload<T extends object>(data: T[], keyOrder: string[], fileName: string): void;
29022
30350
  declare const getCsvFileNameWithDate: (fileNameWithoutExtension: string) => string;
29023
30351
  declare const csvDownloadHandler: <T extends object, U extends object>(dataFetchFunction: () => Promise<T | undefined>, dataMapper: (data: T) => U[], pageInfoMapper: (data: T) => GraphQLPageInfo, keyOrder: string[], filename: string, addToastFunction: (type: ToastTypes, text: string, title: string) => void, translationFunction: (translationKey: string, variables?: TranslationValues) => string) => () => Promise<void>;
@@ -29101,4 +30429,4 @@ declare enum WfoQueryParams {
29101
30429
  }
29102
30430
  declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
29103
30431
 
29104
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, CALLOUT_COLORS, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, type CalloutColor, ColorModes, ColumnType, type Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, 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, 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, WfoMarkdownField, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, WfoProcessDetailPage, WfoProcessListNoteEdit, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoPydanticForm, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, 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, getSubscriptionDiffTexts, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stringifyDiffText, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionDetailQuery, 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 };
30432
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, CALLOUT_COLORS, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, type CalloutColor, ColorModes, ColumnType, type Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExportArtifact, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldValue, type FileUploadPayload, type Filter, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, type MetadataStatusParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorDisplay, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessPatchParams, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, type QueryArtifact, type QueryResultsData, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type ResultRow, RetrieverType, type RootState, Row, SEARCH_QUERY_RESULTS_ENDPOINT, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchParams, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionRelation, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExpandingSearchRow, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMarkdownField, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPageWithUserGuide, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, WfoProcessDetailPage, WfoProcessListNoteEdit, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoPydanticForm, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchPocPage, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoStructuredSearchTable, type WfoStructuredSearchTableColumnConfig, type WfoStructuredSearchTableDataColumnConfig, type WfoStructuredSearchTableDataColumnConfigItem, type WfoStructuredSearchTableProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, WfoTrashFilled, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowGuideExpandablePanel, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowGuideResponse, type WorkflowListItem, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, combineSearchFilters, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenSubscriptionActionProps as flattenArrayProps, flattenSubscriptionActionProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDiffTexts, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stringifyDiffText, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowGuideQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionDetailQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazySearchQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePatchProcessMutation, usePathAutocomplete, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchPathsQuery, useSearchQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductDescriptionMutation, useUpdateProductStatusMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };