@mintlify/validation
Advanced tools
Comparing version 0.1.32 to 0.1.33
@@ -66,5 +66,5 @@ export type Endpoint = { | ||
export type DataSchemaArray = [DataSchema, ...DataSchema[]]; | ||
export declare const typeList: readonly ["boolean", "string", "number", "integer", "object", "array", "stringEnum", "numberEnum", "integerEnum", "null"]; | ||
export declare const typeList: readonly ["boolean", "string", "number", "integer", "object", "array", "stringEnum", "numberEnum", "integerEnum", "null", "any"]; | ||
export type SchemaType = typeof typeList[number]; | ||
export type DataSchema = BooleanSchema | StringSchema | NumberSchema | ObjectSchema | ArraySchema | StringEnumSchema | NumberEnumSchema | NullSchema; | ||
export type DataSchema = BooleanSchema | StringSchema | NumberSchema | ObjectSchema | ArraySchema | StringEnumSchema | NumberEnumSchema | NullSchema | AnySchema; | ||
export type BaseSchema<T> = { | ||
@@ -126,2 +126,5 @@ type: SchemaType; | ||
} & BaseSchema<null>; | ||
export type AnySchema = { | ||
type: 'any'; | ||
} & BaseSchema<unknown>; | ||
export {}; |
{ | ||
"name": "@mintlify/validation", | ||
"version": "0.1.32", | ||
"version": "0.1.33", | ||
"description": "Validates mint.json files", | ||
@@ -71,3 +71,3 @@ "author": "Mintlify, Inc.", | ||
}, | ||
"gitHead": "7df2e10cb92419779dccd1411d65f760560bf93e" | ||
"gitHead": "499c04a31113ecd31c5a72c1ad58f0cfdfeb25b7" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
2484069
1342
0