Merge pull request #26614 from vahagsaribekyan/master

Add dependencyOf property to Component catalog model
This commit is contained in:
Johan Haals
2024-09-16 13:20:01 +02:00
committed by GitHub
6 changed files with 84 additions and 1 deletions
+1
View File
@@ -87,6 +87,7 @@ interface ComponentEntityV1alpha1 extends Entity {
providesApis?: string[];
consumesApis?: string[];
dependsOn?: string[];
dependencyOf?: string[];
system?: string;
};
}
@@ -38,6 +38,7 @@ export interface ComponentEntityV1alpha1 extends Entity {
providesApis?: string[];
consumesApis?: string[];
dependsOn?: string[];
dependencyOf?: string[];
system?: string;
};
}