UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

11 lines 548 B
import { HTTPClient } from '../../../../utils/http'; import { IdpConfiguration, CreateIdpConfigurationDTO, UpdateIdpConfigurationDTO } from '../types'; export declare class IdpConfigurationAPI { private readonly _httpClient; private readonly _baseUrl; constructor(_httpClient: HTTPClient, _baseUrl: string); find(): Promise<IdpConfiguration>; create(data: CreateIdpConfigurationDTO): Promise<IdpConfiguration>; update(data: UpdateIdpConfigurationDTO): Promise<IdpConfiguration>; } //# sourceMappingURL=configuration.d.ts.map