diff --git a/src/models/repositories/notification.ts b/src/models/repositories/notification.ts index 4d13940c76..ed9de7ef4c 100644 --- a/src/models/repositories/notification.ts +++ b/src/models/repositories/notification.ts @@ -153,10 +153,22 @@ export const packedNotificationSchema = { type: 'string' as const, optional: true as const, nullable: true as const, }, + choice: { + type: 'number' as const, + optional: true as const, nullable: true as const, + }, + invitation: { + type: 'object' as const, + optional: true as const, nullable: true as const, + }, body: { type: 'string' as const, optional: true as const, nullable: true as const, }, + header: { + type: 'string' as const, + optional: true as const, nullable: true as const, + }, icon: { type: 'string' as const, optional: true as const, nullable: true as const,