axios 1.7.8 → 1.8.0
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.
Potentially problematic release.
This version of axios might be problematic. Click here for more details.
- package/CHANGELOG.md +61 -0
- package/README.md +30 -14
- package/dist/axios.js +25 -11
- package/dist/axios.js.map +1 -1
- package/dist/axios.min.js +2 -1
- package/dist/axios.min.js.map +1 -1
- package/dist/browser/axios.cjs +23 -7
- package/dist/browser/axios.cjs.map +1 -1
- package/dist/esm/axios.js +19 -7
- package/dist/esm/axios.js.map +1 -1
- package/dist/esm/axios.min.js +2 -1
- package/dist/esm/axios.min.js.map +1 -1
- package/dist/node/axios.cjs +19 -7
- package/dist/node/axios.cjs.map +1 -1
- package/index.d.cts +28 -33
- package/index.d.ts +568 -75
- package/lib/core/Axios.js +10 -1
- package/lib/core/buildFullPath.js +3 -2
- package/lib/env/data.js +1 -1
- package/lib/utils.js +5 -2
- package/package.json +3 -3
- package/SECURITY.md +0 -6
package/index.d.cts
CHANGED
@@ -3,12 +3,12 @@ interface RawAxiosHeaders {
|
|
3
3
|
}
|
4
4
|
|
5
5
|
type MethodsHeaders = Partial<{
|
6
|
-
[Key in axios.Method as Lowercase<Key>]:
|
7
|
-
} & {common:
|
6
|
+
[Key in axios.Method as Lowercase<Key>]: AxiosHeaders;
|
7
|
+
} & {common: AxiosHeaders}>;
|
8
8
|
|
9
|
-
type AxiosHeaderMatcher = (this:
|
9
|
+
type AxiosHeaderMatcher = (this: AxiosHeaders, value: string, name: string, headers: RawAxiosHeaders) => boolean;
|
10
10
|
|
11
|
-
type AxiosHeaderParser = (this:
|
11
|
+
type AxiosHeaderParser = (this: AxiosHeaders, value: axios.AxiosHeaderValue, header: string) => any;
|
12
12
|
|
13
13
|
type CommonRequestHeadersList = 'Accept' | 'Content-Length' | 'User-Agent'| 'Content-Encoding' | 'Authorization';
|
14
14
|
|
@@ -16,15 +16,15 @@ type ContentType = axios.AxiosHeaderValue | 'text/html' | 'text/plain' | 'multip
|
|
16
16
|
|
17
17
|
type CommonResponseHeadersList = 'Server' | 'Content-Type' | 'Content-Length' | 'Cache-Control'| 'Content-Encoding';
|
18
18
|
|
19
|
-
declare class
|
19
|
+
declare class AxiosHeaders {
|
20
20
|
constructor(
|
21
|
-
headers?: RawAxiosHeaders |
|
21
|
+
headers?: RawAxiosHeaders | AxiosHeaders | string
|
22
22
|
);
|
23
23
|
|
24
24
|
[key: string]: any;
|
25
25
|
|
26
|
-
set(headerName?: string, value?: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher):
|
27
|
-
set(headers?: RawAxiosHeaders |
|
26
|
+
set(headerName?: string, value?: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
27
|
+
set(headers?: RawAxiosHeaders | AxiosHeaders | string, rewrite?: boolean): AxiosHeaders;
|
28
28
|
|
29
29
|
get(headerName: string, parser: RegExp): RegExpExecArray | null;
|
30
30
|
get(headerName: string, matcher?: true | AxiosHeaderParser): axios.AxiosHeaderValue;
|
@@ -35,44 +35,44 @@ declare class InternalAxiosHeaders {
|
|
35
35
|
|
36
36
|
clear(matcher?: AxiosHeaderMatcher): boolean;
|
37
37
|
|
38
|
-
normalize(format: boolean):
|
38
|
+
normalize(format: boolean): AxiosHeaders;
|
39
39
|
|
40
|
-
concat(...targets: Array<
|
40
|
+
concat(...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>): AxiosHeaders;
|
41
41
|
|
42
42
|
toJSON(asStrings?: boolean): RawAxiosHeaders;
|
43
43
|
|
44
|
-
static from(thing?:
|
44
|
+
static from(thing?: AxiosHeaders | RawAxiosHeaders | string): AxiosHeaders;
|
45
45
|
|
46
|
-
static accessor(header: string | string[]):
|
46
|
+
static accessor(header: string | string[]): AxiosHeaders;
|
47
47
|
|
48
|
-
static concat(...targets: Array<
|
48
|
+
static concat(...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>): AxiosHeaders;
|
49
49
|
|
50
|
-
setContentType(value: ContentType, rewrite?: boolean | AxiosHeaderMatcher):
|
50
|
+
setContentType(value: ContentType, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
51
51
|
getContentType(parser?: RegExp): RegExpExecArray | null;
|
52
52
|
getContentType(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
53
53
|
hasContentType(matcher?: AxiosHeaderMatcher): boolean;
|
54
54
|
|
55
|
-
setContentLength(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher):
|
55
|
+
setContentLength(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
56
56
|
getContentLength(parser?: RegExp): RegExpExecArray | null;
|
57
57
|
getContentLength(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
58
58
|
hasContentLength(matcher?: AxiosHeaderMatcher): boolean;
|
59
59
|
|
60
|
-
setAccept(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher):
|
60
|
+
setAccept(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
61
61
|
getAccept(parser?: RegExp): RegExpExecArray | null;
|
62
62
|
getAccept(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
63
63
|
hasAccept(matcher?: AxiosHeaderMatcher): boolean;
|
64
64
|
|
65
|
-
setUserAgent(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher):
|
65
|
+
setUserAgent(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
66
66
|
getUserAgent(parser?: RegExp): RegExpExecArray | null;
|
67
67
|
getUserAgent(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
68
68
|
hasUserAgent(matcher?: AxiosHeaderMatcher): boolean;
|
69
69
|
|
70
|
-
setContentEncoding(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher):
|
70
|
+
setContentEncoding(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
71
71
|
getContentEncoding(parser?: RegExp): RegExpExecArray | null;
|
72
72
|
getContentEncoding(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
73
73
|
hasContentEncoding(matcher?: AxiosHeaderMatcher): boolean;
|
74
74
|
|
75
|
-
setAuthorization(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher):
|
75
|
+
setAuthorization(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
76
76
|
getAuthorization(parser?: RegExp): RegExpExecArray | null;
|
77
77
|
getAuthorization(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
78
78
|
hasAuthorization(matcher?: AxiosHeaderMatcher): boolean;
|
@@ -111,10 +111,10 @@ declare class AxiosError<T = unknown, D = any> extends Error {
|
|
111
111
|
static readonly ETIMEDOUT = "ETIMEDOUT";
|
112
112
|
}
|
113
113
|
|
114
|
-
declare class
|
114
|
+
declare class CanceledError<T> extends AxiosError<T> {
|
115
115
|
}
|
116
116
|
|
117
|
-
declare class
|
117
|
+
declare class Axios {
|
118
118
|
constructor(config?: axios.AxiosRequestConfig);
|
119
119
|
defaults: axios.AxiosDefaults;
|
120
120
|
interceptors: {
|
@@ -135,7 +135,7 @@ declare class InternalAxios {
|
|
135
135
|
patchForm<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
136
136
|
}
|
137
137
|
|
138
|
-
declare enum
|
138
|
+
declare enum HttpStatusCode {
|
139
139
|
Continue = 100,
|
140
140
|
SwitchingProtocols = 101,
|
141
141
|
Processing = 102,
|
@@ -205,10 +205,6 @@ type InternalAxiosError<T = unknown, D = any> = AxiosError<T, D>;
|
|
205
205
|
|
206
206
|
declare namespace axios {
|
207
207
|
type AxiosError<T = unknown, D = any> = InternalAxiosError<T, D>;
|
208
|
-
type Axios = InternalAxios;
|
209
|
-
type AxiosHeaders = InternalAxiosHeaders;
|
210
|
-
type CanceledError<T> = InternalCanceledError<T>;
|
211
|
-
type HttpStatusCode = InternalHttpStatusCode;
|
212
208
|
|
213
209
|
type RawAxiosRequestHeaders = Partial<RawAxiosHeaders & {
|
214
210
|
[Key in CommonRequestHeadersList]: AxiosHeaderValue;
|
@@ -402,7 +398,7 @@ declare namespace axios {
|
|
402
398
|
maxBodyLength?: number;
|
403
399
|
maxRedirects?: number;
|
404
400
|
maxRate?: number | [MaxUploadRate, MaxDownloadRate];
|
405
|
-
beforeRedirect?: (options: Record<string, any>, responseDetails: {headers: Record<string, string>, statusCode:
|
401
|
+
beforeRedirect?: (options: Record<string, any>, responseDetails: {headers: Record<string, string>, statusCode: HttpStatusCode}) => void;
|
406
402
|
socketPath?: string | null;
|
407
403
|
transport?: any;
|
408
404
|
httpAgent?: any;
|
@@ -507,7 +503,7 @@ declare namespace axios {
|
|
507
503
|
clear(): void;
|
508
504
|
}
|
509
505
|
|
510
|
-
interface AxiosInstance extends
|
506
|
+
interface AxiosInstance extends Axios {
|
511
507
|
<T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D>): Promise<R>;
|
512
508
|
<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
|
513
509
|
|
@@ -529,14 +525,13 @@ declare namespace axios {
|
|
529
525
|
}
|
530
526
|
|
531
527
|
interface AxiosStatic extends AxiosInstance {
|
532
|
-
default: AxiosStatic;
|
533
528
|
create(config?: CreateAxiosDefaults): AxiosInstance;
|
534
529
|
Cancel: CancelStatic;
|
535
530
|
CancelToken: CancelTokenStatic;
|
536
|
-
Axios: typeof
|
531
|
+
Axios: typeof Axios;
|
537
532
|
AxiosError: typeof AxiosError;
|
538
|
-
CanceledError: typeof
|
539
|
-
HttpStatusCode: typeof
|
533
|
+
CanceledError: typeof CanceledError;
|
534
|
+
HttpStatusCode: typeof HttpStatusCode;
|
540
535
|
readonly VERSION: string;
|
541
536
|
isCancel(value: any): value is Cancel;
|
542
537
|
all<T>(values: Array<T | Promise<T>>): Promise<T[]>;
|
@@ -545,7 +540,7 @@ declare namespace axios {
|
|
545
540
|
toFormData(sourceObj: object, targetFormData?: GenericFormData, options?: FormSerializerOptions): GenericFormData;
|
546
541
|
formToJSON(form: GenericFormData|GenericHTMLFormElement): object;
|
547
542
|
getAdapter(adapters: AxiosAdapterConfig | AxiosAdapterConfig[] | undefined): AxiosAdapter;
|
548
|
-
AxiosHeaders: typeof
|
543
|
+
AxiosHeaders: typeof AxiosHeaders;
|
549
544
|
}
|
550
545
|
}
|
551
546
|
|