3cada58908
Closes [#1526](https://github.com/twentyhq/core-team-issues/issues/1526) --------- Co-authored-by: Félix Malfait <felix@twenty.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
import { z } from 'zod';
|
|
|
|
import { type IndexFieldMetadataItem } from '@/object-metadata/types/IndexFieldMetadataItem';
|
|
|
|
export const indexFieldMetadataItemSchema = z.object({
|
|
__typename: z.literal('IndexField'),
|
|
fieldMetadataId: z.uuid(),
|
|
id: z.string(),
|
|
createdAt: z.string(),
|
|
updatedAt: z.string(),
|
|
order: z.number(),
|
|
}) satisfies z.ZodType<IndexFieldMetadataItem>;
|