import * as z from "zod/v3"; /** * Filter notifications by workflow tags (OR for string[], or { and: [{ or: string[] }, ...] } for AND of OR-groups). */ export type Tags = {}; export type UpdateAllSubscriberNotificationsDto = { /** * Filter notifications by workflow tags (OR for string[], or { and: [{ or: string[] }, ...] } for AND of OR-groups). */ tags?: Tags | undefined; /** * Filter notifications by data attributes (JSON string) */ data?: string | undefined; /** * Context keys for filtering notifications */ contextKeys?: Array | undefined; }; /** @internal */ export type Tags$Outbound = {}; /** @internal */ export declare const Tags$outboundSchema: z.ZodType; export declare function tagsToJSON(tags: Tags): string; /** @internal */ export type UpdateAllSubscriberNotificationsDto$Outbound = { tags?: Tags$Outbound | undefined; data?: string | undefined; contextKeys?: Array | undefined; }; /** @internal */ export declare const UpdateAllSubscriberNotificationsDto$outboundSchema: z.ZodType; export declare function updateAllSubscriberNotificationsDtoToJSON(updateAllSubscriberNotificationsDto: UpdateAllSubscriberNotificationsDto): string; //# sourceMappingURL=updateallsubscribernotificationsdto.d.ts.map