@pureq/pureq 1.1.8 → 1.1.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/README.md +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Functional, immutable, and type-safe HTTP transport layer for TypeScript.
|
|
4
4
|
|
|
5
|
-
[Getting Started](
|
|
5
|
+
[Getting Started](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/getting_started.md) | [Documentation](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/README.md) | [Middleware Reference](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/middleware_reference.md) | [GitHub](https://github.com/shiro-shihi/pureq)
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -30,14 +30,14 @@ const user = await api.getJson<User>("/users/:id", { params: { id: "42" } });
|
|
|
30
30
|
|
|
31
31
|
## Documentation
|
|
32
32
|
|
|
33
|
-
- [Getting Started](
|
|
34
|
-
- [Core Concepts](
|
|
35
|
-
- [API Reference](
|
|
36
|
-
- [Middleware Reference](
|
|
37
|
-
- [Error Handling](
|
|
38
|
-
- [Observability](
|
|
39
|
-
- [Migration Guide](
|
|
40
|
-
- [Benchmarks](
|
|
33
|
+
- [Getting Started](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/getting_started.md)
|
|
34
|
+
- [Core Concepts](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/core_concepts.md)
|
|
35
|
+
- [API Reference](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/api_reference.md)
|
|
36
|
+
- [Middleware Reference](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/middleware_reference.md)
|
|
37
|
+
- [Error Handling](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/error_handling.md)
|
|
38
|
+
- [Observability](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/observability.md)
|
|
39
|
+
- [Migration Guide](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/migration_guide.md)
|
|
40
|
+
- [Benchmarks](https://github.com/shiro-shihi/pureq/blob/main/packages/pureq/docs/benchmarks.md)
|
|
41
41
|
|
|
42
42
|
## License
|
|
43
43
|
|
package/package.json
CHANGED