import { z } from '@strapi/utils'; z.string().optional().describe('Locale code (e.g. "en", "fr"). Defaults to the default locale.'); const statusSchema = z.enum([ 'draft', 'published' ]).optional().describe('Document status. Defaults to "draft" when draftAndPublish is enabled.'); const documentIdSchema = z.string().min(1).describe('Stable document ID (e.g. "z7v8zma53x01r6oceimv922b"). Use this as the canonical identifier across draft/published versions; numeric "id" can differ per version row.'); const pageSchema = z.number().int().min(1).optional().describe('Page number (1-indexed, default: 1).'); const pageSizeSchema = z.number().int().min(1).max(100).optional().describe('Items per page (default: 25, max: 100).'); export { documentIdSchema, pageSchema, pageSizeSchema, statusSchema }; //# sourceMappingURL=input-schemas.mjs.map