@ahoo-wang/fetcher 0.6.0 → 0.6.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/README.md CHANGED
@@ -6,6 +6,7 @@
6
6
  [![License](https://img.shields.io/npm/l/@ahoo-wang/fetcher.svg)](https://github.com/Ahoo-Wang/fetcher/blob/main/LICENSE)
7
7
  [![npm downloads](https://img.shields.io/npm/dm/@ahoo-wang/fetcher.svg)](https://www.npmjs.com/package/@ahoo-wang/fetcher)
8
8
  [![npm bundle size](https://img.shields.io/bundlephobia/minzip/%40ahoo-wang%2Ffetcher)](https://www.npmjs.com/package/@ahoo-wang/fetcher)
9
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/Ahoo-Wang/fetcher)
9
10
 
10
11
  A modern, ultra-lightweight (1.9kB) HTTP client with built-in path parameters, query parameters, and Axios-like API. 86%
11
12
  smaller than Axios while providing the same powerful features.
@@ -53,7 +54,7 @@ const response = await fetcher.get('/users/{id}', {
53
54
  path: { id: 123 },
54
55
  query: { include: 'profile' },
55
56
  });
56
- const userData = await response.json();
57
+ const userData = await response.json<User>();
57
58
 
58
59
  // POST request with automatic JSON conversion
59
60
  const createUserResponse = await fetcher.post('/users', {
@@ -100,12 +101,46 @@ import { fetcher } from '@ahoo-wang/fetcher';
100
101
 
101
102
  // Use the default fetcher directly
102
103
  const response = await fetcher.get('/users');
103
- const data = await response.json();
104
+ const data = await response.json<User>();
104
105
  ```
105
106
 
106
107
  ## 🔗 Interceptor System
107
108
 
108
- ### Request Interceptors
109
+ ### Interceptor
110
+
111
+ Interceptor interface that defines the basic structure of interceptors.
112
+
113
+ **Properties:**
114
+
115
+ - `name: string` - The name of the interceptor, used to identify it, must be unique
116
+ - `order: number` - The execution order of the interceptor, smaller values have higher priority
117
+
118
+ **Methods:**
119
+
120
+ - `intercept(exchange: FetchExchange): FetchExchange | Promise<FetchExchange>` - Intercept and process data
121
+
122
+ ### InterceptorManager
123
+
124
+ Interceptor manager for managing multiple interceptors of the same type.
125
+
126
+ **Methods:**
127
+
128
+ - `use(interceptor: Interceptor): boolean` - Add interceptor, returns whether the addition was successful
129
+ - `eject(name: string): boolean` - Remove interceptor by name, returns whether the removal was successful
130
+ - `clear(): void` - Clear all interceptors
131
+ - `intercept(exchange: FetchExchange): Promise<FetchExchange>` - Execute all interceptors in sequence
132
+
133
+ ### FetcherInterceptors
134
+
135
+ Fetcher interceptor collection, including request, response, and error interceptor managers.
136
+
137
+ **Properties:**
138
+
139
+ - `request: InterceptorManager` - Request interceptor manager
140
+ - `response: InterceptorManager` - Response interceptor manager
141
+ - `error: InterceptorManager` - Error interceptor manager
142
+
143
+ ### Using Interceptors
109
144
 
110
145
  ```typescript
111
146
  import { Fetcher } from '@ahoo-wang/fetcher';
@@ -113,7 +148,9 @@ import { Fetcher } from '@ahoo-wang/fetcher';
113
148
  const fetcher = new Fetcher({ baseURL: 'https://api.example.com' });
114
149
 
115
150
  // Add request interceptor (e.g., for authentication)
116
- const interceptorId = fetcher.interceptors.request.use({
151
+ const success = fetcher.interceptors.request.use({
152
+ name: 'auth-interceptor',
153
+ order: 100,
117
154
  intercept(exchange) {
118
155
  return {
119
156
  ...exchange,
@@ -128,8 +165,84 @@ const interceptorId = fetcher.interceptors.request.use({
128
165
  },
129
166
  });
130
167
 
131
- // Remove interceptor
132
- fetcher.interceptors.request.eject(interceptorId);
168
+ // Add response interceptor (e.g., for logging)
169
+ fetcher.interceptors.response.use({
170
+ name: 'logging-interceptor',
171
+ order: 10,
172
+ intercept(exchange) {
173
+ console.log('Response received:', exchange.response?.status);
174
+ return exchange;
175
+ },
176
+ });
177
+
178
+ // Add error interceptor (e.g., for unified error handling)
179
+ fetcher.interceptors.error.use({
180
+ name: 'error-interceptor',
181
+ order: 50,
182
+ intercept(exchange) {
183
+ if (exchange.error?.name === 'FetchTimeoutError') {
184
+ console.error('Request timeout:', exchange.error.message);
185
+ } else {
186
+ console.error('Network error:', exchange.error?.message);
187
+ }
188
+ return exchange;
189
+ },
190
+ });
191
+
192
+ // Remove interceptor by name
193
+ fetcher.interceptors.request.eject('auth-interceptor');
194
+ ```
195
+
196
+ ### Ordered Execution
197
+
198
+ The `OrderedCapable` system allows you to control the execution order of interceptors and other components.
199
+
200
+ #### Ordering Concept
201
+
202
+ ```typescript
203
+ import { OrderedCapable } from '@ahoo-wang/fetcher';
204
+
205
+ // Lower order values have higher priority
206
+ const highPriority: OrderedCapable = { order: 1 }; // Executes first
207
+ const mediumPriority: OrderedCapable = { order: 10 }; // Executes second
208
+ const lowPriority: OrderedCapable = { order: 100 }; // Executes last
209
+ ```
210
+
211
+ #### Interceptor Ordering
212
+
213
+ ```typescript
214
+ // Add interceptors with different orders
215
+ fetcher.interceptors.request.use({
216
+ name: 'timing-interceptor',
217
+ order: 5, // Executes very early
218
+ intercept(exchange) {
219
+ console.log('Very early timing');
220
+ return exchange;
221
+ },
222
+ });
223
+
224
+ fetcher.interceptors.request.use({
225
+ name: 'logging-interceptor',
226
+ order: 10, // Executes early
227
+ intercept(exchange) {
228
+ console.log('Early logging');
229
+ return exchange;
230
+ },
231
+ });
232
+
233
+ fetcher.interceptors.request.use({
234
+ name: 'auth-interceptor',
235
+ order: 50, // Executes later
236
+ intercept(exchange) {
237
+ // Add auth headers
238
+ return exchange;
239
+ },
240
+ });
241
+
242
+ // Execution order will be:
243
+ // 1. timing-interceptor (order: 5)
244
+ // 2. logging-interceptor (order: 10)
245
+ // 3. auth-interceptor (order: 50)
133
246
  ```
134
247
 
135
248
  ### Response Interceptors
@@ -189,6 +302,109 @@ new Fetcher(options ? : FetcherOptions);
189
302
  - `head(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - HEAD request
190
303
  - `options(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - OPTIONS request
191
304
 
305
+ ### Response Extension
306
+
307
+ To provide better TypeScript support, we extend the native Response interface with a type-safe json() method:
308
+
309
+ ```typescript
310
+ // Now you can use it with type safety
311
+ const response = await fetcher.get('/users/123');
312
+ const userData = await response.json<User>(); // Type is Promise<User>
313
+ ```
314
+
315
+ ### NamedFetcher Class
316
+
317
+ An extension of the Fetcher class that automatically registers itself with the global fetcherRegistrar.
318
+
319
+ #### Constructor
320
+
321
+ ```typescript
322
+ new NamedFetcher(name
323
+ :
324
+ string, options ? : FetcherOptions
325
+ )
326
+ ;
327
+ ```
328
+
329
+ ### FetcherRegistrar
330
+
331
+ Global instance for managing multiple Fetcher instances by name.
332
+
333
+ #### Properties
334
+
335
+ - `default`: Get or set the default fetcher instance
336
+
337
+ #### Methods
338
+
339
+ - `register(name: string, fetcher: Fetcher): void` - Register a fetcher with a name
340
+ - `unregister(name: string): boolean` - Unregister a fetcher by name
341
+ - `get(name: string): Fetcher | undefined` - Get a fetcher by name
342
+ - `requiredGet(name: string): Fetcher` - Get a fetcher by name, throws if not found
343
+ - `fetchers: Map<string, Fetcher>` - Get all registered fetchers
344
+
345
+ ### Interceptor System
346
+
347
+ #### Interceptor
348
+
349
+ Interceptor interface that defines the basic structure of interceptors.
350
+
351
+ **Properties:**
352
+
353
+ - `name: string` - The name of the interceptor, used to identify it, must be unique
354
+ - `order: number` - The execution order of the interceptor, smaller values have higher priority
355
+
356
+ **Methods:**
357
+
358
+ - `intercept(exchange: FetchExchange): FetchExchange | Promise<FetchExchange>` - Intercept and process data
359
+
360
+ #### InterceptorManager
361
+
362
+ Interceptor manager for managing multiple interceptors of the same type.
363
+
364
+ **Methods:**
365
+
366
+ - `use(interceptor: Interceptor): boolean` - Add interceptor, returns whether the addition was successful
367
+ - `eject(name: string): boolean` - Remove interceptor by name, returns whether the removal was successful
368
+ - `clear(): void` - Clear all interceptors
369
+ - `intercept(exchange: FetchExchange): Promise<FetchExchange>` - Execute all interceptors in sequence
370
+
371
+ #### FetcherInterceptors
372
+
373
+ Fetcher interceptor collection, including request, response, and error interceptor managers.
374
+
375
+ **Properties:**
376
+
377
+ - `request: InterceptorManager` - Request interceptor manager
378
+ - `response: InterceptorManager` - Response interceptor manager
379
+ - `error: InterceptorManager` - Error interceptor manager
380
+
381
+ **Options:**
382
+
383
+ - `baseURL`: Base URL for all requests
384
+ - `timeout`: Request timeout in milliseconds
385
+ - `headers`: Default request headers
386
+
387
+ #### Methods
388
+
389
+ - `fetch(url: string, request?: FetcherRequest): Promise<Response>` - Generic HTTP request method
390
+ - `get(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - GET request
391
+ - `post(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - POST request
392
+ - `put(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - PUT request
393
+ - `delete(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - DELETE request
394
+ - `patch(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - PATCH request
395
+ - `head(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - HEAD request
396
+ - `options(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - OPTIONS request
397
+
398
+ ### Response Extension
399
+
400
+ To provide better TypeScript support, we extend the native Response interface with a type-safe json() method:
401
+
402
+ ```typescript
403
+ // Now you can use it with type safety
404
+ const response = await fetcher.get('/users/123');
405
+ const userData = await response.json<User>(); // Type is Promise<User>
406
+ ```
407
+
192
408
  ### NamedFetcher Class
193
409
 
194
410
  An extension of the Fetcher class that automatically registers itself with the global fetcherRegistrar.
@@ -221,6 +437,40 @@ Global instance for managing multiple Fetcher instances by name.
221
437
 
222
438
  ### Interceptor System
223
439
 
440
+ #### Interceptor
441
+
442
+ Interceptor interface that defines the basic structure of interceptors.
443
+
444
+ **Properties:**
445
+
446
+ - `name: string` - The name of the interceptor, used to identify it, must be unique
447
+ - `order: number` - The execution order of the interceptor, smaller values have higher priority
448
+
449
+ **Methods:**
450
+
451
+ - `intercept(exchange: FetchExchange): FetchExchange | Promise<FetchExchange>` - Intercept and process data
452
+
453
+ #### InterceptorManager
454
+
455
+ Interceptor manager for managing multiple interceptors of the same type.
456
+
457
+ **Methods:**
458
+
459
+ - `use(interceptor: Interceptor): boolean` - Add interceptor, returns whether the addition was successful
460
+ - `eject(name: string): boolean` - Remove interceptor by name, returns whether the removal was successful
461
+ - `clear(): void` - Clear all interceptors
462
+ - `intercept(exchange: FetchExchange): Promise<FetchExchange>` - Execute all interceptors in sequence
463
+
464
+ #### FetcherInterceptors
465
+
466
+ Fetcher interceptor collection, including request, response, and error interceptor managers.
467
+
468
+ **Properties:**
469
+
470
+ - `request: InterceptorManager` - Request interceptor manager
471
+ - `response: InterceptorManager` - Response interceptor manager
472
+ - `error: InterceptorManager` - Error interceptor manager
473
+
224
474
  #### Request Interceptors
225
475
 
226
476
  ```typescript
@@ -229,7 +479,7 @@ import { Fetcher } from '@ahoo-wang/fetcher';
229
479
  const fetcher = new Fetcher({ baseURL: 'https://api.example.com' });
230
480
 
231
481
  // Add request interceptor (e.g., for authentication)
232
- const interceptorId = fetcher.interceptors.request.use({
482
+ const success = fetcher.interceptors.request.use({
233
483
  name: 'auth-interceptor',
234
484
  order: 100,
235
485
  intercept(exchange) {
package/README.zh-CN.md CHANGED
@@ -6,6 +6,7 @@
6
6
  [![License](https://img.shields.io/npm/l/@ahoo-wang/fetcher.svg)](https://github.com/Ahoo-Wang/fetcher/blob/main/LICENSE)
7
7
  [![npm downloads](https://img.shields.io/npm/dm/@ahoo-wang/fetcher.svg)](https://www.npmjs.com/package/@ahoo-wang/fetcher)
8
8
  [![npm bundle size](https://img.shields.io/bundlephobia/minzip/%40ahoo-wang%2Ffetcher)](https://www.npmjs.com/package/@ahoo-wang/fetcher)
9
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/Ahoo-Wang/fetcher)
9
10
 
10
11
  一个现代、超轻量级(1.9kB)的 HTTP 客户端,内置路径参数、查询参数和类似 Axios 的 API。比 Axios 小 86%,同时提供相同的强大功能。
11
12
 
@@ -52,7 +53,7 @@ const response = await fetcher.get('/users/{id}', {
52
53
  path: { id: 123 },
53
54
  query: { include: 'profile' },
54
55
  });
55
- const userData = await response.json();
56
+ const userData = await response.json<User>();
56
57
 
57
58
  // 带自动 JSON 转换的 POST 请求
58
59
  const createUserResponse = await fetcher.post('/users', {
@@ -99,12 +100,46 @@ import { fetcher } from '@ahoo-wang/fetcher';
99
100
 
100
101
  // 直接使用默认 fetcher
101
102
  const response = await fetcher.get('/users');
102
- const data = await response.json();
103
+ const data = await response.json<User>();
103
104
  ```
104
105
 
105
106
  ## 🔗 拦截器系统
106
107
 
107
- ### 请求拦截器
108
+ ### Interceptor
109
+
110
+ 拦截器接口,定义了拦截器的基本结构。
111
+
112
+ **属性:**
113
+
114
+ - `name: string` - 拦截器的名称,用于标识拦截器,不可重复
115
+ - `order: number` - 拦截器的执行顺序,数值越小优先级越高
116
+
117
+ **方法:**
118
+
119
+ - `intercept(exchange: FetchExchange): FetchExchange | Promise<FetchExchange>` - 拦截并处理数据
120
+
121
+ ### InterceptorManager
122
+
123
+ 用于管理同一类型多个拦截器的拦截器管理器。
124
+
125
+ **方法:**
126
+
127
+ - `use(interceptor: Interceptor): boolean` - 添加拦截器,返回是否添加成功
128
+ - `eject(name: string): boolean` - 按名称移除拦截器,返回是否移除成功
129
+ - `clear(): void` - 清除所有拦截器
130
+ - `intercept(exchange: FetchExchange): Promise<FetchExchange>` - 顺序执行所有拦截器
131
+
132
+ ### FetcherInterceptors
133
+
134
+ Fetcher 拦截器集合,包括请求、响应和错误拦截器管理器。
135
+
136
+ **属性:**
137
+
138
+ - `request: InterceptorManager` - 请求拦截器管理器
139
+ - `response: InterceptorManager` - 响应拦截器管理器
140
+ - `error: InterceptorManager` - 错误拦截器管理器
141
+
142
+ ### 使用拦截器
108
143
 
109
144
  ```typescript
110
145
  import { Fetcher } from '@ahoo-wang/fetcher';
@@ -112,7 +147,9 @@ import { Fetcher } from '@ahoo-wang/fetcher';
112
147
  const fetcher = new Fetcher({ baseURL: 'https://api.example.com' });
113
148
 
114
149
  // 添加请求拦截器(例如用于认证)
115
- const interceptorId = fetcher.interceptors.request.use({
150
+ const success = fetcher.interceptors.request.use({
151
+ name: 'auth-interceptor',
152
+ order: 100,
116
153
  intercept(exchange) {
117
154
  return {
118
155
  ...exchange,
@@ -127,27 +164,20 @@ const interceptorId = fetcher.interceptors.request.use({
127
164
  },
128
165
  });
129
166
 
130
- // 移除拦截器
131
- fetcher.interceptors.request.eject(interceptorId);
132
- ```
133
-
134
- ### 响应拦截器
135
-
136
- ```typescript
137
167
  // 添加响应拦截器(例如用于日志记录)
138
168
  fetcher.interceptors.response.use({
169
+ name: 'logging-interceptor',
170
+ order: 10,
139
171
  intercept(exchange) {
140
- console.log('收到响应:', exchange.response.status);
172
+ console.log('收到响应:', exchange.response?.status);
141
173
  return exchange;
142
174
  },
143
175
  });
144
- ```
145
-
146
- ### 错误拦截器
147
176
 
148
- ```typescript
149
177
  // 添加错误拦截器(例如用于统一错误处理)
150
178
  fetcher.interceptors.error.use({
179
+ name: 'error-interceptor',
180
+ order: 50,
151
181
  intercept(exchange) {
152
182
  if (exchange.error?.name === 'FetchTimeoutError') {
153
183
  console.error('请求超时:', exchange.error.message);
@@ -157,89 +187,62 @@ fetcher.interceptors.error.use({
157
187
  return exchange;
158
188
  },
159
189
  });
160
- ```
161
-
162
- ## 📚 API 参考
163
190
 
164
- ### Fetcher 类
165
-
166
- 提供各种 HTTP 方法的核心 HTTP 客户端类。
167
-
168
- #### 构造函数
169
-
170
- ```typescript
171
- new Fetcher(options ? : FetcherOptions);
191
+ // 按名称移除拦截器
192
+ fetcher.interceptors.request.eject('auth-interceptor');
172
193
  ```
173
194
 
174
- **选项:**
195
+ ### 有序执行
175
196
 
176
- - `baseURL`:基础 URL
177
- - `timeout`:以毫秒为单位的请求超时
178
- - `headers`:默认请求头部
197
+ `OrderedCapable` 系统允许您控制拦截器和其他组件的执行顺序。
179
198
 
180
- #### 方法
181
-
182
- - `fetch(url: string, request?: FetcherRequest): Promise<Response>` - 通用 HTTP 请求方法
183
- - `get(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - GET 请求
184
- - `post(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - POST 请求
185
- - `put(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - PUT 请求
186
- - `delete(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - DELETE 请求
187
- - `patch(url: string, request?: Omit<FetcherRequest, 'method'>): Promise<Response>` - PATCH 请求
188
- - `head(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - HEAD 请求
189
- - `options(url: string, request?: Omit<FetcherRequest, 'method' | 'body'>): Promise<Response>` - OPTIONS 请求
190
-
191
- ### NamedFetcher 类
192
-
193
- Fetcher 类的扩展,它会自动使用提供的名称在全局 fetcherRegistrar 中注册自己。
194
-
195
- #### 构造函数
199
+ #### 排序概念
196
200
 
197
201
  ```typescript
198
- new NamedFetcher(name
199
- :
200
- string, options ? : FetcherOptions
201
- )
202
- ;
203
- ```
204
-
205
- ### FetcherRegistrar
206
-
207
- 用于按名称管理多个 Fetcher 实例的全局实例。
208
-
209
- #### 属性
210
-
211
- - `default`:获取或设置默认 fetcher 实例
212
-
213
- #### 方法
202
+ import { OrderedCapable } from '@ahoo-wang/fetcher';
214
203
 
215
- - `register(name: string, fetcher: Fetcher): void` - 使用名称注册 fetcher
216
- - `unregister(name: string): boolean` - 按名称注销 fetcher
217
- - `get(name: string): Fetcher | undefined` - 按名称获取 fetcher
218
- - `requiredGet(name: string): Fetcher` - 按名称获取 fetcher,如果未找到则抛出错误
219
- - `fetchers: Map<string, Fetcher>` - 获取所有已注册的 fetcher
220
-
221
- ### 拦截器系统
222
-
223
- #### InterceptorManager
224
-
225
- 用于管理同一类型多个拦截器的拦截器管理器。
226
-
227
- **方法:**
204
+ // 数值越小优先级越高
205
+ const highPriority: OrderedCapable = { order: 1 }; // 首先执行
206
+ const mediumPriority: OrderedCapable = { order: 10 }; // 其次执行
207
+ const lowPriority: OrderedCapable = { order: 100 }; // 最后执行
208
+ ```
228
209
 
229
- - `use(interceptor: Interceptor): number` - 添加拦截器,返回拦截器 ID
230
- - `eject(index: number): void` - 按 ID 移除拦截器
231
- - `clear(): void` - 清除所有拦截器
232
- - `intercept(exchange: FetchExchange): Promise<FetchExchange>` - 顺序执行所有拦截器
210
+ #### 拦截器排序
233
211
 
234
- #### FetcherInterceptors
212
+ ```typescript
213
+ // 添加具有不同顺序的拦截器
214
+ fetcher.interceptors.request.use({
215
+ name: 'timing-interceptor',
216
+ order: 5, // 很早执行
217
+ intercept(exchange) {
218
+ console.log('很早的计时');
219
+ return exchange;
220
+ },
221
+ });
235
222
 
236
- Fetcher 拦截器集合,包括请求、响应和错误拦截器管理器。
223
+ fetcher.interceptors.request.use({
224
+ name: 'logging-interceptor',
225
+ order: 10, // 较早执行
226
+ intercept(exchange) {
227
+ console.log('较早的日志');
228
+ return exchange;
229
+ },
230
+ });
237
231
 
238
- **属性:**
232
+ fetcher.interceptors.request.use({
233
+ name: 'auth-interceptor',
234
+ order: 50, // 较晚执行
235
+ intercept(exchange) {
236
+ // 添加认证头部
237
+ return exchange;
238
+ },
239
+ });
239
240
 
240
- - `request: InterceptorManager` - 请求拦截器管理器
241
- - `response: InterceptorManager` - 响应拦截器管理器
242
- - `error: InterceptorManager` - 错误拦截器管理器
241
+ // 执行顺序将是:
242
+ // 1. timing-interceptor (order: 5)
243
+ // 2. logging-interceptor (order: 10)
244
+ // 3. auth-interceptor (order: 50)
245
+ ```
243
246
 
244
247
  ## 🛠️ 开发
245
248
 
package/dist/types.d.ts CHANGED
@@ -42,4 +42,18 @@ export interface NamedCapable {
42
42
  */
43
43
  name: string;
44
44
  }
45
+ /**
46
+ * Global extension of Response interface
47
+ * Adds type-safe json() method support to Response objects
48
+ */
49
+ declare global {
50
+ interface Response {
51
+ /**
52
+ * Parse response body as JSON in a type-safe manner
53
+ * @template T The type of returned data, defaults to any
54
+ * @returns Promise<T> The parsed JSON data
55
+ */
56
+ json<T = any>(): Promise<T>;
57
+ }
58
+ }
45
59
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAaA,MAAM,WAAW,cAAc;IAC7B;;;OAGG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAED;;GAEG;AACH,oBAAY,UAAU;IACpB,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,IAAI,SAAS;IACb,OAAO,YAAY;CACpB;AAED,oBAAY,YAAY;IACtB,MAAM,WAAW;IACjB,IAAI,SAAS;CACd;AAED,eAAO,MAAM,iBAAiB,iBAAiB,CAAC;AAEhD,oBAAY,iBAAiB;IAC3B,gBAAgB,qBAAqB;IACrC,iBAAiB,sBAAsB;CACxC;AAED;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAaA,MAAM,WAAW,cAAc;IAC7B;;;OAGG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAED;;GAEG;AACH,oBAAY,UAAU;IACpB,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,IAAI,SAAS;IACb,OAAO,YAAY;CACpB;AAED,oBAAY,YAAY;IACtB,MAAM,WAAW;IACjB,IAAI,SAAS;CACd;AAED,eAAO,MAAM,iBAAiB,iBAAiB,CAAC;AAEhD,oBAAY,iBAAiB;IAC3B,gBAAgB,qBAAqB;IACrC,iBAAiB,sBAAsB;CACxC;AAED;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;GAGG;AACH,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,QAAQ;QAChB;;;;WAIG;QACH,IAAI,CAAC,CAAC,GAAG,GAAG,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC;KAC7B;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahoo-wang/fetcher",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Ultra-lightweight (1.9kB) HTTP client with built-in path parameters and Axios-like API",
5
5
  "keywords": [
6
6
  "fetch",