fetch-request-browser 1.0.7 → 1.0.9
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/dist/shared/types.d.ts +0 -4
- package/package.json +5 -5
package/dist/shared/types.d.ts
CHANGED
|
@@ -28,10 +28,6 @@ type IRequestMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
|
|
|
28
28
|
* The type of data that will be extracted from the HTTP Response body.
|
|
29
29
|
*/
|
|
30
30
|
type IResponseDataType = 'arrayBuffer' | 'blob' | 'formData' | 'json' | 'text';
|
|
31
|
-
/**
|
|
32
|
-
* Response Data
|
|
33
|
-
* The format of the data that can be extracted from the Response object.
|
|
34
|
-
*/
|
|
35
31
|
/**
|
|
36
32
|
* Options
|
|
37
33
|
* The options object that can be passed and used for any request.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fetch-request-browser",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "The fetch-request-browser package makes working with external APIs simple and efficient. This intuitive wrapper leverages the power of the Fetch API, providing a clean and concise interface for your API interactions.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/jesusgraterol/fetch-request-browser#readme",
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@types/node": "^20.17.
|
|
36
|
+
"@types/node": "^20.17.17",
|
|
37
37
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
38
38
|
"@typescript-eslint/parser": "^7.18.0",
|
|
39
39
|
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
40
40
|
"ts-lib-builder": "^1.0.5",
|
|
41
|
-
"typescript": "^5.7.
|
|
42
|
-
"vitest": "^1.6.
|
|
41
|
+
"typescript": "^5.7.3",
|
|
42
|
+
"vitest": "^1.6.1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"error-message-utils": "^1.1.2",
|
|
46
|
-
"web-utils-kit": "^1.0.
|
|
46
|
+
"web-utils-kit": "^1.0.5"
|
|
47
47
|
}
|
|
48
48
|
}
|