justus 0.5.32 → 0.5.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/dist/registry.d.ts +1 -1
- package/dist/schema.d.ts +1 -1
- package/package.json +4 -4
package/dist/registry.d.ts
CHANGED
|
@@ -11,6 +11,6 @@ export declare const registry: {
|
|
|
11
11
|
/** Registers the specified validator constructor */
|
|
12
12
|
set<K extends keyof RegistryTypes>(key: K, constructor: RegistryTypes[K]): void;
|
|
13
13
|
/** Retrieves the specified validator constructor */
|
|
14
|
-
get<
|
|
14
|
+
get<K extends keyof RegistryTypes>(key: K): RegistryTypes[K];
|
|
15
15
|
};
|
|
16
16
|
export {};
|
package/dist/schema.d.ts
CHANGED
|
@@ -14,5 +14,5 @@ declare namespace additionalProperties { }
|
|
|
14
14
|
*
|
|
15
15
|
* @param allow - A `boolean` or a `Validator` instance
|
|
16
16
|
*/
|
|
17
|
-
export declare const allowAdditionalProperties: typeof additionalProperties & AdditionalProperties<Validator<any
|
|
17
|
+
export declare const allowAdditionalProperties: typeof additionalProperties & AdditionalProperties<Validator<any>>;
|
|
18
18
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "justus",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.34",
|
|
4
4
|
"description": "A JavaScript validation library, with types!",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"author": "Juit Developers <developers@juit.com>",
|
|
79
79
|
"license": "Apache-2.0",
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@plugjs/build": "^0.5.
|
|
82
|
-
"@plugjs/tsd": "^0.5.
|
|
83
|
-
"typescript": "^5.
|
|
81
|
+
"@plugjs/build": "^0.5.43",
|
|
82
|
+
"@plugjs/tsd": "^0.5.42",
|
|
83
|
+
"typescript": "^5.5.2"
|
|
84
84
|
},
|
|
85
85
|
"directories": {
|
|
86
86
|
"test": "test"
|