@elyx-code/project-logic-tree 0.0.55 → 0.0.57
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/index.d.ts +0 -1
- package/dist/index.js +10757 -10761
- package/dist/index.umd.cjs +130 -130
- package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +8 -8
- package/dist/tree/state/break-statement/validation/validation-schema.d.ts +32 -32
- package/dist/tree/state/condition/validation/validation-schema.d.ts +48 -48
- package/dist/tree/state/continue-statement/validation/validation-schema.d.ts +32 -32
- package/dist/tree/state/function-call/validation/validation-schema.d.ts +56 -56
- package/dist/tree/state/global-event/validation/validation-schema.d.ts +8 -8
- package/dist/tree/state/input-map/validation/validation-schema.d.ts +64 -64
- package/dist/tree/state/internal-call/validation/validation-schema.d.ts +56 -56
- package/dist/tree/state/loop/validation/validation-schema.d.ts +48 -48
- package/dist/tree/state/operation/validation/validation-schema.d.ts +56 -56
- package/dist/tree/state/output-map/validation/validation-schema.d.ts +72 -72
- package/dist/tree/state/project/project.d.ts +6 -0
- package/dist/tree/state/property/validation/validation-schema.d.ts +8 -8
- package/dist/tree/state/return-declaration/validation/validation-schema.d.ts +16 -16
- package/dist/tree/state/return-statement/validation/validation-schema.d.ts +32 -32
- package/dist/tree/state/search/validation/validation-schema.d.ts +48 -48
- package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +64 -64
- package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +64 -64
- package/dist/tree/utils/index.d.ts +1 -1
- package/dist/tree/utils/uuid.d.ts +0 -2
- package/package.json +1 -2
- package/dist/polyfills.d.ts +0 -1
|
@@ -5167,6 +5167,11 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5167
5167
|
type: EntityType.ArgumentDeclaration;
|
|
5168
5168
|
} | null;
|
|
5169
5169
|
parent: {
|
|
5170
|
+
id: string;
|
|
5171
|
+
type: EntityType.GenericReference;
|
|
5172
|
+
entityType: EntityType.Loop;
|
|
5173
|
+
entityId: string;
|
|
5174
|
+
} | {
|
|
5170
5175
|
id: string;
|
|
5171
5176
|
type: EntityType.GenericReference;
|
|
5172
5177
|
entityType: EntityType.Operation;
|
|
@@ -5201,11 +5206,6 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5201
5206
|
type: EntityType.GenericReference;
|
|
5202
5207
|
entityType: EntityType.InternalCall;
|
|
5203
5208
|
entityId: string;
|
|
5204
|
-
} | {
|
|
5205
|
-
id: string;
|
|
5206
|
-
type: EntityType.GenericReference;
|
|
5207
|
-
entityType: EntityType.Loop;
|
|
5208
|
-
entityId: string;
|
|
5209
5209
|
} | {
|
|
5210
5210
|
id: string;
|
|
5211
5211
|
type: EntityType.GenericReference;
|
|
@@ -5654,13 +5654,13 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5654
5654
|
type: EntityType.InputMap;
|
|
5655
5655
|
})[];
|
|
5656
5656
|
readsValue: Record<string, any> | {
|
|
5657
|
+
type: EntityType.OutputMap;
|
|
5658
|
+
} | {
|
|
5657
5659
|
type: EntityType.VariableDeclaration;
|
|
5658
5660
|
} | {
|
|
5659
5661
|
type: EntityType.VariableInstance;
|
|
5660
5662
|
} | {
|
|
5661
5663
|
type: EntityType.ArgumentDeclaration;
|
|
5662
|
-
} | {
|
|
5663
|
-
type: EntityType.OutputMap;
|
|
5664
5664
|
} | {
|
|
5665
5665
|
type: EntityType.Operation;
|
|
5666
5666
|
} | {
|
|
@@ -5675,6 +5675,11 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5675
5675
|
type: EntityType.ArgumentDeclaration;
|
|
5676
5676
|
} | null;
|
|
5677
5677
|
parent: {
|
|
5678
|
+
id: string;
|
|
5679
|
+
type: EntityType.GenericReference;
|
|
5680
|
+
entityType: EntityType.Loop;
|
|
5681
|
+
entityId: string;
|
|
5682
|
+
} | {
|
|
5678
5683
|
id: string;
|
|
5679
5684
|
type: EntityType.GenericReference;
|
|
5680
5685
|
entityType: EntityType.Operation;
|
|
@@ -5709,11 +5714,6 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
5709
5714
|
type: EntityType.GenericReference;
|
|
5710
5715
|
entityType: EntityType.InternalCall;
|
|
5711
5716
|
entityId: string;
|
|
5712
|
-
} | {
|
|
5713
|
-
id: string;
|
|
5714
|
-
type: EntityType.GenericReference;
|
|
5715
|
-
entityType: EntityType.Loop;
|
|
5716
|
-
entityId: string;
|
|
5717
5717
|
} | {
|
|
5718
5718
|
id: string;
|
|
5719
5719
|
type: EntityType.GenericReference;
|
|
@@ -6162,13 +6162,13 @@ export declare function getInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
6162
6162
|
type: EntityType.InputMap;
|
|
6163
6163
|
})[];
|
|
6164
6164
|
readsValue: Record<string, any> | {
|
|
6165
|
+
type: EntityType.OutputMap;
|
|
6166
|
+
} | {
|
|
6165
6167
|
type: EntityType.VariableDeclaration;
|
|
6166
6168
|
} | {
|
|
6167
6169
|
type: EntityType.VariableInstance;
|
|
6168
6170
|
} | {
|
|
6169
6171
|
type: EntityType.ArgumentDeclaration;
|
|
6170
|
-
} | {
|
|
6171
|
-
type: EntityType.OutputMap;
|
|
6172
6172
|
} | {
|
|
6173
6173
|
type: EntityType.Operation;
|
|
6174
6174
|
} | {
|
|
@@ -11275,6 +11275,11 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11275
11275
|
type: EntityType.ArgumentDeclaration;
|
|
11276
11276
|
} | null;
|
|
11277
11277
|
parent: {
|
|
11278
|
+
id: string;
|
|
11279
|
+
type: EntityType.GenericReference;
|
|
11280
|
+
entityType: EntityType.Loop;
|
|
11281
|
+
entityId: string;
|
|
11282
|
+
} | {
|
|
11278
11283
|
id: string;
|
|
11279
11284
|
type: EntityType.GenericReference;
|
|
11280
11285
|
entityType: EntityType.Operation;
|
|
@@ -11309,11 +11314,6 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11309
11314
|
type: EntityType.GenericReference;
|
|
11310
11315
|
entityType: EntityType.InternalCall;
|
|
11311
11316
|
entityId: string;
|
|
11312
|
-
} | {
|
|
11313
|
-
id: string;
|
|
11314
|
-
type: EntityType.GenericReference;
|
|
11315
|
-
entityType: EntityType.Loop;
|
|
11316
|
-
entityId: string;
|
|
11317
11317
|
} | {
|
|
11318
11318
|
id: string;
|
|
11319
11319
|
type: EntityType.GenericReference;
|
|
@@ -11764,13 +11764,13 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11764
11764
|
})[];
|
|
11765
11765
|
index: number;
|
|
11766
11766
|
readsValue: Record<string, any> | {
|
|
11767
|
+
type: EntityType.OutputMap;
|
|
11768
|
+
} | {
|
|
11767
11769
|
type: EntityType.VariableDeclaration;
|
|
11768
11770
|
} | {
|
|
11769
11771
|
type: EntityType.VariableInstance;
|
|
11770
11772
|
} | {
|
|
11771
11773
|
type: EntityType.ArgumentDeclaration;
|
|
11772
|
-
} | {
|
|
11773
|
-
type: EntityType.OutputMap;
|
|
11774
11774
|
} | {
|
|
11775
11775
|
type: EntityType.Operation;
|
|
11776
11776
|
} | {
|
|
@@ -11789,6 +11789,11 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11789
11789
|
type: EntityType.ArgumentDeclaration;
|
|
11790
11790
|
} | null;
|
|
11791
11791
|
parent: {
|
|
11792
|
+
id: string;
|
|
11793
|
+
type: EntityType.GenericReference;
|
|
11794
|
+
entityType: EntityType.Loop;
|
|
11795
|
+
entityId: string;
|
|
11796
|
+
} | {
|
|
11792
11797
|
id: string;
|
|
11793
11798
|
type: EntityType.GenericReference;
|
|
11794
11799
|
entityType: EntityType.Operation;
|
|
@@ -11823,11 +11828,6 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
11823
11828
|
type: EntityType.GenericReference;
|
|
11824
11829
|
entityType: EntityType.InternalCall;
|
|
11825
11830
|
entityId: string;
|
|
11826
|
-
} | {
|
|
11827
|
-
id: string;
|
|
11828
|
-
type: EntityType.GenericReference;
|
|
11829
|
-
entityType: EntityType.Loop;
|
|
11830
|
-
entityId: string;
|
|
11831
11831
|
} | {
|
|
11832
11832
|
id: string;
|
|
11833
11833
|
type: EntityType.GenericReference;
|
|
@@ -12278,13 +12278,13 @@ export declare function getInputMapSchema(): z.ZodObject<z.objectUtil.extendShap
|
|
|
12278
12278
|
})[];
|
|
12279
12279
|
index: number;
|
|
12280
12280
|
readsValue: Record<string, any> | {
|
|
12281
|
+
type: EntityType.OutputMap;
|
|
12282
|
+
} | {
|
|
12281
12283
|
type: EntityType.VariableDeclaration;
|
|
12282
12284
|
} | {
|
|
12283
12285
|
type: EntityType.VariableInstance;
|
|
12284
12286
|
} | {
|
|
12285
12287
|
type: EntityType.ArgumentDeclaration;
|
|
12286
|
-
} | {
|
|
12287
|
-
type: EntityType.OutputMap;
|
|
12288
12288
|
} | {
|
|
12289
12289
|
type: EntityType.Operation;
|
|
12290
12290
|
} | {
|
|
@@ -17703,13 +17703,13 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
17703
17703
|
type: EntityType.InputMap;
|
|
17704
17704
|
})[];
|
|
17705
17705
|
readsValue: Record<string, any> | {
|
|
17706
|
+
type: EntityType.OutputMap;
|
|
17707
|
+
} | {
|
|
17706
17708
|
type: EntityType.VariableDeclaration;
|
|
17707
17709
|
} | {
|
|
17708
17710
|
type: EntityType.VariableInstance;
|
|
17709
17711
|
} | {
|
|
17710
17712
|
type: EntityType.ArgumentDeclaration;
|
|
17711
|
-
} | {
|
|
17712
|
-
type: EntityType.OutputMap;
|
|
17713
17713
|
} | {
|
|
17714
17714
|
type: EntityType.Operation;
|
|
17715
17715
|
} | {
|
|
@@ -18169,13 +18169,13 @@ export declare function getVariableInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
18169
18169
|
type: EntityType.InputMap;
|
|
18170
18170
|
})[];
|
|
18171
18171
|
readsValue: Record<string, any> | {
|
|
18172
|
+
type: EntityType.OutputMap;
|
|
18173
|
+
} | {
|
|
18172
18174
|
type: EntityType.VariableDeclaration;
|
|
18173
18175
|
} | {
|
|
18174
18176
|
type: EntityType.VariableInstance;
|
|
18175
18177
|
} | {
|
|
18176
18178
|
type: EntityType.ArgumentDeclaration;
|
|
18177
|
-
} | {
|
|
18178
|
-
type: EntityType.OutputMap;
|
|
18179
18179
|
} | {
|
|
18180
18180
|
type: EntityType.Operation;
|
|
18181
18181
|
} | {
|
|
@@ -23588,13 +23588,13 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
23588
23588
|
})[];
|
|
23589
23589
|
index: number;
|
|
23590
23590
|
readsValue: Record<string, any> | {
|
|
23591
|
+
type: EntityType.OutputMap;
|
|
23592
|
+
} | {
|
|
23591
23593
|
type: EntityType.VariableDeclaration;
|
|
23592
23594
|
} | {
|
|
23593
23595
|
type: EntityType.VariableInstance;
|
|
23594
23596
|
} | {
|
|
23595
23597
|
type: EntityType.ArgumentDeclaration;
|
|
23596
|
-
} | {
|
|
23597
|
-
type: EntityType.OutputMap;
|
|
23598
23598
|
} | {
|
|
23599
23599
|
type: EntityType.Operation;
|
|
23600
23600
|
} | {
|
|
@@ -24060,13 +24060,13 @@ export declare function getVariableInputMapSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
24060
24060
|
})[];
|
|
24061
24061
|
index: number;
|
|
24062
24062
|
readsValue: Record<string, any> | {
|
|
24063
|
+
type: EntityType.OutputMap;
|
|
24064
|
+
} | {
|
|
24063
24065
|
type: EntityType.VariableDeclaration;
|
|
24064
24066
|
} | {
|
|
24065
24067
|
type: EntityType.VariableInstance;
|
|
24066
24068
|
} | {
|
|
24067
24069
|
type: EntityType.ArgumentDeclaration;
|
|
24068
|
-
} | {
|
|
24069
|
-
type: EntityType.OutputMap;
|
|
24070
24070
|
} | {
|
|
24071
24071
|
type: EntityType.Operation;
|
|
24072
24072
|
} | {
|
|
@@ -29128,6 +29128,11 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29128
29128
|
type: EntityType.ArgumentDeclaration;
|
|
29129
29129
|
};
|
|
29130
29130
|
parent: {
|
|
29131
|
+
id: string;
|
|
29132
|
+
type: EntityType.GenericReference;
|
|
29133
|
+
entityType: EntityType.Loop;
|
|
29134
|
+
entityId: string;
|
|
29135
|
+
} | {
|
|
29131
29136
|
id: string;
|
|
29132
29137
|
type: EntityType.GenericReference;
|
|
29133
29138
|
entityType: EntityType.Operation;
|
|
@@ -29152,11 +29157,6 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29152
29157
|
type: EntityType.GenericReference;
|
|
29153
29158
|
entityType: EntityType.InternalCall;
|
|
29154
29159
|
entityId: string;
|
|
29155
|
-
} | {
|
|
29156
|
-
id: string;
|
|
29157
|
-
type: EntityType.GenericReference;
|
|
29158
|
-
entityType: EntityType.Loop;
|
|
29159
|
-
entityId: string;
|
|
29160
29160
|
} | {
|
|
29161
29161
|
id: string;
|
|
29162
29162
|
type: EntityType.GenericReference;
|
|
@@ -29605,13 +29605,13 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29605
29605
|
type: EntityType.InputMap;
|
|
29606
29606
|
})[];
|
|
29607
29607
|
readsValue: Record<string, any> | {
|
|
29608
|
+
type: EntityType.OutputMap;
|
|
29609
|
+
} | {
|
|
29608
29610
|
type: EntityType.VariableDeclaration;
|
|
29609
29611
|
} | {
|
|
29610
29612
|
type: EntityType.VariableInstance;
|
|
29611
29613
|
} | {
|
|
29612
29614
|
type: EntityType.ArgumentDeclaration;
|
|
29613
|
-
} | {
|
|
29614
|
-
type: EntityType.OutputMap;
|
|
29615
29615
|
} | {
|
|
29616
29616
|
type: EntityType.Operation;
|
|
29617
29617
|
} | {
|
|
@@ -29624,6 +29624,11 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29624
29624
|
type: EntityType.ArgumentDeclaration;
|
|
29625
29625
|
};
|
|
29626
29626
|
parent: {
|
|
29627
|
+
id: string;
|
|
29628
|
+
type: EntityType.GenericReference;
|
|
29629
|
+
entityType: EntityType.Loop;
|
|
29630
|
+
entityId: string;
|
|
29631
|
+
} | {
|
|
29627
29632
|
id: string;
|
|
29628
29633
|
type: EntityType.GenericReference;
|
|
29629
29634
|
entityType: EntityType.Operation;
|
|
@@ -29648,11 +29653,6 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
29648
29653
|
type: EntityType.GenericReference;
|
|
29649
29654
|
entityType: EntityType.InternalCall;
|
|
29650
29655
|
entityId: string;
|
|
29651
|
-
} | {
|
|
29652
|
-
id: string;
|
|
29653
|
-
type: EntityType.GenericReference;
|
|
29654
|
-
entityType: EntityType.Loop;
|
|
29655
|
-
entityId: string;
|
|
29656
29656
|
} | {
|
|
29657
29657
|
id: string;
|
|
29658
29658
|
type: EntityType.GenericReference;
|
|
@@ -30101,13 +30101,13 @@ export declare function getActionInputMapNestedEntitiesSchema(): z.ZodObject<{
|
|
|
30101
30101
|
type: EntityType.InputMap;
|
|
30102
30102
|
})[];
|
|
30103
30103
|
readsValue: Record<string, any> | {
|
|
30104
|
+
type: EntityType.OutputMap;
|
|
30105
|
+
} | {
|
|
30104
30106
|
type: EntityType.VariableDeclaration;
|
|
30105
30107
|
} | {
|
|
30106
30108
|
type: EntityType.VariableInstance;
|
|
30107
30109
|
} | {
|
|
30108
30110
|
type: EntityType.ArgumentDeclaration;
|
|
30109
|
-
} | {
|
|
30110
|
-
type: EntityType.OutputMap;
|
|
30111
30111
|
} | {
|
|
30112
30112
|
type: EntityType.Operation;
|
|
30113
30113
|
} | {
|
|
@@ -35161,6 +35161,11 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35161
35161
|
type: EntityType.ArgumentDeclaration;
|
|
35162
35162
|
};
|
|
35163
35163
|
parent: {
|
|
35164
|
+
id: string;
|
|
35165
|
+
type: EntityType.GenericReference;
|
|
35166
|
+
entityType: EntityType.Loop;
|
|
35167
|
+
entityId: string;
|
|
35168
|
+
} | {
|
|
35164
35169
|
id: string;
|
|
35165
35170
|
type: EntityType.GenericReference;
|
|
35166
35171
|
entityType: EntityType.Operation;
|
|
@@ -35185,11 +35190,6 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35185
35190
|
type: EntityType.GenericReference;
|
|
35186
35191
|
entityType: EntityType.InternalCall;
|
|
35187
35192
|
entityId: string;
|
|
35188
|
-
} | {
|
|
35189
|
-
id: string;
|
|
35190
|
-
type: EntityType.GenericReference;
|
|
35191
|
-
entityType: EntityType.Loop;
|
|
35192
|
-
entityId: string;
|
|
35193
35193
|
} | {
|
|
35194
35194
|
id: string;
|
|
35195
35195
|
type: EntityType.GenericReference;
|
|
@@ -35640,13 +35640,13 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35640
35640
|
})[];
|
|
35641
35641
|
index: number;
|
|
35642
35642
|
readsValue: Record<string, any> | {
|
|
35643
|
+
type: EntityType.OutputMap;
|
|
35644
|
+
} | {
|
|
35643
35645
|
type: EntityType.VariableDeclaration;
|
|
35644
35646
|
} | {
|
|
35645
35647
|
type: EntityType.VariableInstance;
|
|
35646
35648
|
} | {
|
|
35647
35649
|
type: EntityType.ArgumentDeclaration;
|
|
35648
|
-
} | {
|
|
35649
|
-
type: EntityType.OutputMap;
|
|
35650
35650
|
} | {
|
|
35651
35651
|
type: EntityType.Operation;
|
|
35652
35652
|
} | {
|
|
@@ -35663,6 +35663,11 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35663
35663
|
type: EntityType.ArgumentDeclaration;
|
|
35664
35664
|
};
|
|
35665
35665
|
parent: {
|
|
35666
|
+
id: string;
|
|
35667
|
+
type: EntityType.GenericReference;
|
|
35668
|
+
entityType: EntityType.Loop;
|
|
35669
|
+
entityId: string;
|
|
35670
|
+
} | {
|
|
35666
35671
|
id: string;
|
|
35667
35672
|
type: EntityType.GenericReference;
|
|
35668
35673
|
entityType: EntityType.Operation;
|
|
@@ -35687,11 +35692,6 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
35687
35692
|
type: EntityType.GenericReference;
|
|
35688
35693
|
entityType: EntityType.InternalCall;
|
|
35689
35694
|
entityId: string;
|
|
35690
|
-
} | {
|
|
35691
|
-
id: string;
|
|
35692
|
-
type: EntityType.GenericReference;
|
|
35693
|
-
entityType: EntityType.Loop;
|
|
35694
|
-
entityId: string;
|
|
35695
35695
|
} | {
|
|
35696
35696
|
id: string;
|
|
35697
35697
|
type: EntityType.GenericReference;
|
|
@@ -36142,13 +36142,13 @@ export declare function getActionInputMapSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
36142
36142
|
})[];
|
|
36143
36143
|
index: number;
|
|
36144
36144
|
readsValue: Record<string, any> | {
|
|
36145
|
+
type: EntityType.OutputMap;
|
|
36146
|
+
} | {
|
|
36145
36147
|
type: EntityType.VariableDeclaration;
|
|
36146
36148
|
} | {
|
|
36147
36149
|
type: EntityType.VariableInstance;
|
|
36148
36150
|
} | {
|
|
36149
36151
|
type: EntityType.ArgumentDeclaration;
|
|
36150
|
-
} | {
|
|
36151
|
-
type: EntityType.OutputMap;
|
|
36152
36152
|
} | {
|
|
36153
36153
|
type: EntityType.Operation;
|
|
36154
36154
|
} | {
|