@elyx-code/project-logic-tree 0.0.2 → 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 -16939
- 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 -28
- 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
|
@@ -789,11 +789,6 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
789
789
|
type: EntityType.FunctionDeclaration;
|
|
790
790
|
};
|
|
791
791
|
calledBySuccess: ({
|
|
792
|
-
id: string;
|
|
793
|
-
type: EntityType.GenericReference;
|
|
794
|
-
entityType: EntityType.Loop;
|
|
795
|
-
entityId: string;
|
|
796
|
-
} | {
|
|
797
792
|
id: string;
|
|
798
793
|
type: EntityType.GenericReference;
|
|
799
794
|
entityType: EntityType.Operation;
|
|
@@ -828,13 +823,13 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
828
823
|
type: EntityType.GenericReference;
|
|
829
824
|
entityType: EntityType.InternalCall;
|
|
830
825
|
entityId: string;
|
|
831
|
-
}
|
|
832
|
-
calledByError: ({
|
|
826
|
+
} | {
|
|
833
827
|
id: string;
|
|
834
828
|
type: EntityType.GenericReference;
|
|
835
829
|
entityType: EntityType.Loop;
|
|
836
830
|
entityId: string;
|
|
837
|
-
}
|
|
831
|
+
})[];
|
|
832
|
+
calledByError: ({
|
|
838
833
|
id: string;
|
|
839
834
|
type: EntityType.GenericReference;
|
|
840
835
|
entityType: EntityType.Operation;
|
|
@@ -869,6 +864,11 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
869
864
|
type: EntityType.GenericReference;
|
|
870
865
|
entityType: EntityType.InternalCall;
|
|
871
866
|
entityId: string;
|
|
867
|
+
} | {
|
|
868
|
+
id: string;
|
|
869
|
+
type: EntityType.GenericReference;
|
|
870
|
+
entityType: EntityType.Loop;
|
|
871
|
+
entityId: string;
|
|
872
872
|
})[];
|
|
873
873
|
calledByEntry: ({
|
|
874
874
|
id: string;
|
|
@@ -911,7 +911,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
911
911
|
successCalls: ({
|
|
912
912
|
id: string;
|
|
913
913
|
type: EntityType.GenericReference;
|
|
914
|
-
entityType: EntityType.
|
|
914
|
+
entityType: EntityType.ReturnStatement;
|
|
915
915
|
entityId: string;
|
|
916
916
|
} | {
|
|
917
917
|
id: string;
|
|
@@ -951,7 +951,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
951
951
|
} | {
|
|
952
952
|
id: string;
|
|
953
953
|
type: EntityType.GenericReference;
|
|
954
|
-
entityType: EntityType.
|
|
954
|
+
entityType: EntityType.Loop;
|
|
955
955
|
entityId: string;
|
|
956
956
|
} | {
|
|
957
957
|
id: string;
|
|
@@ -967,7 +967,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
967
967
|
errorCalls: ({
|
|
968
968
|
id: string;
|
|
969
969
|
type: EntityType.GenericReference;
|
|
970
|
-
entityType: EntityType.
|
|
970
|
+
entityType: EntityType.ReturnStatement;
|
|
971
971
|
entityId: string;
|
|
972
972
|
} | {
|
|
973
973
|
id: string;
|
|
@@ -1007,7 +1007,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1007
1007
|
} | {
|
|
1008
1008
|
id: string;
|
|
1009
1009
|
type: EntityType.GenericReference;
|
|
1010
|
-
entityType: EntityType.
|
|
1010
|
+
entityType: EntityType.Loop;
|
|
1011
1011
|
entityId: string;
|
|
1012
1012
|
} | {
|
|
1013
1013
|
id: string;
|
|
@@ -1021,13 +1021,13 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1021
1021
|
entityId: string;
|
|
1022
1022
|
})[];
|
|
1023
1023
|
writesValues: (Record<string, any> | {
|
|
1024
|
-
type: EntityType.InputMap;
|
|
1025
|
-
} | {
|
|
1026
1024
|
type: EntityType.ReturnDeclaration;
|
|
1027
1025
|
} | {
|
|
1028
1026
|
type: EntityType.VariableDeclaration;
|
|
1029
1027
|
} | {
|
|
1030
1028
|
type: EntityType.VariableInstance;
|
|
1029
|
+
} | {
|
|
1030
|
+
type: EntityType.InputMap;
|
|
1031
1031
|
})[];
|
|
1032
1032
|
error?: Record<string, any> | {
|
|
1033
1033
|
type: EntityType.OutputMap;
|
|
@@ -1037,11 +1037,6 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1037
1037
|
type: EntityType.FunctionDeclaration;
|
|
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 getFunctionCallNestedEntitiesSchema(): 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 getFunctionCallNestedEntitiesSchema(): 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;
|
|
@@ -1159,7 +1159,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1159
1159
|
successCalls: ({
|
|
1160
1160
|
id: string;
|
|
1161
1161
|
type: EntityType.GenericReference;
|
|
1162
|
-
entityType: EntityType.
|
|
1162
|
+
entityType: EntityType.ReturnStatement;
|
|
1163
1163
|
entityId: string;
|
|
1164
1164
|
} | {
|
|
1165
1165
|
id: string;
|
|
@@ -1199,7 +1199,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1199
1199
|
} | {
|
|
1200
1200
|
id: string;
|
|
1201
1201
|
type: EntityType.GenericReference;
|
|
1202
|
-
entityType: EntityType.
|
|
1202
|
+
entityType: EntityType.Loop;
|
|
1203
1203
|
entityId: string;
|
|
1204
1204
|
} | {
|
|
1205
1205
|
id: string;
|
|
@@ -1215,7 +1215,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1215
1215
|
errorCalls: ({
|
|
1216
1216
|
id: string;
|
|
1217
1217
|
type: EntityType.GenericReference;
|
|
1218
|
-
entityType: EntityType.
|
|
1218
|
+
entityType: EntityType.ReturnStatement;
|
|
1219
1219
|
entityId: string;
|
|
1220
1220
|
} | {
|
|
1221
1221
|
id: string;
|
|
@@ -1255,7 +1255,7 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1255
1255
|
} | {
|
|
1256
1256
|
id: string;
|
|
1257
1257
|
type: EntityType.GenericReference;
|
|
1258
|
-
entityType: EntityType.
|
|
1258
|
+
entityType: EntityType.Loop;
|
|
1259
1259
|
entityId: string;
|
|
1260
1260
|
} | {
|
|
1261
1261
|
id: string;
|
|
@@ -1269,13 +1269,13 @@ export declare function getFunctionCallNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1269
1269
|
entityId: string;
|
|
1270
1270
|
})[];
|
|
1271
1271
|
writesValues: (Record<string, any> | {
|
|
1272
|
-
type: EntityType.InputMap;
|
|
1273
|
-
} | {
|
|
1274
1272
|
type: EntityType.ReturnDeclaration;
|
|
1275
1273
|
} | {
|
|
1276
1274
|
type: EntityType.VariableDeclaration;
|
|
1277
1275
|
} | {
|
|
1278
1276
|
type: EntityType.VariableInstance;
|
|
1277
|
+
} | {
|
|
1278
|
+
type: EntityType.InputMap;
|
|
1279
1279
|
})[];
|
|
1280
1280
|
error?: Record<string, any> | {
|
|
1281
1281
|
type: EntityType.OutputMap;
|
|
@@ -2015,11 +2015,6 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2015
2015
|
type: EntityType.FunctionDeclaration;
|
|
2016
2016
|
};
|
|
2017
2017
|
calledBySuccess: ({
|
|
2018
|
-
id: string;
|
|
2019
|
-
type: EntityType.GenericReference;
|
|
2020
|
-
entityType: EntityType.Loop;
|
|
2021
|
-
entityId: string;
|
|
2022
|
-
} | {
|
|
2023
2018
|
id: string;
|
|
2024
2019
|
type: EntityType.GenericReference;
|
|
2025
2020
|
entityType: EntityType.Operation;
|
|
@@ -2054,13 +2049,13 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2054
2049
|
type: EntityType.GenericReference;
|
|
2055
2050
|
entityType: EntityType.InternalCall;
|
|
2056
2051
|
entityId: string;
|
|
2057
|
-
}
|
|
2058
|
-
calledByError: ({
|
|
2052
|
+
} | {
|
|
2059
2053
|
id: string;
|
|
2060
2054
|
type: EntityType.GenericReference;
|
|
2061
2055
|
entityType: EntityType.Loop;
|
|
2062
2056
|
entityId: string;
|
|
2063
|
-
}
|
|
2057
|
+
})[];
|
|
2058
|
+
calledByError: ({
|
|
2064
2059
|
id: string;
|
|
2065
2060
|
type: EntityType.GenericReference;
|
|
2066
2061
|
entityType: EntityType.Operation;
|
|
@@ -2095,6 +2090,11 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2095
2090
|
type: EntityType.GenericReference;
|
|
2096
2091
|
entityType: EntityType.InternalCall;
|
|
2097
2092
|
entityId: string;
|
|
2093
|
+
} | {
|
|
2094
|
+
id: string;
|
|
2095
|
+
type: EntityType.GenericReference;
|
|
2096
|
+
entityType: EntityType.Loop;
|
|
2097
|
+
entityId: string;
|
|
2098
2098
|
})[];
|
|
2099
2099
|
calledByEntry: ({
|
|
2100
2100
|
id: string;
|
|
@@ -2140,7 +2140,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2140
2140
|
successCalls: ({
|
|
2141
2141
|
id: string;
|
|
2142
2142
|
type: EntityType.GenericReference;
|
|
2143
|
-
entityType: EntityType.
|
|
2143
|
+
entityType: EntityType.ReturnStatement;
|
|
2144
2144
|
entityId: string;
|
|
2145
2145
|
} | {
|
|
2146
2146
|
id: string;
|
|
@@ -2180,7 +2180,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2180
2180
|
} | {
|
|
2181
2181
|
id: string;
|
|
2182
2182
|
type: EntityType.GenericReference;
|
|
2183
|
-
entityType: EntityType.
|
|
2183
|
+
entityType: EntityType.Loop;
|
|
2184
2184
|
entityId: string;
|
|
2185
2185
|
} | {
|
|
2186
2186
|
id: string;
|
|
@@ -2196,7 +2196,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2196
2196
|
errorCalls: ({
|
|
2197
2197
|
id: string;
|
|
2198
2198
|
type: EntityType.GenericReference;
|
|
2199
|
-
entityType: EntityType.
|
|
2199
|
+
entityType: EntityType.ReturnStatement;
|
|
2200
2200
|
entityId: string;
|
|
2201
2201
|
} | {
|
|
2202
2202
|
id: string;
|
|
@@ -2236,7 +2236,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2236
2236
|
} | {
|
|
2237
2237
|
id: string;
|
|
2238
2238
|
type: EntityType.GenericReference;
|
|
2239
|
-
entityType: EntityType.
|
|
2239
|
+
entityType: EntityType.Loop;
|
|
2240
2240
|
entityId: string;
|
|
2241
2241
|
} | {
|
|
2242
2242
|
id: string;
|
|
@@ -2250,13 +2250,13 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2250
2250
|
entityId: string;
|
|
2251
2251
|
})[];
|
|
2252
2252
|
writesValues: (Record<string, any> | {
|
|
2253
|
-
type: EntityType.InputMap;
|
|
2254
|
-
} | {
|
|
2255
2253
|
type: EntityType.ReturnDeclaration;
|
|
2256
2254
|
} | {
|
|
2257
2255
|
type: EntityType.VariableDeclaration;
|
|
2258
2256
|
} | {
|
|
2259
2257
|
type: EntityType.VariableInstance;
|
|
2258
|
+
} | {
|
|
2259
|
+
type: EntityType.InputMap;
|
|
2260
2260
|
})[];
|
|
2261
2261
|
error?: Record<string, any> | {
|
|
2262
2262
|
type: EntityType.OutputMap;
|
|
@@ -2268,11 +2268,6 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2268
2268
|
type: EntityType.FunctionDeclaration;
|
|
2269
2269
|
};
|
|
2270
2270
|
calledBySuccess: ({
|
|
2271
|
-
id: string;
|
|
2272
|
-
type: EntityType.GenericReference;
|
|
2273
|
-
entityType: EntityType.Loop;
|
|
2274
|
-
entityId: string;
|
|
2275
|
-
} | {
|
|
2276
2271
|
id: string;
|
|
2277
2272
|
type: EntityType.GenericReference;
|
|
2278
2273
|
entityType: EntityType.Operation;
|
|
@@ -2307,13 +2302,13 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2307
2302
|
type: EntityType.GenericReference;
|
|
2308
2303
|
entityType: EntityType.InternalCall;
|
|
2309
2304
|
entityId: string;
|
|
2310
|
-
}
|
|
2311
|
-
calledByError: ({
|
|
2305
|
+
} | {
|
|
2312
2306
|
id: string;
|
|
2313
2307
|
type: EntityType.GenericReference;
|
|
2314
2308
|
entityType: EntityType.Loop;
|
|
2315
2309
|
entityId: string;
|
|
2316
|
-
}
|
|
2310
|
+
})[];
|
|
2311
|
+
calledByError: ({
|
|
2317
2312
|
id: string;
|
|
2318
2313
|
type: EntityType.GenericReference;
|
|
2319
2314
|
entityType: EntityType.Operation;
|
|
@@ -2348,6 +2343,11 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2348
2343
|
type: EntityType.GenericReference;
|
|
2349
2344
|
entityType: EntityType.InternalCall;
|
|
2350
2345
|
entityId: string;
|
|
2346
|
+
} | {
|
|
2347
|
+
id: string;
|
|
2348
|
+
type: EntityType.GenericReference;
|
|
2349
|
+
entityType: EntityType.Loop;
|
|
2350
|
+
entityId: string;
|
|
2351
2351
|
})[];
|
|
2352
2352
|
calledByEntry: ({
|
|
2353
2353
|
id: string;
|
|
@@ -2393,7 +2393,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2393
2393
|
successCalls: ({
|
|
2394
2394
|
id: string;
|
|
2395
2395
|
type: EntityType.GenericReference;
|
|
2396
|
-
entityType: EntityType.
|
|
2396
|
+
entityType: EntityType.ReturnStatement;
|
|
2397
2397
|
entityId: string;
|
|
2398
2398
|
} | {
|
|
2399
2399
|
id: string;
|
|
@@ -2433,7 +2433,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2433
2433
|
} | {
|
|
2434
2434
|
id: string;
|
|
2435
2435
|
type: EntityType.GenericReference;
|
|
2436
|
-
entityType: EntityType.
|
|
2436
|
+
entityType: EntityType.Loop;
|
|
2437
2437
|
entityId: string;
|
|
2438
2438
|
} | {
|
|
2439
2439
|
id: string;
|
|
@@ -2449,7 +2449,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2449
2449
|
errorCalls: ({
|
|
2450
2450
|
id: string;
|
|
2451
2451
|
type: EntityType.GenericReference;
|
|
2452
|
-
entityType: EntityType.
|
|
2452
|
+
entityType: EntityType.ReturnStatement;
|
|
2453
2453
|
entityId: string;
|
|
2454
2454
|
} | {
|
|
2455
2455
|
id: string;
|
|
@@ -2489,7 +2489,7 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2489
2489
|
} | {
|
|
2490
2490
|
id: string;
|
|
2491
2491
|
type: EntityType.GenericReference;
|
|
2492
|
-
entityType: EntityType.
|
|
2492
|
+
entityType: EntityType.Loop;
|
|
2493
2493
|
entityId: string;
|
|
2494
2494
|
} | {
|
|
2495
2495
|
id: string;
|
|
@@ -2503,13 +2503,13 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2503
2503
|
entityId: string;
|
|
2504
2504
|
})[];
|
|
2505
2505
|
writesValues: (Record<string, any> | {
|
|
2506
|
-
type: EntityType.InputMap;
|
|
2507
|
-
} | {
|
|
2508
2506
|
type: EntityType.ReturnDeclaration;
|
|
2509
2507
|
} | {
|
|
2510
2508
|
type: EntityType.VariableDeclaration;
|
|
2511
2509
|
} | {
|
|
2512
2510
|
type: EntityType.VariableInstance;
|
|
2511
|
+
} | {
|
|
2512
|
+
type: EntityType.InputMap;
|
|
2513
2513
|
})[];
|
|
2514
2514
|
error?: Record<string, any> | {
|
|
2515
2515
|
type: EntityType.OutputMap;
|
|
@@ -548,7 +548,7 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
548
548
|
calls: ({
|
|
549
549
|
id: string;
|
|
550
550
|
type: EntityType.GenericReference;
|
|
551
|
-
entityType: EntityType.
|
|
551
|
+
entityType: EntityType.ReturnStatement;
|
|
552
552
|
entityId: string;
|
|
553
553
|
} | {
|
|
554
554
|
id: string;
|
|
@@ -588,7 +588,7 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
588
588
|
} | {
|
|
589
589
|
id: string;
|
|
590
590
|
type: EntityType.GenericReference;
|
|
591
|
-
entityType: EntityType.
|
|
591
|
+
entityType: EntityType.Loop;
|
|
592
592
|
entityId: string;
|
|
593
593
|
} | {
|
|
594
594
|
id: string;
|
|
@@ -668,7 +668,7 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
668
668
|
calls: ({
|
|
669
669
|
id: string;
|
|
670
670
|
type: EntityType.GenericReference;
|
|
671
|
-
entityType: EntityType.
|
|
671
|
+
entityType: EntityType.ReturnStatement;
|
|
672
672
|
entityId: string;
|
|
673
673
|
} | {
|
|
674
674
|
id: string;
|
|
@@ -708,7 +708,7 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
708
708
|
} | {
|
|
709
709
|
id: string;
|
|
710
710
|
type: EntityType.GenericReference;
|
|
711
|
-
entityType: EntityType.
|
|
711
|
+
entityType: EntityType.Loop;
|
|
712
712
|
entityId: string;
|
|
713
713
|
} | {
|
|
714
714
|
id: string;
|
|
@@ -1200,7 +1200,7 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1200
1200
|
calls: ({
|
|
1201
1201
|
id: string;
|
|
1202
1202
|
type: EntityType.GenericReference;
|
|
1203
|
-
entityType: EntityType.
|
|
1203
|
+
entityType: EntityType.ReturnStatement;
|
|
1204
1204
|
entityId: string;
|
|
1205
1205
|
} | {
|
|
1206
1206
|
id: string;
|
|
@@ -1240,7 +1240,7 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1240
1240
|
} | {
|
|
1241
1241
|
id: string;
|
|
1242
1242
|
type: EntityType.GenericReference;
|
|
1243
|
-
entityType: EntityType.
|
|
1243
|
+
entityType: EntityType.Loop;
|
|
1244
1244
|
entityId: string;
|
|
1245
1245
|
} | {
|
|
1246
1246
|
id: string;
|
|
@@ -1323,7 +1323,7 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1323
1323
|
calls: ({
|
|
1324
1324
|
id: string;
|
|
1325
1325
|
type: EntityType.GenericReference;
|
|
1326
|
-
entityType: EntityType.
|
|
1326
|
+
entityType: EntityType.ReturnStatement;
|
|
1327
1327
|
entityId: string;
|
|
1328
1328
|
} | {
|
|
1329
1329
|
id: string;
|
|
@@ -1363,7 +1363,7 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1363
1363
|
} | {
|
|
1364
1364
|
id: string;
|
|
1365
1365
|
type: EntityType.GenericReference;
|
|
1366
|
-
entityType: EntityType.
|
|
1366
|
+
entityType: EntityType.Loop;
|
|
1367
1367
|
entityId: string;
|
|
1368
1368
|
} | {
|
|
1369
1369
|
id: string;
|
|
@@ -1,28 +1,34 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
27
|
-
export
|
|
28
|
-
export * from './
|
|
1
|
+
export * from './project';
|
|
2
|
+
export * from './output-map';
|
|
3
|
+
export * from './primitive-entity';
|
|
4
|
+
export * from './custom-entity';
|
|
5
|
+
export * from './data-type';
|
|
6
|
+
export * from './property';
|
|
7
|
+
export * from './variable-declaration';
|
|
8
|
+
export * from './variable-instance';
|
|
9
|
+
export * from './argument-declaration';
|
|
10
|
+
export * from './return-declaration';
|
|
11
|
+
export * from './action-descriptor';
|
|
12
|
+
export * from './function-declaration';
|
|
13
|
+
export * from './operation';
|
|
14
|
+
export * from './function-call';
|
|
15
|
+
export * from './condition';
|
|
16
|
+
export * from './return-statement';
|
|
17
|
+
export * from './continue-statement';
|
|
18
|
+
export * from './break-statement';
|
|
19
|
+
export * from './global-event';
|
|
20
|
+
export * from './input-map';
|
|
21
|
+
export * from './installed-project';
|
|
22
|
+
export * from './internal-call';
|
|
23
|
+
export * from './search';
|
|
24
|
+
export * from './loop';
|
|
25
|
+
export * from './value-descriptor';
|
|
26
|
+
export * from './built-in-base-entity';
|
|
27
|
+
export * from './primitive-value';
|
|
28
|
+
export * from './create';
|
|
29
|
+
export * from './types';
|
|
30
|
+
export * from './error';
|
|
31
|
+
export * from './store';
|
|
32
|
+
export * from './validate';
|
|
33
|
+
export * from './autogeneration';
|
|
34
|
+
export * from './base';
|