mirror of
https://github.com/zoriya/typebox.git
synced 2025-12-06 06:46:10 +00:00
707 B
707 B
0.19.0
Updates:
- Function
Type.Box(...)removes$idparameter 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' }