diff --git a/backend/src/services/project/project-types.ts b/backend/src/services/project/project-types.ts index 69816882e..2b84dc1db 100644 --- a/backend/src/services/project/project-types.ts +++ b/backend/src/services/project/project-types.ts @@ -1,7 +1,7 @@ import { ProjectMembershipRole, TProjectKeys } from "@app/db/schemas"; import { TProjectPermission } from "@app/lib/types"; -import { ActorType } from "../auth/auth-type"; +import { ActorAuthMethod, ActorType } from "../auth/auth-type"; export enum ProjectFilterType { ID = "id", @@ -21,6 +21,7 @@ export type Filter = export type TCreateProjectDTO = { actor: ActorType; + actorAuthMethod: ActorAuthMethod; actorId: string; actorOrgId?: string; orgSlug: string;