@supdigest/digest-convert-types 1.2.7 → 1.2.9

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.
@@ -38,7 +38,11 @@ export interface ISequenceFlowNodeProperties {
38
38
  nodeType: EVertexType;
39
39
  conditionExpression?: string;
40
40
  }
41
- type TNavigationMode = 'self' | 'external' | 'embedded';
41
+ export declare enum ENavigationMode {
42
+ SELF = "self",
43
+ EXTERNAL = "external",
44
+ EMBEDDED = "embedded"
45
+ }
42
46
  export interface INodeProperties {
43
47
  name?: string;
44
48
  documentation?: string;
@@ -77,7 +81,7 @@ export interface INodeProperties {
77
81
  target?: {
78
82
  documentDefinitionId?: string;
79
83
  uri?: string;
80
- navigationMode: TNavigationMode;
84
+ navigationMode: ENavigationMode;
81
85
  };
82
86
  }
83
87
  export interface IChildShape<T extends ISequenceFlowNodeProperties | INodeProperties> {
@@ -102,4 +106,3 @@ export interface IFlowableBpmnJson {
102
106
  childShapes: IChildShape<INodeProperties | ISequenceFlowNodeProperties>[];
103
107
  bounds?: IBounds;
104
108
  }
105
- export {};
package/dist/template.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ERequestMethodType = exports.EVertexType = void 0;
3
+ exports.ENavigationMode = exports.ERequestMethodType = exports.EVertexType = void 0;
4
4
  var EVertexType;
5
5
  (function (EVertexType) {
6
6
  EVertexType["START"] = "StartNoneEvent";
@@ -20,3 +20,9 @@ var ERequestMethodType;
20
20
  ERequestMethodType["BATCH"] = "BATCH";
21
21
  ERequestMethodType["DELETE"] = "DELETE";
22
22
  })(ERequestMethodType || (exports.ERequestMethodType = ERequestMethodType = {}));
23
+ var ENavigationMode;
24
+ (function (ENavigationMode) {
25
+ ENavigationMode["SELF"] = "self";
26
+ ENavigationMode["EXTERNAL"] = "external";
27
+ ENavigationMode["EMBEDDED"] = "embedded";
28
+ })(ENavigationMode || (exports.ENavigationMode = ENavigationMode = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supdigest/digest-convert-types",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "scripts": {