Interface: RecordValidator<T>
Defined in: projects/shapeshift/src/validators/RecordValidator.ts:9
Extends
- BaseValidator<- Record<- string,- T>>
Type Parameters
| Type Parameter | 
|---|
| T | 
Properties
constraints
protectedconstraints: readonlyIConstraint<Record<string,T>,Record<string,T>>[] =[]
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:19
Inherited from
description?
optionaldescription:string
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:16
Inherited from
isValidationEnabled
protectedisValidationEnabled:null|boolean| () =>boolean=null
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:20
Inherited from
BaseValidator.isValidationEnabled
parent?
protectedoptionalparent:object
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:18
Inherited from
validatorOptions
protectedvalidatorOptions:ValidatorOptions
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:17
Inherited from
BaseValidator.validatorOptions
Accessors
shouldRunConstraints
Get Signature
get
protectedshouldRunConstraints():boolean
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:143
Returns
boolean
Inherited from
BaseValidator.shouldRunConstraints
Methods
addConstraint()
protectedaddConstraint(constraint:IConstraint<Record<string,T>>,validatorOptions:ValidatorOptions):this
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:155
Parameters
| Parameter | Type | 
|---|---|
| constraint | IConstraint<Record<string,T>> | 
| validatorOptions | ValidatorOptions | 
Returns
this
Inherited from
array()
array(
options:ValidatorOptions):ArrayValidator<Record<string,T>[]>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:44
Parameters
| Parameter | Type | 
|---|---|
| options | ValidatorOptions | 
Returns
ArrayValidator<Record<string, T>[]>
Inherited from
clone()
protectedclone():this
Defined in: projects/shapeshift/src/validators/RecordValidator.ts:21
Returns
this
Overrides
default()
default(
value:Record<string,T> | () =>Exclude<T,undefined>,options:ValidatorOptions):DefaultValidator<Record<string,T>>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:81
Parameters
| Parameter | Type | 
|---|---|
| value | Record<string,T> | () =>Exclude<T,undefined> | 
| options | ValidatorOptions | 
Returns
DefaultValidator<Record<string, T>>
Inherited from
describe()
describe(
description:string):this
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:96
Parameters
| Parameter | Type | 
|---|---|
| description | string | 
Returns
this
Inherited from
getValidationEnabled()
getValidationEnabled():
null|boolean
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:139
Returns
null | boolean
Inherited from
BaseValidator.getValidationEnabled
handle()
protectedhandle(value:unknown):Result<Record<string,T>,ValidationError|CombinedPropertyError>
Defined in: projects/shapeshift/src/validators/RecordValidator.ts:25
Parameters
| Parameter | Type | 
|---|---|
| value | unknown | 
Returns
Result<Record<string, T>, ValidationError | CombinedPropertyError>
Overrides
is()
is<
R>(value:unknown):value is R
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:124
Type Parameters
| Type Parameter | Default type | 
|---|---|
| RextendsRecord<string,T> | Record<string,T> | 
Parameters
| Parameter | Type | 
|---|---|
| value | unknown | 
Returns
value is R
Inherited from
nullable()
nullable(
options:ValidatorOptions):UnionValidator<null|Record<string,T>>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:36
Parameters
| Parameter | Type | 
|---|---|
| options | ValidatorOptions | 
Returns
UnionValidator<null | Record<string, T>>
Inherited from
nullish()
nullish(
options:ValidatorOptions):UnionValidator<undefined|null|Record<string,T>>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:40
Parameters
| Parameter | Type | 
|---|---|
| options | ValidatorOptions | 
Returns
UnionValidator<undefined | null | Record<string, T>>
Inherited from
optional()
optional(
options:ValidatorOptions):UnionValidator<undefined|Record<string,T>>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:32
Parameters
| Parameter | Type | 
|---|---|
| options | ValidatorOptions | 
Returns
UnionValidator<undefined | Record<string, T>>
Inherited from
or()
or<
O>(...predicates: readonlyBaseValidator<O>[]):UnionValidator<Record<string,T> |O>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:52
Type Parameters
| Type Parameter | 
|---|
| O | 
Parameters
| Parameter | Type | 
|---|---|
| ... predicates | readonly BaseValidator<O>[] | 
Returns
UnionValidator<Record<string, T> | O>
Inherited from
parse()
parse<
R>(value:unknown):R
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:114
Type Parameters
| Type Parameter | Default type | 
|---|---|
| RextendsRecord<string,T> | Record<string,T> | 
Parameters
| Parameter | Type | 
|---|---|
| value | unknown | 
Returns
R
Inherited from
reshape()
Call Signature
reshape(
cb: (input:T) =>Result<Record<string,T>>,options?:ValidatorOptions):this
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:67
Parameters
| Parameter | Type | 
|---|---|
| cb | ( input:T) =>Result<Record<string,T>> | 
| options? | ValidatorOptions | 
Returns
this
Inherited from
Call Signature
reshape<
R,O>(cb: (input:T) =>R,options?:ValidatorOptions):BaseValidator<O>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:68
Type Parameters
| Type Parameter | Default type | 
|---|---|
| RextendsResult<unknown,Error> | - | 
| O | InferResultType<R> | 
Parameters
| Parameter | Type | 
|---|---|
| cb | ( input:T) =>R | 
| options? | ValidatorOptions | 
Returns
Inherited from
run()
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:102
Parameters
| Parameter | Type | 
|---|---|
| value | unknown | 
Returns
Result<Record<string, T>, BaseError>
Inherited from
set()
set(
options:ValidatorOptions):SetValidator<Record<string,T>>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:48
Parameters
| Parameter | Type | 
|---|---|
| options | ValidatorOptions | 
Returns
SetValidator<Record<string, T>>
Inherited from
setParent()
setParent(
parent:object):this
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:27
Parameters
| Parameter | Type | 
|---|---|
| parent | object | 
Returns
this
Inherited from
setValidationEnabled()
setValidationEnabled(
isValidationEnabled:null|boolean| () =>boolean):this
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:133
Sets if the validator should also run constraints or just do basic checks.
Parameters
| Parameter | Type | Description | 
|---|---|---|
| isValidationEnabled | null|boolean| () =>boolean | Whether this validator should be enabled or disabled. You can pass boolean or a function returning boolean which will be called just before parsing. Set to nullto go off of the global configuration. | 
Returns
this
Inherited from
BaseValidator.setValidationEnabled
transform()
Call Signature
transform(
cb: (value:T) =>T,options?:ValidatorOptions):this
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:56
Parameters
| Parameter | Type | 
|---|---|
| cb | ( value:T) =>T | 
| options? | ValidatorOptions | 
Returns
this
Inherited from
Call Signature
transform<
O>(cb: (value:T) =>O,options?:ValidatorOptions):BaseValidator<O>
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:57
Type Parameters
| Type Parameter | 
|---|
| O | 
Parameters
| Parameter | Type | 
|---|---|
| cb | ( value:T) =>O | 
| options? | ValidatorOptions | 
Returns
Inherited from
when()
when<
Key,This>(key:Key,options:WhenOptions<This,Key>,validatorOptions?:ValidatorOptions):this
Defined in: projects/shapeshift/src/validators/BaseValidator.ts:88
Type Parameters
| Type Parameter | Default type | 
|---|---|
| KeyextendsWhenKey | - | 
| ThisextendsBaseValidator<any> | RecordValidator<T> | 
Parameters
| Parameter | Type | 
|---|---|
| key | Key | 
| options | WhenOptions<This,Key> | 
| validatorOptions? | ValidatorOptions | 
Returns
this