@code-pushup/models 0.5.0 → 0.5.2

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,3 @@
1
+ export declare const PERSIST_OUTPUT_DIR = ".code-pushup";
2
+ export declare const PERSIST_FORMAT: "json"[];
3
+ export declare const PERSIST_FILENAME = "report";
@@ -2,15 +2,15 @@ import { z } from 'zod';
2
2
  export declare const formatSchema: z.ZodEnum<["json", "md"]>;
3
3
  export type Format = z.infer<typeof formatSchema>;
4
4
  export declare const persistConfigSchema: z.ZodObject<{
5
- outputDir: z.ZodString;
6
- filename: z.ZodDefault<z.ZodString>;
5
+ outputDir: z.ZodOptional<z.ZodString>;
6
+ filename: z.ZodOptional<z.ZodString>;
7
7
  format: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodEnum<["json", "md"]>, "many">>>;
8
8
  }, "strip", z.ZodTypeAny, {
9
- outputDir: string;
10
- filename: string;
9
+ outputDir?: string | undefined;
10
+ filename?: string | undefined;
11
11
  format?: ("json" | "md")[] | undefined;
12
12
  }, {
13
- outputDir: string;
13
+ outputDir?: string | undefined;
14
14
  filename?: string | undefined;
15
15
  format?: ("json" | "md")[] | undefined;
16
16
  }>;