@elyx-code/project-logic-tree 0.0.6021 → 0.0.6023
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/manual-hello-world-loop/loop/loop.d.ts +3 -1
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/found-person-output.d.ts +3 -3
- package/dist/definitions/mock/default-mock/searches/find-companies-with-multiple-employees-and-bank-account.d.ts +2 -2
- package/dist/definitions/types/function.d.ts +3 -3
- package/dist/definitions/types/loop.d.ts +4 -1
- package/dist/definitions/types/search.d.ts +4 -4
- package/dist/index.js +10497 -10068
- package/dist/index.umd.cjs +215 -214
- package/dist/tree/state/data-type/data-type.d.ts +2 -1
- package/dist/tree/state/input-map/input-map.d.ts +1 -1
- package/dist/tree/state/loop/loop.d.ts +13 -2
- package/dist/tree/state/loop/validation/validation-schema.d.ts +26 -0
- package/dist/tree/state/output-map/output-map.d.ts +2 -1
- package/dist/tree/state/return-declaration/return-declaration.d.ts +3 -4
- package/dist/tree/state/return-declaration/validation/validation-schema.d.ts +0 -80
- package/dist/tree/state/search/search.d.ts +4 -4
- package/dist/tree/state/search/validation/validation-schema.d.ts +18 -18
- package/dist/tree/state/value-descriptor/value-descriptor.d.ts +5 -3
- package/dist/tree/utils/index.d.ts +1 -1
- package/package.json +7 -2
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { IActionOutputMapTransfer, IFunctionDeclarationReference, ILoopReference, ILoopTransfer, IProjectReference } from '../../../../..';
|
|
1
|
+
import { IActionOutputMapTransfer, IFunctionDeclarationReference, ILoopReference, ILoopTransfer, IProjectReference, IValueDescriptorTransfer } from '../../../../..';
|
|
2
2
|
|
|
3
|
+
export declare const helloWorldLoopIterationResultInlineOutputDeclarationParentRef: ILoopReference;
|
|
4
|
+
export declare const helloWorldLoopIterationResultInlineOutputDeclaration: IValueDescriptorTransfer;
|
|
3
5
|
export declare const helloWorldLoopOutputMapParentRef: ILoopReference;
|
|
4
6
|
export declare const helloWorldLoopOutputMap: IActionOutputMapTransfer;
|
|
5
7
|
export declare const manualHelloWorldLoopParentRef: IProjectReference;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { IActionOutputMapTransfer, IDataTypeTransfer,
|
|
1
|
+
import { IActionOutputMapTransfer, IDataTypeTransfer, IValueDescriptorReference, IValueDescriptorTransfer, ISearchReference } from '../../../../..';
|
|
2
2
|
|
|
3
|
-
export declare const searchPersonByIdOutputEntityDeclarationDatatypeParentRef:
|
|
3
|
+
export declare const searchPersonByIdOutputEntityDeclarationDatatypeParentRef: IValueDescriptorReference;
|
|
4
4
|
export declare const searchPersonByIdOutputEntityDeclarationDatatype: IDataTypeTransfer;
|
|
5
5
|
export declare const searchPersonByIdOutputEntityDeclarationParentRef: ISearchReference;
|
|
6
|
-
export declare const searchPersonByIdOutputEntityDeclaration:
|
|
6
|
+
export declare const searchPersonByIdOutputEntityDeclaration: IValueDescriptorTransfer;
|
|
7
7
|
export declare const searchPersonByIdOutputEntityMapParentRef: ISearchReference;
|
|
8
8
|
export declare const searchPersonByIdOutputEntityMap: IActionOutputMapTransfer;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { IActionOutputMapTransfer, IProjectReference,
|
|
1
|
+
import { IActionOutputMapTransfer, IProjectReference, IValueDescriptorTransfer, ISearchReference, ISearchTransfer } from '../../..';
|
|
2
2
|
import { ISelectQuery } from '@elyx-code/definitions';
|
|
3
3
|
|
|
4
4
|
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchQuery: ISelectQuery;
|
|
5
5
|
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchParentRef: IProjectReference;
|
|
6
6
|
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchCompaniesListOutputDeclarationParentRef: ISearchReference;
|
|
7
|
-
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchCompaniesListOutputDeclaration:
|
|
7
|
+
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchCompaniesListOutputDeclaration: IValueDescriptorTransfer;
|
|
8
8
|
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchCompaniesListOutputParentRef: ISearchReference;
|
|
9
9
|
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearchCompaniesListOutput: IActionOutputMapTransfer;
|
|
10
10
|
export declare const findCompaniesWithMultipleEmployeesAndBankAccountSearch: ISearchTransfer;
|
|
@@ -121,18 +121,18 @@ export interface IValueDescriptor_meta extends IValueDescriptor_base, IGenericBa
|
|
|
121
121
|
}
|
|
122
122
|
export interface IValueDescriptorTransfer extends IValueDescriptor_meta {
|
|
123
123
|
dataType: IDataType | IDataTypeTransfer | null;
|
|
124
|
-
parent: IActionDescriptor | IActionDescriptorReference | null;
|
|
124
|
+
parent: IActionDescriptor | IActionDescriptorReference | ILoop | ILoopReference | ISearch | ISearchReference | null;
|
|
125
125
|
}
|
|
126
126
|
export interface IValueDescriptorGenerationTarget extends IValueDescriptor_base {
|
|
127
127
|
parent?: EntityId;
|
|
128
128
|
}
|
|
129
129
|
export interface IValueDescriptorShallowTransfer extends IValueDescriptor_meta {
|
|
130
130
|
dataType: IDataTypeReference | null;
|
|
131
|
-
parent: IActionDescriptorReference | null;
|
|
131
|
+
parent: IActionDescriptorReference | ILoopReference | ISearchReference | null;
|
|
132
132
|
}
|
|
133
133
|
export interface IValueDescriptor extends IValueDescriptorTransfer {
|
|
134
134
|
dataType: IDataType | null;
|
|
135
|
-
parent: IActionDescriptor | null;
|
|
135
|
+
parent: IActionDescriptor | ILoop | ISearch | null;
|
|
136
136
|
}
|
|
137
137
|
export interface IActionDescriptor_base {
|
|
138
138
|
id: EntityId;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EntityWithLogicScope, EntityWithLogicScopeReference, IProject, IProjectReference, EntityType, ICalledEntity, ICalledEntityTransfer, IChildEntity, IChildEntityTransfer, IBreakStatement, IBreakStatementTransfer, IContinueStatement, IContinueStatementTransfer, IFunctionDeclaration, IFunctionDeclarationTransfer, IBaseActionCallTransfer, IBaseCanvasDraggable, IBaseActionCall, IActionDescriptorReference, IFunctionDeclarationReference, IBreakStatementReference, IContinueStatementReference, IChildEntityShallowTransfer, ICalledEntityShallowTransfer, IBaseActionCallShallowTransfer, IChildEntityGenerationTarget, ICalledEntityGenerationTarget, IBaseActionCallGenerationTarget, EntityId, IActionDescriptor, IActionDescriptorTransfer } from '.';
|
|
1
|
+
import { EntityWithLogicScope, EntityWithLogicScopeReference, IProject, IProjectReference, EntityType, ICalledEntity, ICalledEntityTransfer, IChildEntity, IChildEntityTransfer, IBreakStatement, IBreakStatementTransfer, IContinueStatement, IContinueStatementTransfer, IFunctionDeclaration, IFunctionDeclarationTransfer, IBaseActionCallTransfer, IBaseCanvasDraggable, IBaseActionCall, IActionDescriptorReference, IFunctionDeclarationReference, IBreakStatementReference, IContinueStatementReference, IChildEntityShallowTransfer, ICalledEntityShallowTransfer, IBaseActionCallShallowTransfer, IChildEntityGenerationTarget, ICalledEntityGenerationTarget, IBaseActionCallGenerationTarget, EntityId, IActionDescriptor, IActionDescriptorTransfer, IValueDescriptor, IValueDescriptorTransfer, IValueDescriptorReference } from '.';
|
|
2
2
|
|
|
3
3
|
export declare enum LoopTypes {
|
|
4
4
|
ManualFlow = "manual-flow-loop",
|
|
@@ -14,6 +14,7 @@ export interface ILoopTransfer extends IBaseCanvasDraggable, IChildEntityTransfe
|
|
|
14
14
|
body: IFunctionDeclaration | IFunctionDeclarationTransfer | null;
|
|
15
15
|
breakStatements: (IBreakStatement | IBreakStatementTransfer)[];
|
|
16
16
|
continueStatements: (IContinueStatement | IContinueStatementTransfer)[];
|
|
17
|
+
outputsDeclarations: (IValueDescriptor | IValueDescriptorTransfer)[];
|
|
17
18
|
parent: EntityWithLogicScope | EntityWithLogicScopeReference | IProject | IProjectReference;
|
|
18
19
|
}
|
|
19
20
|
export interface ILoopGenerationTarget extends IChildEntityGenerationTarget, ICalledEntityGenerationTarget, IBaseActionCallGenerationTarget {
|
|
@@ -28,6 +29,7 @@ export interface ILoopShallowTransfer extends IBaseCanvasDraggable, IChildEntity
|
|
|
28
29
|
body: IFunctionDeclarationReference | null;
|
|
29
30
|
breakStatements: IBreakStatementReference[];
|
|
30
31
|
continueStatements: IContinueStatementReference[];
|
|
32
|
+
outputsDeclarations: IValueDescriptorReference[];
|
|
31
33
|
parent: EntityWithLogicScopeReference | IProjectReference;
|
|
32
34
|
}
|
|
33
35
|
export interface ILoop extends IBaseCanvasDraggable, IChildEntity, ICalledEntity, IBaseActionCall {
|
|
@@ -36,6 +38,7 @@ export interface ILoop extends IBaseCanvasDraggable, IChildEntity, ICalledEntity
|
|
|
36
38
|
body: IFunctionDeclaration | null;
|
|
37
39
|
breakStatements: IBreakStatement[];
|
|
38
40
|
continueStatements: IContinueStatement[];
|
|
41
|
+
outputsDeclarations: IValueDescriptor[];
|
|
39
42
|
parent: EntityWithLogicScope | IProject;
|
|
40
43
|
}
|
|
41
44
|
export type LoopTypesUnion = ILoop | ILoopTransfer | ILoopShallowTransfer | ILoopGenerationTarget;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ISelectQuery } from '@elyx-code/definitions';
|
|
2
|
-
import { CallableEntity, CallableEntityTransfer, EntityWithLogicScope, EntityWithLogicScopeReference, IProject, IProjectReference, IActionOutputMap, IActionOutputMapTransfer, IActionInputMap, EntityType, ICalledEntity, ICalledEntityTransfer, IChildEntity, IChildEntityTransfer, IGenericBase, IArgumentDeclaration, IArgumentDeclarationTransfer,
|
|
2
|
+
import { CallableEntity, CallableEntityTransfer, EntityWithLogicScope, EntityWithLogicScopeReference, IProject, IProjectReference, IActionOutputMap, IActionOutputMapTransfer, IActionInputMap, EntityType, ICalledEntity, ICalledEntityTransfer, IChildEntity, IChildEntityTransfer, IGenericBase, IArgumentDeclaration, IArgumentDeclarationTransfer, IValueDescriptor, IActionInputMapTransfer, IValueDescriptorTransfer, IBaseCanvasDraggable, ICalledEntityShallowTransfer, IChildEntityShallowTransfer, IArgumentDeclarationReference, IInputMapReference, IOutputMapReference, CallableEntityReference, IValueDescriptorReference, IChildEntityGenerationTarget, ICalledEntityGenerationTarget, EntityId, EntryPointEntityReference, EntryPointEntityTransfer, EntryPointEntity, PassThroughCallableEntityReference, PassThroughCallableEntityTransfer, PassThroughCallableEntity } from '.';
|
|
3
3
|
|
|
4
4
|
export interface ISearch_meta extends IGenericBase, IBaseCanvasDraggable {
|
|
5
5
|
type: EntityType.Search;
|
|
@@ -10,7 +10,7 @@ export interface ISearchTransfer extends ISearch_meta, IChildEntityTransfer, ICa
|
|
|
10
10
|
type: EntityType.Search;
|
|
11
11
|
inputsDeclarations: (IArgumentDeclaration | IArgumentDeclarationTransfer)[];
|
|
12
12
|
inputs: (IActionInputMap | IActionInputMapTransfer)[];
|
|
13
|
-
outputsDeclarations: (
|
|
13
|
+
outputsDeclarations: (IValueDescriptor | IValueDescriptorTransfer)[];
|
|
14
14
|
outputs: (IActionOutputMap | IActionOutputMapTransfer)[];
|
|
15
15
|
successCalls: (CallableEntity | CallableEntityTransfer)[];
|
|
16
16
|
errorCalls: (CallableEntity | CallableEntityTransfer)[];
|
|
@@ -35,7 +35,7 @@ export interface ISearchGenerationTarget extends IChildEntityGenerationTarget, I
|
|
|
35
35
|
export interface ISearchShallowTransfer extends ISearch_meta, IChildEntityShallowTransfer, ICalledEntityShallowTransfer {
|
|
36
36
|
inputsDeclarations: IArgumentDeclarationReference[];
|
|
37
37
|
inputs: IInputMapReference[];
|
|
38
|
-
outputsDeclarations:
|
|
38
|
+
outputsDeclarations: IValueDescriptorReference[];
|
|
39
39
|
outputs: IOutputMapReference[];
|
|
40
40
|
successCalls: CallableEntityReference[];
|
|
41
41
|
errorCalls: CallableEntityReference[];
|
|
@@ -51,7 +51,7 @@ export interface ISearch extends ISearchTransfer, IChildEntity, ICalledEntity {
|
|
|
51
51
|
errorCalls: CallableEntity[];
|
|
52
52
|
inputsDeclarations: IArgumentDeclaration[];
|
|
53
53
|
inputs: IActionInputMap[];
|
|
54
|
-
outputsDeclarations:
|
|
54
|
+
outputsDeclarations: IValueDescriptor[];
|
|
55
55
|
outputs: IActionOutputMap[];
|
|
56
56
|
calledBySuccess: PassThroughCallableEntity[];
|
|
57
57
|
calledByError: PassThroughCallableEntity[];
|