@evercam/api 1.0.0-d52e7306c → 1.0.0-dd226b334

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.
@@ -1,4 +1,4 @@
1
- import { AxiosDefaults, type AxiosError, type AxiosRequestConfig, type AxiosResponse } from "axios";
1
+ import { type AxiosError, type AxiosRequestConfig, type AxiosResponse } from "axios";
2
2
  import type { AxiosEnvironment } from "../../types";
3
3
  export declare const onRequest: (request: AxiosRequestConfig, axiosEnv: AxiosEnvironment) => Promise<AxiosRequestConfig<any>>;
4
4
  export declare const onResponse: (response: AxiosResponse) => any;
@@ -6,5 +6,4 @@ export declare const onError: (error: AxiosError, axiosEnv: AxiosEnvironment) =>
6
6
  error: AxiosError<unknown, any>;
7
7
  duration: number;
8
8
  }>;
9
- export declare const ensureCommonHeaders: (target: AxiosDefaults | AxiosRequestConfig) => void;
10
9
  export declare const OnRequestExpiredTokenInterceptor: (request: AxiosRequestConfig, isTokenExpired: () => boolean, handler: () => Promise<void>) => Promise<AxiosRequestConfig<any>>;