@5minds/processcube_engine_sdk
Advanced tools
Comparing version 6.1.0-feature-f6a0ca-m4b1phv7 to 6.1.0-renovate-05f938-m4gzywpq
@@ -6,19 +6,4 @@ "use strict"; | ||
class ActivityViewModel extends FlowNodeViewModel_1.FlowNodeViewModel { | ||
/** | ||
* @swagger | ||
* components: | ||
* schemas: | ||
* ActivityViewModel: | ||
* description: An Activity. | ||
* allOf: | ||
* - $ref: '#/components/schemas/FlowNodeViewModel' | ||
* | ||
*/ | ||
messageChannel; | ||
constructor(activity, processModel) { | ||
super(activity, processModel); | ||
this.messageChannel = activity.messageChannel; | ||
} | ||
} | ||
exports.ActivityViewModel = ActivityViewModel; | ||
//# sourceMappingURL=ActivityViewModel.js.map |
@@ -8,2 +8,3 @@ "use strict"; | ||
messageId; | ||
messageChannel; | ||
constructor(receiveTask, processModel) { | ||
@@ -10,0 +11,0 @@ super(receiveTask, processModel); |
@@ -8,2 +8,3 @@ "use strict"; | ||
messageId; | ||
messageChannel; | ||
constructor(sendTask, processModel) { | ||
@@ -10,0 +11,0 @@ super(sendTask, processModel); |
@@ -13,2 +13,4 @@ "use strict"; | ||
condition; | ||
messageChannel; | ||
signalChannel; | ||
constructor(boundaryEvent, processModel) { | ||
@@ -15,0 +17,0 @@ super(boundaryEvent, processModel); |
@@ -35,2 +35,4 @@ "use strict"; | ||
errorMessage; | ||
messageChannel; | ||
signalChannel; | ||
constructor(endEvent, processModel) { | ||
@@ -37,0 +39,0 @@ super(endEvent, processModel); |
@@ -18,6 +18,4 @@ "use strict"; | ||
messageId; | ||
messageChannel; | ||
signalName; | ||
signalId; | ||
signalChannel; | ||
constructor(event, processModel) { | ||
@@ -27,6 +25,4 @@ super(event, processModel); | ||
this.messageId = event.messageEventDefinition?.id; | ||
this.messageChannel = event.messageChannel; | ||
this.signalName = event.signalEventDefinition?.name; | ||
this.signalId = event.signalEventDefinition?.id; | ||
this.signalChannel = event.signalChannel; | ||
} | ||
@@ -33,0 +29,0 @@ } |
@@ -11,2 +11,4 @@ "use strict"; | ||
condition; | ||
messageChannel; | ||
signalChannel; | ||
constructor(intermediateCatchEvent, processModel) { | ||
@@ -13,0 +15,0 @@ super(intermediateCatchEvent, processModel); |
@@ -7,2 +7,4 @@ "use strict"; | ||
linkName; | ||
messageChannel; | ||
signalChannel; | ||
constructor(intermediateThrowEvent, processModel) { | ||
@@ -9,0 +11,0 @@ super(intermediateThrowEvent, processModel); |
@@ -32,2 +32,4 @@ "use strict"; | ||
timerValue; | ||
messageChannel; | ||
signalChannel; | ||
constructor(startEvent, processModel) { | ||
@@ -34,0 +36,0 @@ super(startEvent, processModel); |
@@ -1,17 +0,3 @@ | ||
import { Activity } from '../../Model/Activities'; | ||
import { ProcessModelLike } from '../BaseElementViewModel'; | ||
import { FlowNodeViewModel } from '../FlowNodeViewModel'; | ||
export declare abstract class ActivityViewModel extends FlowNodeViewModel { | ||
/** | ||
* @swagger | ||
* components: | ||
* schemas: | ||
* ActivityViewModel: | ||
* description: An Activity. | ||
* allOf: | ||
* - $ref: '#/components/schemas/FlowNodeViewModel' | ||
* | ||
*/ | ||
messageChannel?: string; | ||
constructor(activity: Activity, processModel: ProcessModelLike); | ||
} |
@@ -7,3 +7,4 @@ import { ReceiveTask } from '../../Model/Activities/index'; | ||
messageId?: string; | ||
messageChannel?: string; | ||
constructor(receiveTask: ReceiveTask, processModel: ProcessModelLike); | ||
} |
@@ -7,3 +7,4 @@ import { SendTask } from '../../Model/Activities/index'; | ||
messageId?: string; | ||
messageChannel?: string; | ||
constructor(sendTask: SendTask, processModel: ProcessModelLike); | ||
} |
@@ -11,3 +11,5 @@ import { BoundaryEvent } from '../../Model/Events/index'; | ||
condition?: string; | ||
messageChannel?: string; | ||
signalChannel?: string; | ||
constructor(boundaryEvent: BoundaryEvent, processModel: ProcessModelLike); | ||
} |
@@ -34,3 +34,5 @@ import { EndEvent } from '../../Model/Events/index'; | ||
errorMessage?: string; | ||
messageChannel?: string; | ||
signalChannel?: string; | ||
constructor(endEvent: EndEvent, processModel: ProcessModelLike); | ||
} |
@@ -17,7 +17,5 @@ import { Event } from '../../Model/Events/index'; | ||
messageId?: string; | ||
messageChannel?: string; | ||
signalName?: string; | ||
signalId?: string; | ||
signalChannel?: string; | ||
constructor(event: Event, processModel: ProcessModelLike); | ||
} |
@@ -9,3 +9,5 @@ import { IntermediateCatchEvent } from '../../Model/Events/index'; | ||
condition?: string; | ||
messageChannel?: string; | ||
signalChannel?: string; | ||
constructor(intermediateCatchEvent: IntermediateCatchEvent, processModel: ProcessModelLike); | ||
} |
@@ -6,3 +6,5 @@ import { IntermediateThrowEvent } from '../../Model/Events/index'; | ||
linkName?: string; | ||
messageChannel?: string; | ||
signalChannel?: string; | ||
constructor(intermediateThrowEvent: IntermediateThrowEvent, processModel: ProcessModelLike); | ||
} |
@@ -30,3 +30,5 @@ import { StartEvent } from '../../Model/Events/index'; | ||
timerValue?: string; | ||
messageChannel?: string; | ||
signalChannel?: string; | ||
constructor(startEvent: StartEvent, processModel: ProcessModelLike); | ||
} |
{ | ||
"name": "@5minds/processcube_engine_sdk", | ||
"version": "6.1.0-feature-f6a0ca-m4b1phv7", | ||
"version": "6.1.0-renovate-05f938-m4gzywpq", | ||
"description": "Software development kit for the Engine.", | ||
@@ -41,3 +41,3 @@ "main": "dist/commonjs/index.js", | ||
"devDependencies": { | ||
"@trivago/prettier-plugin-sort-imports": "^4.2.0", | ||
"@trivago/prettier-plugin-sort-imports": "^5.0.0", | ||
"@types/express": "^5.0.0", | ||
@@ -44,0 +44,0 @@ "@types/mocha": "^10.0.3", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
652164
11530