@elyx-code/project-logic-tree 0.0.6090 → 0.0.6093
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/search-person-by-id/person-id-input.d.ts +2 -2
- package/dist/definitions/types/search.d.ts +4 -4
- package/dist/index.js +258 -219
- package/dist/index.umd.cjs +3 -3
- package/dist/tree/state/argument-declaration/argument-declaration.d.ts +3 -4
- package/dist/tree/state/search/search.d.ts +4 -4
- package/dist/tree/state/search/search.test.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { IActionInputMapTransfer, IArgumentDeclarationReference,
|
|
1
|
+
import { IActionInputMapTransfer, IArgumentDeclarationReference, IDataTypeTransfer, ISearchReference, IValueDescriptorTransfer } from '../../../../..';
|
|
2
2
|
|
|
3
3
|
export declare const searchPersonByIdInputDeclarationDatatypeParentRef: IArgumentDeclarationReference;
|
|
4
4
|
export declare const searchPersonByIdInputDeclarationDatatype: IDataTypeTransfer;
|
|
5
5
|
export declare const searchPersonByIdInputDeclarationParentRef: ISearchReference;
|
|
6
|
-
export declare const searchPersonByIdInputDeclaration:
|
|
6
|
+
export declare const searchPersonByIdInputDeclaration: IValueDescriptorTransfer;
|
|
7
7
|
export declare const searchPersonByIdInputMapParentRef: ISearchReference;
|
|
8
8
|
export declare const searchPersonByIdInputMapReadsValueRef: IArgumentDeclarationReference;
|
|
9
9
|
export declare const searchPersonByIdInputMap: IActionInputMapTransfer;
|
|
@@ -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,
|
|
2
|
+
import { CallableEntity, CallableEntityTransfer, EntityWithLogicScope, EntityWithLogicScopeReference, IProject, IProjectReference, IActionOutputMap, IActionOutputMapTransfer, IActionInputMap, EntityType, ICalledEntity, ICalledEntityTransfer, IChildEntity, IChildEntityTransfer, IGenericBase, IValueDescriptor, IActionInputMapTransfer, IValueDescriptorTransfer, IBaseCanvasDraggable, ICalledEntityShallowTransfer, IChildEntityShallowTransfer, IValueDescriptorReference, IInputMapReference, IOutputMapReference, CallableEntityReference, 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;
|
|
@@ -8,7 +8,7 @@ export interface ISearch_meta extends IGenericBase, IBaseCanvasDraggable {
|
|
|
8
8
|
}
|
|
9
9
|
export interface ISearchTransfer extends ISearch_meta, IChildEntityTransfer, ICalledEntityTransfer, IBaseCanvasDraggable {
|
|
10
10
|
type: EntityType.Search;
|
|
11
|
-
inputsDeclarations: (
|
|
11
|
+
inputsDeclarations: (IValueDescriptor | IValueDescriptorTransfer)[];
|
|
12
12
|
inputs: (IActionInputMap | IActionInputMapTransfer)[];
|
|
13
13
|
outputsDeclarations: (IValueDescriptor | IValueDescriptorTransfer)[];
|
|
14
14
|
outputs: (IActionOutputMap | IActionOutputMapTransfer)[];
|
|
@@ -33,7 +33,7 @@ export interface ISearchGenerationTarget extends IChildEntityGenerationTarget, I
|
|
|
33
33
|
parent?: EntityId;
|
|
34
34
|
}
|
|
35
35
|
export interface ISearchShallowTransfer extends ISearch_meta, IChildEntityShallowTransfer, ICalledEntityShallowTransfer {
|
|
36
|
-
inputsDeclarations:
|
|
36
|
+
inputsDeclarations: IValueDescriptorReference[];
|
|
37
37
|
inputs: IInputMapReference[];
|
|
38
38
|
outputsDeclarations: IValueDescriptorReference[];
|
|
39
39
|
outputs: IOutputMapReference[];
|
|
@@ -49,7 +49,7 @@ export interface ISearchShallowTransfer extends ISearch_meta, IChildEntityShallo
|
|
|
49
49
|
export interface ISearch extends ISearchTransfer, IChildEntity, ICalledEntity {
|
|
50
50
|
successCalls: CallableEntity[];
|
|
51
51
|
errorCalls: CallableEntity[];
|
|
52
|
-
inputsDeclarations:
|
|
52
|
+
inputsDeclarations: IValueDescriptor[];
|
|
53
53
|
inputs: IActionInputMap[];
|
|
54
54
|
outputsDeclarations: IValueDescriptor[];
|
|
55
55
|
outputs: IActionOutputMap[];
|