minor v1.6.0 #114

Merged
jkeffects merged 14 commits from develop into main 2025-06-06 07:35:59 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit f6a0a61ed8 - Show all commits

View file

@ -18,6 +18,7 @@ export default abstract class NewsletterFactory {
newsletterSignatur: record.newsletterSignatur, newsletterSignatur: record.newsletterSignatur,
isSent: record.isSent, isSent: record.isSent,
recipientsByQueryId: record?.recipientsByQuery ? record.recipientsByQuery.id : null, recipientsByQueryId: record?.recipientsByQuery ? record.recipientsByQuery.id : null,
createdAt: record.createdAt,
}; };
} }

View file

@ -7,4 +7,5 @@ export interface NewsletterViewModel {
newsletterSignatur: string; newsletterSignatur: string;
isSent: boolean; isSent: boolean;
recipientsByQueryId?: string; recipientsByQueryId?: string;
createdAt: Date;
} }