diff --git a/backend/src/services/org/org-types.ts b/backend/src/services/org/org-types.ts index 6456e5de1..b9dbd74ad 100644 --- a/backend/src/services/org/org-types.ts +++ b/backend/src/services/org/org-types.ts @@ -1,3 +1,5 @@ +import { ActorType } from "../auth/auth-type"; + export type TUpdateOrgMembershipDTO = { userId: string; orgId: string; @@ -22,3 +24,9 @@ export type TVerifyUserToOrgDTO = { orgId: string; code: string; }; + +export type TFindAllWorkspacesDTO = { + actor: ActorType; + actorId: string; + orgId: string; +};