summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/base-types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/models/base-types.ts')
-rw-r--r--catalog-ui/src/app/models/base-types.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/catalog-ui/src/app/models/base-types.ts b/catalog-ui/src/app/models/base-types.ts
index ac5f8428f3..526355e0f8 100644
--- a/catalog-ui/src/app/models/base-types.ts
+++ b/catalog-ui/src/app/models/base-types.ts
@@ -20,9 +20,10 @@
interface ListBaseTypesResponse {
baseTypes: BaseTypeResponse[];
+ required: boolean;
}
interface BaseTypeResponse {
- toscaResourceName:string;
- versions:string[];
+ toscaResourceName: string;
+ versions: string[];
}