@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.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. 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](./docs/getting_started.md) | [Documentation](./docs/README.md) | [Middleware Reference](./docs/middleware_reference.md) | [GitHub](https://github.com/shiro-shihi/pureq)
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](./docs/getting_started.md)
34
- - [Core Concepts](./docs/core_concepts.md)
35
- - [API Reference](./docs/api_reference.md)
36
- - [Middleware Reference](./docs/middleware_reference.md)
37
- - [Error Handling](./docs/error_handling.md)
38
- - [Observability](./docs/observability.md)
39
- - [Migration Guide](./docs/migration_guide.md)
40
- - [Benchmarks](./docs/benchmarks.md)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pureq/pureq",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "Functional, immutable, and type-safe HTTP client layer with middleware composition.",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",