UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

19 lines 559 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GlobalSearchAPI = void 0; class GlobalSearchAPI { _httpClient; _baseUrl; constructor(_httpClient, _baseUrl) { this._httpClient = _httpClient; this._baseUrl = _baseUrl; } multi(query) { return this._httpClient.get(`${this._baseUrl}/multi`, query); } contacts(query) { return this._httpClient.get(`${this._baseUrl}/contacts`, query); } } exports.GlobalSearchAPI = GlobalSearchAPI; //# sourceMappingURL=api.js.map