From c21ba95e56f70ba9fbe0daa3ac4b413424b323eb Mon Sep 17 00:00:00 2001 From: Arielk Date: Sun, 21 Apr 2019 16:07:44 +0300 Subject: bug fixes to operation screen and External workflowartifact completion Change-Id: I9d71385d6e29e1736a24f9d84581e465187e9f26 Issue-ID: SDC-2249 Signed-off-by: Arielk --- catalog-ui/src/app/models/operation.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'catalog-ui/src/app/models') diff --git a/catalog-ui/src/app/models/operation.ts b/catalog-ui/src/app/models/operation.ts index d9d0858870..7b0039b184 100644 --- a/catalog-ui/src/app/models/operation.ts +++ b/catalog-ui/src/app/models/operation.ts @@ -6,7 +6,7 @@ export class OperationParameter { inputId: string; required: boolean; - constructor(param?: OperationParameter) { + constructor(param?: any) { if (param) { this.name = param.name; this.type = param.type; @@ -24,6 +24,7 @@ export class WORKFLOW_ASSOCIATION_OPTIONS { static NONE = 'NONE'; static NEW = 'NEW'; static EXISTING = 'EXISTING'; + static EXTERNAL = 'EXTERNAL'; } export class BEOperationModel { @@ -75,6 +76,8 @@ export class BEOperationModel { export class OperationModel extends BEOperationModel { interfaceType: string; interfaceId: string; + artifactFile: any; + artifactData: any; constructor(operation?: any) { super(operation); -- cgit 1.2.3-korg