move PamAccountFilter to table file

This commit is contained in:
x032205
2025-11-14 21:38:49 -05:00
parent 9ad69a487f
commit 578e5c53bc
2 changed files with 4 additions and 5 deletions

View File

@@ -80,10 +80,6 @@ export type TDeletePamResourceDTO = {
};
// Account DTOs
export type PamAccountFilter = {
resourceIds: string[];
};
export type TListPamAccountsDTO = {
projectId: string;
accountPath?: string | null;

View File

@@ -50,7 +50,6 @@ import { usePagination, usePopUp } from "@app/hooks";
import { OrderByDirection } from "@app/hooks/api/generic/types";
import {
PAM_RESOURCE_TYPE_MAP,
PamAccountFilter,
PamAccountOrderBy,
PamAccountView,
TPamFolder
@@ -69,6 +68,10 @@ import { PamFolderRow } from "./PamFolderRow";
import { PamUpdateAccountModal } from "./PamUpdateAccountModal";
import { PamUpdateFolderModal } from "./PamUpdateFolderModal";
type PamAccountFilter = {
resourceIds: string[];
};
type Props = {
projectId: string;
};