funcao para criar vinculo de usuario

This commit is contained in:
MarcioJRGodoi 2024-06-24 14:23:46 -03:00
parent 78acaa0816
commit b5360ab1a9
9 changed files with 360 additions and 216 deletions

View file

@ -0,0 +1,10 @@
import { type tipoResposta } from "p-respostas";
import type { z } from "zod";
import type { zAmbiente } from "../ts/ambiente";
export declare const usuarios_quipo_vincular: ({ token_produto, ambiente, conta, vinculo, codigo_usuario, }: {
ambiente: z.infer<typeof zAmbiente>;
token_produto: string;
conta: string;
vinculo: string;
codigo_usuario: string;
}) => Promise<tipoResposta<string>>;