diff options
author | andre.schmid <andre.schmid@est.tech> | 2021-08-16 17:08:17 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2021-08-20 11:21:08 +0000 |
commit | 502c354da7b9f649d3b9e6a00c159a2ad53e7b1f (patch) | |
tree | 8a49353909674455a107f459b9ba6440637f093c /catalog-ui/src/app/models/csar-component.ts | |
parent | b886cdecf766a51f8c74953d2f0b8187b9e32cab (diff) |
Select a Model when Importing a VSP
Change-Id: I7537af4c7279636de7e450ec398210ace376eade
Issue-ID: SDC-3670
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'catalog-ui/src/app/models/csar-component.ts')
-rw-r--r-- | catalog-ui/src/app/models/csar-component.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/csar-component.ts b/catalog-ui/src/app/models/csar-component.ts index cb89f0ba5e..e388550ccb 100644 --- a/catalog-ui/src/app/models/csar-component.ts +++ b/catalog-ui/src/app/models/csar-component.ts @@ -25,6 +25,7 @@ export interface ICsarComponent { description:string; vspName:string; version:string; + versionId:string; packageId:string; category:string; subCategory:string @@ -32,5 +33,6 @@ export interface ICsarComponent { packageType:string; resourceType:string; vendorRelease:string; + models: Array<string>; } |