@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
|
@@ -847,11 +847,6 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
847
847
|
}>]>;
|
|
848
848
|
}, "strip", z.ZodTypeAny, {
|
|
849
849
|
calledBySuccess: ({
|
|
850
|
-
id: string;
|
|
851
|
-
type: EntityType.GenericReference;
|
|
852
|
-
entityType: EntityType.Loop;
|
|
853
|
-
entityId: string;
|
|
854
|
-
} | {
|
|
855
850
|
id: string;
|
|
856
851
|
type: EntityType.GenericReference;
|
|
857
852
|
entityType: EntityType.Operation;
|
|
@@ -886,13 +881,13 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
886
881
|
type: EntityType.GenericReference;
|
|
887
882
|
entityType: EntityType.InternalCall;
|
|
888
883
|
entityId: string;
|
|
889
|
-
}
|
|
890
|
-
calledByError: ({
|
|
884
|
+
} | {
|
|
891
885
|
id: string;
|
|
892
886
|
type: EntityType.GenericReference;
|
|
893
887
|
entityType: EntityType.Loop;
|
|
894
888
|
entityId: string;
|
|
895
|
-
}
|
|
889
|
+
})[];
|
|
890
|
+
calledByError: ({
|
|
896
891
|
id: string;
|
|
897
892
|
type: EntityType.GenericReference;
|
|
898
893
|
entityType: EntityType.Operation;
|
|
@@ -927,6 +922,11 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
927
922
|
type: EntityType.GenericReference;
|
|
928
923
|
entityType: EntityType.InternalCall;
|
|
929
924
|
entityId: string;
|
|
925
|
+
} | {
|
|
926
|
+
id: string;
|
|
927
|
+
type: EntityType.GenericReference;
|
|
928
|
+
entityType: EntityType.Loop;
|
|
929
|
+
entityId: string;
|
|
930
930
|
})[];
|
|
931
931
|
calledByEntry: ({
|
|
932
932
|
id: string;
|
|
@@ -961,13 +961,13 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
961
961
|
entityId: string;
|
|
962
962
|
};
|
|
963
963
|
readsValue: Record<string, any> | {
|
|
964
|
-
type: EntityType.OutputMap;
|
|
965
|
-
} | {
|
|
966
964
|
type: EntityType.VariableDeclaration;
|
|
967
965
|
} | {
|
|
968
966
|
type: EntityType.VariableInstance;
|
|
969
967
|
} | {
|
|
970
968
|
type: EntityType.ArgumentDeclaration;
|
|
969
|
+
} | {
|
|
970
|
+
type: EntityType.OutputMap;
|
|
971
971
|
} | {
|
|
972
972
|
type: EntityType.Operation;
|
|
973
973
|
} | {
|
|
@@ -984,7 +984,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
984
984
|
successCalls: ({
|
|
985
985
|
id: string;
|
|
986
986
|
type: EntityType.GenericReference;
|
|
987
|
-
entityType: EntityType.
|
|
987
|
+
entityType: EntityType.ReturnStatement;
|
|
988
988
|
entityId: string;
|
|
989
989
|
} | {
|
|
990
990
|
id: string;
|
|
@@ -1024,7 +1024,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1024
1024
|
} | {
|
|
1025
1025
|
id: string;
|
|
1026
1026
|
type: EntityType.GenericReference;
|
|
1027
|
-
entityType: EntityType.
|
|
1027
|
+
entityType: EntityType.Loop;
|
|
1028
1028
|
entityId: string;
|
|
1029
1029
|
} | {
|
|
1030
1030
|
id: string;
|
|
@@ -1040,7 +1040,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1040
1040
|
errorCalls: ({
|
|
1041
1041
|
id: string;
|
|
1042
1042
|
type: EntityType.GenericReference;
|
|
1043
|
-
entityType: EntityType.
|
|
1043
|
+
entityType: EntityType.ReturnStatement;
|
|
1044
1044
|
entityId: string;
|
|
1045
1045
|
} | {
|
|
1046
1046
|
id: string;
|
|
@@ -1080,7 +1080,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1080
1080
|
} | {
|
|
1081
1081
|
id: string;
|
|
1082
1082
|
type: EntityType.GenericReference;
|
|
1083
|
-
entityType: EntityType.
|
|
1083
|
+
entityType: EntityType.Loop;
|
|
1084
1084
|
entityId: string;
|
|
1085
1085
|
} | {
|
|
1086
1086
|
id: string;
|
|
@@ -1097,24 +1097,19 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1097
1097
|
type: EntityType.DataType;
|
|
1098
1098
|
} | null;
|
|
1099
1099
|
writesValues: (Record<string, any> | {
|
|
1100
|
-
type: EntityType.InputMap;
|
|
1101
|
-
} | {
|
|
1102
1100
|
type: EntityType.ReturnDeclaration;
|
|
1103
1101
|
} | {
|
|
1104
1102
|
type: EntityType.VariableDeclaration;
|
|
1105
1103
|
} | {
|
|
1106
1104
|
type: EntityType.VariableInstance;
|
|
1105
|
+
} | {
|
|
1106
|
+
type: EntityType.InputMap;
|
|
1107
1107
|
})[];
|
|
1108
1108
|
internalCalls: (Record<string, any> | {
|
|
1109
1109
|
type: EntityType.InternalCall;
|
|
1110
1110
|
})[];
|
|
1111
1111
|
}, {
|
|
1112
1112
|
calledBySuccess: ({
|
|
1113
|
-
id: string;
|
|
1114
|
-
type: EntityType.GenericReference;
|
|
1115
|
-
entityType: EntityType.Loop;
|
|
1116
|
-
entityId: string;
|
|
1117
|
-
} | {
|
|
1118
1113
|
id: string;
|
|
1119
1114
|
type: EntityType.GenericReference;
|
|
1120
1115
|
entityType: EntityType.Operation;
|
|
@@ -1149,13 +1144,13 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1149
1144
|
type: EntityType.GenericReference;
|
|
1150
1145
|
entityType: EntityType.InternalCall;
|
|
1151
1146
|
entityId: string;
|
|
1152
|
-
}
|
|
1153
|
-
calledByError: ({
|
|
1147
|
+
} | {
|
|
1154
1148
|
id: string;
|
|
1155
1149
|
type: EntityType.GenericReference;
|
|
1156
1150
|
entityType: EntityType.Loop;
|
|
1157
1151
|
entityId: string;
|
|
1158
|
-
}
|
|
1152
|
+
})[];
|
|
1153
|
+
calledByError: ({
|
|
1159
1154
|
id: string;
|
|
1160
1155
|
type: EntityType.GenericReference;
|
|
1161
1156
|
entityType: EntityType.Operation;
|
|
@@ -1190,6 +1185,11 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1190
1185
|
type: EntityType.GenericReference;
|
|
1191
1186
|
entityType: EntityType.InternalCall;
|
|
1192
1187
|
entityId: string;
|
|
1188
|
+
} | {
|
|
1189
|
+
id: string;
|
|
1190
|
+
type: EntityType.GenericReference;
|
|
1191
|
+
entityType: EntityType.Loop;
|
|
1192
|
+
entityId: string;
|
|
1193
1193
|
})[];
|
|
1194
1194
|
calledByEntry: ({
|
|
1195
1195
|
id: string;
|
|
@@ -1224,13 +1224,13 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1224
1224
|
entityId: string;
|
|
1225
1225
|
};
|
|
1226
1226
|
readsValue: Record<string, any> | {
|
|
1227
|
-
type: EntityType.OutputMap;
|
|
1228
|
-
} | {
|
|
1229
1227
|
type: EntityType.VariableDeclaration;
|
|
1230
1228
|
} | {
|
|
1231
1229
|
type: EntityType.VariableInstance;
|
|
1232
1230
|
} | {
|
|
1233
1231
|
type: EntityType.ArgumentDeclaration;
|
|
1232
|
+
} | {
|
|
1233
|
+
type: EntityType.OutputMap;
|
|
1234
1234
|
} | {
|
|
1235
1235
|
type: EntityType.Operation;
|
|
1236
1236
|
} | {
|
|
@@ -1247,7 +1247,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1247
1247
|
successCalls: ({
|
|
1248
1248
|
id: string;
|
|
1249
1249
|
type: EntityType.GenericReference;
|
|
1250
|
-
entityType: EntityType.
|
|
1250
|
+
entityType: EntityType.ReturnStatement;
|
|
1251
1251
|
entityId: string;
|
|
1252
1252
|
} | {
|
|
1253
1253
|
id: string;
|
|
@@ -1287,7 +1287,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1287
1287
|
} | {
|
|
1288
1288
|
id: string;
|
|
1289
1289
|
type: EntityType.GenericReference;
|
|
1290
|
-
entityType: EntityType.
|
|
1290
|
+
entityType: EntityType.Loop;
|
|
1291
1291
|
entityId: string;
|
|
1292
1292
|
} | {
|
|
1293
1293
|
id: string;
|
|
@@ -1303,7 +1303,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1303
1303
|
errorCalls: ({
|
|
1304
1304
|
id: string;
|
|
1305
1305
|
type: EntityType.GenericReference;
|
|
1306
|
-
entityType: EntityType.
|
|
1306
|
+
entityType: EntityType.ReturnStatement;
|
|
1307
1307
|
entityId: string;
|
|
1308
1308
|
} | {
|
|
1309
1309
|
id: string;
|
|
@@ -1343,7 +1343,7 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1343
1343
|
} | {
|
|
1344
1344
|
id: string;
|
|
1345
1345
|
type: EntityType.GenericReference;
|
|
1346
|
-
entityType: EntityType.
|
|
1346
|
+
entityType: EntityType.Loop;
|
|
1347
1347
|
entityId: string;
|
|
1348
1348
|
} | {
|
|
1349
1349
|
id: string;
|
|
@@ -1360,13 +1360,13 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1360
1360
|
type: EntityType.DataType;
|
|
1361
1361
|
} | null;
|
|
1362
1362
|
writesValues: (Record<string, any> | {
|
|
1363
|
-
type: EntityType.InputMap;
|
|
1364
|
-
} | {
|
|
1365
1363
|
type: EntityType.ReturnDeclaration;
|
|
1366
1364
|
} | {
|
|
1367
1365
|
type: EntityType.VariableDeclaration;
|
|
1368
1366
|
} | {
|
|
1369
1367
|
type: EntityType.VariableInstance;
|
|
1368
|
+
} | {
|
|
1369
|
+
type: EntityType.InputMap;
|
|
1370
1370
|
})[];
|
|
1371
1371
|
internalCalls: (Record<string, any> | {
|
|
1372
1372
|
type: EntityType.InternalCall;
|
|
@@ -2148,11 +2148,6 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2148
2148
|
id: string;
|
|
2149
2149
|
type: EntityType.VariableDeclaration;
|
|
2150
2150
|
calledBySuccess: ({
|
|
2151
|
-
id: string;
|
|
2152
|
-
type: EntityType.GenericReference;
|
|
2153
|
-
entityType: EntityType.Loop;
|
|
2154
|
-
entityId: string;
|
|
2155
|
-
} | {
|
|
2156
2151
|
id: string;
|
|
2157
2152
|
type: EntityType.GenericReference;
|
|
2158
2153
|
entityType: EntityType.Operation;
|
|
@@ -2187,13 +2182,13 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2187
2182
|
type: EntityType.GenericReference;
|
|
2188
2183
|
entityType: EntityType.InternalCall;
|
|
2189
2184
|
entityId: string;
|
|
2190
|
-
}
|
|
2191
|
-
calledByError: ({
|
|
2185
|
+
} | {
|
|
2192
2186
|
id: string;
|
|
2193
2187
|
type: EntityType.GenericReference;
|
|
2194
2188
|
entityType: EntityType.Loop;
|
|
2195
2189
|
entityId: string;
|
|
2196
|
-
}
|
|
2190
|
+
})[];
|
|
2191
|
+
calledByError: ({
|
|
2197
2192
|
id: string;
|
|
2198
2193
|
type: EntityType.GenericReference;
|
|
2199
2194
|
entityType: EntityType.Operation;
|
|
@@ -2228,6 +2223,11 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2228
2223
|
type: EntityType.GenericReference;
|
|
2229
2224
|
entityType: EntityType.InternalCall;
|
|
2230
2225
|
entityId: string;
|
|
2226
|
+
} | {
|
|
2227
|
+
id: string;
|
|
2228
|
+
type: EntityType.GenericReference;
|
|
2229
|
+
entityType: EntityType.Loop;
|
|
2230
|
+
entityId: string;
|
|
2231
2231
|
})[];
|
|
2232
2232
|
calledByEntry: ({
|
|
2233
2233
|
id: string;
|
|
@@ -2265,13 +2265,13 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2265
2265
|
};
|
|
2266
2266
|
version: number;
|
|
2267
2267
|
readsValue: Record<string, any> | {
|
|
2268
|
-
type: EntityType.OutputMap;
|
|
2269
|
-
} | {
|
|
2270
2268
|
type: EntityType.VariableDeclaration;
|
|
2271
2269
|
} | {
|
|
2272
2270
|
type: EntityType.VariableInstance;
|
|
2273
2271
|
} | {
|
|
2274
2272
|
type: EntityType.ArgumentDeclaration;
|
|
2273
|
+
} | {
|
|
2274
|
+
type: EntityType.OutputMap;
|
|
2275
2275
|
} | {
|
|
2276
2276
|
type: EntityType.Operation;
|
|
2277
2277
|
} | {
|
|
@@ -2290,7 +2290,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2290
2290
|
successCalls: ({
|
|
2291
2291
|
id: string;
|
|
2292
2292
|
type: EntityType.GenericReference;
|
|
2293
|
-
entityType: EntityType.
|
|
2293
|
+
entityType: EntityType.ReturnStatement;
|
|
2294
2294
|
entityId: string;
|
|
2295
2295
|
} | {
|
|
2296
2296
|
id: string;
|
|
@@ -2330,7 +2330,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2330
2330
|
} | {
|
|
2331
2331
|
id: string;
|
|
2332
2332
|
type: EntityType.GenericReference;
|
|
2333
|
-
entityType: EntityType.
|
|
2333
|
+
entityType: EntityType.Loop;
|
|
2334
2334
|
entityId: string;
|
|
2335
2335
|
} | {
|
|
2336
2336
|
id: string;
|
|
@@ -2346,7 +2346,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2346
2346
|
errorCalls: ({
|
|
2347
2347
|
id: string;
|
|
2348
2348
|
type: EntityType.GenericReference;
|
|
2349
|
-
entityType: EntityType.
|
|
2349
|
+
entityType: EntityType.ReturnStatement;
|
|
2350
2350
|
entityId: string;
|
|
2351
2351
|
} | {
|
|
2352
2352
|
id: string;
|
|
@@ -2386,7 +2386,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2386
2386
|
} | {
|
|
2387
2387
|
id: string;
|
|
2388
2388
|
type: EntityType.GenericReference;
|
|
2389
|
-
entityType: EntityType.
|
|
2389
|
+
entityType: EntityType.Loop;
|
|
2390
2390
|
entityId: string;
|
|
2391
2391
|
} | {
|
|
2392
2392
|
id: string;
|
|
@@ -2403,13 +2403,13 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2403
2403
|
type: EntityType.DataType;
|
|
2404
2404
|
} | null;
|
|
2405
2405
|
writesValues: (Record<string, any> | {
|
|
2406
|
-
type: EntityType.InputMap;
|
|
2407
|
-
} | {
|
|
2408
2406
|
type: EntityType.ReturnDeclaration;
|
|
2409
2407
|
} | {
|
|
2410
2408
|
type: EntityType.VariableDeclaration;
|
|
2411
2409
|
} | {
|
|
2412
2410
|
type: EntityType.VariableInstance;
|
|
2411
|
+
} | {
|
|
2412
|
+
type: EntityType.InputMap;
|
|
2413
2413
|
})[];
|
|
2414
2414
|
internalCalls: (Record<string, any> | {
|
|
2415
2415
|
type: EntityType.InternalCall;
|
|
@@ -2418,11 +2418,6 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2418
2418
|
id: string;
|
|
2419
2419
|
type: EntityType.VariableDeclaration;
|
|
2420
2420
|
calledBySuccess: ({
|
|
2421
|
-
id: string;
|
|
2422
|
-
type: EntityType.GenericReference;
|
|
2423
|
-
entityType: EntityType.Loop;
|
|
2424
|
-
entityId: string;
|
|
2425
|
-
} | {
|
|
2426
2421
|
id: string;
|
|
2427
2422
|
type: EntityType.GenericReference;
|
|
2428
2423
|
entityType: EntityType.Operation;
|
|
@@ -2457,13 +2452,13 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2457
2452
|
type: EntityType.GenericReference;
|
|
2458
2453
|
entityType: EntityType.InternalCall;
|
|
2459
2454
|
entityId: string;
|
|
2460
|
-
}
|
|
2461
|
-
calledByError: ({
|
|
2455
|
+
} | {
|
|
2462
2456
|
id: string;
|
|
2463
2457
|
type: EntityType.GenericReference;
|
|
2464
2458
|
entityType: EntityType.Loop;
|
|
2465
2459
|
entityId: string;
|
|
2466
|
-
}
|
|
2460
|
+
})[];
|
|
2461
|
+
calledByError: ({
|
|
2467
2462
|
id: string;
|
|
2468
2463
|
type: EntityType.GenericReference;
|
|
2469
2464
|
entityType: EntityType.Operation;
|
|
@@ -2498,6 +2493,11 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2498
2493
|
type: EntityType.GenericReference;
|
|
2499
2494
|
entityType: EntityType.InternalCall;
|
|
2500
2495
|
entityId: string;
|
|
2496
|
+
} | {
|
|
2497
|
+
id: string;
|
|
2498
|
+
type: EntityType.GenericReference;
|
|
2499
|
+
entityType: EntityType.Loop;
|
|
2500
|
+
entityId: string;
|
|
2501
2501
|
})[];
|
|
2502
2502
|
calledByEntry: ({
|
|
2503
2503
|
id: string;
|
|
@@ -2535,13 +2535,13 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2535
2535
|
};
|
|
2536
2536
|
version: number;
|
|
2537
2537
|
readsValue: Record<string, any> | {
|
|
2538
|
-
type: EntityType.OutputMap;
|
|
2539
|
-
} | {
|
|
2540
2538
|
type: EntityType.VariableDeclaration;
|
|
2541
2539
|
} | {
|
|
2542
2540
|
type: EntityType.VariableInstance;
|
|
2543
2541
|
} | {
|
|
2544
2542
|
type: EntityType.ArgumentDeclaration;
|
|
2543
|
+
} | {
|
|
2544
|
+
type: EntityType.OutputMap;
|
|
2545
2545
|
} | {
|
|
2546
2546
|
type: EntityType.Operation;
|
|
2547
2547
|
} | {
|
|
@@ -2560,7 +2560,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2560
2560
|
successCalls: ({
|
|
2561
2561
|
id: string;
|
|
2562
2562
|
type: EntityType.GenericReference;
|
|
2563
|
-
entityType: EntityType.
|
|
2563
|
+
entityType: EntityType.ReturnStatement;
|
|
2564
2564
|
entityId: string;
|
|
2565
2565
|
} | {
|
|
2566
2566
|
id: string;
|
|
@@ -2600,7 +2600,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2600
2600
|
} | {
|
|
2601
2601
|
id: string;
|
|
2602
2602
|
type: EntityType.GenericReference;
|
|
2603
|
-
entityType: EntityType.
|
|
2603
|
+
entityType: EntityType.Loop;
|
|
2604
2604
|
entityId: string;
|
|
2605
2605
|
} | {
|
|
2606
2606
|
id: string;
|
|
@@ -2616,7 +2616,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2616
2616
|
errorCalls: ({
|
|
2617
2617
|
id: string;
|
|
2618
2618
|
type: EntityType.GenericReference;
|
|
2619
|
-
entityType: EntityType.
|
|
2619
|
+
entityType: EntityType.ReturnStatement;
|
|
2620
2620
|
entityId: string;
|
|
2621
2621
|
} | {
|
|
2622
2622
|
id: string;
|
|
@@ -2656,7 +2656,7 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2656
2656
|
} | {
|
|
2657
2657
|
id: string;
|
|
2658
2658
|
type: EntityType.GenericReference;
|
|
2659
|
-
entityType: EntityType.
|
|
2659
|
+
entityType: EntityType.Loop;
|
|
2660
2660
|
entityId: string;
|
|
2661
2661
|
} | {
|
|
2662
2662
|
id: string;
|
|
@@ -2673,13 +2673,13 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2673
2673
|
type: EntityType.DataType;
|
|
2674
2674
|
} | null;
|
|
2675
2675
|
writesValues: (Record<string, any> | {
|
|
2676
|
-
type: EntityType.InputMap;
|
|
2677
|
-
} | {
|
|
2678
2676
|
type: EntityType.ReturnDeclaration;
|
|
2679
2677
|
} | {
|
|
2680
2678
|
type: EntityType.VariableDeclaration;
|
|
2681
2679
|
} | {
|
|
2682
2680
|
type: EntityType.VariableInstance;
|
|
2681
|
+
} | {
|
|
2682
|
+
type: EntityType.InputMap;
|
|
2683
2683
|
})[];
|
|
2684
2684
|
internalCalls: (Record<string, any> | {
|
|
2685
2685
|
type: EntityType.InternalCall;
|