forked from webpack/schema-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into more-info-for-object-properties
# Conflicts: # src/ValidationError.js # test/__snapshots__/index.test.js.snap
- Loading branch information
Showing
23 changed files
with
2,281 additions
and
1,104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
export default ValidationError; | ||
export type JSONSchema6 = import('json-schema').JSONSchema6; | ||
export type JSONSchema7 = import('json-schema').JSONSchema7; | ||
export type Schema = | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7; | ||
export type ValidationErrorConfiguration = { | ||
name?: string | undefined; | ||
baseDataPath?: string | undefined; | ||
postFormatter?: import('./validate').PostFormatter | undefined; | ||
}; | ||
export type PostFormatter = ( | ||
formattedError: string, | ||
error: import('ajv').ErrorObject & { | ||
children?: import('ajv').ErrorObject[] | undefined; | ||
} | ||
) => string; | ||
export type SchemaUtilErrorObject = import('ajv').ErrorObject & { | ||
children?: import('ajv').ErrorObject[] | undefined; | ||
}; | ||
export type SPECIFICITY = number; | ||
declare class ValidationError extends Error { | ||
/** | ||
* @param {Array<SchemaUtilErrorObject>} errors | ||
* @param {Schema} schema | ||
* @param {ValidationErrorConfiguration} configuration | ||
*/ | ||
constructor( | ||
errors: (import('ajv').ErrorObject & { | ||
children?: import('ajv').ErrorObject[] | undefined; | ||
})[], | ||
schema: | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7, | ||
configuration?: import('./validate').ValidationErrorConfiguration | ||
); | ||
/** @type {Array<SchemaUtilErrorObject>} */ | ||
errors: Array<SchemaUtilErrorObject>; | ||
/** @type {Schema} */ | ||
schema: Schema; | ||
/** @type {string} */ | ||
headerName: string; | ||
/** @type {string} */ | ||
baseDataPath: string; | ||
/** @type {PostFormatter | null} */ | ||
postFormatter: PostFormatter | null; | ||
/** | ||
* @param {string} path | ||
* @returns {Schema} | ||
*/ | ||
getSchemaPart( | ||
path: string | ||
): | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7; | ||
/** | ||
* @param {Schema} schema | ||
* @param {Array<Object>} prevSchemas | ||
* @returns {string} | ||
*/ | ||
formatSchema( | ||
schema: | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7, | ||
prevSchemas?: Object[] | ||
): string; | ||
/** | ||
* @param {Schema=} schemaPart | ||
* @param {(boolean | Array<string>)=} additionalPath | ||
* @param {boolean=} needDot | ||
* @returns {string} | ||
*/ | ||
getSchemaPartText( | ||
schemaPart?: | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7 | ||
| undefined, | ||
additionalPath?: boolean | string[] | undefined, | ||
needDot?: boolean | undefined | ||
): string; | ||
/** | ||
* @param {Schema=} schemaPart | ||
* @returns {string} | ||
*/ | ||
getSchemaPartDescription( | ||
schemaPart?: | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7 | ||
| undefined | ||
): string; | ||
/** | ||
* @param {SchemaUtilErrorObject} error | ||
* @returns {string} | ||
*/ | ||
formatValidationError( | ||
error: import('ajv').ErrorObject & { | ||
children?: import('ajv').ErrorObject[] | undefined; | ||
} | ||
): string; | ||
/** | ||
* @param {Array<SchemaUtilErrorObject>} errors | ||
* @returns {string} | ||
*/ | ||
formatValidationErrors( | ||
errors: (import('ajv').ErrorObject & { | ||
children?: import('ajv').ErrorObject[] | undefined; | ||
})[] | ||
): string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
declare const _exports: typeof import('./validate').default; | ||
export = _exports; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export default addAbsolutePathKeyword; | ||
export type Ajv = import('ajv').Ajv; | ||
export type SchemaUtilErrorObject = import('ajv').ErrorObject & { | ||
children?: import('ajv').ErrorObject[] | undefined; | ||
}; | ||
/** | ||
* | ||
* @param {Ajv} ajv | ||
* @returns {Ajv} | ||
*/ | ||
declare function addAbsolutePathKeyword( | ||
ajv: import('ajv').Ajv | ||
): import('ajv').Ajv; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
export = Range; | ||
/** | ||
* @typedef {[number, boolean]} RangeValue | ||
*/ | ||
/** | ||
* @callback RangeValueCallback | ||
* @param {RangeValue} rangeValue | ||
* @returns {boolean} | ||
*/ | ||
declare class Range { | ||
/** @type {Array<RangeValue>} */ | ||
_left: Array<RangeValue>; | ||
/** @type {Array<RangeValue>} */ | ||
_right: Array<RangeValue>; | ||
/** | ||
* @param {number} value | ||
* @param {boolean=} exclusive | ||
*/ | ||
left(value: number, exclusive?: boolean | undefined): void; | ||
/** | ||
* @param {number} value | ||
* @param {boolean=} exclusive | ||
*/ | ||
right(value: number, exclusive?: boolean | undefined): void; | ||
/** | ||
* @param {boolean} logic is not logic applied | ||
* @return {string} "smart" range string representation | ||
*/ | ||
format(logic?: boolean): string; | ||
} | ||
declare namespace Range { | ||
export { | ||
getOperator, | ||
formatRight, | ||
formatLeft, | ||
formatRange, | ||
getRangeValue, | ||
RangeValue, | ||
RangeValueCallback, | ||
}; | ||
} | ||
type RangeValue = [number, boolean]; | ||
type RangeValueCallback = (rangeValue: [number, boolean]) => boolean; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
export default validate; | ||
export type JSONSchema4 = import('json-schema').JSONSchema4; | ||
export type JSONSchema6 = import('json-schema').JSONSchema6; | ||
export type JSONSchema7 = import('json-schema').JSONSchema7; | ||
export type ErrorObject = Ajv.ErrorObject; | ||
export type Schema = | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7; | ||
export type SchemaUtilErrorObject = Ajv.ErrorObject & { | ||
children?: Ajv.ErrorObject[] | undefined; | ||
}; | ||
export type PostFormatter = ( | ||
formattedError: string, | ||
error: Ajv.ErrorObject & { | ||
children?: Ajv.ErrorObject[] | undefined; | ||
} | ||
) => string; | ||
export type ValidationErrorConfiguration = { | ||
name?: string | undefined; | ||
baseDataPath?: string | undefined; | ||
postFormatter?: PostFormatter | undefined; | ||
}; | ||
/** | ||
* @param {Schema} schema | ||
* @param {Array<object> | object} options | ||
* @param {ValidationErrorConfiguration=} configuration | ||
* @returns {void} | ||
*/ | ||
declare function validate( | ||
schema: | ||
| import('json-schema').JSONSchema4 | ||
| import('json-schema').JSONSchema6 | ||
| import('json-schema').JSONSchema7, | ||
options: any, | ||
configuration?: ValidationErrorConfiguration | undefined | ||
): void; | ||
declare namespace validate { | ||
export { _default as ValidationError, _default as ValidateError }; | ||
} | ||
import Ajv from 'ajv'; |
Oops, something went wrong.