diff --git a/app/api/missions/route.ts b/app/api/missions/route.ts index 9eccfed5..5417b345 100644 --- a/app/api/missions/route.ts +++ b/app/api/missions/route.ts @@ -19,6 +19,11 @@ interface MissionCreateInput { profils?: string[]; guardians?: Record; volunteers?: string[]; + creatorId?: string; + config?: { + N8N_API_KEY: string; + MISSION_API_URL: string; + }; logo?: { data: string; name?: string; @@ -28,6 +33,8 @@ interface MissionCreateInput { outlineCollectionId?: string | null; rocketChatChannelId?: string | null; gitRepositoryId?: string | null; + giteaRepositoryUrl?: string | null; + penpotProjectId?: string | null; status?: string; createdAt?: Date; updatedAt?: Date;