UNPKG

fcx-minddale-ts

Version:

TypeScript client SDK for the headless micro CRM, Minddale.

10 lines (9 loc) 403 B
import { Contact } from "../models/contact"; import { MinddaleClient } from "./minddale.client"; export declare class ContactClient extends MinddaleClient { private apiKey; private baseUrl?; static readonly ENDPOINT = "/api/open/minddale/v1/contact"; constructor(apiKey: string, baseUrl?: string | undefined); publishContact(contact: Contact, endpoint?: string): Promise<unknown>; }