@orchestrator-ui/orchestrator-ui-components 8.4.5 → 8.6.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 (77) hide show
  1. package/.turbo/turbo-build.log +10 -14
  2. package/.turbo/turbo-lint.log +2 -4
  3. package/.turbo/turbo-test.log +7 -9
  4. package/CHANGELOG.md +17 -0
  5. package/dist/index.d.ts +1968 -630
  6. package/dist/index.js +4389 -2362
  7. package/dist/index.js.map +1 -1
  8. package/package.json +2 -1
  9. package/src/components/WfoAutoExpandableTextArea/WfoAutoExpandableTextArea.tsx +54 -0
  10. package/src/components/WfoAutoExpandableTextArea/index.ts +1 -0
  11. package/src/components/WfoAutoExpandableTextArea/styles.ts +18 -0
  12. package/src/components/WfoPageTemplate/paths.ts +1 -0
  13. package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +23 -1
  14. package/src/components/WfoSearchBar/WfoSearchField.tsx +0 -1
  15. package/src/components/WfoSearchPage/WfoFilterGroup/WfoFilterGroup.tsx +5 -5
  16. package/src/components/WfoSearchPage/WfoSearch/WfoSearch.tsx +12 -5
  17. package/src/components/WfoSearchPage/constants.ts +0 -4
  18. package/src/components/WfoSearchPage/utils.ts +75 -20
  19. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionExpandableMenuItem.tsx +36 -18
  20. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActionsMenuItem.tsx +38 -2
  21. package/src/components/WfoSubscription/utils/index.ts +3 -0
  22. package/src/components/WfoSubscription/utils/utils.spec.ts +39 -4
  23. package/src/components/WfoSubscription/utils/utils.ts +10 -4
  24. package/src/components/WfoTable/WfoStructuredSearchTable/WfoAddGroupAction.tsx +19 -0
  25. package/src/components/WfoTable/WfoStructuredSearchTable/WfoAddRuleAction.tsx +23 -0
  26. package/src/components/WfoTable/WfoStructuredSearchTable/WfoCombinatorSelector.tsx +33 -0
  27. package/src/components/WfoTable/WfoStructuredSearchTable/WfoExpandingSearchRow.tsx +38 -0
  28. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFieldSelector.tsx +138 -0
  29. package/src/components/WfoTable/WfoStructuredSearchTable/WfoFilterBuilder.tsx +198 -0
  30. package/src/components/WfoTable/WfoStructuredSearchTable/WfoInlineCombinator.tsx +17 -0
  31. package/src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.tsx +33 -0
  32. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRangeEditor.tsx +64 -0
  33. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRemoveGroupAction.tsx +21 -0
  34. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRemoveRuleAction.tsx +20 -0
  35. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRule.tsx +16 -0
  36. package/src/components/WfoTable/WfoStructuredSearchTable/WfoRuleGroup.tsx +76 -0
  37. package/src/components/WfoTable/WfoStructuredSearchTable/WfoSearchFieldWithActions.tsx +56 -0
  38. package/src/components/WfoTable/WfoStructuredSearchTable/WfoStructuredSearchTable.tsx +326 -0
  39. package/src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.tsx +159 -0
  40. package/src/components/WfoTable/WfoStructuredSearchTable/index.ts +2 -0
  41. package/src/components/WfoTable/WfoStructuredSearchTable/styles.ts +182 -0
  42. package/src/components/WfoTable/WfoStructuredSearchTable/utils.ts +45 -0
  43. package/src/components/WfoTable/WfoTable/WfoDragHandler.tsx +4 -2
  44. package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +9 -0
  45. package/src/components/WfoTable/index.ts +2 -6
  46. package/src/components/WfoTitleWithWebsocketBadge/WfoTitleWithWebsocketBadge.tsx +14 -6
  47. package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +1 -0
  48. package/src/components/WfoWorkflowSteps/WfoStepList/WfoStepList.tsx +3 -0
  49. package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +32 -12
  50. package/src/components/WfoWorkflowUserGuide/WfoPageWithUserGuide.tsx +38 -0
  51. package/src/components/WfoWorkflowUserGuide/WfoWorkflowGuideExpandablePanel.tsx +151 -0
  52. package/src/components/WfoWorkflowUserGuide/index.ts +2 -0
  53. package/src/components/WfoWorkflowUserGuide/styles.ts +87 -0
  54. package/src/components/index.ts +2 -0
  55. package/src/configuration/version.ts +1 -1
  56. package/src/contexts/OrchestratorConfigContext.tsx +1 -0
  57. package/src/hooks/index.ts +1 -0
  58. package/src/hooks/usePathAutoComplete.ts +3 -4
  59. package/src/hooks/useSearch.ts +20 -15
  60. package/src/hooks/useSearchPagination.ts +11 -8
  61. package/src/hooks/useUrlParams.ts +3 -5
  62. package/src/icons/WfoTrashFilled.tsx +13 -0
  63. package/src/icons/WfoXMarkSmall.tsx +2 -2
  64. package/src/icons/index.ts +1 -0
  65. package/src/messages/en-GB.json +95 -8
  66. package/src/messages/nl-NL.json +24 -5
  67. package/src/pages/WfoSearchPocPage.tsx +528 -0
  68. package/src/pages/index.ts +1 -0
  69. package/src/pages/processes/WfoProcessDetail.tsx +10 -10
  70. package/src/pages/processes/WfoProcessDetailPage.tsx +1 -0
  71. package/src/pages/processes/WfoStartProcessPage.tsx +15 -19
  72. package/src/rtk/api.ts +1 -0
  73. package/src/rtk/endpoints/index.ts +1 -0
  74. package/src/rtk/endpoints/search.ts +45 -10
  75. package/src/rtk/endpoints/workflowGuides.ts +25 -0
  76. package/src/types/search.ts +24 -5
  77. package/src/types/types.ts +10 -1
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
+ import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
+ import { EuiTextAreaProps, EuiBadgeProps, EuiThemeComputed, EuiThemeModifications, EuiThemeColorMode, EuiContextMenuPanelDescriptor, EuiSideNavItemType, EuiSelectableOption } from '@elastic/eui';
1
3
  import * as React$1 from 'react';
2
4
  import React__default, { FC, ReactNode, ReactElement, CSSProperties, HTMLAttributeAnchorTarget, FunctionComponent, ErrorInfo } from 'react';
3
- import { EuiBadgeProps, EuiThemeComputed, EuiThemeModifications, EuiThemeColorMode, EuiContextMenuPanelDescriptor, EuiSideNavItemType, EuiSelectableOption } from '@elastic/eui';
4
5
  import { TextSize } from '@elastic/eui/src/components/text/text';
5
6
  import { TextColor } from '@elastic/eui/src/components/text/text_color';
6
7
  import { JSONSchema6 } from 'json-schema';
@@ -11,12 +12,12 @@ import * as _reduxjs_toolkit_query from '@reduxjs/toolkit/query';
11
12
  import { CombinedState, BaseQueryFn, FetchBaseQueryError } from '@reduxjs/toolkit/query';
12
13
  import { ErrorResponse, GraphqlRequestBaseQueryArgs } from '@rtk-query/graphql-request-base-query/dist/GraphqlBaseQueryTypes';
13
14
  import * as graphql from 'graphql';
14
- import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
15
15
  import { EuiSideNavItemType as EuiSideNavItemType$1 } from '@elastic/eui/src/components/side_nav/side_nav_types';
16
16
  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';
@@ -27,6 +28,8 @@ import { UseSessionOptions } from 'next-auth/react';
27
28
  import { Session } from 'next-auth';
28
29
  import { ClientError } from 'graphql-request';
29
30
 
