import { z } from 'zod'; import { IndexMetadataItem } from '@/object-metadata/types/IndexMetadataItem'; import { indexFieldMetadataItemSchema } from '@/object-metadata/validation-schemas/indexFieldMetadataItemSchema'; import { IndexType } from '~/generated-metadata/graphql'; export const indexMetadataItemSchema = z.object({ __typename: z.literal('index'), id: z.string().uuid(), name: z.string(), indexFieldMetadatas: z.array(indexFieldMetadataItemSchema), createdAt: z.string(), updatedAt: z.string(), indexType: z.nativeEnum(IndexType), indexWhereClause: z.string().nullable(), isUnique: z.boolean(), objectMetadata: z.any(), }) satisfies z.ZodType;