mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
Fix: Remove duplicate type
This commit is contained in:
@@ -12,19 +12,6 @@ export type TSecretImport = {
|
||||
updatedAt: string;
|
||||
};
|
||||
|
||||
export type TImportedSecretFolder = {
|
||||
id: string;
|
||||
folderId: string;
|
||||
importEnv: {
|
||||
id: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
};
|
||||
importPath: string;
|
||||
|
||||
// ... It got more fields, but we won't need them.
|
||||
};
|
||||
|
||||
export type TGetImportedFoldersByEnvDTO = {
|
||||
projectId: string;
|
||||
environment: string;
|
||||
@@ -45,6 +32,13 @@ export type TGetSecretImports = {
|
||||
path?: string;
|
||||
};
|
||||
|
||||
export type TGetSecretImportsAllEnvs = {
|
||||
projectId: string;
|
||||
decryptFileKey: UserWsKeyPair;
|
||||
path?: string;
|
||||
environments: string[];
|
||||
};
|
||||
|
||||
export type TGetImportedSecrets = {
|
||||
projectId: string;
|
||||
environment: string;
|
||||
|
||||
Reference in New Issue
Block a user