enumCondicao

This commit is contained in:
marcio 2025-09-18 09:00:28 -03:00
parent cd90eeaa3e
commit 44a5ce9878
5 changed files with 46 additions and 15 deletions

View file

@ -63,6 +63,18 @@ type interfaceConsulta = {
apenasConsulta?: boolean;
apenasContagem?: boolean;
};
declare enum enumCondicao {
IGUAL = "IGUAL",
DIFERENTE = "DIFERENTE",
COMECA = "COMECA",
TERMINA = "TERMINA",
MAIOR_OU_IGUAL = "MAIOR_OU_IGUAL",
MENOR_OU_IGUAL = "MENOR_OU_IGUAL",
MAIOR = "MAIOR",
MENOR = "MENOR",
CONTEM = "CONTEM",
PERTENCE = "PERTENCE"
}
declare const zOperadores: z.ZodEnum<{
"=": "=";
"!=": "!=";
@ -76,16 +88,7 @@ declare const zOperadores: z.ZodEnum<{
declare const zFiltro: z.ZodObject<{
coluna: z.ZodString;
valor: z.ZodAny;
operador: z.ZodEnum<{
"=": "=";
"!=": "!=";
">": ">";
">=": ">=";
"<": "<";
"<=": "<=";
like: "like";
in: "in";
}>;
operador: typeof enumCondicao;
ou: z.ZodOptional<z.ZodBoolean>;
}, z.core.$strip>;
@ -295,4 +298,4 @@ declare const nomeVariavel: (v: {
[key: string]: any;
}) => string;
export { TipagemRotas, type TipoLoggerSessao, aleatorio, cacheM, cacheMFixo, cacheMemoria, camposComuns, cdn_carro_de_boi, defineCwd, erUuid, esperar, extensoes, type interfaceConsulta, logger, nomeVariavel, objetoPg, operadores, paraObjetoRegistroPg, pgObjeto, postLogger, siglas_unidades_medida, texto_busca, tipoArquivo, type tipoFiltro, type tipoLogger, type tipoLoggerLog, type tipoLokiObjeto, tipoUsuarioResiduos, tx, umaFuncao, umaVariavel, unidades_medida, uuid, uuidV3, uuidV4, uuid_null, validarUuid, verCacheM, zFiltro, zOperadores };
export { TipagemRotas, type TipoLoggerSessao, aleatorio, cacheM, cacheMFixo, cacheMemoria, camposComuns, cdn_carro_de_boi, defineCwd, enumCondicao, erUuid, esperar, extensoes, type interfaceConsulta, logger, nomeVariavel, objetoPg, operadores, paraObjetoRegistroPg, pgObjeto, postLogger, siglas_unidades_medida, texto_busca, tipoArquivo, type tipoFiltro, type tipoLogger, type tipoLoggerLog, type tipoLokiObjeto, tipoUsuarioResiduos, tx, umaFuncao, umaVariavel, unidades_medida, uuid, uuidV3, uuidV4, uuid_null, validarUuid, verCacheM, zFiltro, zOperadores };