@elyx-code/project-logic-tree 0.0.1

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 (368) hide show
  1. package/README.md +2 -0
  2. package/dist/definitions/built-in-base-entities/conditions/comparison/index.d.ts +6 -0
  3. package/dist/definitions/built-in-base-entities/conditions/comparison/more-than-or-equal.d.ts +7 -0
  4. package/dist/definitions/built-in-base-entities/conditions/index.d.ts +7 -0
  5. package/dist/definitions/built-in-base-entities/conditions/standalone/index.d.ts +6 -0
  6. package/dist/definitions/built-in-base-entities/conditions/standalone/not-empty.d.ts +5 -0
  7. package/dist/definitions/built-in-base-entities/entities/cron/entity.d.ts +7 -0
  8. package/dist/definitions/built-in-base-entities/entities/cron/index.d.ts +2 -0
  9. package/dist/definitions/built-in-base-entities/entities/cron/trigger.d.ts +4 -0
  10. package/dist/definitions/built-in-base-entities/entities/endpoint.d.ts +52 -0
  11. package/dist/definitions/built-in-base-entities/entities/execution/index.d.ts +5 -0
  12. package/dist/definitions/built-in-base-entities/entities/index.d.ts +6 -0
  13. package/dist/definitions/built-in-base-entities/entities/other/index.d.ts +1 -0
  14. package/dist/definitions/built-in-base-entities/entities/other/key-value-param.d.ts +11 -0
  15. package/dist/definitions/built-in-base-entities/entities/persisted/entity.d.ts +3 -0
  16. package/dist/definitions/built-in-base-entities/entities/persisted/index.d.ts +3 -0
  17. package/dist/definitions/built-in-base-entities/entities/persisted/methods/delete.d.ts +4 -0
  18. package/dist/definitions/built-in-base-entities/entities/persisted/methods/index.d.ts +2 -0
  19. package/dist/definitions/built-in-base-entities/entities/persisted/methods/soft-delete.d.ts +4 -0
  20. package/dist/definitions/built-in-base-entities/entities/persisted/properties.d.ts +25 -0
  21. package/dist/definitions/built-in-base-entities/entities/relational-database/entity.d.ts +19 -0
  22. package/dist/definitions/built-in-base-entities/entities/relational-database/index.d.ts +1 -0
  23. package/dist/definitions/built-in-base-entities/global-events/index.d.ts +6 -0
  24. package/dist/definitions/built-in-base-entities/global-events/project-published.d.ts +3 -0
  25. package/dist/definitions/built-in-base-entities/ids.d.ts +118 -0
  26. package/dist/definitions/built-in-base-entities/index.d.ts +8 -0
  27. package/dist/definitions/built-in-base-entities/loops/index.d.ts +2 -0
  28. package/dist/definitions/built-in-base-entities/loops/list.d.ts +9 -0
  29. package/dist/definitions/built-in-base-entities/loops/manual-flow.d.ts +7 -0
  30. package/dist/definitions/built-in-base-entities/operations/custom-entity/create-new.d.ts +17 -0
  31. package/dist/definitions/built-in-base-entities/operations/custom-entity/index.d.ts +7 -0
  32. package/dist/definitions/built-in-base-entities/operations/custom-entity/validate-data.d.ts +23 -0
  33. package/dist/definitions/built-in-base-entities/operations/function-execution/index.d.ts +8 -0
  34. package/dist/definitions/built-in-base-entities/operations/function-execution/parallel.d.ts +21 -0
  35. package/dist/definitions/built-in-base-entities/operations/function-execution/sequential.d.ts +21 -0
  36. package/dist/definitions/built-in-base-entities/operations/function-execution/wait.d.ts +15 -0
  37. package/dist/definitions/built-in-base-entities/operations/http-request/http-request.d.ts +45 -0
  38. package/dist/definitions/built-in-base-entities/operations/http-request/index.d.ts +6 -0
  39. package/dist/definitions/built-in-base-entities/operations/index.d.ts +11 -0
  40. package/dist/definitions/built-in-base-entities/operations/list/append.d.ts +25 -0
  41. package/dist/definitions/built-in-base-entities/operations/list/get-last.d.ts +20 -0
  42. package/dist/definitions/built-in-base-entities/operations/list/index.d.ts +9 -0
  43. package/dist/definitions/built-in-base-entities/operations/list/join-lists.d.ts +25 -0
  44. package/dist/definitions/built-in-base-entities/operations/list/split-list.d.ts +29 -0
  45. package/dist/definitions/built-in-base-entities/operations/number/index.d.ts +6 -0
  46. package/dist/definitions/built-in-base-entities/operations/number/number-addition.d.ts +25 -0
  47. package/dist/definitions/built-in-base-entities/operations/string/index.d.ts +6 -0
  48. package/dist/definitions/built-in-base-entities/operations/string/join-string.d.ts +25 -0
  49. package/dist/definitions/built-in-base-entities/primitive-entities.d.ts +15 -0
  50. package/dist/definitions/built-in-base-entities/value-descriptors/index.d.ts +1 -0
  51. package/dist/definitions/built-in-base-entities/value-descriptors/process-output.d.ts +5 -0
  52. package/dist/definitions/index.d.ts +4 -0
  53. package/dist/definitions/logic/custom-entity-to-zod-schema.d.ts +4 -0
  54. package/dist/definitions/logic/index.d.ts +2 -0
  55. package/dist/definitions/logic/value-autogeneration/boolean.d.ts +3 -0
  56. package/dist/definitions/logic/value-autogeneration/date.d.ts +6 -0
  57. package/dist/definitions/logic/value-autogeneration/index.d.ts +6 -0
  58. package/dist/definitions/logic/value-autogeneration/number.d.ts +6 -0
  59. package/dist/definitions/logic/value-autogeneration/text.d.ts +6 -0
  60. package/dist/definitions/logic/value-autogeneration/uuid.d.ts +1 -0
  61. package/dist/definitions/logic/value-autogeneration/value-autogeneration.d.ts +3 -0
  62. package/dist/definitions/mock/default-mock/entities/alt-relational-database/entity.d.ts +4 -0
  63. package/dist/definitions/mock/default-mock/entities/alt-relational-database/properties.d.ts +15 -0
  64. package/dist/definitions/mock/default-mock/entities/animal.d.ts +12 -0
  65. package/dist/definitions/mock/default-mock/entities/back-account/account-owner-event.d.ts +26 -0
  66. package/dist/definitions/mock/default-mock/entities/back-account/change-owner-of-account.d.ts +16 -0
  67. package/dist/definitions/mock/default-mock/entities/back-account/entity.d.ts +4 -0
  68. package/dist/definitions/mock/default-mock/entities/back-account/properties.d.ts +10 -0
  69. package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/entity.d.ts +4 -0
  70. package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/currency/properties.d.ts +22 -0
  71. package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/entity.d.ts +4 -0
  72. package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/bpi/properties.d.ts +14 -0
  73. package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/entity.d.ts +4 -0
  74. package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/ids.d.ts +15 -0
  75. package/dist/definitions/mock/default-mock/entities/bitcoin-api-response/properties.d.ts +18 -0
  76. package/dist/definitions/mock/default-mock/entities/company/change-owner-of-company.d.ts +16 -0
  77. package/dist/definitions/mock/default-mock/entities/company/company-changed-event/company-name-exists-condition.d.ts +8 -0
  78. package/dist/definitions/mock/default-mock/entities/company/company-changed-event/gov-registry-func-call.d.ts +16 -0
  79. package/dist/definitions/mock/default-mock/entities/company/company-changed-event/index.d.ts +18 -0
  80. package/dist/definitions/mock/default-mock/entities/company/entity.d.ts +4 -0
  81. package/dist/definitions/mock/default-mock/entities/company/properties.d.ts +18 -0
  82. package/dist/definitions/mock/default-mock/entities/cron-job/entity.d.ts +13 -0
  83. package/dist/definitions/mock/default-mock/entities/default-relational-database/entity.d.ts +4 -0
  84. package/dist/definitions/mock/default-mock/entities/default-relational-database/properties.d.ts +15 -0
  85. package/dist/definitions/mock/default-mock/entities/employee.d.ts +17 -0
  86. package/dist/definitions/mock/default-mock/entities/get-all-bank-accounts-endpoint/entity.d.ts +4 -0
  87. package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/endpoint-reached-event.d.ts +39 -0
  88. package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/entity.d.ts +4 -0
  89. package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/ids.d.ts +1 -0
  90. package/dist/definitions/mock/default-mock/entities/get-company-by-id-endpoint/properties.d.ts +12 -0
  91. package/dist/definitions/mock/default-mock/entities/person.d.ts +12 -0
  92. package/dist/definitions/mock/default-mock/entities/product.d.ts +12 -0
  93. package/dist/definitions/mock/default-mock/entities/user.d.ts +8 -0
  94. package/dist/definitions/mock/default-mock/events/project-loaded/get-bitcoin-price/get-bitcoin-price-http-call.d.ts +20 -0
  95. package/dist/definitions/mock/default-mock/events/project-loaded/get-bitcoin-price/validate-bitcoin-price-response.d.ts +13 -0
  96. package/dist/definitions/mock/default-mock/events/project-loaded/ids.d.ts +4 -0
  97. package/dist/definitions/mock/default-mock/events/project-loaded/index.d.ts +7 -0
  98. package/dist/definitions/mock/default-mock/function-calls/call-execution-abort.d.ts +4 -0
  99. package/dist/definitions/mock/default-mock/function-calls/call-hello-world-loop.d.ts +4 -0
  100. package/dist/definitions/mock/default-mock/functions/abort-execution/execution-abort-call-var.d.ts +9 -0
  101. package/dist/definitions/mock/default-mock/functions/abort-execution/execution-var-declaration.d.ts +8 -0
  102. package/dist/definitions/mock/default-mock/functions/abort-execution/execution-var-instance-write.d.ts +8 -0
  103. package/dist/definitions/mock/default-mock/functions/abort-execution/function.d.ts +4 -0
  104. package/dist/definitions/mock/default-mock/functions/abort-execution/ids.d.ts +11 -0
  105. package/dist/definitions/mock/default-mock/functions/abort-execution/long-wait-return-statement.d.ts +10 -0
  106. package/dist/definitions/mock/default-mock/functions/abort-execution/long-wait.d.ts +9 -0
  107. package/dist/definitions/mock/default-mock/functions/abort-execution/second-wait.d.ts +8 -0
  108. package/dist/definitions/mock/default-mock/functions/abort-execution/small-wait-return-statement.d.ts +10 -0
  109. package/dist/definitions/mock/default-mock/functions/abort-execution/small-wait.d.ts +8 -0
  110. package/dist/definitions/mock/default-mock/functions/check-gov-registry/gov-http-call.d.ts +35 -0
  111. package/dist/definitions/mock/default-mock/functions/check-gov-registry/index.d.ts +8 -0
  112. package/dist/definitions/mock/default-mock/functions/check-gov-registry/join-query-string-operation.d.ts +19 -0
  113. package/dist/definitions/mock/default-mock/functions/check-gov-registry/return-statement.d.ts +10 -0
  114. package/dist/definitions/mock/default-mock/functions/check-gov-registry/shared-arg-map.d.ts +5 -0
  115. package/dist/definitions/mock/default-mock/functions/company-dto/employee-dto-map-loop/body.d.ts +24 -0
  116. package/dist/definitions/mock/default-mock/functions/company-dto/employee-dto-map-loop/loop.d.ts +10 -0
  117. package/dist/definitions/mock/default-mock/functions/company-dto/function.d.ts +8 -0
  118. package/dist/definitions/mock/default-mock/functions/company-dto/ids.d.ts +28 -0
  119. package/dist/definitions/mock/default-mock/functions/company-dto/return-statement.d.ts +10 -0
  120. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/bank-account-variable.d.ts +10 -0
  121. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company/outputs.d.ts +12 -0
  122. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company/variable.d.ts +8 -0
  123. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company-dto/inputs.d.ts +17 -0
  124. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/company-dto/variable.d.ts +7 -0
  125. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping/owner-variable.d.ts +10 -0
  126. package/dist/definitions/mock/default-mock/functions/company-dto/variable-mapping.d.ts +0 -0
  127. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/company-dto/mapping-func-call.d.ts +8 -0
  128. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/company-dto/var-chain.d.ts +15 -0
  129. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/exec-in-parallel-call/operation.d.ts +13 -0
  130. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/exec-sequentially-call/operation.d.ts +13 -0
  131. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/function-list-variable.d.ts +12 -0
  132. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/function.d.ts +4 -0
  133. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/ids.d.ts +14 -0
  134. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/return-statement.d.ts +10 -0
  135. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/return-variables-chain.d.ts +0 -0
  136. package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/wait.d.ts +9 -0
  137. package/dist/definitions/mock/default-mock/functions/create-new-company/index.d.ts +4 -0
  138. package/dist/definitions/mock/default-mock/functions/create-new-company/return-statement.d.ts +9 -0
  139. package/dist/definitions/mock/default-mock/functions/current-time.d.ts +16 -0
  140. package/dist/definitions/mock/default-mock/functions/do-math/ids.d.ts +2 -0
  141. package/dist/definitions/mock/default-mock/functions/do-math/index.d.ts +18 -0
  142. package/dist/definitions/mock/default-mock/functions/do-math/op-output-variables.d.ts +8 -0
  143. package/dist/definitions/mock/default-mock/functions/do-math/return-statement.d.ts +9 -0
  144. package/dist/definitions/mock/default-mock/functions/do-math/sum-operation.d.ts +12 -0
  145. package/dist/definitions/mock/default-mock/functions/do-math/var-to-return-statement.d.ts +7 -0
  146. package/dist/definitions/mock/default-mock/functions/employee-dto/function.d.ts +8 -0
  147. package/dist/definitions/mock/default-mock/functions/employee-dto/ids.d.ts +16 -0
  148. package/dist/definitions/mock/default-mock/functions/employee-dto/return-statement.d.ts +10 -0
  149. package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee/outputs.d.ts +10 -0
  150. package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee/variable.d.ts +8 -0
  151. package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee-dto/inputs.d.ts +14 -0
  152. package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/employee-dto/variable.d.ts +5 -0
  153. package/dist/definitions/mock/default-mock/functions/employee-dto/variable-mapping/manager-variable.d.ts +10 -0
  154. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/function.d.ts +4 -0
  155. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/ids.d.ts +13 -0
  156. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/add-latest-text-to-final-list.d.ts +14 -0
  157. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/break-statement.d.ts +10 -0
  158. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/continue-statement.d.ts +10 -0
  159. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/iteration-smaller-than-ten-condition.d.ts +10 -0
  160. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/join-texts.d.ts +13 -0
  161. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/loop-body.d.ts +12 -0
  162. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/loop.d.ts +7 -0
  163. package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/return-statement.d.ts +10 -0
  164. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/company-variable-declaration.d.ts +10 -0
  165. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/company-variable-instance.d.ts +9 -0
  166. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/create-new-bank-account.d.ts +15 -0
  167. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/ids.d.ts +15 -0
  168. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/index.d.ts +19 -0
  169. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/old-bank-account-variable.d.ts +11 -0
  170. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/person-not-empty-condition.d.ts +8 -0
  171. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/person-not-found-return-error.d.ts +10 -0
  172. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/found-person-output.d.ts +8 -0
  173. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/index.d.ts +5 -0
  174. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/person-id-input.d.ts +9 -0
  175. package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/search-person-by-id/search-query.d.ts +3 -0
  176. package/dist/definitions/mock/default-mock/functions/show-popup/index.d.ts +4 -0
  177. package/dist/definitions/mock/default-mock/ids.d.ts +3 -0
  178. package/dist/definitions/mock/default-mock/index.d.ts +4 -0
  179. package/dist/definitions/mock/default-mock/installed-projects/mock-third-party-project.d.ts +7 -0
  180. package/dist/definitions/mock/default-mock/loops/iterate-over-list/body.d.ts +8 -0
  181. package/dist/definitions/mock/default-mock/loops/iterate-over-list/ids.d.ts +3 -0
  182. package/dist/definitions/mock/default-mock/loops/iterate-over-list/loop.d.ts +6 -0
  183. package/dist/definitions/mock/default-mock/operations/random-wait.d.ts +7 -0
  184. package/dist/definitions/mock/default-mock/searches/find-companies-with-multiple-employees-and-bank-account.d.ts +10 -0
  185. package/dist/definitions/mock/default-mock/variables/global-data-mapping/company-employee/company-employee.d.ts +6 -0
  186. package/dist/definitions/mock/default-mock/variables/global-data-mapping/company-employee/outputs.d.ts +10 -0
  187. package/dist/definitions/mock/default-mock/variables/global-data-mapping/employee-dto/company-employee-mapped-DTO.d.ts +4 -0
  188. package/dist/definitions/mock/default-mock/variables/global-data-mapping/employee-dto/inputs.d.ts +17 -0
  189. package/dist/definitions/mock/default-mock/variables/global-data-mapping/global-user-instance.d.ts +6 -0
  190. package/dist/definitions/mock/default-mock/variables/global-data-mapping/ids.d.ts +15 -0
  191. package/dist/definitions/mock/default-mock/variables/global-data-mapping/manager-variable.d.ts +9 -0
  192. package/dist/definitions/mock/default-mock/variables/isTestEnv.d.ts +9 -0
  193. package/dist/definitions/mock/default-mock/variables/lastTimestamp.d.ts +7 -0
  194. package/dist/definitions/mock/default-mock/variables/user.d.ts +6 -0
  195. package/dist/definitions/mock/index.d.ts +3 -0
  196. package/dist/definitions/types/autogeneration.d.ts +101 -0
  197. package/dist/definitions/types/base-entity.d.ts +79 -0
  198. package/dist/definitions/types/base.d.ts +177 -0
  199. package/dist/definitions/types/condition.d.ts +61 -0
  200. package/dist/definitions/types/custom-entity.d.ts +31 -0
  201. package/dist/definitions/types/data-type.d.ts +50 -0
  202. package/dist/definitions/types/event.d.ts +49 -0
  203. package/dist/definitions/types/function.d.ts +180 -0
  204. package/dist/definitions/types/generic-reference.d.ts +95 -0
  205. package/dist/definitions/types/index.d.ts +201 -0
  206. package/dist/definitions/types/input-output-map.d.ts +135 -0
  207. package/dist/definitions/types/loop.d.ts +41 -0
  208. package/dist/definitions/types/operation.d.ts +92 -0
  209. package/dist/definitions/types/primitives.d.ts +199 -0
  210. package/dist/definitions/types/project.d.ts +84 -0
  211. package/dist/definitions/types/property.d.ts +35 -0
  212. package/dist/definitions/types/return.d.ts +109 -0
  213. package/dist/definitions/types/search.d.ts +62 -0
  214. package/dist/definitions/types/variable.d.ts +128 -0
  215. package/dist/index.d.ts +2 -0
  216. package/dist/index.js +38622 -0
  217. package/dist/index.umd.cjs +299 -0
  218. package/dist/tree/built-in/built-in-base-entities/index.d.ts +1 -0
  219. package/dist/tree/built-in/built-in-base-entities/persisted/entity.d.ts +22 -0
  220. package/dist/tree/built-in/built-in-base-entities/persisted/index.d.ts +1 -0
  221. package/dist/tree/built-in/index.d.ts +3 -0
  222. package/dist/tree/built-in/operations/function-execution/index.d.ts +3 -0
  223. package/dist/tree/built-in/operations/function-execution/parallel.d.ts +20 -0
  224. package/dist/tree/built-in/operations/function-execution/sequential.d.ts +22 -0
  225. package/dist/tree/built-in/operations/function-execution/wait.d.ts +20 -0
  226. package/dist/tree/built-in/operations/index.d.ts +1 -0
  227. package/dist/tree/built-in/operations/init.d.ts +4 -0
  228. package/dist/tree/built-in/primitive-entities/index.d.ts +1 -0
  229. package/dist/tree/index.d.ts +3 -0
  230. package/dist/tree/state/action-descriptor/action-descriptor.d.ts +113 -0
  231. package/dist/tree/state/action-descriptor/index.d.ts +1 -0
  232. package/dist/tree/state/action-descriptor/validation/logic-validation.d.ts +4 -0
  233. package/dist/tree/state/action-descriptor/validation/validation-schema.d.ts +438 -0
  234. package/dist/tree/state/argument-declaration/argument-declaration.d.ts +98 -0
  235. package/dist/tree/state/argument-declaration/index.d.ts +1 -0
  236. package/dist/tree/state/argument-declaration/validation/logic-validation.d.ts +4 -0
  237. package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +489 -0
  238. package/dist/tree/state/autogeneration.d.ts +823 -0
  239. package/dist/tree/state/base.d.ts +111 -0
  240. package/dist/tree/state/break-statement/break-statement.d.ts +99 -0
  241. package/dist/tree/state/break-statement/index.d.ts +1 -0
  242. package/dist/tree/state/break-statement/validation/logic-validation.d.ts +4 -0
  243. package/dist/tree/state/break-statement/validation/validation-schema.d.ts +1117 -0
  244. package/dist/tree/state/built-in-base-entity/built-in-base-entity.d.ts +82 -0
  245. package/dist/tree/state/built-in-base-entity/index.d.ts +1 -0
  246. package/dist/tree/state/built-in-base-entity/init.d.ts +4 -0
  247. package/dist/tree/state/built-in-base-entity/logic-validation.d.ts +4 -0
  248. package/dist/tree/state/built-in-base-entity/validation-schema.d.ts +256 -0
  249. package/dist/tree/state/condition/condition.d.ts +105 -0
  250. package/dist/tree/state/condition/index.d.ts +1 -0
  251. package/dist/tree/state/condition/init.d.ts +4 -0
  252. package/dist/tree/state/condition/validation/logic-validation.d.ts +4 -0
  253. package/dist/tree/state/condition/validation/validation-schema.d.ts +2386 -0
  254. package/dist/tree/state/continue-statement/continue-statement.d.ts +99 -0
  255. package/dist/tree/state/continue-statement/index.d.ts +1 -0
  256. package/dist/tree/state/continue-statement/validation/logic-validation.d.ts +4 -0
  257. package/dist/tree/state/continue-statement/validation/validation-schema.d.ts +1117 -0
  258. package/dist/tree/state/create.d.ts +8 -0
  259. package/dist/tree/state/custom-entity/custom-entity.d.ts +129 -0
  260. package/dist/tree/state/custom-entity/index.d.ts +1 -0
  261. package/dist/tree/state/custom-entity/validation/logic-validation.d.ts +9 -0
  262. package/dist/tree/state/custom-entity/validation/references.d.ts +5 -0
  263. package/dist/tree/state/custom-entity/validation/validation-schema.d.ts +472 -0
  264. package/dist/tree/state/data-type/data-type.d.ts +108 -0
  265. package/dist/tree/state/data-type/index.d.ts +1 -0
  266. package/dist/tree/state/data-type/validation/logic-validation.d.ts +4 -0
  267. package/dist/tree/state/data-type/validation/references.d.ts +5 -0
  268. package/dist/tree/state/data-type/validation/validation-schema.d.ts +12115 -0
  269. package/dist/tree/state/error.d.ts +133 -0
  270. package/dist/tree/state/function-call/function-call.d.ts +111 -0
  271. package/dist/tree/state/function-call/index.d.ts +1 -0
  272. package/dist/tree/state/function-call/validation/logic-validation.d.ts +4 -0
  273. package/dist/tree/state/function-call/validation/validation-schema.d.ts +2517 -0
  274. package/dist/tree/state/function-declaration/function-declaration.d.ts +115 -0
  275. package/dist/tree/state/function-declaration/index.d.ts +1 -0
  276. package/dist/tree/state/function-declaration/validation/logic-validation.d.ts +4 -0
  277. package/dist/tree/state/function-declaration/validation/validation-schema.d.ts +505 -0
  278. package/dist/tree/state/global-event/global-event.d.ts +105 -0
  279. package/dist/tree/state/global-event/index.d.ts +1 -0
  280. package/dist/tree/state/global-event/init.d.ts +4 -0
  281. package/dist/tree/state/global-event/validation/logic-validation.d.ts +4 -0
  282. package/dist/tree/state/global-event/validation/validation-schema.d.ts +1379 -0
  283. package/dist/tree/state/index.d.ts +28 -0
  284. package/dist/tree/state/input-map/index.d.ts +1 -0
  285. package/dist/tree/state/input-map/input-map.d.ts +124 -0
  286. package/dist/tree/state/input-map/validation/logic-validation.d.ts +4 -0
  287. package/dist/tree/state/input-map/validation/validation-schema.d.ts +36161 -0
  288. package/dist/tree/state/installed-project/index.d.ts +1 -0
  289. package/dist/tree/state/installed-project/installed-project.d.ts +90 -0
  290. package/dist/tree/state/installed-project/validation/logic-validation.d.ts +4 -0
  291. package/dist/tree/state/installed-project/validation/validation-schema.d.ts +238 -0
  292. package/dist/tree/state/internal-call/index.d.ts +1 -0
  293. package/dist/tree/state/internal-call/internal-call.d.ts +109 -0
  294. package/dist/tree/state/internal-call/validation/logic-validation.d.ts +4 -0
  295. package/dist/tree/state/internal-call/validation/validation-schema.d.ts +2433 -0
  296. package/dist/tree/state/loop/index.d.ts +1 -0
  297. package/dist/tree/state/loop/init.d.ts +4 -0
  298. package/dist/tree/state/loop/loop.d.ts +127 -0
  299. package/dist/tree/state/loop/validation/logic-validation.d.ts +4 -0
  300. package/dist/tree/state/loop/validation/validation-schema.d.ts +2523 -0
  301. package/dist/tree/state/operation/index.d.ts +1 -0
  302. package/dist/tree/state/operation/operation.d.ts +111 -0
  303. package/dist/tree/state/operation/validation/logic-validation.d.ts +4 -0
  304. package/dist/tree/state/operation/validation/validation-schema.d.ts +2553 -0
  305. package/dist/tree/state/output-map/index.d.ts +1 -0
  306. package/dist/tree/state/output-map/output-map.d.ts +111 -0
  307. package/dist/tree/state/output-map/validation/logic-validation.d.ts +4 -0
  308. package/dist/tree/state/output-map/validation/validation-schema.d.ts +1543 -0
  309. package/dist/tree/state/primitive-entity/index.d.ts +1 -0
  310. package/dist/tree/state/primitive-entity/init.d.ts +4 -0
  311. package/dist/tree/state/primitive-entity/primitive-entity.d.ts +62 -0
  312. package/dist/tree/state/primitive-entity/validation/logic-validation.d.ts +4 -0
  313. package/dist/tree/state/primitive-entity/validation/validation-schema.d.ts +251 -0
  314. package/dist/tree/state/primitive-value/index.d.ts +1 -0
  315. package/dist/tree/state/primitive-value/primitive-value.d.ts +91 -0
  316. package/dist/tree/state/primitive-value/validation/logic-validation.d.ts +4 -0
  317. package/dist/tree/state/primitive-value/validation/references.d.ts +5 -0
  318. package/dist/tree/state/primitive-value/validation/validation-schema.d.ts +11410 -0
  319. package/dist/tree/state/project/index.d.ts +1 -0
  320. package/dist/tree/state/project/project.d.ts +180 -0
  321. package/dist/tree/state/project/validation/validation-schema.d.ts +389 -0
  322. package/dist/tree/state/property/index.d.ts +1 -0
  323. package/dist/tree/state/property/property.d.ts +100 -0
  324. package/dist/tree/state/property/validation/logic-validation.d.ts +5 -0
  325. package/dist/tree/state/property/validation/references.d.ts +5 -0
  326. package/dist/tree/state/property/validation/validation-schema.d.ts +365 -0
  327. package/dist/tree/state/return-declaration/index.d.ts +1 -0
  328. package/dist/tree/state/return-declaration/return-declaration.d.ts +100 -0
  329. package/dist/tree/state/return-declaration/validation/logic-validation.d.ts +4 -0
  330. package/dist/tree/state/return-declaration/validation/validation-schema.d.ts +579 -0
  331. package/dist/tree/state/return-statement/index.d.ts +1 -0
  332. package/dist/tree/state/return-statement/return-statement.d.ts +98 -0
  333. package/dist/tree/state/return-statement/validation/logic-validation.d.ts +4 -0
  334. package/dist/tree/state/return-statement/validation/references.d.ts +8 -0
  335. package/dist/tree/state/return-statement/validation/validation-schema.d.ts +1217 -0
  336. package/dist/tree/state/search/index.d.ts +1 -0
  337. package/dist/tree/state/search/search.d.ts +116 -0
  338. package/dist/tree/state/search/validation/logic-validation.d.ts +4 -0
  339. package/dist/tree/state/search/validation/validation-schema.d.ts +2493 -0
  340. package/dist/tree/state/state.test.d.ts +1 -0
  341. package/dist/tree/state/store.d.ts +10 -0
  342. package/dist/tree/state/types/index.d.ts +7 -0
  343. package/dist/tree/state/types/state.d.ts +52 -0
  344. package/dist/tree/state/types/validation.d.ts +3591 -0
  345. package/dist/tree/state/validate.d.ts +122 -0
  346. package/dist/tree/state/validate.test.d.ts +1 -0
  347. package/dist/tree/state/value-descriptor/index.d.ts +1 -0
  348. package/dist/tree/state/value-descriptor/init.d.ts +4 -0
  349. package/dist/tree/state/value-descriptor/validation/logic-validation.d.ts +4 -0
  350. package/dist/tree/state/value-descriptor/validation/validation-schema.d.ts +191 -0
  351. package/dist/tree/state/value-descriptor/value-descriptor.d.ts +91 -0
  352. package/dist/tree/state/variable-declaration/index.d.ts +1 -0
  353. package/dist/tree/state/variable-declaration/validation/logic-validation.d.ts +4 -0
  354. package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +2687 -0
  355. package/dist/tree/state/variable-declaration/variable-declaration.d.ts +129 -0
  356. package/dist/tree/state/variable-instance/index.d.ts +1 -0
  357. package/dist/tree/state/variable-instance/validation/logic-validation.d.ts +4 -0
  358. package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +2689 -0
  359. package/dist/tree/state/variable-instance/variable-instance.d.ts +125 -0
  360. package/dist/tree/utils/data-type.d.ts +51 -0
  361. package/dist/tree/utils/index.d.ts +158 -0
  362. package/dist/tree/utils/names.d.ts +32 -0
  363. package/dist/tree/utils/references.d.ts +4 -0
  364. package/dist/tree/utils/shared-data-structure-entity.d.ts +26 -0
  365. package/dist/tree/utils/string.d.ts +2 -0
  366. package/dist/tree/utils/uuid.d.ts +7 -0
  367. package/dist/tree/utils/variables.d.ts +5 -0
  368. package/package.json +65 -0
