Skip to content
Snippets Groups Projects

feat: add content query (MIN-61)

Merged mateuszmiko requested to merge feature/MIN-61-connect-content-query into development
1 file
+ 3
4
Compare changes
  • Side-by-side
  • Inline
import { z } from 'zod';
import { z } from 'zod';
import { targetSchema } from './targetSchema';
export const contentSchema = z.object({
export const contentSchema = z.object({
id: z.string(),
id: z.number(),
name: z.string(),
modelId: z.number(),
targets: z.array(targetSchema),
type: z.string(),
});
});
Loading