change: make query id to uuid
This commit is contained in:
parent
3376746867
commit
b1daa7e64f
5 changed files with 11 additions and 12 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