Interface WorkspaceElementSpec

interface WorkspaceElementSpec {
    type: WorkspaceElementType;
    apiPath: string;
    name: string;
    namePlural: string;
    createSchema?: ZodObject<any, UnknownKeysParam, ZodTypeAny, {}, {}>;
    updateSchema?: ZodObject<any, UnknownKeysParam, ZodTypeAny, {}, {}>;
}

Properties

apiPath: string
name: string
namePlural: string
createSchema?: ZodObject<any, UnknownKeysParam, ZodTypeAny, {}, {}>
updateSchema?: ZodObject<any, UnknownKeysParam, ZodTypeAny, {}, {}>