Merge branch 'milestone/ff-admin-unit' into unit/#70-build-ui-demo
This commit is contained in:
commit
00fad29b25
18 changed files with 219 additions and 43 deletions
|
@ -8,7 +8,7 @@ export interface NewsletterViewModel {
|
|||
newsletterText: string;
|
||||
newsletterSignatur: string;
|
||||
isSent: boolean;
|
||||
recipientsByQueryId?: number | null;
|
||||
recipientsByQueryId?: string | null;
|
||||
recipientsByQuery?: QueryViewModel | null;
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@ export interface SyncNewsletterViewModel {
|
|||
newsletterTitle: string;
|
||||
newsletterText: string;
|
||||
newsletterSignatur: string;
|
||||
recipientsByQueryId?: number;
|
||||
recipientsByQueryId?: string;
|
||||
}
|
||||
|
||||
export interface SendNewsletterViewModel {
|
||||
|
|
|
@ -7,7 +7,7 @@ export interface TableMeta {
|
|||
}
|
||||
|
||||
export interface QueryViewModel {
|
||||
id: number;
|
||||
id: string;
|
||||
title: string;
|
||||
query: string | DynamicQueryStructure;
|
||||
}
|
||||
|
@ -18,6 +18,6 @@ export interface CreateQueryViewModel {
|
|||
}
|
||||
|
||||
export interface UpdateQueryViewModel {
|
||||
id: number;
|
||||
id: string;
|
||||
query: string | DynamicQueryStructure;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue