@mintlify/validation 0.1.371 → 0.1.373

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.
@@ -0,0 +1,4 @@
1
+ import { z } from 'zod';
2
+ import { standardConfigSchema } from './reusable/index.js';
3
+ import { themeSchema } from './themes.js';
4
+ export const aspenConfigSchema = z.object(Object.assign({ theme: z.literal(themeSchema.enum.aspen) }, standardConfigSchema));
@@ -1,4 +1,4 @@
1
1
  import { z } from 'zod';
2
- export declare const themes: readonly ["mint", "maple", "palm", "willow", "linden", "almond"];
3
- export declare const themeSchema: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond"]>;
2
+ export declare const themes: readonly ["mint", "maple", "palm", "willow", "linden", "almond", "aspen"];
3
+ export declare const themeSchema: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond", "aspen"]>;
4
4
  export type ThemeType = z.infer<typeof themeSchema>;
@@ -1,3 +1,3 @@
1
1
  import { z } from 'zod';
2
- export const themes = ['mint', 'maple', 'palm', 'willow', 'linden', 'almond'];
2
+ export const themes = ['mint', 'maple', 'palm', 'willow', 'linden', 'almond', 'aspen'];
3
3
  export const themeSchema = z.enum(themes);