jnfrati 3 лет назад
Родитель
Сommit
395f90ebd2
1 измененных файлов с 11 добавлено и 0 удалено
  1. 11 0
      dashboard/src/main/home/cluster-dashboard/stacks/types.ts

+ 11 - 0
dashboard/src/main/home/cluster-dashboard/stacks/types.ts

@@ -52,6 +52,7 @@ export type Stack = {
 export type FullStackRevision = StackRevision & {
   resources: AppResource[];
   source_configs: SourceConfig[];
+  env_groups: EnvGroup[];
 };
 
 export type StackRevision = {
@@ -100,3 +101,13 @@ export type AppResource = {
     template_version: string;
   };
 };
+
+export type EnvGroup = {
+  env_group_version: number;
+  updated_at: string;
+  stack_id: string;
+  name: string;
+  stack_revision_id: number;
+  created_at: string;
+  id: string;
+};