Kaynağa Gözat

Added env group typing

jnfrati 3 yıl önce
ebeveyn
işleme
395f90ebd2

+ 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;
+};