UNPKG

@cranberry-money/shared-services

Version:

Platform-agnostic API services with pure functions and dependency injection. Includes auth, portfolios, assets, countries, sectors, and more.

6 lines 740 B
import { AxiosInstance } from 'axios'; import type { FinancialProfile, CreateFinancialProfile, UpdateFinancialProfile, PaginatedResponse } from '@cranberry-money/shared-types'; export declare const createFinancialProfile: (apiClient: AxiosInstance, data: CreateFinancialProfile) => Promise<import("axios").AxiosResponse<FinancialProfile, any, {}>>; export declare const updateFinancialProfile: (apiClient: AxiosInstance, uuid: string, data: UpdateFinancialProfile) => Promise<import("axios").AxiosResponse<FinancialProfile, any, {}>>; export declare const getFinancialProfiles: (apiClient: AxiosInstance) => Promise<import("axios").AxiosResponse<PaginatedResponse<FinancialProfile>, any, {}>>; //# sourceMappingURL=financialProfile.d.ts.map