@mft/moneyhub-api-client
Version:
Node.JS client for the Moneyhub API
12 lines • 530 B
TypeScript
import type { ApiResponse, ExtraOptions } from "../../request";
import type { SyncResponse } from "../../schema/sync";
export interface SyncRequests {
syncUserConnection: ({ userId, connectionId, customerIpAddress, customerLastLoggedTime, enableAsync, }: {
userId?: string;
connectionId: string;
customerIpAddress?: string;
customerLastLoggedTime?: string;
enableAsync?: boolean;
}, options?: ExtraOptions) => Promise<ApiResponse<SyncResponse>>;
}
//# sourceMappingURL=sync.d.ts.map