@feathersjs/typebox 5.0.33 → 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 +6 -0
- package/lib/index.d.ts +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
|
|
6
12
|
## [5.0.33](https://github.com/feathersjs/feathers/compare/v5.0.32...v5.0.33) (2025-02-24)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/lib/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export declare const queryProperty: <T extends TSchema, X extends {
|
|
|
67
67
|
* @param extensions Additional properties to add to a property query
|
|
68
68
|
* @returns The Feathers query syntax schema
|
|
69
69
|
*/
|
|
70
|
-
export declare const queryProperties: <T extends TObject, X extends { [
|
|
70
|
+
export declare const queryProperties: <T extends TObject, X extends { [K_1 in keyof T["properties"]]?: {
|
|
71
71
|
[key: string]: TSchema;
|
|
72
72
|
}; }>(definition: T, extensions?: X) => TOptional<TObject<{ [K in keyof T["properties"]]: TOptional<TUnion<[T["properties"][K], import("@sinclair/typebox").TPartial<TIntersect<[TObject<{
|
|
73
73
|
$gt: T["properties"][K];
|
|
@@ -87,7 +87,7 @@ export declare const queryProperties: <T extends TObject, X extends { [K in keyo
|
|
|
87
87
|
* @param options Options for the TypeBox object schema
|
|
88
88
|
* @returns A TypeBox object representing the complete Feathers query syntax for the given properties
|
|
89
89
|
*/
|
|
90
|
-
export declare const querySyntax: <T extends TObject, X extends { [
|
|
90
|
+
export declare const querySyntax: <T extends TObject, X extends { [K_2 in keyof T["properties"]]?: {
|
|
91
91
|
[key: string]: TSchema;
|
|
92
92
|
}; }>(type: T, extensions?: X, options?: ObjectOptions) => TIntersect<[import("@sinclair/typebox").TPartial<TObject<{
|
|
93
93
|
$limit: import("@sinclair/typebox").TNumber;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersjs/typebox",
|
|
3
3
|
"description": "TypeBox integration for @feathersjs/schema",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.34",
|
|
5
5
|
"homepage": "https://feathersjs.com",
|
|
6
6
|
"main": "lib/",
|
|
7
7
|
"types": "lib/",
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@feathersjs/schema": "^5.0.
|
|
57
|
+
"@feathersjs/schema": "^5.0.34",
|
|
58
58
|
"@sinclair/typebox": "^0.25.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/mocha": "^10.0.10",
|
|
62
|
-
"@types/node": "^22.
|
|
63
|
-
"mocha": "^11.
|
|
64
|
-
"shx": "^0.
|
|
65
|
-
"typescript": "^5.
|
|
62
|
+
"@types/node": "^22.15.3",
|
|
63
|
+
"mocha": "^11.2.2",
|
|
64
|
+
"shx": "^0.4.0",
|
|
65
|
+
"typescript": "^5.8.3"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "3c12b722c136fa5aae32bc94fa24b3edec85dd96"
|
|
68
68
|
}
|