@api-wrappers/api-core 1.0.1 → 1.0.2
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/CHANGELOG.md +5 -0
- package/README.md +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.2 - 2026-05-14
|
|
4
|
+
|
|
5
|
+
- Broadened the TypeScript peer dependency range to support TypeScript 6.
|
|
6
|
+
- Added clearer README guidance for developers building wrapper libraries.
|
|
7
|
+
|
|
3
8
|
## 1.0.1 - 2026-05-14
|
|
4
9
|
|
|
5
10
|
- Fixed cache keys so array and nullish query params match the actual transport URL serialization.
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@api-wrappers/api-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Shared HTTP client runtime for the api-wrappers organisation. Provides request orchestration, a plugin lifecycle, transport abstraction, and built-in cache/retry/logger plugins.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"typescript": "^5.9.3"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"typescript": "^5"
|
|
72
|
+
"typescript": "^5 || ^6"
|
|
73
73
|
}
|
|
74
74
|
}
|