@elyx-code/project-logic-tree 0.0.6027 → 0.0.6029
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/definitions/mock/default-mock/functions/replace-back-account-in-company/create-new-bank-account.d.ts +1 -3
- package/dist/definitions/types/data-type.d.ts +2 -0
- package/dist/definitions/types/input-output-map.d.ts +7 -10
- package/dist/definitions/types/operation.d.ts +1 -4
- package/dist/index.js +11735 -11814
- package/dist/index.umd.cjs +195 -195
- package/dist/tree/state/data-type/data-type.d.ts +1 -0
- package/dist/tree/state/input-map/input-map.d.ts +3 -6
- package/dist/tree/state/input-map/validation/validation-schema.d.ts +0 -78
- package/dist/tree/state/operation/operation.d.ts +0 -1
- package/dist/tree/state/operation/validation/validation-schema.d.ts +0 -26
- package/package.json +1 -1
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
import { IActionInputMapTransfer, IActionOutputMapTransfer, IArgumentDeclarationReference, IConditionReference, IFunctionDeclarationReference, IInputMapReference,
|
|
1
|
+
import { IActionInputMapTransfer, IActionOutputMapTransfer, IArgumentDeclarationReference, IConditionReference, IFunctionDeclarationReference, IInputMapReference, IOperationReference, IOperationTransfer, IOutputMapReference } from '../../../..';
|
|
2
2
|
|
|
3
3
|
export declare const createNewBankAccountAccountOwnerDynamicInputMapParentRef: IInputMapReference;
|
|
4
4
|
export declare const createNewBankAccountAccountOwnerDynamicInputMapReadsValueRef: IOutputMapReference;
|
|
5
|
-
export declare const createNewBankAccountAccountOwnerDynamicInputMap: IInputMapTransfer;
|
|
6
5
|
export declare const createNewBankAccountAccountNumberDynamicInputMapReadsValueRef: IArgumentDeclarationReference;
|
|
7
6
|
export declare const createNewBankAccountAccountNumberDynamicInputMapParentRef: IInputMapReference;
|
|
8
|
-
export declare const createNewBankAccountAccountNumberDynamicInputMap: IInputMapTransfer;
|
|
9
7
|
export declare const createNewBankAccountInstanceOperationEntityToCreateInputMapParentRef: IOperationReference;
|
|
10
8
|
export declare const createNewBankAccountInstanceOperationEntityToCreateInputMap: IActionInputMapTransfer;
|
|
11
9
|
export declare const createNewBankAccountInstanceOperationOutputEntityMapParentRef: IOperationReference;
|
|
@@ -18,9 +18,11 @@ export interface IDataType_base {
|
|
|
18
18
|
constant: boolean;
|
|
19
19
|
options?: string[];
|
|
20
20
|
parentRelationType?: DataTypeParentChildRelation;
|
|
21
|
+
like?: boolean;
|
|
21
22
|
}
|
|
22
23
|
export interface IDataType_meta extends IGenericBase, IDataType_base {
|
|
23
24
|
type: EntityType.DataType;
|
|
25
|
+
like: boolean;
|
|
24
26
|
}
|
|
25
27
|
export interface IDataTypeTransfer extends IDataType_meta, IChildEntityTransfer {
|
|
26
28
|
entity: ICustomEntityReference | DataTypeEntityTransfer | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EntityType, IArgumentDeclaration, IArgumentDeclarationTransfer, IChildEntity, IChildEntityTransfer, IGenericBase, IPrimitiveValue, IPrimitiveValueTransfer, IReturnDeclaration, IReturnDeclarationTransfer, IValueReadingEntity, IValueReadingEntityTransfer, IValueWritingEntity, IValueWritingEntityTransfer, IProperty, IPropertyTransfer, PassThroughCallableEntity, PassThroughCallableEntityReference, IVariableDeclaration, IVariableDeclarationReference, IVariableInstance, IVariableInstanceReference,
|
|
1
|
+
import { EntityType, IArgumentDeclaration, IArgumentDeclarationTransfer, IChildEntity, IChildEntityTransfer, IGenericBase, IPrimitiveValue, IPrimitiveValueTransfer, IReturnDeclaration, IReturnDeclarationTransfer, IValueReadingEntity, IValueReadingEntityTransfer, IValueWritingEntity, IValueWritingEntityTransfer, IProperty, IPropertyTransfer, PassThroughCallableEntity, PassThroughCallableEntityReference, IVariableDeclaration, IVariableDeclarationReference, IVariableInstance, IVariableInstanceReference, IPrimitiveValueReference, IArgumentDeclarationReference, IPropertyReference, IChildEntityShallowTransfer, IValueReadingEntityShallowTransfer, IReturnDeclarationReference, IValueWritingEntityShallowTransfer, IChildEntityGenerationTarget, IValueReadingEntityGenerationTarget, IValueWritingEntityGenerationTarget, EntityId, IValueDescriptor, IValueDescriptorReference, IValueDescriptorTransfer } from '.';
|
|
2
2
|
|
|
3
3
|
export interface IInputMap_meta extends IGenericBase {
|
|
4
4
|
type: EntityType.InputMap;
|
|
@@ -9,8 +9,7 @@ export interface IInputMap_meta extends IGenericBase {
|
|
|
9
9
|
export interface IInputMapTransfer extends IInputMap_meta, IChildEntityTransfer, IValueReadingEntityTransfer {
|
|
10
10
|
declaration: IArgumentDeclaration | IArgumentDeclarationTransfer | IProperty | IPropertyTransfer | IValueDescriptor | IValueDescriptorTransfer | null;
|
|
11
11
|
defaultValue: IPrimitiveValue | IPrimitiveValueTransfer | null;
|
|
12
|
-
|
|
13
|
-
parent: PassThroughCallableEntity | PassThroughCallableEntityReference | IInputMap | IInputMapReference;
|
|
12
|
+
parent: PassThroughCallableEntity | PassThroughCallableEntityReference;
|
|
14
13
|
}
|
|
15
14
|
export interface IInputMapGenerationTarget extends IChildEntityGenerationTarget, IValueReadingEntityGenerationTarget {
|
|
16
15
|
id: EntityId;
|
|
@@ -23,14 +22,12 @@ export interface IInputMapGenerationTarget extends IChildEntityGenerationTarget,
|
|
|
23
22
|
export interface IInputMapShallowTransfer extends IInputMap_meta, IChildEntityShallowTransfer, IValueReadingEntityShallowTransfer {
|
|
24
23
|
declaration: IArgumentDeclarationReference | IPropertyReference | IValueDescriptorReference | null;
|
|
25
24
|
defaultValue: IPrimitiveValueReference | null;
|
|
26
|
-
|
|
27
|
-
parent: PassThroughCallableEntityReference | IInputMapReference;
|
|
25
|
+
parent: PassThroughCallableEntityReference;
|
|
28
26
|
}
|
|
29
27
|
export interface IInputMap extends IInputMap_meta, IChildEntity, IValueReadingEntity {
|
|
30
28
|
declaration: IArgumentDeclaration | IProperty | IValueDescriptor | null;
|
|
31
29
|
defaultValue: IPrimitiveValue | null;
|
|
32
|
-
|
|
33
|
-
parent: PassThroughCallableEntity | IInputMap;
|
|
30
|
+
parent: PassThroughCallableEntity;
|
|
34
31
|
}
|
|
35
32
|
export declare enum OutputMapParentChildRelation {
|
|
36
33
|
Error = "error",
|
|
@@ -99,7 +96,7 @@ export interface IActionInputMapTransfer extends IInputMapTransfer {
|
|
|
99
96
|
name: null;
|
|
100
97
|
description: null;
|
|
101
98
|
declaration: IArgumentDeclaration | IArgumentDeclarationTransfer | IValueDescriptor | IValueDescriptorTransfer;
|
|
102
|
-
parent: PassThroughCallableEntity | PassThroughCallableEntityReference
|
|
99
|
+
parent: PassThroughCallableEntity | PassThroughCallableEntityReference;
|
|
103
100
|
}
|
|
104
101
|
export interface IActionInputMapGenerationTarget extends IInputMapGenerationTarget {
|
|
105
102
|
name?: undefined;
|
|
@@ -111,13 +108,13 @@ export interface IActionInputMapShallowTransfer extends IInputMapShallowTransfer
|
|
|
111
108
|
name: null;
|
|
112
109
|
description: null;
|
|
113
110
|
declaration: IArgumentDeclarationReference | IValueDescriptorReference;
|
|
114
|
-
parent: PassThroughCallableEntityReference
|
|
111
|
+
parent: PassThroughCallableEntityReference;
|
|
115
112
|
}
|
|
116
113
|
export interface IActionInputMap extends IInputMap {
|
|
117
114
|
name: null;
|
|
118
115
|
description: null;
|
|
119
116
|
declaration: IArgumentDeclaration | IValueDescriptor;
|
|
120
|
-
parent: PassThroughCallableEntity
|
|
117
|
+
parent: PassThroughCallableEntity;
|
|
121
118
|
}
|
|
122
119
|
export interface IActionOutputMapTransfer extends IOutputMapTransfer {
|
|
123
120
|
declaration: IReturnDeclaration | IReturnDeclarationTransfer | IValueDescriptor | IValueDescriptorTransfer;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CallableEntity, EntityWithLogicScope, IProject, IActionOutputMap, IActionInputMap,
|
|
1
|
+
import { CallableEntity, EntityWithLogicScope, IProject, IActionOutputMap, IActionInputMap, EntityType, ICalledEntity, IChildEntity, IBaseActionCallTransfer, IBaseCanvasDraggable, EntityWithLogicScopeReference, IProjectReference, IBaseActionCallShallowTransfer, IActionDescriptorReference, IBaseActionCallGenerationTarget, EntityId, PassThroughCallableEntity, EntryPointEntity, IActionDescriptor, IActionDescriptorTransfer } from '.';
|
|
2
2
|
|
|
3
3
|
export declare enum NumberOperations {
|
|
4
4
|
Addition = "addition",
|
|
@@ -59,7 +59,6 @@ export declare enum HTTPOperations {
|
|
|
59
59
|
export type OperationTypes = NumberOperations | StringOperations | ListOperations | ExecutionOperations | EntityOperations | HTTPOperations;
|
|
60
60
|
export interface IOperationTransfer extends IBaseActionCallTransfer, IBaseCanvasDraggable {
|
|
61
61
|
type: EntityType.Operation;
|
|
62
|
-
dynamicArguments: (IActionInputMap | IActionInputMapTransfer)[];
|
|
63
62
|
declaration: IActionDescriptor | IActionDescriptorTransfer;
|
|
64
63
|
parent: EntityWithLogicScope | EntityWithLogicScopeReference | IProject | IProjectReference;
|
|
65
64
|
}
|
|
@@ -71,14 +70,12 @@ export interface IOperationGenerationTarget extends IBaseActionCallGenerationTar
|
|
|
71
70
|
}
|
|
72
71
|
export interface IOperationShallowTransfer extends IBaseActionCallShallowTransfer, IBaseCanvasDraggable {
|
|
73
72
|
type: EntityType.Operation;
|
|
74
|
-
dynamicArguments: IInputMapReference[];
|
|
75
73
|
declaration: IActionDescriptorReference;
|
|
76
74
|
parent: EntityWithLogicScopeReference | IProjectReference;
|
|
77
75
|
}
|
|
78
76
|
export interface IOperation extends IOperationTransfer, IChildEntity, ICalledEntity {
|
|
79
77
|
declaration: IActionDescriptor;
|
|
80
78
|
inputs: IActionInputMap[];
|
|
81
|
-
dynamicArguments: IActionInputMap[];
|
|
82
79
|
process: IActionOutputMap | null;
|
|
83
80
|
outputs: IActionOutputMap[];
|
|
84
81
|
successCalls: CallableEntity[];
|