@code-pushup/models 0.46.0 → 0.48.0

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.
@@ -1,6 +1,6 @@
1
1
  import { ZodObject, ZodOptional, ZodString, z } from 'zod';
2
- export declare const primitiveValueSchema: z.ZodUnion<[ZodString, z.ZodNumber]>;
3
- export type PrimitiveValue = z.infer<typeof primitiveValueSchema>;
2
+ export declare const tableCellValueSchema: z.ZodDefault<z.ZodUnion<[ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
3
+ export type TableCellValue = z.infer<typeof tableCellValueSchema>;
4
4
  /**
5
5
  * Schema for execution meta date
6
6
  */