import { z } from 'zod'; /** * Zod schema for the ApnsToken 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 apnsToken: z.ZodLazy; createdAt: z.ZodString; deviceToken: z.ZodString; discardedAt: z.ZodNullable>; id: z.ZodString; installationId: z.ZodOptional; updatedAt: z.ZodNullable>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; appId?: string | undefined; discardedAt?: string | null | undefined; installationId?: string | undefined; }, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; appId?: string | undefined; discardedAt?: string | null | undefined; installationId?: string | undefined; }>>; /** * * @typedef {ApnsToken} apnsToken * @property {string} - The bundle identifier of the application registering this token. Use this to override the default identifier configured on the APNs integration. * @property {string} - The timestamp when the token was created. * @property {string} - The APNs device token to register with MagicBell. * @property {string} - The timestamp when the token was discarded, if applicable. * @property {string} - The unique identifier for the token. * @property {InstallationId} - The APNs environment this token belongs to. If omitted we assume it targets `production`. * @property {string} - The timestamp when the token metadata last changed. */ export type ApnsToken = z.infer; /** * Zod schema for mapping API responses to the ApnsToken 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 apnsTokenResponse: z.ZodLazy; created_at: z.ZodString; device_token: z.ZodString; discarded_at: z.ZodNullable>; id: z.ZodString; installation_id: z.ZodOptional; updated_at: z.ZodNullable>; }, "strip", z.ZodTypeAny, { id: string; created_at: string; device_token: string; updated_at?: string | null | undefined; app_id?: string | undefined; discarded_at?: string | null | undefined; installation_id?: string | undefined; }, { id: string; created_at: string; device_token: string; updated_at?: string | null | undefined; app_id?: string | undefined; discarded_at?: string | null | undefined; installation_id?: string | undefined; }>, { appId: string | undefined; createdAt: string; deviceToken: string; discardedAt: string | null | undefined; id: string; installationId: string | undefined; updatedAt: string | null | undefined; }, { id: string; created_at: string; device_token: string; updated_at?: string | null | undefined; app_id?: string | undefined; discarded_at?: string | null | undefined; installation_id?: string | undefined; }>>; /** * Zod schema for mapping the ApnsToken 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 apnsTokenRequest: z.ZodLazy; createdAt: z.ZodString; deviceToken: z.ZodString; discardedAt: z.ZodNullable>; id: z.ZodString; installationId: z.ZodOptional; updatedAt: z.ZodNullable>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; appId?: string | undefined; discardedAt?: string | null | undefined; installationId?: string | undefined; }, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; appId?: string | undefined; discardedAt?: string | null | undefined; installationId?: string | undefined; }>, { app_id: string | undefined; created_at: string; device_token: string; discarded_at: string | null | undefined; id: string; installation_id: string | undefined; updated_at: string | null | undefined; }, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; appId?: string | undefined; discardedAt?: string | null | undefined; installationId?: string | undefined; }>>; //# sourceMappingURL=apns-token.d.ts.map