Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
37
my-app/node_modules/ajv/lib/vocabularies/jtd/index.ts
generated
vendored
Executable file
37
my-app/node_modules/ajv/lib/vocabularies/jtd/index.ts
generated
vendored
Executable file
|
@ -0,0 +1,37 @@
|
|||
import type {Vocabulary} from "../../types"
|
||||
import refKeyword from "./ref"
|
||||
import typeKeyword, {JTDTypeError} from "./type"
|
||||
import enumKeyword, {JTDEnumError} from "./enum"
|
||||
import elements, {JTDElementsError} from "./elements"
|
||||
import properties, {JTDPropertiesError} from "./properties"
|
||||
import optionalProperties from "./optionalProperties"
|
||||
import discriminator, {JTDDiscriminatorError} from "./discriminator"
|
||||
import values, {JTDValuesError} from "./values"
|
||||
import union from "./union"
|
||||
import metadata from "./metadata"
|
||||
|
||||
const jtdVocabulary: Vocabulary = [
|
||||
"definitions",
|
||||
refKeyword,
|
||||
typeKeyword,
|
||||
enumKeyword,
|
||||
elements,
|
||||
properties,
|
||||
optionalProperties,
|
||||
discriminator,
|
||||
values,
|
||||
union,
|
||||
metadata,
|
||||
{keyword: "additionalProperties", schemaType: "boolean"},
|
||||
{keyword: "nullable", schemaType: "boolean"},
|
||||
]
|
||||
|
||||
export default jtdVocabulary
|
||||
|
||||
export type JTDErrorObject =
|
||||
| JTDTypeError
|
||||
| JTDEnumError
|
||||
| JTDElementsError
|
||||
| JTDPropertiesError
|
||||
| JTDDiscriminatorError
|
||||
| JTDValuesError
|
Loading…
Add table
Add a link
Reference in a new issue