Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename TypedUseMutationTrigger to TypedMutationTrigger, and add deprecated alias #4204

Merged
merged 3 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/toolkit/src/query/react/buildHooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ export type MutationTrigger<D extends MutationDefinition<any, any, any, any>> =
(arg: QueryArgFrom<D>): MutationActionCreatorResult<D>
}

export type TypedUseMutationTrigger<
export type TypedMutationTrigger<
ResultType,
QueryArg,
BaseQuery extends BaseQueryFn,
Expand Down
2 changes: 1 addition & 1 deletion packages/toolkit/src/query/react/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type {
TypedLazyQueryTrigger,
TypedUseLazyQuery,
TypedUseMutation,
TypedUseMutationTrigger,
TypedMutationTrigger,
TypedUseQueryState,
TypedUseQuery,
TypedUseQuerySubscription,
Expand Down
4 changes: 2 additions & 2 deletions packages/toolkit/src/query/tests/unionTypes.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type {
TypedUseLazyQuery,
TypedUseLazyQuerySubscription,
TypedUseMutation,
TypedUseMutationTrigger,
TypedMutationTrigger,
TypedUseQuerySubscription,
TypedUseQuery,
} from '@reduxjs/toolkit/query/react'
Expand Down Expand Up @@ -838,7 +838,7 @@ describe('"Typed" helper types', () => {
const [trigger, result] = api.endpoints.mutation.useMutation()

expectTypeOf<
TypedUseMutationTrigger<string, void, typeof baseQuery>
TypedMutationTrigger<string, void, typeof baseQuery>
>().toMatchTypeOf(trigger)

expectTypeOf<
Expand Down