@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.
Files changed (22) hide show
  1. package/dist/index.js +18628 -16940
  2. package/dist/index.umd.cjs +247 -184
  3. package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +8 -8
  4. package/dist/tree/state/break-statement/validation/validation-schema.d.ts +32 -32
  5. package/dist/tree/state/condition/validation/validation-schema.d.ts +48 -48
  6. package/dist/tree/state/continue-statement/validation/validation-schema.d.ts +32 -32
  7. package/dist/tree/state/function-call/validation/validation-schema.d.ts +56 -56
  8. package/dist/tree/state/global-event/validation/validation-schema.d.ts +8 -8
  9. package/dist/tree/state/index.d.ts +34 -29
  10. package/dist/tree/state/input-map/validation/validation-schema.d.ts +64 -64
  11. package/dist/tree/state/internal-call/validation/validation-schema.d.ts +56 -56
  12. package/dist/tree/state/loop/validation/validation-schema.d.ts +48 -48
  13. package/dist/tree/state/operation/validation/validation-schema.d.ts +56 -56
  14. package/dist/tree/state/output-map/validation/validation-schema.d.ts +72 -72
  15. package/dist/tree/state/return-declaration/validation/validation-schema.d.ts +16 -16
  16. package/dist/tree/state/return-statement/validation/validation-schema.d.ts +32 -32
  17. package/dist/tree/state/search/validation/validation-schema.d.ts +48 -48
  18. package/dist/tree/state/types/index.d.ts +1 -0
  19. package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +64 -64
  20. package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +64 -64
  21. package/dist/tree/utils/index.d.ts +1 -1
  22. package/package.json +1 -1
@@ -219,13 +219,13 @@ export declare function getArgumentDeclarationNestedEntitiesSchema(): z.ZodObjec
219
219
  type: EntityType.DataType;
220
220
  } | null;
221
221
  writesValues: (Record<string, any> | {
222
- type: EntityType.InputMap;
223
- } | {
224
222
  type: EntityType.ReturnDeclaration;
225
223
  } | {
226
224
  type: EntityType.VariableDeclaration;
227
225
  } | {
228
226
  type: EntityType.VariableInstance;
227
+ } | {
228
+ type: EntityType.InputMap;
229
229
  })[];
230
230
  }, {
231
231
  parent: {
@@ -258,13 +258,13 @@ export declare function getArgumentDeclarationNestedEntitiesSchema(): z.ZodObjec
258
258
  type: EntityType.DataType;
259
259
  } | null;
260
260
  writesValues: (Record<string, any> | {
261
- type: EntityType.InputMap;
262
- } | {
263
261
  type: EntityType.ReturnDeclaration;
264
262
  } | {
265
263
  type: EntityType.VariableDeclaration;
266
264
  } | {
267
265
  type: EntityType.VariableInstance;
266
+ } | {
267
+ type: EntityType.InputMap;
268
268
  })[];
269
269
  }>;
270
270
  export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -434,13 +434,13 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
434
434
  type: EntityType.DataType;
435
435
  } | null;
436
436
  writesValues: (Record<string, any> | {
437
- type: EntityType.InputMap;
438
- } | {
439
437
  type: EntityType.ReturnDeclaration;
440
438
  } | {
441
439
  type: EntityType.VariableDeclaration;
442
440
  } | {
443
441
  type: EntityType.VariableInstance;
442
+ } | {
443
+ type: EntityType.InputMap;
444
444
  })[];
445
445
  }, {
446
446
  id: string;
@@ -478,12 +478,12 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
478
478
  type: EntityType.DataType;
479
479
  } | null;
480
480
  writesValues: (Record<string, any> | {
481
- type: EntityType.InputMap;
482
- } | {
483
481
  type: EntityType.ReturnDeclaration;
484
482
  } | {
485
483
  type: EntityType.VariableDeclaration;
486
484
  } | {
487
485
  type: EntityType.VariableInstance;
486
+ } | {
487
+ type: EntityType.InputMap;
488
488
  })[];
489
489
  }>;
@@ -370,11 +370,6 @@ export declare function getBreakStatementNestedEntitiesSchema(): z.ZodObject<{
370
370
  }>;
