This commit is contained in:
Daniel Hougaard
2024-01-30 18:12:37 +04:00
parent f180b5ed6a
commit b73987d2c2

View File

@@ -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;
};