@vueuse/integrations 9.11.0 → 9.11.1
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.
- package/index.d.ts +7 -7
- package/package.json +4 -4
- package/useAxios.d.ts +7 -7
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { MaybeComputedRef, MaybeRef, ConfigurableFlush, RemovableRef } from '@vu
|
|
|
2
2
|
import { ValidateError, ValidateOption, Rules } from 'async-validator';
|
|
3
3
|
import * as vue_demi from 'vue-demi';
|
|
4
4
|
import { Ref, ShallowRef, WritableComputedRef, ComputedRef } from 'vue-demi';
|
|
5
|
-
import { AxiosResponse, AxiosError,
|
|
5
|
+
import { AxiosResponse, AxiosError, RawAxiosRequestConfig, AxiosInstance } from 'axios';
|
|
6
6
|
import { camelCase, capitalCase, constantCase, dotCase, headerCase, noCase, paramCase, pascalCase, pathCase, sentenceCase, snakeCase, Options } from 'change-case';
|
|
7
7
|
import * as universal_cookie from 'universal-cookie';
|
|
8
8
|
import universal_cookie__default from 'universal-cookie';
|
|
@@ -102,13 +102,13 @@ interface StrictUseAxiosReturn<T, R, D> extends UseAxiosReturn<T, R, D> {
|
|
|
102
102
|
/**
|
|
103
103
|
* Manually call the axios request
|
|
104
104
|
*/
|
|
105
|
-
execute: (url?: string |
|
|
105
|
+
execute: (url?: string | RawAxiosRequestConfig<D>, config?: RawAxiosRequestConfig<D>) => PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
106
106
|
}
|
|
107
107
|
interface EasyUseAxiosReturn<T, R, D> extends UseAxiosReturn<T, R, D> {
|
|
108
108
|
/**
|
|
109
109
|
* Manually call the axios request
|
|
110
110
|
*/
|
|
111
|
-
execute: (url: string, config?:
|
|
111
|
+
execute: (url: string, config?: RawAxiosRequestConfig<D>) => PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
112
112
|
}
|
|
113
113
|
interface UseAxiosOptions {
|
|
114
114
|
/**
|
|
@@ -123,12 +123,12 @@ interface UseAxiosOptions {
|
|
|
123
123
|
*/
|
|
124
124
|
shallow?: boolean;
|
|
125
125
|
}
|
|
126
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config?:
|
|
126
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: RawAxiosRequestConfig<D>, options?: UseAxiosOptions): StrictUseAxiosReturn<T, R, D> & PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
127
127
|
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, instance?: AxiosInstance, options?: UseAxiosOptions): StrictUseAxiosReturn<T, R, D> & PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
128
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config:
|
|
129
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?:
|
|
128
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config: RawAxiosRequestConfig<D>, instance: AxiosInstance, options?: UseAxiosOptions): StrictUseAxiosReturn<T, R, D> & PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
129
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?: RawAxiosRequestConfig<D>): EasyUseAxiosReturn<T, R, D> & PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
130
130
|
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(instance?: AxiosInstance): EasyUseAxiosReturn<T, R, D> & PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
131
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?:
|
|
131
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?: RawAxiosRequestConfig<D>, instance?: AxiosInstance): EasyUseAxiosReturn<T, R, D> & PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
132
132
|
|
|
133
133
|
declare const changeCase_camelCase: typeof camelCase;
|
|
134
134
|
declare const changeCase_capitalCase: typeof capitalCase;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vueuse/integrations",
|
|
3
|
-
"version": "9.11.
|
|
3
|
+
"version": "9.11.1",
|
|
4
4
|
"description": "Integration wrappers for utility libraries",
|
|
5
5
|
"author": "Anthony Fu <https://github.com/antfu>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -147,15 +147,15 @@
|
|
|
147
147
|
}
|
|
148
148
|
},
|
|
149
149
|
"dependencies": {
|
|
150
|
-
"@vueuse/core": "9.11.
|
|
151
|
-
"@vueuse/shared": "9.11.
|
|
150
|
+
"@vueuse/core": "9.11.1",
|
|
151
|
+
"@vueuse/shared": "9.11.1",
|
|
152
152
|
"vue-demi": "*"
|
|
153
153
|
},
|
|
154
154
|
"devDependencies": {
|
|
155
155
|
"@types/nprogress": "^0.2.0",
|
|
156
156
|
"@types/qrcode": "^1.5.0",
|
|
157
157
|
"async-validator": "^4.2.5",
|
|
158
|
-
"axios": "^1.2.
|
|
158
|
+
"axios": "^1.2.3",
|
|
159
159
|
"change-case": "^4.1.2",
|
|
160
160
|
"drauu": "^0.3.2",
|
|
161
161
|
"focus-trap": "^7.2.0",
|
package/useAxios.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ShallowRef, Ref } from 'vue-demi';
|
|
2
|
-
import { AxiosResponse, AxiosError,
|
|
2
|
+
import { AxiosResponse, AxiosError, RawAxiosRequestConfig, AxiosInstance } from 'axios';
|
|
3
3
|
|
|
4
4
|
interface UseAxiosReturn<T, R = AxiosResponse<T>, D = any> {
|
|
5
5
|
/**
|
|
@@ -63,13 +63,13 @@ interface StrictUseAxiosReturn<T, R, D> extends UseAxiosReturn<T, R, D> {
|
|
|
63
63
|
/**
|
|
64
64
|
* Manually call the axios request
|
|
65
65
|
*/
|
|
66
|
-
execute: (url?: string |
|
|
66
|
+
execute: (url?: string | RawAxiosRequestConfig<D>, config?: RawAxiosRequestConfig<D>) => PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
67
67
|
}
|
|
68
68
|
interface EasyUseAxiosReturn<T, R, D> extends UseAxiosReturn<T, R, D> {
|
|
69
69
|
/**
|
|
70
70
|
* Manually call the axios request
|
|
71
71
|
*/
|
|
72
|
-
execute: (url: string, config?:
|
|
72
|
+
execute: (url: string, config?: RawAxiosRequestConfig<D>) => PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
73
73
|
}
|
|
74
74
|
interface UseAxiosOptions {
|
|
75
75
|
/**
|
|
@@ -84,11 +84,11 @@ interface UseAxiosOptions {
|
|
|
84
84
|
*/
|
|
85
85
|
shallow?: boolean;
|
|
86
86
|
}
|
|
87
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config?:
|
|
87
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: RawAxiosRequestConfig<D>, options?: UseAxiosOptions): StrictUseAxiosReturn<T, R, D> & PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
88
88
|
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, instance?: AxiosInstance, options?: UseAxiosOptions): StrictUseAxiosReturn<T, R, D> & PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
89
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config:
|
|
90
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?:
|
|
89
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(url: string, config: RawAxiosRequestConfig<D>, instance: AxiosInstance, options?: UseAxiosOptions): StrictUseAxiosReturn<T, R, D> & PromiseLike<StrictUseAxiosReturn<T, R, D>>;
|
|
90
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?: RawAxiosRequestConfig<D>): EasyUseAxiosReturn<T, R, D> & PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
91
91
|
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(instance?: AxiosInstance): EasyUseAxiosReturn<T, R, D> & PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
92
|
-
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?:
|
|
92
|
+
declare function useAxios<T = any, R = AxiosResponse<T>, D = any>(config?: RawAxiosRequestConfig<D>, instance?: AxiosInstance): EasyUseAxiosReturn<T, R, D> & PromiseLike<EasyUseAxiosReturn<T, R, D>>;
|
|
93
93
|
|
|
94
94
|
export { EasyUseAxiosReturn, StrictUseAxiosReturn, UseAxiosOptions, UseAxiosReturn, useAxios };
|