mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix the build
This commit is contained in:
parent
0a030eda7b
commit
fc38d4b1ce
|
@ -21,6 +21,6 @@ export type ProjectRole = z.infer<typeof projectRoleSchema>;
|
||||||
|
|
||||||
export const projectRelationSchema = z.object({
|
export const projectRelationSchema = z.object({
|
||||||
userId: z.string().min(1),
|
userId: z.string().min(1),
|
||||||
role: projectRoleSchema.exclude(['project:personalOwner']),
|
role: projectRoleSchema,
|
||||||
});
|
});
|
||||||
export type ProjectRelation = z.infer<typeof projectRelationSchema>;
|
export type ProjectRelation = z.infer<typeof projectRelationSchema>;
|
||||||
|
|
Loading…
Reference in a new issue