@privateaim/telemetry-kit 0.8.22 → 0.8.23
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 +16 -0
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.23](https://github.com/PrivateAIM/hub/compare/v0.8.22...v0.8.23) (2026-02-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** bump the minorandpatch group across 1 directory with 19 updates ([#1392](https://github.com/PrivateAIM/hub/issues/1392)) ([23060bf](https://github.com/PrivateAIM/hub/commit/23060bfce24100d17d4d83c7ee45ed6d85073c6b))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* devDependencies
|
|
15
|
+
* @privateaim/kit bumped from ^0.8.22 to ^0.8.23
|
|
16
|
+
* peerDependencies
|
|
17
|
+
* @privateaim/kit bumped from ^0.8.22 to ^0.8.23
|
|
18
|
+
|
|
3
19
|
## [0.8.22](https://github.com/PrivateAIM/hub/compare/v0.8.21...v0.8.22) (2026-01-27)
|
|
4
20
|
|
|
5
21
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { isClient, createClient, Client, HookName, isClientError } from 'hapic';
|
|
2
2
|
import { buildQuery } from 'rapiq';
|
|
3
3
|
import { createValidator } from '@validup/adapter-zod';
|
|
4
4
|
import { Container } from 'validup';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@privateaim/telemetry-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.23",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@validup/adapter-zod": "^0.1.12",
|
|
23
23
|
"validup": "^0.1.9",
|
|
24
|
-
"zod": "^4.
|
|
24
|
+
"zod": "^4.3.6"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@authup/kit": "^1.0.0-beta.28",
|
|
28
28
|
"@authup/core-kit": "^1.0.0-beta.28",
|
|
29
|
-
"@privateaim/kit": "^0.8.
|
|
29
|
+
"@privateaim/kit": "^0.8.23",
|
|
30
30
|
"hapic": "^2.7.0",
|
|
31
31
|
"rapiq": "^0.9.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@authup/kit": "^1.0.0-beta.28",
|
|
35
35
|
"@authup/core-kit": "^1.0.0-beta.28",
|
|
36
|
-
"@privateaim/kit": "^0.8.
|
|
36
|
+
"@privateaim/kit": "^0.8.23",
|
|
37
37
|
"hapic": "^2.7.0",
|
|
38
38
|
"rapiq": "^0.9.0"
|
|
39
39
|
},
|