UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

14 lines 390 B
export class MeetingParticipantsAPI { _httpClient; _basePath; constructor(_httpClient, _basePath) { this._httpClient = _httpClient; this._basePath = _basePath; } async update(propertyId, data) { return this._httpClient.patch(`${this._basePath}/${propertyId}`, { body: data, }); } } //# sourceMappingURL=participants.js.map