change: make query id to uuid
This commit is contained in:
parent
c0a0365406
commit
df231d6462
12 changed files with 119 additions and 20 deletions
|
@ -9,7 +9,7 @@ export interface SynchronizeNewsletterCommand {
|
|||
newsletterTitle: string;
|
||||
newsletterText: string;
|
||||
newsletterSignatur: string;
|
||||
recipientsByQueryId?: number;
|
||||
recipientsByQueryId?: string;
|
||||
}
|
||||
|
||||
export interface SendNewsletterCommand {
|
||||
|
|
|
@ -6,10 +6,10 @@ export interface CreateQueryStoreCommand {
|
|||
}
|
||||
|
||||
export interface UpdateQueryStoreCommand {
|
||||
id: number;
|
||||
id: string;
|
||||
query: string | DynamicQueryStructure;
|
||||
}
|
||||
|
||||
export interface DeleteQueryStoreCommand {
|
||||
id: number;
|
||||
id: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue