@mintlify/validation 0.1.542 → 0.1.544

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mintlify/validation",
3
- "version": "0.1.542",
3
+ "version": "0.1.544",
4
4
  "description": "Validates mint.json files",
5
5
  "author": "Mintlify, Inc.",
6
6
  "bugs": {
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@mintlify/mdx": "^3.0.4",
39
- "@mintlify/models": "0.0.248",
39
+ "@mintlify/models": "0.0.249",
40
40
  "arktype": "2.1.27",
41
41
  "js-yaml": "4.1.0",
42
42
  "lcm": "0.0.3",
@@ -65,5 +65,5 @@
65
65
  "typescript": "5.5.3",
66
66
  "vitest": "2.0.4"
67
67
  },
68
- "gitHead": "a10844409d9127afe9abd742f38a87615db7f6cb"
68
+ "gitHead": "c1c02d0b5a26aca170443dc173d217484f5e651e"
69
69
  }
@@ -1,3 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const snippetsSchema: z.ZodArray<z.ZodString, "many">;
3
- export type SnippetsConfig = z.infer<typeof snippetsSchema>;
@@ -1,4 +0,0 @@
1
- import { z } from 'zod';
2
- export const snippetsSchema = z
3
- .array(z.string())
4
- .describe('Glob patterns specifying additional locations where snippet files can be placed. The default /snippets/ folder is always included.');