Remove unnessecary types and projectMembershipid

This commit is contained in:
Daniel Hougaard
2024-04-04 01:03:10 -07:00
parent 54313f9c08
commit 478520f090

View File

@@ -92,10 +92,8 @@ export type TProjectUserPrivilege = {
);
export type TCreateAccessRequestDTO = {
envSlug: string;
projectSlug: string;
secretPath: string;
} & Omit<TProjectUserPrivilege, "id" | "createdAt" | "updatedAt" | "slug">;
} & Omit<TProjectUserPrivilege, "id" | "createdAt" | "updatedAt" | "slug" | "projectMembershipId">;
export type TGetAccessApprovalRequestsDTO = {
projectSlug: string;