@@ -0,0 +1,2386 @@
1
+ import { ComparisonOperatorTypes, EntityType, StandaloneOperatorTypes } from '../../../../../../../../../../src/definitions';
2
+ import { z } from 'zod';
3
+
4
+ export declare function getOperatorTypesSchema(): z.ZodEnum<[ComparisonOperatorTypes.Equal, ComparisonOperatorTypes.NotEqual, ComparisonOperatorTypes.MoreThan, ComparisonOperatorTypes.MoreThanOrEqual, ComparisonOperatorTypes.LessThan, ComparisonOperatorTypes.LessThanOrEqual, ComparisonOperatorTypes.And, ComparisonOperatorTypes.Or, StandaloneOperatorTypes.Empty, StandaloneOperatorTypes.NotEmpty]>;
5
+ export declare function getConditionTypeSchema(): z.ZodUnion<[z.ZodObject<{
6
+ type: z.ZodLiteral<EntityType.Condition>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ type: EntityType.Condition;
9
+ }, {
10
+ type: EntityType.Condition;
11
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
12
+ export declare function getConditionReferenceSchema(): z.ZodObject<{
13
+ id: z.ZodString;
14
+ type: z.ZodLiteral<EntityType.GenericReference>;
15
+ entityId: z.ZodString;
16
+ entityType: z.ZodLiteral<EntityType.Condition>;
17
+ }, "strip", z.ZodTypeAny, {
18
+ id: string;
19
+ type: EntityType.GenericReference;
20
+ entityType: EntityType.Condition;
21
+ entityId: string;
22
+ }, {
23
+ id: string;
24
+ type: EntityType.GenericReference;
25
+ entityType: EntityType.Condition;
26
+ entityId: string;
27
+ }>;
28
+ export declare function getConditionBaseSchema(): z.ZodObject<{
29
+ id: z.ZodString;
30
+ type: z.ZodLiteral<EntityType.Condition>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ id: string;
33
+ type: EntityType.Condition;
34
+ }, {
35
+ id: string;
36
+ type: EntityType.Condition;
37
+ }>;
38
+ export declare function getConditionMetaSchema(): z.ZodObject<z.objectUtil.extendShape<{
39
+ id: z.ZodString;
40
+ type: z.ZodLiteral<EntityType.Condition>;
41
+ }, {
42
+ version: z.ZodNumber;
43
+ x: z.ZodNumber;
44
+ y: z.ZodNumber;
45
+ }>, "strip", z.ZodTypeAny, {
46
+ id: string;
47
+ type: EntityType.Condition;
48
+ version: number;
49
+ x: number;
50
+ y: number;
51
+ }, {
52
+ id: string;
53
+ type: EntityType.Condition;
54
+ version: number;
55
+ x: number;
56
+ y: number;
57
+ }>;
58
+ export declare function getConditionGenerationTargetSchema(): z.ZodObject<z.objectUtil.extendShape<{
59
+ id: z.ZodString;
60
+ type: z.ZodLiteral<EntityType.Condition>;
61
+ }, {}>, "strip", z.ZodTypeAny, {
62
+ id: string;
63
+ type: EntityType.Condition;
64
+ }, {
65
+ id: string;
66
+ type: EntityType.Condition;
67
+ }>;
68
+ export declare function getConditionNestedEntitiesSchema(): z.ZodObject<{
69
+ successCalls: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
70
+ id: z.ZodString;
71
+ type: z.ZodLiteral<EntityType.GenericReference>;
72
+ entityId: z.ZodString;
73
+ entityType: z.ZodLiteral<EntityType.Operation>;
74
+ }, "strip", z.ZodTypeAny, {
75
+ id: string;
76
+ type: EntityType.GenericReference;
77
+ entityType: EntityType.Operation;
78
+ entityId: string;
79
+ }, {
80
+ id: string;
81
+ type: EntityType.GenericReference;
82
+ entityType: EntityType.Operation;
83
+ entityId: string;
84
+ }>, z.ZodObject<{
85
+ id: z.ZodString;
86
+ type: z.ZodLiteral<EntityType.GenericReference>;
87
+ entityId: z.ZodString;
88
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ id: string;
91
+ type: EntityType.GenericReference;
92
+ entityType: EntityType.FunctionCall;
93
+ entityId: string;
94
+ }, {
95
+ id: string;
96
+ type: EntityType.GenericReference;
97
+ entityType: EntityType.FunctionCall;
98
+ entityId: string;
99
+ }>, z.ZodObject<{
100
+ id: z.ZodString;
101
+ type: z.ZodLiteral<EntityType.GenericReference>;
102
+ entityId: z.ZodString;
103
+ entityType: z.ZodLiteral<EntityType.Condition>;
104
+ }, "strip", z.ZodTypeAny, {
105
+ id: string;
106
+ type: EntityType.GenericReference;
107
+ entityType: EntityType.Condition;
108
+ entityId: string;
109
+ }, {
110
+ id: string;
111
+ type: EntityType.GenericReference;
112
+ entityType: EntityType.Condition;
113
+ entityId: string;
114
+ }>, z.ZodObject<{
115
+ id: z.ZodString;
116
+ type: z.ZodLiteral<EntityType.GenericReference>;
117
+ entityId: z.ZodString;
118
+ entityType: z.ZodLiteral<EntityType.Search>;
119
+ }, "strip", z.ZodTypeAny, {
120
+ id: string;
121
+ type: EntityType.GenericReference;
122
+ entityType: EntityType.Search;
123
+ entityId: string;
124
+ }, {
125
+ id: string;
126
+ type: EntityType.GenericReference;
127
+ entityType: EntityType.Search;
128
+ entityId: string;
129
+ }>, z.ZodUnion<[z.ZodObject<{
130
+ id: z.ZodString;
131
+ type: z.ZodLiteral<EntityType.GenericReference>;
132
+ entityId: z.ZodString;
133
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
134
+ }, "strip", z.ZodTypeAny, {
135
+ id: string;
136
+ type: EntityType.GenericReference;
137
+ entityType: EntityType.VariableDeclaration;
138
+ entityId: string;
139
+ }, {
140
+ id: string;
141
+ type: EntityType.GenericReference;
142
+ entityType: EntityType.VariableDeclaration;
143
+ entityId: string;
144
+ }>, z.ZodObject<{
145
+ id: z.ZodString;
146
+ type: z.ZodLiteral<EntityType.GenericReference>;
147
+ entityId: z.ZodString;
148
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
149
+ }, "strip", z.ZodTypeAny, {
150
+ id: string;
151
+ type: EntityType.GenericReference;
152
+ entityType: EntityType.VariableInstance;
153
+ entityId: string;
154
+ }, {
155
+ id: string;
156
+ type: EntityType.GenericReference;
157
+ entityType: EntityType.VariableInstance;
158
+ entityId: string;
159
+ }>]>, z.ZodObject<{
160
+ id: z.ZodString;
161
+ type: z.ZodLiteral<EntityType.GenericReference>;
162
+ entityId: z.ZodString;
163
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
164
+ }, "strip", z.ZodTypeAny, {
165
+ id: string;
166
+ type: EntityType.GenericReference;
167
+ entityType: EntityType.InternalCall;
168
+ entityId: string;
169
+ }, {
170
+ id: string;
171
+ type: EntityType.GenericReference;
172
+ entityType: EntityType.InternalCall;
173
+ entityId: string;
174
+ }>, z.ZodObject<{
175
+ id: z.ZodString;
176
+ type: z.ZodLiteral<EntityType.GenericReference>;
177
+ entityId: z.ZodString;
178
+ entityType: z.ZodLiteral<EntityType.Loop>;
179
+ }, "strip", z.ZodTypeAny, {
180
+ id: string;
181
+ type: EntityType.GenericReference;
182
+ entityType: EntityType.Loop;
183
+ entityId: string;
184
+ }, {
185
+ id: string;
186
+ type: EntityType.GenericReference;
187
+ entityType: EntityType.Loop;
188
+ entityId: string;
189
+ }>]>, z.ZodObject<{
190
+ id: z.ZodString;
191
+ type: z.ZodLiteral<EntityType.GenericReference>;
192
+ entityId: z.ZodString;
193
+ entityType: z.ZodLiteral<EntityType.ReturnStatement>;
194
+ }, "strip", z.ZodTypeAny, {
195
+ id: string;
196
+ type: EntityType.GenericReference;
197
+ entityType: EntityType.ReturnStatement;
198
+ entityId: string;
199
+ }, {
200
+ id: string;
201
+ type: EntityType.GenericReference;
202
+ entityType: EntityType.ReturnStatement;
203
+ entityId: string;
204
+ }>, z.ZodObject<{
205
+ id: z.ZodString;
206
+ type: z.ZodLiteral<EntityType.GenericReference>;
207
+ entityId: z.ZodString;
208
+ entityType: z.ZodLiteral<EntityType.BreakStatement>;
209
+ }, "strip", z.ZodTypeAny, {
210
+ id: string;
211
+ type: EntityType.GenericReference;
212
+ entityType: EntityType.BreakStatement;
213
+ entityId: string;
214
+ }, {
215
+ id: string;
216
+ type: EntityType.GenericReference;
217
+ entityType: EntityType.BreakStatement;
218
+ entityId: string;
219
+ }>, z.ZodObject<{
220
+ id: z.ZodString;
221
+ type: z.ZodLiteral<EntityType.GenericReference>;
222
+ entityId: z.ZodString;
223
+ entityType: z.ZodLiteral<EntityType.ContinueStatement>;
224
+ }, "strip", z.ZodTypeAny, {
225
+ id: string;
226
+ type: EntityType.GenericReference;
227
+ entityType: EntityType.ContinueStatement;
228
+ entityId: string;
229
+ }, {
230
+ id: string;
231
+ type: EntityType.GenericReference;
232
+ entityType: EntityType.ContinueStatement;
233
+ entityId: string;
234
+ }>]>, "many">;
235
+ errorCalls: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
236
+ id: z.ZodString;
237
+ type: z.ZodLiteral<EntityType.GenericReference>;
238
+ entityId: z.ZodString;
239
+ entityType: z.ZodLiteral<EntityType.Operation>;
240
+ }, "strip", z.ZodTypeAny, {
241
+ id: string;
242
+ type: EntityType.GenericReference;
243
+ entityType: EntityType.Operation;
244
+ entityId: string;
245
+ }, {
246
+ id: string;
247
+ type: EntityType.GenericReference;
248
+ entityType: EntityType.Operation;
249
+ entityId: string;
250
+ }>, z.ZodObject<{
251
+ id: z.ZodString;
252
+ type: z.ZodLiteral<EntityType.GenericReference>;
253
+ entityId: z.ZodString;
254
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
255
+ }, "strip", z.ZodTypeAny, {
256
+ id: string;
257
+ type: EntityType.GenericReference;
258
+ entityType: EntityType.FunctionCall;
259
+ entityId: string;
260
+ }, {
261
+ id: string;
262
+ type: EntityType.GenericReference;
263
+ entityType: EntityType.FunctionCall;
264
+ entityId: string;
265
+ }>, z.ZodObject<{
266
+ id: z.ZodString;
267
+ type: z.ZodLiteral<EntityType.GenericReference>;
268
+ entityId: z.ZodString;
269
+ entityType: z.ZodLiteral<EntityType.Condition>;
270
+ }, "strip", z.ZodTypeAny, {
271
+ id: string;
272
+ type: EntityType.GenericReference;
273
+ entityType: EntityType.Condition;
274
+ entityId: string;
275
+ }, {
276
+ id: string;
277
+ type: EntityType.GenericReference;
278
+ entityType: EntityType.Condition;
279
+ entityId: string;
280
+ }>, z.ZodObject<{
281
+ id: z.ZodString;
282
+ type: z.ZodLiteral<EntityType.GenericReference>;
283
+ entityId: z.ZodString;
284
+ entityType: z.ZodLiteral<EntityType.Search>;
285
+ }, "strip", z.ZodTypeAny, {
286
+ id: string;
287
+ type: EntityType.GenericReference;
288
+ entityType: EntityType.Search;
289
+ entityId: string;
290
+ }, {
291
+ id: string;
292
+ type: EntityType.GenericReference;
293
+ entityType: EntityType.Search;
294
+ entityId: string;
295
+ }>, z.ZodUnion<[z.ZodObject<{
296
+ id: z.ZodString;
297
+ type: z.ZodLiteral<EntityType.GenericReference>;
298
+ entityId: z.ZodString;
299
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
300
+ }, "strip", z.ZodTypeAny, {
301
+ id: string;
302
+ type: EntityType.GenericReference;
303
+ entityType: EntityType.VariableDeclaration;
304
+ entityId: string;
305
+ }, {
306
+ id: string;
307
+ type: EntityType.GenericReference;
308
+ entityType: EntityType.VariableDeclaration;
309
+ entityId: string;
310
+ }>, z.ZodObject<{
311
+ id: z.ZodString;
312
+ type: z.ZodLiteral<EntityType.GenericReference>;
313
+ entityId: z.ZodString;
314
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
315
+ }, "strip", z.ZodTypeAny, {
316
+ id: string;
317
+ type: EntityType.GenericReference;
318
+ entityType: EntityType.VariableInstance;
319
+ entityId: string;
320
+ }, {
321
+ id: string;
322
+ type: EntityType.GenericReference;
323
+ entityType: EntityType.VariableInstance;
324
+ entityId: string;
325
+ }>]>, z.ZodObject<{
326
+ id: z.ZodString;
327
+ type: z.ZodLiteral<EntityType.GenericReference>;
328
+ entityId: z.ZodString;
329
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
330
+ }, "strip", z.ZodTypeAny, {
331
+ id: string;
332
+ type: EntityType.GenericReference;
333
+ entityType: EntityType.InternalCall;
334
+ entityId: string;
335
+ }, {
336
+ id: string;
337
+ type: EntityType.GenericReference;
338
+ entityType: EntityType.InternalCall;
339
+ entityId: string;
340
+ }>, z.ZodObject<{
341
+ id: z.ZodString;
342
+ type: z.ZodLiteral<EntityType.GenericReference>;
343
+ entityId: z.ZodString;
344
+ entityType: z.ZodLiteral<EntityType.Loop>;
345
+ }, "strip", z.ZodTypeAny, {
346
+ id: string;
347
+ type: EntityType.GenericReference;
348
+ entityType: EntityType.Loop;
349
+ entityId: string;
350
+ }, {
351
+ id: string;
352
+ type: EntityType.GenericReference;
353
+ entityType: EntityType.Loop;
354
+ entityId: string;
355
+ }>]>, z.ZodObject<{
356
+ id: z.ZodString;
357
+ type: z.ZodLiteral<EntityType.GenericReference>;
358
+ entityId: z.ZodString;
359
+ entityType: z.ZodLiteral<EntityType.ReturnStatement>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ id: string;
362
+ type: EntityType.GenericReference;
363
+ entityType: EntityType.ReturnStatement;
364
+ entityId: string;
365
+ }, {
366
+ id: string;
367
+ type: EntityType.GenericReference;
368
+ entityType: EntityType.ReturnStatement;
369
+ entityId: string;
370
+ }>, z.ZodObject<{
371
+ id: z.ZodString;
372
+ type: z.ZodLiteral<EntityType.GenericReference>;
373
+ entityId: z.ZodString;
374
+ entityType: z.ZodLiteral<EntityType.BreakStatement>;
375
+ }, "strip", z.ZodTypeAny, {
376
+ id: string;
377
+ type: EntityType.GenericReference;
378
+ entityType: EntityType.BreakStatement;
379
+ entityId: string;
380
+ }, {
381
+ id: string;
382
+ type: EntityType.GenericReference;
383
+ entityType: EntityType.BreakStatement;
384
+ entityId: string;
385
+ }>, z.ZodObject<{
386
+ id: z.ZodString;
387
+ type: z.ZodLiteral<EntityType.GenericReference>;
388
+ entityId: z.ZodString;
389
+ entityType: z.ZodLiteral<EntityType.ContinueStatement>;
390
+ }, "strip", z.ZodTypeAny, {
391
+ id: string;
392
+ type: EntityType.GenericReference;
393
+ entityType: EntityType.ContinueStatement;
394
+ entityId: string;
395
+ }, {
396
+ id: string;
397
+ type: EntityType.GenericReference;
398
+ entityType: EntityType.ContinueStatement;
399
+ entityId: string;
400
+ }>]>, "many">;
401
+ calledBySuccess: z.ZodArray<z.ZodUnion<[z.ZodObject<{
402
+ id: z.ZodString;
403
+ type: z.ZodLiteral<EntityType.GenericReference>;
404
+ entityId: z.ZodString;
405
+ entityType: z.ZodLiteral<EntityType.Operation>;
406
+ }, "strip", z.ZodTypeAny, {
407
+ id: string;
408
+ type: EntityType.GenericReference;
409
+ entityType: EntityType.Operation;
410
+ entityId: string;
411
+ }, {
412
+ id: string;
413
+ type: EntityType.GenericReference;
414
+ entityType: EntityType.Operation;
415
+ entityId: string;
416
+ }>, z.ZodObject<{
417
+ id: z.ZodString;
418
+ type: z.ZodLiteral<EntityType.GenericReference>;
419
+ entityId: z.ZodString;
420
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
421
+ }, "strip", z.ZodTypeAny, {
422
+ id: string;
423
+ type: EntityType.GenericReference;
424
+ entityType: EntityType.FunctionCall;
425
+ entityId: string;
426
+ }, {
427
+ id: string;
428
+ type: EntityType.GenericReference;
429
+ entityType: EntityType.FunctionCall;
430
+ entityId: string;
431
+ }>, z.ZodObject<{
432
+ id: z.ZodString;
433
+ type: z.ZodLiteral<EntityType.GenericReference>;
434
+ entityId: z.ZodString;
435
+ entityType: z.ZodLiteral<EntityType.Condition>;
436
+ }, "strip", z.ZodTypeAny, {
437
+ id: string;
438
+ type: EntityType.GenericReference;
439
+ entityType: EntityType.Condition;
440
+ entityId: string;
441
+ }, {
442
+ id: string;
443
+ type: EntityType.GenericReference;
444
+ entityType: EntityType.Condition;
445
+ entityId: string;
446
+ }>, z.ZodObject<{
447
+ id: z.ZodString;
448
+ type: z.ZodLiteral<EntityType.GenericReference>;
449
+ entityId: z.ZodString;
450
+ entityType: z.ZodLiteral<EntityType.Search>;
451
+ }, "strip", z.ZodTypeAny, {
452
+ id: string;
453
+ type: EntityType.GenericReference;
454
+ entityType: EntityType.Search;
455
+ entityId: string;
456
+ }, {
457
+ id: string;
458
+ type: EntityType.GenericReference;
459
+ entityType: EntityType.Search;
460
+ entityId: string;
461
+ }>, z.ZodUnion<[z.ZodObject<{
462
+ id: z.ZodString;
463
+ type: z.ZodLiteral<EntityType.GenericReference>;
464
+ entityId: z.ZodString;
465
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
466
+ }, "strip", z.ZodTypeAny, {
467
+ id: string;
468
+ type: EntityType.GenericReference;
469
+ entityType: EntityType.VariableDeclaration;
470
+ entityId: string;
471
+ }, {
472
+ id: string;
473
+ type: EntityType.GenericReference;
474
+ entityType: EntityType.VariableDeclaration;
475
+ entityId: string;
476
+ }>, z.ZodObject<{
477
+ id: z.ZodString;
478
+ type: z.ZodLiteral<EntityType.GenericReference>;
479
+ entityId: z.ZodString;
480
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
481
+ }, "strip", z.ZodTypeAny, {
482
+ id: string;
483
+ type: EntityType.GenericReference;
484
+ entityType: EntityType.VariableInstance;
485
+ entityId: string;
486
+ }, {
487
+ id: string;
488
+ type: EntityType.GenericReference;
489
+ entityType: EntityType.VariableInstance;
490
+ entityId: string;
491
+ }>]>, z.ZodObject<{
492
+ id: z.ZodString;
493
+ type: z.ZodLiteral<EntityType.GenericReference>;
494
+ entityId: z.ZodString;
495
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
496
+ }, "strip", z.ZodTypeAny, {
497
+ id: string;
498
+ type: EntityType.GenericReference;
499
+ entityType: EntityType.InternalCall;
500
+ entityId: string;
501
+ }, {
502
+ id: string;
503
+ type: EntityType.GenericReference;
504
+ entityType: EntityType.InternalCall;
505
+ entityId: string;
506
+ }>, z.ZodObject<{
507
+ id: z.ZodString;
508
+ type: z.ZodLiteral<EntityType.GenericReference>;
509
+ entityId: z.ZodString;
510
+ entityType: z.ZodLiteral<EntityType.Loop>;
511
+ }, "strip", z.ZodTypeAny, {
512
+ id: string;
513
+ type: EntityType.GenericReference;
514
+ entityType: EntityType.Loop;
515
+ entityId: string;
516
+ }, {
517
+ id: string;
518
+ type: EntityType.GenericReference;
519
+ entityType: EntityType.Loop;
520
+ entityId: string;
521
+ }>]>, "many">;
522
+ calledByError: z.ZodArray<z.ZodUnion<[z.ZodObject<{
523
+ id: z.ZodString;
524
+ type: z.ZodLiteral<EntityType.GenericReference>;
525
+ entityId: z.ZodString;
526
+ entityType: z.ZodLiteral<EntityType.Operation>;
527
+ }, "strip", z.ZodTypeAny, {
528
+ id: string;
529
+ type: EntityType.GenericReference;
530
+ entityType: EntityType.Operation;
531
+ entityId: string;
532
+ }, {
533
+ id: string;
534
+ type: EntityType.GenericReference;
535
+ entityType: EntityType.Operation;
536
+ entityId: string;
537
+ }>, z.ZodObject<{
538
+ id: z.ZodString;
539
+ type: z.ZodLiteral<EntityType.GenericReference>;
540
+ entityId: z.ZodString;
541
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
542
+ }, "strip", z.ZodTypeAny, {
543
+ id: string;
544
+ type: EntityType.GenericReference;
545
+ entityType: EntityType.FunctionCall;
546
+ entityId: string;
547
+ }, {
548
+ id: string;
549
+ type: EntityType.GenericReference;
550
+ entityType: EntityType.FunctionCall;
551
+ entityId: string;
552
+ }>, z.ZodObject<{
553
+ id: z.ZodString;
554
+ type: z.ZodLiteral<EntityType.GenericReference>;
555
+ entityId: z.ZodString;
556
+ entityType: z.ZodLiteral<EntityType.Condition>;
557
+ }, "strip", z.ZodTypeAny, {
558
+ id: string;
559
+ type: EntityType.GenericReference;
560
+ entityType: EntityType.Condition;
561
+ entityId: string;
562
+ }, {
563
+ id: string;
564
+ type: EntityType.GenericReference;
565
+ entityType: EntityType.Condition;
566
+ entityId: string;
567
+ }>, z.ZodObject<{
568
+ id: z.ZodString;
569
+ type: z.ZodLiteral<EntityType.GenericReference>;
570
+ entityId: z.ZodString;
571
+ entityType: z.ZodLiteral<EntityType.Search>;
572
+ }, "strip", z.ZodTypeAny, {
573
+ id: string;
574
+ type: EntityType.GenericReference;
575
+ entityType: EntityType.Search;
576
+ entityId: string;
577
+ }, {
578
+ id: string;
579
+ type: EntityType.GenericReference;
580
+ entityType: EntityType.Search;
581
+ entityId: string;
582
+ }>, z.ZodUnion<[z.ZodObject<{
583
+ id: z.ZodString;
584
+ type: z.ZodLiteral<EntityType.GenericReference>;
585
+ entityId: z.ZodString;
586
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
587
+ }, "strip", z.ZodTypeAny, {
588
+ id: string;
589
+ type: EntityType.GenericReference;
590
+ entityType: EntityType.VariableDeclaration;
591
+ entityId: string;
592
+ }, {
593
+ id: string;
594
+ type: EntityType.GenericReference;
595
+ entityType: EntityType.VariableDeclaration;
596
+ entityId: string;
597
+ }>, z.ZodObject<{
598
+ id: z.ZodString;
599
+ type: z.ZodLiteral<EntityType.GenericReference>;
600
+ entityId: z.ZodString;
601
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
602
+ }, "strip", z.ZodTypeAny, {
603
+ id: string;
604
+ type: EntityType.GenericReference;
605
+ entityType: EntityType.VariableInstance;
606
+ entityId: string;
607
+ }, {
608
+ id: string;
609
+ type: EntityType.GenericReference;
610
+ entityType: EntityType.VariableInstance;
611
+ entityId: string;
612
+ }>]>, z.ZodObject<{
613
+ id: z.ZodString;
614
+ type: z.ZodLiteral<EntityType.GenericReference>;
615
+ entityId: z.ZodString;
616
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
617
+ }, "strip", z.ZodTypeAny, {
618
+ id: string;
619
+ type: EntityType.GenericReference;
620
+ entityType: EntityType.InternalCall;
621
+ entityId: string;
622
+ }, {
623
+ id: string;
624
+ type: EntityType.GenericReference;
625
+ entityType: EntityType.InternalCall;
626
+ entityId: string;
627
+ }>, z.ZodObject<{
628
+ id: z.ZodString;
629
+ type: z.ZodLiteral<EntityType.GenericReference>;
630
+ entityId: z.ZodString;
631
+ entityType: z.ZodLiteral<EntityType.Loop>;
632
+ }, "strip", z.ZodTypeAny, {
633
+ id: string;
634
+ type: EntityType.GenericReference;
635
+ entityType: EntityType.Loop;
636
+ entityId: string;
637
+ }, {
638
+ id: string;
639
+ type: EntityType.GenericReference;
640
+ entityType: EntityType.Loop;
641
+ entityId: string;
642
+ }>]>, "many">;
643
+ calledByEntry: z.ZodArray<z.ZodUnion<[z.ZodObject<{
644
+ id: z.ZodString;
645
+ type: z.ZodLiteral<EntityType.GenericReference>;
646
+ entityId: z.ZodString;
647
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
648
+ }, "strip", z.ZodTypeAny, {
649
+ id: string;
650
+ type: EntityType.GenericReference;
651
+ entityType: EntityType.FunctionDeclaration;
652
+ entityId: string;
653
+ }, {
654
+ id: string;
655
+ type: EntityType.GenericReference;
656
+ entityType: EntityType.FunctionDeclaration;
657
+ entityId: string;
658
+ }>, z.ZodObject<{
659
+ id: z.ZodString;
660
+ type: z.ZodLiteral<EntityType.GenericReference>;
661
+ entityId: z.ZodString;
662
+ entityType: z.ZodLiteral<EntityType.GlobalEvent>;
663
+ }, "strip", z.ZodTypeAny, {
664
+ id: string;
665
+ type: EntityType.GenericReference;
666
+ entityType: EntityType.GlobalEvent;
667
+ entityId: string;
668
+ }, {
669
+ id: string;
670
+ type: EntityType.GenericReference;
671
+ entityType: EntityType.GlobalEvent;
672
+ entityId: string;
673
+ }>]>, "many">;
674
+ leftValue: z.ZodUnion<[z.ZodObject<{
675
+ type: z.ZodLiteral<EntityType.InputMap>;
676
+ }, "strip", z.ZodTypeAny, {
677
+ type: EntityType.InputMap;
678
+ }, {
679
+ type: EntityType.InputMap;
680
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
681
+ rightValue: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
682
+ type: z.ZodLiteral<EntityType.InputMap>;
683
+ }, "strip", z.ZodTypeAny, {
684
+ type: EntityType.InputMap;
685
+ }, {
686
+ type: EntityType.InputMap;
687
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
688
+ operator: z.ZodEnum<[ComparisonOperatorTypes.Equal, ComparisonOperatorTypes.NotEqual, ComparisonOperatorTypes.MoreThan, ComparisonOperatorTypes.MoreThanOrEqual, ComparisonOperatorTypes.LessThan, ComparisonOperatorTypes.LessThanOrEqual, ComparisonOperatorTypes.And, ComparisonOperatorTypes.Or, StandaloneOperatorTypes.Empty, StandaloneOperatorTypes.NotEmpty]>;
689
+ parent: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
690
+ id: z.ZodString;
691
+ type: z.ZodLiteral<EntityType.GenericReference>;
692
+ entityId: z.ZodString;
693
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
694
+ }, "strip", z.ZodTypeAny, {
695
+ id: string;
696
+ type: EntityType.GenericReference;
697
+ entityType: EntityType.FunctionDeclaration;
698
+ entityId: string;
699
+ }, {
700
+ id: string;
701
+ type: EntityType.GenericReference;
702
+ entityType: EntityType.FunctionDeclaration;
703
+ entityId: string;
704
+ }>, z.ZodObject<{
705
+ id: z.ZodString;
706
+ type: z.ZodLiteral<EntityType.GenericReference>;
707
+ entityId: z.ZodString;
708
+ entityType: z.ZodLiteral<EntityType.GlobalEvent>;
709
+ }, "strip", z.ZodTypeAny, {
710
+ id: string;
711
+ type: EntityType.GenericReference;
712
+ entityType: EntityType.GlobalEvent;
713
+ entityId: string;
714
+ }, {
715
+ id: string;
716
+ type: EntityType.GenericReference;
717
+ entityType: EntityType.GlobalEvent;
718
+ entityId: string;
719
+ }>]>, z.ZodObject<{
720
+ id: z.ZodString;
721
+ type: z.ZodLiteral<EntityType.GenericReference>;
722
+ entityId: z.ZodString;
723
+ entityType: z.ZodLiteral<EntityType.Loop>;
724
+ }, "strip", z.ZodTypeAny, {
725
+ id: string;
726
+ type: EntityType.GenericReference;
727
+ entityType: EntityType.Loop;
728
+ entityId: string;
729
+ }, {
730
+ id: string;
731
+ type: EntityType.GenericReference;
732
+ entityType: EntityType.Loop;
733
+ entityId: string;
734
+ }>]>, z.ZodObject<{
735
+ entityType: z.ZodLiteral<EntityType.Project>;
736
+ entityId: z.ZodString;
737
+ id: z.ZodString;
738
+ type: z.ZodLiteral<EntityType.GenericReference>;
739
+ }, "strip", z.ZodTypeAny, {
740
+ id: string;
741
+ type: EntityType.GenericReference;
742
+ entityType: EntityType.Project;
743
+ entityId: string;
744
+ }, {
745
+ id: string;
746
+ type: EntityType.GenericReference;
747
+ entityType: EntityType.Project;
748
+ entityId: string;
749
+ }>]>;
750
+ }, "strip", z.ZodTypeAny, {
751
+ calledBySuccess: ({
752
+ id: string;
753
+ type: EntityType.GenericReference;
754
+ entityType: EntityType.Loop;
755
+ entityId: string;
756
+ } | {
757
+ id: string;
758
+ type: EntityType.GenericReference;
759
+ entityType: EntityType.Operation;
760
+ entityId: string;
761
+ } | {
762
+ id: string;
763
+ type: EntityType.GenericReference;
764
+ entityType: EntityType.FunctionCall;
765
+ entityId: string;
766
+ } | {
767
+ id: string;
768
+ type: EntityType.GenericReference;
769
+ entityType: EntityType.Condition;
770
+ entityId: string;
771
+ } | {
772
+ id: string;
773
+ type: EntityType.GenericReference;
774
+ entityType: EntityType.Search;
775
+ entityId: string;
776
+ } | {
777
+ id: string;
778
+ type: EntityType.GenericReference;
779
+ entityType: EntityType.VariableDeclaration;
780
+ entityId: string;
781
+ } | {
782
+ id: string;
783
+ type: EntityType.GenericReference;
784
+ entityType: EntityType.VariableInstance;
785
+ entityId: string;
786
+ } | {
787
+ id: string;
788
+ type: EntityType.GenericReference;
789
+ entityType: EntityType.InternalCall;
790
+ entityId: string;
791
+ })[];
792
+ calledByError: ({
793
+ id: string;
794
+ type: EntityType.GenericReference;
795
+ entityType: EntityType.Loop;
796
+ entityId: string;
797
+ } | {
798
+ id: string;
799
+ type: EntityType.GenericReference;
800
+ entityType: EntityType.Operation;
801
+ entityId: string;
802
+ } | {
803
+ id: string;
804
+ type: EntityType.GenericReference;
805
+ entityType: EntityType.FunctionCall;
806
+ entityId: string;
807
+ } | {
808
+ id: string;
809
+ type: EntityType.GenericReference;
810
+ entityType: EntityType.Condition;
811
+ entityId: string;
812
+ } | {
813
+ id: string;
814
+ type: EntityType.GenericReference;
815
+ entityType: EntityType.Search;
816
+ entityId: string;
817
+ } | {
818
+ id: string;
819
+ type: EntityType.GenericReference;
820
+ entityType: EntityType.VariableDeclaration;
821
+ entityId: string;
822
+ } | {
823
+ id: string;
824
+ type: EntityType.GenericReference;
825
+ entityType: EntityType.VariableInstance;
826
+ entityId: string;
827
+ } | {
828
+ id: string;
829
+ type: EntityType.GenericReference;
830
+ entityType: EntityType.InternalCall;
831
+ entityId: string;
832
+ })[];
833
+ calledByEntry: ({
834
+ id: string;
835
+ type: EntityType.GenericReference;
836
+ entityType: EntityType.FunctionDeclaration;
837
+ entityId: string;
838
+ } | {
839
+ id: string;
840
+ type: EntityType.GenericReference;
841
+ entityType: EntityType.GlobalEvent;
842
+ entityId: string;
843
+ })[];
844
+ parent: {
845
+ id: string;
846
+ type: EntityType.GenericReference;
847
+ entityType: EntityType.Project;
848
+ entityId: string;
849
+ } | {
850
+ id: string;
851
+ type: EntityType.GenericReference;
852
+ entityType: EntityType.Loop;
853
+ entityId: string;
854
+ } | {
855
+ id: string;
856
+ type: EntityType.GenericReference;
857
+ entityType: EntityType.FunctionDeclaration;
858
+ entityId: string;
859
+ } | {
860
+ id: string;
861
+ type: EntityType.GenericReference;
862
+ entityType: EntityType.GlobalEvent;
863
+ entityId: string;
864
+ };
865
+ successCalls: ({
866
+ id: string;
867
+ type: EntityType.GenericReference;
868
+ entityType: EntityType.Loop;
869
+ entityId: string;
870
+ } | {
871
+ id: string;
872
+ type: EntityType.GenericReference;
873
+ entityType: EntityType.Operation;
874
+ entityId: string;
875
+ } | {
876
+ id: string;
877
+ type: EntityType.GenericReference;
878
+ entityType: EntityType.FunctionCall;
879
+ entityId: string;
880
+ } | {
881
+ id: string;
882
+ type: EntityType.GenericReference;
883
+ entityType: EntityType.Condition;
884
+ entityId: string;
885
+ } | {
886
+ id: string;
887
+ type: EntityType.GenericReference;
888
+ entityType: EntityType.Search;
889
+ entityId: string;
890
+ } | {
891
+ id: string;
892
+ type: EntityType.GenericReference;
893
+ entityType: EntityType.VariableDeclaration;
894
+ entityId: string;
895
+ } | {
896
+ id: string;
897
+ type: EntityType.GenericReference;
898
+ entityType: EntityType.VariableInstance;
899
+ entityId: string;
900
+ } | {
901
+ id: string;
902
+ type: EntityType.GenericReference;
903
+ entityType: EntityType.InternalCall;
904
+ entityId: string;
905
+ } | {
906
+ id: string;
907
+ type: EntityType.GenericReference;
908
+ entityType: EntityType.ReturnStatement;
909
+ entityId: string;
910
+ } | {
911
+ id: string;
912
+ type: EntityType.GenericReference;
913
+ entityType: EntityType.BreakStatement;
914
+ entityId: string;
915
+ } | {
916
+ id: string;
917
+ type: EntityType.GenericReference;
918
+ entityType: EntityType.ContinueStatement;
919
+ entityId: string;
920
+ })[];
921
+ errorCalls: ({
922
+ id: string;
923
+ type: EntityType.GenericReference;
924
+ entityType: EntityType.Loop;
925
+ entityId: string;
926
+ } | {
927
+ id: string;
928
+ type: EntityType.GenericReference;
929
+ entityType: EntityType.Operation;
930
+ entityId: string;
931
+ } | {
932
+ id: string;
933
+ type: EntityType.GenericReference;
934
+ entityType: EntityType.FunctionCall;
935
+ entityId: string;
936
+ } | {
937
+ id: string;
938
+ type: EntityType.GenericReference;
939
+ entityType: EntityType.Condition;
940
+ entityId: string;
941
+ } | {
942
+ id: string;
943
+ type: EntityType.GenericReference;
944
+ entityType: EntityType.Search;
945
+ entityId: string;
946
+ } | {
947
+ id: string;
948
+ type: EntityType.GenericReference;
949
+ entityType: EntityType.VariableDeclaration;
950
+ entityId: string;
951
+ } | {
952
+ id: string;
953
+ type: EntityType.GenericReference;
954
+ entityType: EntityType.VariableInstance;
955
+ entityId: string;
956
+ } | {
957
+ id: string;
958
+ type: EntityType.GenericReference;
959
+ entityType: EntityType.InternalCall;
960
+ entityId: string;
961
+ } | {
962
+ id: string;
963
+ type: EntityType.GenericReference;
964
+ entityType: EntityType.ReturnStatement;
965
+ entityId: string;
966
+ } | {
967
+ id: string;
968
+ type: EntityType.GenericReference;
969
+ entityType: EntityType.BreakStatement;
970
+ entityId: string;
971
+ } | {
972
+ id: string;
973
+ type: EntityType.GenericReference;
974
+ entityType: EntityType.ContinueStatement;
975
+ entityId: string;
976
+ })[];
977
+ leftValue: Record<string, any> | {
978
+ type: EntityType.InputMap;
979
+ };
980
+ rightValue: Record<string, any> | {
981
+ type: EntityType.InputMap;
982
+ } | null;
983
+ operator: ComparisonOperatorTypes | StandaloneOperatorTypes;
984
+ }, {
985
+ calledBySuccess: ({
986
+ id: string;
987
+ type: EntityType.GenericReference;
988
+ entityType: EntityType.Loop;
989
+ entityId: string;
990
+ } | {
991
+ id: string;
992
+ type: EntityType.GenericReference;
993
+ entityType: EntityType.Operation;
994
+ entityId: string;
995
+ } | {
996
+ id: string;
997
+ type: EntityType.GenericReference;
998
+ entityType: EntityType.FunctionCall;
999
+ entityId: string;
1000
+ } | {
1001
+ id: string;
1002
+ type: EntityType.GenericReference;
1003
+ entityType: EntityType.Condition;
1004
+ entityId: string;
1005
+ } | {
1006
+ id: string;
1007
+ type: EntityType.GenericReference;
1008
+ entityType: EntityType.Search;
1009
+ entityId: string;
1010
+ } | {
1011
+ id: string;
1012
+ type: EntityType.GenericReference;
1013
+ entityType: EntityType.VariableDeclaration;
1014
+ entityId: string;
1015
+ } | {
1016
+ id: string;
1017
+ type: EntityType.GenericReference;
1018
+ entityType: EntityType.VariableInstance;
1019
+ entityId: string;
1020
+ } | {
1021
+ id: string;
1022
+ type: EntityType.GenericReference;
1023
+ entityType: EntityType.InternalCall;
1024
+ entityId: string;
1025
+ })[];
1026
+ calledByError: ({
1027
+ id: string;
1028
+ type: EntityType.GenericReference;
1029
+ entityType: EntityType.Loop;
1030
+ entityId: string;
1031
+ } | {
1032
+ id: string;
1033
+ type: EntityType.GenericReference;
1034
+ entityType: EntityType.Operation;
1035
+ entityId: string;
1036
+ } | {
1037
+ id: string;
1038
+ type: EntityType.GenericReference;
1039
+ entityType: EntityType.FunctionCall;
1040
+ entityId: string;
1041
+ } | {
1042
+ id: string;
1043
+ type: EntityType.GenericReference;
1044
+ entityType: EntityType.Condition;
1045
+ entityId: string;
1046
+ } | {
1047
+ id: string;
1048
+ type: EntityType.GenericReference;
1049
+ entityType: EntityType.Search;
1050
+ entityId: string;
1051
+ } | {
1052
+ id: string;
1053
+ type: EntityType.GenericReference;
1054
+ entityType: EntityType.VariableDeclaration;
1055
+ entityId: string;
1056
+ } | {
1057
+ id: string;
1058
+ type: EntityType.GenericReference;
1059
+ entityType: EntityType.VariableInstance;
1060
+ entityId: string;
1061
+ } | {
1062
+ id: string;
1063
+ type: EntityType.GenericReference;
1064
+ entityType: EntityType.InternalCall;
1065
+ entityId: string;
1066
+ })[];
1067
+ calledByEntry: ({
1068
+ id: string;
1069
+ type: EntityType.GenericReference;
1070
+ entityType: EntityType.FunctionDeclaration;
1071
+ entityId: string;
1072
+ } | {
1073
+ id: string;
1074
+ type: EntityType.GenericReference;
1075
+ entityType: EntityType.GlobalEvent;
1076
+ entityId: string;
1077
+ })[];
1078
+ parent: {
1079
+ id: string;
1080
+ type: EntityType.GenericReference;
1081
+ entityType: EntityType.Project;
1082
+ entityId: string;
1083
+ } | {
1084
+ id: string;
1085
+ type: EntityType.GenericReference;
1086
+ entityType: EntityType.Loop;
1087
+ entityId: string;
1088
+ } | {
1089
+ id: string;
1090
+ type: EntityType.GenericReference;
1091
+ entityType: EntityType.FunctionDeclaration;
1092
+ entityId: string;
1093
+ } | {
1094
+ id: string;
1095
+ type: EntityType.GenericReference;
1096
+ entityType: EntityType.GlobalEvent;
1097
+ entityId: string;
1098
+ };
1099
+ successCalls: ({
1100
+ id: string;
1101
+ type: EntityType.GenericReference;
1102
+ entityType: EntityType.Loop;
1103
+ entityId: string;
1104
+ } | {
1105
+ id: string;
1106
+ type: EntityType.GenericReference;
1107
+ entityType: EntityType.Operation;
1108
+ entityId: string;
1109
+ } | {
1110
+ id: string;
1111
+ type: EntityType.GenericReference;
1112
+ entityType: EntityType.FunctionCall;
1113
+ entityId: string;
1114
+ } | {
1115
+ id: string;
1116
+ type: EntityType.GenericReference;
1117
+ entityType: EntityType.Condition;
1118
+ entityId: string;
1119
+ } | {
1120
+ id: string;
1121
+ type: EntityType.GenericReference;
1122
+ entityType: EntityType.Search;
1123
+ entityId: string;
1124
+ } | {
1125
+ id: string;
1126
+ type: EntityType.GenericReference;
1127
+ entityType: EntityType.VariableDeclaration;
1128
+ entityId: string;
1129
+ } | {
1130
+ id: string;
1131
+ type: EntityType.GenericReference;
1132
+ entityType: EntityType.VariableInstance;
1133
+ entityId: string;
1134
+ } | {
1135
+ id: string;
1136
+ type: EntityType.GenericReference;
1137
+ entityType: EntityType.InternalCall;
1138
+ entityId: string;
1139
+ } | {
1140
+ id: string;
1141
+ type: EntityType.GenericReference;
1142
+ entityType: EntityType.ReturnStatement;
1143
+ entityId: string;
1144
+ } | {
1145
+ id: string;
1146
+ type: EntityType.GenericReference;
1147
+ entityType: EntityType.BreakStatement;
1148
+ entityId: string;
1149
+ } | {
1150
+ id: string;
1151
+ type: EntityType.GenericReference;
1152
+ entityType: EntityType.ContinueStatement;
1153
+ entityId: string;
1154
+ })[];
1155
+ errorCalls: ({
1156
+ id: string;
1157
+ type: EntityType.GenericReference;
1158
+ entityType: EntityType.Loop;
1159
+ entityId: string;
1160
+ } | {
1161
+ id: string;
1162
+ type: EntityType.GenericReference;
1163
+ entityType: EntityType.Operation;
1164
+ entityId: string;
1165
+ } | {
1166
+ id: string;
1167
+ type: EntityType.GenericReference;
1168
+ entityType: EntityType.FunctionCall;
1169
+ entityId: string;
1170
+ } | {
1171
+ id: string;
1172
+ type: EntityType.GenericReference;
1173
+ entityType: EntityType.Condition;
1174
+ entityId: string;
1175
+ } | {
1176
+ id: string;
1177
+ type: EntityType.GenericReference;
1178
+ entityType: EntityType.Search;
1179
+ entityId: string;
1180
+ } | {
1181
+ id: string;
1182
+ type: EntityType.GenericReference;
1183
+ entityType: EntityType.VariableDeclaration;
1184
+ entityId: string;
1185
+ } | {
1186
+ id: string;
1187
+ type: EntityType.GenericReference;
1188
+ entityType: EntityType.VariableInstance;
1189
+ entityId: string;
1190
+ } | {
1191
+ id: string;
1192
+ type: EntityType.GenericReference;
1193
+ entityType: EntityType.InternalCall;
1194
+ entityId: string;
1195
+ } | {
1196
+ id: string;
1197
+ type: EntityType.GenericReference;
1198
+ entityType: EntityType.ReturnStatement;
1199
+ entityId: string;
1200
+ } | {
1201
+ id: string;
1202
+ type: EntityType.GenericReference;
1203
+ entityType: EntityType.BreakStatement;
1204
+ entityId: string;
1205
+ } | {
1206
+ id: string;
1207
+ type: EntityType.GenericReference;
1208
+ entityType: EntityType.ContinueStatement;
1209
+ entityId: string;
1210
+ })[];
1211
+ leftValue: Record<string, any> | {
1212
+ type: EntityType.InputMap;
1213
+ };
1214
+ rightValue: Record<string, any> | {
1215
+ type: EntityType.InputMap;
1216
+ } | null;
1217
+ operator: ComparisonOperatorTypes | StandaloneOperatorTypes;
1218
+ }>;
1219
+ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1220
+ id: z.ZodString;
1221
+ type: z.ZodLiteral<EntityType.Condition>;
1222
+ }, {
1223
+ version: z.ZodNumber;
1224
+ x: z.ZodNumber;
1225
+ y: z.ZodNumber;
1226
+ }>, {
1227
+ successCalls: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1228
+ id: z.ZodString;
1229
+ type: z.ZodLiteral<EntityType.GenericReference>;
1230
+ entityId: z.ZodString;
1231
+ entityType: z.ZodLiteral<EntityType.Operation>;
1232
+ }, "strip", z.ZodTypeAny, {
1233
+ id: string;
1234
+ type: EntityType.GenericReference;
1235
+ entityType: EntityType.Operation;
1236
+ entityId: string;
1237
+ }, {
1238
+ id: string;
1239
+ type: EntityType.GenericReference;
1240
+ entityType: EntityType.Operation;
1241
+ entityId: string;
1242
+ }>, z.ZodObject<{
1243
+ id: z.ZodString;
1244
+ type: z.ZodLiteral<EntityType.GenericReference>;
1245
+ entityId: z.ZodString;
1246
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
1247
+ }, "strip", z.ZodTypeAny, {
1248
+ id: string;
1249
+ type: EntityType.GenericReference;
1250
+ entityType: EntityType.FunctionCall;
1251
+ entityId: string;
1252
+ }, {
1253
+ id: string;
1254
+ type: EntityType.GenericReference;
1255
+ entityType: EntityType.FunctionCall;
1256
+ entityId: string;
1257
+ }>, z.ZodObject<{
1258
+ id: z.ZodString;
1259
+ type: z.ZodLiteral<EntityType.GenericReference>;
1260
+ entityId: z.ZodString;
1261
+ entityType: z.ZodLiteral<EntityType.Condition>;
1262
+ }, "strip", z.ZodTypeAny, {
1263
+ id: string;
1264
+ type: EntityType.GenericReference;
1265
+ entityType: EntityType.Condition;
1266
+ entityId: string;
1267
+ }, {
1268
+ id: string;
1269
+ type: EntityType.GenericReference;
1270
+ entityType: EntityType.Condition;
1271
+ entityId: string;
1272
+ }>, z.ZodObject<{
1273
+ id: z.ZodString;
1274
+ type: z.ZodLiteral<EntityType.GenericReference>;
1275
+ entityId: z.ZodString;
1276
+ entityType: z.ZodLiteral<EntityType.Search>;
1277
+ }, "strip", z.ZodTypeAny, {
1278
+ id: string;
1279
+ type: EntityType.GenericReference;
1280
+ entityType: EntityType.Search;
1281
+ entityId: string;
1282
+ }, {
1283
+ id: string;
1284
+ type: EntityType.GenericReference;
1285
+ entityType: EntityType.Search;
1286
+ entityId: string;
1287
+ }>, z.ZodUnion<[z.ZodObject<{
1288
+ id: z.ZodString;
1289
+ type: z.ZodLiteral<EntityType.GenericReference>;
1290
+ entityId: z.ZodString;
1291
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
1292
+ }, "strip", z.ZodTypeAny, {
1293
+ id: string;
1294
+ type: EntityType.GenericReference;
1295
+ entityType: EntityType.VariableDeclaration;
1296
+ entityId: string;
1297
+ }, {
1298
+ id: string;
1299
+ type: EntityType.GenericReference;
1300
+ entityType: EntityType.VariableDeclaration;
1301
+ entityId: string;
1302
+ }>, z.ZodObject<{
1303
+ id: z.ZodString;
1304
+ type: z.ZodLiteral<EntityType.GenericReference>;
1305
+ entityId: z.ZodString;
1306
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
1307
+ }, "strip", z.ZodTypeAny, {
1308
+ id: string;
1309
+ type: EntityType.GenericReference;
1310
+ entityType: EntityType.VariableInstance;
1311
+ entityId: string;
1312
+ }, {
1313
+ id: string;
1314
+ type: EntityType.GenericReference;
1315
+ entityType: EntityType.VariableInstance;
1316
+ entityId: string;
1317
+ }>]>, z.ZodObject<{
1318
+ id: z.ZodString;
1319
+ type: z.ZodLiteral<EntityType.GenericReference>;
1320
+ entityId: z.ZodString;
1321
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
1322
+ }, "strip", z.ZodTypeAny, {
1323
+ id: string;
1324
+ type: EntityType.GenericReference;
1325
+ entityType: EntityType.InternalCall;
1326
+ entityId: string;
1327
+ }, {
1328
+ id: string;
1329
+ type: EntityType.GenericReference;
1330
+ entityType: EntityType.InternalCall;
1331
+ entityId: string;
1332
+ }>, z.ZodObject<{
1333
+ id: z.ZodString;
1334
+ type: z.ZodLiteral<EntityType.GenericReference>;
1335
+ entityId: z.ZodString;
1336
+ entityType: z.ZodLiteral<EntityType.Loop>;
1337
+ }, "strip", z.ZodTypeAny, {
1338
+ id: string;
1339
+ type: EntityType.GenericReference;
1340
+ entityType: EntityType.Loop;
1341
+ entityId: string;
1342
+ }, {
1343
+ id: string;
1344
+ type: EntityType.GenericReference;
1345
+ entityType: EntityType.Loop;
1346
+ entityId: string;
1347
+ }>]>, z.ZodObject<{
1348
+ id: z.ZodString;
1349
+ type: z.ZodLiteral<EntityType.GenericReference>;
1350
+ entityId: z.ZodString;
1351
+ entityType: z.ZodLiteral<EntityType.ReturnStatement>;
1352
+ }, "strip", z.ZodTypeAny, {
1353
+ id: string;
1354
+ type: EntityType.GenericReference;
1355
+ entityType: EntityType.ReturnStatement;
1356
+ entityId: string;
1357
+ }, {
1358
+ id: string;
1359
+ type: EntityType.GenericReference;
1360
+ entityType: EntityType.ReturnStatement;
1361
+ entityId: string;
1362
+ }>, z.ZodObject<{
1363
+ id: z.ZodString;
1364
+ type: z.ZodLiteral<EntityType.GenericReference>;
1365
+ entityId: z.ZodString;
1366
+ entityType: z.ZodLiteral<EntityType.BreakStatement>;
1367
+ }, "strip", z.ZodTypeAny, {
1368
+ id: string;
1369
+ type: EntityType.GenericReference;
1370
+ entityType: EntityType.BreakStatement;
1371
+ entityId: string;
1372
+ }, {
1373
+ id: string;
1374
+ type: EntityType.GenericReference;
1375
+ entityType: EntityType.BreakStatement;
1376
+ entityId: string;
1377
+ }>, z.ZodObject<{
1378
+ id: z.ZodString;
1379
+ type: z.ZodLiteral<EntityType.GenericReference>;
1380
+ entityId: z.ZodString;
1381
+ entityType: z.ZodLiteral<EntityType.ContinueStatement>;
1382
+ }, "strip", z.ZodTypeAny, {
1383
+ id: string;
1384
+ type: EntityType.GenericReference;
1385
+ entityType: EntityType.ContinueStatement;
1386
+ entityId: string;
1387
+ }, {
1388
+ id: string;
1389
+ type: EntityType.GenericReference;
1390
+ entityType: EntityType.ContinueStatement;
1391
+ entityId: string;
1392
+ }>]>, "many">;
1393
+ errorCalls: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1394
+ id: z.ZodString;
1395
+ type: z.ZodLiteral<EntityType.GenericReference>;
1396
+ entityId: z.ZodString;
1397
+ entityType: z.ZodLiteral<EntityType.Operation>;
1398
+ }, "strip", z.ZodTypeAny, {
1399
+ id: string;
1400
+ type: EntityType.GenericReference;
1401
+ entityType: EntityType.Operation;
1402
+ entityId: string;
1403
+ }, {
1404
+ id: string;
1405
+ type: EntityType.GenericReference;
1406
+ entityType: EntityType.Operation;
1407
+ entityId: string;
1408
+ }>, z.ZodObject<{
1409
+ id: z.ZodString;
1410
+ type: z.ZodLiteral<EntityType.GenericReference>;
1411
+ entityId: z.ZodString;
1412
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
1413
+ }, "strip", z.ZodTypeAny, {
1414
+ id: string;
1415
+ type: EntityType.GenericReference;
1416
+ entityType: EntityType.FunctionCall;
1417
+ entityId: string;
1418
+ }, {
1419
+ id: string;
1420
+ type: EntityType.GenericReference;
1421
+ entityType: EntityType.FunctionCall;
1422
+ entityId: string;
1423
+ }>, z.ZodObject<{
1424
+ id: z.ZodString;
1425
+ type: z.ZodLiteral<EntityType.GenericReference>;
1426
+ entityId: z.ZodString;
1427
+ entityType: z.ZodLiteral<EntityType.Condition>;
1428
+ }, "strip", z.ZodTypeAny, {
1429
+ id: string;
1430
+ type: EntityType.GenericReference;
1431
+ entityType: EntityType.Condition;
1432
+ entityId: string;
1433
+ }, {
1434
+ id: string;
1435
+ type: EntityType.GenericReference;
1436
+ entityType: EntityType.Condition;
1437
+ entityId: string;
1438
+ }>, z.ZodObject<{
1439
+ id: z.ZodString;
1440
+ type: z.ZodLiteral<EntityType.GenericReference>;
1441
+ entityId: z.ZodString;
1442
+ entityType: z.ZodLiteral<EntityType.Search>;
1443
+ }, "strip", z.ZodTypeAny, {
1444
+ id: string;
1445
+ type: EntityType.GenericReference;
1446
+ entityType: EntityType.Search;
1447
+ entityId: string;
1448
+ }, {
1449
+ id: string;
1450
+ type: EntityType.GenericReference;
1451
+ entityType: EntityType.Search;
1452
+ entityId: string;
1453
+ }>, z.ZodUnion<[z.ZodObject<{
1454
+ id: z.ZodString;
1455
+ type: z.ZodLiteral<EntityType.GenericReference>;
1456
+ entityId: z.ZodString;
1457
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
1458
+ }, "strip", z.ZodTypeAny, {
1459
+ id: string;
1460
+ type: EntityType.GenericReference;
1461
+ entityType: EntityType.VariableDeclaration;
1462
+ entityId: string;
1463
+ }, {
1464
+ id: string;
1465
+ type: EntityType.GenericReference;
1466
+ entityType: EntityType.VariableDeclaration;
1467
+ entityId: string;
1468
+ }>, z.ZodObject<{
1469
+ id: z.ZodString;
1470
+ type: z.ZodLiteral<EntityType.GenericReference>;
1471
+ entityId: z.ZodString;
1472
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
1473
+ }, "strip", z.ZodTypeAny, {
1474
+ id: string;
1475
+ type: EntityType.GenericReference;
1476
+ entityType: EntityType.VariableInstance;
1477
+ entityId: string;
1478
+ }, {
1479
+ id: string;
1480
+ type: EntityType.GenericReference;
1481
+ entityType: EntityType.VariableInstance;
1482
+ entityId: string;
1483
+ }>]>, z.ZodObject<{
1484
+ id: z.ZodString;
1485
+ type: z.ZodLiteral<EntityType.GenericReference>;
1486
+ entityId: z.ZodString;
1487
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
1488
+ }, "strip", z.ZodTypeAny, {
1489
+ id: string;
1490
+ type: EntityType.GenericReference;
1491
+ entityType: EntityType.InternalCall;
1492
+ entityId: string;
1493
+ }, {
1494
+ id: string;
1495
+ type: EntityType.GenericReference;
1496
+ entityType: EntityType.InternalCall;
1497
+ entityId: string;
1498
+ }>, z.ZodObject<{
1499
+ id: z.ZodString;
1500
+ type: z.ZodLiteral<EntityType.GenericReference>;
1501
+ entityId: z.ZodString;
1502
+ entityType: z.ZodLiteral<EntityType.Loop>;
1503
+ }, "strip", z.ZodTypeAny, {
1504
+ id: string;
1505
+ type: EntityType.GenericReference;
1506
+ entityType: EntityType.Loop;
1507
+ entityId: string;
1508
+ }, {
1509
+ id: string;
1510
+ type: EntityType.GenericReference;
1511
+ entityType: EntityType.Loop;
1512
+ entityId: string;
1513
+ }>]>, z.ZodObject<{
1514
+ id: z.ZodString;
1515
+ type: z.ZodLiteral<EntityType.GenericReference>;
1516
+ entityId: z.ZodString;
1517
+ entityType: z.ZodLiteral<EntityType.ReturnStatement>;
1518
+ }, "strip", z.ZodTypeAny, {
1519
+ id: string;
1520
+ type: EntityType.GenericReference;
1521
+ entityType: EntityType.ReturnStatement;
1522
+ entityId: string;
1523
+ }, {
1524
+ id: string;
1525
+ type: EntityType.GenericReference;
1526
+ entityType: EntityType.ReturnStatement;
1527
+ entityId: string;
1528
+ }>, z.ZodObject<{
1529
+ id: z.ZodString;
1530
+ type: z.ZodLiteral<EntityType.GenericReference>;
1531
+ entityId: z.ZodString;
1532
+ entityType: z.ZodLiteral<EntityType.BreakStatement>;
1533
+ }, "strip", z.ZodTypeAny, {
1534
+ id: string;
1535
+ type: EntityType.GenericReference;
1536
+ entityType: EntityType.BreakStatement;
1537
+ entityId: string;
1538
+ }, {
1539
+ id: string;
1540
+ type: EntityType.GenericReference;
1541
+ entityType: EntityType.BreakStatement;
1542
+ entityId: string;
1543
+ }>, z.ZodObject<{
1544
+ id: z.ZodString;
1545
+ type: z.ZodLiteral<EntityType.GenericReference>;
1546
+ entityId: z.ZodString;
1547
+ entityType: z.ZodLiteral<EntityType.ContinueStatement>;
1548
+ }, "strip", z.ZodTypeAny, {
1549
+ id: string;
1550
+ type: EntityType.GenericReference;
1551
+ entityType: EntityType.ContinueStatement;
1552
+ entityId: string;
1553
+ }, {
1554
+ id: string;
1555
+ type: EntityType.GenericReference;
1556
+ entityType: EntityType.ContinueStatement;
1557
+ entityId: string;
1558
+ }>]>, "many">;
1559
+ calledBySuccess: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1560
+ id: z.ZodString;
1561
+ type: z.ZodLiteral<EntityType.GenericReference>;
1562
+ entityId: z.ZodString;
1563
+ entityType: z.ZodLiteral<EntityType.Operation>;
1564
+ }, "strip", z.ZodTypeAny, {
1565
+ id: string;
1566
+ type: EntityType.GenericReference;
1567
+ entityType: EntityType.Operation;
1568
+ entityId: string;
1569
+ }, {
1570
+ id: string;
1571
+ type: EntityType.GenericReference;
1572
+ entityType: EntityType.Operation;
1573
+ entityId: string;
1574
+ }>, z.ZodObject<{
1575
+ id: z.ZodString;
1576
+ type: z.ZodLiteral<EntityType.GenericReference>;
1577
+ entityId: z.ZodString;
1578
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
1579
+ }, "strip", z.ZodTypeAny, {
1580
+ id: string;
1581
+ type: EntityType.GenericReference;
1582
+ entityType: EntityType.FunctionCall;
1583
+ entityId: string;
1584
+ }, {
1585
+ id: string;
1586
+ type: EntityType.GenericReference;
1587
+ entityType: EntityType.FunctionCall;
1588
+ entityId: string;
1589
+ }>, z.ZodObject<{
1590
+ id: z.ZodString;
1591
+ type: z.ZodLiteral<EntityType.GenericReference>;
1592
+ entityId: z.ZodString;
1593
+ entityType: z.ZodLiteral<EntityType.Condition>;
1594
+ }, "strip", z.ZodTypeAny, {
1595
+ id: string;
1596
+ type: EntityType.GenericReference;
1597
+ entityType: EntityType.Condition;
1598
+ entityId: string;
1599
+ }, {
1600
+ id: string;
1601
+ type: EntityType.GenericReference;
1602
+ entityType: EntityType.Condition;
1603
+ entityId: string;
1604
+ }>, z.ZodObject<{
1605
+ id: z.ZodString;
1606
+ type: z.ZodLiteral<EntityType.GenericReference>;
1607
+ entityId: z.ZodString;
1608
+ entityType: z.ZodLiteral<EntityType.Search>;
1609
+ }, "strip", z.ZodTypeAny, {
1610
+ id: string;
1611
+ type: EntityType.GenericReference;
1612
+ entityType: EntityType.Search;
1613
+ entityId: string;
1614
+ }, {
1615
+ id: string;
1616
+ type: EntityType.GenericReference;
1617
+ entityType: EntityType.Search;
1618
+ entityId: string;
1619
+ }>, z.ZodUnion<[z.ZodObject<{
1620
+ id: z.ZodString;
1621
+ type: z.ZodLiteral<EntityType.GenericReference>;
1622
+ entityId: z.ZodString;
1623
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
1624
+ }, "strip", z.ZodTypeAny, {
1625
+ id: string;
1626
+ type: EntityType.GenericReference;
1627
+ entityType: EntityType.VariableDeclaration;
1628
+ entityId: string;
1629
+ }, {
1630
+ id: string;
1631
+ type: EntityType.GenericReference;
1632
+ entityType: EntityType.VariableDeclaration;
1633
+ entityId: string;
1634
+ }>, z.ZodObject<{
1635
+ id: z.ZodString;
1636
+ type: z.ZodLiteral<EntityType.GenericReference>;
1637
+ entityId: z.ZodString;
1638
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
1639
+ }, "strip", z.ZodTypeAny, {
1640
+ id: string;
1641
+ type: EntityType.GenericReference;
1642
+ entityType: EntityType.VariableInstance;
1643
+ entityId: string;
1644
+ }, {
1645
+ id: string;
1646
+ type: EntityType.GenericReference;
1647
+ entityType: EntityType.VariableInstance;
1648
+ entityId: string;
1649
+ }>]>, z.ZodObject<{
1650
+ id: z.ZodString;
1651
+ type: z.ZodLiteral<EntityType.GenericReference>;
1652
+ entityId: z.ZodString;
1653
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
1654
+ }, "strip", z.ZodTypeAny, {
1655
+ id: string;
1656
+ type: EntityType.GenericReference;
1657
+ entityType: EntityType.InternalCall;
1658
+ entityId: string;
1659
+ }, {
1660
+ id: string;
1661
+ type: EntityType.GenericReference;
1662
+ entityType: EntityType.InternalCall;
1663
+ entityId: string;
1664
+ }>, z.ZodObject<{
1665
+ id: z.ZodString;
1666
+ type: z.ZodLiteral<EntityType.GenericReference>;
1667
+ entityId: z.ZodString;
1668
+ entityType: z.ZodLiteral<EntityType.Loop>;
1669
+ }, "strip", z.ZodTypeAny, {
1670
+ id: string;
1671
+ type: EntityType.GenericReference;
1672
+ entityType: EntityType.Loop;
1673
+ entityId: string;
1674
+ }, {
1675
+ id: string;
1676
+ type: EntityType.GenericReference;
1677
+ entityType: EntityType.Loop;
1678
+ entityId: string;
1679
+ }>]>, "many">;
1680
+ calledByError: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1681
+ id: z.ZodString;
1682
+ type: z.ZodLiteral<EntityType.GenericReference>;
1683
+ entityId: z.ZodString;
1684
+ entityType: z.ZodLiteral<EntityType.Operation>;
1685
+ }, "strip", z.ZodTypeAny, {
1686
+ id: string;
1687
+ type: EntityType.GenericReference;
1688
+ entityType: EntityType.Operation;
1689
+ entityId: string;
1690
+ }, {
1691
+ id: string;
1692
+ type: EntityType.GenericReference;
1693
+ entityType: EntityType.Operation;
1694
+ entityId: string;
1695
+ }>, z.ZodObject<{
1696
+ id: z.ZodString;
1697
+ type: z.ZodLiteral<EntityType.GenericReference>;
1698
+ entityId: z.ZodString;
1699
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
1700
+ }, "strip", z.ZodTypeAny, {
1701
+ id: string;
1702
+ type: EntityType.GenericReference;
1703
+ entityType: EntityType.FunctionCall;
1704
+ entityId: string;
1705
+ }, {
1706
+ id: string;
1707
+ type: EntityType.GenericReference;
1708
+ entityType: EntityType.FunctionCall;
1709
+ entityId: string;
1710
+ }>, z.ZodObject<{
1711
+ id: z.ZodString;
1712
+ type: z.ZodLiteral<EntityType.GenericReference>;
1713
+ entityId: z.ZodString;
1714
+ entityType: z.ZodLiteral<EntityType.Condition>;
1715
+ }, "strip", z.ZodTypeAny, {
1716
+ id: string;
1717
+ type: EntityType.GenericReference;
1718
+ entityType: EntityType.Condition;
1719
+ entityId: string;
1720
+ }, {
1721
+ id: string;
1722
+ type: EntityType.GenericReference;
1723
+ entityType: EntityType.Condition;
1724
+ entityId: string;
1725
+ }>, z.ZodObject<{
1726
+ id: z.ZodString;
1727
+ type: z.ZodLiteral<EntityType.GenericReference>;
1728
+ entityId: z.ZodString;
1729
+ entityType: z.ZodLiteral<EntityType.Search>;
1730
+ }, "strip", z.ZodTypeAny, {
1731
+ id: string;
1732
+ type: EntityType.GenericReference;
1733
+ entityType: EntityType.Search;
1734
+ entityId: string;
1735
+ }, {
1736
+ id: string;
1737
+ type: EntityType.GenericReference;
1738
+ entityType: EntityType.Search;
1739
+ entityId: string;
1740
+ }>, z.ZodUnion<[z.ZodObject<{
1741
+ id: z.ZodString;
1742
+ type: z.ZodLiteral<EntityType.GenericReference>;
1743
+ entityId: z.ZodString;
1744
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
1745
+ }, "strip", z.ZodTypeAny, {
1746
+ id: string;
1747
+ type: EntityType.GenericReference;
1748
+ entityType: EntityType.VariableDeclaration;
1749
+ entityId: string;
1750
+ }, {
1751
+ id: string;
1752
+ type: EntityType.GenericReference;
1753
+ entityType: EntityType.VariableDeclaration;
1754
+ entityId: string;
1755
+ }>, z.ZodObject<{
1756
+ id: z.ZodString;
1757
+ type: z.ZodLiteral<EntityType.GenericReference>;
1758
+ entityId: z.ZodString;
1759
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
1760
+ }, "strip", z.ZodTypeAny, {
1761
+ id: string;
1762
+ type: EntityType.GenericReference;
1763
+ entityType: EntityType.VariableInstance;
1764
+ entityId: string;
1765
+ }, {
1766
+ id: string;
1767
+ type: EntityType.GenericReference;
1768
+ entityType: EntityType.VariableInstance;
1769
+ entityId: string;
1770
+ }>]>, z.ZodObject<{
1771
+ id: z.ZodString;
1772
+ type: z.ZodLiteral<EntityType.GenericReference>;
1773
+ entityId: z.ZodString;
1774
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
1775
+ }, "strip", z.ZodTypeAny, {
1776
+ id: string;
1777
+ type: EntityType.GenericReference;
1778
+ entityType: EntityType.InternalCall;
1779
+ entityId: string;
1780
+ }, {
1781
+ id: string;
1782
+ type: EntityType.GenericReference;
1783
+ entityType: EntityType.InternalCall;
1784
+ entityId: string;
1785
+ }>, z.ZodObject<{
1786
+ id: z.ZodString;
1787
+ type: z.ZodLiteral<EntityType.GenericReference>;
1788
+ entityId: z.ZodString;
1789
+ entityType: z.ZodLiteral<EntityType.Loop>;
1790
+ }, "strip", z.ZodTypeAny, {
1791
+ id: string;
1792
+ type: EntityType.GenericReference;
1793
+ entityType: EntityType.Loop;
1794
+ entityId: string;
1795
+ }, {
1796
+ id: string;
1797
+ type: EntityType.GenericReference;
1798
+ entityType: EntityType.Loop;
1799
+ entityId: string;
1800
+ }>]>, "many">;
1801
+ calledByEntry: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1802
+ id: z.ZodString;
1803
+ type: z.ZodLiteral<EntityType.GenericReference>;
1804
+ entityId: z.ZodString;
1805
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
1806
+ }, "strip", z.ZodTypeAny, {
1807
+ id: string;
1808
+ type: EntityType.GenericReference;
1809
+ entityType: EntityType.FunctionDeclaration;
1810
+ entityId: string;
1811
+ }, {
1812
+ id: string;
1813
+ type: EntityType.GenericReference;
1814
+ entityType: EntityType.FunctionDeclaration;
1815
+ entityId: string;
1816
+ }>, z.ZodObject<{
1817
+ id: z.ZodString;
1818
+ type: z.ZodLiteral<EntityType.GenericReference>;
1819
+ entityId: z.ZodString;
1820
+ entityType: z.ZodLiteral<EntityType.GlobalEvent>;
1821
+ }, "strip", z.ZodTypeAny, {
1822
+ id: string;
1823
+ type: EntityType.GenericReference;
1824
+ entityType: EntityType.GlobalEvent;
1825
+ entityId: string;
1826
+ }, {
1827
+ id: string;
1828
+ type: EntityType.GenericReference;
1829
+ entityType: EntityType.GlobalEvent;
1830
+ entityId: string;
1831
+ }>]>, "many">;
1832
+ leftValue: z.ZodUnion<[z.ZodObject<{
1833
+ type: z.ZodLiteral<EntityType.InputMap>;
1834
+ }, "strip", z.ZodTypeAny, {
1835
+ type: EntityType.InputMap;
1836
+ }, {
1837
+ type: EntityType.InputMap;
1838
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
1839
+ rightValue: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1840
+ type: z.ZodLiteral<EntityType.InputMap>;
1841
+ }, "strip", z.ZodTypeAny, {
1842
+ type: EntityType.InputMap;
1843
+ }, {
1844
+ type: EntityType.InputMap;
1845
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
1846
+ operator: z.ZodEnum<[ComparisonOperatorTypes.Equal, ComparisonOperatorTypes.NotEqual, ComparisonOperatorTypes.MoreThan, ComparisonOperatorTypes.MoreThanOrEqual, ComparisonOperatorTypes.LessThan, ComparisonOperatorTypes.LessThanOrEqual, ComparisonOperatorTypes.And, ComparisonOperatorTypes.Or, StandaloneOperatorTypes.Empty, StandaloneOperatorTypes.NotEmpty]>;
1847
+ parent: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1848
+ id: z.ZodString;
1849
+ type: z.ZodLiteral<EntityType.GenericReference>;
1850
+ entityId: z.ZodString;
1851
+ entityType: z.ZodLiteral<EntityType.FunctionDeclaration>;
1852
+ }, "strip", z.ZodTypeAny, {
1853
+ id: string;
1854
+ type: EntityType.GenericReference;
1855
+ entityType: EntityType.FunctionDeclaration;
1856
+ entityId: string;
1857
+ }, {
1858
+ id: string;
1859
+ type: EntityType.GenericReference;
1860
+ entityType: EntityType.FunctionDeclaration;
1861
+ entityId: string;
1862
+ }>, z.ZodObject<{
1863
+ id: z.ZodString;
1864
+ type: z.ZodLiteral<EntityType.GenericReference>;
1865
+ entityId: z.ZodString;
1866
+ entityType: z.ZodLiteral<EntityType.GlobalEvent>;
1867
+ }, "strip", z.ZodTypeAny, {
1868
+ id: string;
1869
+ type: EntityType.GenericReference;
1870
+ entityType: EntityType.GlobalEvent;
1871
+ entityId: string;
1872
+ }, {
1873
+ id: string;
1874
+ type: EntityType.GenericReference;
1875
+ entityType: EntityType.GlobalEvent;
1876
+ entityId: string;
1877
+ }>]>, z.ZodObject<{
1878
+ id: z.ZodString;
1879
+ type: z.ZodLiteral<EntityType.GenericReference>;
1880
+ entityId: z.ZodString;
1881
+ entityType: z.ZodLiteral<EntityType.Loop>;
1882
+ }, "strip", z.ZodTypeAny, {
1883
+ id: string;
1884
+ type: EntityType.GenericReference;
1885
+ entityType: EntityType.Loop;
1886
+ entityId: string;
1887
+ }, {
1888
+ id: string;
1889
+ type: EntityType.GenericReference;
1890
+ entityType: EntityType.Loop;
1891
+ entityId: string;
1892
+ }>]>, z.ZodObject<{
1893
+ entityType: z.ZodLiteral<EntityType.Project>;
1894
+ entityId: z.ZodString;
1895
+ id: z.ZodString;
1896
+ type: z.ZodLiteral<EntityType.GenericReference>;
1897
+ }, "strip", z.ZodTypeAny, {
1898
+ id: string;
1899
+ type: EntityType.GenericReference;
1900
+ entityType: EntityType.Project;
1901
+ entityId: string;
1902
+ }, {
1903
+ id: string;
1904
+ type: EntityType.GenericReference;
1905
+ entityType: EntityType.Project;
1906
+ entityId: string;
1907
+ }>]>;
1908
+ }>, "strip", z.ZodTypeAny, {
1909
+ id: string;
1910
+ type: EntityType.Condition;
1911
+ calledBySuccess: ({
1912
+ id: string;
1913
+ type: EntityType.GenericReference;
1914
+ entityType: EntityType.Loop;
1915
+ entityId: string;
1916
+ } | {
1917
+ id: string;
1918
+ type: EntityType.GenericReference;
1919
+ entityType: EntityType.Operation;
1920
+ entityId: string;
1921
+ } | {
1922
+ id: string;
1923
+ type: EntityType.GenericReference;
1924
+ entityType: EntityType.FunctionCall;
1925
+ entityId: string;
1926
+ } | {
1927
+ id: string;
1928
+ type: EntityType.GenericReference;
1929
+ entityType: EntityType.Condition;
1930
+ entityId: string;
1931
+ } | {
1932
+ id: string;
1933
+ type: EntityType.GenericReference;
1934
+ entityType: EntityType.Search;
1935
+ entityId: string;
1936
+ } | {
1937
+ id: string;
1938
+ type: EntityType.GenericReference;
1939
+ entityType: EntityType.VariableDeclaration;
1940
+ entityId: string;
1941
+ } | {
1942
+ id: string;
1943
+ type: EntityType.GenericReference;
1944
+ entityType: EntityType.VariableInstance;
1945
+ entityId: string;
1946
+ } | {
1947
+ id: string;
1948
+ type: EntityType.GenericReference;
1949
+ entityType: EntityType.InternalCall;
1950
+ entityId: string;
1951
+ })[];
1952
+ calledByError: ({
1953
+ id: string;
1954
+ type: EntityType.GenericReference;
1955
+ entityType: EntityType.Loop;
1956
+ entityId: string;
1957
+ } | {
1958
+ id: string;
1959
+ type: EntityType.GenericReference;
1960
+ entityType: EntityType.Operation;
1961
+ entityId: string;
1962
+ } | {
1963
+ id: string;
1964
+ type: EntityType.GenericReference;
1965
+ entityType: EntityType.FunctionCall;
1966
+ entityId: string;
1967
+ } | {
1968
+ id: string;
1969
+ type: EntityType.GenericReference;
1970
+ entityType: EntityType.Condition;
1971
+ entityId: string;
1972
+ } | {
1973
+ id: string;
1974
+ type: EntityType.GenericReference;
1975
+ entityType: EntityType.Search;
1976
+ entityId: string;
1977
+ } | {
1978
+ id: string;
1979
+ type: EntityType.GenericReference;
1980
+ entityType: EntityType.VariableDeclaration;
1981
+ entityId: string;
1982
+ } | {
1983
+ id: string;
1984
+ type: EntityType.GenericReference;
1985
+ entityType: EntityType.VariableInstance;
1986
+ entityId: string;
1987
+ } | {
1988
+ id: string;
1989
+ type: EntityType.GenericReference;
1990
+ entityType: EntityType.InternalCall;
1991
+ entityId: string;
1992
+ })[];
1993
+ calledByEntry: ({
1994
+ id: string;
1995
+ type: EntityType.GenericReference;
1996
+ entityType: EntityType.FunctionDeclaration;
1997
+ entityId: string;
1998
+ } | {
1999
+ id: string;
2000
+ type: EntityType.GenericReference;
2001
+ entityType: EntityType.GlobalEvent;
2002
+ entityId: string;
2003
+ })[];
2004
+ parent: {
2005
+ id: string;
2006
+ type: EntityType.GenericReference;
2007
+ entityType: EntityType.Project;
2008
+ entityId: string;
2009
+ } | {
2010
+ id: string;
2011
+ type: EntityType.GenericReference;
2012
+ entityType: EntityType.Loop;
2013
+ entityId: string;
2014
+ } | {
2015
+ id: string;
2016
+ type: EntityType.GenericReference;
2017
+ entityType: EntityType.FunctionDeclaration;
2018
+ entityId: string;
2019
+ } | {
2020
+ id: string;
2021
+ type: EntityType.GenericReference;
2022
+ entityType: EntityType.GlobalEvent;
2023
+ entityId: string;
2024
+ };
2025
+ version: number;
2026
+ x: number;
2027
+ y: number;
2028
+ successCalls: ({
2029
+ id: string;
2030
+ type: EntityType.GenericReference;
2031
+ entityType: EntityType.Loop;
2032
+ entityId: string;
2033
+ } | {
2034
+ id: string;
2035
+ type: EntityType.GenericReference;
2036
+ entityType: EntityType.Operation;
2037
+ entityId: string;
2038
+ } | {
2039
+ id: string;
2040
+ type: EntityType.GenericReference;
2041
+ entityType: EntityType.FunctionCall;
2042
+ entityId: string;
2043
+ } | {
2044
+ id: string;
2045
+ type: EntityType.GenericReference;
2046
+ entityType: EntityType.Condition;
2047
+ entityId: string;
2048
+ } | {
2049
+ id: string;
2050
+ type: EntityType.GenericReference;
2051
+ entityType: EntityType.Search;
2052
+ entityId: string;
2053
+ } | {
2054
+ id: string;
2055
+ type: EntityType.GenericReference;
2056
+ entityType: EntityType.VariableDeclaration;
2057
+ entityId: string;
2058
+ } | {
2059
+ id: string;
2060
+ type: EntityType.GenericReference;
2061
+ entityType: EntityType.VariableInstance;
2062
+ entityId: string;
2063
+ } | {
2064
+ id: string;
2065
+ type: EntityType.GenericReference;
2066
+ entityType: EntityType.InternalCall;
2067
+ entityId: string;
2068
+ } | {
2069
+ id: string;
2070
+ type: EntityType.GenericReference;
2071
+ entityType: EntityType.ReturnStatement;
2072
+ entityId: string;
2073
+ } | {
2074
+ id: string;
2075
+ type: EntityType.GenericReference;
2076
+ entityType: EntityType.BreakStatement;
2077
+ entityId: string;
2078
+ } | {
2079
+ id: string;
2080
+ type: EntityType.GenericReference;
2081
+ entityType: EntityType.ContinueStatement;
2082
+ entityId: string;
2083
+ })[];
2084
+ errorCalls: ({
2085
+ id: string;
2086
+ type: EntityType.GenericReference;
2087
+ entityType: EntityType.Loop;
2088
+ entityId: string;
2089
+ } | {
2090
+ id: string;
2091
+ type: EntityType.GenericReference;
2092
+ entityType: EntityType.Operation;
2093
+ entityId: string;
2094
+ } | {
2095
+ id: string;
2096
+ type: EntityType.GenericReference;
2097
+ entityType: EntityType.FunctionCall;
2098
+ entityId: string;
2099
+ } | {
2100
+ id: string;
2101
+ type: EntityType.GenericReference;
2102
+ entityType: EntityType.Condition;
2103
+ entityId: string;
2104
+ } | {
2105
+ id: string;
2106
+ type: EntityType.GenericReference;
2107
+ entityType: EntityType.Search;
2108
+ entityId: string;
2109
+ } | {
2110
+ id: string;
2111
+ type: EntityType.GenericReference;
2112
+ entityType: EntityType.VariableDeclaration;
2113
+ entityId: string;
2114
+ } | {
2115
+ id: string;
2116
+ type: EntityType.GenericReference;
2117
+ entityType: EntityType.VariableInstance;
2118
+ entityId: string;
2119
+ } | {
2120
+ id: string;
2121
+ type: EntityType.GenericReference;
2122
+ entityType: EntityType.InternalCall;
2123
+ entityId: string;
2124
+ } | {
2125
+ id: string;
2126
+ type: EntityType.GenericReference;
2127
+ entityType: EntityType.ReturnStatement;
2128
+ entityId: string;
2129
+ } | {
2130
+ id: string;
2131
+ type: EntityType.GenericReference;
2132
+ entityType: EntityType.BreakStatement;
2133
+ entityId: string;
2134
+ } | {
2135
+ id: string;
2136
+ type: EntityType.GenericReference;
2137
+ entityType: EntityType.ContinueStatement;
2138
+ entityId: string;
2139
+ })[];
2140
+ leftValue: Record<string, any> | {
2141
+ type: EntityType.InputMap;
2142
+ };
2143
+ rightValue: Record<string, any> | {
2144
+ type: EntityType.InputMap;
2145
+ } | null;
2146
+ operator: ComparisonOperatorTypes | StandaloneOperatorTypes;
2147
+ }, {
2148
+ id: string;
2149
+ type: EntityType.Condition;
2150
+ calledBySuccess: ({
2151
+ id: string;
2152
+ type: EntityType.GenericReference;
2153
+ entityType: EntityType.Loop;
2154
+ entityId: string;
2155
+ } | {
2156
+ id: string;
2157
+ type: EntityType.GenericReference;
2158
+ entityType: EntityType.Operation;
2159
+ entityId: string;
2160
+ } | {
2161
+ id: string;
2162
+ type: EntityType.GenericReference;
2163
+ entityType: EntityType.FunctionCall;
2164
+ entityId: string;
2165
+ } | {
2166
+ id: string;
2167
+ type: EntityType.GenericReference;
2168
+ entityType: EntityType.Condition;
2169
+ entityId: string;
2170
+ } | {
2171
+ id: string;
2172
+ type: EntityType.GenericReference;
2173
+ entityType: EntityType.Search;
2174
+ entityId: string;
2175
+ } | {
2176
+ id: string;
2177
+ type: EntityType.GenericReference;
2178
+ entityType: EntityType.VariableDeclaration;
2179
+ entityId: string;
2180
+ } | {
2181
+ id: string;
2182
+ type: EntityType.GenericReference;
2183
+ entityType: EntityType.VariableInstance;
2184
+ entityId: string;
2185
+ } | {
2186
+ id: string;
2187
+ type: EntityType.GenericReference;
2188
+ entityType: EntityType.InternalCall;
2189
+ entityId: string;
2190
+ })[];
2191
+ calledByError: ({
2192
+ id: string;
2193
+ type: EntityType.GenericReference;
2194
+ entityType: EntityType.Loop;
2195
+ entityId: string;
2196
+ } | {
2197
+ id: string;
2198
+ type: EntityType.GenericReference;
2199
+ entityType: EntityType.Operation;
2200
+ entityId: string;
2201
+ } | {
2202
+ id: string;
2203
+ type: EntityType.GenericReference;
2204
+ entityType: EntityType.FunctionCall;
2205
+ entityId: string;
2206
+ } | {
2207
+ id: string;
2208
+ type: EntityType.GenericReference;
2209
+ entityType: EntityType.Condition;
2210
+ entityId: string;
2211
+ } | {
2212
+ id: string;
2213
+ type: EntityType.GenericReference;
2214
+ entityType: EntityType.Search;
2215
+ entityId: string;
2216
+ } | {
2217
+ id: string;
2218
+ type: EntityType.GenericReference;
2219
+ entityType: EntityType.VariableDeclaration;
2220
+ entityId: string;
2221
+ } | {
2222
+ id: string;
2223
+ type: EntityType.GenericReference;
2224
+ entityType: EntityType.VariableInstance;
2225
+ entityId: string;
2226
+ } | {
2227
+ id: string;
2228
+ type: EntityType.GenericReference;
2229
+ entityType: EntityType.InternalCall;
2230
+ entityId: string;
2231
+ })[];
2232
+ calledByEntry: ({
2233
+ id: string;
2234
+ type: EntityType.GenericReference;
2235
+ entityType: EntityType.FunctionDeclaration;
2236
+ entityId: string;
2237
+ } | {
2238
+ id: string;
2239
+ type: EntityType.GenericReference;
2240
+ entityType: EntityType.GlobalEvent;
2241
+ entityId: string;
2242
+ })[];
2243
+ parent: {
2244
+ id: string;
2245
+ type: EntityType.GenericReference;
2246
+ entityType: EntityType.Project;
2247
+ entityId: string;
2248
+ } | {
2249
+ id: string;
2250
+ type: EntityType.GenericReference;
2251
+ entityType: EntityType.Loop;
2252
+ entityId: string;
2253
+ } | {
2254
+ id: string;
2255
+ type: EntityType.GenericReference;
2256
+ entityType: EntityType.FunctionDeclaration;
2257
+ entityId: string;
2258
+ } | {
2259
+ id: string;
2260
+ type: EntityType.GenericReference;
2261
+ entityType: EntityType.GlobalEvent;
2262
+ entityId: string;
2263
+ };
2264
+ version: number;
2265
+ x: number;
2266
+ y: number;
2267
+ successCalls: ({
2268
+ id: string;
2269
+ type: EntityType.GenericReference;
2270
+ entityType: EntityType.Loop;
2271
+ entityId: string;
2272
+ } | {
2273
+ id: string;
2274
+ type: EntityType.GenericReference;
2275
+ entityType: EntityType.Operation;
2276
+ entityId: string;
2277
+ } | {
2278
+ id: string;
2279
+ type: EntityType.GenericReference;
2280
+ entityType: EntityType.FunctionCall;
2281
+ entityId: string;
2282
+ } | {
2283
+ id: string;
2284
+ type: EntityType.GenericReference;
2285
+ entityType: EntityType.Condition;
2286
+ entityId: string;
2287
+ } | {
2288
+ id: string;
2289
+ type: EntityType.GenericReference;
2290
+ entityType: EntityType.Search;
2291
+ entityId: string;
2292
+ } | {
2293
+ id: string;
2294
+ type: EntityType.GenericReference;
2295
+ entityType: EntityType.VariableDeclaration;
2296
+ entityId: string;
2297
+ } | {
2298
+ id: string;
2299
+ type: EntityType.GenericReference;
2300
+ entityType: EntityType.VariableInstance;
2301
+ entityId: string;
2302
+ } | {
2303
+ id: string;
2304
+ type: EntityType.GenericReference;
2305
+ entityType: EntityType.InternalCall;
2306
+ entityId: string;
2307
+ } | {
2308
+ id: string;
2309
+ type: EntityType.GenericReference;
2310
+ entityType: EntityType.ReturnStatement;
2311
+ entityId: string;
2312
+ } | {
2313
+ id: string;
2314
+ type: EntityType.GenericReference;
2315
+ entityType: EntityType.BreakStatement;
2316
+ entityId: string;
2317
+ } | {
2318
+ id: string;
2319
+ type: EntityType.GenericReference;
2320
+ entityType: EntityType.ContinueStatement;
2321
+ entityId: string;
2322
+ })[];
2323
+ errorCalls: ({
2324
+ id: string;
2325
+ type: EntityType.GenericReference;
2326
+ entityType: EntityType.Loop;
2327
+ entityId: string;
2328
+ } | {
2329
+ id: string;
2330
+ type: EntityType.GenericReference;
2331
+ entityType: EntityType.Operation;
2332
+ entityId: string;
2333
+ } | {
2334
+ id: string;
2335
+ type: EntityType.GenericReference;
2336
+ entityType: EntityType.FunctionCall;
2337
+ entityId: string;
2338
+ } | {
2339
+ id: string;
2340
+ type: EntityType.GenericReference;
2341
+ entityType: EntityType.Condition;
2342
+ entityId: string;
2343
+ } | {
2344
+ id: string;
2345
+ type: EntityType.GenericReference;
2346
+ entityType: EntityType.Search;
2347
+ entityId: string;
2348
+ } | {
2349
+ id: string;
2350
+ type: EntityType.GenericReference;
2351
+ entityType: EntityType.VariableDeclaration;
2352
+ entityId: string;
2353
+ } | {
2354
+ id: string;
2355
+ type: EntityType.GenericReference;
2356
+ entityType: EntityType.VariableInstance;
2357
+ entityId: string;
2358
+ } | {
2359
+ id: string;
2360
+ type: EntityType.GenericReference;
2361
+ entityType: EntityType.InternalCall;
2362
+ entityId: string;
2363
+ } | {
2364
+ id: string;
2365
+ type: EntityType.GenericReference;
2366
+ entityType: EntityType.ReturnStatement;
2367
+ entityId: string;
2368
+ } | {
2369
+ id: string;
2370
+ type: EntityType.GenericReference;
2371
+ entityType: EntityType.BreakStatement;
2372
+ entityId: string;
2373
+ } | {
2374
+ id: string;
2375
+ type: EntityType.GenericReference;
2376
+ entityType: EntityType.ContinueStatement;
2377
+ entityId: string;
2378
+ })[];
2379
+ leftValue: Record<string, any> | {
2380
+ type: EntityType.InputMap;
2381
+ };
2382
+ rightValue: Record<string, any> | {
2383
+ type: EntityType.InputMap;
2384
+ } | null;
2385
+ operator: ComparisonOperatorTypes | StandaloneOperatorTypes;
2386
+ }>;