@eleva-io/erp-sdk
Version:
SDK oficial para el ERP de Eleva
15 lines • 466 B
JavaScript
export class TicketingTaskAttachmentsAPI {
_httpClient;
_baseUrl;
constructor(_httpClient, _baseUrl) {
this._httpClient = _httpClient;
this._baseUrl = _baseUrl;
}
async signedUrl(id, opts) {
return this._httpClient.post(`${this._baseUrl}/signed-url/${id}`, undefined, opts);
}
async download(id) {
return this._httpClient.getBinary(`${this._baseUrl}/${id}`);
}
}
//# sourceMappingURL=attachments.js.map