UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

10 lines 516 B
import { HTTPClient } from '../../../../utils/http'; import { CRUD } from '../../../../utils'; import { CreateIAMTeamDTO, IAMTeam, UpdateIAMTeamDTO } from '../types'; export declare class IAMTeamsAPI extends CRUD<IAMTeam, CreateIAMTeamDTO, UpdateIAMTeamDTO> { private readonly _baseUrl; constructor(httpClient: HTTPClient, _baseUrl: string); addMember(teamId: string, agentId: string): Promise<void>; removeMember(teamId: string, agentId: string): Promise<void>; } //# sourceMappingURL=teams.d.ts.map