This commit is contained in:
Luiz Silva 2025-01-06 20:21:00 -03:00
parent 132c627ed8
commit 4944daff5b
6 changed files with 71 additions and 4 deletions

View file

@ -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">>;

File diff suppressed because one or more lines are too long

View file

@ -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">>;

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "p-drives",
"version": "0.203.0",
"version": "0.204.0",
"description": "",
"main": "src/index.ts",
"exports": {

View file

@ -18,7 +18,7 @@ export * from "./Pilao/tipagem"
import { z_filtro } from "./_serie_consultar"
import { extruturas_de_campos } from "./visoes"
import { visoes_pilao } from "./visoes/listaDeVisoes"
import { visoes_pilao, z_padroes } from "./visoes/listaDeVisoes"
export const pPilao = {
zp_deletar_registros,
@ -35,4 +35,5 @@ export const pPilao = {
visoes_pilao,
...visoes_pilao,
extruturas_de_campos,
z_padroes,
}