@feathersjs/schema 5.0.32 → 5.0.34
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 +12 -0
- package/lib/json-schema.d.ts +2 -2
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.34](https://github.com/feathersjs/feathers/compare/v5.0.33...v5.0.34) (2025-05-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Update dependencies ([#3584](https://github.com/feathersjs/feathers/issues/3584)) ([119fa4e](https://github.com/feathersjs/feathers/commit/119fa4e1ade8b0078aa235083d566e2538b3a084))
|
|
11
|
+
|
|
12
|
+
## [5.0.33](https://github.com/feathersjs/feathers/compare/v5.0.32...v5.0.33) (2025-02-24)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **dependencies:** Update dependencies ([#3571](https://github.com/feathersjs/feathers/issues/3571)) ([ad611cb](https://github.com/feathersjs/feathers/commit/ad611cb6ffb1dc31d603ba5817331318c5a23217))
|
|
17
|
+
|
|
6
18
|
## [5.0.32](https://github.com/feathersjs/feathers/compare/v5.0.31...v5.0.32) (2025-02-01)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @feathersjs/schema
|
package/lib/json-schema.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export declare const queryProperty: <T extends JSONSchema, X extends {
|
|
|
86
86
|
*/
|
|
87
87
|
export declare const queryProperties: <T extends {
|
|
88
88
|
[key: string]: JSONSchema;
|
|
89
|
-
}, X extends { [
|
|
89
|
+
}, X extends { [K_1 in keyof T]?: {
|
|
90
90
|
[key: string]: JSONSchema;
|
|
91
91
|
}; }>(definitions: T, extensions?: X) => { [K in keyof T]: PropertyQuery<T[K], X[K]>; };
|
|
92
92
|
/**
|
|
@@ -99,7 +99,7 @@ export declare const queryProperties: <T extends {
|
|
|
99
99
|
*/
|
|
100
100
|
export declare const querySyntax: <T extends {
|
|
101
101
|
[key: string]: JSONSchema;
|
|
102
|
-
}, X extends { [
|
|
102
|
+
}, X extends { [K_2 in keyof T]?: {
|
|
103
103
|
[key: string]: JSONSchema;
|
|
104
104
|
}; }>(definition: T, extensions?: X) => {
|
|
105
105
|
readonly $limit: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersjs/schema",
|
|
3
3
|
"description": "A common data schema definition format",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.34",
|
|
5
5
|
"homepage": "https://feathersjs.com",
|
|
6
6
|
"main": "lib/",
|
|
7
7
|
"types": "lib/",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@feathersjs/adapter-commons": "^5.0.
|
|
58
|
-
"@feathersjs/commons": "^5.0.
|
|
59
|
-
"@feathersjs/errors": "^5.0.
|
|
60
|
-
"@feathersjs/feathers": "^5.0.
|
|
57
|
+
"@feathersjs/adapter-commons": "^5.0.34",
|
|
58
|
+
"@feathersjs/commons": "^5.0.34",
|
|
59
|
+
"@feathersjs/errors": "^5.0.34",
|
|
60
|
+
"@feathersjs/feathers": "^5.0.34",
|
|
61
61
|
"@feathersjs/hooks": "^0.9.0",
|
|
62
62
|
"@types/json-schema": "^7.0.15",
|
|
63
63
|
"ajv": "^8.17.1",
|
|
@@ -65,16 +65,16 @@
|
|
|
65
65
|
"json-schema-to-ts": "^3.1.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@feathersjs/memory": "^5.0.
|
|
68
|
+
"@feathersjs/memory": "^5.0.34",
|
|
69
69
|
"@types/mocha": "^10.0.10",
|
|
70
|
-
"@types/node": "^22.
|
|
70
|
+
"@types/node": "^22.15.3",
|
|
71
71
|
"ajv-formats": "^3.0.1",
|
|
72
|
-
"mocha": "^11.
|
|
73
|
-
"shx": "^0.
|
|
72
|
+
"mocha": "^11.2.2",
|
|
73
|
+
"shx": "^0.4.0",
|
|
74
74
|
"typescript": "^5.7.3"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
|
-
"typescript": ">=5.
|
|
77
|
+
"typescript": ">=5.8"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "3c12b722c136fa5aae32bc94fa24b3edec85dd96"
|
|
80
80
|
}
|