change: make query id to uuid

This commit is contained in:
Julian Krauser 2025-03-26 09:10:08 +01:00
parent c0a0365406
commit df231d6462
12 changed files with 119 additions and 20 deletions

View file

@ -9,7 +9,7 @@ export interface SynchronizeNewsletterCommand {
newsletterTitle: string;
newsletterText: string;
newsletterSignatur: string;
recipientsByQueryId?: number;
recipientsByQueryId?: string;
}
export interface SendNewsletterCommand {

View file

@ -6,10 +6,10 @@ export interface CreateQueryStoreCommand {
}
export interface UpdateQueryStoreCommand {
id: number;
id: string;
query: string | DynamicQueryStructure;
}
export interface DeleteQueryStoreCommand {
id: number;
id: string;
}