@eleva-io/erp-sdk
Version:
SDK oficial para el ERP de Eleva
16 lines • 500 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommunitiesContactsAPI = void 0;
class CommunitiesContactsAPI {
_httpClient;
_baseUrl;
constructor(_httpClient, _baseUrl) {
this._httpClient = _httpClient;
this._baseUrl = _baseUrl;
}
async search(personId) {
return this._httpClient.get(`${this._baseUrl}/${personId}`);
}
}
exports.CommunitiesContactsAPI = CommunitiesContactsAPI;
//# sourceMappingURL=contacts.js.map