Skip to content

Commit 834e819

Browse files
committed
publish: bump version to v10.5.2
1 parent 81f8e71 commit 834e819

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.d.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type JsonSchemaValidatorParams = {
4040
interface JsonSchemaValidator {
4141
toJSON?: () => string;
4242
order?: number;
43-
(options: JsonSchemaValidatorParams): undefined | ValidationResult | ValidationResult[];
43+
(options: JsonSchemaValidatorParams): undefined | Promise<undefined> | ValidationResult | ValidationResult[];
4444
}
4545
type Keyword = {
4646
id: string;

dist/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type JsonSchemaValidatorParams = {
4040
interface JsonSchemaValidator {
4141
toJSON?: () => string;
4242
order?: number;
43-
(options: JsonSchemaValidatorParams): undefined | ValidationResult | ValidationResult[];
43+
(options: JsonSchemaValidatorParams): undefined | Promise<undefined> | ValidationResult | ValidationResult[];
4444
}
4545
type Keyword = {
4646
id: string;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-schema-library",
3-
"version": "10.5.1",
3+
"version": "10.5.2",
44
"description": "Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

0 commit comments

Comments
 (0)