31
+ declare const WfoAutoExpandableTextArea: ({ inputRef, onChange, ...restProps }: EuiTextAreaProps) => _emotion_react_jsx_runtime.JSX.Element;
32
+
30
33
  type WfoBadgeProps = EuiBadgeProps & {
31
34
  textColor: TextColor | string;
32
35
  children: ReactNode;
@@ -43,6 +46,7 @@ declare enum HttpStatus {
43
46
  FormNotComplete = 510,
44
47
  BadGateway = 502,
45
48
  BadRequest = 400,
49
+ PreconditionFailed = 412,
46
50
  ServiceUnavailable = 503,
47
51
  Unauthorized = 401,
48
52
  Forbidden = 403,
@@ -19280,25 +19284,13 @@ declare const useGetWorkflowNameById: (workflowId: ScheduledTaskDefinition["work
19280
19284
  workflowName: string | undefined;
19281
19285
  };
19282
19286
 
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;
19287
+ declare const usePathAutocomplete: (prefix: string, entityType: EntityKind) => {
19288
+ paths: PathInfo[];
19289
+ loading: boolean;
19290
+ error: string | null;
19300
19291
  };
19301
- declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19292
+
19293
+ declare const useGetPydanticFormsConfig: (getApiProvider: () => PydanticFormApiProvider, Footer: PydanticFormConfig["footerRenderer"]) => PydanticFormConfig;
19302
19294
 
19303
19295
  declare const WFO_STATUS_COLOR_FIELD = "statusColorField";
19304
19296
  type TableColumnKeys<T> = Array<keyof T>;
@@ -19345,6 +19337,25 @@ declare const hasSpecialCharacterOrSpace: (string: string) => boolean;
19345
19337
  declare const getQueryStringHandler: <Type>(setDataDisplayParam: DataDisplayReturnValues<Type>["setDataDisplayParam"]) => (queryString: string) => void;
19346
19338
  declare const getPageCount: (pagination: Pagination) => number;
19347
19339
 
19340
+ type TableSettingsColumnConfig<T> = {
19341
+ field: keyof T;
19342
+ name: string;
19343
+ isVisible: boolean;
19344
+ };
19345
+ type TableSettingsConfig<T> = {
19346
+ columns: TableSettingsColumnConfig<T>[];
19347
+ selectedPageSize: number;
19348
+ };
19349
+ type TableSettingsModalProps<T> = {
19350
+ tableConfig: TableSettingsConfig<T>;
19351
+ pageSizeOptions: number[];
19352
+ onClose: () => void;
19353
+ onUpdateTableConfig: (updatedTableConfig: TableSettingsConfig<T>) => void;
19354
+ onResetToDefaults: () => void;
19355
+ extraSettings?: React__default.ReactNode;
19356
+ };
19357
+ declare const TableSettingsModal: <T>({ tableConfig, pageSizeOptions, onUpdateTableConfig, onResetToDefaults, onClose, extraSettings, }: TableSettingsModalProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19358
+
19348
19359
  type WfoStatusColorFieldProps = {
19349
19360
  color: string;
19350
19361
  };
@@ -19505,6 +19516,8 @@ declare const WfoExclamationTriangle: FC<WfoIconProps>;
19505
19516
 
19506
19517
  declare const WfoChartBar: FC<WfoIconProps>;
19507
19518
 
19519
+ declare const WfoTrashFilled: FC<WfoIconProps>;
19520
+
19508
19521
  type WfoSortButtonProps = {
19509
19522
  WfoIconComponent: FC<WfoIconProps>;
19510
19523
  isActive: boolean;
@@ -19728,6 +19741,61 @@ type WfoAdvancedTableProps<T extends object> = Omit<WfoTableProps<T>, 'columnCon
19728
19741
  };
19729
19742
  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
19743
 
19744
+ type WfoStructuredSearchTableDataColumnConfigItem<T extends object, Property extends keyof T> = WfoTableDataColumnConfigItem<T, Property> & {
19745
+ renderDetails?: (cellValue: T[Property], row: T) => React__default.ReactNode;
19746
+ clipboardText?: (cellValue: T[Property], row: T) => string;
19747
+ };
19748
+ type WfoStructuredSearchTableDataColumnConfig<T extends object> = {
19749
+ [Property in keyof T]: WfoStructuredSearchTableDataColumnConfigItem<T, Property> | WfoTableControlColumnConfigItem<T>;
19750
+ };
19751
+ type WfoStructuredSearchTableColumnConfig<T extends object> = Partial<WfoTableControlColumnConfig<T> | WfoStructuredSearchTableDataColumnConfig<T>>;
19752
+ type SearchParams = {
19753
+ queryText?: string | false;
19754
+ retrieverType?: RetrieverType;
19755
+ ruleGroup?: RuleGroupType | false;
19756
+ limit?: number;
19757
+ sortBy?: {
19758
+ field: string;
19759
+ sortOrder: string;
19760
+ };
19761
+ };
19762
+ type WfoStructuredSearchTableProps<T extends object> = Omit<WfoTableProps<T>, 'columnConfig' | 'onUpdateDataSearch'> & {
19763
+ tableColumnConfig: WfoStructuredSearchTableColumnConfig<T>;
19764
+ rowExpandingConfiguration: WfoTableProps<T>['rowExpandingConfiguration'];
19765
+ defaultHiddenColumns?: TableColumnKeys<T>;
19766
+ queryText?: string;
19767
+ localStorageKey: string;
19768
+ exportDataIsLoading?: boolean;
19769
+ error?: WfoGraphqlError[];
19770
+ onChangeQueryText: (queryString: string) => void;
19771
+ onSearchQueryText: (queryString: string) => void;
19772
+ onShowMore: () => void;
19773
+ onUpdateDataSorting: (updateSorting: WfoDataSorting<T>) => void;
19774
+ getColumnSearchFieldName?: (field: keyof T) => string;
19775
+ onExportData?: () => void;
19776
+ retrieverType: RetrieverType;
19777
+ onUpdateRetrieverType: (newRetrieverType: RetrieverType) => void;
19778
+ filterString?: string;
19779
+ onUpdateFilterString: (filterString: string) => void;
19780
+ isValidFilterString?: boolean;
19781
+ queryBuilderRuleGroup?: RuleGroupType;
19782
+ onUpdateQueryBuilder: (ruleGroup: RuleGroupType | false) => void;
19783
+ handleSearch: (searchParams?: SearchParams) => void;
19784
+ pageSize: number;
19785
+ setPageSize: React__default.Dispatch<React__default.SetStateAction<number>>;
19786
+ totalItems: number | false;
19787
+ hasNextPage: boolean;
19788
+ prefilledFieldOptions: FieldToOperatorMap;
19789
+ };
19790
+ declare const WfoStructuredSearchTable: <T extends object>({ tableColumnConfig, defaultHiddenColumns, queryText, localStorageKey, exportDataIsLoading, error, onChangeQueryText, onSearchQueryText, onShowMore, onExportData, retrieverType, onUpdateRetrieverType, filterString, onUpdateFilterString, isValidFilterString, queryBuilderRuleGroup, onUpdateQueryBuilder, onUpdateDataSorting, getColumnSearchFieldName, handleSearch, pageSize, setPageSize, totalItems, rowExpandingConfiguration, dataSorting, hasNextPage, data, isLoading, prefilledFieldOptions, ...tableProps }: WfoStructuredSearchTableProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
19791
+
19792
+ interface WfoExpandingSearchRowProps {
19793
+ score?: number;
19794
+ perfectMatch?: number;
19795
+ matchingField?: MatchingField | null;
19796
+ }
19797
+ declare const WfoExpandingSearchRow: ({ score, matchingField }: WfoExpandingSearchRowProps) => _emotion_react_jsx_runtime.JSX.Element | null;
19798
+
19731
19799
  type WfoSubscriptionsListProps = {
19732
19800
  alwaysOnFilters?: FilterQuery<SubscriptionListItem>[];
19733
19801
  dataDisplayParams: DataDisplayParams<SubscriptionListItem>;
@@ -21788,13 +21856,19 @@ declare const useUploadFileMutation: <R extends Record<string, any> = ({
21788
21856
  }];
21789
21857
 
21790
21858
  interface SearchPayload {
21859
+ order_by?: {
21860
+ element: string;
21861
+ direction: string;
21862
+ };
21863
+ response_columns: string[];
21791
21864
  entity_type: EntityKind;
21792
21865
  query: string;
21793
- filters?: Group;
21794
- limit?: number;
21866
+ filters?: Filter;
21867
+ limit?: number | number[];
21795
21868
  retriever?: RetrieverType;
21869
+ cursor?: string;
21796
21870
  }
21797
- interface SearchPaginationPayload extends SearchPayload {
21871
+ interface SearchPaginationPayload extends Omit<SearchPayload, 'cursor'> {
21798
21872
  cursor: number;
21799
21873
  }
21800
21874
  interface SearchDefinitionsResponse {
@@ -21803,164 +21877,52 @@ interface SearchDefinitionsResponse {
21803
21877
  value_schema: Record<string, value_schema>;
21804
21878
  };
21805
21879
  }
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
- } & {
21880
+ declare const useSearchQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
21815
21881
  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;
21882
+ originalArgs?: undefined | undefined;
21883
+ data?: undefined | undefined;
21884
+ error?: undefined | undefined;
21885
+ requestId?: undefined | undefined;
21886
+ endpointName?: string | undefined;
21887
+ startedTimeStamp?: undefined | undefined;
21888
+ fulfilledTimeStamp?: undefined | undefined;
21838
21889
  } & {
21839
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21890
+ currentData?: PaginatedSearchResults | undefined;
21840
21891
  isUninitialized: false;
21841
21892
  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;
21893
+ isFetching: false;
21859
21894
  isSuccess: false;
21860
21895
  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;
21896
+ }, "isUninitialized"> & {
21897
+ isUninitialized: true;
21898
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21899
+ baseQueryType?: BaseQueryTypes;
21900
+ apiName?: string;
21901
+ paramsSerializer?: (params: Record<string, unknown>) => string;
21902
+ }) => {
21903
+ error?: undefined;
21904
+ data: unknown;
21905
+ meta?: {} | undefined;
21906
+ } | {
21907
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
21908
+ data?: undefined;
21909
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
21910
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
21911
+ error: graphql.GraphQLError[] | undefined;
21912
+ data?: undefined;
21913
+ meta?: {} | undefined;
21914
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21915
+ currentData?: PaginatedSearchResults | undefined;
21879
21916
  isUninitialized: false;
21880
21917
  isLoading: false;
21918
+ isFetching: false;
21881
21919
  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: {
21920
+ isError: false;
21921
+ }, "data" | "isLoading" | "isFetching"> & {
21922
+ isLoading: true;
21923
+ isFetching: boolean;
21924
+ data: undefined;
21925
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21964
21926
  baseQueryType?: BaseQueryTypes;
21965
21927
  apiName?: string;
21966
21928
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -21976,188 +21938,1445 @@ declare const useSearchMutation: <R extends Record<string, any> = ({
21976
21938
  error: graphql.GraphQLError[] | undefined;
21977
21939
  data?: undefined;
21978
21940
  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;
21941
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21942
+ currentData?: PaginatedSearchResults | undefined;
21943
+ isUninitialized: false;
21994
21944
  isLoading: false;
21945
+ isFetching: false;
21995
21946
  isSuccess: false;
21996
21947
  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">> & {
21948
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
21949
+ isSuccess: true;
21950
+ isFetching: true;
22014
21951
  error: undefined;
22015
21952
  } & {
22016
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
21953
+ data: PaginatedSearchResults;
21954
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21955
+ baseQueryType?: BaseQueryTypes;
21956
+ apiName?: string;
21957
+ paramsSerializer?: (params: Record<string, unknown>) => string;
21958
+ }) => {
21959
+ error?: undefined;
21960
+ data: unknown;
21961
+ meta?: {} | undefined;
21962
+ } | {
21963
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
21964
+ data?: undefined;
21965
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
21966
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
21967
+ error: graphql.GraphQLError[] | undefined;
21968
+ data?: undefined;
21969
+ meta?: {} | undefined;
21970
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21971
+ currentData?: PaginatedSearchResults | undefined;
22017
21972
  isUninitialized: false;
22018
21973
  isLoading: false;
22019
- isSuccess: true;
21974
+ isFetching: false;
21975
+ isSuccess: false;
22020
21976
  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
- } & {
21977
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
21978
+ baseQueryType?: BaseQueryTypes;
21979
+ apiName?: string;
21980
+ paramsSerializer?: (params: Record<string, unknown>) => string;
21981
+ }) => {
21982
+ error?: undefined;
21983
+ data: unknown;
21984
+ meta?: {} | undefined;
21985
+ } | {
21986
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
21987
+ data?: undefined;
21988
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
21989
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
21990
+ error: graphql.GraphQLError[] | undefined;
22031
21991
  data?: undefined;
21992
+ meta?: {} | undefined;
21993
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
21994
+ currentData?: PaginatedSearchResults | undefined;
21995
+ isUninitialized: false;
21996
+ isLoading: false;
21997
+ isFetching: false;
21998
+ isSuccess: false;
21999
+ isError: false;
22000
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
22001
+ isSuccess: true;
22002
+ isFetching: false;
22003
+ error: undefined;
22032
22004
  } & {
22033
- status: _reduxjs_toolkit_query.QueryStatus.pending;
22005
+ data: PaginatedSearchResults;
22006
+ currentData: PaginatedSearchResults;
22007
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22008
+ baseQueryType?: BaseQueryTypes;
22009
+ apiName?: string;
22010
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22011
+ }) => {
22012
+ error?: undefined;
22013
+ data: unknown;
22014
+ meta?: {} | undefined;
22015
+ } | {
22016
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22017
+ data?: undefined;
22018
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22019
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22020
+ error: graphql.GraphQLError[] | undefined;
22021
+ data?: undefined;
22022
+ meta?: {} | undefined;
22023
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22024
+ currentData?: PaginatedSearchResults | undefined;
22034
22025
  isUninitialized: false;
22035
- isLoading: true;
22026
+ isLoading: false;
22027
+ isFetching: false;
22036
22028
  isSuccess: false;
22037
22029
  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;
22030
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22031
+ baseQueryType?: BaseQueryTypes;
22032
+ apiName?: string;
22033
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22034
+ }) => {
22035
+ error?: undefined;
22036
+ data: unknown;
22037
+ meta?: {} | undefined;
22038
+ } | {
22039
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22040
+ data?: undefined;
22041
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22042
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22043
+ error: graphql.GraphQLError[] | undefined;
22044
+ data?: undefined;
22045
+ meta?: {} | undefined;
22046
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22047
+ currentData?: PaginatedSearchResults | undefined;
22056
22048
  isUninitialized: false;
22057
22049
  isLoading: false;
22050
+ isFetching: false;
22058
22051
  isSuccess: false;
22052
+ isError: false;
22053
+ }, "error" | "isError"> & {
22059
22054
  isError: true;
22060
- })>(options?: {
22061
- selectFromResult?: ((state: ({
22062
- requestId?: undefined;
22055
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22056
+ baseQueryType?: BaseQueryTypes;
22057
+ apiName?: string;
22058
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22059
+ }) => {
22060
+ error?: undefined;
22061
+ data: unknown;
22062
+ meta?: {} | undefined;
22063
+ } | {
22064
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22065
+ data?: undefined;
22066
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22067
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22068
+ error: graphql.GraphQLError[] | undefined;
22069
+ data?: undefined;
22070
+ meta?: {} | undefined;
22071
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22072
+ currentData?: PaginatedSearchResults | undefined;
22073
+ isUninitialized: false;
22074
+ isLoading: false;
22075
+ isFetching: false;
22076
+ isSuccess: false;
22077
+ isError: false;
22078
+ }, "error">>)> & {
22079
+ status: _reduxjs_toolkit_query.QueryStatus;
22080
+ }>(arg: typeof _reduxjs_toolkit_query.skipToken | SearchPayload, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
22081
+ skip?: boolean;
22082
+ refetchOnMountOrArgChange?: boolean | number;
22083
+ } & {
22084
+ skip?: boolean;
22085
+ selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22063
22086
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22064
- data?: undefined;
22065
- error?: undefined;
22066
- endpointName?: string;
22067
- startedTimeStamp?: undefined;
22068
- fulfilledTimeStamp?: undefined;
22087
+ originalArgs?: undefined | undefined;
22088
+ data?: undefined | undefined;
22089
+ error?: undefined | undefined;
22090
+ requestId?: undefined | undefined;
22091
+ endpointName?: string | undefined;
22092
+ startedTimeStamp?: undefined | undefined;
22093
+ fulfilledTimeStamp?: undefined | undefined;
22069
22094
  } & {
22070
- status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22095
+ currentData?: PaginatedSearchResults | undefined;
22096
+ isUninitialized: false;
22097
+ isLoading: false;
22098
+ isFetching: false;
22099
+ isSuccess: false;
22100
+ isError: false;
22101
+ }, "isUninitialized"> & {
22071
22102
  isUninitialized: true;
22103
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22104
+ baseQueryType?: BaseQueryTypes;
22105
+ apiName?: string;
22106
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22107
+ }) => {
22108
+ error?: undefined;
22109
+ data: unknown;
22110
+ meta?: {} | undefined;
22111
+ } | {
22112
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22113
+ data?: undefined;
22114
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22115
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22116
+ error: graphql.GraphQLError[] | undefined;
22117
+ data?: undefined;
22118
+ meta?: {} | undefined;
22119
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22120
+ currentData?: PaginatedSearchResults | undefined;
22121
+ isUninitialized: false;
22122
+ isLoading: false;
22123
+ isFetching: false;
22124
+ isSuccess: false;
22125
+ isError: false;
22126
+ }, "data" | "isLoading" | "isFetching"> & {
22127
+ isLoading: true;
22128
+ isFetching: boolean;
22129
+ data: undefined;
22130
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22131
+ baseQueryType?: BaseQueryTypes;
22132
+ apiName?: string;
22133
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22134
+ }) => {
22135
+ error?: undefined;
22136
+ data: unknown;
22137
+ meta?: {} | undefined;
22138
+ } | {
22139
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22140
+ data?: undefined;
22141
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22142
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22143
+ error: graphql.GraphQLError[] | undefined;
22144
+ data?: undefined;
22145
+ meta?: {} | undefined;
22146
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22147
+ currentData?: PaginatedSearchResults | undefined;
22148
+ isUninitialized: false;
22072
22149
  isLoading: false;
22150
+ isFetching: false;
22073
22151
  isSuccess: false;
22074
22152
  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">> & {
22153
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22154
+ isSuccess: true;
22155
+ isFetching: true;
22092
22156
  error: undefined;
22093
22157
  } & {
22094
- status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22158
+ data: PaginatedSearchResults;
22159
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22160
+ baseQueryType?: BaseQueryTypes;
22161
+ apiName?: string;
22162
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22163
+ }) => {
22164
+ error?: undefined;
22165
+ data: unknown;
22166
+ meta?: {} | undefined;
22167
+ } | {
22168
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22169
+ data?: undefined;
22170
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22171
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22172
+ error: graphql.GraphQLError[] | undefined;
22173
+ data?: undefined;
22174
+ meta?: {} | undefined;
22175
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22176
+ currentData?: PaginatedSearchResults | undefined;
22095
22177
  isUninitialized: false;
22096
22178
  isLoading: false;
22097
- isSuccess: true;
22179
+ isFetching: false;
22180
+ isSuccess: false;
22098
22181
  isError: false;
22099
- }) | ({
22182
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22183
+ baseQueryType?: BaseQueryTypes;
22184
+ apiName?: string;
22185
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22186
+ }) => {
22187
+ error?: undefined;
22188
+ data: unknown;
22189
+ meta?: {} | undefined;
22190
+ } | {
22191
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22192
+ data?: undefined;
22193
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22194
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22195
+ error: graphql.GraphQLError[] | undefined;
22196
+ data?: undefined;
22197
+ meta?: {} | undefined;
22198
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22199
+ currentData?: PaginatedSearchResults | undefined;
22200
+ isUninitialized: false;
22201
+ isLoading: false;
22202
+ isFetching: false;
22203
+ isSuccess: false;
22204
+ isError: false;
22205
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
22206
+ isSuccess: true;
22207
+ isFetching: false;
22208
+ error: undefined;
22209
+ } & {
22210
+ data: PaginatedSearchResults;
22211
+ currentData: PaginatedSearchResults;
22212
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22213
+ baseQueryType?: BaseQueryTypes;
22214
+ apiName?: string;
22215
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22216
+ }) => {
22217
+ error?: undefined;
22218
+ data: unknown;
22219
+ meta?: {} | undefined;
22220
+ } | {
22221
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22222
+ data?: undefined;
22223
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22224
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22225
+ error: graphql.GraphQLError[] | undefined;
22226
+ data?: undefined;
22227
+ meta?: {} | undefined;
22228
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22229
+ currentData?: PaginatedSearchResults | undefined;
22230
+ isUninitialized: false;
22231
+ isLoading: false;
22232
+ isFetching: false;
22233
+ isSuccess: false;
22234
+ isError: false;
22235
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22236
+ baseQueryType?: BaseQueryTypes;
22237
+ apiName?: string;
22238
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22239
+ }) => {
22240
+ error?: undefined;
22241
+ data: unknown;
22242
+ meta?: {} | undefined;
22243
+ } | {
22244
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22245
+ data?: undefined;
22246
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22247
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22248
+ error: graphql.GraphQLError[] | undefined;
22249
+ data?: undefined;
22250
+ meta?: {} | undefined;
22251
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22252
+ currentData?: PaginatedSearchResults | undefined;
22253
+ isUninitialized: false;
22254
+ isLoading: false;
22255
+ isFetching: false;
22256
+ isSuccess: false;
22257
+ isError: false;
22258
+ }, "error" | "isError"> & {
22259
+ isError: true;
22260
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22261
+ baseQueryType?: BaseQueryTypes;
22262
+ apiName?: string;
22263
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22264
+ }) => {
22265
+ error?: undefined;
22266
+ data: unknown;
22267
+ meta?: {} | undefined;
22268
+ } | {
22269
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22270
+ data?: undefined;
22271
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22272
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22273
+ error: graphql.GraphQLError[] | undefined;
22274
+ data?: undefined;
22275
+ meta?: {} | undefined;
22276
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22277
+ currentData?: PaginatedSearchResults | undefined;
22278
+ isUninitialized: false;
22279
+ isLoading: false;
22280
+ isFetching: false;
22281
+ isSuccess: false;
22282
+ isError: false;
22283
+ }, "error">>)> & {
22284
+ status: _reduxjs_toolkit_query.QueryStatus;
22285
+ }) => R) | undefined;
22286
+ }) | undefined) => R & {
22287
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22288
+ baseQueryType?: BaseQueryTypes;
22289
+ apiName?: string;
22290
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22291
+ }) => {
22292
+ error?: undefined;
22293
+ data: unknown;
22294
+ meta?: {} | undefined;
22295
+ } | {
22296
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22297
+ data?: undefined;
22298
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22299
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22300
+ error: graphql.GraphQLError[] | undefined;
22301
+ data?: undefined;
22302
+ meta?: {} | undefined;
22303
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>;
22304
+ };
22305
+ declare const useLazySearchQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22306
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22307
+ originalArgs?: undefined | undefined;
22308
+ data?: undefined | undefined;
22309
+ error?: undefined | undefined;
22310
+ requestId?: undefined | undefined;
22311
+ endpointName?: string | undefined;
22312
+ startedTimeStamp?: undefined | undefined;
22313
+ fulfilledTimeStamp?: undefined | undefined;
22314
+ } & {
22315
+ currentData?: PaginatedSearchResults | undefined;
22316
+ isUninitialized: false;
22317
+ isLoading: false;
22318
+ isFetching: false;
22319
+ isSuccess: false;
22320
+ isError: false;
22321
+ }, "isUninitialized"> & {
22322
+ isUninitialized: true;
22323
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22324
+ baseQueryType?: BaseQueryTypes;
22325
+ apiName?: string;
22326
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22327
+ }) => {
22328
+ error?: undefined;
22329
+ data: unknown;
22330
+ meta?: {} | undefined;
22331
+ } | {
22332
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22333
+ data?: undefined;
22334
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22335
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22336
+ error: graphql.GraphQLError[] | undefined;
22337
+ data?: undefined;
22338
+ meta?: {} | undefined;
22339
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22340
+ currentData?: PaginatedSearchResults | undefined;
22341
+ isUninitialized: false;
22342
+ isLoading: false;
22343
+ isFetching: false;
22344
+ isSuccess: false;
22345
+ isError: false;
22346
+ }, "data" | "isLoading" | "isFetching"> & {
22347
+ isLoading: true;
22348
+ isFetching: boolean;
22349
+ data: undefined;
22350
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22351
+ baseQueryType?: BaseQueryTypes;
22352
+ apiName?: string;
22353
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22354
+ }) => {
22355
+ error?: undefined;
22356
+ data: unknown;
22357
+ meta?: {} | undefined;
22358
+ } | {
22359
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22360
+ data?: undefined;
22361
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22362
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22363
+ error: graphql.GraphQLError[] | undefined;
22364
+ data?: undefined;
22365
+ meta?: {} | undefined;
22366
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22367
+ currentData?: PaginatedSearchResults | undefined;
22368
+ isUninitialized: false;
22369
+ isLoading: false;
22370
+ isFetching: false;
22371
+ isSuccess: false;
22372
+ isError: false;
22373
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22374
+ isSuccess: true;
22375
+ isFetching: true;
22376
+ error: undefined;
22377
+ } & {
22378
+ data: PaginatedSearchResults;
22379
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22380
+ baseQueryType?: BaseQueryTypes;
22381
+ apiName?: string;
22382
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22383
+ }) => {
22384
+ error?: undefined;
22385
+ data: unknown;
22386
+ meta?: {} | undefined;
22387
+ } | {
22388
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22389
+ data?: undefined;
22390
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22391
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22392
+ error: graphql.GraphQLError[] | undefined;
22393
+ data?: undefined;
22394
+ meta?: {} | undefined;
22395
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22396
+ currentData?: PaginatedSearchResults | undefined;
22397
+ isUninitialized: false;
22398
+ isLoading: false;
22399
+ isFetching: false;
22400
+ isSuccess: false;
22401
+ isError: false;
22402
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22403
+ baseQueryType?: BaseQueryTypes;
22404
+ apiName?: string;
22405
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22406
+ }) => {
22407
+ error?: undefined;
22408
+ data: unknown;
22409
+ meta?: {} | undefined;
22410
+ } | {
22411
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22412
+ data?: undefined;
22413
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22414
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22415
+ error: graphql.GraphQLError[] | undefined;
22416
+ data?: undefined;
22417
+ meta?: {} | undefined;
22418
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22419
+ currentData?: PaginatedSearchResults | undefined;
22420
+ isUninitialized: false;
22421
+ isLoading: false;
22422
+ isFetching: false;
22423
+ isSuccess: false;
22424
+ isError: false;
22425
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
22426
+ isSuccess: true;
22427
+ isFetching: false;
22428
+ error: undefined;
22429
+ } & {
22430
+ data: PaginatedSearchResults;
22431
+ currentData: PaginatedSearchResults;
22432
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22433
+ baseQueryType?: BaseQueryTypes;
22434
+ apiName?: string;
22435
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22436
+ }) => {
22437
+ error?: undefined;
22438
+ data: unknown;
22439
+ meta?: {} | undefined;
22440
+ } | {
22441
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22442
+ data?: undefined;
22443
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22444
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22445
+ error: graphql.GraphQLError[] | undefined;
22446
+ data?: undefined;
22447
+ meta?: {} | undefined;
22448
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22449
+ currentData?: PaginatedSearchResults | undefined;
22450
+ isUninitialized: false;
22451
+ isLoading: false;
22452
+ isFetching: false;
22453
+ isSuccess: false;
22454
+ isError: false;
22455
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22456
+ baseQueryType?: BaseQueryTypes;
22457
+ apiName?: string;
22458
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22459
+ }) => {
22460
+ error?: undefined;
22461
+ data: unknown;
22462
+ meta?: {} | undefined;
22463
+ } | {
22464
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22465
+ data?: undefined;
22466
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22467
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22468
+ error: graphql.GraphQLError[] | undefined;
22469
+ data?: undefined;
22470
+ meta?: {} | undefined;
22471
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22472
+ currentData?: PaginatedSearchResults | undefined;
22473
+ isUninitialized: false;
22474
+ isLoading: false;
22475
+ isFetching: false;
22476
+ isSuccess: false;
22477
+ isError: false;
22478
+ }, "error" | "isError"> & {
22479
+ isError: true;
22480
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22481
+ baseQueryType?: BaseQueryTypes;
22482
+ apiName?: string;
22483
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22484
+ }) => {
22485
+ error?: undefined;
22486
+ data: unknown;
22487
+ meta?: {} | undefined;
22488
+ } | {
22489
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22490
+ data?: undefined;
22491
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22492
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22493
+ error: graphql.GraphQLError[] | undefined;
22494
+ data?: undefined;
22495
+ meta?: {} | undefined;
22496
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22497
+ currentData?: PaginatedSearchResults | undefined;
22498
+ isUninitialized: false;
22499
+ isLoading: false;
22500
+ isFetching: false;
22501
+ isSuccess: false;
22502
+ isError: false;
22503
+ }, "error">>)> & {
22504
+ status: _reduxjs_toolkit_query.QueryStatus;
22505
+ }>(options?: (_reduxjs_toolkit_query.SubscriptionOptions & Omit<{
22506
+ skip?: boolean;
22507
+ selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22508
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22509
+ originalArgs?: undefined | undefined;
22510
+ data?: undefined | undefined;
22511
+ error?: undefined | undefined;
22512
+ requestId?: undefined | undefined;
22513
+ endpointName?: string | undefined;
22514
+ startedTimeStamp?: undefined | undefined;
22515
+ fulfilledTimeStamp?: undefined | undefined;
22516
+ } & {
22517
+ currentData?: PaginatedSearchResults | undefined;
22518
+ isUninitialized: false;
22519
+ isLoading: false;
22520
+ isFetching: false;
22521
+ isSuccess: false;
22522
+ isError: false;
22523
+ }, "isUninitialized"> & {
22524
+ isUninitialized: true;
22525
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22526
+ baseQueryType?: BaseQueryTypes;
22527
+ apiName?: string;
22528
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22529
+ }) => {
22530
+ error?: undefined;
22531
+ data: unknown;
22532
+ meta?: {} | undefined;
22533
+ } | {
22534
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22535
+ data?: undefined;
22536
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22537
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22538
+ error: graphql.GraphQLError[] | undefined;
22539
+ data?: undefined;
22540
+ meta?: {} | undefined;
22541
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22542
+ currentData?: PaginatedSearchResults | undefined;
22543
+ isUninitialized: false;
22544
+ isLoading: false;
22545
+ isFetching: false;
22546
+ isSuccess: false;
22547
+ isError: false;
22548
+ }, "data" | "isLoading" | "isFetching"> & {
22549
+ isLoading: true;
22550
+ isFetching: boolean;
22551
+ data: undefined;
22552
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22553
+ baseQueryType?: BaseQueryTypes;
22554
+ apiName?: string;
22555
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22556
+ }) => {
22557
+ error?: undefined;
22558
+ data: unknown;
22559
+ meta?: {} | undefined;
22560
+ } | {
22561
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22562
+ data?: undefined;
22563
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22564
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22565
+ error: graphql.GraphQLError[] | undefined;
22566
+ data?: undefined;
22567
+ meta?: {} | undefined;
22568
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22569
+ currentData?: PaginatedSearchResults | undefined;
22570
+ isUninitialized: false;
22571
+ isLoading: false;
22572
+ isFetching: false;
22573
+ isSuccess: false;
22574
+ isError: false;
22575
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22576
+ isSuccess: true;
22577
+ isFetching: true;
22578
+ error: undefined;
22579
+ } & {
22580
+ data: PaginatedSearchResults;
22581
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22582
+ baseQueryType?: BaseQueryTypes;
22583
+ apiName?: string;
22584
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22585
+ }) => {
22586
+ error?: undefined;
22587
+ data: unknown;
22588
+ meta?: {} | undefined;
22589
+ } | {
22590
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22591
+ data?: undefined;
22592
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22593
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22594
+ error: graphql.GraphQLError[] | undefined;
22595
+ data?: undefined;
22596
+ meta?: {} | undefined;
22597
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22598
+ currentData?: PaginatedSearchResults | undefined;
22599
+ isUninitialized: false;
22600
+ isLoading: false;
22601
+ isFetching: false;
22602
+ isSuccess: false;
22603
+ isError: false;
22604
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22605
+ baseQueryType?: BaseQueryTypes;
22606
+ apiName?: string;
22607
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22608
+ }) => {
22609
+ error?: undefined;
22610
+ data: unknown;
22611
+ meta?: {} | undefined;
22612
+ } | {
22613
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22614
+ data?: undefined;
22615
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22616
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22617
+ error: graphql.GraphQLError[] | undefined;
22618
+ data?: undefined;
22619
+ meta?: {} | undefined;
22620
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22621
+ currentData?: PaginatedSearchResults | undefined;
22622
+ isUninitialized: false;
22623
+ isLoading: false;
22624
+ isFetching: false;
22625
+ isSuccess: false;
22626
+ isError: false;
22627
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
22628
+ isSuccess: true;
22629
+ isFetching: false;
22630
+ error: undefined;
22631
+ } & {
22632
+ data: PaginatedSearchResults;
22633
+ currentData: PaginatedSearchResults;
22634
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22635
+ baseQueryType?: BaseQueryTypes;
22636
+ apiName?: string;
22637
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22638
+ }) => {
22639
+ error?: undefined;
22640
+ data: unknown;
22641
+ meta?: {} | undefined;
22642
+ } | {
22643
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22644
+ data?: undefined;
22645
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22646
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22647
+ error: graphql.GraphQLError[] | undefined;
22648
+ data?: undefined;
22649
+ meta?: {} | undefined;
22650
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22651
+ currentData?: PaginatedSearchResults | undefined;
22652
+ isUninitialized: false;
22653
+ isLoading: false;
22654
+ isFetching: false;
22655
+ isSuccess: false;
22656
+ isError: false;
22657
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22658
+ baseQueryType?: BaseQueryTypes;
22659
+ apiName?: string;
22660
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22661
+ }) => {
22662
+ error?: undefined;
22663
+ data: unknown;
22664
+ meta?: {} | undefined;
22665
+ } | {
22666
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22667
+ data?: undefined;
22668
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22669
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22670
+ error: graphql.GraphQLError[] | undefined;
22671
+ data?: undefined;
22672
+ meta?: {} | undefined;
22673
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22674
+ currentData?: PaginatedSearchResults | undefined;
22675
+ isUninitialized: false;
22676
+ isLoading: false;
22677
+ isFetching: false;
22678
+ isSuccess: false;
22679
+ isError: false;
22680
+ }, "error" | "isError"> & {
22681
+ isError: true;
22682
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22683
+ baseQueryType?: BaseQueryTypes;
22684
+ apiName?: string;
22685
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22686
+ }) => {
22687
+ error?: undefined;
22688
+ data: unknown;
22689
+ meta?: {} | undefined;
22690
+ } | {
22691
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22692
+ data?: undefined;
22693
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22694
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22695
+ error: graphql.GraphQLError[] | undefined;
22696
+ data?: undefined;
22697
+ meta?: {} | undefined;
22698
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>> & {
22699
+ currentData?: PaginatedSearchResults | undefined;
22700
+ isUninitialized: false;
22701
+ isLoading: false;
22702
+ isFetching: false;
22703
+ isSuccess: false;
22704
+ isError: false;
22705
+ }, "error">>)> & {
22706
+ status: _reduxjs_toolkit_query.QueryStatus;
22707
+ }) => R) | undefined;
22708
+ }, "skip">) | undefined) => [(arg: SearchPayload, preferCacheValue?: boolean) => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<SearchPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22709
+ baseQueryType?: BaseQueryTypes;
22710
+ apiName?: string;
22711
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22712
+ }) => {
22713
+ error?: undefined;
22714
+ data: unknown;
22715
+ meta?: {} | undefined;
22716
+ } | {
22717
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22718
+ data?: undefined;
22719
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22720
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22721
+ error: graphql.GraphQLError[] | undefined;
22722
+ data?: undefined;
22723
+ meta?: {} | undefined;
22724
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>, R & {
22725
+ reset: () => void;
22726
+ }, {
22727
+ lastArg: SearchPayload;
22728
+ }];
22729
+ declare const useSearchWithPaginationMutation: <R extends Record<string, any> = ({
22730
+ requestId?: undefined;
22731
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22732
+ data?: undefined;
22733
+ error?: undefined;
22734
+ endpointName?: string;
22735
+ startedTimeStamp?: undefined;
22736
+ fulfilledTimeStamp?: undefined;
22737
+ } & {
22738
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22739
+ isUninitialized: true;
22740
+ isLoading: false;
22741
+ isSuccess: false;
22742
+ isError: false;
22743
+ }) | ({
22744
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22745
+ } & Omit<{
22746
+ requestId: string;
22747
+ data?: PaginatedSearchResults | undefined;
22748
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22749
+ endpointName: string;
22750
+ startedTimeStamp: number;
22751
+ fulfilledTimeStamp?: number;
22752
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
22753
+ requestId: string;
22754
+ data?: PaginatedSearchResults | undefined;
22755
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22756
+ endpointName: string;
22757
+ startedTimeStamp: number;
22758
+ fulfilledTimeStamp?: number;
22759
+ }, "data" | "fulfilledTimeStamp">> & {
22760
+ error: undefined;
22761
+ } & {
22762
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22763
+ isUninitialized: false;
22764
+ isLoading: false;
22765
+ isSuccess: true;
22766
+ isError: false;
22767
+ }) | ({
22768
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
22769
+ } & {
22770
+ requestId: string;
22771
+ data?: PaginatedSearchResults | undefined;
22772
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22773
+ endpointName: string;
22774
+ startedTimeStamp: number;
22775
+ fulfilledTimeStamp?: number;
22776
+ } & {
22777
+ data?: undefined;
22778
+ } & {
22779
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
22780
+ isUninitialized: false;
22781
+ isLoading: true;
22782
+ isSuccess: false;
22783
+ isError: false;
22784
+ }) | ({
22785
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22786
+ } & Omit<{
22787
+ requestId: string;
22788
+ data?: PaginatedSearchResults | undefined;
22789
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22790
+ endpointName: string;
22791
+ startedTimeStamp: number;
22792
+ fulfilledTimeStamp?: number;
22793
+ }, "error"> & Required<Pick<{
22794
+ requestId: string;
22795
+ data?: PaginatedSearchResults | undefined;
22796
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22797
+ endpointName: string;
22798
+ startedTimeStamp: number;
22799
+ fulfilledTimeStamp?: number;
22800
+ }, "error">> & {
22801
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22802
+ isUninitialized: false;
22803
+ isLoading: false;
22804
+ isSuccess: false;
22805
+ isError: true;
22806
+ })>(options?: {
22807
+ selectFromResult?: ((state: ({
22808
+ requestId?: undefined;
22809
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22810
+ data?: undefined;
22811
+ error?: undefined;
22812
+ endpointName?: string;
22813
+ startedTimeStamp?: undefined;
22814
+ fulfilledTimeStamp?: undefined;
22815
+ } & {
22816
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22817
+ isUninitialized: true;
22818
+ isLoading: false;
22819
+ isSuccess: false;
22820
+ isError: false;
22821
+ }) | ({
22822
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22823
+ } & Omit<{
22824
+ requestId: string;
22825
+ data?: PaginatedSearchResults | undefined;
22826
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22827
+ endpointName: string;
22828
+ startedTimeStamp: number;
22829
+ fulfilledTimeStamp?: number;
22830
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
22831
+ requestId: string;
22832
+ data?: PaginatedSearchResults | undefined;
22833
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22834
+ endpointName: string;
22835
+ startedTimeStamp: number;
22836
+ fulfilledTimeStamp?: number;
22837
+ }, "data" | "fulfilledTimeStamp">> & {
22838
+ error: undefined;
22839
+ } & {
22840
+ status: _reduxjs_toolkit_query.QueryStatus.fulfilled;
22841
+ isUninitialized: false;
22842
+ isLoading: false;
22843
+ isSuccess: true;
22844
+ isError: false;
22845
+ }) | ({
22846
+ status: _reduxjs_toolkit_query.QueryStatus.pending;
22847
+ } & {
22848
+ requestId: string;
22849
+ data?: PaginatedSearchResults | undefined;
22850
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22851
+ endpointName: string;
22852
+ startedTimeStamp: number;
22853
+ fulfilledTimeStamp?: number;
22854
+ } & {
22855
+ data?: undefined;
22856
+ } & {
22100
22857
  status: _reduxjs_toolkit_query.QueryStatus.pending;
22858
+ isUninitialized: false;
22859
+ isLoading: true;
22860
+ isSuccess: false;
22861
+ isError: false;
22862
+ }) | ({
22863
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22864
+ } & Omit<{
22865
+ requestId: string;
22866
+ data?: PaginatedSearchResults | undefined;
22867
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22868
+ endpointName: string;
22869
+ startedTimeStamp: number;
22870
+ fulfilledTimeStamp?: number;
22871
+ }, "error"> & Required<Pick<{
22872
+ requestId: string;
22873
+ data?: PaginatedSearchResults | undefined;
22874
+ error?: _reduxjs_toolkit.SerializedError | _reduxjs_toolkit_query.FetchBaseQueryError | graphql.GraphQLError[] | undefined;
22875
+ endpointName: string;
22876
+ startedTimeStamp: number;
22877
+ fulfilledTimeStamp?: number;
22878
+ }, "error">> & {
22879
+ status: _reduxjs_toolkit_query.QueryStatus.rejected;
22880
+ isUninitialized: false;
22881
+ isLoading: false;
22882
+ isSuccess: false;
22883
+ isError: true;
22884
+ })) => R) | undefined;
22885
+ fixedCacheKey?: string;
22886
+ } | undefined) => readonly [(arg: SearchPaginationPayload) => _reduxjs_toolkit_query.MutationActionCreatorResult<_reduxjs_toolkit_query.MutationDefinition<SearchPaginationPayload, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22887
+ baseQueryType?: BaseQueryTypes;
22888
+ apiName?: string;
22889
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22890
+ }) => {
22891
+ error?: undefined;
22892
+ data: unknown;
22893
+ meta?: {} | undefined;
22894
+ } | {
22895
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22896
+ data?: undefined;
22897
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22898
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22899
+ error: graphql.GraphQLError[] | undefined;
22900
+ data?: undefined;
22901
+ meta?: {} | undefined;
22902
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PaginatedSearchResults, "orchestratorApi", unknown>>, R & {
22903
+ originalArgs?: SearchPaginationPayload | undefined;
22904
+ reset: () => void;
22905
+ }];
22906
+ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22907
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22908
+ originalArgs?: undefined | undefined;
22909
+ data?: undefined | undefined;
22910
+ error?: undefined | undefined;
22911
+ requestId?: undefined | undefined;
22912
+ endpointName?: string | undefined;
22913
+ startedTimeStamp?: undefined | undefined;
22914
+ fulfilledTimeStamp?: undefined | undefined;
22915
+ } & {
22916
+ currentData?: PathAutocompleteResponse | undefined;
22917
+ isUninitialized: false;
22918
+ isLoading: false;
22919
+ isFetching: false;
22920
+ isSuccess: false;
22921
+ isError: false;
22922
+ }, "isUninitialized"> & {
22923
+ isUninitialized: true;
22924
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22925
+ q: string;
22926
+ entity_type: EntityKind;
22927
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22928
+ baseQueryType?: BaseQueryTypes;
22929
+ apiName?: string;
22930
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22931
+ }) => {
22932
+ error?: undefined;
22933
+ data: unknown;
22934
+ meta?: {} | undefined;
22935
+ } | {
22936
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22937
+ data?: undefined;
22938
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22939
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22940
+ error: graphql.GraphQLError[] | undefined;
22941
+ data?: undefined;
22942
+ meta?: {} | undefined;
22943
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22944
+ currentData?: PathAutocompleteResponse | undefined;
22945
+ isUninitialized: false;
22946
+ isLoading: false;
22947
+ isFetching: false;
22948
+ isSuccess: false;
22949
+ isError: false;
22950
+ }, "data" | "isLoading" | "isFetching"> & {
22951
+ isLoading: true;
22952
+ isFetching: boolean;
22953
+ data: undefined;
22954
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22955
+ q: string;
22956
+ entity_type: EntityKind;
22957
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22958
+ baseQueryType?: BaseQueryTypes;
22959
+ apiName?: string;
22960
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22961
+ }) => {
22962
+ error?: undefined;
22963
+ data: unknown;
22964
+ meta?: {} | undefined;
22965
+ } | {
22966
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22967
+ data?: undefined;
22968
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
22969
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
22970
+ error: graphql.GraphQLError[] | undefined;
22971
+ data?: undefined;
22972
+ meta?: {} | undefined;
22973
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22974
+ currentData?: PathAutocompleteResponse | undefined;
22975
+ isUninitialized: false;
22976
+ isLoading: false;
22977
+ isFetching: false;
22978
+ isSuccess: false;
22979
+ isError: false;
22980
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
22981
+ isSuccess: true;
22982
+ isFetching: true;
22983
+ error: undefined;
22984
+ } & {
22985
+ data: PathAutocompleteResponse;
22986
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
22987
+ q: string;
22988
+ entity_type: EntityKind;
22989
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22990
+ baseQueryType?: BaseQueryTypes;
22991
+ apiName?: string;
22992
+ paramsSerializer?: (params: Record<string, unknown>) => string;
22993
+ }) => {
22994
+ error?: undefined;
22995
+ data: unknown;
22996
+ meta?: {} | undefined;
22997
+ } | {
22998
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
22999
+ data?: undefined;
23000
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23001
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23002
+ error: graphql.GraphQLError[] | undefined;
23003
+ data?: undefined;
23004
+ meta?: {} | undefined;
23005
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23006
+ currentData?: PathAutocompleteResponse | undefined;
23007
+ isUninitialized: false;
23008
+ isLoading: false;
23009
+ isFetching: false;
23010
+ isSuccess: false;
23011
+ isError: false;
23012
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23013
+ q: string;
23014
+ entity_type: EntityKind;
23015
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23016
+ baseQueryType?: BaseQueryTypes;
23017
+ apiName?: string;
23018
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23019
+ }) => {
23020
+ error?: undefined;
23021
+ data: unknown;
23022
+ meta?: {} | undefined;
23023
+ } | {
23024
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23025
+ data?: undefined;
23026
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23027
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23028
+ error: graphql.GraphQLError[] | undefined;
23029
+ data?: undefined;
23030
+ meta?: {} | undefined;
23031
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23032
+ currentData?: PathAutocompleteResponse | undefined;
23033
+ isUninitialized: false;
23034
+ isLoading: false;
23035
+ isFetching: false;
23036
+ isSuccess: false;
23037
+ isError: false;
23038
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
23039
+ isSuccess: true;
23040
+ isFetching: false;
23041
+ error: undefined;
23042
+ } & {
23043
+ data: PathAutocompleteResponse;
23044
+ currentData: PathAutocompleteResponse;
23045
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23046
+ q: string;
23047
+ entity_type: EntityKind;
23048
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23049
+ baseQueryType?: BaseQueryTypes;
23050
+ apiName?: string;
23051
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23052
+ }) => {
23053
+ error?: undefined;
23054
+ data: unknown;
23055
+ meta?: {} | undefined;
23056
+ } | {
23057
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23058
+ data?: undefined;
23059
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23060
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23061
+ error: graphql.GraphQLError[] | undefined;
23062
+ data?: undefined;
23063
+ meta?: {} | undefined;
23064
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23065
+ currentData?: PathAutocompleteResponse | undefined;
23066
+ isUninitialized: false;
23067
+ isLoading: false;
23068
+ isFetching: false;
23069
+ isSuccess: false;
23070
+ isError: false;
23071
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23072
+ q: string;
23073
+ entity_type: EntityKind;
23074
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23075
+ baseQueryType?: BaseQueryTypes;
23076
+ apiName?: string;
23077
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23078
+ }) => {
23079
+ error?: undefined;
23080
+ data: unknown;
23081
+ meta?: {} | undefined;
23082
+ } | {
23083
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23084
+ data?: undefined;
23085
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23086
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23087
+ error: graphql.GraphQLError[] | undefined;
23088
+ data?: undefined;
23089
+ meta?: {} | undefined;
23090
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23091
+ currentData?: PathAutocompleteResponse | undefined;
23092
+ isUninitialized: false;
23093
+ isLoading: false;
23094
+ isFetching: false;
23095
+ isSuccess: false;
23096
+ isError: false;
23097
+ }, "error" | "isError"> & {
23098
+ isError: true;
23099
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23100
+ q: string;
23101
+ entity_type: EntityKind;
23102
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23103
+ baseQueryType?: BaseQueryTypes;
23104
+ apiName?: string;
23105
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23106
+ }) => {
23107
+ error?: undefined;
23108
+ data: unknown;
23109
+ meta?: {} | undefined;
23110
+ } | {
23111
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23112
+ data?: undefined;
23113
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23114
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23115
+ error: graphql.GraphQLError[] | undefined;
23116
+ data?: undefined;
23117
+ meta?: {} | undefined;
23118
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23119
+ currentData?: PathAutocompleteResponse | undefined;
23120
+ isUninitialized: false;
23121
+ isLoading: false;
23122
+ isFetching: false;
23123
+ isSuccess: false;
23124
+ isError: false;
23125
+ }, "error">>)> & {
23126
+ status: _reduxjs_toolkit_query.QueryStatus;
23127
+ }>(arg: typeof _reduxjs_toolkit_query.skipToken | {
23128
+ q: string;
23129
+ entity_type: EntityKind;
23130
+ }, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
23131
+ skip?: boolean;
23132
+ refetchOnMountOrArgChange?: boolean | number;
23133
+ } & {
23134
+ skip?: boolean;
23135
+ selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
23136
+ status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
23137
+ originalArgs?: undefined | undefined;
23138
+ data?: undefined | undefined;
23139
+ error?: undefined | undefined;
23140
+ requestId?: undefined | undefined;
23141
+ endpointName?: string | undefined;
23142
+ startedTimeStamp?: undefined | undefined;
23143
+ fulfilledTimeStamp?: undefined | undefined;
22101
23144
  } & {
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;
23145
+ currentData?: PathAutocompleteResponse | undefined;
23146
+ isUninitialized: false;
23147
+ isLoading: false;
23148
+ isFetching: false;
23149
+ isSuccess: false;
23150
+ isError: false;
23151
+ }, "isUninitialized"> & {
23152
+ isUninitialized: true;
23153
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23154
+ q: string;
23155
+ entity_type: EntityKind;
23156
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23157
+ baseQueryType?: BaseQueryTypes;
23158
+ apiName?: string;
23159
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23160
+ }) => {
23161
+ error?: undefined;
23162
+ data: unknown;
23163
+ meta?: {} | undefined;
23164
+ } | {
23165
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23166
+ data?: undefined;
23167
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23168
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23169
+ error: graphql.GraphQLError[] | undefined;
23170
+ data?: undefined;
23171
+ meta?: {} | undefined;
23172
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23173
+ currentData?: PathAutocompleteResponse | undefined;
23174
+ isUninitialized: false;
23175
+ isLoading: false;
23176
+ isFetching: false;
23177
+ isSuccess: false;
23178
+ isError: false;
23179
+ }, "data" | "isLoading" | "isFetching"> & {
23180
+ isLoading: true;
23181
+ isFetching: boolean;
23182
+ data: undefined;
23183
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23184
+ q: string;
23185
+ entity_type: EntityKind;
23186
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23187
+ baseQueryType?: BaseQueryTypes;
23188
+ apiName?: string;
23189
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23190
+ }) => {
23191
+ error?: undefined;
23192
+ data: unknown;
23193
+ meta?: {} | undefined;
23194
+ } | {
23195
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23196
+ data?: undefined;
23197
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23198
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23199
+ error: graphql.GraphQLError[] | undefined;
23200
+ data?: undefined;
23201
+ meta?: {} | undefined;
23202
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23203
+ currentData?: PathAutocompleteResponse | undefined;
23204
+ isUninitialized: false;
23205
+ isLoading: false;
23206
+ isFetching: false;
23207
+ isSuccess: false;
23208
+ isError: false;
23209
+ }, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
23210
+ isSuccess: true;
23211
+ isFetching: true;
23212
+ error: undefined;
23213
+ } & {
23214
+ data: PathAutocompleteResponse;
23215
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23216
+ q: string;
23217
+ entity_type: EntityKind;
23218
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23219
+ baseQueryType?: BaseQueryTypes;
23220
+ apiName?: string;
23221
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23222
+ }) => {
23223
+ error?: undefined;
23224
+ data: unknown;
23225
+ meta?: {} | undefined;
23226
+ } | {
23227
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23228
+ data?: undefined;
23229
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23230
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23231
+ error: graphql.GraphQLError[] | undefined;
23232
+ data?: undefined;
23233
+ meta?: {} | undefined;
23234
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23235
+ currentData?: PathAutocompleteResponse | undefined;
23236
+ isUninitialized: false;
23237
+ isLoading: false;
23238
+ isFetching: false;
23239
+ isSuccess: false;
23240
+ isError: false;
23241
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23242
+ q: string;
23243
+ entity_type: EntityKind;
23244
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23245
+ baseQueryType?: BaseQueryTypes;
23246
+ apiName?: string;
23247
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23248
+ }) => {
23249
+ error?: undefined;
23250
+ data: unknown;
23251
+ meta?: {} | undefined;
23252
+ } | {
23253
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23254
+ data?: undefined;
23255
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23256
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23257
+ error: graphql.GraphQLError[] | undefined;
23258
+ data?: undefined;
23259
+ meta?: {} | undefined;
23260
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23261
+ currentData?: PathAutocompleteResponse | undefined;
23262
+ isUninitialized: false;
23263
+ isLoading: false;
23264
+ isFetching: false;
23265
+ isSuccess: false;
23266
+ isError: false;
23267
+ }, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
23268
+ isSuccess: true;
23269
+ isFetching: false;
23270
+ error: undefined;
22108
23271
  } & {
23272
+ data: PathAutocompleteResponse;
23273
+ currentData: PathAutocompleteResponse;
23274
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23275
+ q: string;
23276
+ entity_type: EntityKind;
23277
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23278
+ baseQueryType?: BaseQueryTypes;
23279
+ apiName?: string;
23280
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23281
+ }) => {
23282
+ error?: undefined;
23283
+ data: unknown;
23284
+ meta?: {} | undefined;
23285
+ } | {
23286
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23287
+ data?: undefined;
23288
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23289
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23290
+ error: graphql.GraphQLError[] | undefined;
23291
+ data?: undefined;
23292
+ meta?: {} | undefined;
23293
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23294
+ currentData?: PathAutocompleteResponse | undefined;
23295
+ isUninitialized: false;
23296
+ isLoading: false;
23297
+ isFetching: false;
23298
+ isSuccess: false;
23299
+ isError: false;
23300
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23301
+ q: string;
23302
+ entity_type: EntityKind;
23303
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23304
+ baseQueryType?: BaseQueryTypes;
23305
+ apiName?: string;
23306
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23307
+ }) => {
23308
+ error?: undefined;
23309
+ data: unknown;
23310
+ meta?: {} | undefined;
23311
+ } | {
23312
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23313
+ data?: undefined;
23314
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23315
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23316
+ error: graphql.GraphQLError[] | undefined;
22109
23317
  data?: undefined;
22110
- } & {
22111
- status: _reduxjs_toolkit_query.QueryStatus.pending;
23318
+ meta?: {} | undefined;
23319
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23320
+ currentData?: PathAutocompleteResponse | undefined;
22112
23321
  isUninitialized: false;
22113
- isLoading: true;
23322
+ isLoading: false;
23323
+ isFetching: false;
22114
23324
  isSuccess: false;
22115
23325
  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;
23326
+ }, "error" | "isError"> & {
23327
+ isError: true;
23328
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
23329
+ q: string;
23330
+ entity_type: EntityKind;
23331
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23332
+ baseQueryType?: BaseQueryTypes;
23333
+ apiName?: string;
23334
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23335
+ }) => {
23336
+ error?: undefined;
23337
+ data: unknown;
23338
+ meta?: {} | undefined;
23339
+ } | {
23340
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23341
+ data?: undefined;
23342
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23343
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23344
+ error: graphql.GraphQLError[] | undefined;
23345
+ data?: undefined;
23346
+ meta?: {} | undefined;
23347
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
23348
+ currentData?: PathAutocompleteResponse | undefined;
22134
23349
  isUninitialized: false;
22135
23350
  isLoading: false;
23351
+ isFetching: false;
22136
23352
  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<{
23353
+ isError: false;
23354
+ }, "error">>)> & {
23355
+ status: _reduxjs_toolkit_query.QueryStatus;
23356
+ }) => R) | undefined;
23357
+ }) | undefined) => R & {
23358
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
23359
+ q: string;
23360
+ entity_type: EntityKind;
23361
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23362
+ baseQueryType?: BaseQueryTypes;
23363
+ apiName?: string;
23364
+ paramsSerializer?: (params: Record<string, unknown>) => string;
23365
+ }) => {
23366
+ error?: undefined;
23367
+ data: unknown;
23368
+ meta?: {} | undefined;
23369
+ } | {
23370
+ error: _reduxjs_toolkit_query.FetchBaseQueryError;
23371
+ data?: undefined;
23372
+ meta?: _reduxjs_toolkit_query.FetchBaseQueryMeta | undefined;
23373
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, _reduxjs_toolkit_query.FetchBaseQueryError, _reduxjs_toolkit_query.FetchBaseQueryMeta>> | {
23374
+ error: graphql.GraphQLError[] | undefined;
23375
+ data?: undefined;
23376
+ meta?: {} | undefined;
23377
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>>;
23378
+ };
23379
+ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22161
23380
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22162
23381
  originalArgs?: undefined | undefined;
22163
23382
  data?: undefined | undefined;
@@ -22167,7 +23386,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22167
23386
  startedTimeStamp?: undefined | undefined;
22168
23387
  fulfilledTimeStamp?: undefined | undefined;
22169
23388
  } & {
22170
- currentData?: PathAutocompleteResponse | undefined;
23389
+ currentData?: SearchDefinitionsResponse | undefined;
22171
23390
  isUninitialized: false;
22172
23391
  isLoading: false;
22173
23392
  isFetching: false;
@@ -22175,10 +23394,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22175
23394
  isError: false;
22176
23395
  }, "isUninitialized"> & {
22177
23396
  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: {
23397
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22182
23398
  baseQueryType?: BaseQueryTypes;
22183
23399
  apiName?: string;
22184
23400
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22194,8 +23410,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22194
23410
  error: graphql.GraphQLError[] | undefined;
22195
23411
  data?: undefined;
22196
23412
  meta?: {} | undefined;
22197
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22198
- currentData?: PathAutocompleteResponse | undefined;
23413
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23414
+ currentData?: SearchDefinitionsResponse | undefined;
22199
23415
  isUninitialized: false;
22200
23416
  isLoading: false;
22201
23417
  isFetching: false;
@@ -22205,10 +23421,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22205
23421
  isLoading: true;
22206
23422
  isFetching: boolean;
22207
23423
  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: {
23424
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22212
23425
  baseQueryType?: BaseQueryTypes;
22213
23426
  apiName?: string;
22214
23427
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22224,8 +23437,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22224
23437
  error: graphql.GraphQLError[] | undefined;
22225
23438
  data?: undefined;
22226
23439
  meta?: {} | undefined;
22227
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22228
- currentData?: PathAutocompleteResponse | undefined;
23440
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23441
+ currentData?: SearchDefinitionsResponse | undefined;
22229
23442
  isUninitialized: false;
22230
23443
  isLoading: false;
22231
23444
  isFetching: false;
@@ -22236,11 +23449,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22236
23449
  isFetching: true;
22237
23450
  error: undefined;
22238
23451
  } & {
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: {
23452
+ data: SearchDefinitionsResponse;
23453
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22244
23454
  baseQueryType?: BaseQueryTypes;
22245
23455
  apiName?: string;
22246
23456
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22256,17 +23466,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22256
23466
  error: graphql.GraphQLError[] | undefined;
22257
23467
  data?: undefined;
22258
23468
  meta?: {} | undefined;
22259
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22260
- currentData?: PathAutocompleteResponse | undefined;
23469
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23470
+ currentData?: SearchDefinitionsResponse | undefined;
22261
23471
  isUninitialized: false;
22262
23472
  isLoading: false;
22263
23473
  isFetching: false;
22264
23474
  isSuccess: false;
22265
23475
  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: {
23476
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22270
23477
  baseQueryType?: BaseQueryTypes;
22271
23478
  apiName?: string;
22272
23479
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22282,8 +23489,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22282
23489
  error: graphql.GraphQLError[] | undefined;
22283
23490
  data?: undefined;
22284
23491
  meta?: {} | undefined;
22285
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22286
- currentData?: PathAutocompleteResponse | undefined;
23492
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23493
+ currentData?: SearchDefinitionsResponse | undefined;
22287
23494
  isUninitialized: false;
22288
23495
  isLoading: false;
22289
23496
  isFetching: false;
@@ -22294,12 +23501,9 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22294
23501
  isFetching: false;
22295
23502
  error: undefined;
22296
23503
  } & {
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: {
23504
+ data: SearchDefinitionsResponse;
23505
+ currentData: SearchDefinitionsResponse;
23506
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22303
23507
  baseQueryType?: BaseQueryTypes;
22304
23508
  apiName?: string;
22305
23509
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22315,17 +23519,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22315
23519
  error: graphql.GraphQLError[] | undefined;
22316
23520
  data?: undefined;
22317
23521
  meta?: {} | undefined;
22318
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22319
- currentData?: PathAutocompleteResponse | undefined;
23522
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23523
+ currentData?: SearchDefinitionsResponse | undefined;
22320
23524
  isUninitialized: false;
22321
23525
  isLoading: false;
22322
23526
  isFetching: false;
22323
23527
  isSuccess: false;
22324
23528
  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: {
23529
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22329
23530
  baseQueryType?: BaseQueryTypes;
22330
23531
  apiName?: string;
22331
23532
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22341,8 +23542,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22341
23542
  error: graphql.GraphQLError[] | undefined;
22342
23543
  data?: undefined;
22343
23544
  meta?: {} | undefined;
22344
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22345
- currentData?: PathAutocompleteResponse | undefined;
23545
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23546
+ currentData?: SearchDefinitionsResponse | undefined;
22346
23547
  isUninitialized: false;
22347
23548
  isLoading: false;
22348
23549
  isFetching: false;
@@ -22350,10 +23551,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22350
23551
  isError: false;
22351
23552
  }, "error" | "isError"> & {
22352
23553
  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: {
23554
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22357
23555
  baseQueryType?: BaseQueryTypes;
22358
23556
  apiName?: string;
22359
23557
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22369,8 +23567,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22369
23567
  error: graphql.GraphQLError[] | undefined;
22370
23568
  data?: undefined;
22371
23569
  meta?: {} | undefined;
22372
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22373
- currentData?: PathAutocompleteResponse | undefined;
23570
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23571
+ currentData?: SearchDefinitionsResponse | undefined;
22374
23572
  isUninitialized: false;
22375
23573
  isLoading: false;
22376
23574
  isFetching: false;
@@ -22378,10 +23576,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22378
23576
  isError: false;
22379
23577
  }, "error">>)> & {
22380
23578
  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 & {
23579
+ }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
22385
23580
  skip?: boolean;
22386
23581
  refetchOnMountOrArgChange?: boolean | number;
22387
23582
  } & {
@@ -22396,7 +23591,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22396
23591
  startedTimeStamp?: undefined | undefined;
22397
23592
  fulfilledTimeStamp?: undefined | undefined;
22398
23593
  } & {
22399
- currentData?: PathAutocompleteResponse | undefined;
23594
+ currentData?: SearchDefinitionsResponse | undefined;
22400
23595
  isUninitialized: false;
22401
23596
  isLoading: false;
22402
23597
  isFetching: false;
@@ -22404,10 +23599,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22404
23599
  isError: false;
22405
23600
  }, "isUninitialized"> & {
22406
23601
  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: {
23602
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22411
23603
  baseQueryType?: BaseQueryTypes;
22412
23604
  apiName?: string;
22413
23605
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22423,8 +23615,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22423
23615
  error: graphql.GraphQLError[] | undefined;
22424
23616
  data?: undefined;
22425
23617
  meta?: {} | undefined;
22426
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22427
- currentData?: PathAutocompleteResponse | undefined;
23618
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23619
+ currentData?: SearchDefinitionsResponse | undefined;
22428
23620
  isUninitialized: false;
22429
23621
  isLoading: false;
22430
23622
  isFetching: false;
@@ -22434,10 +23626,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22434
23626
  isLoading: true;
22435
23627
  isFetching: boolean;
22436
23628
  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: {
23629
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22441
23630
  baseQueryType?: BaseQueryTypes;
22442
23631
  apiName?: string;
22443
23632
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22453,8 +23642,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22453
23642
  error: graphql.GraphQLError[] | undefined;
22454
23643
  data?: undefined;
22455
23644
  meta?: {} | undefined;
22456
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22457
- currentData?: PathAutocompleteResponse | undefined;
23645
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23646
+ currentData?: SearchDefinitionsResponse | undefined;
22458
23647
  isUninitialized: false;
22459
23648
  isLoading: false;
22460
23649
  isFetching: false;
@@ -22465,11 +23654,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22465
23654
  isFetching: true;
22466
23655
  error: undefined;
22467
23656
  } & {
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: {
23657
+ data: SearchDefinitionsResponse;
23658
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22473
23659
  baseQueryType?: BaseQueryTypes;
22474
23660
  apiName?: string;
22475
23661
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22485,17 +23671,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22485
23671
  error: graphql.GraphQLError[] | undefined;
22486
23672
  data?: undefined;
22487
23673
  meta?: {} | undefined;
22488
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22489
- currentData?: PathAutocompleteResponse | undefined;
23674
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23675
+ currentData?: SearchDefinitionsResponse | undefined;
22490
23676
  isUninitialized: false;
22491
23677
  isLoading: false;
22492
23678
  isFetching: false;
22493
23679
  isSuccess: false;
22494
23680
  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: {
23681
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22499
23682
  baseQueryType?: BaseQueryTypes;
22500
23683
  apiName?: string;
22501
23684
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22511,8 +23694,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22511
23694
  error: graphql.GraphQLError[] | undefined;
22512
23695
  data?: undefined;
22513
23696
  meta?: {} | undefined;
22514
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22515
- currentData?: PathAutocompleteResponse | undefined;
23697
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23698
+ currentData?: SearchDefinitionsResponse | undefined;
22516
23699
  isUninitialized: false;
22517
23700
  isLoading: false;
22518
23701
  isFetching: false;
@@ -22523,12 +23706,9 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22523
23706
  isFetching: false;
22524
23707
  error: undefined;
22525
23708
  } & {
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: {
23709
+ data: SearchDefinitionsResponse;
23710
+ currentData: SearchDefinitionsResponse;
23711
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22532
23712
  baseQueryType?: BaseQueryTypes;
22533
23713
  apiName?: string;
22534
23714
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22544,17 +23724,14 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22544
23724
  error: graphql.GraphQLError[] | undefined;
22545
23725
  data?: undefined;
22546
23726
  meta?: {} | undefined;
22547
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22548
- currentData?: PathAutocompleteResponse | undefined;
23727
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23728
+ currentData?: SearchDefinitionsResponse | undefined;
22549
23729
  isUninitialized: false;
22550
23730
  isLoading: false;
22551
23731
  isFetching: false;
22552
23732
  isSuccess: false;
22553
23733
  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: {
23734
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22558
23735
  baseQueryType?: BaseQueryTypes;
22559
23736
  apiName?: string;
22560
23737
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22570,8 +23747,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22570
23747
  error: graphql.GraphQLError[] | undefined;
22571
23748
  data?: undefined;
22572
23749
  meta?: {} | undefined;
22573
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22574
- currentData?: PathAutocompleteResponse | undefined;
23750
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23751
+ currentData?: SearchDefinitionsResponse | undefined;
22575
23752
  isUninitialized: false;
22576
23753
  isLoading: false;
22577
23754
  isFetching: false;
@@ -22579,10 +23756,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22579
23756
  isError: false;
22580
23757
  }, "error" | "isError"> & {
22581
23758
  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: {
23759
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22586
23760
  baseQueryType?: BaseQueryTypes;
22587
23761
  apiName?: string;
22588
23762
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22598,8 +23772,8 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22598
23772
  error: graphql.GraphQLError[] | undefined;
22599
23773
  data?: undefined;
22600
23774
  meta?: {} | undefined;
22601
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>> & {
22602
- currentData?: PathAutocompleteResponse | undefined;
23775
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23776
+ currentData?: SearchDefinitionsResponse | undefined;
22603
23777
  isUninitialized: false;
22604
23778
  isLoading: false;
22605
23779
  isFetching: false;
@@ -22609,10 +23783,7 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22609
23783
  status: _reduxjs_toolkit_query.QueryStatus;
22610
23784
  }) => R) | undefined;
22611
23785
  }) | 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: {
23786
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22616
23787
  baseQueryType?: BaseQueryTypes;
22617
23788
  apiName?: string;
22618
23789
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -22628,9 +23799,11 @@ declare const useSearchPathsQuery: <R extends Record<string, any> = _reduxjs_too
22628
23799
  error: graphql.GraphQLError[] | undefined;
22629
23800
  data?: undefined;
22630
23801
  meta?: {} | undefined;
22631
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, PathAutocompleteResponse, "orchestratorApi", unknown>>;
23802
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>>;
22632
23803
  };
22633
- declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
23804
+
23805
+ type AvailabilityCheckResponse = Record<string, unknown>;
23806
+ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
22634
23807
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
22635
23808
  originalArgs?: undefined | undefined;
22636
23809
  data?: undefined | undefined;
@@ -22640,7 +23813,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22640
23813
  startedTimeStamp?: undefined | undefined;
22641
23814
  fulfilledTimeStamp?: undefined | undefined;
22642
23815
  } & {
22643
- currentData?: SearchDefinitionsResponse | undefined;
23816
+ currentData?: AvailabilityCheckResponse | undefined;
22644
23817
  isUninitialized: false;
22645
23818
  isLoading: false;
22646
23819
  isFetching: false;
@@ -22664,8 +23837,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22664
23837
  error: graphql.GraphQLError[] | undefined;
22665
23838
  data?: undefined;
22666
23839
  meta?: {} | undefined;
22667
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22668
- currentData?: SearchDefinitionsResponse | undefined;
23840
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23841
+ currentData?: AvailabilityCheckResponse | undefined;
22669
23842
  isUninitialized: false;
22670
23843
  isLoading: false;
22671
23844
  isFetching: false;
@@ -22691,8 +23864,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22691
23864
  error: graphql.GraphQLError[] | undefined;
22692
23865
  data?: undefined;
22693
23866
  meta?: {} | undefined;
22694
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22695
- currentData?: SearchDefinitionsResponse | undefined;
23867
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23868
+ currentData?: AvailabilityCheckResponse | undefined;
22696
23869
  isUninitialized: false;
22697
23870
  isLoading: false;
22698
23871
  isFetching: false;
@@ -22703,7 +23876,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22703
23876
  isFetching: true;
22704
23877
  error: undefined;
22705
23878
  } & {
22706
- data: SearchDefinitionsResponse;
23879
+ data: AvailabilityCheckResponse;
22707
23880
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22708
23881
  baseQueryType?: BaseQueryTypes;
22709
23882
  apiName?: string;
@@ -22720,8 +23893,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22720
23893
  error: graphql.GraphQLError[] | undefined;
22721
23894
  data?: undefined;
22722
23895
  meta?: {} | undefined;
22723
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22724
- currentData?: SearchDefinitionsResponse | undefined;
23896
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23897
+ currentData?: AvailabilityCheckResponse | undefined;
22725
23898
  isUninitialized: false;
22726
23899
  isLoading: false;
22727
23900
  isFetching: false;
@@ -22743,8 +23916,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22743
23916
  error: graphql.GraphQLError[] | undefined;
22744
23917
  data?: undefined;
22745
23918
  meta?: {} | undefined;
22746
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22747
- currentData?: SearchDefinitionsResponse | undefined;
23919
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23920
+ currentData?: AvailabilityCheckResponse | undefined;
22748
23921
  isUninitialized: false;
22749
23922
  isLoading: false;
22750
23923
  isFetching: false;
@@ -22755,8 +23928,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22755
23928
  isFetching: false;
22756
23929
  error: undefined;
22757
23930
  } & {
22758
- data: SearchDefinitionsResponse;
22759
- currentData: SearchDefinitionsResponse;
23931
+ data: AvailabilityCheckResponse;
23932
+ currentData: AvailabilityCheckResponse;
22760
23933
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22761
23934
  baseQueryType?: BaseQueryTypes;
22762
23935
  apiName?: string;
@@ -22773,8 +23946,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22773
23946
  error: graphql.GraphQLError[] | undefined;
22774
23947
  data?: undefined;
22775
23948
  meta?: {} | undefined;
22776
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22777
- currentData?: SearchDefinitionsResponse | undefined;
23949
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23950
+ currentData?: AvailabilityCheckResponse | undefined;
22778
23951
  isUninitialized: false;
22779
23952
  isLoading: false;
22780
23953
  isFetching: false;
@@ -22796,8 +23969,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22796
23969
  error: graphql.GraphQLError[] | undefined;
22797
23970
  data?: undefined;
22798
23971
  meta?: {} | undefined;
22799
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22800
- currentData?: SearchDefinitionsResponse | undefined;
23972
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23973
+ currentData?: AvailabilityCheckResponse | undefined;
22801
23974
  isUninitialized: false;
22802
23975
  isLoading: false;
22803
23976
  isFetching: false;
@@ -22821,8 +23994,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22821
23994
  error: graphql.GraphQLError[] | undefined;
22822
23995
  data?: undefined;
22823
23996
  meta?: {} | undefined;
22824
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22825
- currentData?: SearchDefinitionsResponse | undefined;
23997
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23998
+ currentData?: AvailabilityCheckResponse | undefined;
22826
23999
  isUninitialized: false;
22827
24000
  isLoading: false;
22828
24001
  isFetching: false;
@@ -22845,7 +24018,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22845
24018
  startedTimeStamp?: undefined | undefined;
22846
24019
  fulfilledTimeStamp?: undefined | undefined;
22847
24020
  } & {
22848
- currentData?: SearchDefinitionsResponse | undefined;
24021
+ currentData?: AvailabilityCheckResponse | undefined;
22849
24022
  isUninitialized: false;
22850
24023
  isLoading: false;
22851
24024
  isFetching: false;
@@ -22869,8 +24042,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22869
24042
  error: graphql.GraphQLError[] | undefined;
22870
24043
  data?: undefined;
22871
24044
  meta?: {} | undefined;
22872
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22873
- currentData?: SearchDefinitionsResponse | undefined;
24045
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24046
+ currentData?: AvailabilityCheckResponse | undefined;
22874
24047
  isUninitialized: false;
22875
24048
  isLoading: false;
22876
24049
  isFetching: false;
@@ -22896,8 +24069,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22896
24069
  error: graphql.GraphQLError[] | undefined;
22897
24070
  data?: undefined;
22898
24071
  meta?: {} | undefined;
22899
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22900
- currentData?: SearchDefinitionsResponse | undefined;
24072
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24073
+ currentData?: AvailabilityCheckResponse | undefined;
22901
24074
  isUninitialized: false;
22902
24075
  isLoading: false;
22903
24076
  isFetching: false;
@@ -22908,7 +24081,7 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22908
24081
  isFetching: true;
22909
24082
  error: undefined;
22910
24083
  } & {
22911
- data: SearchDefinitionsResponse;
24084
+ data: AvailabilityCheckResponse;
22912
24085
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22913
24086
  baseQueryType?: BaseQueryTypes;
22914
24087
  apiName?: string;
@@ -22925,8 +24098,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22925
24098
  error: graphql.GraphQLError[] | undefined;
22926
24099
  data?: undefined;
22927
24100
  meta?: {} | undefined;
22928
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22929
- currentData?: SearchDefinitionsResponse | undefined;
24101
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24102
+ currentData?: AvailabilityCheckResponse | undefined;
22930
24103
  isUninitialized: false;
22931
24104
  isLoading: false;
22932
24105
  isFetching: false;
@@ -22948,8 +24121,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22948
24121
  error: graphql.GraphQLError[] | undefined;
22949
24122
  data?: undefined;
22950
24123
  meta?: {} | undefined;
22951
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22952
- currentData?: SearchDefinitionsResponse | undefined;
24124
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24125
+ currentData?: AvailabilityCheckResponse | undefined;
22953
24126
  isUninitialized: false;
22954
24127
  isLoading: false;
22955
24128
  isFetching: false;
@@ -22960,8 +24133,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22960
24133
  isFetching: false;
22961
24134
  error: undefined;
22962
24135
  } & {
22963
- data: SearchDefinitionsResponse;
22964
- currentData: SearchDefinitionsResponse;
24136
+ data: AvailabilityCheckResponse;
24137
+ currentData: AvailabilityCheckResponse;
22965
24138
  } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
22966
24139
  baseQueryType?: BaseQueryTypes;
22967
24140
  apiName?: string;
@@ -22978,8 +24151,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
22978
24151
  error: graphql.GraphQLError[] | undefined;
22979
24152
  data?: undefined;
22980
24153
  meta?: {} | undefined;
22981
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
22982
- currentData?: SearchDefinitionsResponse | undefined;
24154
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24155
+ currentData?: AvailabilityCheckResponse | undefined;
22983
24156
  isUninitialized: false;
22984
24157
  isLoading: false;
22985
24158
  isFetching: false;
@@ -23001,8 +24174,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
23001
24174
  error: graphql.GraphQLError[] | undefined;
23002
24175
  data?: undefined;
23003
24176
  meta?: {} | undefined;
23004
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23005
- currentData?: SearchDefinitionsResponse | undefined;
24177
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24178
+ currentData?: AvailabilityCheckResponse | undefined;
23006
24179
  isUninitialized: false;
23007
24180
  isLoading: false;
23008
24181
  isFetching: false;
@@ -23026,8 +24199,8 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
23026
24199
  error: graphql.GraphQLError[] | undefined;
23027
24200
  data?: undefined;
23028
24201
  meta?: {} | undefined;
23029
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>> & {
23030
- currentData?: SearchDefinitionsResponse | undefined;
24202
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
24203
+ currentData?: AvailabilityCheckResponse | undefined;
23031
24204
  isUninitialized: false;
23032
24205
  isLoading: false;
23033
24206
  isFetching: false;
@@ -23053,11 +24226,13 @@ declare const useSearchDefinitionsQuery: <R extends Record<string, any> = _redux
23053
24226
  error: graphql.GraphQLError[] | undefined;
23054
24227
  data?: undefined;
23055
24228
  meta?: {} | undefined;
23056
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, SearchDefinitionsResponse, "orchestratorApi", unknown>>;
24229
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>>;
23057
24230
  };
23058
24231
 
23059
- type AvailabilityCheckResponse = Record<string, unknown>;
23060
- declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
24232
+ interface WorkflowGuideResponse {
24233
+ content: string;
24234
+ }
24235
+ declare const useGetWorkflowGuideQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
23061
24236
  status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
23062
24237
  originalArgs?: undefined | undefined;
23063
24238
  data?: undefined | undefined;
@@ -23067,7 +24242,7 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23067
24242
  startedTimeStamp?: undefined | undefined;
23068
24243
  fulfilledTimeStamp?: undefined | undefined;
23069
24244
  } & {
23070
- currentData?: AvailabilityCheckResponse | undefined;
24245
+ currentData?: WorkflowGuideResponse | undefined;
23071
24246
  isUninitialized: false;
23072
24247
  isLoading: false;
23073
24248
  isFetching: false;
@@ -23075,7 +24250,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23075
24250
  isError: false;
23076
24251
  }, "isUninitialized"> & {
23077
24252
  isUninitialized: true;
23078
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24253
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24254
+ workflowName: string;
24255
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23079
24256
  baseQueryType?: BaseQueryTypes;
23080
24257
  apiName?: string;
23081
24258
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23091,8 +24268,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23091
24268
  error: graphql.GraphQLError[] | undefined;
23092
24269
  data?: undefined;
23093
24270
  meta?: {} | undefined;
23094
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23095
- currentData?: AvailabilityCheckResponse | undefined;
24271
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24272
+ currentData?: WorkflowGuideResponse | undefined;
23096
24273
  isUninitialized: false;
23097
24274
  isLoading: false;
23098
24275
  isFetching: false;
@@ -23102,7 +24279,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23102
24279
  isLoading: true;
23103
24280
  isFetching: boolean;
23104
24281
  data: undefined;
23105
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24282
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24283
+ workflowName: string;
24284
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23106
24285
  baseQueryType?: BaseQueryTypes;
23107
24286
  apiName?: string;
23108
24287
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23118,8 +24297,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23118
24297
  error: graphql.GraphQLError[] | undefined;
23119
24298
  data?: undefined;
23120
24299
  meta?: {} | undefined;
23121
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23122
- currentData?: AvailabilityCheckResponse | undefined;
24300
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24301
+ currentData?: WorkflowGuideResponse | undefined;
23123
24302
  isUninitialized: false;
23124
24303
  isLoading: false;
23125
24304
  isFetching: false;
@@ -23130,8 +24309,10 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23130
24309
  isFetching: true;
23131
24310
  error: undefined;
23132
24311
  } & {
23133
- data: AvailabilityCheckResponse;
23134
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24312
+ data: WorkflowGuideResponse;
24313
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24314
+ workflowName: string;
24315
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23135
24316
  baseQueryType?: BaseQueryTypes;
23136
24317
  apiName?: string;
23137
24318
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23147,14 +24328,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23147
24328
  error: graphql.GraphQLError[] | undefined;
23148
24329
  data?: undefined;
23149
24330
  meta?: {} | undefined;
23150
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23151
- currentData?: AvailabilityCheckResponse | undefined;
24331
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24332
+ currentData?: WorkflowGuideResponse | undefined;
23152
24333
  isUninitialized: false;
23153
24334
  isLoading: false;
23154
24335
  isFetching: false;
23155
24336
  isSuccess: false;
23156
24337
  isError: false;
23157
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24338
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24339
+ workflowName: string;
24340
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23158
24341
  baseQueryType?: BaseQueryTypes;
23159
24342
  apiName?: string;
23160
24343
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23170,8 +24353,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23170
24353
  error: graphql.GraphQLError[] | undefined;
23171
24354
  data?: undefined;
23172
24355
  meta?: {} | undefined;
23173
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23174
- currentData?: AvailabilityCheckResponse | undefined;
24356
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24357
+ currentData?: WorkflowGuideResponse | undefined;
23175
24358
  isUninitialized: false;
23176
24359
  isLoading: false;
23177
24360
  isFetching: false;
@@ -23182,9 +24365,11 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23182
24365
  isFetching: false;
23183
24366
  error: undefined;
23184
24367
  } & {
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: {
24368
+ data: WorkflowGuideResponse;
24369
+ currentData: WorkflowGuideResponse;
24370
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24371
+ workflowName: string;
24372
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23188
24373
  baseQueryType?: BaseQueryTypes;
23189
24374
  apiName?: string;
23190
24375
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23200,14 +24385,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23200
24385
  error: graphql.GraphQLError[] | undefined;
23201
24386
  data?: undefined;
23202
24387
  meta?: {} | undefined;
23203
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23204
- currentData?: AvailabilityCheckResponse | undefined;
24388
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24389
+ currentData?: WorkflowGuideResponse | undefined;
23205
24390
  isUninitialized: false;
23206
24391
  isLoading: false;
23207
24392
  isFetching: false;
23208
24393
  isSuccess: false;
23209
24394
  isError: false;
23210
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24395
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24396
+ workflowName: string;
24397
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23211
24398
  baseQueryType?: BaseQueryTypes;
23212
24399
  apiName?: string;
23213
24400
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23223,8 +24410,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23223
24410
  error: graphql.GraphQLError[] | undefined;
23224
24411
  data?: undefined;
23225
24412
  meta?: {} | undefined;
23226
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23227
- currentData?: AvailabilityCheckResponse | undefined;
24413
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24414
+ currentData?: WorkflowGuideResponse | undefined;
23228
24415
  isUninitialized: false;
23229
24416
  isLoading: false;
23230
24417
  isFetching: false;
@@ -23232,7 +24419,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23232
24419
  isError: false;
23233
24420
  }, "error" | "isError"> & {
23234
24421
  isError: true;
23235
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24422
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24423
+ workflowName: string;
24424
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23236
24425
  baseQueryType?: BaseQueryTypes;
23237
24426
  apiName?: string;
23238
24427
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23248,8 +24437,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23248
24437
  error: graphql.GraphQLError[] | undefined;
23249
24438
  data?: undefined;
23250
24439
  meta?: {} | undefined;
23251
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23252
- currentData?: AvailabilityCheckResponse | undefined;
24440
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24441
+ currentData?: WorkflowGuideResponse | undefined;
23253
24442
  isUninitialized: false;
23254
24443
  isLoading: false;
23255
24444
  isFetching: false;
@@ -23257,7 +24446,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23257
24446
  isError: false;
23258
24447
  }, "error">>)> & {
23259
24448
  status: _reduxjs_toolkit_query.QueryStatus;
23260
- }>(arg: void | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
24449
+ }>(arg: typeof _reduxjs_toolkit_query.skipToken | {
24450
+ workflowName: string;
24451
+ }, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
23261
24452
  skip?: boolean;
23262
24453
  refetchOnMountOrArgChange?: boolean | number;
23263
24454
  } & {
@@ -23272,7 +24463,7 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23272
24463
  startedTimeStamp?: undefined | undefined;
23273
24464
  fulfilledTimeStamp?: undefined | undefined;
23274
24465
  } & {
23275
- currentData?: AvailabilityCheckResponse | undefined;
24466
+ currentData?: WorkflowGuideResponse | undefined;
23276
24467
  isUninitialized: false;
23277
24468
  isLoading: false;
23278
24469
  isFetching: false;
@@ -23280,7 +24471,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23280
24471
  isError: false;
23281
24472
  }, "isUninitialized"> & {
23282
24473
  isUninitialized: true;
23283
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24474
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24475
+ workflowName: string;
24476
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23284
24477
  baseQueryType?: BaseQueryTypes;
23285
24478
  apiName?: string;
23286
24479
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23296,8 +24489,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23296
24489
  error: graphql.GraphQLError[] | undefined;
23297
24490
  data?: undefined;
23298
24491
  meta?: {} | undefined;
23299
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23300
- currentData?: AvailabilityCheckResponse | undefined;
24492
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24493
+ currentData?: WorkflowGuideResponse | undefined;
23301
24494
  isUninitialized: false;
23302
24495
  isLoading: false;
23303
24496
  isFetching: false;
@@ -23307,7 +24500,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23307
24500
  isLoading: true;
23308
24501
  isFetching: boolean;
23309
24502
  data: undefined;
23310
- }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24503
+ }) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24504
+ workflowName: string;
24505
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23311
24506
  baseQueryType?: BaseQueryTypes;
23312
24507
  apiName?: string;
23313
24508
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23323,8 +24518,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23323
24518
  error: graphql.GraphQLError[] | undefined;
23324
24519
  data?: undefined;
23325
24520
  meta?: {} | undefined;
23326
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23327
- currentData?: AvailabilityCheckResponse | undefined;
24521
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24522
+ currentData?: WorkflowGuideResponse | undefined;
23328
24523
  isUninitialized: false;
23329
24524
  isLoading: false;
23330
24525
  isFetching: false;
@@ -23335,8 +24530,10 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23335
24530
  isFetching: true;
23336
24531
  error: undefined;
23337
24532
  } & {
23338
- data: AvailabilityCheckResponse;
23339
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24533
+ data: WorkflowGuideResponse;
24534
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24535
+ workflowName: string;
24536
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23340
24537
  baseQueryType?: BaseQueryTypes;
23341
24538
  apiName?: string;
23342
24539
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23352,14 +24549,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23352
24549
  error: graphql.GraphQLError[] | undefined;
23353
24550
  data?: undefined;
23354
24551
  meta?: {} | undefined;
23355
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23356
- currentData?: AvailabilityCheckResponse | undefined;
24552
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24553
+ currentData?: WorkflowGuideResponse | undefined;
23357
24554
  isUninitialized: false;
23358
24555
  isLoading: false;
23359
24556
  isFetching: false;
23360
24557
  isSuccess: false;
23361
24558
  isError: false;
23362
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24559
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24560
+ workflowName: string;
24561
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23363
24562
  baseQueryType?: BaseQueryTypes;
23364
24563
  apiName?: string;
23365
24564
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23375,8 +24574,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23375
24574
  error: graphql.GraphQLError[] | undefined;
23376
24575
  data?: undefined;
23377
24576
  meta?: {} | undefined;
23378
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23379
- currentData?: AvailabilityCheckResponse | undefined;
24577
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24578
+ currentData?: WorkflowGuideResponse | undefined;
23380
24579
  isUninitialized: false;
23381
24580
  isLoading: false;
23382
24581
  isFetching: false;
@@ -23387,9 +24586,11 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23387
24586
  isFetching: false;
23388
24587
  error: undefined;
23389
24588
  } & {
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: {
24589
+ data: WorkflowGuideResponse;
24590
+ currentData: WorkflowGuideResponse;
24591
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24592
+ workflowName: string;
24593
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23393
24594
  baseQueryType?: BaseQueryTypes;
23394
24595
  apiName?: string;
23395
24596
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23405,14 +24606,16 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23405
24606
  error: graphql.GraphQLError[] | undefined;
23406
24607
  data?: undefined;
23407
24608
  meta?: {} | undefined;
23408
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23409
- currentData?: AvailabilityCheckResponse | undefined;
24609
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24610
+ currentData?: WorkflowGuideResponse | undefined;
23410
24611
  isUninitialized: false;
23411
24612
  isLoading: false;
23412
24613
  isFetching: false;
23413
24614
  isSuccess: false;
23414
24615
  isError: false;
23415
- }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24616
+ }, "fulfilledTimeStamp">>) | (Omit<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24617
+ workflowName: string;
24618
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23416
24619
  baseQueryType?: BaseQueryTypes;
23417
24620
  apiName?: string;
23418
24621
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23428,8 +24631,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23428
24631
  error: graphql.GraphQLError[] | undefined;
23429
24632
  data?: undefined;
23430
24633
  meta?: {} | undefined;
23431
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23432
- currentData?: AvailabilityCheckResponse | undefined;
24634
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24635
+ currentData?: WorkflowGuideResponse | undefined;
23433
24636
  isUninitialized: false;
23434
24637
  isLoading: false;
23435
24638
  isFetching: false;
@@ -23437,7 +24640,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23437
24640
  isError: false;
23438
24641
  }, "error" | "isError"> & {
23439
24642
  isError: true;
23440
- } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24643
+ } & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
24644
+ workflowName: string;
24645
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23441
24646
  baseQueryType?: BaseQueryTypes;
23442
24647
  apiName?: string;
23443
24648
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23453,8 +24658,8 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23453
24658
  error: graphql.GraphQLError[] | undefined;
23454
24659
  data?: undefined;
23455
24660
  meta?: {} | undefined;
23456
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>> & {
23457
- currentData?: AvailabilityCheckResponse | undefined;
24661
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>> & {
24662
+ currentData?: WorkflowGuideResponse | undefined;
23458
24663
  isUninitialized: false;
23459
24664
  isLoading: false;
23460
24665
  isFetching: false;
@@ -23464,7 +24669,9 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23464
24669
  status: _reduxjs_toolkit_query.QueryStatus;
23465
24670
  }) => R) | undefined;
23466
24671
  }) | undefined) => R & {
23467
- refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<void, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
24672
+ refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
24673
+ workflowName: string;
24674
+ }, (args: any, api: _reduxjs_toolkit_query.BaseQueryApi, extraOptions: {
23468
24675
  baseQueryType?: BaseQueryTypes;
23469
24676
  apiName?: string;
23470
24677
  paramsSerializer?: (params: Record<string, unknown>) => string;
@@ -23480,7 +24687,7 @@ declare const useCheckSearchAvailabilityQuery: <R extends Record<string, any> =
23480
24687
  error: graphql.GraphQLError[] | undefined;
23481
24688
  data?: undefined;
23482
24689
  meta?: {} | undefined;
23483
- } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, AvailabilityCheckResponse, "orchestratorApi", unknown>>;
24690
+ } | PromiseLike<_reduxjs_toolkit_query.QueryReturnValue<unknown, graphql.GraphQLError[] | undefined, {}>>, CacheTagType, WorkflowGuideResponse, "orchestratorApi", unknown>>;
23484
24691
  };
