@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,1543 @@
1
+ import { EntityType } from '../../../../../../../../../../src/definitions';
2
+ import { z } from 'zod';
3
+
4
+ export declare function getOutputMapTypeSchema(): z.ZodUnion<[z.ZodObject<{
5
+ type: z.ZodLiteral<EntityType.OutputMap>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ type: EntityType.OutputMap;
8
+ }, {
9
+ type: EntityType.OutputMap;
10
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
11
+ export declare function getOutputMapReferenceSchema(): z.ZodObject<{
12
+ id: z.ZodString;
13
+ type: z.ZodLiteral<EntityType.GenericReference>;
14
+ entityId: z.ZodString;
15
+ entityType: z.ZodLiteral<EntityType.OutputMap>;
16
+ }, "strip", z.ZodTypeAny, {
17
+ id: string;
18
+ type: EntityType.GenericReference;
19
+ entityType: EntityType.OutputMap;
20
+ entityId: string;
21
+ }, {
22
+ id: string;
23
+ type: EntityType.GenericReference;
24
+ entityType: EntityType.OutputMap;
25
+ entityId: string;
26
+ }>;
27
+ export declare function getOutputMapBaseSchema(): z.ZodObject<{
28
+ id: z.ZodString;
29
+ type: z.ZodLiteral<EntityType.OutputMap>;
30
+ }, "strip", z.ZodTypeAny, {
31
+ id: string;
32
+ type: EntityType.OutputMap;
33
+ }, {
34
+ id: string;
35
+ type: EntityType.OutputMap;
36
+ }>;
37
+ export declare function getOutputMapMetaSchema(): z.ZodObject<z.objectUtil.extendShape<{
38
+ id: z.ZodString;
39
+ type: z.ZodLiteral<EntityType.OutputMap>;
40
+ }, {
41
+ version: z.ZodNumber;
42
+ index: z.ZodNumber;
43
+ }>, "strip", z.ZodTypeAny, {
44
+ id: string;
45
+ type: EntityType.OutputMap;
46
+ version: number;
47
+ index: number;
48
+ }, {
49
+ id: string;
50
+ type: EntityType.OutputMap;
51
+ version: number;
52
+ index: number;
53
+ }>;
54
+ export declare function getOutputMapGenerationTargetSchema(): z.ZodObject<z.objectUtil.extendShape<{
55
+ id: z.ZodString;
56
+ type: z.ZodLiteral<EntityType.OutputMap>;
57
+ }, {}>, "strip", z.ZodTypeAny, {
58
+ id: string;
59
+ type: EntityType.OutputMap;
60
+ }, {
61
+ id: string;
62
+ type: EntityType.OutputMap;
63
+ }>;
64
+ export declare function getOutputMapNestedEntitiesSchema(): z.ZodObject<{
65
+ writesValues: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
66
+ type: z.ZodLiteral<EntityType.VariableDeclaration>;
67
+ }, "strip", z.ZodTypeAny, {
68
+ type: EntityType.VariableDeclaration;
69
+ }, {
70
+ type: EntityType.VariableDeclaration;
71
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
72
+ type: z.ZodLiteral<EntityType.VariableInstance>;
73
+ }, "strip", z.ZodTypeAny, {
74
+ type: EntityType.VariableInstance;
75
+ }, {
76
+ type: EntityType.VariableInstance;
77
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, z.ZodUnion<[z.ZodObject<{
78
+ type: z.ZodLiteral<EntityType.InputMap>;
79
+ }, "strip", z.ZodTypeAny, {
80
+ type: EntityType.InputMap;
81
+ }, {
82
+ type: EntityType.InputMap;
83
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
84
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
85
+ }, "strip", z.ZodTypeAny, {
86
+ type: EntityType.ReturnDeclaration;
87
+ }, {
88
+ type: EntityType.ReturnDeclaration;
89
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, "many">;
90
+ declaration: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
91
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
92
+ }, "strip", z.ZodTypeAny, {
93
+ type: EntityType.ReturnDeclaration;
94
+ }, {
95
+ type: EntityType.ReturnDeclaration;
96
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
97
+ type: z.ZodLiteral<EntityType.Property>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ type: EntityType.Property;
100
+ }, {
101
+ type: EntityType.Property;
102
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>;
103
+ parent: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
104
+ id: z.ZodString;
105
+ type: z.ZodLiteral<EntityType.GenericReference>;
106
+ entityId: z.ZodString;
107
+ entityType: z.ZodLiteral<EntityType.Operation>;
108
+ }, "strip", z.ZodTypeAny, {
109
+ id: string;
110
+ type: EntityType.GenericReference;
111
+ entityType: EntityType.Operation;
112
+ entityId: string;
113
+ }, {
114
+ id: string;
115
+ type: EntityType.GenericReference;
116
+ entityType: EntityType.Operation;
117
+ entityId: string;
118
+ }>, z.ZodObject<{
119
+ id: z.ZodString;
120
+ type: z.ZodLiteral<EntityType.GenericReference>;
121
+ entityId: z.ZodString;
122
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
123
+ }, "strip", z.ZodTypeAny, {
124
+ id: string;
125
+ type: EntityType.GenericReference;
126
+ entityType: EntityType.FunctionCall;
127
+ entityId: string;
128
+ }, {
129
+ id: string;
130
+ type: EntityType.GenericReference;
131
+ entityType: EntityType.FunctionCall;
132
+ entityId: string;
133
+ }>, z.ZodObject<{
134
+ id: z.ZodString;
135
+ type: z.ZodLiteral<EntityType.GenericReference>;
136
+ entityId: z.ZodString;
137
+ entityType: z.ZodLiteral<EntityType.Condition>;
138
+ }, "strip", z.ZodTypeAny, {
139
+ id: string;
140
+ type: EntityType.GenericReference;
141
+ entityType: EntityType.Condition;
142
+ entityId: string;
143
+ }, {
144
+ id: string;
145
+ type: EntityType.GenericReference;
146
+ entityType: EntityType.Condition;
147
+ entityId: string;
148
+ }>, z.ZodObject<{
149
+ id: z.ZodString;
150
+ type: z.ZodLiteral<EntityType.GenericReference>;
151
+ entityId: z.ZodString;
152
+ entityType: z.ZodLiteral<EntityType.Search>;
153
+ }, "strip", z.ZodTypeAny, {
154
+ id: string;
155
+ type: EntityType.GenericReference;
156
+ entityType: EntityType.Search;
157
+ entityId: string;
158
+ }, {
159
+ id: string;
160
+ type: EntityType.GenericReference;
161
+ entityType: EntityType.Search;
162
+ entityId: string;
163
+ }>, z.ZodUnion<[z.ZodObject<{
164
+ id: z.ZodString;
165
+ type: z.ZodLiteral<EntityType.GenericReference>;
166
+ entityId: z.ZodString;
167
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
168
+ }, "strip", z.ZodTypeAny, {
169
+ id: string;
170
+ type: EntityType.GenericReference;
171
+ entityType: EntityType.VariableDeclaration;
172
+ entityId: string;
173
+ }, {
174
+ id: string;
175
+ type: EntityType.GenericReference;
176
+ entityType: EntityType.VariableDeclaration;
177
+ entityId: string;
178
+ }>, z.ZodObject<{
179
+ id: z.ZodString;
180
+ type: z.ZodLiteral<EntityType.GenericReference>;
181
+ entityId: z.ZodString;
182
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
183
+ }, "strip", z.ZodTypeAny, {
184
+ id: string;
185
+ type: EntityType.GenericReference;
186
+ entityType: EntityType.VariableInstance;
187
+ entityId: string;
188
+ }, {
189
+ id: string;
190
+ type: EntityType.GenericReference;
191
+ entityType: EntityType.VariableInstance;
192
+ entityId: string;
193
+ }>]>, z.ZodObject<{
194
+ id: z.ZodString;
195
+ type: z.ZodLiteral<EntityType.GenericReference>;
196
+ entityId: z.ZodString;
197
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
198
+ }, "strip", z.ZodTypeAny, {
199
+ id: string;
200
+ type: EntityType.GenericReference;
201
+ entityType: EntityType.InternalCall;
202
+ entityId: string;
203
+ }, {
204
+ id: string;
205
+ type: EntityType.GenericReference;
206
+ entityType: EntityType.InternalCall;
207
+ entityId: string;
208
+ }>, z.ZodObject<{
209
+ id: z.ZodString;
210
+ type: z.ZodLiteral<EntityType.GenericReference>;
211
+ entityId: z.ZodString;
212
+ entityType: z.ZodLiteral<EntityType.Loop>;
213
+ }, "strip", z.ZodTypeAny, {
214
+ id: string;
215
+ type: EntityType.GenericReference;
216
+ entityType: EntityType.Loop;
217
+ entityId: string;
218
+ }, {
219
+ id: string;
220
+ type: EntityType.GenericReference;
221
+ entityType: EntityType.Loop;
222
+ entityId: string;
223
+ }>]>, z.ZodObject<{
224
+ id: z.ZodString;
225
+ type: z.ZodLiteral<EntityType.GenericReference>;
226
+ entityId: z.ZodString;
227
+ entityType: z.ZodLiteral<EntityType.Loop>;
228
+ }, "strip", z.ZodTypeAny, {
229
+ id: string;
230
+ type: EntityType.GenericReference;
231
+ entityType: EntityType.Loop;
232
+ entityId: string;
233
+ }, {
234
+ id: string;
235
+ type: EntityType.GenericReference;
236
+ entityType: EntityType.Loop;
237
+ entityId: string;
238
+ }>, z.ZodObject<{
239
+ id: z.ZodString;
240
+ type: z.ZodLiteral<EntityType.GenericReference>;
241
+ entityId: z.ZodString;
242
+ entityType: z.ZodLiteral<EntityType.BreakStatement>;
243
+ }, "strip", z.ZodTypeAny, {
244
+ id: string;
245
+ type: EntityType.GenericReference;
246
+ entityType: EntityType.BreakStatement;
247
+ entityId: string;
248
+ }, {
249
+ id: string;
250
+ type: EntityType.GenericReference;
251
+ entityType: EntityType.BreakStatement;
252
+ entityId: string;
253
+ }>]>;
254
+ }, "strip", z.ZodTypeAny, {
255
+ declaration: Record<string, any> | {
256
+ type: EntityType.Property;
257
+ } | {
258
+ type: EntityType.ReturnDeclaration;
259
+ };
260
+ parent: {
261
+ id: string;
262
+ type: EntityType.GenericReference;
263
+ entityType: EntityType.Loop;
264
+ entityId: string;
265
+ } | {
266
+ id: string;
267
+ type: EntityType.GenericReference;
268
+ entityType: EntityType.Operation;
269
+ entityId: string;
270
+ } | {
271
+ id: string;
272
+ type: EntityType.GenericReference;
273
+ entityType: EntityType.FunctionCall;
274
+ entityId: string;
275
+ } | {
276
+ id: string;
277
+ type: EntityType.GenericReference;
278
+ entityType: EntityType.Condition;
279
+ entityId: string;
280
+ } | {
281
+ id: string;
282
+ type: EntityType.GenericReference;
283
+ entityType: EntityType.Search;
284
+ entityId: string;
285
+ } | {
286
+ id: string;
287
+ type: EntityType.GenericReference;
288
+ entityType: EntityType.VariableDeclaration;
289
+ entityId: string;
290
+ } | {
291
+ id: string;
292
+ type: EntityType.GenericReference;
293
+ entityType: EntityType.VariableInstance;
294
+ entityId: string;
295
+ } | {
296
+ id: string;
297
+ type: EntityType.GenericReference;
298
+ entityType: EntityType.InternalCall;
299
+ entityId: string;
300
+ } | {
301
+ id: string;
302
+ type: EntityType.GenericReference;
303
+ entityType: EntityType.BreakStatement;
304
+ entityId: string;
305
+ };
306
+ writesValues: (Record<string, any> | {
307
+ type: EntityType.InputMap;
308
+ } | {
309
+ type: EntityType.ReturnDeclaration;
310
+ } | {
311
+ type: EntityType.VariableDeclaration;
312
+ } | {
313
+ type: EntityType.VariableInstance;
314
+ })[];
315
+ }, {
316
+ declaration: Record<string, any> | {
317
+ type: EntityType.Property;
318
+ } | {
319
+ type: EntityType.ReturnDeclaration;
320
+ };
321
+ parent: {
322
+ id: string;
323
+ type: EntityType.GenericReference;
324
+ entityType: EntityType.Loop;
325
+ entityId: string;
326
+ } | {
327
+ id: string;
328
+ type: EntityType.GenericReference;
329
+ entityType: EntityType.Operation;
330
+ entityId: string;
331
+ } | {
332
+ id: string;
333
+ type: EntityType.GenericReference;
334
+ entityType: EntityType.FunctionCall;
335
+ entityId: string;
336
+ } | {
337
+ id: string;
338
+ type: EntityType.GenericReference;
339
+ entityType: EntityType.Condition;
340
+ entityId: string;
341
+ } | {
342
+ id: string;
343
+ type: EntityType.GenericReference;
344
+ entityType: EntityType.Search;
345
+ entityId: string;
346
+ } | {
347
+ id: string;
348
+ type: EntityType.GenericReference;
349
+ entityType: EntityType.VariableDeclaration;
350
+ entityId: string;
351
+ } | {
352
+ id: string;
353
+ type: EntityType.GenericReference;
354
+ entityType: EntityType.VariableInstance;
355
+ entityId: string;
356
+ } | {
357
+ id: string;
358
+ type: EntityType.GenericReference;
359
+ entityType: EntityType.InternalCall;
360
+ entityId: string;
361
+ } | {
362
+ id: string;
363
+ type: EntityType.GenericReference;
364
+ entityType: EntityType.BreakStatement;
365
+ entityId: string;
366
+ };
367
+ writesValues: (Record<string, any> | {
368
+ type: EntityType.InputMap;
369
+ } | {
370
+ type: EntityType.ReturnDeclaration;
371
+ } | {
372
+ type: EntityType.VariableDeclaration;
373
+ } | {
374
+ type: EntityType.VariableInstance;
375
+ })[];
376
+ }>;
377
+ export declare function getOutputMapSchema(): z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
378
+ id: z.ZodString;
379
+ type: z.ZodLiteral<EntityType.OutputMap>;
380
+ }, {
381
+ version: z.ZodNumber;
382
+ index: z.ZodNumber;
383
+ }>, {
384
+ writesValues: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
385
+ type: z.ZodLiteral<EntityType.VariableDeclaration>;
386
+ }, "strip", z.ZodTypeAny, {
387
+ type: EntityType.VariableDeclaration;
388
+ }, {
389
+ type: EntityType.VariableDeclaration;
390
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
391
+ type: z.ZodLiteral<EntityType.VariableInstance>;
392
+ }, "strip", z.ZodTypeAny, {
393
+ type: EntityType.VariableInstance;
394
+ }, {
395
+ type: EntityType.VariableInstance;
396
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, z.ZodUnion<[z.ZodObject<{
397
+ type: z.ZodLiteral<EntityType.InputMap>;
398
+ }, "strip", z.ZodTypeAny, {
399
+ type: EntityType.InputMap;
400
+ }, {
401
+ type: EntityType.InputMap;
402
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
403
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
404
+ }, "strip", z.ZodTypeAny, {
405
+ type: EntityType.ReturnDeclaration;
406
+ }, {
407
+ type: EntityType.ReturnDeclaration;
408
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, "many">;
409
+ declaration: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
410
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
411
+ }, "strip", z.ZodTypeAny, {
412
+ type: EntityType.ReturnDeclaration;
413
+ }, {
414
+ type: EntityType.ReturnDeclaration;
415
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
416
+ type: z.ZodLiteral<EntityType.Property>;
417
+ }, "strip", z.ZodTypeAny, {
418
+ type: EntityType.Property;
419
+ }, {
420
+ type: EntityType.Property;
421
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>;
422
+ parent: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
423
+ id: z.ZodString;
424
+ type: z.ZodLiteral<EntityType.GenericReference>;
425
+ entityId: z.ZodString;
426
+ entityType: z.ZodLiteral<EntityType.Operation>;
427
+ }, "strip", z.ZodTypeAny, {
428
+ id: string;
429
+ type: EntityType.GenericReference;
430
+ entityType: EntityType.Operation;
431
+ entityId: string;
432
+ }, {
433
+ id: string;
434
+ type: EntityType.GenericReference;
435
+ entityType: EntityType.Operation;
436
+ entityId: string;
437
+ }>, z.ZodObject<{
438
+ id: z.ZodString;
439
+ type: z.ZodLiteral<EntityType.GenericReference>;
440
+ entityId: z.ZodString;
441
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
442
+ }, "strip", z.ZodTypeAny, {
443
+ id: string;
444
+ type: EntityType.GenericReference;
445
+ entityType: EntityType.FunctionCall;
446
+ entityId: string;
447
+ }, {
448
+ id: string;
449
+ type: EntityType.GenericReference;
450
+ entityType: EntityType.FunctionCall;
451
+ entityId: string;
452
+ }>, z.ZodObject<{
453
+ id: z.ZodString;
454
+ type: z.ZodLiteral<EntityType.GenericReference>;
455
+ entityId: z.ZodString;
456
+ entityType: z.ZodLiteral<EntityType.Condition>;
457
+ }, "strip", z.ZodTypeAny, {
458
+ id: string;
459
+ type: EntityType.GenericReference;
460
+ entityType: EntityType.Condition;
461
+ entityId: string;
462
+ }, {
463
+ id: string;
464
+ type: EntityType.GenericReference;
465
+ entityType: EntityType.Condition;
466
+ entityId: string;
467
+ }>, z.ZodObject<{
468
+ id: z.ZodString;
469
+ type: z.ZodLiteral<EntityType.GenericReference>;
470
+ entityId: z.ZodString;
471
+ entityType: z.ZodLiteral<EntityType.Search>;
472
+ }, "strip", z.ZodTypeAny, {
473
+ id: string;
474
+ type: EntityType.GenericReference;
475
+ entityType: EntityType.Search;
476
+ entityId: string;
477
+ }, {
478
+ id: string;
479
+ type: EntityType.GenericReference;
480
+ entityType: EntityType.Search;
481
+ entityId: string;
482
+ }>, z.ZodUnion<[z.ZodObject<{
483
+ id: z.ZodString;
484
+ type: z.ZodLiteral<EntityType.GenericReference>;
485
+ entityId: z.ZodString;
486
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
487
+ }, "strip", z.ZodTypeAny, {
488
+ id: string;
489
+ type: EntityType.GenericReference;
490
+ entityType: EntityType.VariableDeclaration;
491
+ entityId: string;
492
+ }, {
493
+ id: string;
494
+ type: EntityType.GenericReference;
495
+ entityType: EntityType.VariableDeclaration;
496
+ entityId: string;
497
+ }>, z.ZodObject<{
498
+ id: z.ZodString;
499
+ type: z.ZodLiteral<EntityType.GenericReference>;
500
+ entityId: z.ZodString;
501
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
502
+ }, "strip", z.ZodTypeAny, {
503
+ id: string;
504
+ type: EntityType.GenericReference;
505
+ entityType: EntityType.VariableInstance;
506
+ entityId: string;
507
+ }, {
508
+ id: string;
509
+ type: EntityType.GenericReference;
510
+ entityType: EntityType.VariableInstance;
511
+ entityId: string;
512
+ }>]>, z.ZodObject<{
513
+ id: z.ZodString;
514
+ type: z.ZodLiteral<EntityType.GenericReference>;
515
+ entityId: z.ZodString;
516
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
517
+ }, "strip", z.ZodTypeAny, {
518
+ id: string;
519
+ type: EntityType.GenericReference;
520
+ entityType: EntityType.InternalCall;
521
+ entityId: string;
522
+ }, {
523
+ id: string;
524
+ type: EntityType.GenericReference;
525
+ entityType: EntityType.InternalCall;
526
+ entityId: string;
527
+ }>, z.ZodObject<{
528
+ id: z.ZodString;
529
+ type: z.ZodLiteral<EntityType.GenericReference>;
530
+ entityId: z.ZodString;
531
+ entityType: z.ZodLiteral<EntityType.Loop>;
532
+ }, "strip", z.ZodTypeAny, {
533
+ id: string;
534
+ type: EntityType.GenericReference;
535
+ entityType: EntityType.Loop;
536
+ entityId: string;
537
+ }, {
538
+ id: string;
539
+ type: EntityType.GenericReference;
540
+ entityType: EntityType.Loop;
541
+ entityId: string;
542
+ }>]>, z.ZodObject<{
543
+ id: z.ZodString;
544
+ type: z.ZodLiteral<EntityType.GenericReference>;
545
+ entityId: z.ZodString;
546
+ entityType: z.ZodLiteral<EntityType.Loop>;
547
+ }, "strip", z.ZodTypeAny, {
548
+ id: string;
549
+ type: EntityType.GenericReference;
550
+ entityType: EntityType.Loop;
551
+ entityId: string;
552
+ }, {
553
+ id: string;
554
+ type: EntityType.GenericReference;
555
+ entityType: EntityType.Loop;
556
+ entityId: string;
557
+ }>, z.ZodObject<{
558
+ id: z.ZodString;
559
+ type: z.ZodLiteral<EntityType.GenericReference>;
560
+ entityId: z.ZodString;
561
+ entityType: z.ZodLiteral<EntityType.BreakStatement>;
562
+ }, "strip", z.ZodTypeAny, {
563
+ id: string;
564
+ type: EntityType.GenericReference;
565
+ entityType: EntityType.BreakStatement;
566
+ entityId: string;
567
+ }, {
568
+ id: string;
569
+ type: EntityType.GenericReference;
570
+ entityType: EntityType.BreakStatement;
571
+ entityId: string;
572
+ }>]>;
573
+ }>, "strip", z.ZodTypeAny, {
574
+ id: string;
575
+ type: EntityType.OutputMap;
576
+ declaration: Record<string, any> | {
577
+ type: EntityType.Property;
578
+ } | {
579
+ type: EntityType.ReturnDeclaration;
580
+ };
581
+ parent: {
582
+ id: string;
583
+ type: EntityType.GenericReference;
584
+ entityType: EntityType.Loop;
585
+ entityId: string;
586
+ } | {
587
+ id: string;
588
+ type: EntityType.GenericReference;
589
+ entityType: EntityType.Operation;
590
+ entityId: string;
591
+ } | {
592
+ id: string;
593
+ type: EntityType.GenericReference;
594
+ entityType: EntityType.FunctionCall;
595
+ entityId: string;
596
+ } | {
597
+ id: string;
598
+ type: EntityType.GenericReference;
599
+ entityType: EntityType.Condition;
600
+ entityId: string;
601
+ } | {
602
+ id: string;
603
+ type: EntityType.GenericReference;
604
+ entityType: EntityType.Search;
605
+ entityId: string;
606
+ } | {
607
+ id: string;
608
+ type: EntityType.GenericReference;
609
+ entityType: EntityType.VariableDeclaration;
610
+ entityId: string;
611
+ } | {
612
+ id: string;
613
+ type: EntityType.GenericReference;
614
+ entityType: EntityType.VariableInstance;
615
+ entityId: string;
616
+ } | {
617
+ id: string;
618
+ type: EntityType.GenericReference;
619
+ entityType: EntityType.InternalCall;
620
+ entityId: string;
621
+ } | {
622
+ id: string;
623
+ type: EntityType.GenericReference;
624
+ entityType: EntityType.BreakStatement;
625
+ entityId: string;
626
+ };
627
+ version: number;
628
+ index: number;
629
+ writesValues: (Record<string, any> | {
630
+ type: EntityType.InputMap;
631
+ } | {
632
+ type: EntityType.ReturnDeclaration;
633
+ } | {
634
+ type: EntityType.VariableDeclaration;
635
+ } | {
636
+ type: EntityType.VariableInstance;
637
+ })[];
638
+ }, {
639
+ id: string;
640
+ type: EntityType.OutputMap;
641
+ declaration: Record<string, any> | {
642
+ type: EntityType.Property;
643
+ } | {
644
+ type: EntityType.ReturnDeclaration;
645
+ };
646
+ parent: {
647
+ id: string;
648
+ type: EntityType.GenericReference;
649
+ entityType: EntityType.Loop;
650
+ entityId: string;
651
+ } | {
652
+ id: string;
653
+ type: EntityType.GenericReference;
654
+ entityType: EntityType.Operation;
655
+ entityId: string;
656
+ } | {
657
+ id: string;
658
+ type: EntityType.GenericReference;
659
+ entityType: EntityType.FunctionCall;
660
+ entityId: string;
661
+ } | {
662
+ id: string;
663
+ type: EntityType.GenericReference;
664
+ entityType: EntityType.Condition;
665
+ entityId: string;
666
+ } | {
667
+ id: string;
668
+ type: EntityType.GenericReference;
669
+ entityType: EntityType.Search;
670
+ entityId: string;
671
+ } | {
672
+ id: string;
673
+ type: EntityType.GenericReference;
674
+ entityType: EntityType.VariableDeclaration;
675
+ entityId: string;
676
+ } | {
677
+ id: string;
678
+ type: EntityType.GenericReference;
679
+ entityType: EntityType.VariableInstance;
680
+ entityId: string;
681
+ } | {
682
+ id: string;
683
+ type: EntityType.GenericReference;
684
+ entityType: EntityType.InternalCall;
685
+ entityId: string;
686
+ } | {
687
+ id: string;
688
+ type: EntityType.GenericReference;
689
+ entityType: EntityType.BreakStatement;
690
+ entityId: string;
691
+ };
692
+ version: number;
693
+ index: number;
694
+ writesValues: (Record<string, any> | {
695
+ type: EntityType.InputMap;
696
+ } | {
697
+ type: EntityType.ReturnDeclaration;
698
+ } | {
699
+ type: EntityType.VariableDeclaration;
700
+ } | {
701
+ type: EntityType.VariableInstance;
702
+ })[];
703
+ }>;
704
+ export declare function getVariableOutputMapGenerationTargetSchema(): z.ZodObject<z.objectUtil.extendShape<{
705
+ id: z.ZodString;
706
+ type: z.ZodLiteral<EntityType.OutputMap>;
707
+ }, {}>, "strip", z.ZodTypeAny, {
708
+ id: string;
709
+ type: EntityType.OutputMap;
710
+ }, {
711
+ id: string;
712
+ type: EntityType.OutputMap;
713
+ }>;
714
+ export declare function getVariableOutputMapNestedEntitiesSchema(): z.ZodObject<{
715
+ writesValues: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
716
+ type: z.ZodLiteral<EntityType.VariableDeclaration>;
717
+ }, "strip", z.ZodTypeAny, {
718
+ type: EntityType.VariableDeclaration;
719
+ }, {
720
+ type: EntityType.VariableDeclaration;
721
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
722
+ type: z.ZodLiteral<EntityType.VariableInstance>;
723
+ }, "strip", z.ZodTypeAny, {
724
+ type: EntityType.VariableInstance;
725
+ }, {
726
+ type: EntityType.VariableInstance;
727
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, z.ZodUnion<[z.ZodObject<{
728
+ type: z.ZodLiteral<EntityType.InputMap>;
729
+ }, "strip", z.ZodTypeAny, {
730
+ type: EntityType.InputMap;
731
+ }, {
732
+ type: EntityType.InputMap;
733
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
734
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
735
+ }, "strip", z.ZodTypeAny, {
736
+ type: EntityType.ReturnDeclaration;
737
+ }, {
738
+ type: EntityType.ReturnDeclaration;
739
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, "many">;
740
+ declaration: z.ZodUnion<[z.ZodObject<{
741
+ type: z.ZodLiteral<EntityType.Property>;
742
+ }, "strip", z.ZodTypeAny, {
743
+ type: EntityType.Property;
744
+ }, {
745
+ type: EntityType.Property;
746
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
747
+ parent: z.ZodUnion<[z.ZodObject<{
748
+ id: z.ZodString;
749
+ type: z.ZodLiteral<EntityType.GenericReference>;
750
+ entityId: z.ZodString;
751
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
752
+ }, "strip", z.ZodTypeAny, {
753
+ id: string;
754
+ type: EntityType.GenericReference;
755
+ entityType: EntityType.VariableDeclaration;
756
+ entityId: string;
757
+ }, {
758
+ id: string;
759
+ type: EntityType.GenericReference;
760
+ entityType: EntityType.VariableDeclaration;
761
+ entityId: string;
762
+ }>, z.ZodObject<{
763
+ id: z.ZodString;
764
+ type: z.ZodLiteral<EntityType.GenericReference>;
765
+ entityId: z.ZodString;
766
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
767
+ }, "strip", z.ZodTypeAny, {
768
+ id: string;
769
+ type: EntityType.GenericReference;
770
+ entityType: EntityType.VariableInstance;
771
+ entityId: string;
772
+ }, {
773
+ id: string;
774
+ type: EntityType.GenericReference;
775
+ entityType: EntityType.VariableInstance;
776
+ entityId: string;
777
+ }>]>;
778
+ }, "strip", z.ZodTypeAny, {
779
+ declaration: Record<string, any> | {
780
+ type: EntityType.Property;
781
+ };
782
+ parent: {
783
+ id: string;
784
+ type: EntityType.GenericReference;
785
+ entityType: EntityType.VariableDeclaration;
786
+ entityId: string;
787
+ } | {
788
+ id: string;
789
+ type: EntityType.GenericReference;
790
+ entityType: EntityType.VariableInstance;
791
+ entityId: string;
792
+ };
793
+ writesValues: (Record<string, any> | {
794
+ type: EntityType.InputMap;
795
+ } | {
796
+ type: EntityType.ReturnDeclaration;
797
+ } | {
798
+ type: EntityType.VariableDeclaration;
799
+ } | {
800
+ type: EntityType.VariableInstance;
801
+ })[];
802
+ }, {
803
+ declaration: Record<string, any> | {
804
+ type: EntityType.Property;
805
+ };
806
+ parent: {
807
+ id: string;
808
+ type: EntityType.GenericReference;
809
+ entityType: EntityType.VariableDeclaration;
810
+ entityId: string;
811
+ } | {
812
+ id: string;
813
+ type: EntityType.GenericReference;
814
+ entityType: EntityType.VariableInstance;
815
+ entityId: string;
816
+ };
817
+ writesValues: (Record<string, any> | {
818
+ type: EntityType.InputMap;
819
+ } | {
820
+ type: EntityType.ReturnDeclaration;
821
+ } | {
822
+ type: EntityType.VariableDeclaration;
823
+ } | {
824
+ type: EntityType.VariableInstance;
825
+ })[];
826
+ }>;
827
+ export declare function getVariableOutputMapSchema(): z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
828
+ id: z.ZodString;
829
+ type: z.ZodLiteral<EntityType.OutputMap>;
830
+ }, {
831
+ version: z.ZodNumber;
832
+ index: z.ZodNumber;
833
+ }>, {
834
+ writesValues: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
835
+ type: z.ZodLiteral<EntityType.VariableDeclaration>;
836
+ }, "strip", z.ZodTypeAny, {
837
+ type: EntityType.VariableDeclaration;
838
+ }, {
839
+ type: EntityType.VariableDeclaration;
840
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
841
+ type: z.ZodLiteral<EntityType.VariableInstance>;
842
+ }, "strip", z.ZodTypeAny, {
843
+ type: EntityType.VariableInstance;
844
+ }, {
845
+ type: EntityType.VariableInstance;
846
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, z.ZodUnion<[z.ZodObject<{
847
+ type: z.ZodLiteral<EntityType.InputMap>;
848
+ }, "strip", z.ZodTypeAny, {
849
+ type: EntityType.InputMap;
850
+ }, {
851
+ type: EntityType.InputMap;
852
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
853
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ type: EntityType.ReturnDeclaration;
856
+ }, {
857
+ type: EntityType.ReturnDeclaration;
858
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, "many">;
859
+ declaration: z.ZodUnion<[z.ZodObject<{
860
+ type: z.ZodLiteral<EntityType.Property>;
861
+ }, "strip", z.ZodTypeAny, {
862
+ type: EntityType.Property;
863
+ }, {
864
+ type: EntityType.Property;
865
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
866
+ parent: z.ZodUnion<[z.ZodObject<{
867
+ id: z.ZodString;
868
+ type: z.ZodLiteral<EntityType.GenericReference>;
869
+ entityId: z.ZodString;
870
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
871
+ }, "strip", z.ZodTypeAny, {
872
+ id: string;
873
+ type: EntityType.GenericReference;
874
+ entityType: EntityType.VariableDeclaration;
875
+ entityId: string;
876
+ }, {
877
+ id: string;
878
+ type: EntityType.GenericReference;
879
+ entityType: EntityType.VariableDeclaration;
880
+ entityId: string;
881
+ }>, z.ZodObject<{
882
+ id: z.ZodString;
883
+ type: z.ZodLiteral<EntityType.GenericReference>;
884
+ entityId: z.ZodString;
885
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
886
+ }, "strip", z.ZodTypeAny, {
887
+ id: string;
888
+ type: EntityType.GenericReference;
889
+ entityType: EntityType.VariableInstance;
890
+ entityId: string;
891
+ }, {
892
+ id: string;
893
+ type: EntityType.GenericReference;
894
+ entityType: EntityType.VariableInstance;
895
+ entityId: string;
896
+ }>]>;
897
+ }>, "strip", z.ZodTypeAny, {
898
+ id: string;
899
+ type: EntityType.OutputMap;
900
+ declaration: Record<string, any> | {
901
+ type: EntityType.Property;
902
+ };
903
+ parent: {
904
+ id: string;
905
+ type: EntityType.GenericReference;
906
+ entityType: EntityType.VariableDeclaration;
907
+ entityId: string;
908
+ } | {
909
+ id: string;
910
+ type: EntityType.GenericReference;
911
+ entityType: EntityType.VariableInstance;
912
+ entityId: string;
913
+ };
914
+ version: number;
915
+ index: number;
916
+ writesValues: (Record<string, any> | {
917
+ type: EntityType.InputMap;
918
+ } | {
919
+ type: EntityType.ReturnDeclaration;
920
+ } | {
921
+ type: EntityType.VariableDeclaration;
922
+ } | {
923
+ type: EntityType.VariableInstance;
924
+ })[];
925
+ }, {
926
+ id: string;
927
+ type: EntityType.OutputMap;
928
+ declaration: Record<string, any> | {
929
+ type: EntityType.Property;
930
+ };
931
+ parent: {
932
+ id: string;
933
+ type: EntityType.GenericReference;
934
+ entityType: EntityType.VariableDeclaration;
935
+ entityId: string;
936
+ } | {
937
+ id: string;
938
+ type: EntityType.GenericReference;
939
+ entityType: EntityType.VariableInstance;
940
+ entityId: string;
941
+ };
942
+ version: number;
943
+ index: number;
944
+ writesValues: (Record<string, any> | {
945
+ type: EntityType.InputMap;
946
+ } | {
947
+ type: EntityType.ReturnDeclaration;
948
+ } | {
949
+ type: EntityType.VariableDeclaration;
950
+ } | {
951
+ type: EntityType.VariableInstance;
952
+ })[];
953
+ }>;
954
+ export declare function getActionOutputMapGenerationTargetSchema(): z.ZodObject<z.objectUtil.extendShape<{
955
+ id: z.ZodString;
956
+ type: z.ZodLiteral<EntityType.OutputMap>;
957
+ }, {}>, "strip", z.ZodTypeAny, {
958
+ id: string;
959
+ type: EntityType.OutputMap;
960
+ }, {
961
+ id: string;
962
+ type: EntityType.OutputMap;
963
+ }>;
964
+ export declare function getActionOutputMapNestedEntitiesSchema(): z.ZodObject<{
965
+ writesValues: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
966
+ type: z.ZodLiteral<EntityType.VariableDeclaration>;
967
+ }, "strip", z.ZodTypeAny, {
968
+ type: EntityType.VariableDeclaration;
969
+ }, {
970
+ type: EntityType.VariableDeclaration;
971
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
972
+ type: z.ZodLiteral<EntityType.VariableInstance>;
973
+ }, "strip", z.ZodTypeAny, {
974
+ type: EntityType.VariableInstance;
975
+ }, {
976
+ type: EntityType.VariableInstance;
977
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, z.ZodUnion<[z.ZodObject<{
978
+ type: z.ZodLiteral<EntityType.InputMap>;
979
+ }, "strip", z.ZodTypeAny, {
980
+ type: EntityType.InputMap;
981
+ }, {
982
+ type: EntityType.InputMap;
983
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
984
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
985
+ }, "strip", z.ZodTypeAny, {
986
+ type: EntityType.ReturnDeclaration;
987
+ }, {
988
+ type: EntityType.ReturnDeclaration;
989
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, "many">;
990
+ declaration: z.ZodUnion<[z.ZodObject<{
991
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
992
+ }, "strip", z.ZodTypeAny, {
993
+ type: EntityType.ReturnDeclaration;
994
+ }, {
995
+ type: EntityType.ReturnDeclaration;
996
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
997
+ parent: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
998
+ id: z.ZodString;
999
+ type: z.ZodLiteral<EntityType.GenericReference>;
1000
+ entityId: z.ZodString;
1001
+ entityType: z.ZodLiteral<EntityType.Operation>;
1002
+ }, "strip", z.ZodTypeAny, {
1003
+ id: string;
1004
+ type: EntityType.GenericReference;
1005
+ entityType: EntityType.Operation;
1006
+ entityId: string;
1007
+ }, {
1008
+ id: string;
1009
+ type: EntityType.GenericReference;
1010
+ entityType: EntityType.Operation;
1011
+ entityId: string;
1012
+ }>, z.ZodObject<{
1013
+ id: z.ZodString;
1014
+ type: z.ZodLiteral<EntityType.GenericReference>;
1015
+ entityId: z.ZodString;
1016
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
1017
+ }, "strip", z.ZodTypeAny, {
1018
+ id: string;
1019
+ type: EntityType.GenericReference;
1020
+ entityType: EntityType.FunctionCall;
1021
+ entityId: string;
1022
+ }, {
1023
+ id: string;
1024
+ type: EntityType.GenericReference;
1025
+ entityType: EntityType.FunctionCall;
1026
+ entityId: string;
1027
+ }>, z.ZodObject<{
1028
+ id: z.ZodString;
1029
+ type: z.ZodLiteral<EntityType.GenericReference>;
1030
+ entityId: z.ZodString;
1031
+ entityType: z.ZodLiteral<EntityType.Condition>;
1032
+ }, "strip", z.ZodTypeAny, {
1033
+ id: string;
1034
+ type: EntityType.GenericReference;
1035
+ entityType: EntityType.Condition;
1036
+ entityId: string;
1037
+ }, {
1038
+ id: string;
1039
+ type: EntityType.GenericReference;
1040
+ entityType: EntityType.Condition;
1041
+ entityId: string;
1042
+ }>, z.ZodObject<{
1043
+ id: z.ZodString;
1044
+ type: z.ZodLiteral<EntityType.GenericReference>;
1045
+ entityId: z.ZodString;
1046
+ entityType: z.ZodLiteral<EntityType.Search>;
1047
+ }, "strip", z.ZodTypeAny, {
1048
+ id: string;
1049
+ type: EntityType.GenericReference;
1050
+ entityType: EntityType.Search;
1051
+ entityId: string;
1052
+ }, {
1053
+ id: string;
1054
+ type: EntityType.GenericReference;
1055
+ entityType: EntityType.Search;
1056
+ entityId: string;
1057
+ }>, z.ZodUnion<[z.ZodObject<{
1058
+ id: z.ZodString;
1059
+ type: z.ZodLiteral<EntityType.GenericReference>;
1060
+ entityId: z.ZodString;
1061
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
1062
+ }, "strip", z.ZodTypeAny, {
1063
+ id: string;
1064
+ type: EntityType.GenericReference;
1065
+ entityType: EntityType.VariableDeclaration;
1066
+ entityId: string;
1067
+ }, {
1068
+ id: string;
1069
+ type: EntityType.GenericReference;
1070
+ entityType: EntityType.VariableDeclaration;
1071
+ entityId: string;
1072
+ }>, z.ZodObject<{
1073
+ id: z.ZodString;
1074
+ type: z.ZodLiteral<EntityType.GenericReference>;
1075
+ entityId: z.ZodString;
1076
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
1077
+ }, "strip", z.ZodTypeAny, {
1078
+ id: string;
1079
+ type: EntityType.GenericReference;
1080
+ entityType: EntityType.VariableInstance;
1081
+ entityId: string;
1082
+ }, {
1083
+ id: string;
1084
+ type: EntityType.GenericReference;
1085
+ entityType: EntityType.VariableInstance;
1086
+ entityId: string;
1087
+ }>]>, z.ZodObject<{
1088
+ id: z.ZodString;
1089
+ type: z.ZodLiteral<EntityType.GenericReference>;
1090
+ entityId: z.ZodString;
1091
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
1092
+ }, "strip", z.ZodTypeAny, {
1093
+ id: string;
1094
+ type: EntityType.GenericReference;
1095
+ entityType: EntityType.InternalCall;
1096
+ entityId: string;
1097
+ }, {
1098
+ id: string;
1099
+ type: EntityType.GenericReference;
1100
+ entityType: EntityType.InternalCall;
1101
+ entityId: string;
1102
+ }>, z.ZodObject<{
1103
+ id: z.ZodString;
1104
+ type: z.ZodLiteral<EntityType.GenericReference>;
1105
+ entityId: z.ZodString;
1106
+ entityType: z.ZodLiteral<EntityType.Loop>;
1107
+ }, "strip", z.ZodTypeAny, {
1108
+ id: string;
1109
+ type: EntityType.GenericReference;
1110
+ entityType: EntityType.Loop;
1111
+ entityId: string;
1112
+ }, {
1113
+ id: string;
1114
+ type: EntityType.GenericReference;
1115
+ entityType: EntityType.Loop;
1116
+ entityId: string;
1117
+ }>]>, z.ZodUnion<[z.ZodObject<{
1118
+ type: z.ZodLiteral<EntityType.Loop>;
1119
+ }, "strip", z.ZodTypeAny, {
1120
+ type: EntityType.Loop;
1121
+ }, {
1122
+ type: EntityType.Loop;
1123
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
1124
+ type: z.ZodLiteral<EntityType.BreakStatement>;
1125
+ }, "strip", z.ZodTypeAny, {
1126
+ type: EntityType.BreakStatement;
1127
+ }, {
1128
+ type: EntityType.BreakStatement;
1129
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>;
1130
+ }, "strip", z.ZodTypeAny, {
1131
+ declaration: Record<string, any> | {
1132
+ type: EntityType.ReturnDeclaration;
1133
+ };
1134
+ parent: Record<string, any> | {
1135
+ type: EntityType.Loop;
1136
+ } | {
1137
+ id: string;
1138
+ type: EntityType.GenericReference;
1139
+ entityType: EntityType.Loop;
1140
+ entityId: string;
1141
+ } | {
1142
+ id: string;
1143
+ type: EntityType.GenericReference;
1144
+ entityType: EntityType.Operation;
1145
+ entityId: string;
1146
+ } | {
1147
+ id: string;
1148
+ type: EntityType.GenericReference;
1149
+ entityType: EntityType.FunctionCall;
1150
+ entityId: string;
1151
+ } | {
1152
+ id: string;
1153
+ type: EntityType.GenericReference;
1154
+ entityType: EntityType.Condition;
1155
+ entityId: string;
1156
+ } | {
1157
+ id: string;
1158
+ type: EntityType.GenericReference;
1159
+ entityType: EntityType.Search;
1160
+ entityId: string;
1161
+ } | {
1162
+ id: string;
1163
+ type: EntityType.GenericReference;
1164
+ entityType: EntityType.VariableDeclaration;
1165
+ entityId: string;
1166
+ } | {
1167
+ id: string;
1168
+ type: EntityType.GenericReference;
1169
+ entityType: EntityType.VariableInstance;
1170
+ entityId: string;
1171
+ } | {
1172
+ id: string;
1173
+ type: EntityType.GenericReference;
1174
+ entityType: EntityType.InternalCall;
1175
+ entityId: string;
1176
+ } | {
1177
+ type: EntityType.BreakStatement;
1178
+ };
1179
+ writesValues: (Record<string, any> | {
1180
+ type: EntityType.InputMap;
1181
+ } | {
1182
+ type: EntityType.ReturnDeclaration;
1183
+ } | {
1184
+ type: EntityType.VariableDeclaration;
1185
+ } | {
1186
+ type: EntityType.VariableInstance;
1187
+ })[];
1188
+ }, {
1189
+ declaration: Record<string, any> | {
1190
+ type: EntityType.ReturnDeclaration;
1191
+ };
1192
+ parent: Record<string, any> | {
1193
+ type: EntityType.Loop;
1194
+ } | {
1195
+ id: string;
1196
+ type: EntityType.GenericReference;
1197
+ entityType: EntityType.Loop;
1198
+ entityId: string;
1199
+ } | {
1200
+ id: string;
1201
+ type: EntityType.GenericReference;
1202
+ entityType: EntityType.Operation;
1203
+ entityId: string;
1204
+ } | {
1205
+ id: string;
1206
+ type: EntityType.GenericReference;
1207
+ entityType: EntityType.FunctionCall;
1208
+ entityId: string;
1209
+ } | {
1210
+ id: string;
1211
+ type: EntityType.GenericReference;
1212
+ entityType: EntityType.Condition;
1213
+ entityId: string;
1214
+ } | {
1215
+ id: string;
1216
+ type: EntityType.GenericReference;
1217
+ entityType: EntityType.Search;
1218
+ entityId: string;
1219
+ } | {
1220
+ id: string;
1221
+ type: EntityType.GenericReference;
1222
+ entityType: EntityType.VariableDeclaration;
1223
+ entityId: string;
1224
+ } | {
1225
+ id: string;
1226
+ type: EntityType.GenericReference;
1227
+ entityType: EntityType.VariableInstance;
1228
+ entityId: string;
1229
+ } | {
1230
+ id: string;
1231
+ type: EntityType.GenericReference;
1232
+ entityType: EntityType.InternalCall;
1233
+ entityId: string;
1234
+ } | {
1235
+ type: EntityType.BreakStatement;
1236
+ };
1237
+ writesValues: (Record<string, any> | {
1238
+ type: EntityType.InputMap;
1239
+ } | {
1240
+ type: EntityType.ReturnDeclaration;
1241
+ } | {
1242
+ type: EntityType.VariableDeclaration;
1243
+ } | {
1244
+ type: EntityType.VariableInstance;
1245
+ })[];
1246
+ }>;
1247
+ export declare function getActionOutputMapSchema(): z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1248
+ id: z.ZodString;
1249
+ type: z.ZodLiteral<EntityType.OutputMap>;
1250
+ }, {
1251
+ version: z.ZodNumber;
1252
+ index: z.ZodNumber;
1253
+ }>, {
1254
+ writesValues: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1255
+ type: z.ZodLiteral<EntityType.VariableDeclaration>;
1256
+ }, "strip", z.ZodTypeAny, {
1257
+ type: EntityType.VariableDeclaration;
1258
+ }, {
1259
+ type: EntityType.VariableDeclaration;
1260
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
1261
+ type: z.ZodLiteral<EntityType.VariableInstance>;
1262
+ }, "strip", z.ZodTypeAny, {
1263
+ type: EntityType.VariableInstance;
1264
+ }, {
1265
+ type: EntityType.VariableInstance;
1266
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, z.ZodUnion<[z.ZodObject<{
1267
+ type: z.ZodLiteral<EntityType.InputMap>;
1268
+ }, "strip", z.ZodTypeAny, {
1269
+ type: EntityType.InputMap;
1270
+ }, {
1271
+ type: EntityType.InputMap;
1272
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
1273
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
1274
+ }, "strip", z.ZodTypeAny, {
1275
+ type: EntityType.ReturnDeclaration;
1276
+ }, {
1277
+ type: EntityType.ReturnDeclaration;
1278
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>, "many">;
1279
+ declaration: z.ZodUnion<[z.ZodObject<{
1280
+ type: z.ZodLiteral<EntityType.ReturnDeclaration>;
1281
+ }, "strip", z.ZodTypeAny, {
1282
+ type: EntityType.ReturnDeclaration;
1283
+ }, {
1284
+ type: EntityType.ReturnDeclaration;
1285
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>;
1286
+ parent: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1287
+ id: z.ZodString;
1288
+ type: z.ZodLiteral<EntityType.GenericReference>;
1289
+ entityId: z.ZodString;
1290
+ entityType: z.ZodLiteral<EntityType.Operation>;
1291
+ }, "strip", z.ZodTypeAny, {
1292
+ id: string;
1293
+ type: EntityType.GenericReference;
1294
+ entityType: EntityType.Operation;
1295
+ entityId: string;
1296
+ }, {
1297
+ id: string;
1298
+ type: EntityType.GenericReference;
1299
+ entityType: EntityType.Operation;
1300
+ entityId: string;
1301
+ }>, z.ZodObject<{
1302
+ id: z.ZodString;
1303
+ type: z.ZodLiteral<EntityType.GenericReference>;
1304
+ entityId: z.ZodString;
1305
+ entityType: z.ZodLiteral<EntityType.FunctionCall>;
1306
+ }, "strip", z.ZodTypeAny, {
1307
+ id: string;
1308
+ type: EntityType.GenericReference;
1309
+ entityType: EntityType.FunctionCall;
1310
+ entityId: string;
1311
+ }, {
1312
+ id: string;
1313
+ type: EntityType.GenericReference;
1314
+ entityType: EntityType.FunctionCall;
1315
+ entityId: string;
1316
+ }>, z.ZodObject<{
1317
+ id: z.ZodString;
1318
+ type: z.ZodLiteral<EntityType.GenericReference>;
1319
+ entityId: z.ZodString;
1320
+ entityType: z.ZodLiteral<EntityType.Condition>;
1321
+ }, "strip", z.ZodTypeAny, {
1322
+ id: string;
1323
+ type: EntityType.GenericReference;
1324
+ entityType: EntityType.Condition;
1325
+ entityId: string;
1326
+ }, {
1327
+ id: string;
1328
+ type: EntityType.GenericReference;
1329
+ entityType: EntityType.Condition;
1330
+ entityId: string;
1331
+ }>, z.ZodObject<{
1332
+ id: z.ZodString;
1333
+ type: z.ZodLiteral<EntityType.GenericReference>;
1334
+ entityId: z.ZodString;
1335
+ entityType: z.ZodLiteral<EntityType.Search>;
1336
+ }, "strip", z.ZodTypeAny, {
1337
+ id: string;
1338
+ type: EntityType.GenericReference;
1339
+ entityType: EntityType.Search;
1340
+ entityId: string;
1341
+ }, {
1342
+ id: string;
1343
+ type: EntityType.GenericReference;
1344
+ entityType: EntityType.Search;
1345
+ entityId: string;
1346
+ }>, z.ZodUnion<[z.ZodObject<{
1347
+ id: z.ZodString;
1348
+ type: z.ZodLiteral<EntityType.GenericReference>;
1349
+ entityId: z.ZodString;
1350
+ entityType: z.ZodLiteral<EntityType.VariableDeclaration>;
1351
+ }, "strip", z.ZodTypeAny, {
1352
+ id: string;
1353
+ type: EntityType.GenericReference;
1354
+ entityType: EntityType.VariableDeclaration;
1355
+ entityId: string;
1356
+ }, {
1357
+ id: string;
1358
+ type: EntityType.GenericReference;
1359
+ entityType: EntityType.VariableDeclaration;
1360
+ entityId: string;
1361
+ }>, z.ZodObject<{
1362
+ id: z.ZodString;
1363
+ type: z.ZodLiteral<EntityType.GenericReference>;
1364
+ entityId: z.ZodString;
1365
+ entityType: z.ZodLiteral<EntityType.VariableInstance>;
1366
+ }, "strip", z.ZodTypeAny, {
1367
+ id: string;
1368
+ type: EntityType.GenericReference;
1369
+ entityType: EntityType.VariableInstance;
1370
+ entityId: string;
1371
+ }, {
1372
+ id: string;
1373
+ type: EntityType.GenericReference;
1374
+ entityType: EntityType.VariableInstance;
1375
+ entityId: string;
1376
+ }>]>, z.ZodObject<{
1377
+ id: z.ZodString;
1378
+ type: z.ZodLiteral<EntityType.GenericReference>;
1379
+ entityId: z.ZodString;
1380
+ entityType: z.ZodLiteral<EntityType.InternalCall>;
1381
+ }, "strip", z.ZodTypeAny, {
1382
+ id: string;
1383
+ type: EntityType.GenericReference;
1384
+ entityType: EntityType.InternalCall;
1385
+ entityId: string;
1386
+ }, {
1387
+ id: string;
1388
+ type: EntityType.GenericReference;
1389
+ entityType: EntityType.InternalCall;
1390
+ entityId: string;
1391
+ }>, z.ZodObject<{
1392
+ id: z.ZodString;
1393
+ type: z.ZodLiteral<EntityType.GenericReference>;
1394
+ entityId: z.ZodString;
1395
+ entityType: z.ZodLiteral<EntityType.Loop>;
1396
+ }, "strip", z.ZodTypeAny, {
1397
+ id: string;
1398
+ type: EntityType.GenericReference;
1399
+ entityType: EntityType.Loop;
1400
+ entityId: string;
1401
+ }, {
1402
+ id: string;
1403
+ type: EntityType.GenericReference;
1404
+ entityType: EntityType.Loop;
1405
+ entityId: string;
1406
+ }>]>, z.ZodUnion<[z.ZodObject<{
1407
+ type: z.ZodLiteral<EntityType.Loop>;
1408
+ }, "strip", z.ZodTypeAny, {
1409
+ type: EntityType.Loop;
1410
+ }, {
1411
+ type: EntityType.Loop;
1412
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>, z.ZodUnion<[z.ZodObject<{
1413
+ type: z.ZodLiteral<EntityType.BreakStatement>;
1414
+ }, "strip", z.ZodTypeAny, {
1415
+ type: EntityType.BreakStatement;
1416
+ }, {
1417
+ type: EntityType.BreakStatement;
1418
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>]>]>;
1419
+ }>, "strip", z.ZodTypeAny, {
1420
+ id: string;
1421
+ type: EntityType.OutputMap;
1422
+ declaration: Record<string, any> | {
1423
+ type: EntityType.ReturnDeclaration;
1424
+ };
1425
+ parent: Record<string, any> | {
1426
+ type: EntityType.Loop;
1427
+ } | {
1428
+ id: string;
1429
+ type: EntityType.GenericReference;
1430
+ entityType: EntityType.Loop;
1431
+ entityId: string;
1432
+ } | {
1433
+ id: string;
1434
+ type: EntityType.GenericReference;
1435
+ entityType: EntityType.Operation;
1436
+ entityId: string;
1437
+ } | {
1438
+ id: string;
1439
+ type: EntityType.GenericReference;
1440
+ entityType: EntityType.FunctionCall;
1441
+ entityId: string;
1442
+ } | {
1443
+ id: string;
1444
+ type: EntityType.GenericReference;
1445
+ entityType: EntityType.Condition;
1446
+ entityId: string;
1447
+ } | {
1448
+ id: string;
1449
+ type: EntityType.GenericReference;
1450
+ entityType: EntityType.Search;
1451
+ entityId: string;
1452
+ } | {
1453
+ id: string;
1454
+ type: EntityType.GenericReference;
1455
+ entityType: EntityType.VariableDeclaration;
1456
+ entityId: string;
1457
+ } | {
1458
+ id: string;
1459
+ type: EntityType.GenericReference;
1460
+ entityType: EntityType.VariableInstance;
1461
+ entityId: string;
1462
+ } | {
1463
+ id: string;
1464
+ type: EntityType.GenericReference;
1465
+ entityType: EntityType.InternalCall;
1466
+ entityId: string;
1467
+ } | {
1468
+ type: EntityType.BreakStatement;
1469
+ };
1470
+ version: number;
1471
+ index: number;
1472
+ writesValues: (Record<string, any> | {
1473
+ type: EntityType.InputMap;
1474
+ } | {
1475
+ type: EntityType.ReturnDeclaration;
1476
+ } | {
1477
+ type: EntityType.VariableDeclaration;
1478
+ } | {
1479
+ type: EntityType.VariableInstance;
1480
+ })[];
1481
+ }, {
1482
+ id: string;
1483
+ type: EntityType.OutputMap;
1484
+ declaration: Record<string, any> | {
1485
+ type: EntityType.ReturnDeclaration;
1486
+ };
1487
+ parent: Record<string, any> | {
1488
+ type: EntityType.Loop;
1489
+ } | {
1490
+ id: string;
1491
+ type: EntityType.GenericReference;
1492
+ entityType: EntityType.Loop;
1493
+ entityId: string;
1494
+ } | {
1495
+ id: string;
1496
+ type: EntityType.GenericReference;
1497
+ entityType: EntityType.Operation;
1498
+ entityId: string;
1499
+ } | {
1500
+ id: string;
1501
+ type: EntityType.GenericReference;
1502
+ entityType: EntityType.FunctionCall;
1503
+ entityId: string;
1504
+ } | {
1505
+ id: string;
1506
+ type: EntityType.GenericReference;
1507
+ entityType: EntityType.Condition;
1508
+ entityId: string;
1509
+ } | {
1510
+ id: string;
1511
+ type: EntityType.GenericReference;
1512
+ entityType: EntityType.Search;
1513
+ entityId: string;
1514
+ } | {
1515
+ id: string;
1516
+ type: EntityType.GenericReference;
1517
+ entityType: EntityType.VariableDeclaration;
1518
+ entityId: string;
1519
+ } | {
1520
+ id: string;
1521
+ type: EntityType.GenericReference;
1522
+ entityType: EntityType.VariableInstance;
1523
+ entityId: string;
1524
+ } | {
1525
+ id: string;
1526
+ type: EntityType.GenericReference;
1527
+ entityType: EntityType.InternalCall;
1528
+ entityId: string;
1529
+ } | {
1530
+ type: EntityType.BreakStatement;
1531
+ };
1532
+ version: number;
1533
+ index: number;
1534
+ writesValues: (Record<string, any> | {
1535
+ type: EntityType.InputMap;
1536
+ } | {
1537
+ type: EntityType.ReturnDeclaration;
1538
+ } | {
1539
+ type: EntityType.VariableDeclaration;
1540
+ } | {
1541
+ type: EntityType.VariableInstance;
1542
+ })[];
1543
+ }>;