implementado drive pilão de dados
This commit is contained in:
parent
a1e543cfb8
commit
daae40f4b2
54 changed files with 1476 additions and 19 deletions
22
dist-import/pilao-de-dados/_variaveis.d.ts
vendored
Normal file
22
dist-import/pilao-de-dados/_variaveis.d.ts
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import { z } from "zod";
|
||||
export declare const zAmbiente: z.ZodEnum<["desenvolvimento", "producao"]>;
|
||||
export declare const PREFIXO = "/pilao-de-dados";
|
||||
export declare const validarZ: <T>(zodType: z.ZodType<T, any, T>, objeto: any, mensagem: string) => import("p-respostas").tipoRespostaErro | import("p-respostas").tipoRespostaSucesso<T>;
|
||||
export declare const zp_produto_conta: z.ZodObject<{
|
||||
produto: z.ZodString;
|
||||
conta: z.ZodString;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
produto: string;
|
||||
conta: string;
|
||||
}, {
|
||||
produto: string;
|
||||
conta: string;
|
||||
}>;
|
||||
export declare const tiposColunas: z.ZodEnum<["texto", "numero", "confirmacao", "lista_texto", "lista_numero"]>;
|
||||
export declare const validarColuna: {
|
||||
texto: z.ZodNullable<z.ZodString>;
|
||||
numero: z.ZodNullable<z.ZodNumber>;
|
||||
confirmacao: z.ZodNullable<z.ZodBoolean>;
|
||||
lista_texto: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
||||
lista_numero: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue