Added:
Conditional.Extends(...)
Thich enables TypeBox to conditionally map types inline with TypeScripts structural equivelence checks. Tested against TypeScript 4.7.4.Conditional.Extract(...)
Which analogs TypeScriptsExtract<...>
utility type. Additional information hereConditional.Exclude(...)
Which analogs TypeScriptsExclude<...>
utility type. Additional information hereType.Parameters(...)
Returns the parameters of aTFunction
as aTTuple
Type.ReturnType(...)
Returns the return type schema of aTFunction
Type.ConstructorParameters(...)
Returns the parameters of aTConstructor
as aTTuple
Type.InstanceType(...)
Returns the instance type schema of aTConstructor
Added:
Value.Cast(T, value)
structurally casts a value into another form while retaining information within the original value.Value.Check(T, value)
provides slow dynamic type checking for values. For performance, one should consider theTypeCompiler
orAjv
validator.Value.Errors(T, value)
returns an iterable iterator errors found in a given value.
Added:
- TypeBox now offers a
TypeGuard
module for structurally checking TypeBox schematics. This module can be used in runtime type reflection scenarios where it's helpful to test a schema is of a particular form. This module can be imported under the@sinclair/typebox/guard
import path.
Example:
import { TypeGuard } from '@sinclair/typebox/guard'
const T: any = {} // T is any
const { type } = T // unsafe: type is any
if(TypeGuard.TString(T)) {
const { type } = T // safe: type is 'string'
}
Changes:
- The
kind
andmodifier
keywords are now expressed as symbol keys. This change allows AJV to leverage TypeBox schemas directly without explicit configuration ofkind
andmodifier
in strict mode. Type.Intersect([...])
now returns a compositeTObject
instead of aallOf
schema representation. This change allows intersected types to be leveraged in calls toOmit
,Pick
,Partial
,Required
.Type.Void(...)
now generates a{ type: null }
schema representation. This is principally used for RPC implementations where a RPC target function needs to respond with a serializable value forvoid
return.Type.Rec(...)
renamed toType.Recursive(...)
and now supports non-mutual recursive type inference.
Added:
Type.Unsafe<T>(...)
. This type enables custom schema representations whose static type is informed by generic type T.Type.Uint8Array(...)
. This is a non-standard schema that can be configured on AJV to enable binary buffer range validation.- Added optional extended
design
property on all schema options. This property can be used to specify design time metadata when rendering forms.
Compiler:
- TypeBox now provides an optional experimental type compiler that can be used to validate types without AJV. This compiler is not a standard JSON schema compiler and will only compile TypeBox's known schema representations. For full JSON schema validation, AJV should still be the preference. This compiler is a work in progress.
Value:
- TypeBox now provides a value generator that can generate default values from TypeBox types.
Breaking Changes:
Type.Intersect(...)
is constrained to accept types ofTObject
only.Type.Namespace(...)
has been removed.- The types
TUnion
,TEnum
,KeyOf
andTLiteral<TString>[]
are all now expressed viaallOf
. For Open API users, Please considerType.Unsafe()
to expressenum
string union representations. Documentation on usingType.Unsafe()
can be found here
Updates:
- Fix: Rename BoxKind to NamespaceKind
Updates:
- The
Type.KeyOf(...)
type can now accept references ofType.Ref(TObject)
Updates:
- The types
Type.Namespace(...)
andType.Ref(...)
are promoted toStandard
. - TypeBox now includes an additional type named
TRef<...>
that is returned on calls toType.Ref(...)
. TheTRef<...>
includes a newRefKind
symbol for introspection of the reference type. - TypeBox now maintains an internal dictionary of all schemas passed that contain an
$id
property. This dictionary is checked whenever a user attempts to reference a type and will throw if attempting to reference a target schema with no$id
. - The types
Type.Partial(...)
,Type.Required(...)
,Type.Omit()
andType.Pick(...)
now support reference types. Note that when using these functions with references, TypeBox will replicate the source schema and apply the nessasary modifiers to the replication.
Updates:
- The type
TSchema
is now expressed as an HKT compatible interface. All types now extend theTSchema
interface and are themselves also expressed as interfaces. This work was undertaken to explore recursive type aliases in future releases. - The phantom property
_infer
has been renamed to$static
. Callers should not interact with this property as it will always beundefined
and used exclusively for optimizing type inference in TypeScript 4.5 and above. - TypeBox re-adds the feature to deeply introspect schema properties. This feature was temporarily removed on the
0.21.0
update to resolve deep instantiation errors on TypeScript 4.5. - The
Type.Box(...)
andType.Rec(...)
functions internally rename the propertydefinitions
to$defs
inline with JSON schema draft 2019-09 conventions. Reference here.
Updates:
- TypeBox now correctly infers for nested union and intersect types.
Before
const A = Type.Object({ a: Type.String() })
const B = Type.Object({ b: Type.String() })
const C = Type.Object({ c: Type.String() })
const T = Type.Intersect([A, Type.Union([B, C])])
// type T = { a: string } & { b: string } & { c: string }
After
const A = Type.Object({ a: Type.String() })
const B = Type.Object({ b: Type.String() })
const C = Type.Object({ c: Type.String() })
const T = Type.Intersect([A, Type.Union([B, C])])
// type T = { a: string } & ({ b: string } | { c: string })
Updates:
- TypeBox static inference has been updated inline with additional inference constraints added in TypeScript 4.5. All types now include a phantom
_infer
property which contains the inference TS type for a given schema. The type of this property is inferred at the construction of the schema, and referenced directly viaStatic<T>
. Type.Box(...)
has been renamed toType.Namespace(...)
to draw an analogy with XML'sxmlns
XSD types.
Updates:
- TypeBox mandates TypeScript compiler version
4.3.5
and above.
Updates:
- Function
Type.Rec(...)
signature change. - Minor documentation updates.
Notes:
The Type.Rec(...)
function signature has been changed to allow passing the $id
as a custom option. This is to align Type.Rec(...)
with other functions that accept $id
as an option. Type.Rec(...)
can work with or without an explicit $id
, but it is recommend to specify one if the recursive type is nested in an outer schema.
const Node = Type.Rec(Self => Type.Object({
id: Type.String(),
nodes: Type.Array(Self)
}), { $id: 'Node' })
Updates:
- Function
Type.Box(...)
removes$id
parameter as first argument. - Function
Type.Ref(...)
is now overloaded to support referencingType.Box(...)
andTSchema
.
Notes:
This update changes the signature of Type.Box(...)
and removes the explicit $id
passing on the first parameter. The $id
must be passed as an option if the caller wants to reference that type.
const T = Type.String({ $id: 'T' })
const B = Type.Box({ T }, { $id: 'B' })
const R1 = Type.Ref(T) // const R1 = { $ref: 'T' }
const R2 = Type.Ref(B, 'T') // const R2 = { $ref: 'B#/definitions/T' }
- Function
Type.Enum(...)
now expressed withanyOf
. This to remove theallowUnionTypes
configuration required to useenum
with in AJV strict. - Function
Type.Rec(...)
now takes a required$id
as the first parameter. - Function
Type.Strict(...)
no longer includes a$schema
. Callers can now optionally passCustomOptions
onType.Strict(...)
Changes:
- Function
Type.Intersect(...)
is now implemented withallOf
and constrained withunevaluatedProperties
(draft2019-09
) - Function
Type.Dict(...)
has been deprecated and replaced withType.Record(...)
. - Function
Type.Strict(...)
now includes the$schema
property referencing the2019-09
draft.
TypeBox now targets JSON schema draft 2019-09
for expressing Type.Intersect(...)
. This is now expressed via allOf
with additionalProperties constrained with unevaluatedProperties
. Note that unevaluatedProperties
is a feature of the 2019-09
specification.
TypeBox has deprecated Type.Dict(...)
in favor of the more generic Type.Record(...)
. Where as Type.Dict(...)
was previously expressed with additionalProperties: { ... }
, Type.Record(...)
is expressed with patternProperties
and supports both string
and number
indexer keys. Additionally, Type.Record(...)
supports string union arguments. This is analogous to TypeScript's utility record type Record<'a' | 'b' | 'c', T>
.
Changes:
- Added optional
$id
argument onType.Rec()
. - Documentation updates.
Changes:
- Added
Type.Rec(...)
function.
Notes:
This update introduces the Type.Rec()
function for enabling Recursive Types. Please note that due to current inference limitations in TypeScript, TypeBox is unable to infer the type and resolves inner types to any
.
This functionality enables for complex self referential schemas to be composed. The following creates a binary expression syntax node with the expression self referential for left and right oprands.
const Operator = Type.Union([
Type.Literal('+'),
Type.Literal('-'),
Type.Literal('/'),
Type.Literal('*')
])
type Expression = Static<typeof Expression>
// Defines a self referencing type.
const Expression = Type.Rec(Self => Type.Object({
left: Type.Union([Self, Type.Number()]),
right: Type.Union([Self, Type.Number()]),
operator: Operator
}))
function evaluate(expression: Expression): number {
const left = typeof expression.left !== 'number'
? evaluate(expression.left as Expression) // assert as Expression
: expression.left
const right = typeof expression.right !== 'number'
? evaluate(expression.right as Expression) // assert as Expression
: expression.right
switch(expression.operator) {
case '+': return left + right
case '-': return left - right
case '*': return left * right
case '/': return left / right
}
}
const result = evaluate({
left: {
left: 10,
operator: '*',
right: 4,
},
operator: '+',
right: 2,
}) // -> 42
This functionality is flagged as EXPERIMENTAL
and awaits community feedback.
Changes:
- Added
Type.Box()
andType.Ref()
functions.
Notes:
This update provides the Type.Box()
function to enable common related schemas to grouped under a common namespace; typically expressed as a URI
. This functionality is primarily geared towards allowing one to define a common set of domain objects that may be shared across application domains running over a network. The Type.Box()
is intended to be an analog to XML
xmlns
namespacing.
The Type.Ref()
function is limited to referencing from boxes only. The following is an example.
// Domain objects for the fruit service.
const Fruit = Type.Box('https://fruit.domain.com', {
Apple: Type.Object({ ... }),
Orange: Type.Object({ ... }),
})
// An order referencing types of the fruit service.
const Order = Type.Object({
id: Type.String(),
quantity: Type.Number(),
item: Type.Union([
Type.Ref(Fruit, 'Apple'),
Type.Ref(Fruit, 'Orange')
])
})
Note: As of this release, the
Type.Omit()
,Type.Pick()
,Type.Partial()
,Type.Readonly()
andType.Intersect()
functions do not work with Reference Types. This may change in later revisions.
For validation using Ajv
, its possible to apply the Box
directly as a schema.
ajv.addSchema(Fruit) // makes all boxed types known to Ajv
This functionality is flagged as EXPERIMENTAL
and awaits community feedback.
- Remove default
additionalProperties: false
constraint from all object schemas.
This update removes the additionalProperties: false
constraint on all object schemas. This constraint was introduced on 0.16.x
but has resulted in significant downstream problems composing schemas whose types intersect
. This is due to a JSON schema design principle where constraints should only be added (never removed), and that intersection types may require removal of the additionalProperties
constraint in some cases, this had resulted in some ambiguity with respect to how TypeBox should handle such intersections.
This update can also be seen as a precursor towards TypeBox potentially leveraging unevaluatedProperties
for type intersection in future releases. Implementors should take note that in order to constrain the schema to known properties, one should apply the additionalProperties: false
as the second argument to Type.Object({...})
.
const T = Type.Object({
a: Type.String(),
b: Type.Number()
}, {
additionalProperties: false
})