@tachybase/module-workflow 0.23.8

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 (536) hide show
  1. package/.turbo/turbo-build.log +12 -0
  2. package/README.md +9 -0
  3. package/README.zh-CN.md +9 -0
  4. package/client.d.ts +2 -0
  5. package/client.js +1 -0
  6. package/dist/client/Branch.d.ts +9 -0
  7. package/dist/client/CanvasContent.d.ts +4 -0
  8. package/dist/client/CanvasContentWrapper.d.ts +4 -0
  9. package/dist/client/ExecutionCanvas.d.ts +2 -0
  10. package/dist/client/ExecutionContextProvider.d.ts +7 -0
  11. package/dist/client/ExecutionLink.d.ts +2 -0
  12. package/dist/client/ExecutionPage.d.ts +2 -0
  13. package/dist/client/ExecutionResourceProvider.d.ts +6 -0
  14. package/dist/client/FlowContext.d.ts +3 -0
  15. package/dist/client/Plugin.d.ts +39 -0
  16. package/dist/client/WorkflowCanvas.d.ts +2 -0
  17. package/dist/client/WorkflowLink.d.ts +2 -0
  18. package/dist/client/WorkflowPage.d.ts +2 -0
  19. package/dist/client/WorkflowPane.d.ts +2 -0
  20. package/dist/client/components/AddNotifiedPerson.d.ts +3 -0
  21. package/dist/client/components/AutoResizeInput.d.ts +4 -0
  22. package/dist/client/components/CheckboxGroupWithTooltip.d.ts +7 -0
  23. package/dist/client/components/CollectionBlockInitializer.d.ts +2 -0
  24. package/dist/client/components/CollectionFieldset.d.ts +3 -0
  25. package/dist/client/components/ColumnShowCollection.d.ts +2 -0
  26. package/dist/client/components/ColumnShowTitle.d.ts +2 -0
  27. package/dist/client/components/ConfigButtonMessage.d.ts +2 -0
  28. package/dist/client/components/DetailsBlockProvider.d.ts +6 -0
  29. package/dist/client/components/DrawerDescription.d.ts +5 -0
  30. package/dist/client/components/DrawerForm.d.ts +5 -0
  31. package/dist/client/components/ExecutionStatus.d.ts +5 -0
  32. package/dist/client/components/ExecutionTime.d.ts +3 -0
  33. package/dist/client/components/FieldsSelect.d.ts +2 -0
  34. package/dist/client/components/FilterDynamicComponent.d.ts +6 -0
  35. package/dist/client/components/GoBackButton.d.ts +2 -0
  36. package/dist/client/components/OpenDrawer.d.ts +7 -0
  37. package/dist/client/components/RadioWithTooltip.d.ts +7 -0
  38. package/dist/client/components/SelectNotifiedPerson.d.ts +2 -0
  39. package/dist/client/components/ShowNodeTypesInWorkflow.d.ts +2 -0
  40. package/dist/client/components/SimpleDesigner.d.ts +2 -0
  41. package/dist/client/components/StatusButton.d.ts +2 -0
  42. package/dist/client/components/ValueBlock.d.ts +5 -0
  43. package/dist/client/components/WorkflowLink.d.ts +2 -0
  44. package/dist/client/components/index.d.ts +15 -0
  45. package/dist/client/components/renderEngineReference.d.ts +2 -0
  46. package/dist/client/constants.d.ts +37 -0
  47. package/dist/client/features/aggregate/AggregateInstruction.d.ts +217 -0
  48. package/dist/client/features/aggregate/index.d.ts +4 -0
  49. package/dist/client/features/common/constants.d.ts +3 -0
  50. package/dist/client/features/delay/DelayInstruction.d.ts +48 -0
  51. package/dist/client/features/delay/index.d.ts +4 -0
  52. package/dist/client/features/dynamic-calculation/DynamicCalculation.d.ts +76 -0
  53. package/dist/client/features/dynamic-calculation/DynamicExpression.d.ts +6 -0
  54. package/dist/client/features/dynamic-calculation/expression.d.ts +35 -0
  55. package/dist/client/features/dynamic-calculation/index.d.ts +4 -0
  56. package/dist/client/features/interceptor/WorkflowTriggerInterceptor.d.ts +100 -0
  57. package/dist/client/features/interceptor/index.d.ts +4 -0
  58. package/dist/client/features/js-parse/JSParse.instruction.d.ts +123 -0
  59. package/dist/client/features/js-parse/index.d.ts +5 -0
  60. package/dist/client/features/json-parse/JSONParse.instruction.d.ts +119 -0
  61. package/dist/client/features/json-parse/index.d.ts +5 -0
  62. package/dist/client/features/loop/LoopInstruction.d.ts +33 -0
  63. package/dist/client/features/loop/index.d.ts +4 -0
  64. package/dist/client/features/manual/WorkflowTodo.d.ts +5 -0
  65. package/dist/client/features/manual/WorkflowTodoBlockInitializer.d.ts +2 -0
  66. package/dist/client/features/manual/index.d.ts +5 -0
  67. package/dist/client/features/manual/instruction/AssigneesSelect.d.ts +6 -0
  68. package/dist/client/features/manual/instruction/FormBlockInitializer.d.ts +2 -0
  69. package/dist/client/features/manual/instruction/FormBlockProvider.d.ts +2 -0
  70. package/dist/client/features/manual/instruction/ModeConfig.d.ts +5 -0
  71. package/dist/client/features/manual/instruction/SchemaConfig.d.ts +50 -0
  72. package/dist/client/features/manual/instruction/createManualFormBlockUISchema.d.ts +57 -0
  73. package/dist/client/features/manual/instruction/forms/create.d.ts +3 -0
  74. package/dist/client/features/manual/instruction/forms/custom.d.ts +5 -0
  75. package/dist/client/features/manual/instruction/forms/update.d.ts +3 -0
  76. package/dist/client/features/manual/instruction/index.d.ts +91 -0
  77. package/dist/client/features/manual/instruction/utils.d.ts +1 -0
  78. package/dist/client/features/notice/common/flowNodes.collection.d.ts +38 -0
  79. package/dist/client/features/notice/common/notice.collection.d.ts +127 -0
  80. package/dist/client/features/notice/common/workflow.collection.d.ts +30 -0
  81. package/dist/client/features/notice/configuration/Notice.instruction.d.ts +76 -0
  82. package/dist/client/features/notice/configuration/config-items/AddNotifiedPerson.view.d.ts +2 -0
  83. package/dist/client/features/notice/configuration/config-items/ConfigButtonNotice.view.d.ts +2 -0
  84. package/dist/client/features/notice/configuration/config-items/SelectNotifiedPerson.view.d.ts +2 -0
  85. package/dist/client/features/notice/configuration/kit.d.ts +5 -0
  86. package/dist/client/features/notice/configuration/show-interface/NoticeDetail.block.d.ts +2 -0
  87. package/dist/client/features/notice/configuration/show-interface/NoticeDetail.initializer.d.ts +2 -0
  88. package/dist/client/features/notice/configuration/show-interface/NoticeDetail.schema.d.ts +6 -0
  89. package/dist/client/features/notice/configuration/show-interface/NoticeDetailContainer.schema.d.ts +2 -0
  90. package/dist/client/features/notice/configuration/show-interface/style.d.ts +3 -0
  91. package/dist/client/features/notice/configuration/style.d.ts +5 -0
  92. package/dist/client/features/notice/index.d.ts +5 -0
  93. package/dist/client/features/notice/locale.d.ts +7 -0
  94. package/dist/client/features/notice/usage/NoticeBlock.initializer.d.ts +6 -0
  95. package/dist/client/features/notice/usage/NoticeBlock.provider.d.ts +5 -0
  96. package/dist/client/features/notice/usage/NoticeCenter.schema.d.ts +2 -0
  97. package/dist/client/features/notice/usage/column/column.action.d.ts +2 -0
  98. package/dist/client/features/notice/usage/column/column.node.d.ts +1 -0
  99. package/dist/client/features/notice/usage/column/column.status.d.ts +8 -0
  100. package/dist/client/features/notice/usage/column/column.user.d.ts +1 -0
  101. package/dist/client/features/notice/usage/column/column.workflow.d.ts +2 -0
  102. package/dist/client/features/notice/usage/kit.d.ts +5 -0
  103. package/dist/client/features/notice/usage/show-detail/NoticeDetail.provider.d.ts +5 -0
  104. package/dist/client/features/notice/usage/show-detail/NoticeDetail.schema.d.ts +2 -0
  105. package/dist/client/features/notice/usage/show-detail/contexts/MyComponent.context.d.ts +9 -0
  106. package/dist/client/features/notice/usage/show-detail/contexts/WorkflowNotice.context.d.ts +4 -0
  107. package/dist/client/features/notice/usage/show-detail/hooks/usePropsNoticeDetail.d.ts +3 -0
  108. package/dist/client/features/omni-trigger/OmniActionTrigger.d.ts +84 -0
  109. package/dist/client/features/omni-trigger/index.d.ts +5 -0
  110. package/dist/client/features/omni-trigger/usage/APIRegular.schema.d.ts +2 -0
  111. package/dist/client/features/omni-trigger/usage/APIRegular.setting.d.ts +2 -0
  112. package/dist/client/features/omni-trigger/usage/hooks.d.ts +3 -0
  113. package/dist/client/features/omni-trigger/usage/kit.d.ts +4 -0
  114. package/dist/client/features/omni-trigger/useFormWorkflowCustomActionProps.d.ts +3 -0
  115. package/dist/client/features/omni-trigger/useRecordWorkflowCustomTriggerActionProps.d.ts +3 -0
  116. package/dist/client/features/parallel/ParallelInstruction.d.ts +34 -0
  117. package/dist/client/features/parallel/index.d.ts +4 -0
  118. package/dist/client/features/request/RequestInstruction.d.ts +220 -0
  119. package/dist/client/features/request/index.d.ts +4 -0
  120. package/dist/client/features/response/index.d.ts +4 -0
  121. package/dist/client/features/script/Script.instruction.d.ts +198 -0
  122. package/dist/client/features/script/index.d.ts +5 -0
  123. package/dist/client/features/sql/SQLInstruction.d.ts +54 -0
  124. package/dist/client/features/sql/index.d.ts +4 -0
  125. package/dist/client/features/trigger-instruction/TriggerInstruction.d.ts +93 -0
  126. package/dist/client/features/trigger-instruction/index.d.ts +0 -0
  127. package/dist/client/features/trigger-instruction/plugin.d.ts +4 -0
  128. package/dist/client/features/variables/VariableTargetSelect.d.ts +5 -0
  129. package/dist/client/features/variables/VariablesInstruction.d.ts +54 -0
  130. package/dist/client/features/variables/index.d.ts +4 -0
  131. package/dist/client/features/variables/useStyles.d.ts +3 -0
  132. package/dist/client/hooks/index.d.ts +3 -0
  133. package/dist/client/hooks/useGetAriaLabelOfAddButton.d.ts +6 -0
  134. package/dist/client/hooks/useTriggerWorkflowActionProps.d.ts +6 -0
  135. package/dist/client/hooks/useWorkflowExecuted.d.ts +2 -0
  136. package/dist/client/index.d.ts +19 -0
  137. package/dist/client/index.js +876 -0
  138. package/dist/client/locale/index.d.ts +4 -0
  139. package/dist/client/nodes/calculation.d.ts +88 -0
  140. package/dist/client/nodes/condition.d.ts +108 -0
  141. package/dist/client/nodes/create.d.ts +68 -0
  142. package/dist/client/nodes/default-node/Node.context.d.ts +3 -0
  143. package/dist/client/nodes/default-node/Node.d.ts +4 -0
  144. package/dist/client/nodes/default-node/Node.style.d.ts +4 -0
  145. package/dist/client/nodes/default-node/buttons/ArrowDownButton.d.ts +2 -0
  146. package/dist/client/nodes/default-node/buttons/ArrowUpButton.d.ts +2 -0
  147. package/dist/client/nodes/default-node/buttons/DragButton.d.ts +2 -0
  148. package/dist/client/nodes/default-node/buttons/JobButton.d.ts +2 -0
  149. package/dist/client/nodes/default-node/buttons/JobButton.style.d.ts +5 -0
  150. package/dist/client/nodes/default-node/buttons/RemoveButton.d.ts +2 -0
  151. package/dist/client/nodes/default-node/components/AddButton.d.ts +11 -0
  152. package/dist/client/nodes/default-node/components/AddButton.props.d.ts +11 -0
  153. package/dist/client/nodes/default-node/components/AddButton.style.d.ts +6 -0
  154. package/dist/client/nodes/default-node/components/NodeConfig.d.ts +2 -0
  155. package/dist/client/nodes/default-node/components/NodeConfig.provider.d.ts +2 -0
  156. package/dist/client/nodes/default-node/components/NodeConfig.schema.d.ts +15 -0
  157. package/dist/client/nodes/default-node/components/NodeConfig.view.d.ts +2 -0
  158. package/dist/client/nodes/default-node/components/NodeConfigTitle.d.ts +2 -0
  159. package/dist/client/nodes/default-node/components/NodeDefaultView.d.ts +2 -0
  160. package/dist/client/nodes/default-node/components/NodeDefaultView.style.d.ts +5 -0
  161. package/dist/client/nodes/default-node/components/NodePoint.d.ts +2 -0
  162. package/dist/client/nodes/default-node/components/NodePoint.style.d.ts +4 -0
  163. package/dist/client/nodes/default-node/hooks/useAvailableUpstreams.d.ts +1 -0
  164. package/dist/client/nodes/default-node/hooks/useFormProviderProps.d.ts +3 -0
  165. package/dist/client/nodes/default-node/hooks/useUpdateAction.d.ts +3 -0
  166. package/dist/client/nodes/default-node/hooks/useUpstreamScopes.d.ts +1 -0
  167. package/dist/client/nodes/default-node/index.d.ts +4 -0
  168. package/dist/client/nodes/default-node/interface.d.ts +49 -0
  169. package/dist/client/nodes/destroy.d.ts +46 -0
  170. package/dist/client/nodes/end.d.ts +25 -0
  171. package/dist/client/nodes/query.d.ts +221 -0
  172. package/dist/client/nodes/update.d.ts +82 -0
  173. package/dist/client/schemas/collection.d.ts +162 -0
  174. package/dist/client/schemas/executions.d.ts +380 -0
  175. package/dist/client/schemas/workflows.d.ts +47 -0
  176. package/dist/client/settings/customizeSubmitToWorkflowActionSettings.d.ts +2 -0
  177. package/dist/client/style.d.ts +19 -0
  178. package/dist/client/triggers/collection.d.ts +133 -0
  179. package/dist/client/triggers/index.d.ts +25 -0
  180. package/dist/client/triggers/schedule/EndsByField.d.ts +5 -0
  181. package/dist/client/triggers/schedule/OnField.d.ts +5 -0
  182. package/dist/client/triggers/schedule/RepeatField.d.ts +5 -0
  183. package/dist/client/triggers/schedule/ScheduleConfig.d.ts +2 -0
  184. package/dist/client/triggers/schedule/constants.d.ts +4 -0
  185. package/dist/client/triggers/schedule/index.d.ts +22 -0
  186. package/dist/client/triggers/schedule/locale/Cron.zh-CN.d.ts +34 -0
  187. package/dist/client/utils.d.ts +5 -0
  188. package/dist/client/variable.d.ts +97 -0
  189. package/dist/common/constants.d.ts +5 -0
  190. package/dist/common/constants.js +39 -0
  191. package/dist/externalVersion.js +25 -0
  192. package/dist/index.d.ts +2 -0
  193. package/dist/index.js +39 -0
  194. package/dist/locale/en-US.json +319 -0
  195. package/dist/locale/es-ES.json +129 -0
  196. package/dist/locale/fr-FR.json +129 -0
  197. package/dist/locale/ja-JP.json +87 -0
  198. package/dist/locale/ko_KR.json +246 -0
  199. package/dist/locale/pt-BR.json +129 -0
  200. package/dist/locale/ru-RU.json +87 -0
  201. package/dist/locale/tr-TR.json +87 -0
  202. package/dist/locale/zh-CN.json +399 -0
  203. package/dist/node_modules/@babel/core/LICENSE +22 -0
  204. package/dist/node_modules/@babel/core/cjs-proxy.cjs +68 -0
  205. package/dist/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  206. package/dist/node_modules/@babel/core/lib/config/caching.js +261 -0
  207. package/dist/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  208. package/dist/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  209. package/dist/node_modules/@babel/core/lib/config/files/configuration.js +287 -0
  210. package/dist/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  211. package/dist/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  212. package/dist/node_modules/@babel/core/lib/config/files/index.js +78 -0
  213. package/dist/node_modules/@babel/core/lib/config/files/module-types.js +195 -0
  214. package/dist/node_modules/@babel/core/lib/config/files/package.js +61 -0
  215. package/dist/node_modules/@babel/core/lib/config/files/plugins.js +229 -0
  216. package/dist/node_modules/@babel/core/lib/config/files/types.js +3 -0
  217. package/dist/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  218. package/dist/node_modules/@babel/core/lib/config/full.js +312 -0
  219. package/dist/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
  220. package/dist/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  221. package/dist/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  222. package/dist/node_modules/@babel/core/lib/config/index.js +93 -0
  223. package/dist/node_modules/@babel/core/lib/config/item.js +67 -0
  224. package/dist/node_modules/@babel/core/lib/config/partial.js +158 -0
  225. package/dist/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  226. package/dist/node_modules/@babel/core/lib/config/plugin.js +33 -0
  227. package/dist/node_modules/@babel/core/lib/config/printer.js +113 -0
  228. package/dist/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  229. package/dist/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  230. package/dist/node_modules/@babel/core/lib/config/util.js +31 -0
  231. package/dist/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  232. package/dist/node_modules/@babel/core/lib/config/validation/options.js +189 -0
  233. package/dist/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  234. package/dist/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  235. package/dist/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  236. package/dist/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  237. package/dist/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  238. package/dist/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  239. package/dist/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  240. package/dist/node_modules/@babel/core/lib/index.js +227 -0
  241. package/dist/node_modules/@babel/core/lib/parse.js +47 -0
  242. package/dist/node_modules/@babel/core/lib/parser/index.js +79 -0
  243. package/dist/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
  244. package/dist/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
  245. package/dist/node_modules/@babel/core/lib/transform-ast.js +50 -0
  246. package/dist/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  247. package/dist/node_modules/@babel/core/lib/transform-file.js +40 -0
  248. package/dist/node_modules/@babel/core/lib/transform.js +49 -0
  249. package/dist/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
  250. package/dist/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +4 -0
  251. package/dist/node_modules/@babel/core/lib/transformation/file/file.js +214 -0
  252. package/dist/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  253. package/dist/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  254. package/dist/node_modules/@babel/core/lib/transformation/index.js +92 -0
  255. package/dist/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
  256. package/dist/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  257. package/dist/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
  258. package/dist/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  259. package/dist/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1043 -0
  260. package/dist/node_modules/@babel/core/node_modules/.bin/json5 +17 -0
  261. package/dist/node_modules/@babel/core/node_modules/.bin/parser +17 -0
  262. package/dist/node_modules/@babel/core/node_modules/.bin/semver +17 -0
  263. package/dist/node_modules/@babel/core/package.json +1 -0
  264. package/dist/node_modules/@babel/core/src/config/files/index-browser.ts +113 -0
  265. package/dist/node_modules/@babel/core/src/config/files/index.ts +29 -0
  266. package/dist/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
  267. package/dist/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
  268. package/dist/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
  269. package/dist/node_modules/@babel/core/src/transform-file.ts +55 -0
  270. package/dist/node_modules/cron-parser/LICENSE +21 -0
  271. package/dist/node_modules/cron-parser/lib/date.js +252 -0
  272. package/dist/node_modules/cron-parser/lib/expression.js +1002 -0
  273. package/dist/node_modules/cron-parser/lib/field_compactor.js +70 -0
  274. package/dist/node_modules/cron-parser/lib/field_stringify.js +58 -0
  275. package/dist/node_modules/cron-parser/lib/parser.js +1 -0
  276. package/dist/node_modules/cron-parser/package.json +1 -0
  277. package/dist/node_modules/cron-parser/types/common.d.ts +131 -0
  278. package/dist/node_modules/cron-parser/types/index.d.ts +45 -0
  279. package/dist/node_modules/cron-parser/types/ts3/index.d.ts +28 -0
  280. package/dist/node_modules/form-data/License +19 -0
  281. package/dist/node_modules/form-data/index.d.ts +62 -0
  282. package/dist/node_modules/form-data/lib/browser.js +2 -0
  283. package/dist/node_modules/form-data/lib/form_data.js +14 -0
  284. package/dist/node_modules/form-data/lib/populate.js +10 -0
  285. package/dist/node_modules/form-data/package.json +1 -0
  286. package/dist/node_modules/jsonata/LICENSE +19 -0
  287. package/dist/node_modules/jsonata/jsonata-es5.js +9875 -0
  288. package/dist/node_modules/jsonata/jsonata-es5.min.js +1 -0
  289. package/dist/node_modules/jsonata/jsonata.d.ts +72 -0
  290. package/dist/node_modules/jsonata/jsonata.js +1 -0
  291. package/dist/node_modules/jsonata/jsonata.min.js +1 -0
  292. package/dist/node_modules/jsonata/package.json +1 -0
  293. package/dist/node_modules/lru-cache/index-cjs.d.ts +7 -0
  294. package/dist/node_modules/lru-cache/index-cjs.js +1 -0
  295. package/dist/node_modules/lru-cache/index.d.ts +807 -0
  296. package/dist/node_modules/lru-cache/index.js +1334 -0
  297. package/dist/node_modules/lru-cache/index.min.js +2 -0
  298. package/dist/node_modules/lru-cache/package.json +1 -0
  299. package/dist/node_modules/mime-types/LICENSE +23 -0
  300. package/dist/node_modules/mime-types/index.js +14 -0
  301. package/dist/node_modules/mime-types/package.json +1 -0
  302. package/dist/node_modules/qrcode/bin/qrcode +159 -0
  303. package/dist/node_modules/qrcode/helper/to-sjis-browser.js +2 -0
  304. package/dist/node_modules/qrcode/helper/to-sjis.js +105 -0
  305. package/dist/node_modules/qrcode/lib/browser.js +76 -0
  306. package/dist/node_modules/qrcode/lib/can-promise.js +7 -0
  307. package/dist/node_modules/qrcode/lib/core/alignment-pattern.js +83 -0
  308. package/dist/node_modules/qrcode/lib/core/alphanumeric-data.js +59 -0
  309. package/dist/node_modules/qrcode/lib/core/bit-buffer.js +37 -0
  310. package/dist/node_modules/qrcode/lib/core/bit-matrix.js +65 -0
  311. package/dist/node_modules/qrcode/lib/core/byte-data.js +30 -0
  312. package/dist/node_modules/qrcode/lib/core/error-correction-code.js +135 -0
  313. package/dist/node_modules/qrcode/lib/core/error-correction-level.js +50 -0
  314. package/dist/node_modules/qrcode/lib/core/finder-pattern.js +22 -0
  315. package/dist/node_modules/qrcode/lib/core/format-info.js +29 -0
  316. package/dist/node_modules/qrcode/lib/core/galois-field.js +69 -0
  317. package/dist/node_modules/qrcode/lib/core/kanji-data.js +54 -0
  318. package/dist/node_modules/qrcode/lib/core/mask-pattern.js +234 -0
  319. package/dist/node_modules/qrcode/lib/core/mode.js +167 -0
  320. package/dist/node_modules/qrcode/lib/core/numeric-data.js +43 -0
  321. package/dist/node_modules/qrcode/lib/core/polynomial.js +62 -0
  322. package/dist/node_modules/qrcode/lib/core/qrcode.js +495 -0
  323. package/dist/node_modules/qrcode/lib/core/reed-solomon-encoder.js +56 -0
  324. package/dist/node_modules/qrcode/lib/core/regex.js +31 -0
  325. package/dist/node_modules/qrcode/lib/core/segments.js +330 -0
  326. package/dist/node_modules/qrcode/lib/core/utils.js +63 -0
  327. package/dist/node_modules/qrcode/lib/core/version-check.js +9 -0
  328. package/dist/node_modules/qrcode/lib/core/version.js +163 -0
  329. package/dist/node_modules/qrcode/lib/index.js +1 -0
  330. package/dist/node_modules/qrcode/lib/renderer/canvas.js +63 -0
  331. package/dist/node_modules/qrcode/lib/renderer/png.js +78 -0
  332. package/dist/node_modules/qrcode/lib/renderer/svg-tag.js +81 -0
  333. package/dist/node_modules/qrcode/lib/renderer/svg.js +19 -0
  334. package/dist/node_modules/qrcode/lib/renderer/terminal/terminal-small.js +85 -0
  335. package/dist/node_modules/qrcode/lib/renderer/terminal/terminal.js +49 -0
  336. package/dist/node_modules/qrcode/lib/renderer/terminal.js +9 -0
  337. package/dist/node_modules/qrcode/lib/renderer/utf8.js +71 -0
  338. package/dist/node_modules/qrcode/lib/renderer/utils.js +99 -0
  339. package/dist/node_modules/qrcode/lib/server.js +138 -0
  340. package/dist/node_modules/qrcode/license +10 -0
  341. package/dist/node_modules/qrcode/package.json +1 -0
  342. package/dist/server/Plugin.d.ts +50 -0
  343. package/dist/server/Plugin.js +498 -0
  344. package/dist/server/Processor.d.ts +59 -0
  345. package/dist/server/Processor.js +306 -0
  346. package/dist/server/actions/executions.d.ts +3 -0
  347. package/dist/server/actions/executions.js +87 -0
  348. package/dist/server/actions/index.d.ts +3 -0
  349. package/dist/server/actions/index.js +59 -0
  350. package/dist/server/actions/nodes.d.ts +6 -0
  351. package/dist/server/actions/nodes.js +322 -0
  352. package/dist/server/actions/workflows.d.ts +10 -0
  353. package/dist/server/actions/workflows.js +347 -0
  354. package/dist/server/collections/1-users_jobs.d.ts +2 -0
  355. package/dist/server/collections/1-users_jobs.js +73 -0
  356. package/dist/server/collections/2-jobs.d.ts +2 -0
  357. package/dist/server/collections/2-jobs.js +40 -0
  358. package/dist/server/collections/3-users.d.ts +2 -0
  359. package/dist/server/collections/3-users.js +38 -0
  360. package/dist/server/collections/executions.d.ts +3 -0
  361. package/dist/server/collections/executions.js +64 -0
  362. package/dist/server/collections/flow_nodes.d.ts +3 -0
  363. package/dist/server/collections/flow_nodes.js +78 -0
  364. package/dist/server/collections/jobs.d.ts +3 -0
  365. package/dist/server/collections/jobs.js +61 -0
  366. package/dist/server/collections/workflows.d.ts +2 -0
  367. package/dist/server/collections/workflows.js +130 -0
  368. package/dist/server/constants.d.ts +22 -0
  369. package/dist/server/constants.js +52 -0
  370. package/dist/server/features/_deprecated-js-parse/JSParse.instruction.d.ts +10 -0
  371. package/dist/server/features/_deprecated-js-parse/JSParse.instruction.js +100 -0
  372. package/dist/server/features/_deprecated-js-parse/index.d.ts +1 -0
  373. package/dist/server/features/_deprecated-js-parse/index.js +33 -0
  374. package/dist/server/features/_deprecated-js-parse/plugin.d.ts +5 -0
  375. package/dist/server/features/_deprecated-js-parse/plugin.js +48 -0
  376. package/dist/server/features/_deprecated-json-parse/JSONParse.instruction.d.ts +11 -0
  377. package/dist/server/features/_deprecated-json-parse/JSONParse.instruction.js +81 -0
  378. package/dist/server/features/_deprecated-json-parse/index.d.ts +1 -0
  379. package/dist/server/features/_deprecated-json-parse/index.js +33 -0
  380. package/dist/server/features/_deprecated-json-parse/plugin.d.ts +5 -0
  381. package/dist/server/features/_deprecated-json-parse/plugin.js +48 -0
  382. package/dist/server/features/aggregate/AggregateInstruction.d.ts +7 -0
  383. package/dist/server/features/aggregate/AggregateInstruction.js +56 -0
  384. package/dist/server/features/aggregate/Plugin.d.ts +4 -0
  385. package/dist/server/features/aggregate/Plugin.js +45 -0
  386. package/dist/server/features/common/constants.d.ts +4 -0
  387. package/dist/server/features/common/constants.js +36 -0
  388. package/dist/server/features/delay/DelayInstruction.d.ts +12 -0
  389. package/dist/server/features/delay/DelayInstruction.js +106 -0
  390. package/dist/server/features/delay/Plugin.d.ts +4 -0
  391. package/dist/server/features/delay/Plugin.js +45 -0
  392. package/dist/server/features/dynamic-calculation/DynamicCalculation.d.ts +10 -0
  393. package/dist/server/features/dynamic-calculation/DynamicCalculation.js +62 -0
  394. package/dist/server/features/dynamic-calculation/Plugin.d.ts +4 -0
  395. package/dist/server/features/dynamic-calculation/Plugin.js +49 -0
  396. package/dist/server/features/dynamic-calculation/expression-field.d.ts +7 -0
  397. package/dist/server/features/dynamic-calculation/expression-field.js +32 -0
  398. package/dist/server/features/interception/RequestInterceptionTrigger.d.ts +11 -0
  399. package/dist/server/features/interception/RequestInterceptionTrigger.js +146 -0
  400. package/dist/server/features/interception/index.d.ts +4 -0
  401. package/dist/server/features/interception/index.js +35 -0
  402. package/dist/server/features/loop/LoopInstruction.d.ts +13 -0
  403. package/dist/server/features/loop/LoopInstruction.js +100 -0
  404. package/dist/server/features/loop/Plugin.d.ts +4 -0
  405. package/dist/server/features/loop/Plugin.js +45 -0
  406. package/dist/server/features/manual/ManualInstruction.d.ts +28 -0
  407. package/dist/server/features/manual/ManualInstruction.js +152 -0
  408. package/dist/server/features/manual/Plugin.d.ts +4 -0
  409. package/dist/server/features/manual/Plugin.js +70 -0
  410. package/dist/server/features/manual/actions.d.ts +2 -0
  411. package/dist/server/features/manual/actions.js +104 -0
  412. package/dist/server/features/manual/forms/create.d.ts +6 -0
  413. package/dist/server/features/manual/forms/create.js +41 -0
  414. package/dist/server/features/manual/forms/index.d.ts +6 -0
  415. package/dist/server/features/manual/forms/index.js +38 -0
  416. package/dist/server/features/manual/forms/update.d.ts +7 -0
  417. package/dist/server/features/manual/forms/update.js +41 -0
  418. package/dist/server/features/notice/NoticeInstruction.d.ts +9 -0
  419. package/dist/server/features/notice/NoticeInstruction.js +172 -0
  420. package/dist/server/features/notice/actions.d.ts +3 -0
  421. package/dist/server/features/notice/actions.js +124 -0
  422. package/dist/server/features/notice/collections/workflowNotice.d.ts +3 -0
  423. package/dist/server/features/notice/collections/workflowNotice.js +90 -0
  424. package/dist/server/features/notice/constants.d.ts +16 -0
  425. package/dist/server/features/notice/constants.js +44 -0
  426. package/dist/server/features/notice/index.d.ts +1 -0
  427. package/dist/server/features/notice/index.js +33 -0
  428. package/dist/server/features/notice/plugin.d.ts +12 -0
  429. package/dist/server/features/notice/plugin.js +83 -0
  430. package/dist/server/features/notice/tools.d.ts +17 -0
  431. package/dist/server/features/notice/tools.js +163 -0
  432. package/dist/server/features/omni-trigger/CustomActionTrigger.d.ts +11 -0
  433. package/dist/server/features/omni-trigger/CustomActionTrigger.js +270 -0
  434. package/dist/server/features/omni-trigger/Plugin.d.ts +4 -0
  435. package/dist/server/features/omni-trigger/Plugin.js +45 -0
  436. package/dist/server/features/omni-trigger/index.d.ts +1 -0
  437. package/dist/server/features/omni-trigger/index.js +21 -0
  438. package/dist/server/features/parallel/ParallelInstruction.d.ts +11 -0
  439. package/dist/server/features/parallel/ParallelInstruction.js +137 -0
  440. package/dist/server/features/parallel/Plugin.d.ts +4 -0
  441. package/dist/server/features/parallel/Plugin.js +45 -0
  442. package/dist/server/features/request/Plugin.d.ts +4 -0
  443. package/dist/server/features/request/Plugin.js +45 -0
  444. package/dist/server/features/request/RequestInstruction.d.ts +14 -0
  445. package/dist/server/features/request/RequestInstruction.js +183 -0
  446. package/dist/server/features/response/Plugin.d.ts +4 -0
  447. package/dist/server/features/response/Plugin.js +45 -0
  448. package/dist/server/features/response/ResponseMessageInstruction.d.ts +7 -0
  449. package/dist/server/features/response/ResponseMessageInstruction.js +57 -0
  450. package/dist/server/features/response/index.d.ts +1 -0
  451. package/dist/server/features/response/index.js +21 -0
  452. package/dist/server/features/script/index.d.ts +1 -0
  453. package/dist/server/features/script/index.js +33 -0
  454. package/dist/server/features/script/plugin.d.ts +5 -0
  455. package/dist/server/features/script/plugin.js +48 -0
  456. package/dist/server/features/script/script.instruction.d.ts +10 -0
  457. package/dist/server/features/script/script.instruction.js +212 -0
  458. package/dist/server/features/sql/Plugin.d.ts +4 -0
  459. package/dist/server/features/sql/Plugin.js +45 -0
  460. package/dist/server/features/sql/SQLInstruction.d.ts +10 -0
  461. package/dist/server/features/sql/SQLInstruction.js +48 -0
  462. package/dist/server/features/trigger-instruction/TriggerInstruction.d.ts +15 -0
  463. package/dist/server/features/trigger-instruction/TriggerInstruction.js +71 -0
  464. package/dist/server/features/trigger-instruction/flownode-check.d.ts +2 -0
  465. package/dist/server/features/trigger-instruction/flownode-check.js +114 -0
  466. package/dist/server/features/trigger-instruction/index.d.ts +0 -0
  467. package/dist/server/features/trigger-instruction/index.js +0 -0
  468. package/dist/server/features/trigger-instruction/plugin.d.ts +4 -0
  469. package/dist/server/features/trigger-instruction/plugin.js +37 -0
  470. package/dist/server/features/variables/Plugin.d.ts +4 -0
  471. package/dist/server/features/variables/Plugin.js +45 -0
  472. package/dist/server/features/variables/VariableInstruction.d.ts +7 -0
  473. package/dist/server/features/variables/VariableInstruction.js +61 -0
  474. package/dist/server/features/variables/index.d.ts +1 -0
  475. package/dist/server/features/variables/index.js +27 -0
  476. package/dist/server/features/webhook/Plugin.d.ts +4 -0
  477. package/dist/server/features/webhook/Plugin.js +109 -0
  478. package/dist/server/features/webhook/index.d.ts +1 -0
  479. package/dist/server/features/webhook/index.js +27 -0
  480. package/dist/server/features/webhook/webhooks.d.ts +9 -0
  481. package/dist/server/features/webhook/webhooks.js +286 -0
  482. package/dist/server/functions/index.d.ts +9 -0
  483. package/dist/server/functions/index.js +31 -0
  484. package/dist/server/index.d.ts +8 -0
  485. package/dist/server/index.js +54 -0
  486. package/dist/server/instructions/CalculationInstruction.d.ts +17 -0
  487. package/dist/server/instructions/CalculationInstruction.js +59 -0
  488. package/dist/server/instructions/ConditionInstruction.d.ts +29 -0
  489. package/dist/server/instructions/ConditionInstruction.js +160 -0
  490. package/dist/server/instructions/CreateInstruction.d.ts +10 -0
  491. package/dist/server/instructions/CreateInstruction.js +175 -0
  492. package/dist/server/instructions/DestroyInstruction.d.ts +10 -0
  493. package/dist/server/instructions/DestroyInstruction.js +50 -0
  494. package/dist/server/instructions/EndInstruction.d.ts +6 -0
  495. package/dist/server/instructions/EndInstruction.js +47 -0
  496. package/dist/server/instructions/QueryInstruction.d.ts +13 -0
  497. package/dist/server/instructions/QueryInstruction.js +78 -0
  498. package/dist/server/instructions/UpdateInstruction.d.ts +10 -0
  499. package/dist/server/instructions/UpdateInstruction.js +159 -0
  500. package/dist/server/instructions/index.d.ts +23 -0
  501. package/dist/server/instructions/index.js +33 -0
  502. package/dist/server/migrations/20241118104303-add-initAt.d.ts +6 -0
  503. package/dist/server/migrations/20241118104303-add-initAt.js +47 -0
  504. package/dist/server/migrations/20241206122842-add-createdBy.d.ts +6 -0
  505. package/dist/server/migrations/20241206122842-add-createdBy.js +46 -0
  506. package/dist/server/migrations/20241220001154-bigInt.d.ts +6 -0
  507. package/dist/server/migrations/20241220001154-bigInt.js +39 -0
  508. package/dist/server/triggers/CollectionTrigger.d.ts +14 -0
  509. package/dist/server/triggers/CollectionTrigger.js +188 -0
  510. package/dist/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.d.ts +31 -0
  511. package/dist/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.js +342 -0
  512. package/dist/server/triggers/ScheduleTrigger/StaticScheduleTrigger.d.ts +15 -0
  513. package/dist/server/triggers/ScheduleTrigger/StaticScheduleTrigger.js +143 -0
  514. package/dist/server/triggers/ScheduleTrigger/index.d.ts +13 -0
  515. package/dist/server/triggers/ScheduleTrigger/index.js +74 -0
  516. package/dist/server/triggers/ScheduleTrigger/utils.d.ts +5 -0
  517. package/dist/server/triggers/ScheduleTrigger/utils.js +35 -0
  518. package/dist/server/triggers/index.d.ts +13 -0
  519. package/dist/server/triggers/index.js +37 -0
  520. package/dist/server/types/Execution.d.ts +17 -0
  521. package/dist/server/types/Execution.js +25 -0
  522. package/dist/server/types/FlowNode.d.ts +16 -0
  523. package/dist/server/types/FlowNode.js +25 -0
  524. package/dist/server/types/Job.d.ts +14 -0
  525. package/dist/server/types/Job.js +25 -0
  526. package/dist/server/types/Workflow.d.ts +27 -0
  527. package/dist/server/types/Workflow.js +25 -0
  528. package/dist/server/types/index.d.ts +4 -0
  529. package/dist/server/types/index.js +15 -0
  530. package/dist/server/utils.d.ts +1 -0
  531. package/dist/server/utils.js +42 -0
  532. package/dist/swagger/index.d.ts +754 -0
  533. package/dist/swagger/index.js +798 -0
  534. package/package.json +63 -0
  535. package/server.d.ts +2 -0
  536. package/server.js +1 -0
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.parse = void 0;
7
+ exports.parseAsync = parseAsync;
8
+ exports.parseSync = parseSync;
9
+ function _gensync() {
10
+ const data = require("gensync");
11
+ _gensync = function () {
12
+ return data;
13
+ };
14
+ return data;
15
+ }
16
+ var _index = require("./config/index.js");
17
+ var _index2 = require("./parser/index.js");
18
+ var _normalizeOpts = require("./transformation/normalize-opts.js");
19
+ var _rewriteStackTrace = require("./errors/rewrite-stack-trace.js");
20
+ const parseRunner = _gensync()(function* parse(code, opts) {
21
+ const config = yield* (0, _index.default)(opts);
22
+ if (config === null) {
23
+ return null;
24
+ }
25
+ return yield* (0, _index2.default)(config.passes, (0, _normalizeOpts.default)(config), code);
26
+ });
27
+ const parse = exports.parse = function parse(code, opts, callback) {
28
+ if (typeof opts === "function") {
29
+ callback = opts;
30
+ opts = undefined;
31
+ }
32
+ if (callback === undefined) {
33
+ {
34
+ return (0, _rewriteStackTrace.beginHiddenCallStack)(parseRunner.sync)(code, opts);
35
+ }
36
+ }
37
+ (0, _rewriteStackTrace.beginHiddenCallStack)(parseRunner.errback)(code, opts, callback);
38
+ };
39
+ function parseSync(...args) {
40
+ return (0, _rewriteStackTrace.beginHiddenCallStack)(parseRunner.sync)(...args);
41
+ }
42
+ function parseAsync(...args) {
43
+ return (0, _rewriteStackTrace.beginHiddenCallStack)(parseRunner.async)(...args);
44
+ }
45
+ 0 && 0;
46
+
47
+ //# sourceMappingURL=parse.js.map
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = parser;
7
+ function _parser() {
8
+ const data = require("@babel/parser");
9
+ _parser = function () {
10
+ return data;
11
+ };
12
+ return data;
13
+ }
14
+ function _codeFrame() {
15
+ const data = require("@babel/code-frame");
16
+ _codeFrame = function () {
17
+ return data;
18
+ };
19
+ return data;
20
+ }
21
+ var _missingPluginHelper = require("./util/missing-plugin-helper.js");
22
+ function* parser(pluginPasses, {
23
+ parserOpts,
24
+ highlightCode = true,
25
+ filename = "unknown"
26
+ }, code) {
27
+ try {
28
+ const results = [];
29
+ for (const plugins of pluginPasses) {
30
+ for (const plugin of plugins) {
31
+ const {
32
+ parserOverride
33
+ } = plugin;
34
+ if (parserOverride) {
35
+ const ast = parserOverride(code, parserOpts, _parser().parse);
36
+ if (ast !== undefined) results.push(ast);
37
+ }
38
+ }
39
+ }
40
+ if (results.length === 0) {
41
+ return (0, _parser().parse)(code, parserOpts);
42
+ } else if (results.length === 1) {
43
+ yield* [];
44
+ if (typeof results[0].then === "function") {
45
+ throw new Error(`You appear to be using an async parser plugin, ` + `which your current version of Babel does not support. ` + `If you're using a published plugin, you may need to upgrade ` + `your @babel/core version.`);
46
+ }
47
+ return results[0];
48
+ }
49
+ throw new Error("More than one plugin attempted to override parsing.");
50
+ } catch (err) {
51
+ if (err.code === "BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED") {
52
+ err.message += "\nConsider renaming the file to '.mjs', or setting sourceType:module " + "or sourceType:unambiguous in your Babel config for this file.";
53
+ }
54
+ const {
55
+ loc,
56
+ missingPlugin
57
+ } = err;
58
+ if (loc) {
59
+ const codeFrame = (0, _codeFrame().codeFrameColumns)(code, {
60
+ start: {
61
+ line: loc.line,
62
+ column: loc.column + 1
63
+ }
64
+ }, {
65
+ highlightCode
66
+ });
67
+ if (missingPlugin) {
68
+ err.message = `${filename}: ` + (0, _missingPluginHelper.default)(missingPlugin[0], loc, codeFrame, filename);
69
+ } else {
70
+ err.message = `${filename}: ${err.message}\n\n` + codeFrame;
71
+ }
72
+ err.code = "BABEL_PARSE_ERROR";
73
+ }
74
+ throw err;
75
+ }
76
+ }
77
+ 0 && 0;
78
+
79
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,339 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = generateMissingPluginMessage;
7
+ const pluginNameMap = {
8
+ asyncDoExpressions: {
9
+ syntax: {
10
+ name: "@babel/plugin-syntax-async-do-expressions",
11
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-async-do-expressions"
12
+ }
13
+ },
14
+ decimal: {
15
+ syntax: {
16
+ name: "@babel/plugin-syntax-decimal",
17
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-decimal"
18
+ }
19
+ },
20
+ decorators: {
21
+ syntax: {
22
+ name: "@babel/plugin-syntax-decorators",
23
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-decorators"
24
+ },
25
+ transform: {
26
+ name: "@babel/plugin-proposal-decorators",
27
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-proposal-decorators"
28
+ }
29
+ },
30
+ doExpressions: {
31
+ syntax: {
32
+ name: "@babel/plugin-syntax-do-expressions",
33
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-do-expressions"
34
+ },
35
+ transform: {
36
+ name: "@babel/plugin-proposal-do-expressions",
37
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-proposal-do-expressions"
38
+ }
39
+ },
40
+ exportDefaultFrom: {
41
+ syntax: {
42
+ name: "@babel/plugin-syntax-export-default-from",
43
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-export-default-from"
44
+ },
45
+ transform: {
46
+ name: "@babel/plugin-proposal-export-default-from",
47
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-proposal-export-default-from"
48
+ }
49
+ },
50
+ flow: {
51
+ syntax: {
52
+ name: "@babel/plugin-syntax-flow",
53
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-flow"
54
+ },
55
+ transform: {
56
+ name: "@babel/preset-flow",
57
+ url: "https://github.com/babel/babel/tree/main/packages/babel-preset-flow"
58
+ }
59
+ },
60
+ functionBind: {
61
+ syntax: {
62
+ name: "@babel/plugin-syntax-function-bind",
63
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-function-bind"
64
+ },
65
+ transform: {
66
+ name: "@babel/plugin-proposal-function-bind",
67
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-proposal-function-bind"
68
+ }
69
+ },
70
+ functionSent: {
71
+ syntax: {
72
+ name: "@babel/plugin-syntax-function-sent",
73
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-function-sent"
74
+ },
75
+ transform: {
76
+ name: "@babel/plugin-proposal-function-sent",
77
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-proposal-function-sent"
78
+ }
79
+ },
80
+ jsx: {
81
+ syntax: {
82
+ name: "@babel/plugin-syntax-jsx",
83
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-jsx"
84
+ },
85
+ transform: {
86
+ name: "@babel/preset-react",
87
+ url: "https://github.com/babel/babel/tree/main/packages/babel-preset-react"
88
+ }
89
+ },
90
+ pipelineOperator: {
91
+ syntax: {
92
+ name: "@babel/plugin-syntax-pipeline-operator",
93
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-pipeline-operator"
94
+ },
95
+ transform: {
96
+ name: "@babel/plugin-proposal-pipeline-operator",
97
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-proposal-pipeline-operator"
98
+ }
99
+ },
100
+ recordAndTuple: {
101
+ syntax: {
102
+ name: "@babel/plugin-syntax-record-and-tuple",
103
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-record-and-tuple"
104
+ }
105
+ },
106
+ throwExpressions: {
107
+ syntax: {
108
+ name: "@babel/plugin-syntax-throw-expressions",
109
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-throw-expressions"
110
+ },
111
+ transform: {
112
+ name: "@babel/plugin-proposal-throw-expressions",
113
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-proposal-throw-expressions"
114
+ }
115
+ },
116
+ typescript: {
117
+ syntax: {
118
+ name: "@babel/plugin-syntax-typescript",
119
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-typescript"
120
+ },
121
+ transform: {
122
+ name: "@babel/preset-typescript",
123
+ url: "https://github.com/babel/babel/tree/main/packages/babel-preset-typescript"
124
+ }
125
+ }
126
+ };
127
+ {
128
+ Object.assign(pluginNameMap, {
129
+ asyncGenerators: {
130
+ syntax: {
131
+ name: "@babel/plugin-syntax-async-generators",
132
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-async-generators"
133
+ },
134
+ transform: {
135
+ name: "@babel/plugin-transform-async-generator-functions",
136
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-async-generator-functions"
137
+ }
138
+ },
139
+ classProperties: {
140
+ syntax: {
141
+ name: "@babel/plugin-syntax-class-properties",
142
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-class-properties"
143
+ },
144
+ transform: {
145
+ name: "@babel/plugin-transform-class-properties",
146
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-class-properties"
147
+ }
148
+ },
149
+ classPrivateProperties: {
150
+ syntax: {
151
+ name: "@babel/plugin-syntax-class-properties",
152
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-class-properties"
153
+ },
154
+ transform: {
155
+ name: "@babel/plugin-transform-class-properties",
156
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-class-properties"
157
+ }
158
+ },
159
+ classPrivateMethods: {
160
+ syntax: {
161
+ name: "@babel/plugin-syntax-class-properties",
162
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-class-properties"
163
+ },
164
+ transform: {
165
+ name: "@babel/plugin-transform-private-methods",
166
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-private-methods"
167
+ }
168
+ },
169
+ classStaticBlock: {
170
+ syntax: {
171
+ name: "@babel/plugin-syntax-class-static-block",
172
+ url: "https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-syntax-class-static-block"
173
+ },
174
+ transform: {
175
+ name: "@babel/plugin-transform-class-static-block",
176
+ url: "https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-class-static-block"
177
+ }
178
+ },
179
+ dynamicImport: {
180
+ syntax: {
181
+ name: "@babel/plugin-syntax-dynamic-import",
182
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-dynamic-import"
183
+ }
184
+ },
185
+ exportNamespaceFrom: {
186
+ syntax: {
187
+ name: "@babel/plugin-syntax-export-namespace-from",
188
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-export-namespace-from"
189
+ },
190
+ transform: {
191
+ name: "@babel/plugin-transform-export-namespace-from",
192
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-export-namespace-from"
193
+ }
194
+ },
195
+ importAssertions: {
196
+ syntax: {
197
+ name: "@babel/plugin-syntax-import-assertions",
198
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-import-assertions"
199
+ }
200
+ },
201
+ importAttributes: {
202
+ syntax: {
203
+ name: "@babel/plugin-syntax-import-attributes",
204
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-import-attributes"
205
+ }
206
+ },
207
+ importMeta: {
208
+ syntax: {
209
+ name: "@babel/plugin-syntax-import-meta",
210
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-import-meta"
211
+ }
212
+ },
213
+ logicalAssignment: {
214
+ syntax: {
215
+ name: "@babel/plugin-syntax-logical-assignment-operators",
216
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-logical-assignment-operators"
217
+ },
218
+ transform: {
219
+ name: "@babel/plugin-transform-logical-assignment-operators",
220
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-logical-assignment-operators"
221
+ }
222
+ },
223
+ moduleStringNames: {
224
+ syntax: {
225
+ name: "@babel/plugin-syntax-module-string-names",
226
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-module-string-names"
227
+ }
228
+ },
229
+ numericSeparator: {
230
+ syntax: {
231
+ name: "@babel/plugin-syntax-numeric-separator",
232
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-numeric-separator"
233
+ },
234
+ transform: {
235
+ name: "@babel/plugin-transform-numeric-separator",
236
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-numeric-separator"
237
+ }
238
+ },
239
+ nullishCoalescingOperator: {
240
+ syntax: {
241
+ name: "@babel/plugin-syntax-nullish-coalescing-operator",
242
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-nullish-coalescing-operator"
243
+ },
244
+ transform: {
245
+ name: "@babel/plugin-transform-nullish-coalescing-operator",
246
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-nullish-coalescing-opearator"
247
+ }
248
+ },
249
+ objectRestSpread: {
250
+ syntax: {
251
+ name: "@babel/plugin-syntax-object-rest-spread",
252
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-object-rest-spread"
253
+ },
254
+ transform: {
255
+ name: "@babel/plugin-transform-object-rest-spread",
256
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-object-rest-spread"
257
+ }
258
+ },
259
+ optionalCatchBinding: {
260
+ syntax: {
261
+ name: "@babel/plugin-syntax-optional-catch-binding",
262
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-optional-catch-binding"
263
+ },
264
+ transform: {
265
+ name: "@babel/plugin-transform-optional-catch-binding",
266
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-optional-catch-binding"
267
+ }
268
+ },
269
+ optionalChaining: {
270
+ syntax: {
271
+ name: "@babel/plugin-syntax-optional-chaining",
272
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-optional-chaining"
273
+ },
274
+ transform: {
275
+ name: "@babel/plugin-transform-optional-chaining",
276
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-optional-chaining"
277
+ }
278
+ },
279
+ privateIn: {
280
+ syntax: {
281
+ name: "@babel/plugin-syntax-private-property-in-object",
282
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-syntax-private-property-in-object"
283
+ },
284
+ transform: {
285
+ name: "@babel/plugin-transform-private-property-in-object",
286
+ url: "https://github.com/babel/babel/tree/main/packages/babel-plugin-transform-private-property-in-object"
287
+ }
288
+ },
289
+ regexpUnicodeSets: {
290
+ syntax: {
291
+ name: "@babel/plugin-syntax-unicode-sets-regex",
292
+ url: "https://github.com/babel/babel/blob/main/packages/babel-plugin-syntax-unicode-sets-regex/README.md"
293
+ },
294
+ transform: {
295
+ name: "@babel/plugin-transform-unicode-sets-regex",
296
+ url: "https://github.com/babel/babel/blob/main/packages/babel-plugin-proposalunicode-sets-regex/README.md"
297
+ }
298
+ }
299
+ });
300
+ }
301
+ const getNameURLCombination = ({
302
+ name,
303
+ url
304
+ }) => `${name} (${url})`;
305
+ function generateMissingPluginMessage(missingPluginName, loc, codeFrame, filename) {
306
+ let helpMessage = `Support for the experimental syntax '${missingPluginName}' isn't currently enabled ` + `(${loc.line}:${loc.column + 1}):\n\n` + codeFrame;
307
+ const pluginInfo = pluginNameMap[missingPluginName];
308
+ if (pluginInfo) {
309
+ const {
310
+ syntax: syntaxPlugin,
311
+ transform: transformPlugin
312
+ } = pluginInfo;
313
+ if (syntaxPlugin) {
314
+ const syntaxPluginInfo = getNameURLCombination(syntaxPlugin);
315
+ if (transformPlugin) {
316
+ const transformPluginInfo = getNameURLCombination(transformPlugin);
317
+ const sectionType = transformPlugin.name.startsWith("@babel/plugin") ? "plugins" : "presets";
318
+ helpMessage += `\n\nAdd ${transformPluginInfo} to the '${sectionType}' section of your Babel config to enable transformation.
319
+ If you want to leave it as-is, add ${syntaxPluginInfo} to the 'plugins' section to enable parsing.`;
320
+ } else {
321
+ helpMessage += `\n\nAdd ${syntaxPluginInfo} to the 'plugins' section of your Babel config ` + `to enable parsing.`;
322
+ }
323
+ }
324
+ }
325
+ const msgFilename = filename === "unknown" ? "<name of the input file>" : filename;
326
+ helpMessage += `
327
+
328
+ If you already added the plugin for this syntax to your config, it's possible that your config \
329
+ isn't being loaded.
330
+ You can re-run Babel with the BABEL_SHOW_CONFIG_FOR environment variable to show the loaded \
331
+ configuration:
332
+ \tnpx cross-env BABEL_SHOW_CONFIG_FOR=${msgFilename} <your build command>
333
+ See https://babeljs.io/docs/configuration#print-effective-configs for more info.
334
+ `;
335
+ return helpMessage;
336
+ }
337
+ 0 && 0;
338
+
339
+ //# sourceMappingURL=missing-plugin-helper.js.map
@@ -0,0 +1,144 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = _default;
7
+ function helpers() {
8
+ const data = require("@babel/helpers");
9
+ helpers = function () {
10
+ return data;
11
+ };
12
+ return data;
13
+ }
14
+ function _generator() {
15
+ const data = require("@babel/generator");
16
+ _generator = function () {
17
+ return data;
18
+ };
19
+ return data;
20
+ }
21
+ function _template() {
22
+ const data = require("@babel/template");
23
+ _template = function () {
24
+ return data;
25
+ };
26
+ return data;
27
+ }
28
+ function _t() {
29
+ const data = require("@babel/types");
30
+ _t = function () {
31
+ return data;
32
+ };
33
+ return data;
34
+ }
35
+ const {
36
+ arrayExpression,
37
+ assignmentExpression,
38
+ binaryExpression,
39
+ blockStatement,
40
+ callExpression,
41
+ cloneNode,
42
+ conditionalExpression,
43
+ exportNamedDeclaration,
44
+ exportSpecifier,
45
+ expressionStatement,
46
+ functionExpression,
47
+ identifier,
48
+ memberExpression,
49
+ objectExpression,
50
+ program,
51
+ stringLiteral,
52
+ unaryExpression,
53
+ variableDeclaration,
54
+ variableDeclarator
55
+ } = _t();
56
+ const buildUmdWrapper = replacements => _template().default.statement`
57
+ (function (root, factory) {
58
+ if (typeof define === "function" && define.amd) {
59
+ define(AMD_ARGUMENTS, factory);
60
+ } else if (typeof exports === "object") {
61
+ factory(COMMON_ARGUMENTS);
62
+ } else {
63
+ factory(BROWSER_ARGUMENTS);
64
+ }
65
+ })(UMD_ROOT, function (FACTORY_PARAMETERS) {
66
+ FACTORY_BODY
67
+ });
68
+ `(replacements);
69
+ function buildGlobal(allowlist) {
70
+ const namespace = identifier("babelHelpers");
71
+ const body = [];
72
+ const container = functionExpression(null, [identifier("global")], blockStatement(body));
73
+ const tree = program([expressionStatement(callExpression(container, [conditionalExpression(binaryExpression("===", unaryExpression("typeof", identifier("global")), stringLiteral("undefined")), identifier("self"), identifier("global"))]))]);
74
+ body.push(variableDeclaration("var", [variableDeclarator(namespace, assignmentExpression("=", memberExpression(identifier("global"), namespace), objectExpression([])))]));
75
+ buildHelpers(body, namespace, allowlist);
76
+ return tree;
77
+ }
78
+ function buildModule(allowlist) {
79
+ const body = [];
80
+ const refs = buildHelpers(body, null, allowlist);
81
+ body.unshift(exportNamedDeclaration(null, Object.keys(refs).map(name => {
82
+ return exportSpecifier(cloneNode(refs[name]), identifier(name));
83
+ })));
84
+ return program(body, [], "module");
85
+ }
86
+ function buildUmd(allowlist) {
87
+ const namespace = identifier("babelHelpers");
88
+ const body = [];
89
+ body.push(variableDeclaration("var", [variableDeclarator(namespace, identifier("global"))]));
90
+ buildHelpers(body, namespace, allowlist);
91
+ return program([buildUmdWrapper({
92
+ FACTORY_PARAMETERS: identifier("global"),
93
+ BROWSER_ARGUMENTS: assignmentExpression("=", memberExpression(identifier("root"), namespace), objectExpression([])),
94
+ COMMON_ARGUMENTS: identifier("exports"),
95
+ AMD_ARGUMENTS: arrayExpression([stringLiteral("exports")]),
96
+ FACTORY_BODY: body,
97
+ UMD_ROOT: identifier("this")
98
+ })]);
99
+ }
100
+ function buildVar(allowlist) {
101
+ const namespace = identifier("babelHelpers");
102
+ const body = [];
103
+ body.push(variableDeclaration("var", [variableDeclarator(namespace, objectExpression([]))]));
104
+ const tree = program(body);
105
+ buildHelpers(body, namespace, allowlist);
106
+ body.push(expressionStatement(namespace));
107
+ return tree;
108
+ }
109
+ function buildHelpers(body, namespace, allowlist) {
110
+ const getHelperReference = name => {
111
+ return namespace ? memberExpression(namespace, identifier(name)) : identifier(`_${name}`);
112
+ };
113
+ const refs = {};
114
+ helpers().list.forEach(function (name) {
115
+ if (allowlist && !allowlist.includes(name)) return;
116
+ const ref = refs[name] = getHelperReference(name);
117
+ const {
118
+ nodes
119
+ } = helpers().get(name, getHelperReference, namespace ? null : `_${name}`, [], namespace ? (ast, exportName, mapExportBindingAssignments) => {
120
+ mapExportBindingAssignments(node => assignmentExpression("=", ref, node));
121
+ ast.body.push(expressionStatement(assignmentExpression("=", ref, identifier(exportName))));
122
+ } : null);
123
+ body.push(...nodes);
124
+ });
125
+ return refs;
126
+ }
127
+ function _default(allowlist, outputType = "global") {
128
+ let tree;
129
+ const build = {
130
+ global: buildGlobal,
131
+ module: buildModule,
132
+ umd: buildUmd,
133
+ var: buildVar
134
+ }[outputType];
135
+ if (build) {
136
+ tree = build(allowlist);
137
+ } else {
138
+ throw new Error(`Unsupported output type ${outputType}`);
139
+ }
140
+ return (0, _generator().default)(tree).code;
141
+ }
142
+ 0 && 0;
143
+
144
+ //# sourceMappingURL=build-external-helpers.js.map
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.transformFromAst = void 0;
7
+ exports.transformFromAstAsync = transformFromAstAsync;
8
+ exports.transformFromAstSync = transformFromAstSync;
9
+ function _gensync() {
10
+ const data = require("gensync");
11
+ _gensync = function () {
12
+ return data;
13
+ };
14
+ return data;
15
+ }
16
+ var _index = require("./config/index.js");
17
+ var _index2 = require("./transformation/index.js");
18
+ var _rewriteStackTrace = require("./errors/rewrite-stack-trace.js");
19
+ const transformFromAstRunner = _gensync()(function* (ast, code, opts) {
20
+ const config = yield* (0, _index.default)(opts);
21
+ if (config === null) return null;
22
+ if (!ast) throw new Error("No AST given");
23
+ return yield* (0, _index2.run)(config, code, ast);
24
+ });
25
+ const transformFromAst = exports.transformFromAst = function transformFromAst(ast, code, optsOrCallback, maybeCallback) {
26
+ let opts;
27
+ let callback;
28
+ if (typeof optsOrCallback === "function") {
29
+ callback = optsOrCallback;
30
+ opts = undefined;
31
+ } else {
32
+ opts = optsOrCallback;
33
+ callback = maybeCallback;
34
+ }
35
+ if (callback === undefined) {
36
+ {
37
+ return (0, _rewriteStackTrace.beginHiddenCallStack)(transformFromAstRunner.sync)(ast, code, opts);
38
+ }
39
+ }
40
+ (0, _rewriteStackTrace.beginHiddenCallStack)(transformFromAstRunner.errback)(ast, code, opts, callback);
41
+ };
42
+ function transformFromAstSync(...args) {
43
+ return (0, _rewriteStackTrace.beginHiddenCallStack)(transformFromAstRunner.sync)(...args);
44
+ }
45
+ function transformFromAstAsync(...args) {
46
+ return (0, _rewriteStackTrace.beginHiddenCallStack)(transformFromAstRunner.async)(...args);
47
+ }
48
+ 0 && 0;
49
+
50
+ //# sourceMappingURL=transform-ast.js.map
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.transformFile = void 0;
7
+ exports.transformFileAsync = transformFileAsync;
8
+ exports.transformFileSync = transformFileSync;
9
+ const transformFile = exports.transformFile = function transformFile(filename, opts, callback) {
10
+ if (typeof opts === "function") {
11
+ callback = opts;
12
+ }
13
+ callback(new Error("Transforming files is not supported in browsers"), null);
14
+ };
15
+ function transformFileSync() {
16
+ throw new Error("Transforming files is not supported in browsers");
17
+ }
18
+ function transformFileAsync() {
19
+ return Promise.reject(new Error("Transforming files is not supported in browsers"));
20
+ }
21
+ 0 && 0;
22
+
23
+ //# sourceMappingURL=transform-file-browser.js.map