@elyx-code/project-logic-tree 0.0.6032 → 0.0.6034
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/built-in-base-entities/ids.d.ts +60 -0
- package/dist/definitions/built-in-base-entities/loops/counted/body.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/loops/counted/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/counted/loop.d.ts +9 -0
- package/dist/definitions/built-in-base-entities/loops/index.d.ts +4 -1
- package/dist/definitions/built-in-base-entities/loops/list/body.d.ts +11 -0
- package/dist/definitions/built-in-base-entities/loops/list/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/list/loop.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/loops/manual-flow/body.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/loops/manual-flow/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/manual-flow/loop.d.ts +3 -0
- package/dist/definitions/built-in-base-entities/loops/object-keys-loop/body.d.ts +11 -0
- package/dist/definitions/built-in-base-entities/loops/object-keys-loop/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/object-keys-loop/loop.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/loops/object-values-loop/body.d.ts +11 -0
- package/dist/definitions/built-in-base-entities/loops/object-values-loop/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/object-values-loop/loop.d.ts +7 -0
- package/dist/definitions/built-in-base-entities/loops/string/body.d.ts +11 -0
- package/dist/definitions/built-in-base-entities/loops/string/index.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/string/loop.d.ts +7 -0
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/ids.d.ts +1 -1
- package/dist/definitions/types/data-type.d.ts +2 -2
- package/dist/definitions/types/function.d.ts +8 -1
- package/dist/definitions/types/return.d.ts +5 -1
- package/dist/index.js +12020 -11120
- package/dist/index.umd.cjs +201 -201
- package/dist/tree/state/action-descriptor/validation/validation-schema.d.ts +16 -16
- package/dist/tree/state/argument-declaration/argument-declaration.d.ts +3 -0
- package/dist/tree/state/data-type/data-type.d.ts +2 -2
- package/dist/tree/state/function-declaration/function-declaration.d.ts +1 -0
- package/dist/tree/state/global-event/validation/validation-schema.d.ts +16 -16
- package/dist/tree/state/loop/loop.d.ts +3 -0
- package/dist/tree/state/project/project.d.ts +1 -0
- package/dist/tree/state/return-declaration/return-declaration.d.ts +3 -0
- package/package.json +1 -1
- package/dist/definitions/built-in-base-entities/loops/list.d.ts +0 -9
- package/dist/definitions/built-in-base-entities/loops/manual-flow.d.ts +0 -7
|
@@ -37,15 +37,15 @@ export declare function getActionDescriptorBaseSchema(): z.ZodObject<{
|
|
|
37
37
|
type: EntityType.ActionDescriptor;
|
|
38
38
|
name: string;
|
|
39
39
|
description: string | null;
|
|
40
|
-
argumentsType: ActionDescriptorValuesType;
|
|
41
|
-
returnsType: ActionDescriptorValuesType;
|
|
40
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
41
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
42
42
|
}, {
|
|
43
43
|
id: string;
|
|
44
44
|
type: EntityType.ActionDescriptor;
|
|
45
45
|
name: string;
|
|
46
46
|
description: string | null;
|
|
47
|
-
argumentsType: ActionDescriptorValuesType;
|
|
48
|
-
returnsType: ActionDescriptorValuesType;
|
|
47
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
48
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
49
49
|
}>;
|
|
50
50
|
export declare function getActionDescriptorMetaShema(): z.ZodObject<z.objectUtil.extendShape<{
|
|
51
51
|
id: z.ZodString;
|
|
@@ -62,16 +62,16 @@ export declare function getActionDescriptorMetaShema(): z.ZodObject<z.objectUtil
|
|
|
62
62
|
name: string;
|
|
63
63
|
description: string | null;
|
|
64
64
|
version: number;
|
|
65
|
-
argumentsType: ActionDescriptorValuesType;
|
|
66
|
-
returnsType: ActionDescriptorValuesType;
|
|
65
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
66
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
67
67
|
}, {
|
|
68
68
|
id: string;
|
|
69
69
|
type: EntityType.ActionDescriptor;
|
|
70
70
|
name: string;
|
|
71
71
|
description: string | null;
|
|
72
72
|
version: number;
|
|
73
|
-
argumentsType: ActionDescriptorValuesType;
|
|
74
|
-
returnsType: ActionDescriptorValuesType;
|
|
73
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
74
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
75
75
|
}>;
|
|
76
76
|
export declare function getActionDescriptorGenerationTargetSchema(): z.ZodObject<z.objectUtil.extendShape<{
|
|
77
77
|
id: z.ZodString;
|
|
@@ -85,15 +85,15 @@ export declare function getActionDescriptorGenerationTargetSchema(): z.ZodObject
|
|
|
85
85
|
type: EntityType.ActionDescriptor;
|
|
86
86
|
name: string;
|
|
87
87
|
description: string | null;
|
|
88
|
-
argumentsType: ActionDescriptorValuesType;
|
|
89
|
-
returnsType: ActionDescriptorValuesType;
|
|
88
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
89
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
90
90
|
}, {
|
|
91
91
|
id: string;
|
|
92
92
|
type: EntityType.ActionDescriptor;
|
|
93
93
|
name: string;
|
|
94
94
|
description: string | null;
|
|
95
|
-
argumentsType: ActionDescriptorValuesType;
|
|
96
|
-
returnsType: ActionDescriptorValuesType;
|
|
95
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
96
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
97
97
|
}>;
|
|
98
98
|
export declare function getActionDescriptorNestedEntitiesSchema(): z.ZodObject<{
|
|
99
99
|
fixedArguments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -380,8 +380,8 @@ export declare function getActionDescriptorSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
380
380
|
entityId: string;
|
|
381
381
|
} | null;
|
|
382
382
|
version: number;
|
|
383
|
-
argumentsType: ActionDescriptorValuesType;
|
|
384
|
-
returnsType: ActionDescriptorValuesType;
|
|
383
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
384
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
385
385
|
fixedArguments: ({
|
|
386
386
|
type: EntityType.ValueDescriptor;
|
|
387
387
|
} | Record<string, any>)[];
|
|
@@ -421,8 +421,8 @@ export declare function getActionDescriptorSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
421
421
|
entityId: string;
|
|
422
422
|
} | null;
|
|
423
423
|
version: number;
|
|
424
|
-
argumentsType: ActionDescriptorValuesType;
|
|
425
|
-
returnsType: ActionDescriptorValuesType;
|
|
424
|
+
argumentsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
425
|
+
returnsType: ActionDescriptorValuesType.Fixed | ActionDescriptorValuesType.None | ActionDescriptorValuesType.Dynamic;
|
|
426
426
|
fixedArguments: ({
|
|
427
427
|
type: EntityType.ValueDescriptor;
|
|
428
428
|
} | Record<string, any>)[];
|
|
@@ -7,6 +7,7 @@ import { ProjectState } from '../project/project';
|
|
|
7
7
|
import { SearchState } from '../search';
|
|
8
8
|
import { EntityError, EntityGenerationError } from '../../state/error';
|
|
9
9
|
import { PrimitiveValueState } from '../primitive-value';
|
|
10
|
+
import { ValueDescriptorState } from '../value-descriptor';
|
|
10
11
|
|
|
11
12
|
export declare class ArgumentDeclarationState implements IArgumentDeclaration, UserManagedEntityStateFunctionality, ValueWritingEntityClass, BaseState, ChildEntityState, EntityWithValueClass {
|
|
12
13
|
initialData: IArgumentDeclaration | IArgumentDeclarationTransfer;
|
|
@@ -19,6 +20,7 @@ export declare class ArgumentDeclarationState implements IArgumentDeclaration, U
|
|
|
19
20
|
readonly type: EntityType.ArgumentDeclaration;
|
|
20
21
|
dataType: DataTypeState | null;
|
|
21
22
|
writesValues: ValueReadingEntityState[];
|
|
23
|
+
implements: ValueDescriptorState | null;
|
|
22
24
|
project: ProjectState;
|
|
23
25
|
errors: EntityError[];
|
|
24
26
|
parent: EntryPointEntityState | SearchState;
|
|
@@ -54,6 +56,7 @@ export declare class ArgumentDeclarationState implements IArgumentDeclaration, U
|
|
|
54
56
|
addValueReader(entity: ValueReadingEntityState): ArgumentDeclarationState;
|
|
55
57
|
removeValueReader(valueReader: ValueReadingEntityState): ArgumentDeclarationState;
|
|
56
58
|
setParent(parent: EntryPointEntityState | SearchState): ArgumentDeclarationState;
|
|
59
|
+
setImplements(implementsEntity: ValueDescriptorState): ArgumentDeclarationState;
|
|
57
60
|
initChildren(): ArgumentDeclarationState;
|
|
58
61
|
subscribe(): ArgumentDeclarationState;
|
|
59
62
|
unsubscribe(): ArgumentDeclarationState;
|
|
@@ -21,9 +21,9 @@ export declare class DataTypeState implements IDataType, UserManagedEntityStateF
|
|
|
21
21
|
readonly id: EntityId;
|
|
22
22
|
version: EntityVersion;
|
|
23
23
|
isNullable: boolean;
|
|
24
|
-
isList: boolean;
|
|
24
|
+
isList: boolean | null;
|
|
25
25
|
constant: boolean;
|
|
26
|
-
asType: boolean;
|
|
26
|
+
asType: boolean | null;
|
|
27
27
|
readonly type: EntityType.DataType;
|
|
28
28
|
options?: string[];
|
|
29
29
|
parentRelationType?: DataTypeParentChildRelation;
|
|
@@ -70,6 +70,7 @@ export declare class FunctionDeclarationState implements IFunctionDeclaration, B
|
|
|
70
70
|
addInputDeclaration(input: ArgumentDeclarationState): FunctionDeclarationState;
|
|
71
71
|
removeInputDeclaration(input: ArgumentDeclarationState): FunctionDeclarationState;
|
|
72
72
|
setParent(parent: ProjectState | InstalledProjectState | CustomEntityState | LoopState | BuiltInBaseEntityState | PrimitiveEntityState): FunctionDeclarationState;
|
|
73
|
+
setImplements(implementsEntity: ActionDescriptorState): FunctionDeclarationState;
|
|
73
74
|
addCall(entity: CallableEntityState): FunctionDeclarationState;
|
|
74
75
|
removeCall(entity: CallableEntityState): FunctionDeclarationState;
|
|
75
76
|
initChildren(): FunctionDeclarationState;
|
|
@@ -221,8 +221,8 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
221
221
|
entityId: string;
|
|
222
222
|
} | null;
|
|
223
223
|
version: number;
|
|
224
|
-
argumentsType: import(
|
|
225
|
-
returnsType: import(
|
|
224
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
225
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
226
226
|
fixedArguments: ({
|
|
227
227
|
type: EntityType.ValueDescriptor;
|
|
228
228
|
} | Record<string, any>)[];
|
|
@@ -262,8 +262,8 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
262
262
|
entityId: string;
|
|
263
263
|
} | null;
|
|
264
264
|
version: number;
|
|
265
|
-
argumentsType: import(
|
|
266
|
-
returnsType: import(
|
|
265
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
266
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
267
267
|
fixedArguments: ({
|
|
268
268
|
type: EntityType.ValueDescriptor;
|
|
269
269
|
} | Record<string, any>)[];
|
|
@@ -512,8 +512,8 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
512
512
|
entityId: string;
|
|
513
513
|
} | null;
|
|
514
514
|
version: number;
|
|
515
|
-
argumentsType: import(
|
|
516
|
-
returnsType: import(
|
|
515
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
516
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
517
517
|
fixedArguments: ({
|
|
518
518
|
type: EntityType.ValueDescriptor;
|
|
519
519
|
} | Record<string, any>)[];
|
|
@@ -632,8 +632,8 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
632
632
|
entityId: string;
|
|
633
633
|
} | null;
|
|
634
634
|
version: number;
|
|
635
|
-
argumentsType: import(
|
|
636
|
-
returnsType: import(
|
|
635
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
636
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
637
637
|
fixedArguments: ({
|
|
638
638
|
type: EntityType.ValueDescriptor;
|
|
639
639
|
} | Record<string, any>)[];
|
|
@@ -870,8 +870,8 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
870
870
|
entityId: string;
|
|
871
871
|
} | null;
|
|
872
872
|
version: number;
|
|
873
|
-
argumentsType: import(
|
|
874
|
-
returnsType: import(
|
|
873
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
874
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
875
875
|
fixedArguments: ({
|
|
876
876
|
type: EntityType.ValueDescriptor;
|
|
877
877
|
} | Record<string, any>)[];
|
|
@@ -911,8 +911,8 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
911
911
|
entityId: string;
|
|
912
912
|
} | null;
|
|
913
913
|
version: number;
|
|
914
|
-
argumentsType: import(
|
|
915
|
-
returnsType: import(
|
|
914
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
915
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
916
916
|
fixedArguments: ({
|
|
917
917
|
type: EntityType.ValueDescriptor;
|
|
918
918
|
} | Record<string, any>)[];
|
|
@@ -1161,8 +1161,8 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1161
1161
|
entityId: string;
|
|
1162
1162
|
} | null;
|
|
1163
1163
|
version: number;
|
|
1164
|
-
argumentsType: import(
|
|
1165
|
-
returnsType: import(
|
|
1164
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
1165
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
1166
1166
|
fixedArguments: ({
|
|
1167
1167
|
type: EntityType.ValueDescriptor;
|
|
1168
1168
|
} | Record<string, any>)[];
|
|
@@ -1284,8 +1284,8 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1284
1284
|
entityId: string;
|
|
1285
1285
|
} | null;
|
|
1286
1286
|
version: number;
|
|
1287
|
-
argumentsType: import(
|
|
1288
|
-
returnsType: import(
|
|
1287
|
+
argumentsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
1288
|
+
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
1289
1289
|
fixedArguments: ({
|
|
1290
1290
|
type: EntityType.ValueDescriptor;
|
|
1291
1291
|
} | Record<string, any>)[];
|
|
@@ -150,6 +150,9 @@ export declare class LoopState implements ILoop, BaseState, UserManagedEntitySta
|
|
|
150
150
|
createCurrentValueInputBasedOnInputMap(): IChangeSet<LoopState>;
|
|
151
151
|
syncFixedBodyArgumentDeclarations(): IChangeSet<LoopState>;
|
|
152
152
|
syncInputMaps(): IChangeSet<LoopState>;
|
|
153
|
+
getCurrentValueBuiltInValueDescriptor(): ValueDescriptorState | null;
|
|
154
|
+
getCurrentIterationNumberBuiltInValueDescriptor(): ValueDescriptorState;
|
|
155
|
+
syncBody(): IChangeSet<LoopState>;
|
|
153
156
|
syncChildren(): IChangeSet<LoopState>;
|
|
154
157
|
}
|
|
155
158
|
export type LoopPayloadUnion = LoopState | LoopTypesUnion;
|
|
@@ -49,6 +49,7 @@ export declare class ProjectState implements IProject, UserManagedEntityStateFun
|
|
|
49
49
|
operationDeclarations: ActionDescriptorState[];
|
|
50
50
|
globalEventActionDescriptors: ActionDescriptorState[];
|
|
51
51
|
loopDeclarations: ActionDescriptorState[];
|
|
52
|
+
loopDeclarationsBodies: ActionDescriptorState[];
|
|
52
53
|
conditionDeclarations: ActionDescriptorState[];
|
|
53
54
|
valueDescriptors: ValueDescriptorState[];
|
|
54
55
|
dataTypes: DataTypeState[];
|
|
@@ -9,6 +9,7 @@ import { BreakStatementState } from '../break-statement';
|
|
|
9
9
|
import { ContinueStatementState } from '../continue-statement';
|
|
10
10
|
import { EntityError, EntityGenerationError } from '../../state/error';
|
|
11
11
|
import { PrimitiveValueState } from '../primitive-value';
|
|
12
|
+
import { ValueDescriptorState } from '../value-descriptor';
|
|
12
13
|
|
|
13
14
|
export declare class ReturnDeclarationState implements IReturnDeclaration, UserManagedEntityStateFunctionality, ValueReadingEntityClass, BaseState, ChildEntityState, EntityWithValueClass {
|
|
14
15
|
initialData: IReturnDeclaration | IReturnDeclarationTransfer;
|
|
@@ -22,6 +23,7 @@ export declare class ReturnDeclarationState implements IReturnDeclaration, UserM
|
|
|
22
23
|
readonly type: EntityType.ReturnDeclaration;
|
|
23
24
|
dataType: DataTypeState | null;
|
|
24
25
|
readsValue: ValueWritingEntityState | null;
|
|
26
|
+
implements: ValueDescriptorState | null;
|
|
25
27
|
project: ProjectState;
|
|
26
28
|
errors: EntityError[];
|
|
27
29
|
parent: ReturnStatementState | BreakStatementState | ContinueStatementState;
|
|
@@ -55,6 +57,7 @@ export declare class ReturnDeclarationState implements IReturnDeclaration, UserM
|
|
|
55
57
|
self: ReturnDeclarationState;
|
|
56
58
|
};
|
|
57
59
|
setParent(parent: ReturnStatementState | BreakStatementState | ContinueStatementState): ReturnDeclarationState;
|
|
60
|
+
setImplements(implementsEntity: ValueDescriptorState): ReturnDeclarationState;
|
|
58
61
|
initChildren(): ReturnDeclarationState;
|
|
59
62
|
setValueWriter(valueWriter: ValueWritingEntityState): ReturnDeclarationState;
|
|
60
63
|
removeValueWriter(): ReturnDeclarationState;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6034",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IArgumentDeclarationReference, IDataTypeTransfer, IActionDescriptorReference, IActionDescriptorTransfer, IValueDescriptorTransfer } from '../..';
|
|
2
|
-
|
|
3
|
-
export declare const iterateOverListActionDescriptorReturnDeclarationParentRef: IActionDescriptorReference;
|
|
4
|
-
export declare const iterateOverListActionDescriptorReturnDeclaration: IValueDescriptorTransfer;
|
|
5
|
-
export declare const iterateOverListActionDescriptorListArgumentDeclarationDataTypeParentRef: IArgumentDeclarationReference;
|
|
6
|
-
export declare const iterateOverListActionDescriptorListArgumentDeclarationDataType: IDataTypeTransfer;
|
|
7
|
-
export declare const iterateOverListActionDescriptorListArgumentDeclarationParentRef: IActionDescriptorReference;
|
|
8
|
-
export declare const iterateOverListActionDescriptorListArgumentDeclaration: IValueDescriptorTransfer;
|
|
9
|
-
export declare const iterateOverListActionDescriptor: IActionDescriptorTransfer;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { IDataTypeTransfer, IActionDescriptorReference, IActionDescriptorTransfer, IReturnDeclarationReference, IValueDescriptorTransfer } from '../..';
|
|
2
|
-
|
|
3
|
-
export declare const manualFlowActionDescriptorDeclarationReturnDeclarationDataTypeParentRef: IReturnDeclarationReference;
|
|
4
|
-
export declare const manualFlowActionDescriptorDeclarationReturnDeclarationDataType: IDataTypeTransfer;
|
|
5
|
-
export declare const manualFlowActionDescriptorDeclarationReturnDeclarationParentRef: IActionDescriptorReference;
|
|
6
|
-
export declare const manualFlowActionDescriptorDeclarationReturnDeclaration: IValueDescriptorTransfer;
|
|
7
|
-
export declare const manualFlowActionDescriptor: IActionDescriptorTransfer;
|