This commit is contained in:
Luiz H. R. Silva 2024-07-01 13:17:11 -03:00
parent 78773e8943
commit 2747b6d509
8 changed files with 24 additions and 24 deletions

View file

@ -8,16 +8,16 @@ export declare const zp_serie_registrar: z.ZodObject<{
agregacao: z.ZodEnum<["contagem", "somatoria"]>;
filtros: z.ZodOptional<z.ZodArray<z.ZodObject<{
coluna: z.ZodString;
valor: z.ZodString;
valor: z.ZodAny;
operador: z.ZodEnum<["=", "!=", ">", "<", ">=", "<=", "∩"]>;
}, "strip", z.ZodTypeAny, {
valor: string;
coluna: string;
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
valor?: any;
}, {
valor: string;
coluna: string;
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
valor?: any;
}>, "many">>;
}, "strip", z.ZodTypeAny, {
tabela: string;
@ -25,9 +25,9 @@ export declare const zp_serie_registrar: z.ZodObject<{
agregacao: "contagem" | "somatoria";
colunaAgrupamento?: string[] | undefined;
filtros?: {
valor: string;
coluna: string;
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
valor?: any;
}[] | undefined;
}, {
tabela: string;
@ -35,9 +35,9 @@ export declare const zp_serie_registrar: z.ZodObject<{
agregacao: "contagem" | "somatoria";
colunaAgrupamento?: string[] | undefined;
filtros?: {
valor: string;
coluna: string;
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
valor?: any;
}[] | undefined;
}>;
export declare const serie_consultar: (cliente: z.infer<typeof zp_produto_conta>) => (parametros: z.infer<typeof zp_serie_registrar>) => {