chore: Fix types

This commit is contained in:
Meet
2024-09-20 12:31:34 +05:30
parent 10574bfe26
commit 864cf23416

View File

@@ -2,7 +2,7 @@ import { z } from "zod";
import { TProjectPermission } from "@app/lib/types";
import { DynamicSecretDataFetchTypes, DynamicSecretProviderSchema } from "./providers/models";
import { DynamicSecretProviderSchema } from "./providers/models";
// various status for dynamic secret that happens in background
export enum DynamicSecretStatus {
@@ -52,8 +52,3 @@ export type TListDynamicSecretsDTO = {
environmentSlug: string;
projectSlug: string;
} & Omit<TProjectPermission, "projectId">;
export type TDynamicSecretsFetchDataDTO = {
provider: TProvider;
dataFetchType: DynamicSecretDataFetchTypes;
};