UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

12 lines 606 B
import { HTTPClient } from '../../../../utils/http'; import { PaginatedResponse } from '../../../../utils/types'; import { IdpSyncLog, IdpSyncLogExtended, IdpSyncLogQueryParams, IdpTriggerSyncResponse } from '../types'; export declare class IdpLogsAPI { private readonly _httpClient; private readonly _baseUrl; constructor(_httpClient: HTTPClient, _baseUrl: string); find(query?: IdpSyncLogQueryParams): Promise<PaginatedResponse<IdpSyncLog>>; getExtended(id: string): Promise<IdpSyncLogExtended>; triggerSync(): Promise<IdpTriggerSyncResponse>; } //# sourceMappingURL=logs.d.ts.map