UNPKG

@cranberry-money/shared-services

Version:

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

8 lines 379 B
import { USER_PREFERENCES_ENDPOINTS } from '@cranberry-money/shared-constants'; export const getCurrentUserPreferences = (apiClient) => { return apiClient.get(USER_PREFERENCES_ENDPOINTS.BASE); }; export const upsertCurrentUserPreferences = (apiClient, data) => { return apiClient.post(USER_PREFERENCES_ENDPOINTS.BASE, data); }; //# sourceMappingURL=userPreferences.js.map