UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

17 lines 522 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ContactsAPI = void 0; const persons_1 = require("./persons"); class ContactsAPI { _httpClient; _baseUrl; constructor(_httpClient, baseUrl) { this._httpClient = _httpClient; this._baseUrl = `${baseUrl}/contacts`; } persons(id) { return new persons_1.ContactsPersonsAPI(this._httpClient, `${this._baseUrl}/persons`, id); } } exports.ContactsAPI = ContactsAPI; //# sourceMappingURL=api.js.map