This commit is contained in:
Luiz H. R. Silva 2024-06-18 14:35:58 -03:00
parent f6f39d2d86
commit b8fc3ab8b6
8 changed files with 30 additions and 28 deletions

View file

@ -28,7 +28,7 @@ export declare const zp_registrar_base_dados: z.ZodObject<{
}>;
export declare const zp_enviar_registros: z.ZodObject<{
tabela: z.ZodString;
registros: z.ZodArray<z.ZodObject<{
registros: z.ZodArray<z.ZodArray<z.ZodObject<{
coluna: z.ZodString;
valor: z.ZodAny;
tipo: z.ZodEnum<["texto", "numero", "confirmacao", "lista_texto", "lista_numero"]>;
@ -40,21 +40,21 @@ export declare const zp_enviar_registros: z.ZodObject<{
coluna: string;
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
valor?: any;
}>, "many">;
}>, "many">, "many">;
}, "strip", z.ZodTypeAny, {
tabela: string;
registros: {
coluna: string;
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
valor?: any;
}[];
}[][];
}, {
tabela: string;
registros: {
coluna: string;
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
valor?: any;
}[];
}[][];
}>;
export declare const enviar_registros: ({ emDesenvolvimento, cliente: { conta, produto }, parametros: { registros, tabela }, }: {
emDesenvolvimento?: boolean | undefined | null;