export policyitem for use in policy manager

merge-requests/3361/merge^2
Siddharth Singh 2025-03-31 18:07:48 +05:30
rodzic 86f840f15d
commit c87c17546d
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -11,7 +11,7 @@ export interface FieldItem {
default?: any;
}
interface PolicyItem {
export interface PolicyItem {
internalName: string;
name: string;
description?: string;
@ -20,12 +20,12 @@ interface PolicyItem {
type ParamValue = string | number | boolean;
interface PolicySpecItem {
export interface PolicySpecItem {
name: string;
params?: Record<string, ParamValue | ParamValue[]>;
}
interface PolicySpec {
export interface PolicySpec {
policies: PolicySpecItem[];
}