From ac31d2159014a84de91b6c7baeb29adf90284c10 Mon Sep 17 00:00:00 2001 From: shaaban Altanany Date: Wed, 26 Feb 2020 10:05:02 +0200 Subject: add view feature and decompress zip file -decompress package zip file -getting content and file names Issue-ID: CCSDK-2120 Signed-off-by: shaaban Altanany Change-Id: If930b257a9dd7b8e094958aad006ff3769810cb3 --- .../feature-modules/packages/model/package-dashboard.state.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/model') diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts index 638e68c06..cb936413c 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/package-dashboard.state.ts @@ -21,8 +21,13 @@ limitations under the License. import {BluePrintDetailModel} from './BluePrint.detail.model'; +import {Mapping, Scripts, Template} from '../package-creation/mapping-models/CBAPacakge.model'; -export class PackageDashboardState { +export class PackageDashboardState { configuration: BluePrintDetailModel; + public scripts: Scripts; + public templates: Template; + public mapping: Mapping; + public imports: Map; } -- cgit 1.2.3-korg