@mintlify/validation
Advanced tools
Comparing version 0.1.3 to 0.1.4
@@ -24,3 +24,3 @@ import { z } from "zod"; | ||
auth: z.ZodOptional<z.ZodObject<{ | ||
method: z.ZodOptional<z.ZodString>; | ||
method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"bearer">, z.ZodLiteral<"basic">, z.ZodLiteral<"key">]>>; | ||
name: z.ZodOptional<z.ZodString>; | ||
@@ -30,7 +30,7 @@ inputPrefix: z.ZodOptional<z.ZodString>; | ||
name?: string | undefined; | ||
method?: string | undefined; | ||
method?: "bearer" | "basic" | "key" | undefined; | ||
inputPrefix?: string | undefined; | ||
}, { | ||
name?: string | undefined; | ||
method?: string | undefined; | ||
method?: "bearer" | "basic" | "key" | undefined; | ||
inputPrefix?: string | undefined; | ||
@@ -43,3 +43,3 @@ }>>; | ||
name?: string | undefined; | ||
method?: string | undefined; | ||
method?: "bearer" | "basic" | "key" | undefined; | ||
inputPrefix?: string | undefined; | ||
@@ -52,3 +52,3 @@ } | undefined; | ||
name?: string | undefined; | ||
method?: string | undefined; | ||
method?: "bearer" | "basic" | "key" | undefined; | ||
inputPrefix?: string | undefined; | ||
@@ -402,3 +402,3 @@ } | undefined; | ||
name?: string | undefined; | ||
method?: string | undefined; | ||
method?: "bearer" | "basic" | "key" | undefined; | ||
inputPrefix?: string | undefined; | ||
@@ -522,3 +522,3 @@ } | undefined; | ||
name?: string | undefined; | ||
method?: string | undefined; | ||
method?: "bearer" | "basic" | "key" | undefined; | ||
inputPrefix?: string | undefined; | ||
@@ -525,0 +525,0 @@ } | undefined; |
{ | ||
"name": "@mintlify/validation", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "Validates mint.json files", | ||
@@ -35,3 +35,3 @@ "main": "./dist/index.js", | ||
"author": "Mintlify, Inc.", | ||
"license": "MIT", | ||
"license": "Elastic-2.0", | ||
"type": "commonjs", | ||
@@ -38,0 +38,0 @@ "devDependencies": { |
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
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
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
125527
2
90