propro-common-components 0.1.265 → 0.1.267

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ import { QueryKey, UseMutationOptions, UseMutationResult } from '@tanstack/react
2
2
  import { AxiosError, AxiosRequestConfig } from 'axios';
3
3
  import { ToastOptions } from 'react-toastify';
4
4
 
5
- declare const useMutate: <TData = unknown, TError = AxiosError<unknown, any>, TVariables = unknown, TContext = unknown>({ url, method, headers, data, invalidateAllQueries, successLog, errorLog, logURL, toastMessage, onSuccess, onError, }: {
5
+ declare const useMutate: <TData = object, TError = AxiosError<unknown, any>, TVariables = object, TContext = unknown>({ url, method, headers, data, invalidateAllQueries, successLog, errorLog, logURL, toastMessage, onSuccess, onError, }: {
6
6
  url: string | ((variables: TVariables) => string);
7
7
  method: 'POST' | 'PUT' | 'DELETE' | 'PATCH';
8
8
  headers?: AxiosRequestConfig['headers'];