@furystack/rest-client-fetch 3.0.24 → 3.0.29
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 +2 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# rest-client-fetch
|
|
2
2
|
|
|
3
|
-
REST Client package for `@furystack/rest` with native Fetch implementation
|
|
3
|
+
REST Client package for `@furystack/rest` with native Fetch implementation.
|
|
4
|
+
You can use this package to operate strongly typed REST APIs in the browser with native `fetch` implementation.
|
|
4
5
|
|
|
5
6
|
```ts
|
|
6
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@furystack/rest-client-fetch",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.29",
|
|
4
4
|
"description": "Native browser fetch based REST API implementation for FuryStack",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"HTTP",
|
|
18
18
|
"REST",
|
|
19
19
|
"API",
|
|
20
|
-
"
|
|
20
|
+
"Client"
|
|
21
21
|
],
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://github.com/furystack/furystack",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@furystack/inject": "^5.0.
|
|
33
|
-
"@furystack/logging": "^2.0.
|
|
34
|
-
"@furystack/rest": "^3.1.
|
|
35
|
-
"@furystack/utils": "^2.0.
|
|
32
|
+
"@furystack/inject": "^5.0.3",
|
|
33
|
+
"@furystack/logging": "^2.0.87",
|
|
34
|
+
"@furystack/rest": "^3.1.8",
|
|
35
|
+
"@furystack/utils": "^2.0.3",
|
|
36
36
|
"path-to-regexp": "^6.2.0",
|
|
37
37
|
"tslib": "^2.3.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/jest": "^27.0
|
|
40
|
+
"@types/jest": "^27.4.0"
|
|
41
41
|
},
|
|
42
42
|
"typings": "./dist/index.d.ts",
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "dcee00dfb4035fe382ec726af4d614ef9d8a579f"
|
|
44
44
|
}
|