ajustes
This commit is contained in:
parent
b8fc3ab8b6
commit
a2553130f4
8 changed files with 58 additions and 82 deletions
27
dist-import/pilao-de-dados/enviar_registros.d.ts
vendored
27
dist-import/pilao-de-dados/enviar_registros.d.ts
vendored
|
|
@ -28,33 +28,28 @@ export declare const zp_registrar_base_dados: z.ZodObject<{
|
|||
}>;
|
||||
export declare const zp_enviar_registros: z.ZodObject<{
|
||||
tabela: z.ZodString;
|
||||
registros: z.ZodArray<z.ZodArray<z.ZodObject<{
|
||||
coluna: z.ZodString;
|
||||
registros: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodObject<{
|
||||
valor: z.ZodAny;
|
||||
tipo: z.ZodEnum<["texto", "numero", "confirmacao", "lista_texto", "lista_numero"]>;
|
||||
tipo: z.ZodNullable<z.ZodOptional<z.ZodEnum<["texto", "numero", "confirmacao", "lista_texto", "lista_numero"]>>>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
valor?: any;
|
||||
tipo?: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | null | undefined;
|
||||
}, {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
valor?: any;
|
||||
}>, "many">, "many">;
|
||||
tipo?: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | null | undefined;
|
||||
}>>, "many">;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
tabela: string;
|
||||
registros: {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
registros: Record<string, {
|
||||
valor?: any;
|
||||
}[][];
|
||||
tipo?: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | null | undefined;
|
||||
}>[];
|
||||
}, {
|
||||
tabela: string;
|
||||
registros: {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
registros: Record<string, {
|
||||
valor?: any;
|
||||
}[][];
|
||||
tipo?: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero" | null | undefined;
|
||||
}>[];
|
||||
}>;
|
||||
export declare const enviar_registros: ({ emDesenvolvimento, cliente: { conta, produto }, parametros: { registros, tabela }, }: {
|
||||
emDesenvolvimento?: boolean | undefined | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue