@supdigest/digest-convert-types 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/template.d.ts +6 -1
- package/package.json +1 -1
package/dist/template.d.ts
CHANGED
|
@@ -32,6 +32,11 @@ export interface IResourceReference {
|
|
|
32
32
|
resourceId: string;
|
|
33
33
|
}
|
|
34
34
|
export type TOperationTypes = "mail" | "expression" | "delegateExpression" | "html";
|
|
35
|
+
export interface ISequenceFlowNodeProperties {
|
|
36
|
+
prototypeId: string;
|
|
37
|
+
nodeType: EVertexType;
|
|
38
|
+
conditionExpression?: string;
|
|
39
|
+
}
|
|
35
40
|
export interface INodeProperties {
|
|
36
41
|
name?: string;
|
|
37
42
|
documentation?: string;
|
|
@@ -71,7 +76,7 @@ export interface INodeProperties {
|
|
|
71
76
|
export interface IChildShape {
|
|
72
77
|
resourceId: string;
|
|
73
78
|
stencil: IStencil;
|
|
74
|
-
properties: INodeProperties;
|
|
79
|
+
properties: INodeProperties | ISequenceFlowNodeProperties;
|
|
75
80
|
bounds?: IBounds | {};
|
|
76
81
|
outgoing?: IResourceReference[];
|
|
77
82
|
childShapes?: IChildShape[];
|