build
This commit is contained in:
parent
4c2d82c073
commit
75309db4ef
8 changed files with 114 additions and 29 deletions
|
|
@ -10,6 +10,7 @@ const z_tipos_campos = zod_1.z.enum([
|
|||
"texto",
|
||||
"lista_colunas",
|
||||
"lista_filtros",
|
||||
"ordem",
|
||||
]);
|
||||
exports.z_contagem_em_barra_vertical = zod_1.z.object({
|
||||
tabela: zod_1.z.string(),
|
||||
|
|
@ -27,6 +28,8 @@ exports.z_contagem_em_pizza = zod_1.z.object({
|
|||
exports.z_tabela = zod_1.z.object({
|
||||
tabela: zod_1.z.string(),
|
||||
colunas: zod_1.z.string().array(),
|
||||
coluna_ordem: zod_1.z.string().optional(),
|
||||
direcao_ordem: zod_1.z.enum(["asc", "desc", "1", "-1"]).optional(),
|
||||
filtros: _serie_consultar_1.z_filtro.array().optional(),
|
||||
descricao_pelo_usuario: zod_1.z.string().optional(),
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue