fix(mobile): make user.memoryEnable optional (#3680)

* chore(server): avoid breaking changes

* generate api

* mobile app
This commit is contained in:
Alex
2023-08-14 12:52:06 -05:00
committed by GitHub
parent b1b215f083
commit 0d80ae3a91
8 changed files with 25 additions and 16 deletions

View File

@@ -7152,8 +7152,7 @@
"createdAt",
"deletedAt",
"updatedAt",
"oauthId",
"memoriesEnabled"
"oauthId"
],
"type": "object"
},

View File

@@ -14,7 +14,7 @@ export class UserResponseDto {
deletedAt!: Date | null;
updatedAt!: Date;
oauthId!: string;
memoriesEnabled!: boolean;
memoriesEnabled?: boolean;
}
export function mapUser(entity: UserEntity): UserResponseDto {