UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

18 lines 508 B
export class IdpLogsAPI { _httpClient; _baseUrl; constructor(_httpClient, _baseUrl) { this._httpClient = _httpClient; this._baseUrl = _baseUrl; } async find(query) { return this._httpClient.get(`${this._baseUrl}/logs`, query); } async getExtended(id) { return this._httpClient.get(`${this._baseUrl}/logs/${id}`); } async triggerSync() { return this._httpClient.post(`${this._baseUrl}/sync`); } } //# sourceMappingURL=logs.js.map