UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

18 lines 488 B
export class IdpConfigurationAPI { _httpClient; _baseUrl; constructor(_httpClient, _baseUrl) { this._httpClient = _httpClient; this._baseUrl = _baseUrl; } async find() { return this._httpClient.get(this._baseUrl); } async create(data) { return this._httpClient.post(this._baseUrl, data); } async update(data) { return this._httpClient.patch(this._baseUrl, data); } } //# sourceMappingURL=configuration.js.map