371
371
  }, "strip", z.ZodTypeAny, {
372
372
  calledBySuccess: ({
373
- id: string;
374
- type: EntityType.GenericReference;
375
- entityType: EntityType.Loop;
376
- entityId: string;
377
- } | {
378
373
  id: string;
379
374
  type: EntityType.GenericReference;
380
375
  entityType: EntityType.Operation;
@@ -409,13 +404,13 @@ export declare function getBreakStatementNestedEntitiesSchema(): z.ZodObject<{
409
404
  type: EntityType.GenericReference;
410
405
  entityType: EntityType.InternalCall;
411
406
  entityId: string;
412
- })[];
413
- calledByError: ({
407
+ } | {
414
408
  id: string;
415
409
  type: EntityType.GenericReference;
416
410
  entityType: EntityType.Loop;
417
411
  entityId: string;
418
- } | {
412
+ })[];
413
+ calledByError: ({
419
414
  id: string;
420
415
  type: EntityType.GenericReference;
421
416
  entityType: EntityType.Operation;
@@ -450,6 +445,11 @@ export declare function getBreakStatementNestedEntitiesSchema(): z.ZodObject<{
450
445
  type: EntityType.GenericReference;
451
446
  entityType: EntityType.InternalCall;
452
447
  entityId: string;
448
+ } | {
449
+ id: string;
450
+ type: EntityType.GenericReference;
451
+ entityType: EntityType.Loop;
452
+ entityId: string;
453
453
  })[];
454
454
  calledByEntry: ({
455
455
  id: string;
@@ -476,11 +476,6 @@ export declare function getBreakStatementNestedEntitiesSchema(): z.ZodObject<{
476
476
  } | undefined;
477
477
  }, {
478
478
  calledBySuccess: ({
479
- id: string;
480
- type: EntityType.GenericReference;
481
- entityType: EntityType.Loop;
482
- entityId: string;
483
- } | {
484
479
  id: string;
485
480
  type: EntityType.GenericReference;
486
481
  entityType: EntityType.Operation;
@@ -515,13 +510,13 @@ export declare function getBreakStatementNestedEntitiesSchema(): z.ZodObject<{
515
510
  type: EntityType.GenericReference;
516
511
  entityType: EntityType.InternalCall;
517
512
  entityId: string;
518
- })[];
519
- calledByError: ({
513
+ } | {
520
514
  id: string;
521
515
  type: EntityType.GenericReference;
522
516
  entityType: EntityType.Loop;
523
517
  entityId: string;
524
- } | {
518
+ })[];
519
+ calledByError: ({
525
520
  id: string;
526
521
  type: EntityType.GenericReference;
527
522
  entityType: EntityType.Operation;
@@ -556,6 +551,11 @@ export declare function getBreakStatementNestedEntitiesSchema(): z.ZodObject<{
556
551
  type: EntityType.GenericReference;
557
552
  entityType: EntityType.InternalCall;
558
553
  entityId: string;
554
+ } | {
555
+ id: string;
556
+ type: EntityType.GenericReference;
557
+ entityType: EntityType.Loop;
558
+ entityId: string;
559
559
  })[];
560
560
  calledByEntry: ({
561
561
  id: string;
@@ -896,11 +896,6 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
896
896
  id: string;
897
897
  type: EntityType.BreakStatement;
898
898
  calledBySuccess: ({
899
- id: string;
900
- type: EntityType.GenericReference;
901
- entityType: EntityType.Loop;
902
- entityId: string;
903
- } | {
904
899
  id: string;
905
900
  type: EntityType.GenericReference;
906
901
  entityType: EntityType.Operation;
@@ -935,13 +930,13 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
935
930
  type: EntityType.GenericReference;
936
931
  entityType: EntityType.InternalCall;
937
932
  entityId: string;
938
- })[];
939
- calledByError: ({
933
+ } | {
940
934
  id: string;
941
935
  type: EntityType.GenericReference;
942
936
  entityType: EntityType.Loop;
943
937
  entityId: string;
944
- } | {
938
+ })[];
939
+ calledByError: ({
945
940
  id: string;
946
941
  type: EntityType.GenericReference;
947
942
  entityType: EntityType.Operation;
@@ -976,6 +971,11 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
976
971
  type: EntityType.GenericReference;
977
972
  entityType: EntityType.InternalCall;
978
973
  entityId: string;
974
+ } | {
975
+ id: string;
976
+ type: EntityType.GenericReference;
977
+ entityType: EntityType.Loop;
978
+ entityId: string;
979
979
  })[];
980
980
  calledByEntry: ({
981
981
  id: string;
@@ -1007,11 +1007,6 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
1007
1007
  id: string;
1008
1008
  type: EntityType.BreakStatement;
1009
1009
  calledBySuccess: ({
1010
- id: string;
1011
- type: EntityType.GenericReference;
1012
- entityType: EntityType.Loop;
1013
- entityId: string;
1014
- } | {
1015
1010
  id: string;
1016
1011
  type: EntityType.GenericReference;
1017
1012
  entityType: EntityType.Operation;
@@ -1046,13 +1041,13 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
1046
1041
  type: EntityType.GenericReference;
1047
1042
  entityType: EntityType.InternalCall;
1048
1043
  entityId: string;
1049
- })[];
1050
- calledByError: ({
1044
+ } | {
1051
1045
  id: string;
1052
1046
  type: EntityType.GenericReference;
1053
1047
  entityType: EntityType.Loop;
1054
1048
  entityId: string;
1055
- } | {
1049
+ })[];
1050
+ calledByError: ({
1056
1051
  id: string;
1057
1052
  type: EntityType.GenericReference;
1058
1053
  entityType: EntityType.Operation;
@@ -1087,6 +1082,11 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
1087
1082
  type: EntityType.GenericReference;
1088
1083
  entityType: EntityType.InternalCall;
1089
1084
  entityId: string;
1085
+ } | {
1086
+ id: string;
1087
+ type: EntityType.GenericReference;
1088
+ entityType: EntityType.Loop;
1089
+ entityId: string;
1090
1090
  })[];
1091
1091
  calledByEntry: ({
1092
1092
  id: string;
@@ -749,11 +749,6 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
749
749
  }>]>;
750
750
  }, "strip", z.ZodTypeAny, {
751
751
  calledBySuccess: ({
752
- id: string;
753
- type: EntityType.GenericReference;
754
- entityType: EntityType.Loop;
755
- entityId: string;
756
- } | {
757
752
  id: string;
758
753
  type: EntityType.GenericReference;
759
754
  entityType: EntityType.Operation;
@@ -788,13 +783,13 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
788
783
  type: EntityType.GenericReference;
789
784
  entityType: EntityType.InternalCall;
790
785
  entityId: string;
791
- })[];
792
- calledByError: ({
786
+ } | {
793
787
  id: string;
794
788
  type: EntityType.GenericReference;
795
789
  entityType: EntityType.Loop;
796
790
  entityId: string;
797
- } | {
791
+ })[];
792
+ calledByError: ({
798
793
  id: string;
799
794
  type: EntityType.GenericReference;
800
795
  entityType: EntityType.Operation;
@@ -829,6 +824,11 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
829
824
  type: EntityType.GenericReference;
830
825
  entityType: EntityType.InternalCall;
831
826
  entityId: string;
827
+ } | {
828
+ id: string;
829
+ type: EntityType.GenericReference;
830
+ entityType: EntityType.Loop;
831
+ entityId: string;
832
832
  })[];
833
833
  calledByEntry: ({
834
834
  id: string;
@@ -865,7 +865,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
865
865
  successCalls: ({
866
866
  id: string;
867
867
  type: EntityType.GenericReference;
868
- entityType: EntityType.Loop;
868
+ entityType: EntityType.ReturnStatement;
869
869
  entityId: string;
870
870
  } | {
871
871
  id: string;
@@ -905,7 +905,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
905
905
  } | {
906
906
  id: string;
907
907
  type: EntityType.GenericReference;
908
- entityType: EntityType.ReturnStatement;
908
+ entityType: EntityType.Loop;
909
909
  entityId: string;
910
910
  } | {
911
911
  id: string;
@@ -921,7 +921,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
921
921
  errorCalls: ({
922
922
  id: string;
923
923
  type: EntityType.GenericReference;
924
- entityType: EntityType.Loop;
924
+ entityType: EntityType.ReturnStatement;
925
925
  entityId: string;
926
926
  } | {
927
927
  id: string;
@@ -961,7 +961,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
961
961
  } | {
962
962
  id: string;
963
963
  type: EntityType.GenericReference;
964
- entityType: EntityType.ReturnStatement;
964
+ entityType: EntityType.Loop;
965
965
  entityId: string;
966
966
  } | {
967
967
  id: string;
@@ -983,11 +983,6 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
983
983
  operator: ComparisonOperatorTypes | StandaloneOperatorTypes;
984
984
  }, {
985
985
  calledBySuccess: ({
986
- id: string;
987
- type: EntityType.GenericReference;
988
- entityType: EntityType.Loop;
989
- entityId: string;
990
- } | {
991
986
  id: string;
992
987
  type: EntityType.GenericReference;
993
988
  entityType: EntityType.Operation;
@@ -1022,13 +1017,13 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
1022
1017
  type: EntityType.GenericReference;
1023
1018
  entityType: EntityType.InternalCall;
1024
1019
  entityId: string;
1025
- })[];
1026
- calledByError: ({
1020
+ } | {
1027
1021
  id: string;
1028
1022
  type: EntityType.GenericReference;
1029
1023
  entityType: EntityType.Loop;
1030
1024
  entityId: string;
1031
- } | {
1025
+ })[];
1026
+ calledByError: ({
1032
1027
  id: string;
1033
1028
  type: EntityType.GenericReference;
1034
1029
  entityType: EntityType.Operation;
@@ -1063,6 +1058,11 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
1063
1058
  type: EntityType.GenericReference;
1064
1059
  entityType: EntityType.InternalCall;
1065
1060
  entityId: string;
1061
+ } | {
1062
+ id: string;
1063
+ type: EntityType.GenericReference;
1064
+ entityType: EntityType.Loop;
1065
+ entityId: string;
1066
1066
  })[];
1067
1067
  calledByEntry: ({
1068
1068
  id: string;
@@ -1099,7 +1099,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
1099
1099
  successCalls: ({
1100
1100
  id: string;
1101
1101
  type: EntityType.GenericReference;
1102
- entityType: EntityType.Loop;
1102
+ entityType: EntityType.ReturnStatement;
1103
1103
  entityId: string;
1104
1104
  } | {
1105
1105
  id: string;
@@ -1139,7 +1139,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
1139
1139
  } | {
1140
1140
  id: string;
1141
1141
  type: EntityType.GenericReference;
1142
- entityType: EntityType.ReturnStatement;
1142
+ entityType: EntityType.Loop;
1143
1143
  entityId: string;
1144
1144
  } | {
1145
1145
  id: string;
@@ -1155,7 +1155,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
1155
1155
  errorCalls: ({
1156
1156
  id: string;
1157
1157
  type: EntityType.GenericReference;
1158
- entityType: EntityType.Loop;
1158
+ entityType: EntityType.ReturnStatement;
1159
1159
  entityId: string;
1160
1160
  } | {
1161
1161
  id: string;
@@ -1195,7 +1195,7 @@ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
1195
1195
  } | {
1196
1196
  id: string;
1197
1197
  type: EntityType.GenericReference;
1198
- entityType: EntityType.ReturnStatement;
1198
+ entityType: EntityType.Loop;
1199
1199
  entityId: string;
1200
1200
  } | {
1201
1201
  id: string;
@@ -1909,11 +1909,6 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
1909
1909
  id: string;
1910
1910
  type: EntityType.Condition;
1911
1911
  calledBySuccess: ({
1912
- id: string;
1913
- type: EntityType.GenericReference;
1914
- entityType: EntityType.Loop;
1915
- entityId: string;
1916
- } | {
1917
1912
  id: string;
1918
1913
  type: EntityType.GenericReference;
1919
1914
  entityType: EntityType.Operation;
@@ -1948,13 +1943,13 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
1948
1943
  type: EntityType.GenericReference;
1949
1944
  entityType: EntityType.InternalCall;
1950
1945
  entityId: string;
1951
- })[];
1952
- calledByError: ({
1946
+ } | {
1953
1947
  id: string;
1954
1948
  type: EntityType.GenericReference;
1955
1949
  entityType: EntityType.Loop;
1956
1950
  entityId: string;
1957
- } | {
1951
+ })[];
1952
+ calledByError: ({
1958
1953
  id: string;
1959
1954
  type: EntityType.GenericReference;
1960
1955
  entityType: EntityType.Operation;
@@ -1989,6 +1984,11 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
1989
1984
  type: EntityType.GenericReference;
1990
1985
  entityType: EntityType.InternalCall;
1991
1986
  entityId: string;
1987
+ } | {
1988
+ id: string;
1989
+ type: EntityType.GenericReference;
1990
+ entityType: EntityType.Loop;
1991
+ entityId: string;
1992
1992
  })[];
1993
1993
  calledByEntry: ({
1994
1994
  id: string;
@@ -2028,7 +2028,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2028
2028
  successCalls: ({
2029
2029
  id: string;
2030
2030
  type: EntityType.GenericReference;
2031
- entityType: EntityType.Loop;
2031
+ entityType: EntityType.ReturnStatement;
2032
2032
  entityId: string;
2033
2033
  } | {
2034
2034
  id: string;
@@ -2068,7 +2068,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2068
2068
  } | {
2069
2069
  id: string;
2070
2070
  type: EntityType.GenericReference;
2071
- entityType: EntityType.ReturnStatement;
2071
+ entityType: EntityType.Loop;
2072
2072
  entityId: string;
2073
2073
  } | {
2074
2074
  id: string;
@@ -2084,7 +2084,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2084
2084
  errorCalls: ({
2085
2085
  id: string;
2086
2086
  type: EntityType.GenericReference;
2087
- entityType: EntityType.Loop;
2087
+ entityType: EntityType.ReturnStatement;
2088
2088
  entityId: string;
2089
2089
  } | {
2090
2090
  id: string;
@@ -2124,7 +2124,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2124
2124
  } | {
2125
2125
  id: string;
2126
2126
  type: EntityType.GenericReference;
2127
- entityType: EntityType.ReturnStatement;
2127
+ entityType: EntityType.Loop;
2128
2128
  entityId: string;
2129
2129
  } | {
2130
2130
  id: string;
@@ -2148,11 +2148,6 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2148
2148
  id: string;
2149
2149
  type: EntityType.Condition;
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 getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
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 getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
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;
@@ -2267,7 +2267,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2267
2267
  successCalls: ({
2268
2268
  id: string;
2269
2269
  type: EntityType.GenericReference;
2270
- entityType: EntityType.Loop;
2270
+ entityType: EntityType.ReturnStatement;
2271
2271
  entityId: string;
2272
2272
  } | {
2273
2273
  id: string;
@@ -2307,7 +2307,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2307
2307
  } | {
2308
2308
  id: string;
2309
2309
  type: EntityType.GenericReference;
2310
- entityType: EntityType.ReturnStatement;
2310
+ entityType: EntityType.Loop;
2311
2311
  entityId: string;
2312
2312
  } | {
2313
2313
  id: string;
@@ -2323,7 +2323,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2323
2323
  errorCalls: ({
2324
2324
  id: string;
2325
2325
  type: EntityType.GenericReference;
2326
- entityType: EntityType.Loop;
2326
+ entityType: EntityType.ReturnStatement;
2327
2327
  entityId: string;
2328
2328
  } | {
2329
2329
  id: string;
@@ -2363,7 +2363,7 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
2363
2363
  } | {
2364
2364
  id: string;
2365
2365
  type: EntityType.GenericReference;
2366
- entityType: EntityType.ReturnStatement;
2366
+ entityType: EntityType.Loop;
2367
2367
  entityId: string;
2368
2368
  } | {
2369
2369
  id: string;
@@ -370,11 +370,6 @@ export declare function getContinueStatementNestedEntitiesSchema(): z.ZodObject<
370
370
  }>;
371
371
  }, "strip", z.ZodTypeAny, {
372
372
  calledBySuccess: ({
373
- id: string;
374
- type: EntityType.GenericReference;
375
- entityType: EntityType.Loop;
376
- entityId: string;
377
- } | {
378
373
  id: string;
379
374
  type: EntityType.GenericReference;
380
375
  entityType: EntityType.Operation;
@@ -409,13 +404,13 @@ export declare function getContinueStatementNestedEntitiesSchema(): z.ZodObject<
409
404
  type: EntityType.GenericReference;
410
405
  entityType: EntityType.InternalCall;
411
406
  entityId: string;
412
- })[];
413
- calledByError: ({
407
+ } | {
414
408
  id: string;
415
409
  type: EntityType.GenericReference;
416
410
  entityType: EntityType.Loop;
417
411
  entityId: string;
418
- } | {
412
+ })[];
413
+ calledByError: ({
419
414
  id: string;
420
415
  type: EntityType.GenericReference;
421
416
  entityType: EntityType.Operation;
@@ -450,6 +445,11 @@ export declare function getContinueStatementNestedEntitiesSchema(): z.ZodObject<
450
445
  type: EntityType.GenericReference;
451
446
  entityType: EntityType.InternalCall;
452
447
  entityId: string;
448
+ } | {
449
+ id: string;
450
+ type: EntityType.GenericReference;
451
+ entityType: EntityType.Loop;
452
+ entityId: string;
453
453
  })[];
454
454
  calledByEntry: ({
455
455
  id: string;
@@ -476,11 +476,6 @@ export declare function getContinueStatementNestedEntitiesSchema(): z.ZodObject<
476
476
  } | undefined;
477
477
  }, {
478
478
  calledBySuccess: ({
479
- id: string;
480
- type: EntityType.GenericReference;
481
- entityType: EntityType.Loop;
482
- entityId: string;
483
- } | {
484
479
  id: string;
485
480
  type: EntityType.GenericReference;
486
481
  entityType: EntityType.Operation;
@@ -515,13 +510,13 @@ export declare function getContinueStatementNestedEntitiesSchema(): z.ZodObject<
515
510
  type: EntityType.GenericReference;
516
511
  entityType: EntityType.InternalCall;
517
512
  entityId: string;
518
- })[];
519
- calledByError: ({
513
+ } | {
520
514
  id: string;
521
515
  type: EntityType.GenericReference;
522
516
  entityType: EntityType.Loop;
523
517
  entityId: string;
524
- } | {
518
+ })[];
519
+ calledByError: ({
525
520
  id: string;
526
521
  type: EntityType.GenericReference;
527
522
  entityType: EntityType.Operation;
@@ -556,6 +551,11 @@ export declare function getContinueStatementNestedEntitiesSchema(): z.ZodObject<
556
551
  type: EntityType.GenericReference;
557
552
  entityType: EntityType.InternalCall;
558
553
  entityId: string;
554
+ } | {
555
+ id: string;
556
+ type: EntityType.GenericReference;
557
+ entityType: EntityType.Loop;
558
+ entityId: string;
559
559
  })[];
560
560
  calledByEntry: ({
561
561
  id: string;
@@ -896,11 +896,6 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
896
896
  id: string;
897
897
  type: EntityType.ContinueStatement;
898
898
  calledBySuccess: ({
899
- id: string;
900
- type: EntityType.GenericReference;
901
- entityType: EntityType.Loop;
902
- entityId: string;
903
- } | {
904
899
  id: string;
905
900
  type: EntityType.GenericReference;
906
901
  entityType: EntityType.Operation;
@@ -935,13 +930,13 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
935
930
  type: EntityType.GenericReference;
936
931
  entityType: EntityType.InternalCall;
937
932
  entityId: string;
938
- })[];
939
- calledByError: ({
933
+ } | {
940
934
  id: string;
941
935
  type: EntityType.GenericReference;
942
936
  entityType: EntityType.Loop;
943
937
  entityId: string;
944
- } | {
938
+ })[];
939
+ calledByError: ({
945
940
  id: string;
946
941
  type: EntityType.GenericReference;
947
942
  entityType: EntityType.Operation;
@@ -976,6 +971,11 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
976
971
  type: EntityType.GenericReference;
977
972
  entityType: EntityType.InternalCall;
978
973
  entityId: string;
974
+ } | {
975
+ id: string;
976
+ type: EntityType.GenericReference;
977
+ entityType: EntityType.Loop;
978
+ entityId: string;
979
979
  })[];
980
980
  calledByEntry: ({
981
981
  id: string;
@@ -1007,11 +1007,6 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
1007
1007
  id: string;
1008
1008
  type: EntityType.ContinueStatement;
1009
1009
  calledBySuccess: ({
1010
- id: string;
1011
- type: EntityType.GenericReference;
1012
- entityType: EntityType.Loop;
1013
- entityId: string;
1014
- } | {
1015
1010
  id: string;
1016
1011
  type: EntityType.GenericReference;
1017
1012
  entityType: EntityType.Operation;
@@ -1046,13 +1041,13 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
1046
1041
  type: EntityType.GenericReference;
1047
1042
  entityType: EntityType.InternalCall;
1048
1043
  entityId: string;
1049
- })[];
1050
- calledByError: ({
1044
+ } | {
1051
1045
  id: string;
1052
1046
  type: EntityType.GenericReference;
1053
1047
  entityType: EntityType.Loop;
1054
1048
  entityId: string;
1055
- } | {
1049
+ })[];
1050
+ calledByError: ({
1056
1051
  id: string;
1057
1052
  type: EntityType.GenericReference;
1058
1053
  entityType: EntityType.Operation;
@@ -1087,6 +1082,11 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
1087
1082
  type: EntityType.GenericReference;
1088
1083
  entityType: EntityType.InternalCall;
1089
1084
  entityId: string;
1085
+ } | {
1086
+ id: string;
1087
+ type: EntityType.GenericReference;
1088
+ entityType: EntityType.Loop;
1089
+ entityId: string;
1090
1090
  })[];
1091
1091
  calledByEntry: ({
1092
1092
  id: string;