fix: nome variavel usuario externo

This commit is contained in:
andreLMpena 2024-12-03 10:40:52 -03:00
parent 4933d74846
commit 195c9f3ab9
4 changed files with 14 additions and 14 deletions

View file

@ -3,14 +3,14 @@ import type { z } from "zod";
import type { tipos_de_acesso_quipo } from "../tokenQuipo";
import type { zAmbiente } from "../ts/ambiente";
export type tipoUsuarioExterno = {
nome: string;
email: string;
telefone: string;
_nome: string;
_email: string;
_telefone: string;
vinculo: string;
codigo_conta: string;
chave_produto: string;
codigo: string;
cpf: string;
_cpf: string;
};
export declare const usuarios_quipo: ({ token_produto, ambiente, tipo, }: {
ambiente: z.infer<typeof zAmbiente>;