@code-pushup/models
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -530,2 +530,3 @@ // packages/models/src/lib/category-config.ts | ||
categoryConfigSchema, | ||
categoryRefSchema, | ||
coreConfigSchema, | ||
@@ -532,0 +533,0 @@ formatSchema, |
{ | ||
"name": "@code-pushup/models", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"dependencies": { | ||
@@ -5,0 +5,0 @@ "zod": "^3.22.1", |
@@ -1,2 +0,2 @@ | ||
export { CategoryConfig, CategoryRef, categoryConfigSchema, } from './lib/category-config'; | ||
export { CategoryConfig, CategoryRef, categoryRefSchema, categoryConfigSchema, } from './lib/category-config'; | ||
export { CoreConfig, coreConfigSchema, refineCoreConfig, unrefinedCoreConfigSchema, } from './lib/core-config'; | ||
@@ -3,0 +3,0 @@ export { Format, PersistConfig, formatSchema, persistConfigSchema, } from './lib/persist-config'; |
import { z } from 'zod'; | ||
declare const categoryRefSchema: z.ZodObject<{ | ||
export declare const categoryRefSchema: z.ZodObject<{ | ||
slug: z.ZodString; | ||
@@ -78,2 +78,1 @@ weight: z.ZodNumber; | ||
export declare function duplicateRefsInCategoryMetricsErrorMsg(metrics: CategoryRef[]): string; | ||
export {}; |
776149