23485
24692
 
23486
24693
  type CustomApiConfig = {
@@ -24099,6 +25306,7 @@ type OrchestratorConfig = {
24099
25306
  useWebSockets: boolean;
24100
25307
  useThemeToggle: boolean;
24101
25308
  showWorkflowInformationLink: boolean;
25309
+ showWorkflowUserGuide: boolean;
24102
25310
  enableSupportMenuItem: boolean;
24103
25311
  supportMenuItemUrl: string;
24104
25312
  enableAoStackStatus: boolean;
@@ -24109,20 +25317,26 @@ declare enum ColorModes {
24109
25317
  LIGHT = "LIGHT",
24110
25318
  DARK = "DARK"
24111
25319
  }
25320
+ interface SubscriptionRelation {
25321
+ subscription_id: string;
25322
+ subscription_description: string;
25323
+ }
24112
25324
  interface SubscriptionAction {
24113
25325
  name: string;
24114
25326
  description: string;
24115
25327
  reason?: string;
24116
25328
  usable_when?: string[];
24117
25329
  locked_relations?: string[];
24118
- unterminated_parents?: string[];
25330
+ locked_relations_detail?: SubscriptionRelation[];
24119
25331
  unterminated_in_use_by_subscriptions?: string[];
25332
+ unterminated_in_use_by_subscriptions_detail?: SubscriptionRelation[];
24120
25333
  status?: string;
24121
25334
  action?: string;
24122
25335
  }
24123
25336
  type SubscriptionActions = {
24124
25337
  reason?: string;
24125
25338
  locked_relations?: string[];
25339
+ locked_relations_detail?: SubscriptionRelation[];
24126
25340
  modify: SubscriptionAction[];
24127
25341
  terminate: SubscriptionAction[];
24128
25342
  system: SubscriptionAction[];
@@ -24168,7 +25382,12 @@ declare enum Intervals {
24168
25382
  ONE_MONTH = "1months"
24169
25383
  }
24170
25384
 
24171
- type EntityKind = 'SUBSCRIPTION' | 'PRODUCT' | 'WORKFLOW' | 'PROCESS';
25385
+ declare enum EntityKind {
25386
+ SUBSCRIPTION = "SUBSCRIPTION",
25387
+ PRODUCT = "PRODUCT",
25388
+ WORKFLOW = "WORKFLOW",
25389
+ PROCESS = "PROCESS"
25390
+ }
24172
25391
  declare enum RetrieverType {
24173
25392
  Auto = "auto",
24174
25393
  Fuzzy = "fuzzy",
@@ -24187,13 +25406,19 @@ interface SearchResult {
24187
25406
  score: number;
24188
25407
  perfect_match: number;
24189
25408
  matching_field?: MatchingField | null;
25409
+ response_columns: Record<string, string | number | null>;
24190
25410
  }
24191
25411
  /** Paginated search results */
24192
25412
  type PaginatedSearchResults = {
24193
25413
  data: SearchResult[];
25414
+ cursor: {
25415
+ total_items: number;
25416
+ start_cursor: number;
25417
+ end_cursor: number;
25418
+ };
24194
25419
  page_info: {
24195
25420
  has_next_page: boolean;
24196
- next_page_cursor: number | null;
25421
+ next_page_cursor: string | null;
24197
25422
  };
24198
25423
  search_metadata: {
24199
25424
  search_type: string | null;
@@ -24263,10 +25488,14 @@ type PathFilter = {
24263
25488
  path: string;
24264
25489
  condition: DateEqFilter | DateNeqFilter | DateLtFilter | DateLteFilter | DateGtFilter | DateGteFilter | DateBetweenFilter | DateIsNullFilter | DateIsNotNullFilter | StrEqFilter | StrNeFilter | LtreeDescendantFilter | LtreeAncestorFilter | LtreeMatchesFilter;
24265
25490
  };
25491
+ interface OperatorDisplay {
25492
+ symbol: string;
25493
+ description: string;
25494
+ }
24266
25495
  type ActionType = 'select';
24267
25496
  type BaseSearchParameters = {
24268
25497
  query?: string | null;
24269
- filters?: PathFilter[] | Group | null;
25498
+ filters?: PathFilter[] | Filter | null;
24270
25499
  action: ActionType;
24271
25500
  };
24272
25501
  type SubscriptionSearchParameters = BaseSearchParameters & {
@@ -24290,9 +25519,9 @@ type Condition = {
24290
25519
  value?: unknown;
24291
25520
  };
24292
25521
  };
24293
- type Group = {
25522
+ type Filter = {
24294
25523
  op: 'AND' | 'OR';
24295
- children: Array<Group | Condition>;
25524
+ children: Array<Filter | Condition>;
24296
25525
  };
24297
25526
  type value_schema = {
24298
25527
  kind: 'string' | 'number' | 'datetime' | 'boolean' | 'object' | 'none';
@@ -24309,7 +25538,7 @@ type PathAutocompleteResponse = {
24309
25538
  components: PathLeaf[];
24310
25539
  };
24311
25540
  type PathDataType = 'string' | 'number' | 'datetime' | 'boolean' | 'component';
24312
- type PathInfo$1 = {
25541
+ type PathInfo = {
24313
25542
  path: string;
24314
25543
  type: PathDataType;
24315
25544
  operators: string[];
@@ -24357,6 +25586,8 @@ type ExportArtifact = {
24357
25586
  download_url: string;
24358
25587
  description: string;
24359
25588
  };
25589
+ type ResultColumToPropertyMap<T> = Map<string, keyof T>;
25590
+ type FieldToOperatorMap = Map<string, string[]>;
24360
25591
 
24361
25592
  type WfoSubscriptionStatusBadgeProps = {
24362
25593
  status?: SubscriptionStatus;
@@ -24577,6 +25808,7 @@ declare const PATH_START_NEW_WORKFLOW = "/workflows/new";
24577
25808
  declare const PATH_START_NEW_TASK = "/tasks/new";
24578
25809
  declare const PATH_WORKFLOWS = "/workflows";
24579
25810
  declare const PATH_SUBSCRIPTIONS = "/subscriptions";
25811
+ declare const PATH_SUBSCRIPTIONS_BETA = "/beta-subscriptions";
24580
25812
  declare const PATH_METADATA = "/metadata";
24581
25813
  declare const PATH_METADATA_PRODUCTS = "/metadata/products";
24582
25814
  declare const PATH_METADATA_PRODUCT_BLOCKS = "/metadata/productblocks";
@@ -24630,7 +25862,7 @@ declare enum SubscriptionDetailTab {
24630
25862
  }
24631
25863
  declare const getFieldFromProductBlockInstanceValues: (instanceValues: FieldValue[], field: string) => string | number | boolean;
24632
25864
  declare const getProductBlockTitle: (instanceValues: FieldValue[]) => string | number | boolean;
24633
- declare const flattenArrayProps: (action: SubscriptionAction) => TranslationValues;
25865
+ declare const flattenSubscriptionActionProps: (action?: SubscriptionAction | null) => TranslationValues;
24634
25866
  declare const getWorkflowTargetColor: (workflowTarget: WorkflowTarget, theme: EuiThemeComputed) => string;
24635
25867
  declare const getWorkflowTargetIconContent: (workflowTarget: WorkflowTarget) => "C" | "T" | "X" | "R" | "M";
24636
25868
  declare const getLastUncompletedProcess: (processes?: SubscriptionDetailProcess[]) => SubscriptionDetailProcess | undefined;
@@ -24917,6 +26149,7 @@ interface WfoWorkflowStepListProps {
24917
26149
  traceBack: string | null;
24918
26150
  startedAt: string;
24919
26151
  processId: string;
26152
+ workflowName?: string;
24920
26153
  isTask: boolean;
24921
26154
  userInputForm?: InputForm;
24922
26155
  userPermissions: FormUserPermissions;
@@ -24955,6 +26188,7 @@ interface WfoStepProps {
24955
26188
  isTask: boolean;
24956
26189
  isStartStep?: boolean;
24957
26190
  processId?: string;
26191
+ workflowName?: string;
24958
26192
  userPermissions: FormUserPermissions;
24959
26193
  }
24960
26194
  declare const WfoStep: React__default.ForwardRefExoticComponent<WfoStepProps & React__default.RefAttributes<HTMLDivElement>>;
@@ -24969,6 +26203,7 @@ type WfoStepListProps = {
24969
26203
  onTriggerExpandStepListItem: (stepListItem: StepListItem) => void;
24970
26204
  isTask: boolean;
24971
26205
  processId: string;
26206
+ workflowName?: string;
24972
26207
  userPermissions: FormUserPermissions;
24973
26208
  };
24974
26209
  declare const WfoStepList: React__default.ForwardRefExoticComponent<WfoStepListProps & React__default.RefAttributes<WfoStepListRef>>;
@@ -25022,7 +26257,7 @@ declare const WfoStartTaskButtonComboBox: () => _emotion_react_jsx_runtime.JSX.E
25022
26257
 
25023
26258
  declare const WfoStartWorkflowButtonComboBox: () => _emotion_react_jsx_runtime.JSX.Element;
25024
26259
 
25025
- declare const getNumberOfColumns: (currentBreakpoint: string | undefined) => 2 | 1 | 3;
26260
+ declare const getNumberOfColumns: (currentBreakpoint: string | undefined) => 1 | 2 | 3;
25026
26261
 
25027
26262
  type WfoSummaryCardHeaderProps = {
25028
26263
  text: string;
@@ -25098,8 +26333,9 @@ declare const WfoProductsSummaryCard: () => _emotion_react_jsx_runtime.JSX.Eleme
25098
26333
  interface WfoTitleWithWebsocketBadgeProps {
25099
26334
  title: string | ReactNode;
25100
26335
  wsUrl?: string;
26336
+ extraElement?: ReactNode;
25101
26337
  }
25102
- declare const WfoTitleWithWebsocketBadge: ({ title, wsUrl }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
26338
+ declare const WfoTitleWithWebsocketBadge: ({ title, wsUrl, extraElement, }: WfoTitleWithWebsocketBadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
25103
26339
 
25104
26340
  interface WfoRadioDropdownProps<T> {
25105
26341
  options: WfoRadioDropdownOption<T>[];
@@ -25292,7 +26528,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25292
26528
  animationTimeline?: readonly string[] | csstype.Property.AnimationTimeline | readonly csstype.Property.AnimationTimeline[] | undefined;
25293
26529
  animationTimingFunction?: readonly string[] | csstype.Property.AnimationTimingFunction | readonly csstype.Property.AnimationTimingFunction[] | undefined;
25294
26530
  appearance?: csstype.Property.Appearance | readonly NonNullable<csstype.Property.Appearance | undefined>[] | readonly csstype.Property.Appearance[] | undefined;
25295
- aspectRatio?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.AspectRatio | readonly NonNullable<csstype.Property.AspectRatio | undefined>[] | undefined;
26531
+ aspectRatio?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.AspectRatio | readonly NonNullable<csstype.Property.AspectRatio | undefined>[] | undefined;
25296
26532
  backdropFilter?: readonly string[] | csstype.Property.BackdropFilter | readonly csstype.Property.BackdropFilter[] | undefined;
25297
26533
  backfaceVisibility?: csstype.Property.BackfaceVisibility | readonly NonNullable<csstype.Property.BackfaceVisibility | undefined>[] | readonly csstype.Property.BackfaceVisibility[] | undefined;
25298
26534
  backgroundAttachment?: readonly string[] | csstype.Property.BackgroundAttachment | readonly csstype.Property.BackgroundAttachment[] | undefined;
@@ -25342,7 +26578,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25342
26578
  borderStartEndRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderStartEndRadius<string | number> | readonly NonNullable<csstype.Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
25343
26579
  borderStartStartRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderStartStartRadius<string | number> | readonly NonNullable<csstype.Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
25344
26580
  borderTopColor?: readonly string[] | csstype.Property.BorderTopColor | readonly csstype.Property.BorderTopColor[] | undefined;
25345
- borderTopLeftRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
26581
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
25346
26582
  borderTopRightRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
25347
26583
  borderTopStyle?: csstype.Property.BorderTopStyle | readonly NonNullable<csstype.Property.BorderTopStyle | undefined>[] | readonly csstype.Property.BorderTopStyle[] | undefined;
25348
26584
  borderTopWidth?: readonly string[] | csstype.Property.BorderTopWidth<string | number> | readonly NonNullable<csstype.Property.BorderTopWidth<string | number> | undefined>[] | undefined;
@@ -25362,7 +26598,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25362
26598
  colorAdjust?: csstype.Property.PrintColorAdjust | readonly NonNullable<csstype.Property.PrintColorAdjust | undefined>[] | readonly csstype.Property.PrintColorAdjust[] | undefined;
25363
26599
  colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | readonly NonNullable<csstype.Property.ColorInterpolationFilters | undefined>[] | readonly csstype.Property.ColorInterpolationFilters[] | undefined;
25364
26600
  colorScheme?: readonly string[] | csstype.Property.ColorScheme | readonly csstype.Property.ColorScheme[] | undefined;
25365
- columnCount?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
26601
+ columnCount?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
25366
26602
  columnFill?: csstype.Property.ColumnFill | readonly NonNullable<csstype.Property.ColumnFill | undefined>[] | readonly csstype.Property.ColumnFill[] | undefined;
25367
26603
  columnGap?: readonly (string | (string & {}))[] | csstype.Property.ColumnGap<string | number> | readonly NonNullable<csstype.Property.ColumnGap<string | number> | undefined>[] | undefined;
25368
26604
  columnRuleColor?: readonly string[] | csstype.Property.ColumnRuleColor | readonly csstype.Property.ColumnRuleColor[] | undefined;
@@ -25433,17 +26669,17 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25433
26669
  gridAutoColumns?: readonly (string | (string & {}))[] | csstype.Property.GridAutoColumns<string | number> | readonly NonNullable<csstype.Property.GridAutoColumns<string | number> | undefined>[] | undefined;
25434
26670
  gridAutoFlow?: readonly string[] | csstype.Property.GridAutoFlow | readonly csstype.Property.GridAutoFlow[] | undefined;
25435
26671
  gridAutoRows?: readonly (string | (string & {}))[] | csstype.Property.GridAutoRows<string | number> | readonly NonNullable<csstype.Property.GridAutoRows<string | number> | undefined>[] | undefined;
25436
- gridColumnEnd?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridColumnEnd | readonly NonNullable<csstype.Property.GridColumnEnd | undefined>[] | undefined;
25437
- gridColumnStart?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridColumnStart | readonly NonNullable<csstype.Property.GridColumnStart | undefined>[] | undefined;
25438
- gridRowEnd?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridRowEnd | readonly NonNullable<csstype.Property.GridRowEnd | undefined>[] | undefined;
25439
- gridRowStart?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridRowStart | readonly NonNullable<csstype.Property.GridRowStart | undefined>[] | undefined;
26672
+ gridColumnEnd?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridColumnEnd | readonly NonNullable<csstype.Property.GridColumnEnd | undefined>[] | undefined;
26673
+ gridColumnStart?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridColumnStart | readonly NonNullable<csstype.Property.GridColumnStart | undefined>[] | undefined;
26674
+ gridRowEnd?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridRowEnd | readonly NonNullable<csstype.Property.GridRowEnd | undefined>[] | undefined;
26675
+ gridRowStart?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridRowStart | readonly NonNullable<csstype.Property.GridRowStart | undefined>[] | undefined;
25440
26676
  gridTemplateAreas?: readonly string[] | csstype.Property.GridTemplateAreas | readonly csstype.Property.GridTemplateAreas[] | undefined;
25441
26677
  gridTemplateColumns?: readonly (string | (string & {}))[] | csstype.Property.GridTemplateColumns<string | number> | readonly NonNullable<csstype.Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
25442
26678
  gridTemplateRows?: readonly (string | (string & {}))[] | csstype.Property.GridTemplateRows<string | number> | readonly NonNullable<csstype.Property.GridTemplateRows<string | number> | undefined>[] | undefined;
25443
26679
  hangingPunctuation?: readonly string[] | csstype.Property.HangingPunctuation | readonly csstype.Property.HangingPunctuation[] | undefined;
25444
26680
  height?: readonly (string | (string & {}))[] | csstype.Property.Height<string | number> | readonly NonNullable<csstype.Property.Height<string | number> | undefined>[] | undefined;
25445
26681
  hyphenateCharacter?: readonly string[] | csstype.Property.HyphenateCharacter | readonly csstype.Property.HyphenateCharacter[] | undefined;
25446
- hyphenateLimitChars?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.HyphenateLimitChars | readonly NonNullable<csstype.Property.HyphenateLimitChars | undefined>[] | undefined;
26682
+ hyphenateLimitChars?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.HyphenateLimitChars | readonly NonNullable<csstype.Property.HyphenateLimitChars | undefined>[] | undefined;
25447
26683
  hyphens?: csstype.Property.Hyphens | readonly NonNullable<csstype.Property.Hyphens | undefined>[] | readonly csstype.Property.Hyphens[] | undefined;
25448
26684
  imageOrientation?: readonly string[] | csstype.Property.ImageOrientation | readonly csstype.Property.ImageOrientation[] | undefined;
25449
26685
  imageRendering?: csstype.Property.ImageRendering | readonly NonNullable<csstype.Property.ImageRendering | undefined>[] | readonly csstype.Property.ImageRendering[] | undefined;
@@ -25510,7 +26746,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25510
26746
  minBlockSize?: readonly (string | (string & {}))[] | csstype.Property.MinBlockSize<string | number> | readonly NonNullable<csstype.Property.MinBlockSize<string | number> | undefined>[] | undefined;
25511
26747
  minHeight?: readonly (string | (string & {}))[] | csstype.Property.MinHeight<string | number> | readonly NonNullable<csstype.Property.MinHeight<string | number> | undefined>[] | undefined;
25512
26748
  minInlineSize?: readonly (string | (string & {}))[] | csstype.Property.MinInlineSize<string | number> | readonly NonNullable<csstype.Property.MinInlineSize<string | number> | undefined>[] | undefined;
25513
- minWidth?: readonly (string | (string & {}))[] | csstype.Property.MinWidth<string | number> | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined;
26749
+ minWidth?: csstype.Property.MinWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined;
25514
26750
  mixBlendMode?: csstype.Property.MixBlendMode | readonly NonNullable<csstype.Property.MixBlendMode | undefined>[] | readonly csstype.Property.MixBlendMode[] | undefined;
25515
26751
  motionDistance?: readonly (string | (string & {}))[] | csstype.Property.OffsetDistance<string | number> | readonly NonNullable<csstype.Property.OffsetDistance<string | number> | undefined>[] | undefined;
25516
26752
  motionPath?: readonly string[] | csstype.Property.OffsetPath | readonly csstype.Property.OffsetPath[] | undefined;
@@ -25689,10 +26925,10 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25689
26925
  writingMode?: csstype.Property.WritingMode | readonly NonNullable<csstype.Property.WritingMode | undefined>[] | readonly csstype.Property.WritingMode[] | undefined;
25690
26926
  x?: readonly (string | (string & {}))[] | csstype.Property.X<string | number> | readonly NonNullable<csstype.Property.X<string | number> | undefined>[] | undefined;
25691
26927
  y?: readonly (string | (string & {}))[] | csstype.Property.Y<string | number> | readonly NonNullable<csstype.Property.Y<string | number> | undefined>[] | undefined;
25692
- zIndex?: csstype.Property.ZIndex | readonly NonNullable<csstype.Property.ZIndex | undefined>[] | readonly ((string & {}) | "auto" | csstype.Globals)[] | undefined;
25693
- zoom?: csstype.Property.Zoom | readonly NonNullable<csstype.Property.Zoom | undefined>[] | readonly ((string & {}) | csstype.Globals | "reset" | "normal")[] | undefined;
26928
+ zIndex?: csstype.Property.ZIndex | readonly NonNullable<csstype.Property.ZIndex | undefined>[] | readonly ((string & {}) | csstype.Globals | "auto")[] | undefined;
26929
+ zoom?: csstype.Property.Zoom | readonly NonNullable<csstype.Property.Zoom | undefined>[] | readonly ("reset" | (string & {}) | csstype.Globals | "normal")[] | undefined;
25694
26930
  all?: csstype.Globals | readonly NonNullable<csstype.Globals | undefined>[] | readonly csstype.Globals[] | undefined;
25695
- animation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
26931
+ animation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
25696
26932
  animationRange?: readonly (string | (string & {}))[] | csstype.Property.AnimationRange<string | number> | readonly NonNullable<csstype.Property.AnimationRange<string | number> | undefined>[] | undefined;
25697
26933
  background?: readonly (string | (string & {}))[] | csstype.Property.Background<string | number> | readonly NonNullable<csstype.Property.Background<string | number> | undefined>[] | undefined;
25698
26934
  backgroundPosition?: readonly (string | (string & {}))[] | csstype.Property.BackgroundPosition<string | number> | readonly NonNullable<csstype.Property.BackgroundPosition<string | number> | undefined>[] | undefined;
@@ -25705,7 +26941,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25705
26941
  borderBlockWidth?: readonly (string | (string & {}))[] | csstype.Property.BorderBlockWidth<string | number> | readonly NonNullable<csstype.Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
25706
26942
  borderBottom?: readonly (string | (string & {}))[] | csstype.Property.BorderBottom<string | number> | readonly NonNullable<csstype.Property.BorderBottom<string | number> | undefined>[] | undefined;
25707
26943
  borderColor?: readonly string[] | csstype.Property.BorderColor | readonly csstype.Property.BorderColor[] | undefined;
25708
- borderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
26944
+ borderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
25709
26945
  borderInline?: readonly (string | (string & {}))[] | csstype.Property.BorderInline<string | number> | readonly NonNullable<csstype.Property.BorderInline<string | number> | undefined>[] | undefined;
25710
26946
  borderInlineColor?: readonly string[] | csstype.Property.BorderInlineColor | readonly csstype.Property.BorderInlineColor[] | undefined;
25711
26947
  borderInlineEnd?: readonly (string | (string & {}))[] | csstype.Property.BorderInlineEnd<string | number> | readonly NonNullable<csstype.Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -25713,7 +26949,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25713
26949
  borderInlineStyle?: readonly string[] | csstype.Property.BorderInlineStyle | readonly csstype.Property.BorderInlineStyle[] | undefined;
25714
26950
  borderInlineWidth?: readonly (string | (string & {}))[] | csstype.Property.BorderInlineWidth<string | number> | readonly NonNullable<csstype.Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
25715
26951
  borderLeft?: readonly (string | (string & {}))[] | csstype.Property.BorderLeft<string | number> | readonly NonNullable<csstype.Property.BorderLeft<string | number> | undefined>[] | undefined;
25716
- borderRadius?: csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
26952
+ borderRadius?: csstype.Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined;
25717
26953
  borderRight?: readonly (string | (string & {}))[] | csstype.Property.BorderRight<string | number> | readonly NonNullable<csstype.Property.BorderRight<string | number> | undefined>[] | undefined;
25718
26954
  borderStyle?: readonly string[] | csstype.Property.BorderStyle | readonly csstype.Property.BorderStyle[] | undefined;
25719
26955
  borderTop?: readonly (string | (string & {}))[] | csstype.Property.BorderTop<string | number> | readonly NonNullable<csstype.Property.BorderTop<string | number> | undefined>[] | undefined;
@@ -25728,9 +26964,9 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25728
26964
  font?: readonly string[] | csstype.Property.Font | readonly csstype.Property.Font[] | undefined;
25729
26965
  gap?: readonly (string | (string & {}))[] | csstype.Property.Gap<string | number> | readonly NonNullable<csstype.Property.Gap<string | number> | undefined>[] | undefined;
25730
26966
  grid?: readonly string[] | csstype.Property.Grid | readonly csstype.Property.Grid[] | undefined;
25731
- gridArea?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined;
25732
- gridColumn?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined;
25733
- gridRow?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined;
26967
+ gridArea?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined;
26968
+ gridColumn?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined;
26969
+ gridRow?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined;
25734
26970
  gridTemplate?: readonly string[] | csstype.Property.GridTemplate | readonly csstype.Property.GridTemplate[] | undefined;
25735
26971
  inset?: readonly (string | (string & {}))[] | csstype.Property.Inset<string | number> | readonly NonNullable<csstype.Property.Inset<string | number> | undefined>[] | undefined;
25736
26972
  insetBlock?: readonly (string | (string & {}))[] | csstype.Property.InsetBlock<string | number> | readonly NonNullable<csstype.Property.InsetBlock<string | number> | undefined>[] | undefined;
@@ -25741,7 +26977,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25741
26977
  marginBlock?: readonly (string | (string & {}))[] | csstype.Property.MarginBlock<string | number> | readonly NonNullable<csstype.Property.MarginBlock<string | number> | undefined>[] | undefined;
25742
26978
  marginInline?: readonly (string | (string & {}))[] | csstype.Property.MarginInline<string | number> | readonly NonNullable<csstype.Property.MarginInline<string | number> | undefined>[] | undefined;
25743
26979
  mask?: readonly (string | (string & {}))[] | csstype.Property.Mask<string | number> | readonly NonNullable<csstype.Property.Mask<string | number> | undefined>[] | undefined;
25744
- maskBorder?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
26980
+ maskBorder?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
25745
26981
  motion?: readonly (string | (string & {}))[] | csstype.Property.Offset<string | number> | readonly NonNullable<csstype.Property.Offset<string | number> | undefined>[] | undefined;
25746
26982
  offset?: readonly (string | (string & {}))[] | csstype.Property.Offset<string | number> | readonly NonNullable<csstype.Property.Offset<string | number> | undefined>[] | undefined;
25747
26983
  outline?: readonly (string | (string & {}))[] | csstype.Property.Outline<string | number> | readonly NonNullable<csstype.Property.Outline<string | number> | undefined>[] | undefined;
@@ -25835,7 +27071,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25835
27071
  msGridColumns?: readonly (string | (string & {}))[] | csstype.Property.MsGridColumns<string | number> | readonly NonNullable<csstype.Property.MsGridColumns<string | number> | undefined>[] | undefined;
25836
27072
  msGridRows?: readonly (string | (string & {}))[] | csstype.Property.MsGridRows<string | number> | readonly NonNullable<csstype.Property.MsGridRows<string | number> | undefined>[] | undefined;
25837
27073
  msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | readonly NonNullable<csstype.Property.MsHighContrastAdjust | undefined>[] | readonly csstype.Property.MsHighContrastAdjust[] | undefined;
25838
- msHyphenateLimitChars?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.MsHyphenateLimitChars | readonly NonNullable<csstype.Property.MsHyphenateLimitChars | undefined>[] | undefined;
27074
+ msHyphenateLimitChars?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.MsHyphenateLimitChars | readonly NonNullable<csstype.Property.MsHyphenateLimitChars | undefined>[] | undefined;
25839
27075
  msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | readonly NonNullable<csstype.Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | csstype.Globals | "no-limit")[] | undefined;
25840
27076
  msHyphenateLimitZone?: readonly (string | (string & {}))[] | csstype.Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<csstype.Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
25841
27077
  msHyphens?: csstype.Property.Hyphens | readonly NonNullable<csstype.Property.Hyphens | undefined>[] | readonly csstype.Property.Hyphens[] | undefined;
@@ -25903,14 +27139,14 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25903
27139
  WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
25904
27140
  WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
25905
27141
  WebkitBorderImageSlice?: readonly ((string & {}) | csstype.Globals)[] | csstype.Property.BorderImageSlice | readonly NonNullable<csstype.Property.BorderImageSlice | undefined>[] | undefined;
25906
- WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
27142
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
25907
27143
  WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
25908
27144
  WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | readonly NonNullable<csstype.Property.BoxDecorationBreak | undefined>[] | readonly csstype.Property.BoxDecorationBreak[] | undefined;
25909
27145
  WebkitBoxReflect?: readonly (string | (string & {}))[] | csstype.Property.WebkitBoxReflect<string | number> | readonly NonNullable<csstype.Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
25910
27146
  WebkitBoxShadow?: readonly string[] | csstype.Property.BoxShadow | readonly csstype.Property.BoxShadow[] | undefined;
25911
27147
  WebkitBoxSizing?: csstype.Property.BoxSizing | readonly NonNullable<csstype.Property.BoxSizing | undefined>[] | readonly csstype.Property.BoxSizing[] | undefined;
25912
27148
  WebkitClipPath?: readonly string[] | csstype.Property.ClipPath | readonly csstype.Property.ClipPath[] | undefined;
25913
- WebkitColumnCount?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
27149
+ WebkitColumnCount?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
25914
27150
  WebkitColumnFill?: csstype.Property.ColumnFill | readonly NonNullable<csstype.Property.ColumnFill | undefined>[] | readonly csstype.Property.ColumnFill[] | undefined;
25915
27151
  WebkitColumnRuleColor?: readonly string[] | csstype.Property.ColumnRuleColor | readonly csstype.Property.ColumnRuleColor[] | undefined;
25916
27152
  WebkitColumnRuleStyle?: readonly string[] | csstype.Property.ColumnRuleStyle | readonly csstype.Property.ColumnRuleStyle[] | undefined;
@@ -25991,8 +27227,8 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
25991
27227
  WebkitUserModify?: csstype.Property.WebkitUserModify | readonly NonNullable<csstype.Property.WebkitUserModify | undefined>[] | readonly csstype.Property.WebkitUserModify[] | undefined;
25992
27228
  WebkitUserSelect?: csstype.Property.WebkitUserSelect | readonly NonNullable<csstype.Property.WebkitUserSelect | undefined>[] | readonly csstype.Property.WebkitUserSelect[] | undefined;
25993
27229
  WebkitWritingMode?: csstype.Property.WritingMode | readonly NonNullable<csstype.Property.WritingMode | undefined>[] | readonly csstype.Property.WritingMode[] | undefined;
25994
- MozAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
25995
- MozBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
27230
+ MozAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
27231
+ MozBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
25996
27232
  MozColumnRule?: readonly (string | (string & {}))[] | csstype.Property.ColumnRule<string | number> | readonly NonNullable<csstype.Property.ColumnRule<string | number> | undefined>[] | undefined;
25997
27233
  MozColumns?: readonly (string | (string & {}))[] | csstype.Property.Columns<string | number> | readonly NonNullable<csstype.Property.Columns<string | number> | undefined>[] | undefined;
25998
27234
  MozOutlineRadius?: readonly (string | (string & {}))[] | csstype.Property.MozOutlineRadius<string | number> | readonly NonNullable<csstype.Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -26004,16 +27240,16 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26004
27240
  msScrollSnapX?: readonly string[] | csstype.Property.MsScrollSnapX | readonly csstype.Property.MsScrollSnapX[] | undefined;
26005
27241
  msScrollSnapY?: readonly string[] | csstype.Property.MsScrollSnapY | readonly csstype.Property.MsScrollSnapY[] | undefined;
26006
27242
  msTransition?: readonly string[] | csstype.Property.Transition<string & {}> | readonly csstype.Property.Transition<string & {}>[] | undefined;
26007
- WebkitAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
27243
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
26008
27244
  WebkitBorderBefore?: readonly (string | (string & {}))[] | csstype.Property.WebkitBorderBefore<string | number> | readonly NonNullable<csstype.Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
26009
- WebkitBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
26010
- WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
27245
+ WebkitBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
27246
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined;
26011
27247
  WebkitColumnRule?: readonly (string | (string & {}))[] | csstype.Property.ColumnRule<string | number> | readonly NonNullable<csstype.Property.ColumnRule<string | number> | undefined>[] | undefined;
26012
27248
  WebkitColumns?: readonly (string | (string & {}))[] | csstype.Property.Columns<string | number> | readonly NonNullable<csstype.Property.Columns<string | number> | undefined>[] | undefined;
26013
27249
  WebkitFlex?: readonly (string | (string & {}))[] | csstype.Property.Flex<string | number> | readonly NonNullable<csstype.Property.Flex<string | number> | undefined>[] | undefined;
26014
27250
  WebkitFlexFlow?: readonly string[] | csstype.Property.FlexFlow | readonly csstype.Property.FlexFlow[] | undefined;
26015
27251
  WebkitMask?: readonly (string | (string & {}))[] | csstype.Property.WebkitMask<string | number> | readonly NonNullable<csstype.Property.WebkitMask<string | number> | undefined>[] | undefined;
26016
- WebkitMaskBoxImage?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
27252
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
26017
27253
  WebkitTextEmphasis?: readonly string[] | csstype.Property.TextEmphasis | readonly csstype.Property.TextEmphasis[] | undefined;
26018
27254
  WebkitTextStroke?: readonly (string | (string & {}))[] | csstype.Property.WebkitTextStroke<string | number> | readonly NonNullable<csstype.Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
26019
27255
  WebkitTransition?: readonly string[] | csstype.Property.Transition<string & {}> | readonly csstype.Property.Transition<string & {}>[] | undefined;
@@ -26062,10 +27298,10 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26062
27298
  MozBackgroundClip?: readonly string[] | csstype.Property.BackgroundClip | readonly csstype.Property.BackgroundClip[] | undefined;
26063
27299
  MozBackgroundOrigin?: readonly string[] | csstype.Property.BackgroundOrigin | readonly csstype.Property.BackgroundOrigin[] | undefined;
26064
27300
  MozBackgroundSize?: readonly (string | (string & {}))[] | csstype.Property.BackgroundSize<string | number> | readonly NonNullable<csstype.Property.BackgroundSize<string | number> | undefined>[] | undefined;
26065
- MozBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
27301
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined;
26066
27302
  MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
26067
27303
  MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
26068
- MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
27304
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
26069
27305
  MozBorderRadiusTopright?: readonly (string | (string & {}))[] | csstype.Property.BorderTopRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
26070
27306
  MozBoxAlign?: csstype.Property.BoxAlign | readonly NonNullable<csstype.Property.BoxAlign | undefined>[] | readonly csstype.Property.BoxAlign[] | undefined;
26071
27307
  MozBoxDirection?: csstype.Property.BoxDirection | readonly NonNullable<csstype.Property.BoxDirection | undefined>[] | readonly csstype.Property.BoxDirection[] | undefined;
@@ -26074,7 +27310,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26074
27310
  MozBoxOrient?: csstype.Property.BoxOrient | readonly NonNullable<csstype.Property.BoxOrient | undefined>[] | readonly csstype.Property.BoxOrient[] | undefined;
26075
27311
  MozBoxPack?: csstype.Property.BoxPack | readonly NonNullable<csstype.Property.BoxPack | undefined>[] | readonly csstype.Property.BoxPack[] | undefined;
26076
27312
  MozBoxShadow?: readonly string[] | csstype.Property.BoxShadow | readonly csstype.Property.BoxShadow[] | undefined;
26077
- MozColumnCount?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
27313
+ MozColumnCount?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
26078
27314
  MozColumnFill?: csstype.Property.ColumnFill | readonly NonNullable<csstype.Property.ColumnFill | undefined>[] | readonly csstype.Property.ColumnFill[] | undefined;
26079
27315
  MozFloatEdge?: csstype.Property.MozFloatEdge | readonly NonNullable<csstype.Property.MozFloatEdge | undefined>[] | readonly csstype.Property.MozFloatEdge[] | undefined;
26080
27316
  MozForceBrokenImageIcon?: readonly ((string & {}) | csstype.Globals)[] | csstype.Property.MozForceBrokenImageIcon | readonly NonNullable<csstype.Property.MozForceBrokenImageIcon | undefined>[] | undefined;
@@ -26094,7 +27330,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26094
27330
  MozUserFocus?: csstype.Property.MozUserFocus | readonly NonNullable<csstype.Property.MozUserFocus | undefined>[] | readonly csstype.Property.MozUserFocus[] | undefined;
26095
27331
  MozUserInput?: csstype.Property.MozUserInput | readonly NonNullable<csstype.Property.MozUserInput | undefined>[] | readonly csstype.Property.MozUserInput[] | undefined;
26096
27332
  msImeMode?: csstype.Property.ImeMode | readonly NonNullable<csstype.Property.ImeMode | undefined>[] | readonly csstype.Property.ImeMode[] | undefined;
26097
- OAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
27333
+ OAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
26098
27334
  OAnimationDelay?: readonly string[] | csstype.Property.AnimationDelay<string & {}> | readonly csstype.Property.AnimationDelay<string & {}>[] | undefined;
26099
27335
  OAnimationDirection?: readonly string[] | csstype.Property.AnimationDirection | readonly csstype.Property.AnimationDirection[] | undefined;
26100
27336
  OAnimationDuration?: readonly string[] | csstype.Property.AnimationDuration<string & {}> | readonly csstype.Property.AnimationDuration<string & {}>[] | undefined;
@@ -26104,7 +27340,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26104
27340
  OAnimationPlayState?: readonly string[] | csstype.Property.AnimationPlayState | readonly csstype.Property.AnimationPlayState[] | undefined;
26105
27341
  OAnimationTimingFunction?: readonly string[] | csstype.Property.AnimationTimingFunction | readonly csstype.Property.AnimationTimingFunction[] | undefined;
26106
27342
  OBackgroundSize?: readonly (string | (string & {}))[] | csstype.Property.BackgroundSize<string | number> | readonly NonNullable<csstype.Property.BackgroundSize<string | number> | undefined>[] | undefined;
26107
- OBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
27343
+ OBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
26108
27344
  OObjectFit?: csstype.Property.ObjectFit | readonly NonNullable<csstype.Property.ObjectFit | undefined>[] | readonly csstype.Property.ObjectFit[] | undefined;
26109
27345
  OObjectPosition?: readonly (string | (string & {}))[] | csstype.Property.ObjectPosition<string | number> | readonly NonNullable<csstype.Property.ObjectPosition<string | number> | undefined>[] | undefined;
26110
27346
  OTabSize?: readonly (string | (string & {}))[] | csstype.Property.TabSize<string | number> | readonly NonNullable<csstype.Property.TabSize<string | number> | undefined>[] | undefined;
@@ -26126,7 +27362,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26126
27362
  WebkitBoxPack?: csstype.Property.BoxPack | readonly NonNullable<csstype.Property.BoxPack | undefined>[] | readonly csstype.Property.BoxPack[] | undefined;
26127
27363
  colorInterpolation?: csstype.Property.ColorInterpolation | readonly NonNullable<csstype.Property.ColorInterpolation | undefined>[] | readonly csstype.Property.ColorInterpolation[] | undefined;
26128
27364
  colorRendering?: csstype.Property.ColorRendering | readonly NonNullable<csstype.Property.ColorRendering | undefined>[] | readonly csstype.Property.ColorRendering[] | undefined;
26129
- glyphOrientationVertical?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GlyphOrientationVertical | readonly NonNullable<csstype.Property.GlyphOrientationVertical | undefined>[] | undefined;
27365
+ glyphOrientationVertical?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GlyphOrientationVertical | readonly NonNullable<csstype.Property.GlyphOrientationVertical | undefined>[] | undefined;
26130
27366
  ":-moz-any()"?: _emotion_react.CSSObject | undefined;
26131
27367
  ":-moz-dir"?: _emotion_react.CSSObject | undefined;
26132
27368
  ":-webkit-any()"?: _emotion_react.CSSObject | undefined;
@@ -26309,7 +27545,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26309
27545
  animationTimeline?: readonly string[] | csstype.Property.AnimationTimeline | readonly csstype.Property.AnimationTimeline[] | undefined;
26310
27546
  animationTimingFunction?: readonly string[] | csstype.Property.AnimationTimingFunction | readonly csstype.Property.AnimationTimingFunction[] | undefined;
26311
27547
  appearance?: csstype.Property.Appearance | readonly NonNullable<csstype.Property.Appearance | undefined>[] | readonly csstype.Property.Appearance[] | undefined;
26312
- aspectRatio?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.AspectRatio | readonly NonNullable<csstype.Property.AspectRatio | undefined>[] | undefined;
27548
+ aspectRatio?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.AspectRatio | readonly NonNullable<csstype.Property.AspectRatio | undefined>[] | undefined;
26313
27549
  backdropFilter?: readonly string[] | csstype.Property.BackdropFilter | readonly csstype.Property.BackdropFilter[] | undefined;
26314
27550
  backfaceVisibility?: csstype.Property.BackfaceVisibility | readonly NonNullable<csstype.Property.BackfaceVisibility | undefined>[] | readonly csstype.Property.BackfaceVisibility[] | undefined;
26315
27551
  backgroundAttachment?: readonly string[] | csstype.Property.BackgroundAttachment | readonly csstype.Property.BackgroundAttachment[] | undefined;
@@ -26358,7 +27594,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26358
27594
  borderStartEndRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderStartEndRadius<string | number> | readonly NonNullable<csstype.Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
26359
27595
  borderStartStartRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderStartStartRadius<string | number> | readonly NonNullable<csstype.Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
26360
27596
  borderTopColor?: readonly string[] | csstype.Property.BorderTopColor | readonly csstype.Property.BorderTopColor[] | undefined;
26361
- borderTopLeftRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
27597
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
26362
27598
  borderTopRightRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
26363
27599
  borderTopStyle?: csstype.Property.BorderTopStyle | readonly NonNullable<csstype.Property.BorderTopStyle | undefined>[] | readonly csstype.Property.BorderTopStyle[] | undefined;
26364
27600
  borderTopWidth?: readonly string[] | csstype.Property.BorderTopWidth<string | number> | readonly NonNullable<csstype.Property.BorderTopWidth<string | number> | undefined>[] | undefined;
@@ -26379,7 +27615,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26379
27615
  colorAdjust?: csstype.Property.PrintColorAdjust | readonly NonNullable<csstype.Property.PrintColorAdjust | undefined>[] | readonly csstype.Property.PrintColorAdjust[] | undefined;
26380
27616
  colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | readonly NonNullable<csstype.Property.ColorInterpolationFilters | undefined>[] | readonly csstype.Property.ColorInterpolationFilters[] | undefined;
26381
27617
  colorScheme?: readonly string[] | csstype.Property.ColorScheme | readonly csstype.Property.ColorScheme[] | undefined;
26382
- columnCount?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
27618
+ columnCount?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
26383
27619
  columnFill?: csstype.Property.ColumnFill | readonly NonNullable<csstype.Property.ColumnFill | undefined>[] | readonly csstype.Property.ColumnFill[] | undefined;
26384
27620
  columnGap?: readonly (string | (string & {}))[] | csstype.Property.ColumnGap<string | number> | readonly NonNullable<csstype.Property.ColumnGap<string | number> | undefined>[] | undefined;
26385
27621
  columnRuleColor?: readonly string[] | csstype.Property.ColumnRuleColor | readonly csstype.Property.ColumnRuleColor[] | undefined;
@@ -26450,17 +27686,17 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26450
27686
  gridAutoColumns?: readonly (string | (string & {}))[] | csstype.Property.GridAutoColumns<string | number> | readonly NonNullable<csstype.Property.GridAutoColumns<string | number> | undefined>[] | undefined;
26451
27687
  gridAutoFlow?: readonly string[] | csstype.Property.GridAutoFlow | readonly csstype.Property.GridAutoFlow[] | undefined;
26452
27688
  gridAutoRows?: readonly (string | (string & {}))[] | csstype.Property.GridAutoRows<string | number> | readonly NonNullable<csstype.Property.GridAutoRows<string | number> | undefined>[] | undefined;
26453
- gridColumnEnd?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridColumnEnd | readonly NonNullable<csstype.Property.GridColumnEnd | undefined>[] | undefined;
26454
- gridColumnStart?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridColumnStart | readonly NonNullable<csstype.Property.GridColumnStart | undefined>[] | undefined;
26455
- gridRowEnd?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridRowEnd | readonly NonNullable<csstype.Property.GridRowEnd | undefined>[] | undefined;
26456
- gridRowStart?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridRowStart | readonly NonNullable<csstype.Property.GridRowStart | undefined>[] | undefined;
27689
+ gridColumnEnd?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridColumnEnd | readonly NonNullable<csstype.Property.GridColumnEnd | undefined>[] | undefined;
27690
+ gridColumnStart?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridColumnStart | readonly NonNullable<csstype.Property.GridColumnStart | undefined>[] | undefined;
27691
+ gridRowEnd?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridRowEnd | readonly NonNullable<csstype.Property.GridRowEnd | undefined>[] | undefined;
27692
+ gridRowStart?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridRowStart | readonly NonNullable<csstype.Property.GridRowStart | undefined>[] | undefined;
26457
27693
  gridTemplateAreas?: readonly string[] | csstype.Property.GridTemplateAreas | readonly csstype.Property.GridTemplateAreas[] | undefined;
26458
27694
  gridTemplateColumns?: readonly (string | (string & {}))[] | csstype.Property.GridTemplateColumns<string | number> | readonly NonNullable<csstype.Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
26459
27695
  gridTemplateRows?: readonly (string | (string & {}))[] | csstype.Property.GridTemplateRows<string | number> | readonly NonNullable<csstype.Property.GridTemplateRows<string | number> | undefined>[] | undefined;
26460
27696
  hangingPunctuation?: readonly string[] | csstype.Property.HangingPunctuation | readonly csstype.Property.HangingPunctuation[] | undefined;
26461
27697
  height?: readonly (string | (string & {}))[] | csstype.Property.Height<string | number> | readonly NonNullable<csstype.Property.Height<string | number> | undefined>[] | undefined;
26462
27698
  hyphenateCharacter?: readonly string[] | csstype.Property.HyphenateCharacter | readonly csstype.Property.HyphenateCharacter[] | undefined;
26463
- hyphenateLimitChars?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.HyphenateLimitChars | readonly NonNullable<csstype.Property.HyphenateLimitChars | undefined>[] | undefined;
27699
+ hyphenateLimitChars?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.HyphenateLimitChars | readonly NonNullable<csstype.Property.HyphenateLimitChars | undefined>[] | undefined;
26464
27700
  hyphens?: csstype.Property.Hyphens | readonly NonNullable<csstype.Property.Hyphens | undefined>[] | readonly csstype.Property.Hyphens[] | undefined;
26465
27701
  imageOrientation?: readonly string[] | csstype.Property.ImageOrientation | readonly csstype.Property.ImageOrientation[] | undefined;
26466
27702
  imageRendering?: csstype.Property.ImageRendering | readonly NonNullable<csstype.Property.ImageRendering | undefined>[] | readonly csstype.Property.ImageRendering[] | undefined;
@@ -26527,7 +27763,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26527
27763
  minBlockSize?: readonly (string | (string & {}))[] | csstype.Property.MinBlockSize<string | number> | readonly NonNullable<csstype.Property.MinBlockSize<string | number> | undefined>[] | undefined;
26528
27764
  minHeight?: readonly (string | (string & {}))[] | csstype.Property.MinHeight<string | number> | readonly NonNullable<csstype.Property.MinHeight<string | number> | undefined>[] | undefined;
26529
27765
  minInlineSize?: readonly (string | (string & {}))[] | csstype.Property.MinInlineSize<string | number> | readonly NonNullable<csstype.Property.MinInlineSize<string | number> | undefined>[] | undefined;
26530
- minWidth?: readonly (string | (string & {}))[] | csstype.Property.MinWidth<string | number> | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined;
27766
+ minWidth?: csstype.Property.MinWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined;
26531
27767
  mixBlendMode?: csstype.Property.MixBlendMode | readonly NonNullable<csstype.Property.MixBlendMode | undefined>[] | readonly csstype.Property.MixBlendMode[] | undefined;
26532
27768
  motionDistance?: readonly (string | (string & {}))[] | csstype.Property.OffsetDistance<string | number> | readonly NonNullable<csstype.Property.OffsetDistance<string | number> | undefined>[] | undefined;
26533
27769
  motionPath?: readonly string[] | csstype.Property.OffsetPath | readonly csstype.Property.OffsetPath[] | undefined;
@@ -26706,10 +27942,10 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26706
27942
  writingMode?: csstype.Property.WritingMode | readonly NonNullable<csstype.Property.WritingMode | undefined>[] | readonly csstype.Property.WritingMode[] | undefined;
26707
27943
  x?: readonly (string | (string & {}))[] | csstype.Property.X<string | number> | readonly NonNullable<csstype.Property.X<string | number> | undefined>[] | undefined;
26708
27944
  y?: readonly (string | (string & {}))[] | csstype.Property.Y<string | number> | readonly NonNullable<csstype.Property.Y<string | number> | undefined>[] | undefined;
26709
- zIndex?: csstype.Property.ZIndex | readonly NonNullable<csstype.Property.ZIndex | undefined>[] | readonly ((string & {}) | "auto" | csstype.Globals)[] | undefined;
26710
- zoom?: csstype.Property.Zoom | readonly NonNullable<csstype.Property.Zoom | undefined>[] | readonly ((string & {}) | csstype.Globals | "reset" | "normal")[] | undefined;
27945
+ zIndex?: csstype.Property.ZIndex | readonly NonNullable<csstype.Property.ZIndex | undefined>[] | readonly ((string & {}) | csstype.Globals | "auto")[] | undefined;
27946
+ zoom?: csstype.Property.Zoom | readonly NonNullable<csstype.Property.Zoom | undefined>[] | readonly ("reset" | (string & {}) | csstype.Globals | "normal")[] | undefined;
26711
27947
  all?: csstype.Globals | readonly NonNullable<csstype.Globals | undefined>[] | readonly csstype.Globals[] | undefined;
26712
- animation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
27948
+ animation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
26713
27949
  animationRange?: readonly (string | (string & {}))[] | csstype.Property.AnimationRange<string | number> | readonly NonNullable<csstype.Property.AnimationRange<string | number> | undefined>[] | undefined;
26714
27950
  background?: readonly (string | (string & {}))[] | csstype.Property.Background<string | number> | readonly NonNullable<csstype.Property.Background<string | number> | undefined>[] | undefined;
26715
27951
  backgroundPosition?: readonly (string | (string & {}))[] | csstype.Property.BackgroundPosition<string | number> | readonly NonNullable<csstype.Property.BackgroundPosition<string | number> | undefined>[] | undefined;
@@ -26722,7 +27958,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26722
27958
  borderBlockWidth?: readonly (string | (string & {}))[] | csstype.Property.BorderBlockWidth<string | number> | readonly NonNullable<csstype.Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
26723
27959
  borderBottom?: readonly (string | (string & {}))[] | csstype.Property.BorderBottom<string | number> | readonly NonNullable<csstype.Property.BorderBottom<string | number> | undefined>[] | undefined;
26724
27960
  borderColor?: readonly string[] | csstype.Property.BorderColor | readonly csstype.Property.BorderColor[] | undefined;
26725
- borderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
27961
+ borderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
26726
27962
  borderInline?: readonly (string | (string & {}))[] | csstype.Property.BorderInline<string | number> | readonly NonNullable<csstype.Property.BorderInline<string | number> | undefined>[] | undefined;
26727
27963
  borderInlineColor?: readonly string[] | csstype.Property.BorderInlineColor | readonly csstype.Property.BorderInlineColor[] | undefined;
26728
27964
  borderInlineEnd?: readonly (string | (string & {}))[] | csstype.Property.BorderInlineEnd<string | number> | readonly NonNullable<csstype.Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -26730,7 +27966,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26730
27966
  borderInlineStyle?: readonly string[] | csstype.Property.BorderInlineStyle | readonly csstype.Property.BorderInlineStyle[] | undefined;
26731
27967
  borderInlineWidth?: readonly (string | (string & {}))[] | csstype.Property.BorderInlineWidth<string | number> | readonly NonNullable<csstype.Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
26732
27968
  borderLeft?: readonly (string | (string & {}))[] | csstype.Property.BorderLeft<string | number> | readonly NonNullable<csstype.Property.BorderLeft<string | number> | undefined>[] | undefined;
26733
- borderRadius?: csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
27969
+ borderRadius?: csstype.Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined;
26734
27970
  borderRight?: readonly (string | (string & {}))[] | csstype.Property.BorderRight<string | number> | readonly NonNullable<csstype.Property.BorderRight<string | number> | undefined>[] | undefined;
26735
27971
  borderStyle?: readonly string[] | csstype.Property.BorderStyle | readonly csstype.Property.BorderStyle[] | undefined;
26736
27972
  borderTop?: readonly (string | (string & {}))[] | csstype.Property.BorderTop<string | number> | readonly NonNullable<csstype.Property.BorderTop<string | number> | undefined>[] | undefined;
@@ -26745,9 +27981,9 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26745
27981
  font?: readonly string[] | csstype.Property.Font | readonly csstype.Property.Font[] | undefined;
26746
27982
  gap?: readonly (string | (string & {}))[] | csstype.Property.Gap<string | number> | readonly NonNullable<csstype.Property.Gap<string | number> | undefined>[] | undefined;
26747
27983
  grid?: readonly string[] | csstype.Property.Grid | readonly csstype.Property.Grid[] | undefined;
26748
- gridArea?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined;
26749
- gridColumn?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined;
26750
- gridRow?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined;
27984
+ gridArea?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined;
27985
+ gridColumn?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined;
27986
+ gridRow?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined;
26751
27987
  gridTemplate?: readonly string[] | csstype.Property.GridTemplate | readonly csstype.Property.GridTemplate[] | undefined;
26752
27988
  inset?: readonly (string | (string & {}))[] | csstype.Property.Inset<string | number> | readonly NonNullable<csstype.Property.Inset<string | number> | undefined>[] | undefined;
26753
27989
  insetBlock?: readonly (string | (string & {}))[] | csstype.Property.InsetBlock<string | number> | readonly NonNullable<csstype.Property.InsetBlock<string | number> | undefined>[] | undefined;
@@ -26758,7 +27994,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26758
27994
  marginBlock?: readonly (string | (string & {}))[] | csstype.Property.MarginBlock<string | number> | readonly NonNullable<csstype.Property.MarginBlock<string | number> | undefined>[] | undefined;
26759
27995
  marginInline?: readonly (string | (string & {}))[] | csstype.Property.MarginInline<string | number> | readonly NonNullable<csstype.Property.MarginInline<string | number> | undefined>[] | undefined;
26760
27996
  mask?: readonly (string | (string & {}))[] | csstype.Property.Mask<string | number> | readonly NonNullable<csstype.Property.Mask<string | number> | undefined>[] | undefined;
26761
- maskBorder?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
27997
+ maskBorder?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
26762
27998
  motion?: readonly (string | (string & {}))[] | csstype.Property.Offset<string | number> | readonly NonNullable<csstype.Property.Offset<string | number> | undefined>[] | undefined;
26763
27999
  offset?: readonly (string | (string & {}))[] | csstype.Property.Offset<string | number> | readonly NonNullable<csstype.Property.Offset<string | number> | undefined>[] | undefined;
26764
28000
  outline?: readonly (string | (string & {}))[] | csstype.Property.Outline<string | number> | readonly NonNullable<csstype.Property.Outline<string | number> | undefined>[] | undefined;
@@ -26852,7 +28088,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26852
28088
  msGridColumns?: readonly (string | (string & {}))[] | csstype.Property.MsGridColumns<string | number> | readonly NonNullable<csstype.Property.MsGridColumns<string | number> | undefined>[] | undefined;
26853
28089
  msGridRows?: readonly (string | (string & {}))[] | csstype.Property.MsGridRows<string | number> | readonly NonNullable<csstype.Property.MsGridRows<string | number> | undefined>[] | undefined;
26854
28090
  msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | readonly NonNullable<csstype.Property.MsHighContrastAdjust | undefined>[] | readonly csstype.Property.MsHighContrastAdjust[] | undefined;
26855
- msHyphenateLimitChars?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.MsHyphenateLimitChars | readonly NonNullable<csstype.Property.MsHyphenateLimitChars | undefined>[] | undefined;
28091
+ msHyphenateLimitChars?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.MsHyphenateLimitChars | readonly NonNullable<csstype.Property.MsHyphenateLimitChars | undefined>[] | undefined;
26856
28092
  msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | readonly NonNullable<csstype.Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | csstype.Globals | "no-limit")[] | undefined;
26857
28093
  msHyphenateLimitZone?: readonly (string | (string & {}))[] | csstype.Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<csstype.Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
26858
28094
  msHyphens?: csstype.Property.Hyphens | readonly NonNullable<csstype.Property.Hyphens | undefined>[] | readonly csstype.Property.Hyphens[] | undefined;
@@ -26920,14 +28156,14 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
26920
28156
  WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
26921
28157
  WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
26922
28158
  WebkitBorderImageSlice?: readonly ((string & {}) | csstype.Globals)[] | csstype.Property.BorderImageSlice | readonly NonNullable<csstype.Property.BorderImageSlice | undefined>[] | undefined;
26923
- WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
28159
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
26924
28160
  WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | csstype.Property.BorderTopRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
26925
28161
  WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | readonly NonNullable<csstype.Property.BoxDecorationBreak | undefined>[] | readonly csstype.Property.BoxDecorationBreak[] | undefined;
26926
28162
  WebkitBoxReflect?: readonly (string | (string & {}))[] | csstype.Property.WebkitBoxReflect<string | number> | readonly NonNullable<csstype.Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
26927
28163
  WebkitBoxShadow?: readonly string[] | csstype.Property.BoxShadow | readonly csstype.Property.BoxShadow[] | undefined;
26928
28164
  WebkitBoxSizing?: csstype.Property.BoxSizing | readonly NonNullable<csstype.Property.BoxSizing | undefined>[] | readonly csstype.Property.BoxSizing[] | undefined;
26929
28165
  WebkitClipPath?: readonly string[] | csstype.Property.ClipPath | readonly csstype.Property.ClipPath[] | undefined;
26930
- WebkitColumnCount?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
28166
+ WebkitColumnCount?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
26931
28167
  WebkitColumnFill?: csstype.Property.ColumnFill | readonly NonNullable<csstype.Property.ColumnFill | undefined>[] | readonly csstype.Property.ColumnFill[] | undefined;
26932
28168
  WebkitColumnRuleColor?: readonly string[] | csstype.Property.ColumnRuleColor | readonly csstype.Property.ColumnRuleColor[] | undefined;
26933
28169
  WebkitColumnRuleStyle?: readonly string[] | csstype.Property.ColumnRuleStyle | readonly csstype.Property.ColumnRuleStyle[] | undefined;
@@ -27008,8 +28244,8 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
27008
28244
  WebkitUserModify?: csstype.Property.WebkitUserModify | readonly NonNullable<csstype.Property.WebkitUserModify | undefined>[] | readonly csstype.Property.WebkitUserModify[] | undefined;
27009
28245
  WebkitUserSelect?: csstype.Property.WebkitUserSelect | readonly NonNullable<csstype.Property.WebkitUserSelect | undefined>[] | readonly csstype.Property.WebkitUserSelect[] | undefined;
27010
28246
  WebkitWritingMode?: csstype.Property.WritingMode | readonly NonNullable<csstype.Property.WritingMode | undefined>[] | readonly csstype.Property.WritingMode[] | undefined;
27011
- MozAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
27012
- MozBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
28247
+ MozAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
28248
+ MozBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
27013
28249
  MozColumnRule?: readonly (string | (string & {}))[] | csstype.Property.ColumnRule<string | number> | readonly NonNullable<csstype.Property.ColumnRule<string | number> | undefined>[] | undefined;
27014
28250
  MozColumns?: readonly (string | (string & {}))[] | csstype.Property.Columns<string | number> | readonly NonNullable<csstype.Property.Columns<string | number> | undefined>[] | undefined;
27015
28251
  MozOutlineRadius?: readonly (string | (string & {}))[] | csstype.Property.MozOutlineRadius<string | number> | readonly NonNullable<csstype.Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -27021,16 +28257,16 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
27021
28257
  msScrollSnapX?: readonly string[] | csstype.Property.MsScrollSnapX | readonly csstype.Property.MsScrollSnapX[] | undefined;
27022
28258
  msScrollSnapY?: readonly string[] | csstype.Property.MsScrollSnapY | readonly csstype.Property.MsScrollSnapY[] | undefined;
27023
28259
  msTransition?: readonly string[] | csstype.Property.Transition<string & {}> | readonly csstype.Property.Transition<string & {}>[] | undefined;
27024
- WebkitAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
28260
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
27025
28261
  WebkitBorderBefore?: readonly (string | (string & {}))[] | csstype.Property.WebkitBorderBefore<string | number> | readonly NonNullable<csstype.Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
27026
- WebkitBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
27027
- WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
28262
+ WebkitBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
28263
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined;
27028
28264
  WebkitColumnRule?: readonly (string | (string & {}))[] | csstype.Property.ColumnRule<string | number> | readonly NonNullable<csstype.Property.ColumnRule<string | number> | undefined>[] | undefined;
27029
28265
  WebkitColumns?: readonly (string | (string & {}))[] | csstype.Property.Columns<string | number> | readonly NonNullable<csstype.Property.Columns<string | number> | undefined>[] | undefined;
27030
28266
  WebkitFlex?: readonly (string | (string & {}))[] | csstype.Property.Flex<string | number> | readonly NonNullable<csstype.Property.Flex<string | number> | undefined>[] | undefined;
27031
28267
  WebkitFlexFlow?: readonly string[] | csstype.Property.FlexFlow | readonly csstype.Property.FlexFlow[] | undefined;
27032
28268
  WebkitMask?: readonly (string | (string & {}))[] | csstype.Property.WebkitMask<string | number> | readonly NonNullable<csstype.Property.WebkitMask<string | number> | undefined>[] | undefined;
27033
- WebkitMaskBoxImage?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
28269
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | readonly NonNullable<csstype.Property.MaskBorder | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space" | "alpha" | "luminance")[] | undefined;
27034
28270
  WebkitTextEmphasis?: readonly string[] | csstype.Property.TextEmphasis | readonly csstype.Property.TextEmphasis[] | undefined;
27035
28271
  WebkitTextStroke?: readonly (string | (string & {}))[] | csstype.Property.WebkitTextStroke<string | number> | readonly NonNullable<csstype.Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
27036
28272
  WebkitTransition?: readonly string[] | csstype.Property.Transition<string & {}> | readonly csstype.Property.Transition<string & {}>[] | undefined;
@@ -27079,10 +28315,10 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
27079
28315
  MozBackgroundClip?: readonly string[] | csstype.Property.BackgroundClip | readonly csstype.Property.BackgroundClip[] | undefined;
27080
28316
  MozBackgroundOrigin?: readonly string[] | csstype.Property.BackgroundOrigin | readonly csstype.Property.BackgroundOrigin[] | undefined;
27081
28317
  MozBackgroundSize?: readonly (string | (string & {}))[] | csstype.Property.BackgroundSize<string | number> | readonly NonNullable<csstype.Property.BackgroundSize<string | number> | undefined>[] | undefined;
27082
- MozBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
28318
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined;
27083
28319
  MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
27084
28320
  MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | csstype.Property.BorderBottomRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
27085
- MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
28321
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopLeftRadius<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
27086
28322
  MozBorderRadiusTopright?: readonly (string | (string & {}))[] | csstype.Property.BorderTopRightRadius<string | number> | readonly NonNullable<csstype.Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
27087
28323
  MozBoxAlign?: csstype.Property.BoxAlign | readonly NonNullable<csstype.Property.BoxAlign | undefined>[] | readonly csstype.Property.BoxAlign[] | undefined;
27088
28324
  MozBoxDirection?: csstype.Property.BoxDirection | readonly NonNullable<csstype.Property.BoxDirection | undefined>[] | readonly csstype.Property.BoxDirection[] | undefined;
@@ -27091,7 +28327,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
27091
28327
  MozBoxOrient?: csstype.Property.BoxOrient | readonly NonNullable<csstype.Property.BoxOrient | undefined>[] | readonly csstype.Property.BoxOrient[] | undefined;
27092
28328
  MozBoxPack?: csstype.Property.BoxPack | readonly NonNullable<csstype.Property.BoxPack | undefined>[] | readonly csstype.Property.BoxPack[] | undefined;
27093
28329
  MozBoxShadow?: readonly string[] | csstype.Property.BoxShadow | readonly csstype.Property.BoxShadow[] | undefined;
27094
- MozColumnCount?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
28330
+ MozColumnCount?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.ColumnCount | readonly NonNullable<csstype.Property.ColumnCount | undefined>[] | undefined;
27095
28331
  MozColumnFill?: csstype.Property.ColumnFill | readonly NonNullable<csstype.Property.ColumnFill | undefined>[] | readonly csstype.Property.ColumnFill[] | undefined;
27096
28332
  MozFloatEdge?: csstype.Property.MozFloatEdge | readonly NonNullable<csstype.Property.MozFloatEdge | undefined>[] | readonly csstype.Property.MozFloatEdge[] | undefined;
27097
28333
  MozForceBrokenImageIcon?: readonly ((string & {}) | csstype.Globals)[] | csstype.Property.MozForceBrokenImageIcon | readonly NonNullable<csstype.Property.MozForceBrokenImageIcon | undefined>[] | undefined;
@@ -27111,7 +28347,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
27111
28347
  MozUserFocus?: csstype.Property.MozUserFocus | readonly NonNullable<csstype.Property.MozUserFocus | undefined>[] | readonly csstype.Property.MozUserFocus[] | undefined;
27112
28348
  MozUserInput?: csstype.Property.MozUserInput | readonly NonNullable<csstype.Property.MozUserInput | undefined>[] | readonly csstype.Property.MozUserInput[] | undefined;
27113
28349
  msImeMode?: csstype.Property.ImeMode | readonly NonNullable<csstype.Property.ImeMode | undefined>[] | readonly csstype.Property.ImeMode[] | undefined;
27114
- OAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("none" | (string & {}) | "auto" | "both" | csstype.Globals | "reverse" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused")[] | undefined;
28350
+ OAnimation?: csstype.Property.Animation<string & {}> | readonly NonNullable<csstype.Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | csstype.Globals | "auto" | "running" | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "infinite" | "paused")[] | undefined;
27115
28351
  OAnimationDelay?: readonly string[] | csstype.Property.AnimationDelay<string & {}> | readonly csstype.Property.AnimationDelay<string & {}>[] | undefined;
27116
28352
  OAnimationDirection?: readonly string[] | csstype.Property.AnimationDirection | readonly csstype.Property.AnimationDirection[] | undefined;
27117
28353
  OAnimationDuration?: readonly string[] | csstype.Property.AnimationDuration<string & {}> | readonly csstype.Property.AnimationDuration<string & {}>[] | undefined;
@@ -27121,7 +28357,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
27121
28357
  OAnimationPlayState?: readonly string[] | csstype.Property.AnimationPlayState | readonly csstype.Property.AnimationPlayState[] | undefined;
27122
28358
  OAnimationTimingFunction?: readonly string[] | csstype.Property.AnimationTimingFunction | readonly csstype.Property.AnimationTimingFunction[] | undefined;
27123
28359
  OBackgroundSize?: readonly (string | (string & {}))[] | csstype.Property.BackgroundSize<string | number> | readonly NonNullable<csstype.Property.BackgroundSize<string | number> | undefined>[] | undefined;
27124
- OBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
28360
+ OBorderImage?: csstype.Property.BorderImage | readonly NonNullable<csstype.Property.BorderImage | undefined>[] | readonly ("none" | "repeat" | (string & {}) | csstype.Globals | "stretch" | "round" | "space")[] | undefined;
27125
28361
  OObjectFit?: csstype.Property.ObjectFit | readonly NonNullable<csstype.Property.ObjectFit | undefined>[] | readonly csstype.Property.ObjectFit[] | undefined;
27126
28362
  OObjectPosition?: readonly (string | (string & {}))[] | csstype.Property.ObjectPosition<string | number> | readonly NonNullable<csstype.Property.ObjectPosition<string | number> | undefined>[] | undefined;
27127
28363
  OTabSize?: readonly (string | (string & {}))[] | csstype.Property.TabSize<string | number> | readonly NonNullable<csstype.Property.TabSize<string | number> | undefined>[] | undefined;
@@ -27143,7 +28379,7 @@ declare const getWfoReactSelectStyles: (wfoTheme: WfoThemeHelpers) => {
27143
28379
  WebkitBoxPack?: csstype.Property.BoxPack | readonly NonNullable<csstype.Property.BoxPack | undefined>[] | readonly csstype.Property.BoxPack[] | undefined;
27144
28380
  colorInterpolation?: csstype.Property.ColorInterpolation | readonly NonNullable<csstype.Property.ColorInterpolation | undefined>[] | readonly csstype.Property.ColorInterpolation[] | undefined;
27145
28381
  colorRendering?: csstype.Property.ColorRendering | readonly NonNullable<csstype.Property.ColorRendering | undefined>[] | readonly csstype.Property.ColorRendering[] | undefined;
27146
- glyphOrientationVertical?: readonly ((string & {}) | "auto" | csstype.Globals)[] | csstype.Property.GlyphOrientationVertical | readonly NonNullable<csstype.Property.GlyphOrientationVertical | undefined>[] | undefined;
28382
+ glyphOrientationVertical?: readonly ((string & {}) | csstype.Globals | "auto")[] | csstype.Property.GlyphOrientationVertical | readonly NonNullable<csstype.Property.GlyphOrientationVertical | undefined>[] | undefined;
27147
28383
  ":-moz-any()"?: _emotion_react.CSSObject | undefined;
27148
28384
  ":-moz-dir"?: _emotion_react.CSSObject | undefined;
27149
28385
  ":-webkit-any()"?: _emotion_react.CSSObject | undefined;
@@ -27390,9 +28626,9 @@ interface WfoPathBreadcrumbProps {
27390
28626
  declare const WfoPathBreadcrumb: FC<WfoPathBreadcrumbProps>;
27391
28627
 
27392
28628
  interface FilterGroupProps {
27393
- group: Group;
28629
+ group: Filter;
27394
28630
  entityType: EntityKind;
27395
- onChange: (group: Group) => void;
28631
+ onChange: (group: Filter) => void;
27396
28632
  onRemove?: () => void;
27397
28633
  depth?: number;
27398
28634
  isRoot?: boolean;
@@ -27458,11 +28694,11 @@ interface PathSelectorProps {
27458
28694
  }
27459
28695
  interface SelectedPathDisplayProps {
27460
28696
  condition: Condition;
27461
- selectedPathInfo: PathInfo$1 | null;
28697
+ selectedPathInfo: PathInfo | null;
27462
28698
  onEdit: () => void;
27463
28699
  }
27464
28700
  interface OperatorSelectorProps {
27465
- selectedPathInfo: PathInfo$1 | null;
28701
+ selectedPathInfo: PathInfo | null;
27466
28702
  condition: Condition;
27467
28703
  onOperatorChange: (op: string) => void;
27468
28704
  }
@@ -27473,7 +28709,7 @@ interface PathOptionRenderProps {
27473
28709
  };
27474
28710
  searchValue: string;
27475
28711
  contentClassName?: string;
27476
- paths: PathInfo$1[];
28712
+ paths: PathInfo[];
27477
28713
  }
27478
28714
  interface PathSelectionOptionRenderProps {
27479
28715
  option: {
@@ -27497,24 +28733,24 @@ declare const WfoOperatorSelector: FC<OperatorSelectorProps>;
27497
28733
  declare const WfoRenderPathOption: FC<PathOptionRenderProps>;
27498
28734
  declare const WfoRenderPathSelectionOption: FC<PathSelectionOptionRenderProps>;
27499
28735
 
27500
- declare const createOptionsFromPaths: (paths: PathInfo$1[], group: string) => {
28736
+ declare const createOptionsFromPaths: (paths: PathInfo[], group: string) => {
27501
28737
  label: string;
27502
28738
  value: string;
27503
28739
  'data-type': PathDataType;
27504
28740
  'data-operators': string;
27505
28741
  }[];
27506
- declare const shouldHideValueInput: (selectedPathInfo: PathInfo$1 | null, operatorSelected: boolean) => boolean;
27507
- declare const isFullPathSelected: (path: string, selectedPathInfo: PathInfo$1 | null) => boolean;
28742
+ declare const shouldHideValueInput: (selectedPathInfo: PathInfo | null, operatorSelected: boolean) => boolean;
28743
+ declare const isFullPathSelected: (path: string, selectedPathInfo: PathInfo | null) => boolean;
27508
28744
  declare const getFieldNameFromPath: (path: string, isComponent: boolean) => string;
27509
28745
  declare const getFieldNameFromFullPath: (fullPath: string) => string;
27510
- declare const getPathSelectionOptions: (selectedFieldName: string, paths: PathInfo$1[]) => {
28746
+ declare const getPathSelectionOptions: (selectedFieldName: string, paths: PathInfo[]) => {
27511
28747
  label: string;
27512
28748
  value: string;
27513
28749
  fullPath: string;
27514
28750
  }[];
27515
28751
 
27516
28752
  interface ValueControlProps {
27517
- pathInfo: PathInfo$1 | null;
28753
+ pathInfo: PathInfo | null;
27518
28754
  operator: string;
27519
28755
  value: unknown;
27520
28756
  onChange: (value: unknown) => void;
@@ -27525,22 +28761,13 @@ declare function isSubscriptionSearchResult(item: SearchResult): boolean;
27525
28761
  declare function isProcessSearchResult(item: SearchResult): boolean;
27526
28762
  declare function isProductSearchResult(item: SearchResult): boolean;
27527
28763
  declare function isWorkflowSearchResult(item: SearchResult): boolean;
27528
- declare const isCondition: (item: Group | Condition) => item is Condition;
28764
+ declare const isCondition: (item: Filter | Condition) => item is Condition;
27529
28765
  declare const getEndpointPath: (entityType: EntityKind) => string;
27530
28766
  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";
28767
+ declare const ENTITY_TABS: {
28768
+ id: EntityKind;
27542
28769
  label: string;
27543
- })[];
28770
+ }[];
27544
28771
  interface ThemeColors {
27545
28772
  success: string;
27546
28773
  primary: string;
@@ -27552,29 +28779,28 @@ interface Theme {
27552
28779
  colors: ThemeColors;
27553
28780
  }
27554
28781
  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
28782
  declare const getOperatorDisplay: (op: string, selectedPathInfo?: PathInfo) => OperatorDisplay;
27564
28783
  declare const getButtonColor: (op: string, pathInfo: PathInfo | null, condition: Condition) => "primary" | "text";
27565
28784
  declare const getButtonFill: (op: string, pathInfo: PathInfo | null, condition: Condition) => boolean;
27566
- declare const isFilterValid: (group: Group) => boolean;
28785
+ declare const isFilterValid: (group: Filter) => boolean;
27567
28786
  interface SearchQuery {
27568
28787
  text?: string;
27569
28788
  }
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
- };
28789
+ declare const buildSearchParams: (debouncedQuery: SearchQuery | string, selectedEntityTab: EntityKind, filterGroup: Filter, pageSize: number, cursor: number, retriever?: Exclude<RetrieverType, "auto">) => SearchPaginationPayload;
28790
+ declare const combineSearchFilters: (ruleGroup: RuleGroupType | false | undefined, tab: WfoSubscriptionListTab) => Filter;
28791
+
28792
+ interface WfoWorkflowUserGuideProps {
28793
+ workflowName: string;
28794
+ isExpanded: boolean;
28795
+ onToggle: () => void;
28796
+ }
28797
+ declare const WfoWorkflowGuideExpandablePanel: ({ workflowName, isExpanded, onToggle }: WfoWorkflowUserGuideProps) => _emotion_react_jsx_runtime.JSX.Element;
28798
+
28799
+ interface WfoFormWithUserGuideProps {
28800
+ workflowName?: string;
28801
+ children: ReactNode;
28802
+ }
28803
+ declare const WfoPageWithUserGuide: ({ workflowName, children }: WfoFormWithUserGuideProps) => _emotion_react_jsx_runtime.JSX.Element;
27578
28804
 
27579
28805
  type WfoMonacoCodeBlockProps = {
27580
28806
  data: object;
@@ -27634,7 +28860,7 @@ declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
27634
28860
  declare const METADATA_SCHEDULES_ENDPOINT = "schedules";
27635
28861
  declare const SEARCH_QUERY_RESULTS_ENDPOINT = "search/queries";
27636
28862
 
27637
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.4.5";
28863
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "8.6.0";
27638
28864
 
27639
28865
  declare const useGetTranslationMessages: (locale: string | undefined) => {
27640
28866
  pydanticForms: {
@@ -27650,6 +28876,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27650
28876
  resumeTask: string;
27651
28877
  resumeWorkflow: string;
27652
28878
  inputFieldsHaveValidationErrors: string;
28879
+ preconditionFailedTitle: string;
28880
+ preconditionFailedFallback: string;
27653
28881
  };
27654
28882
  widgets: {
27655
28883
  customer: {
@@ -27723,6 +28951,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27723
28951
  resumeTask: string;
27724
28952
  resumeWorkflow: string;
27725
28953
  inputFieldsHaveValidationErrors: string;
28954
+ preconditionFailedTitle: string;
28955
+ preconditionFailedFallback: string;
27726
28956
  };
27727
28957
  widgets: {
27728
28958
  customer: {
@@ -27821,6 +29051,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27821
29051
  deselect: string;
27822
29052
  close: string;
27823
29053
  editColumns: string;
29054
+ tableSettings: string;
27824
29055
  loading: string;
27825
29056
  newSubscription: string;
27826
29057
  newTask: string;
@@ -27835,7 +29066,16 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27835
29066
  insyncFalse: string;
27836
29067
  searchModalTitle: string;
27837
29068
  searchModalText: string;
27838
- showAllColumnsInDetailView: string;
29069
+ retrieval: string;
29070
+ retrieverAuto: string;
29071
+ retrieverFuzzy: string;
29072
+ retrieverSemantic: string;
29073
+ retrieverHybrid: string;
29074
+ createFilter: string;
29075
+ applyFilter: string;
29076
+ removeFilter: string;
29077
+ cancel: string;
29078
+ loadMore: string;
27839
29079
  };
27840
29080
  confirmationDialog: {
27841
29081
  title: string;
@@ -27946,6 +29186,12 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
27946
29186
  createScheduleButton: string;
27947
29187
  };
27948
29188
  };
29189
+ workflowGuide: {
29190
+ title: string;
29191
+ noGuideAvailable: string;
29192
+ show: string;
29193
+ hide: string;
29194
+ };
27949
29195
  processes: {
27950
29196
  index: {
27951
29197
  workflowName: string;
@@ -28225,6 +29471,68 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28225
29471
  logout: string;
28226
29472
  aoStatusPage: string;
28227
29473
  };
29474
+ agent: {
29475
+ title: string;
29476
+ availability: {
29477
+ unavailable: {
29478
+ title: string;
29479
+ instructions: {
29480
+ setAgentEnvironment: {
29481
+ before: string;
29482
+ after: string;
29483
+ };
29484
+ setSearchEnvironment: {
29485
+ before: string;
29486
+ after: string;
29487
+ };
29488
+ checkVersion: string;
29489
+ configureOpenAI: string;
29490
+ restartService: string;
29491
+ checkDockerConfig: string;
29492
+ };
29493
+ documentation: string;
29494
+ retryButton: string;
29495
+ };
29496
+ };
29497
+ page: {
29498
+ filledParameters: string;
29499
+ emptyGroup: string;
29500
+ searchQuery: string;
29501
+ activeFilters: string;
29502
+ noFiltersApplied: string;
29503
+ entityType: string;
29504
+ action: string;
29505
+ copilot: {
29506
+ title: string;
29507
+ initial: string;
29508
+ };
29509
+ suggestions: {
29510
+ findActiveSubscriptions: string;
29511
+ showTerminatedWorkflows: string;
29512
+ listAllSubscriptionsAndExport: string;
29513
+ showActiveSubscriptionsPerMonth: string;
29514
+ };
29515
+ tools: {
29516
+ set_filter_tree: string;
29517
+ start_new_search: string;
29518
+ run_search: string;
29519
+ discover_filter_paths: string;
29520
+ run_aggregation: string;
29521
+ prepare_export: string;
29522
+ get_valid_operators: string;
29523
+ set_temporal_grouping: string;
29524
+ };
29525
+ planProgress: {
29526
+ planning: string;
29527
+ completed: string;
29528
+ executing: string;
29529
+ };
29530
+ visualization: {
29531
+ noDataAvailable: string;
29532
+ invalidDataStructure: string;
29533
+ };
29534
+ };
29535
+ };
28228
29536
  search: {
28229
29537
  availability: {
28230
29538
  unavailable: {
@@ -28246,7 +29554,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28246
29554
  selectFieldFirst: string;
28247
29555
  maxNestingDepth: string;
28248
29556
  addNestedGroup: string;
28249
- addCondition: string;
29557
+ addRule: string;
28250
29558
  addGroup: string;
28251
29559
  removeGroup: string;
28252
29560
  emptyGroupDescription: string;
@@ -28294,6 +29602,13 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28294
29602
  fieldsGroupLabel: string;
28295
29603
  componentsGroupLabel: string;
28296
29604
  pathsCount: string;
29605
+ id: string;
29606
+ type: string;
29607
+ title: string;
29608
+ score: string;
29609
+ matchingField: string;
29610
+ perfectMatch: string;
29611
+ removeRule: string;
28297
29612
  };
28298
29613
  tabs: {
28299
29614
  subscriptions: string;
@@ -28316,6 +29631,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28316
29631
  resumeTask: string;
28317
29632
  resumeWorkflow: string;
28318
29633
  inputFieldsHaveValidationErrors: string;
29634
+ preconditionFailedTitle: string;
29635
+ preconditionFailedFallback: string;
28319
29636
  };
28320
29637
  widgets: {
28321
29638
  customer: {
@@ -28389,6 +29706,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28389
29706
  resumeTask: string;
28390
29707
  resumeWorkflow: string;
28391
29708
  inputFieldsHaveValidationErrors: string;
29709
+ preconditionFailedTitle: string;
29710
+ preconditionFailedFallback: string;
28392
29711
  };
28393
29712
  widgets: {
28394
29713
  customer: {
@@ -28487,6 +29806,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28487
29806
  deselect: string;
28488
29807
  close: string;
28489
29808
  editColumns: string;
29809
+ tableSettings: string;
28490
29810
  loading: string;
28491
29811
  newSubscription: string;
28492
29812
  newTask: string;
@@ -28502,6 +29822,16 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28502
29822
  showAllColumnsInDetailView: string;
28503
29823
  searchModalTitle: string;
28504
29824
  searchModalText: string;
29825
+ retrieval: string;
29826
+ retrieverAuto: string;
29827
+ retrieverFuzzy: string;
29828
+ retrieverSemantic: string;
29829
+ retrieverHybrid: string;
29830
+ createFilter: string;
29831
+ applyFilter: string;
29832
+ removeFilter: string;
29833
+ cancel: string;
29834
+ loadMore: string;
28505
29835
  };
28506
29836
  confirmationDialog: {
28507
29837
  title: string;
@@ -28611,6 +29941,12 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
28611
29941
  createScheduleButton: string;
28612
29942
  };
28613
29943
  };
29944
+ workflowGuide: {
29945
+ title: string;
29946
+ noGuideAvailable: string;
29947
+ show: string;
29948
+ hide: string;
29949
+ };
28614
29950
  processes: {
28615
29951
  index: {
28616
29952
  workflowName: string;
@@ -29018,6 +30354,8 @@ declare const defaultWorkflowsListTabs: WfoFilterTab<WfoWorkflowsListTabType, Pr
29018
30354
 
29019
30355
  declare const getWorkflowsListTabTypeFromString: (tabId?: string) => WfoWorkflowsListTabType | undefined;
29020
30356
 
30357
+ declare const WfoSearchPocPage: () => _emotion_react_jsx_runtime.JSX.Element;
30358
+
29021
30359
  declare function initiateCsvFileDownload<T extends object>(data: T[], keyOrder: string[], fileName: string): void;
29022
30360
  declare const getCsvFileNameWithDate: (fileNameWithoutExtension: string) => string;
29023
30361
  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 +30439,4 @@ declare enum WfoQueryParams {
29101
30439
  }
29102
30440
  declare const getUrlWithQueryParams: (url: string, params: Partial<Record<WfoQueryParams, string>>) => string;
29103
30441
 
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 };
30442
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type AnySearchParameters, type ApiResult, type AppDispatch, type BackendFeatureStatus, BadgeType, type BaseGraphQlResult, BaseQueryTypes, CACHETAG_TYPE_LIST, CALLOUT_COLORS, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, CONTROL_CELL_CLASS, CUSTOMER_DESCRIPTION_ENDPOINT, type CacheNames, type CacheOption, type CacheTag, CacheTagType, type CalloutColor, ColorModes, ColumnType, type Condition, ConditionRow, type ConditionRowProps, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContentContext, ContentContextProvider, type ContentContextProviderProps, type ContentType, type CronKwargs, type CustomApiConfig, type Customer, type CustomerDescriptions, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DATA_CELL_CLASS, DATA_ROW_CLASS, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, type DateBetweenFilter, type DateEqFilter, type DateGtFilter, type DateGteFilter, type DateIsNotNullFilter, type DateIsNullFilter, type DateKwargs, type DateLtFilter, type DateLteFilter, type DateNeqFilter, type DateRange, ENTITY_TABS, type EmailAddress, type EmailState, EngineStatus, EntityKind, Environment, type EnvironmentVariable, type EnvironmentVariables, type ExportArtifact, type ExternalService, type FetchFilter, type FieldSelectorProps, type FieldToOperatorMap, type FieldValue, type FileUploadPayload, type Filter, FilterGroup, type FilterQuery, type FixedInputDefinition, Footer, type Form, type FormNotCompleteResponse, type FormUserPermissions, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, Header, type HeaderBadgeProps, HttpStatus, INVISIBLE_CHARACTER, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type InterValKwargs, Intervals, KEY_CELL_CLASS_NAME, type LocalColumnWidths, Locale, type LtreeAncestorFilter, type LtreeDescendantFilter, type LtreeMatchesFilter, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_BLOCK_ENDPOINT, METADATA_PRODUCT_ENDPOINT, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPE_ENDPOINT, METADATA_SCHEDULES_ENDPOINT, METADATA_SCHEDULES_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_ENDPOINT, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MappedVersion, type MatchingField, type MetaDataTab, type MetadataDescriptionParams, type MetadataStatusParams, MinusButton, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, type Nullable, ORCHESTRATOR_UI_LIBRARY_VERSION, type OperatorDisplay, type OperatorSelectorProps, type Option, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_ADD_SCHEDULE_TASK_FORM, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_SCHEDULED_TASKS, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_SUBSCRIPTIONS_BETA, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type PaginatedSearchResults, type Pagination, type PathAutocompleteResponse, type PathDataType, type PathFilter, type PathInfo, type PathLeaf, type PathOptionRenderProps, type PathSelectionOptionRenderProps, type PathSelectorProps, PlusButton, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, type ProcessPatchParams, type ProcessSearchParameters, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlockInstanceForDropdown, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, type ProductSearchParameters, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, type QueryArtifact, type QueryResultsData, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type ResultColumToPropertyMap, type ResultRow, RetrieverType, type RootState, Row, SEARCH_QUERY_RESULTS_ENDPOINT, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_OVERVIEW, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, SUBSCRIPTION_DROPDOWN_OPTIONS_ENDPOINT, ScheduleFrequency, type ScheduledTaskDefinition, type ScheduledTaskPostPayload, type ScheduledTasksDefinitionsResult, type ScheduledTasksResponse, type SearchDefinitionsResponse, type SearchMetadata, type SearchPaginationPayload, type SearchParams, type SearchPayload, type SearchResult, type SelectedPathDisplayProps, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type StartWorkflowPayload, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, type StrEqFilter, type StrNeFilter, type StringifyObject, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, type SubscriptionRelation, type SubscriptionSearchParameters, SubscriptionStatus, type SubscriptionSummary, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, type SummaryFormLabel, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListExportItem, type TaskListItem, TaskType, type TasksResponse, type TimelineItem, TimelinePosition, type Toast, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UseGetSchedulesForWorkflowReturnProps, type UseGetWorkflowNameByIdReturnProps, type UseQuery, type UserInputForm, VALUE_CELL_CLASS_NAME, type ValidationError, type ValidationErrorContext, ValueControl, type ValueOverrideConfiguration, type ValueOverrideFunction, VisualizationType, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActionSettings, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrayField, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoAutoExpandableTextArea, WfoAvailabilityCheck, WfoBackendUnavailable, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBracketSquare, WfoBracketSquareSvg, WfoBreadcrumbs, WfoButtonWithConfirm, WfoCallout, WfoChartBar, WfoCheckbox, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoCommandLine, WfoCommandLineSvg, type WfoComputedModifications, type WfoComputedTheme, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeFill, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDivider, WfoDropdown, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvSettings, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExclamationTriangle, WfoExpandableField, type WfoExpandableFieldProps, WfoExpandingSearchRow, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, WfoFieldSelector, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, WfoHighlightedText, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineEdit, WfoInlineJson, type WfoInlineJsonProps, WfoInsyncIcon, WfoInteger, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLabel, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoSpinner, WfoLogoutIcon, WfoMalfunction, WfoMarkdownField, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMonacoCodeBlock, type WfoMonacoCodeBlockProps, WfoMultiCheckboxField, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoObjectField, WfoOperatorSelector, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPageWithUserGuide, WfoPathBreadcrumb, WfoPathSelector, WfoPencil, WfoPencilAlt, WfoPencilCompact, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPopover, WfoPort, WfoProcessDetail, WfoProcessDetailPage, WfoProcessListNoteEdit, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoPydanticForm, WfoQueryParams, WfoRadio, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoReactSelect, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoRenderPathOption, WfoRenderPathSelectionOption, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoScheduleTaskFormPage, WfoScheduledTaskOnce, WfoScheduledTaskRecurring, WfoScheduledTaskRecurringSvg, WfoScheduledTasksBadges, WfoScheduledTasksBadgesContainer, WfoScheduledTasksPage, WfoSearch, WfoSearchEmptyState, WfoSearchField, type WfoSearchFieldProps, WfoSearchLoadingState, WfoSearchMetadataHeader, WfoSearchPaginationInfo, WfoSearchPocPage, WfoSearchResultItem, WfoSearchResults, WfoSearchStrikethrough, WfoSelectedPathDisplay, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSettingsTab, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoSquareStack3dStack, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoStructuredSearchTable, type WfoStructuredSearchTableColumnConfig, type WfoStructuredSearchTableDataColumnConfig, type WfoStructuredSearchTableDataColumnConfigItem, type WfoStructuredSearchTableProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailNoteEdit, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionNoteEdit, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummary, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCells, WfoTableCellsSvg, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableDataRows, type WfoTableDataRowsProps, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoText, WfoTextAnchor, WfoTextArea, type WfoThemeHelpers, WfoTimeline, type WfoTimelineProps, WfoTimestampField, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, WfoTrashFilled, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowGuideExpandablePanel, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowGuideResponse, type WorkflowListItem, type WorkflowSearchParameters, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, buildSearchParams, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, combineSearchFilters, createOptionsFromPaths, createSideNavDivider, csvDownloadHandler, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenSubscriptionActionProps as flattenArrayProps, flattenSubscriptionActionProps, formatDate, formatDateCetWithUtc, getButtonColor, getButtonFill, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDataTestId, getDate, getDefaultTableConfig, getDetailUrl, getEndpointPath, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFieldNameFromFullPath, getFieldNameFromPath, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNestedSummaryLabel, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOperatorDisplay, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageCount, getPageIndexChangeHandler, getPageInfoForSyncExport, getPageSizeChangeHandler, getPathSelectionOptions, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryUrl, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDiffTexts, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypeColor, getTypedFieldFromObject, getUrlWithQueryParams, getWebSocket, getWfoArrayFieldStyles, getWfoGroupedTableStyles, getWfoObjectFieldStyles, getWfoReactSelectStyles, getWfoTableStyles, getWorkflowStepsStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, hasSpecialCharacterOrSpace, initiateCsvFileDownload, isAllUpperCase, isCondition, isFetchBaseQueryError, isFilterValid, isFullPathSelected, isNullOrEmpty, isProcessSearchResult, isProductSearchResult, isRecord, isSubscriptionSearchResult, isToday, isUuid4, isValidLocalStorageTableConfig, isWorkflowSearchResult, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapProductBlockInstancesToEuiSelectableOptions, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseErrorDetail, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, scheduledTasks, selectOrchestratorConfig, setTableConfigToLocalStorage, settingsTabs, shadeOrchestratorColor, shouldHideValueInput, snakeToHuman, snakeToKebab, sortProcessesByDate, stringifyDiffText, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, tasksQuery, tintOrchestratorColor, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntries, toOptionalArrayEntry, toOptionalObjectProperty, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useCheckSearchAvailabilityQuery, useClearCacheMutation, useContentRef, useCreateScheduledTaskMutation, useDataDisplayParams, useDeleteProcessMutation, useDeleteScheduledTaskMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetEnvironmentVariablesQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetPydanticFormsConfig, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetScheduledTasksQuery, useGetSchedulesForWorkflow, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowGuideQuery, useGetWorkflowNameById, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetScheduledTasksQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionDetailQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazySearchQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePatchProcessMutation, usePathAutocomplete, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSearchAvailability, useSearchDefinitionsQuery, useSearchPathsQuery, useSearchQuery, useSearchWithPaginationMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useUpdateProductBlockMutation, useUpdateProductDescriptionMutation, useUpdateProductStatusMutation, useUpdateResourceTypeMutation, useUpdateWorkflowMutation, useUploadFileMutation, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, type value_schema, wfoGraphqlRequestBaseQuery, wfoThemeModifications, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };