Loading mobile/src/profile/domain/datasources/profile_datasource.ts +1 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ import { IOption } from "../../../common/domain/entities/option"; export interface ProfileDataSource { getInterests: () => Promise<IOption[]>; getUserInterests: () => Promise<IOption[]>; saveInterests: (options: IOption[]) => Promise<void>; setUpProfile: (birthdate: string, interests: IOption[]) => Promise<void>; changePassword: (oldPassword: string, newPassword: string) => Promise<void>; Loading mobile/src/profile/domain/repositories/profile_repository.ts +1 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ import { IOption } from "../../../common/domain/entities/option"; export interface ProfileRepository { getInterests: () => Promise<IOption[]>; getUserInterests: () => Promise<IOption[]>; saveInterests: (options: IOption[]) => Promise<void>; setUpProfile: (birthdate: string, interests: IOption[]) => Promise<void>; changePassword: (oldPassword: string, newPassword: string) => Promise<void>; Loading Loading
mobile/src/profile/domain/datasources/profile_datasource.ts +1 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ import { IOption } from "../../../common/domain/entities/option"; export interface ProfileDataSource { getInterests: () => Promise<IOption[]>; getUserInterests: () => Promise<IOption[]>; saveInterests: (options: IOption[]) => Promise<void>; setUpProfile: (birthdate: string, interests: IOption[]) => Promise<void>; changePassword: (oldPassword: string, newPassword: string) => Promise<void>; Loading
mobile/src/profile/domain/repositories/profile_repository.ts +1 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,7 @@ import { IOption } from "../../../common/domain/entities/option"; export interface ProfileRepository { getInterests: () => Promise<IOption[]>; getUserInterests: () => Promise<IOption[]>; saveInterests: (options: IOption[]) => Promise<void>; setUpProfile: (birthdate: string, interests: IOption[]) => Promise<void>; changePassword: (oldPassword: string, newPassword: string) => Promise<void>; Loading