import { z } from 'zod'; /** * Zod schema for the TeamsToken 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 teamsToken: z.ZodLazy>; id: z.ZodString; updatedAt: z.ZodNullable>; webhook: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; }, { url?: string | undefined; }>>>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; webhook?: { url?: string | undefined; } | undefined; }, { createdAt: string; id: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; webhook?: { url?: string | undefined; } | undefined; }>>; /** * * @typedef {TeamsToken} teamsToken * @property {string} - The timestamp when the token was created. * @property {string} - The timestamp when the token was discarded, if applicable. * @property {string} - The unique identifier for the token. * @property {string} - The timestamp when the token metadata last changed. * @property {TeamsTokenWebhook} */ export type TeamsToken = z.infer; /** * Zod schema for mapping API responses to the TeamsToken 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 teamsTokenResponse: z.ZodLazy>; id: z.ZodString; updated_at: z.ZodNullable>; webhook: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; }, { url?: string | undefined; }>, { url: string | undefined; }, { url?: string | undefined; }>>>; }, "strip", z.ZodTypeAny, { id: string; created_at: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; webhook?: { url: string | undefined; } | undefined; }, { id: string; created_at: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; webhook?: { url?: string | undefined; } | undefined; }>, { createdAt: string; discardedAt: string | null | undefined; id: string; updatedAt: string | null | undefined; webhook: { url: string | undefined; } | undefined; }, { id: string; created_at: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; webhook?: { url?: string | undefined; } | undefined; }>>; /** * Zod schema for mapping the TeamsToken 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 teamsTokenRequest: z.ZodLazy>; id: z.ZodString; updatedAt: z.ZodNullable>; webhook: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; }, { url?: string | undefined; }>, { url: string | undefined; }, { url?: string | undefined; }>>>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; webhook?: { url: string | undefined; } | undefined; }, { createdAt: string; id: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; webhook?: { url?: string | undefined; } | undefined; }>, { created_at: string; discarded_at: string | null | undefined; id: string; updated_at: string | null | undefined; webhook: { url: string | undefined; } | undefined; }, { createdAt: string; id: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; webhook?: { url?: string | undefined; } | undefined; }>>; //# sourceMappingURL=teams-token.d.ts.map