build
This commit is contained in:
parent
132c627ed8
commit
4944daff5b
6 changed files with 71 additions and 4 deletions
33
dist-require/index.d.ts
vendored
33
dist-require/index.d.ts
vendored
|
|
@ -354,6 +354,39 @@ declare const pPilao: {
|
|||
z_tabela: tipo_estrutura_visao_grafico<"z_tabela">;
|
||||
z_soma_em_barra_vertical: tipo_estrutura_visao_grafico<"z_soma_em_barra_vertical">;
|
||||
};
|
||||
z_padroes: zod.ZodObject<{
|
||||
tabela: zod.ZodString;
|
||||
filtros: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
||||
coluna: zod.ZodString;
|
||||
valor: zod.ZodAny;
|
||||
operador: zod.ZodEnum<["=", "!=", ">", "<", ">=", "<=", "∩"]>;
|
||||
}, "strip", zod.ZodTypeAny, {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
valor?: any;
|
||||
}, {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
valor?: any;
|
||||
}>, "many">>;
|
||||
descricao_pelo_usuario: zod.ZodOptional<zod.ZodString>;
|
||||
}, "strip", zod.ZodTypeAny, {
|
||||
tabela: string;
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
}, {
|
||||
tabela: string;
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
}>;
|
||||
z_contagem_em_barra_vertical: zod.ZodObject<{
|
||||
colanuEixoX: zod.ZodString;
|
||||
colunaAgrupamento: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue