import { z } from 'zod'; /** * Zod schema for the GithubConfigCollection 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 githubConfigCollection: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; }; id: string; name: string; }>>, "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?: { config: { webhookSigningSecret: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }, { data?: { config: { webhookSigningSecret: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; /** * * @typedef {GithubConfigCollection} githubConfigCollection * @property {GithubConfig[]} * @property {Links} */ export type GithubConfigCollection = z.infer; /** * Zod schema for mapping API responses to the GithubConfigCollection 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 githubConfigCollectionResponse: z.ZodLazy, { webhookSigningSecret: string; }, { webhook_signing_secret: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhook_signing_secret: string; }; id: string; name: string; }>, { config: { webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhook_signing_secret: string; }; id: string; name: string; }>>, "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?: { config: { webhookSigningSecret: string; }; id: string; name: string; }[] | undefined; links?: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { webhook_signing_secret: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>, { data: { config: { webhookSigningSecret: string; }; id: string; name: string; }[] | undefined; links: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { webhook_signing_secret: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; /** * Zod schema for mapping the GithubConfigCollection 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 githubConfigCollectionRequest: z.ZodLazy, { webhook_signing_secret: string; }, { webhookSigningSecret: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { webhook_signing_secret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; }; id: string; name: string; }>, { config: { webhook_signing_secret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; }; id: string; name: string; }>>, "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?: { config: { webhook_signing_secret: string; }; id: string; name: string; }[] | undefined; links?: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { webhookSigningSecret: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>, { data: { config: { webhook_signing_secret: string; }; id: string; name: string; }[] | undefined; links: { first: string | undefined; next: string | null | undefined; prev: string | null | undefined; } | undefined; }, { data?: { config: { webhookSigningSecret: string; }; id: string; name: string; }[] | undefined; links?: { first?: string | undefined; next?: string | null | undefined; prev?: string | null | undefined; } | undefined; }>>; //# sourceMappingURL=github-config-collection.d.ts.map