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
import { z } from 'zod';
import { targetSchema } from './targetSchema';
export const contentSchema = z.object({
id: z.string(),
name: z.string(),
targets: z.array(targetSchema),
id: z.number(),
modelId: z.number(),
type: z.string(),
});
Loading