This commit is contained in:
Luiz H. R. Silva 2024-07-01 12:57:45 -03:00
parent 7032eb1329
commit 78773e8943
8 changed files with 16 additions and 16 deletions

View file

@ -6,7 +6,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
colanuEixoX: z.ZodString;
colunaAgrupamento: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
agregacao: z.ZodEnum<["contagem", "somatoria"]>;
filtro: z.ZodOptional<z.ZodArray<z.ZodObject<{
filtros: z.ZodOptional<z.ZodArray<z.ZodObject<{
coluna: z.ZodString;
valor: z.ZodString;
operador: z.ZodEnum<["=", "!=", ">", "<", ">=", "<=", "∩"]>;
@ -24,7 +24,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
colanuEixoX: string;
agregacao: "contagem" | "somatoria";
colunaAgrupamento?: string[] | undefined;
filtro?: {
filtros?: {
valor: string;
coluna: string;
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
@ -34,7 +34,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
colanuEixoX: string;
agregacao: "contagem" | "somatoria";
colunaAgrupamento?: string[] | undefined;
filtro?: {
filtros?: {
valor: string;
coluna: string;
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";