propro-common-components 0.1.268 → 0.1.270

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,12 @@ 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 = object | undefined, TError = AxiosError<unknown, any>, TVariables = object | undefined, TContext = unknown>({ url, method, headers, data, invalidateAllQueries, successLog, errorLog, logURL, toastMessage, onSuccess, onError, }: {
5
+ declare global {
6
+ interface Window {
7
+ __TAURI_IPC__?: unknown;
8
+ }
9
+ }
10
+ declare const useMutate: <TData = unknown, TError = AxiosError<unknown, any>, TVariables = unknown, TContext = unknown>({ url, method, headers, data, invalidateAllQueries, successLog, errorLog, logURL, toastMessage, onSuccess, onError, }: {
6
11
  url: string | ((variables: TVariables) => string);
7
12
  method: 'POST' | 'PUT' | 'DELETE' | 'PATCH';
8
13
  headers?: AxiosRequestConfig['headers'];
@@ -1,5 +1,5 @@
1
- declare const useUpdateAvatar: () => import('@tanstack/react-query').UseMutationResult<object | undefined, import('axios').AxiosError<unknown, any>, object | undefined, unknown>;
2
- declare const useUpdateProfile: () => import('@tanstack/react-query').UseMutationResult<object | undefined, import('axios').AxiosError<unknown, any>, object | undefined, unknown>;
3
- declare const useChangePassword: () => import('@tanstack/react-query').UseMutationResult<object | undefined, import('axios').AxiosError<unknown, any>, object | undefined, unknown>;
4
- declare const useUserLogout: () => import('@tanstack/react-query').UseMutationResult<object | undefined, import('axios').AxiosError<unknown, any>, object | undefined, unknown>;
1
+ declare const useUpdateAvatar: () => import('@tanstack/react-query').UseMutationResult<unknown, import('axios').AxiosError<unknown, any>, unknown, unknown>;
2
+ declare const useUpdateProfile: () => import('@tanstack/react-query').UseMutationResult<unknown, import('axios').AxiosError<unknown, any>, unknown, unknown>;
3
+ declare const useChangePassword: () => import('@tanstack/react-query').UseMutationResult<unknown, import('axios').AxiosError<unknown, any>, unknown, unknown>;
4
+ declare const useUserLogout: () => import('@tanstack/react-query').UseMutationResult<unknown, import('axios').AxiosError<unknown, any>, unknown, unknown>;
5
5
  export { useUpdateAvatar, useUpdateProfile, useUserLogout, useChangePassword };