import { z } from 'zod'; /** * Zod schema for the NotificationCollection model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const notificationCollection: z.ZodLazy>; archivedAt: z.ZodNullable>; category: z.ZodNullable>; content: z.ZodNullable>; createdAt: z.ZodString; customAttributes: z.ZodNullable>; discardedAt: z.ZodNullable>; id: z.ZodString; readAt: z.ZodNullable>; seenAt: z.ZodNullable>; sentAt: z.ZodNullable>; title: z.ZodString; topic: z.ZodNullable>; updatedAt: z.ZodString; userId: z.ZodString; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }>>, "many">>; links: z.ZodOptional; next: z.ZodNullable>; prev: z.ZodNullable>; }, "strip", z.ZodTypeAny, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>>>; }, "strip", z.ZodTypeAny, { data?: { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }, { data?: { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; /** * * @typedef {NotificationCollection} notificationCollection * @property {Notification[]} * @property {Links} */ export type NotificationCollection = z.infer; /** * Zod schema for mapping API responses to the NotificationCollection application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const notificationCollectionResponse: z.ZodLazy>; archived_at: z.ZodNullable>; category: z.ZodNullable>; content: z.ZodNullable>; created_at: z.ZodString; custom_attributes: z.ZodNullable>; discarded_at: z.ZodNullable>; id: z.ZodString; read_at: z.ZodNullable>; seen_at: z.ZodNullable>; sent_at: z.ZodNullable>; title: z.ZodString; topic: z.ZodNullable>; updated_at: z.ZodString; user_id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }, { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }>, { actionUrl: string | null | undefined; archivedAt: string | null | undefined; category: string | null | undefined; content: string | null | undefined; createdAt: string; customAttributes: any; discardedAt: string | null | undefined; id: string; readAt: string | null | undefined; seenAt: string | null | undefined; sentAt: string | null | undefined; title: string; topic: string | null | undefined; updatedAt: string; userId: string; }, { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }>>, "many">>; links: z.ZodOptional; next: z.ZodNullable>; prev: z.ZodNullable>; }, "strip", z.ZodTypeAny, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>, { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>>>; }, "strip", z.ZodTypeAny, { data?: { actionUrl: string | null | undefined; archivedAt: string | null | undefined; category: string | null | undefined; content: string | null | undefined; createdAt: string; customAttributes: any; discardedAt: string | null | undefined; id: string; readAt: string | null | undefined; seenAt: string | null | undefined; sentAt: string | null | undefined; title: string; topic: string | null | undefined; updatedAt: string; userId: string; }[] | undefined; links?: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>, { data: { actionUrl: string | null | undefined; archivedAt: string | null | undefined; category: string | null | undefined; content: string | null | undefined; createdAt: string; customAttributes: any; discardedAt: string | null | undefined; id: string; readAt: string | null | undefined; seenAt: string | null | undefined; sentAt: string | null | undefined; title: string; topic: string | null | undefined; updatedAt: string; userId: string; }[] | undefined; links: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; /** * Zod schema for mapping the NotificationCollection application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const notificationCollectionRequest: z.ZodLazy>; archivedAt: z.ZodNullable>; category: z.ZodNullable>; content: z.ZodNullable>; createdAt: z.ZodString; customAttributes: z.ZodNullable>; discardedAt: z.ZodNullable>; id: z.ZodString; readAt: z.ZodNullable>; seenAt: z.ZodNullable>; sentAt: z.ZodNullable>; title: z.ZodString; topic: z.ZodNullable>; updatedAt: z.ZodString; userId: z.ZodString; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }>, { action_url: string | null | undefined; archived_at: string | null | undefined; category: string | null | undefined; content: string | null | undefined; created_at: string; custom_attributes: any; discarded_at: string | null | undefined; id: string; read_at: string | null | undefined; seen_at: string | null | undefined; sent_at: string | null | undefined; title: string; topic: string | null | undefined; updated_at: string; user_id: string; }, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }>>, "many">>; links: z.ZodOptional; next: z.ZodNullable>; prev: z.ZodNullable>; }, "strip", z.ZodTypeAny, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>, { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; }, { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; }>>>; }, "strip", z.ZodTypeAny, { data?: { action_url: string | null | undefined; archived_at: string | null | undefined; category: string | null | undefined; content: string | null | undefined; created_at: string; custom_attributes: any; discarded_at: string | null | undefined; id: string; read_at: string | null | undefined; seen_at: string | null | undefined; sent_at: string | null | undefined; title: string; topic: string | null | undefined; updated_at: string; user_id: string; }[] | undefined; links?: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>, { data: { action_url: string | null | undefined; archived_at: string | null | undefined; category: string | null | undefined; content: string | null | undefined; created_at: string; custom_attributes: any; discarded_at: string | null | undefined; id: string; read_at: string | null | undefined; seen_at: string | null | undefined; sent_at: string | null | undefined; title: string; topic: string | null | undefined; updated_at: string; user_id: string; }[] | undefined; links: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; //# sourceMappingURL=notification-collection.d.ts.map