@dxs-ts/eveli-ide 0.0.162 → 0.0.167
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/build/api-wrench/api.d.ts +2 -1
- package/build/index.js +91908 -90856
- package/build/style.css +1 -1
- package/build/wrench-decision/editors/CellEditIntl.d.ts +11 -0
- package/build/wrench-decision/editors/builders/EditIntlValueSet.d.ts +10 -0
- package/build/wrench-decision/editors/builders/TypeIntlBuilder.d.ts +19 -0
- package/build/wrench-decision/editors/builders/index.d.ts +1 -0
- package/build/wrench-decision/table/DecisionTableCell.d.ts +1 -0
- package/build/wrench-decision/table/index.d.ts +1 -0
- package/build/wrench-vis/vis-types.d.ts +1 -1
- package/package.json +2 -1
|
@@ -24,7 +24,7 @@ export declare namespace HdesApi {
|
|
|
24
24
|
type BranchId = string;
|
|
25
25
|
type AstBodyType = "FLOW" | "FLOW_TASK" | "DT" | "TAG" | "BRANCH";
|
|
26
26
|
type Direction = "IN" | "OUT";
|
|
27
|
-
type ValueType = "TIME" | "DATE" | "DATE_TIME" | "INSTANT" | "PERIOD" | "DURATION" | "STRING" | "INTEGER" | "LONG" | "BOOLEAN" | "PERCENT" | "OBJECT" | "ARRAY" | "DECIMAL" | "MAP" | "FLOW_CONTEXT";
|
|
27
|
+
type ValueType = "TIME" | "DATE" | "DATE_TIME" | "INSTANT" | "PERIOD" | "DURATION" | "STRING" | "INTEGER" | "LONG" | "BOOLEAN" | "PERCENT" | "OBJECT" | "ARRAY" | "DECIMAL" | "MAP" | "FLOW_CONTEXT" | 'INTL';
|
|
28
28
|
type ProgramStatus = "UP" | "AST_ERROR" | "PROGRAM_ERROR" | "DEPENDENCY_ERROR";
|
|
29
29
|
type HitPolicy = "FIRST" | "ALL";
|
|
30
30
|
type AssociationType = "ONE_TO_ONE" | "ONE_TO_MANY";
|
|
@@ -152,6 +152,7 @@ export declare namespace HdesApi {
|
|
|
152
152
|
userTask: AstFlowRefNode;
|
|
153
153
|
decisionTable: AstFlowRefNode;
|
|
154
154
|
service: AstFlowRefNode;
|
|
155
|
+
returns: AstFlowRefNode;
|
|
155
156
|
switch: Record<string, AstFlowSwitchNode>;
|
|
156
157
|
}
|
|
157
158
|
interface AstFlowRefNode extends AstFlowNode {
|