A function that transforms an input into another type, or an invalid result if the input violates the schema.
A function that transforms an input into another type, or throws if the input is invalid.
A type that represents either a valid or invalid input.
Returns a mapper that passes the output of each mapper to the next mapper.
Defines a mapper that reads the values from an input and invokes a builder to transform data from one schema to another.
The mapper that reads values from the input an creates an
intermediate format that will be passed to the builder
.
A mapper that takes the output of reader
and constructs the
output format.
Returns a mapper that extracts a property's value.
The property to extract.
Returns a function that throws an error if the input is invalid. Otherwise returns the result.
A mapper that will be invoked with the input.
A type guard that checks if the object is an Invalid
type.
Returns a mapper that will check if the given property is defined, and if so invoke the given mapping function.
The name of the property to map over.
A function that will be invoked with the property's value if the property is defined.
Returns a mapper that returns the first defined result of a mapper. If all
mappers return undefined
, then undefined
is returned.
Accumulates the results of mappers into an array.
Returns a mapper that asserts the input is not null or not undefined.
A name to report when invalid.
Returns a mapper that asserts a property on the input is not null or not defined.
The prop to assert.
A mapper that returns the property's value.
A module for defining functional schemas to map between different types. This module is useful for parsing to or from JSON/protobufs to domain types.
Mappers support greedy validation, so all validation errors are aggregated and reported vs failing on the first invalid input.
// { // errors: ["Name is required.", "Address is required."] // }