| 1 | import { buildCreateApi } from '../createApi'
|
|---|
| 2 | import { coreModule } from './module'
|
|---|
| 3 |
|
|---|
| 4 | export const createApi = /* @__PURE__ */ buildCreateApi(coreModule())
|
|---|
| 5 |
|
|---|
| 6 | export { QueryStatus } from './apiState'
|
|---|
| 7 | export type {
|
|---|
| 8 | CombinedState,
|
|---|
| 9 | InfiniteData,
|
|---|
| 10 | InfiniteQueryConfigOptions,
|
|---|
| 11 | InfiniteQuerySubState,
|
|---|
| 12 | MutationKeys,
|
|---|
| 13 | QueryCacheKey,
|
|---|
| 14 | QueryKeys,
|
|---|
| 15 | QuerySubState,
|
|---|
| 16 | RootState,
|
|---|
| 17 | SubscriptionOptions,
|
|---|
| 18 | } from './apiState'
|
|---|
| 19 | export type {
|
|---|
| 20 | InfiniteQueryActionCreatorResult,
|
|---|
| 21 | MutationActionCreatorResult,
|
|---|
| 22 | QueryActionCreatorResult,
|
|---|
| 23 | StartQueryActionCreatorOptions,
|
|---|
| 24 | } from './buildInitiate'
|
|---|
| 25 | export type {
|
|---|
| 26 | MutationCacheLifecycleApi,
|
|---|
| 27 | MutationLifecycleApi,
|
|---|
| 28 | QueryCacheLifecycleApi,
|
|---|
| 29 | QueryLifecycleApi,
|
|---|
| 30 | SubscriptionSelectors,
|
|---|
| 31 | TypedMutationOnQueryStarted,
|
|---|
| 32 | TypedQueryOnQueryStarted,
|
|---|
| 33 | } from './buildMiddleware/index'
|
|---|
| 34 | export { skipToken } from './buildSelectors'
|
|---|
| 35 | export type {
|
|---|
| 36 | InfiniteQueryResultSelectorResult,
|
|---|
| 37 | MutationResultSelectorResult,
|
|---|
| 38 | QueryResultSelectorResult,
|
|---|
| 39 | SkipToken,
|
|---|
| 40 | } from './buildSelectors'
|
|---|
| 41 | export type { SliceActions } from './buildSlice'
|
|---|
| 42 | export type {
|
|---|
| 43 | PatchQueryDataThunk,
|
|---|
| 44 | UpdateQueryDataThunk,
|
|---|
| 45 | UpsertQueryDataThunk,
|
|---|
| 46 | } from './buildThunks'
|
|---|
| 47 | export { coreModuleName } from './module'
|
|---|
| 48 | export type {
|
|---|
| 49 | ApiEndpointInfiniteQuery,
|
|---|
| 50 | ApiEndpointMutation,
|
|---|
| 51 | ApiEndpointQuery,
|
|---|
| 52 | CoreModule,
|
|---|
| 53 | InternalActions,
|
|---|
| 54 | PrefetchOptions,
|
|---|
| 55 | ThunkWithReturnValue,
|
|---|
| 56 | } from './module'
|
|---|
| 57 | export { setupListeners } from './setupListeners'
|
|---|
| 58 | export { buildCreateApi, coreModule }
|
|---|