@elyx-code/project-logic-tree 0.0.3 → 0.0.4
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.js +18628 -16940
- package/dist/index.umd.cjs +247 -184
- 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/index.d.ts +34 -29
- 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/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/types/index.d.ts +1 -0
- 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/package.json +1 -1
|
@@ -795,11 +795,6 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
795
795
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
797
|
calledBySuccess: ({
|
|
798
|
-
id: string;
|
|
799
|
-
type: EntityType.GenericReference;
|
|
800
|
-
entityType: EntityType.Loop;
|
|
801
|
-
entityId: string;
|
|
802
|
-
} | {
|
|
803
798
|
id: string;
|
|
804
799
|
type: EntityType.GenericReference;
|
|
805
800
|
entityType: EntityType.Operation;
|
|
@@ -834,13 +829,13 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
834
829
|
type: EntityType.GenericReference;
|
|
835
830
|
entityType: EntityType.InternalCall;
|
|
836
831
|
entityId: string;
|
|
837
|
-
}
|
|
838
|
-
calledByError: ({
|
|
832
|
+
} | {
|
|
839
833
|
id: string;
|
|
840
834
|
type: EntityType.GenericReference;
|
|
841
835
|
entityType: EntityType.Loop;
|
|
842
836
|
entityId: string;
|
|
843
|
-
}
|
|
837
|
+
})[];
|
|
838
|
+
calledByError: ({
|
|
844
839
|
id: string;
|
|
845
840
|
type: EntityType.GenericReference;
|
|
846
841
|
entityType: EntityType.Operation;
|
|
@@ -875,6 +870,11 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
875
870
|
type: EntityType.GenericReference;
|
|
876
871
|
entityType: EntityType.InternalCall;
|
|
877
872
|
entityId: string;
|
|
873
|
+
} | {
|
|
874
|
+
id: string;
|
|
875
|
+
type: EntityType.GenericReference;
|
|
876
|
+
entityType: EntityType.Loop;
|
|
877
|
+
entityId: string;
|
|
878
878
|
})[];
|
|
879
879
|
calledByEntry: ({
|
|
880
880
|
id: string;
|
|
@@ -920,7 +920,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
920
920
|
successCalls: ({
|
|
921
921
|
id: string;
|
|
922
922
|
type: EntityType.GenericReference;
|
|
923
|
-
entityType: EntityType.
|
|
923
|
+
entityType: EntityType.ReturnStatement;
|
|
924
924
|
entityId: string;
|
|
925
925
|
} | {
|
|
926
926
|
id: string;
|
|
@@ -960,7 +960,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
960
960
|
} | {
|
|
961
961
|
id: string;
|
|
962
962
|
type: EntityType.GenericReference;
|
|
963
|
-
entityType: EntityType.
|
|
963
|
+
entityType: EntityType.Loop;
|
|
964
964
|
entityId: string;
|
|
965
965
|
} | {
|
|
966
966
|
id: string;
|
|
@@ -976,7 +976,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
976
976
|
errorCalls: ({
|
|
977
977
|
id: string;
|
|
978
978
|
type: EntityType.GenericReference;
|
|
979
|
-
entityType: EntityType.
|
|
979
|
+
entityType: EntityType.ReturnStatement;
|
|
980
980
|
entityId: string;
|
|
981
981
|
} | {
|
|
982
982
|
id: string;
|
|
@@ -1016,7 +1016,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1016
1016
|
} | {
|
|
1017
1017
|
id: string;
|
|
1018
1018
|
type: EntityType.GenericReference;
|
|
1019
|
-
entityType: EntityType.
|
|
1019
|
+
entityType: EntityType.Loop;
|
|
1020
1020
|
entityId: string;
|
|
1021
1021
|
} | {
|
|
1022
1022
|
id: string;
|
|
@@ -1037,11 +1037,6 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1037
1037
|
})[];
|
|
1038
1038
|
}, {
|
|
1039
1039
|
calledBySuccess: ({
|
|
1040
|
-
id: string;
|
|
1041
|
-
type: EntityType.GenericReference;
|
|
1042
|
-
entityType: EntityType.Loop;
|
|
1043
|
-
entityId: string;
|
|
1044
|
-
} | {
|
|
1045
1040
|
id: string;
|
|
1046
1041
|
type: EntityType.GenericReference;
|
|
1047
1042
|
entityType: EntityType.Operation;
|
|
@@ -1076,13 +1071,13 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1076
1071
|
type: EntityType.GenericReference;
|
|
1077
1072
|
entityType: EntityType.InternalCall;
|
|
1078
1073
|
entityId: string;
|
|
1079
|
-
}
|
|
1080
|
-
calledByError: ({
|
|
1074
|
+
} | {
|
|
1081
1075
|
id: string;
|
|
1082
1076
|
type: EntityType.GenericReference;
|
|
1083
1077
|
entityType: EntityType.Loop;
|
|
1084
1078
|
entityId: string;
|
|
1085
|
-
}
|
|
1079
|
+
})[];
|
|
1080
|
+
calledByError: ({
|
|
1086
1081
|
id: string;
|
|
1087
1082
|
type: EntityType.GenericReference;
|
|
1088
1083
|
entityType: EntityType.Operation;
|
|
@@ -1117,6 +1112,11 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1117
1112
|
type: EntityType.GenericReference;
|
|
1118
1113
|
entityType: EntityType.InternalCall;
|
|
1119
1114
|
entityId: string;
|
|
1115
|
+
} | {
|
|
1116
|
+
id: string;
|
|
1117
|
+
type: EntityType.GenericReference;
|
|
1118
|
+
entityType: EntityType.Loop;
|
|
1119
|
+
entityId: string;
|
|
1120
1120
|
})[];
|
|
1121
1121
|
calledByEntry: ({
|
|
1122
1122
|
id: string;
|
|
@@ -1162,7 +1162,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1162
1162
|
successCalls: ({
|
|
1163
1163
|
id: string;
|
|
1164
1164
|
type: EntityType.GenericReference;
|
|
1165
|
-
entityType: EntityType.
|
|
1165
|
+
entityType: EntityType.ReturnStatement;
|
|
1166
1166
|
entityId: string;
|
|
1167
1167
|
} | {
|
|
1168
1168
|
id: string;
|
|
@@ -1202,7 +1202,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1202
1202
|
} | {
|
|
1203
1203
|
id: string;
|
|
1204
1204
|
type: EntityType.GenericReference;
|
|
1205
|
-
entityType: EntityType.
|
|
1205
|
+
entityType: EntityType.Loop;
|
|
1206
1206
|
entityId: string;
|
|
1207
1207
|
} | {
|
|
1208
1208
|
id: string;
|
|
@@ -1218,7 +1218,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1218
1218
|
errorCalls: ({
|
|
1219
1219
|
id: string;
|
|
1220
1220
|
type: EntityType.GenericReference;
|
|
1221
|
-
entityType: EntityType.
|
|
1221
|
+
entityType: EntityType.ReturnStatement;
|
|
1222
1222
|
entityId: string;
|
|
1223
1223
|
} | {
|
|
1224
1224
|
id: string;
|
|
@@ -1258,7 +1258,7 @@ export declare function getSearchNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1258
1258
|
} | {
|
|
1259
1259
|
id: string;
|
|
1260
1260
|
type: EntityType.GenericReference;
|
|
1261
|
-
entityType: EntityType.
|
|
1261
|
+
entityType: EntityType.Loop;
|
|
1262
1262
|
entityId: string;
|
|
1263
1263
|
} | {
|
|
1264
1264
|
id: string;
|
|
@@ -1994,11 +1994,6 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
1994
1994
|
id: string;
|
|
1995
1995
|
type: EntityType.Search;
|
|
1996
1996
|
calledBySuccess: ({
|
|
1997
|
-
id: string;
|
|
1998
|
-
type: EntityType.GenericReference;
|
|
1999
|
-
entityType: EntityType.Loop;
|
|
2000
|
-
entityId: string;
|
|
2001
|
-
} | {
|
|
2002
1997
|
id: string;
|
|
2003
1998
|
type: EntityType.GenericReference;
|
|
2004
1999
|
entityType: EntityType.Operation;
|
|
@@ -2033,13 +2028,13 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2033
2028
|
type: EntityType.GenericReference;
|
|
2034
2029
|
entityType: EntityType.InternalCall;
|
|
2035
2030
|
entityId: string;
|
|
2036
|
-
}
|
|
2037
|
-
calledByError: ({
|
|
2031
|
+
} | {
|
|
2038
2032
|
id: string;
|
|
2039
2033
|
type: EntityType.GenericReference;
|
|
2040
2034
|
entityType: EntityType.Loop;
|
|
2041
2035
|
entityId: string;
|
|
2042
|
-
}
|
|
2036
|
+
})[];
|
|
2037
|
+
calledByError: ({
|
|
2043
2038
|
id: string;
|
|
2044
2039
|
type: EntityType.GenericReference;
|
|
2045
2040
|
entityType: EntityType.Operation;
|
|
@@ -2074,6 +2069,11 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2074
2069
|
type: EntityType.GenericReference;
|
|
2075
2070
|
entityType: EntityType.InternalCall;
|
|
2076
2071
|
entityId: string;
|
|
2072
|
+
} | {
|
|
2073
|
+
id: string;
|
|
2074
|
+
type: EntityType.GenericReference;
|
|
2075
|
+
entityType: EntityType.Loop;
|
|
2076
|
+
entityId: string;
|
|
2077
2077
|
})[];
|
|
2078
2078
|
calledByEntry: ({
|
|
2079
2079
|
id: string;
|
|
@@ -2124,7 +2124,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2124
2124
|
successCalls: ({
|
|
2125
2125
|
id: string;
|
|
2126
2126
|
type: EntityType.GenericReference;
|
|
2127
|
-
entityType: EntityType.
|
|
2127
|
+
entityType: EntityType.ReturnStatement;
|
|
2128
2128
|
entityId: string;
|
|
2129
2129
|
} | {
|
|
2130
2130
|
id: string;
|
|
@@ -2164,7 +2164,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2164
2164
|
} | {
|
|
2165
2165
|
id: string;
|
|
2166
2166
|
type: EntityType.GenericReference;
|
|
2167
|
-
entityType: EntityType.
|
|
2167
|
+
entityType: EntityType.Loop;
|
|
2168
2168
|
entityId: string;
|
|
2169
2169
|
} | {
|
|
2170
2170
|
id: string;
|
|
@@ -2180,7 +2180,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2180
2180
|
errorCalls: ({
|
|
2181
2181
|
id: string;
|
|
2182
2182
|
type: EntityType.GenericReference;
|
|
2183
|
-
entityType: EntityType.
|
|
2183
|
+
entityType: EntityType.ReturnStatement;
|
|
2184
2184
|
entityId: string;
|
|
2185
2185
|
} | {
|
|
2186
2186
|
id: string;
|
|
@@ -2220,7 +2220,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2220
2220
|
} | {
|
|
2221
2221
|
id: string;
|
|
2222
2222
|
type: EntityType.GenericReference;
|
|
2223
|
-
entityType: EntityType.
|
|
2223
|
+
entityType: EntityType.Loop;
|
|
2224
2224
|
entityId: string;
|
|
2225
2225
|
} | {
|
|
2226
2226
|
id: string;
|
|
@@ -2244,11 +2244,6 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2244
2244
|
id: string;
|
|
2245
2245
|
type: EntityType.Search;
|
|
2246
2246
|
calledBySuccess: ({
|
|
2247
|
-
id: string;
|
|
2248
|
-
type: EntityType.GenericReference;
|
|
2249
|
-
entityType: EntityType.Loop;
|
|
2250
|
-
entityId: string;
|
|
2251
|
-
} | {
|
|
2252
2247
|
id: string;
|
|
2253
2248
|
type: EntityType.GenericReference;
|
|
2254
2249
|
entityType: EntityType.Operation;
|
|
@@ -2283,13 +2278,13 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2283
2278
|
type: EntityType.GenericReference;
|
|
2284
2279
|
entityType: EntityType.InternalCall;
|
|
2285
2280
|
entityId: string;
|
|
2286
|
-
}
|
|
2287
|
-
calledByError: ({
|
|
2281
|
+
} | {
|
|
2288
2282
|
id: string;
|
|
2289
2283
|
type: EntityType.GenericReference;
|
|
2290
2284
|
entityType: EntityType.Loop;
|
|
2291
2285
|
entityId: string;
|
|
2292
|
-
}
|
|
2286
|
+
})[];
|
|
2287
|
+
calledByError: ({
|
|
2293
2288
|
id: string;
|
|
2294
2289
|
type: EntityType.GenericReference;
|
|
2295
2290
|
entityType: EntityType.Operation;
|
|
@@ -2324,6 +2319,11 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2324
2319
|
type: EntityType.GenericReference;
|
|
2325
2320
|
entityType: EntityType.InternalCall;
|
|
2326
2321
|
entityId: string;
|
|
2322
|
+
} | {
|
|
2323
|
+
id: string;
|
|
2324
|
+
type: EntityType.GenericReference;
|
|
2325
|
+
entityType: EntityType.Loop;
|
|
2326
|
+
entityId: string;
|
|
2327
2327
|
})[];
|
|
2328
2328
|
calledByEntry: ({
|
|
2329
2329
|
id: string;
|
|
@@ -2374,7 +2374,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2374
2374
|
successCalls: ({
|
|
2375
2375
|
id: string;
|
|
2376
2376
|
type: EntityType.GenericReference;
|
|
2377
|
-
entityType: EntityType.
|
|
2377
|
+
entityType: EntityType.ReturnStatement;
|
|
2378
2378
|
entityId: string;
|
|
2379
2379
|
} | {
|
|
2380
2380
|
id: string;
|
|
@@ -2414,7 +2414,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2414
2414
|
} | {
|
|
2415
2415
|
id: string;
|
|
2416
2416
|
type: EntityType.GenericReference;
|
|
2417
|
-
entityType: EntityType.
|
|
2417
|
+
entityType: EntityType.Loop;
|
|
2418
2418
|
entityId: string;
|
|
2419
2419
|
} | {
|
|
2420
2420
|
id: string;
|
|
@@ -2430,7 +2430,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2430
2430
|
errorCalls: ({
|
|
2431
2431
|
id: string;
|
|
2432
2432
|
type: EntityType.GenericReference;
|
|
2433
|
-
entityType: EntityType.
|
|
2433
|
+
entityType: EntityType.ReturnStatement;
|
|
2434
2434
|
entityId: string;
|
|
2435
2435
|
} | {
|
|
2436
2436
|
id: string;
|
|
@@ -2470,7 +2470,7 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2470
2470
|
} | {
|
|
2471
2471
|
id: string;
|
|
2472
2472
|
type: EntityType.GenericReference;
|
|
2473
|
-
entityType: EntityType.
|
|
2473
|
+
entityType: EntityType.Loop;
|
|
2474
2474
|
entityId: string;
|
|
2475
2475
|
} | {
|
|
2476
2476
|
id: string;
|