@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.
- package/.turbo/turbo-build.log +12 -0
- package/README.md +9 -0
- package/README.zh-CN.md +9 -0
- package/client.d.ts +2 -0
- package/client.js +1 -0
- package/dist/client/Branch.d.ts +9 -0
- package/dist/client/CanvasContent.d.ts +4 -0
- package/dist/client/CanvasContentWrapper.d.ts +4 -0
- package/dist/client/ExecutionCanvas.d.ts +2 -0
- package/dist/client/ExecutionContextProvider.d.ts +7 -0
- package/dist/client/ExecutionLink.d.ts +2 -0
- package/dist/client/ExecutionPage.d.ts +2 -0
- package/dist/client/ExecutionResourceProvider.d.ts +6 -0
- package/dist/client/FlowContext.d.ts +3 -0
- package/dist/client/Plugin.d.ts +39 -0
- package/dist/client/WorkflowCanvas.d.ts +2 -0
- package/dist/client/WorkflowLink.d.ts +2 -0
- package/dist/client/WorkflowPage.d.ts +2 -0
- package/dist/client/WorkflowPane.d.ts +2 -0
- package/dist/client/components/AddNotifiedPerson.d.ts +3 -0
- package/dist/client/components/AutoResizeInput.d.ts +4 -0
- package/dist/client/components/CheckboxGroupWithTooltip.d.ts +7 -0
- package/dist/client/components/CollectionBlockInitializer.d.ts +2 -0
- package/dist/client/components/CollectionFieldset.d.ts +3 -0
- package/dist/client/components/ColumnShowCollection.d.ts +2 -0
- package/dist/client/components/ColumnShowTitle.d.ts +2 -0
- package/dist/client/components/ConfigButtonMessage.d.ts +2 -0
- package/dist/client/components/DetailsBlockProvider.d.ts +6 -0
- package/dist/client/components/DrawerDescription.d.ts +5 -0
- package/dist/client/components/DrawerForm.d.ts +5 -0
- package/dist/client/components/ExecutionStatus.d.ts +5 -0
- package/dist/client/components/ExecutionTime.d.ts +3 -0
- package/dist/client/components/FieldsSelect.d.ts +2 -0
- package/dist/client/components/FilterDynamicComponent.d.ts +6 -0
- package/dist/client/components/GoBackButton.d.ts +2 -0
- package/dist/client/components/OpenDrawer.d.ts +7 -0
- package/dist/client/components/RadioWithTooltip.d.ts +7 -0
- package/dist/client/components/SelectNotifiedPerson.d.ts +2 -0
- package/dist/client/components/ShowNodeTypesInWorkflow.d.ts +2 -0
- package/dist/client/components/SimpleDesigner.d.ts +2 -0
- package/dist/client/components/StatusButton.d.ts +2 -0
- package/dist/client/components/ValueBlock.d.ts +5 -0
- package/dist/client/components/WorkflowLink.d.ts +2 -0
- package/dist/client/components/index.d.ts +15 -0
- package/dist/client/components/renderEngineReference.d.ts +2 -0
- package/dist/client/constants.d.ts +37 -0
- package/dist/client/features/aggregate/AggregateInstruction.d.ts +217 -0
- package/dist/client/features/aggregate/index.d.ts +4 -0
- package/dist/client/features/common/constants.d.ts +3 -0
- package/dist/client/features/delay/DelayInstruction.d.ts +48 -0
- package/dist/client/features/delay/index.d.ts +4 -0
- package/dist/client/features/dynamic-calculation/DynamicCalculation.d.ts +76 -0
- package/dist/client/features/dynamic-calculation/DynamicExpression.d.ts +6 -0
- package/dist/client/features/dynamic-calculation/expression.d.ts +35 -0
- package/dist/client/features/dynamic-calculation/index.d.ts +4 -0
- package/dist/client/features/interceptor/WorkflowTriggerInterceptor.d.ts +100 -0
- package/dist/client/features/interceptor/index.d.ts +4 -0
- package/dist/client/features/js-parse/JSParse.instruction.d.ts +123 -0
- package/dist/client/features/js-parse/index.d.ts +5 -0
- package/dist/client/features/json-parse/JSONParse.instruction.d.ts +119 -0
- package/dist/client/features/json-parse/index.d.ts +5 -0
- package/dist/client/features/loop/LoopInstruction.d.ts +33 -0
- package/dist/client/features/loop/index.d.ts +4 -0
- package/dist/client/features/manual/WorkflowTodo.d.ts +5 -0
- package/dist/client/features/manual/WorkflowTodoBlockInitializer.d.ts +2 -0
- package/dist/client/features/manual/index.d.ts +5 -0
- package/dist/client/features/manual/instruction/AssigneesSelect.d.ts +6 -0
- package/dist/client/features/manual/instruction/FormBlockInitializer.d.ts +2 -0
- package/dist/client/features/manual/instruction/FormBlockProvider.d.ts +2 -0
- package/dist/client/features/manual/instruction/ModeConfig.d.ts +5 -0
- package/dist/client/features/manual/instruction/SchemaConfig.d.ts +50 -0
- package/dist/client/features/manual/instruction/createManualFormBlockUISchema.d.ts +57 -0
- package/dist/client/features/manual/instruction/forms/create.d.ts +3 -0
- package/dist/client/features/manual/instruction/forms/custom.d.ts +5 -0
- package/dist/client/features/manual/instruction/forms/update.d.ts +3 -0
- package/dist/client/features/manual/instruction/index.d.ts +91 -0
- package/dist/client/features/manual/instruction/utils.d.ts +1 -0
- package/dist/client/features/notice/common/flowNodes.collection.d.ts +38 -0
- package/dist/client/features/notice/common/notice.collection.d.ts +127 -0
- package/dist/client/features/notice/common/workflow.collection.d.ts +30 -0
- package/dist/client/features/notice/configuration/Notice.instruction.d.ts +76 -0
- package/dist/client/features/notice/configuration/config-items/AddNotifiedPerson.view.d.ts +2 -0
- package/dist/client/features/notice/configuration/config-items/ConfigButtonNotice.view.d.ts +2 -0
- package/dist/client/features/notice/configuration/config-items/SelectNotifiedPerson.view.d.ts +2 -0
- package/dist/client/features/notice/configuration/kit.d.ts +5 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetail.block.d.ts +2 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetail.initializer.d.ts +2 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetail.schema.d.ts +6 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetailContainer.schema.d.ts +2 -0
- package/dist/client/features/notice/configuration/show-interface/style.d.ts +3 -0
- package/dist/client/features/notice/configuration/style.d.ts +5 -0
- package/dist/client/features/notice/index.d.ts +5 -0
- package/dist/client/features/notice/locale.d.ts +7 -0
- package/dist/client/features/notice/usage/NoticeBlock.initializer.d.ts +6 -0
- package/dist/client/features/notice/usage/NoticeBlock.provider.d.ts +5 -0
- package/dist/client/features/notice/usage/NoticeCenter.schema.d.ts +2 -0
- package/dist/client/features/notice/usage/column/column.action.d.ts +2 -0
- package/dist/client/features/notice/usage/column/column.node.d.ts +1 -0
- package/dist/client/features/notice/usage/column/column.status.d.ts +8 -0
- package/dist/client/features/notice/usage/column/column.user.d.ts +1 -0
- package/dist/client/features/notice/usage/column/column.workflow.d.ts +2 -0
- package/dist/client/features/notice/usage/kit.d.ts +5 -0
- package/dist/client/features/notice/usage/show-detail/NoticeDetail.provider.d.ts +5 -0
- package/dist/client/features/notice/usage/show-detail/NoticeDetail.schema.d.ts +2 -0
- package/dist/client/features/notice/usage/show-detail/contexts/MyComponent.context.d.ts +9 -0
- package/dist/client/features/notice/usage/show-detail/contexts/WorkflowNotice.context.d.ts +4 -0
- package/dist/client/features/notice/usage/show-detail/hooks/usePropsNoticeDetail.d.ts +3 -0
- package/dist/client/features/omni-trigger/OmniActionTrigger.d.ts +84 -0
- package/dist/client/features/omni-trigger/index.d.ts +5 -0
- package/dist/client/features/omni-trigger/usage/APIRegular.schema.d.ts +2 -0
- package/dist/client/features/omni-trigger/usage/APIRegular.setting.d.ts +2 -0
- package/dist/client/features/omni-trigger/usage/hooks.d.ts +3 -0
- package/dist/client/features/omni-trigger/usage/kit.d.ts +4 -0
- package/dist/client/features/omni-trigger/useFormWorkflowCustomActionProps.d.ts +3 -0
- package/dist/client/features/omni-trigger/useRecordWorkflowCustomTriggerActionProps.d.ts +3 -0
- package/dist/client/features/parallel/ParallelInstruction.d.ts +34 -0
- package/dist/client/features/parallel/index.d.ts +4 -0
- package/dist/client/features/request/RequestInstruction.d.ts +220 -0
- package/dist/client/features/request/index.d.ts +4 -0
- package/dist/client/features/response/index.d.ts +4 -0
- package/dist/client/features/script/Script.instruction.d.ts +198 -0
- package/dist/client/features/script/index.d.ts +5 -0
- package/dist/client/features/sql/SQLInstruction.d.ts +54 -0
- package/dist/client/features/sql/index.d.ts +4 -0
- package/dist/client/features/trigger-instruction/TriggerInstruction.d.ts +93 -0
- package/dist/client/features/trigger-instruction/index.d.ts +0 -0
- package/dist/client/features/trigger-instruction/plugin.d.ts +4 -0
- package/dist/client/features/variables/VariableTargetSelect.d.ts +5 -0
- package/dist/client/features/variables/VariablesInstruction.d.ts +54 -0
- package/dist/client/features/variables/index.d.ts +4 -0
- package/dist/client/features/variables/useStyles.d.ts +3 -0
- package/dist/client/hooks/index.d.ts +3 -0
- package/dist/client/hooks/useGetAriaLabelOfAddButton.d.ts +6 -0
- package/dist/client/hooks/useTriggerWorkflowActionProps.d.ts +6 -0
- package/dist/client/hooks/useWorkflowExecuted.d.ts +2 -0
- package/dist/client/index.d.ts +19 -0
- package/dist/client/index.js +876 -0
- package/dist/client/locale/index.d.ts +4 -0
- package/dist/client/nodes/calculation.d.ts +88 -0
- package/dist/client/nodes/condition.d.ts +108 -0
- package/dist/client/nodes/create.d.ts +68 -0
- package/dist/client/nodes/default-node/Node.context.d.ts +3 -0
- package/dist/client/nodes/default-node/Node.d.ts +4 -0
- package/dist/client/nodes/default-node/Node.style.d.ts +4 -0
- package/dist/client/nodes/default-node/buttons/ArrowDownButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/ArrowUpButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/DragButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/JobButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/JobButton.style.d.ts +5 -0
- package/dist/client/nodes/default-node/buttons/RemoveButton.d.ts +2 -0
- package/dist/client/nodes/default-node/components/AddButton.d.ts +11 -0
- package/dist/client/nodes/default-node/components/AddButton.props.d.ts +11 -0
- package/dist/client/nodes/default-node/components/AddButton.style.d.ts +6 -0
- package/dist/client/nodes/default-node/components/NodeConfig.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeConfig.provider.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeConfig.schema.d.ts +15 -0
- package/dist/client/nodes/default-node/components/NodeConfig.view.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeConfigTitle.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeDefaultView.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeDefaultView.style.d.ts +5 -0
- package/dist/client/nodes/default-node/components/NodePoint.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodePoint.style.d.ts +4 -0
- package/dist/client/nodes/default-node/hooks/useAvailableUpstreams.d.ts +1 -0
- package/dist/client/nodes/default-node/hooks/useFormProviderProps.d.ts +3 -0
- package/dist/client/nodes/default-node/hooks/useUpdateAction.d.ts +3 -0
- package/dist/client/nodes/default-node/hooks/useUpstreamScopes.d.ts +1 -0
- package/dist/client/nodes/default-node/index.d.ts +4 -0
- package/dist/client/nodes/default-node/interface.d.ts +49 -0
- package/dist/client/nodes/destroy.d.ts +46 -0
- package/dist/client/nodes/end.d.ts +25 -0
- package/dist/client/nodes/query.d.ts +221 -0
- package/dist/client/nodes/update.d.ts +82 -0
- package/dist/client/schemas/collection.d.ts +162 -0
- package/dist/client/schemas/executions.d.ts +380 -0
- package/dist/client/schemas/workflows.d.ts +47 -0
- package/dist/client/settings/customizeSubmitToWorkflowActionSettings.d.ts +2 -0
- package/dist/client/style.d.ts +19 -0
- package/dist/client/triggers/collection.d.ts +133 -0
- package/dist/client/triggers/index.d.ts +25 -0
- package/dist/client/triggers/schedule/EndsByField.d.ts +5 -0
- package/dist/client/triggers/schedule/OnField.d.ts +5 -0
- package/dist/client/triggers/schedule/RepeatField.d.ts +5 -0
- package/dist/client/triggers/schedule/ScheduleConfig.d.ts +2 -0
- package/dist/client/triggers/schedule/constants.d.ts +4 -0
- package/dist/client/triggers/schedule/index.d.ts +22 -0
- package/dist/client/triggers/schedule/locale/Cron.zh-CN.d.ts +34 -0
- package/dist/client/utils.d.ts +5 -0
- package/dist/client/variable.d.ts +97 -0
- package/dist/common/constants.d.ts +5 -0
- package/dist/common/constants.js +39 -0
- package/dist/externalVersion.js +25 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +39 -0
- package/dist/locale/en-US.json +319 -0
- package/dist/locale/es-ES.json +129 -0
- package/dist/locale/fr-FR.json +129 -0
- package/dist/locale/ja-JP.json +87 -0
- package/dist/locale/ko_KR.json +246 -0
- package/dist/locale/pt-BR.json +129 -0
- package/dist/locale/ru-RU.json +87 -0
- package/dist/locale/tr-TR.json +87 -0
- package/dist/locale/zh-CN.json +399 -0
- package/dist/node_modules/@babel/core/LICENSE +22 -0
- package/dist/node_modules/@babel/core/cjs-proxy.cjs +68 -0
- package/dist/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
- package/dist/node_modules/@babel/core/lib/config/caching.js +261 -0
- package/dist/node_modules/@babel/core/lib/config/config-chain.js +469 -0
- package/dist/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
- package/dist/node_modules/@babel/core/lib/config/files/configuration.js +287 -0
- package/dist/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
- package/dist/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
- package/dist/node_modules/@babel/core/lib/config/files/index.js +78 -0
- package/dist/node_modules/@babel/core/lib/config/files/module-types.js +195 -0
- package/dist/node_modules/@babel/core/lib/config/files/package.js +61 -0
- package/dist/node_modules/@babel/core/lib/config/files/plugins.js +229 -0
- package/dist/node_modules/@babel/core/lib/config/files/types.js +3 -0
- package/dist/node_modules/@babel/core/lib/config/files/utils.js +36 -0
- package/dist/node_modules/@babel/core/lib/config/full.js +312 -0
- package/dist/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
- package/dist/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
- package/dist/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- package/dist/node_modules/@babel/core/lib/config/index.js +93 -0
- package/dist/node_modules/@babel/core/lib/config/item.js +67 -0
- package/dist/node_modules/@babel/core/lib/config/partial.js +158 -0
- package/dist/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
- package/dist/node_modules/@babel/core/lib/config/plugin.js +33 -0
- package/dist/node_modules/@babel/core/lib/config/printer.js +113 -0
- package/dist/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
- package/dist/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
- package/dist/node_modules/@babel/core/lib/config/util.js +31 -0
- package/dist/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
- package/dist/node_modules/@babel/core/lib/config/validation/options.js +189 -0
- package/dist/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
- package/dist/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
- package/dist/node_modules/@babel/core/lib/errors/config-error.js +18 -0
- package/dist/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
- package/dist/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
- package/dist/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
- package/dist/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
- package/dist/node_modules/@babel/core/lib/index.js +227 -0
- package/dist/node_modules/@babel/core/lib/parse.js +47 -0
- package/dist/node_modules/@babel/core/lib/parser/index.js +79 -0
- package/dist/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
- package/dist/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
- package/dist/node_modules/@babel/core/lib/transform-ast.js +50 -0
- package/dist/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
- package/dist/node_modules/@babel/core/lib/transform-file.js +40 -0
- package/dist/node_modules/@babel/core/lib/transform.js +49 -0
- package/dist/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +4 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/file.js +214 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
- package/dist/node_modules/@babel/core/lib/transformation/index.js +92 -0
- package/dist/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
- package/dist/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
- package/dist/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
- package/dist/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
- package/dist/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1043 -0
- package/dist/node_modules/@babel/core/node_modules/.bin/json5 +17 -0
- package/dist/node_modules/@babel/core/node_modules/.bin/parser +17 -0
- package/dist/node_modules/@babel/core/node_modules/.bin/semver +17 -0
- package/dist/node_modules/@babel/core/package.json +1 -0
- package/dist/node_modules/@babel/core/src/config/files/index-browser.ts +113 -0
- package/dist/node_modules/@babel/core/src/config/files/index.ts +29 -0
- package/dist/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
- package/dist/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
- package/dist/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
- package/dist/node_modules/@babel/core/src/transform-file.ts +55 -0
- package/dist/node_modules/cron-parser/LICENSE +21 -0
- package/dist/node_modules/cron-parser/lib/date.js +252 -0
- package/dist/node_modules/cron-parser/lib/expression.js +1002 -0
- package/dist/node_modules/cron-parser/lib/field_compactor.js +70 -0
- package/dist/node_modules/cron-parser/lib/field_stringify.js +58 -0
- package/dist/node_modules/cron-parser/lib/parser.js +1 -0
- package/dist/node_modules/cron-parser/package.json +1 -0
- package/dist/node_modules/cron-parser/types/common.d.ts +131 -0
- package/dist/node_modules/cron-parser/types/index.d.ts +45 -0
- package/dist/node_modules/cron-parser/types/ts3/index.d.ts +28 -0
- package/dist/node_modules/form-data/License +19 -0
- package/dist/node_modules/form-data/index.d.ts +62 -0
- package/dist/node_modules/form-data/lib/browser.js +2 -0
- package/dist/node_modules/form-data/lib/form_data.js +14 -0
- package/dist/node_modules/form-data/lib/populate.js +10 -0
- package/dist/node_modules/form-data/package.json +1 -0
- package/dist/node_modules/jsonata/LICENSE +19 -0
- package/dist/node_modules/jsonata/jsonata-es5.js +9875 -0
- package/dist/node_modules/jsonata/jsonata-es5.min.js +1 -0
- package/dist/node_modules/jsonata/jsonata.d.ts +72 -0
- package/dist/node_modules/jsonata/jsonata.js +1 -0
- package/dist/node_modules/jsonata/jsonata.min.js +1 -0
- package/dist/node_modules/jsonata/package.json +1 -0
- package/dist/node_modules/lru-cache/index-cjs.d.ts +7 -0
- package/dist/node_modules/lru-cache/index-cjs.js +1 -0
- package/dist/node_modules/lru-cache/index.d.ts +807 -0
- package/dist/node_modules/lru-cache/index.js +1334 -0
- package/dist/node_modules/lru-cache/index.min.js +2 -0
- package/dist/node_modules/lru-cache/package.json +1 -0
- package/dist/node_modules/mime-types/LICENSE +23 -0
- package/dist/node_modules/mime-types/index.js +14 -0
- package/dist/node_modules/mime-types/package.json +1 -0
- package/dist/node_modules/qrcode/bin/qrcode +159 -0
- package/dist/node_modules/qrcode/helper/to-sjis-browser.js +2 -0
- package/dist/node_modules/qrcode/helper/to-sjis.js +105 -0
- package/dist/node_modules/qrcode/lib/browser.js +76 -0
- package/dist/node_modules/qrcode/lib/can-promise.js +7 -0
- package/dist/node_modules/qrcode/lib/core/alignment-pattern.js +83 -0
- package/dist/node_modules/qrcode/lib/core/alphanumeric-data.js +59 -0
- package/dist/node_modules/qrcode/lib/core/bit-buffer.js +37 -0
- package/dist/node_modules/qrcode/lib/core/bit-matrix.js +65 -0
- package/dist/node_modules/qrcode/lib/core/byte-data.js +30 -0
- package/dist/node_modules/qrcode/lib/core/error-correction-code.js +135 -0
- package/dist/node_modules/qrcode/lib/core/error-correction-level.js +50 -0
- package/dist/node_modules/qrcode/lib/core/finder-pattern.js +22 -0
- package/dist/node_modules/qrcode/lib/core/format-info.js +29 -0
- package/dist/node_modules/qrcode/lib/core/galois-field.js +69 -0
- package/dist/node_modules/qrcode/lib/core/kanji-data.js +54 -0
- package/dist/node_modules/qrcode/lib/core/mask-pattern.js +234 -0
- package/dist/node_modules/qrcode/lib/core/mode.js +167 -0
- package/dist/node_modules/qrcode/lib/core/numeric-data.js +43 -0
- package/dist/node_modules/qrcode/lib/core/polynomial.js +62 -0
- package/dist/node_modules/qrcode/lib/core/qrcode.js +495 -0
- package/dist/node_modules/qrcode/lib/core/reed-solomon-encoder.js +56 -0
- package/dist/node_modules/qrcode/lib/core/regex.js +31 -0
- package/dist/node_modules/qrcode/lib/core/segments.js +330 -0
- package/dist/node_modules/qrcode/lib/core/utils.js +63 -0
- package/dist/node_modules/qrcode/lib/core/version-check.js +9 -0
- package/dist/node_modules/qrcode/lib/core/version.js +163 -0
- package/dist/node_modules/qrcode/lib/index.js +1 -0
- package/dist/node_modules/qrcode/lib/renderer/canvas.js +63 -0
- package/dist/node_modules/qrcode/lib/renderer/png.js +78 -0
- package/dist/node_modules/qrcode/lib/renderer/svg-tag.js +81 -0
- package/dist/node_modules/qrcode/lib/renderer/svg.js +19 -0
- package/dist/node_modules/qrcode/lib/renderer/terminal/terminal-small.js +85 -0
- package/dist/node_modules/qrcode/lib/renderer/terminal/terminal.js +49 -0
- package/dist/node_modules/qrcode/lib/renderer/terminal.js +9 -0
- package/dist/node_modules/qrcode/lib/renderer/utf8.js +71 -0
- package/dist/node_modules/qrcode/lib/renderer/utils.js +99 -0
- package/dist/node_modules/qrcode/lib/server.js +138 -0
- package/dist/node_modules/qrcode/license +10 -0
- package/dist/node_modules/qrcode/package.json +1 -0
- package/dist/server/Plugin.d.ts +50 -0
- package/dist/server/Plugin.js +498 -0
- package/dist/server/Processor.d.ts +59 -0
- package/dist/server/Processor.js +306 -0
- package/dist/server/actions/executions.d.ts +3 -0
- package/dist/server/actions/executions.js +87 -0
- package/dist/server/actions/index.d.ts +3 -0
- package/dist/server/actions/index.js +59 -0
- package/dist/server/actions/nodes.d.ts +6 -0
- package/dist/server/actions/nodes.js +322 -0
- package/dist/server/actions/workflows.d.ts +10 -0
- package/dist/server/actions/workflows.js +347 -0
- package/dist/server/collections/1-users_jobs.d.ts +2 -0
- package/dist/server/collections/1-users_jobs.js +73 -0
- package/dist/server/collections/2-jobs.d.ts +2 -0
- package/dist/server/collections/2-jobs.js +40 -0
- package/dist/server/collections/3-users.d.ts +2 -0
- package/dist/server/collections/3-users.js +38 -0
- package/dist/server/collections/executions.d.ts +3 -0
- package/dist/server/collections/executions.js +64 -0
- package/dist/server/collections/flow_nodes.d.ts +3 -0
- package/dist/server/collections/flow_nodes.js +78 -0
- package/dist/server/collections/jobs.d.ts +3 -0
- package/dist/server/collections/jobs.js +61 -0
- package/dist/server/collections/workflows.d.ts +2 -0
- package/dist/server/collections/workflows.js +130 -0
- package/dist/server/constants.d.ts +22 -0
- package/dist/server/constants.js +52 -0
- package/dist/server/features/_deprecated-js-parse/JSParse.instruction.d.ts +10 -0
- package/dist/server/features/_deprecated-js-parse/JSParse.instruction.js +100 -0
- package/dist/server/features/_deprecated-js-parse/index.d.ts +1 -0
- package/dist/server/features/_deprecated-js-parse/index.js +33 -0
- package/dist/server/features/_deprecated-js-parse/plugin.d.ts +5 -0
- package/dist/server/features/_deprecated-js-parse/plugin.js +48 -0
- package/dist/server/features/_deprecated-json-parse/JSONParse.instruction.d.ts +11 -0
- package/dist/server/features/_deprecated-json-parse/JSONParse.instruction.js +81 -0
- package/dist/server/features/_deprecated-json-parse/index.d.ts +1 -0
- package/dist/server/features/_deprecated-json-parse/index.js +33 -0
- package/dist/server/features/_deprecated-json-parse/plugin.d.ts +5 -0
- package/dist/server/features/_deprecated-json-parse/plugin.js +48 -0
- package/dist/server/features/aggregate/AggregateInstruction.d.ts +7 -0
- package/dist/server/features/aggregate/AggregateInstruction.js +56 -0
- package/dist/server/features/aggregate/Plugin.d.ts +4 -0
- package/dist/server/features/aggregate/Plugin.js +45 -0
- package/dist/server/features/common/constants.d.ts +4 -0
- package/dist/server/features/common/constants.js +36 -0
- package/dist/server/features/delay/DelayInstruction.d.ts +12 -0
- package/dist/server/features/delay/DelayInstruction.js +106 -0
- package/dist/server/features/delay/Plugin.d.ts +4 -0
- package/dist/server/features/delay/Plugin.js +45 -0
- package/dist/server/features/dynamic-calculation/DynamicCalculation.d.ts +10 -0
- package/dist/server/features/dynamic-calculation/DynamicCalculation.js +62 -0
- package/dist/server/features/dynamic-calculation/Plugin.d.ts +4 -0
- package/dist/server/features/dynamic-calculation/Plugin.js +49 -0
- package/dist/server/features/dynamic-calculation/expression-field.d.ts +7 -0
- package/dist/server/features/dynamic-calculation/expression-field.js +32 -0
- package/dist/server/features/interception/RequestInterceptionTrigger.d.ts +11 -0
- package/dist/server/features/interception/RequestInterceptionTrigger.js +146 -0
- package/dist/server/features/interception/index.d.ts +4 -0
- package/dist/server/features/interception/index.js +35 -0
- package/dist/server/features/loop/LoopInstruction.d.ts +13 -0
- package/dist/server/features/loop/LoopInstruction.js +100 -0
- package/dist/server/features/loop/Plugin.d.ts +4 -0
- package/dist/server/features/loop/Plugin.js +45 -0
- package/dist/server/features/manual/ManualInstruction.d.ts +28 -0
- package/dist/server/features/manual/ManualInstruction.js +152 -0
- package/dist/server/features/manual/Plugin.d.ts +4 -0
- package/dist/server/features/manual/Plugin.js +70 -0
- package/dist/server/features/manual/actions.d.ts +2 -0
- package/dist/server/features/manual/actions.js +104 -0
- package/dist/server/features/manual/forms/create.d.ts +6 -0
- package/dist/server/features/manual/forms/create.js +41 -0
- package/dist/server/features/manual/forms/index.d.ts +6 -0
- package/dist/server/features/manual/forms/index.js +38 -0
- package/dist/server/features/manual/forms/update.d.ts +7 -0
- package/dist/server/features/manual/forms/update.js +41 -0
- package/dist/server/features/notice/NoticeInstruction.d.ts +9 -0
- package/dist/server/features/notice/NoticeInstruction.js +172 -0
- package/dist/server/features/notice/actions.d.ts +3 -0
- package/dist/server/features/notice/actions.js +124 -0
- package/dist/server/features/notice/collections/workflowNotice.d.ts +3 -0
- package/dist/server/features/notice/collections/workflowNotice.js +90 -0
- package/dist/server/features/notice/constants.d.ts +16 -0
- package/dist/server/features/notice/constants.js +44 -0
- package/dist/server/features/notice/index.d.ts +1 -0
- package/dist/server/features/notice/index.js +33 -0
- package/dist/server/features/notice/plugin.d.ts +12 -0
- package/dist/server/features/notice/plugin.js +83 -0
- package/dist/server/features/notice/tools.d.ts +17 -0
- package/dist/server/features/notice/tools.js +163 -0
- package/dist/server/features/omni-trigger/CustomActionTrigger.d.ts +11 -0
- package/dist/server/features/omni-trigger/CustomActionTrigger.js +270 -0
- package/dist/server/features/omni-trigger/Plugin.d.ts +4 -0
- package/dist/server/features/omni-trigger/Plugin.js +45 -0
- package/dist/server/features/omni-trigger/index.d.ts +1 -0
- package/dist/server/features/omni-trigger/index.js +21 -0
- package/dist/server/features/parallel/ParallelInstruction.d.ts +11 -0
- package/dist/server/features/parallel/ParallelInstruction.js +137 -0
- package/dist/server/features/parallel/Plugin.d.ts +4 -0
- package/dist/server/features/parallel/Plugin.js +45 -0
- package/dist/server/features/request/Plugin.d.ts +4 -0
- package/dist/server/features/request/Plugin.js +45 -0
- package/dist/server/features/request/RequestInstruction.d.ts +14 -0
- package/dist/server/features/request/RequestInstruction.js +183 -0
- package/dist/server/features/response/Plugin.d.ts +4 -0
- package/dist/server/features/response/Plugin.js +45 -0
- package/dist/server/features/response/ResponseMessageInstruction.d.ts +7 -0
- package/dist/server/features/response/ResponseMessageInstruction.js +57 -0
- package/dist/server/features/response/index.d.ts +1 -0
- package/dist/server/features/response/index.js +21 -0
- package/dist/server/features/script/index.d.ts +1 -0
- package/dist/server/features/script/index.js +33 -0
- package/dist/server/features/script/plugin.d.ts +5 -0
- package/dist/server/features/script/plugin.js +48 -0
- package/dist/server/features/script/script.instruction.d.ts +10 -0
- package/dist/server/features/script/script.instruction.js +212 -0
- package/dist/server/features/sql/Plugin.d.ts +4 -0
- package/dist/server/features/sql/Plugin.js +45 -0
- package/dist/server/features/sql/SQLInstruction.d.ts +10 -0
- package/dist/server/features/sql/SQLInstruction.js +48 -0
- package/dist/server/features/trigger-instruction/TriggerInstruction.d.ts +15 -0
- package/dist/server/features/trigger-instruction/TriggerInstruction.js +71 -0
- package/dist/server/features/trigger-instruction/flownode-check.d.ts +2 -0
- package/dist/server/features/trigger-instruction/flownode-check.js +114 -0
- package/dist/server/features/trigger-instruction/index.d.ts +0 -0
- package/dist/server/features/trigger-instruction/index.js +0 -0
- package/dist/server/features/trigger-instruction/plugin.d.ts +4 -0
- package/dist/server/features/trigger-instruction/plugin.js +37 -0
- package/dist/server/features/variables/Plugin.d.ts +4 -0
- package/dist/server/features/variables/Plugin.js +45 -0
- package/dist/server/features/variables/VariableInstruction.d.ts +7 -0
- package/dist/server/features/variables/VariableInstruction.js +61 -0
- package/dist/server/features/variables/index.d.ts +1 -0
- package/dist/server/features/variables/index.js +27 -0
- package/dist/server/features/webhook/Plugin.d.ts +4 -0
- package/dist/server/features/webhook/Plugin.js +109 -0
- package/dist/server/features/webhook/index.d.ts +1 -0
- package/dist/server/features/webhook/index.js +27 -0
- package/dist/server/features/webhook/webhooks.d.ts +9 -0
- package/dist/server/features/webhook/webhooks.js +286 -0
- package/dist/server/functions/index.d.ts +9 -0
- package/dist/server/functions/index.js +31 -0
- package/dist/server/index.d.ts +8 -0
- package/dist/server/index.js +54 -0
- package/dist/server/instructions/CalculationInstruction.d.ts +17 -0
- package/dist/server/instructions/CalculationInstruction.js +59 -0
- package/dist/server/instructions/ConditionInstruction.d.ts +29 -0
- package/dist/server/instructions/ConditionInstruction.js +160 -0
- package/dist/server/instructions/CreateInstruction.d.ts +10 -0
- package/dist/server/instructions/CreateInstruction.js +175 -0
- package/dist/server/instructions/DestroyInstruction.d.ts +10 -0
- package/dist/server/instructions/DestroyInstruction.js +50 -0
- package/dist/server/instructions/EndInstruction.d.ts +6 -0
- package/dist/server/instructions/EndInstruction.js +47 -0
- package/dist/server/instructions/QueryInstruction.d.ts +13 -0
- package/dist/server/instructions/QueryInstruction.js +78 -0
- package/dist/server/instructions/UpdateInstruction.d.ts +10 -0
- package/dist/server/instructions/UpdateInstruction.js +159 -0
- package/dist/server/instructions/index.d.ts +23 -0
- package/dist/server/instructions/index.js +33 -0
- package/dist/server/migrations/20241118104303-add-initAt.d.ts +6 -0
- package/dist/server/migrations/20241118104303-add-initAt.js +47 -0
- package/dist/server/migrations/20241206122842-add-createdBy.d.ts +6 -0
- package/dist/server/migrations/20241206122842-add-createdBy.js +46 -0
- package/dist/server/migrations/20241220001154-bigInt.d.ts +6 -0
- package/dist/server/migrations/20241220001154-bigInt.js +39 -0
- package/dist/server/triggers/CollectionTrigger.d.ts +14 -0
- package/dist/server/triggers/CollectionTrigger.js +188 -0
- package/dist/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.d.ts +31 -0
- package/dist/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.js +342 -0
- package/dist/server/triggers/ScheduleTrigger/StaticScheduleTrigger.d.ts +15 -0
- package/dist/server/triggers/ScheduleTrigger/StaticScheduleTrigger.js +143 -0
- package/dist/server/triggers/ScheduleTrigger/index.d.ts +13 -0
- package/dist/server/triggers/ScheduleTrigger/index.js +74 -0
- package/dist/server/triggers/ScheduleTrigger/utils.d.ts +5 -0
- package/dist/server/triggers/ScheduleTrigger/utils.js +35 -0
- package/dist/server/triggers/index.d.ts +13 -0
- package/dist/server/triggers/index.js +37 -0
- package/dist/server/types/Execution.d.ts +17 -0
- package/dist/server/types/Execution.js +25 -0
- package/dist/server/types/FlowNode.d.ts +16 -0
- package/dist/server/types/FlowNode.js +25 -0
- package/dist/server/types/Job.d.ts +14 -0
- package/dist/server/types/Job.js +25 -0
- package/dist/server/types/Workflow.d.ts +27 -0
- package/dist/server/types/Workflow.js +25 -0
- package/dist/server/types/index.d.ts +4 -0
- package/dist/server/types/index.js +15 -0
- package/dist/server/utils.d.ts +1 -0
- package/dist/server/utils.js +42 -0
- package/dist/swagger/index.d.ts +754 -0
- package/dist/swagger/index.js +798 -0
- package/package.json +63 -0
- package/server.d.ts +2 -0
- package/server.js +1 -0
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var nodes_exports = {};
|
|
19
|
+
__export(nodes_exports, {
|
|
20
|
+
create: () => create,
|
|
21
|
+
destroy: () => destroy,
|
|
22
|
+
moveDown: () => moveDown,
|
|
23
|
+
moveUp: () => moveUp,
|
|
24
|
+
update: () => update
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(nodes_exports);
|
|
27
|
+
var import_actions = require("@tachybase/actions");
|
|
28
|
+
var import_database = require("@tachybase/database");
|
|
29
|
+
async function create(context, next) {
|
|
30
|
+
const { db } = context;
|
|
31
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
32
|
+
const { whitelist, blacklist, updateAssociationValues, values, associatedIndex: workflowId } = context.action.params;
|
|
33
|
+
context.body = await db.sequelize.transaction(async (transaction) => {
|
|
34
|
+
const workflow = await repository.getSourceModel(transaction);
|
|
35
|
+
if (workflow.executed) {
|
|
36
|
+
context.throw(400, "Node could not be created in executed workflow");
|
|
37
|
+
}
|
|
38
|
+
const instance = await repository.create({
|
|
39
|
+
values,
|
|
40
|
+
whitelist,
|
|
41
|
+
blacklist,
|
|
42
|
+
updateAssociationValues,
|
|
43
|
+
context,
|
|
44
|
+
transaction
|
|
45
|
+
});
|
|
46
|
+
if (!instance.upstreamId) {
|
|
47
|
+
const previousHead = await repository.findOne({
|
|
48
|
+
filter: {
|
|
49
|
+
id: {
|
|
50
|
+
$ne: instance.id
|
|
51
|
+
},
|
|
52
|
+
upstreamId: null
|
|
53
|
+
},
|
|
54
|
+
transaction
|
|
55
|
+
});
|
|
56
|
+
if (previousHead) {
|
|
57
|
+
await previousHead.setUpstream(instance, { transaction });
|
|
58
|
+
await instance.setDownstream(previousHead, { transaction });
|
|
59
|
+
instance.set("downstream", previousHead);
|
|
60
|
+
}
|
|
61
|
+
return instance;
|
|
62
|
+
}
|
|
63
|
+
const upstream = await instance.getUpstream({ transaction });
|
|
64
|
+
if (instance.branchIndex == null) {
|
|
65
|
+
const downstream = await upstream.getDownstream({ transaction });
|
|
66
|
+
if (downstream) {
|
|
67
|
+
await downstream.setUpstream(instance, { transaction });
|
|
68
|
+
await instance.setDownstream(downstream, { transaction });
|
|
69
|
+
instance.set("downstream", downstream);
|
|
70
|
+
}
|
|
71
|
+
await upstream.update(
|
|
72
|
+
{
|
|
73
|
+
downstreamId: instance.id
|
|
74
|
+
},
|
|
75
|
+
{ transaction }
|
|
76
|
+
);
|
|
77
|
+
upstream.set("downstream", instance);
|
|
78
|
+
} else {
|
|
79
|
+
const [downstream] = await upstream.getBranches({
|
|
80
|
+
where: {
|
|
81
|
+
id: {
|
|
82
|
+
[import_database.Op.ne]: instance.id
|
|
83
|
+
},
|
|
84
|
+
branchIndex: instance.branchIndex
|
|
85
|
+
},
|
|
86
|
+
transaction
|
|
87
|
+
});
|
|
88
|
+
if (downstream) {
|
|
89
|
+
await downstream.update(
|
|
90
|
+
{
|
|
91
|
+
upstreamId: instance.id,
|
|
92
|
+
branchIndex: null
|
|
93
|
+
},
|
|
94
|
+
{ transaction }
|
|
95
|
+
);
|
|
96
|
+
await instance.setDownstream(downstream, { transaction });
|
|
97
|
+
instance.set("downstream", downstream);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
instance.set("upstream", upstream);
|
|
101
|
+
return instance;
|
|
102
|
+
});
|
|
103
|
+
await next();
|
|
104
|
+
}
|
|
105
|
+
function searchBranchNodes(nodes, from) {
|
|
106
|
+
const branchHeads = nodes.filter((item) => item.upstreamId === from.id && item.branchIndex != null);
|
|
107
|
+
return branchHeads.reduce(
|
|
108
|
+
(flatten, head) => flatten.concat(searchBranchDownstreams(nodes, head)),
|
|
109
|
+
[]
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
function searchBranchDownstreams(nodes, from) {
|
|
113
|
+
let result = [];
|
|
114
|
+
for (let search = from; search; search = search.downstream) {
|
|
115
|
+
result = [...result, search, ...searchBranchNodes(nodes, search)];
|
|
116
|
+
}
|
|
117
|
+
return result;
|
|
118
|
+
}
|
|
119
|
+
async function destroy(context, next) {
|
|
120
|
+
const { db } = context;
|
|
121
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
122
|
+
const { filterByTk } = context.action.params;
|
|
123
|
+
const fields = ["id", "upstreamId", "downstreamId", "branchIndex"];
|
|
124
|
+
const instance = await repository.findOne({
|
|
125
|
+
filterByTk,
|
|
126
|
+
fields: [...fields, "workflowId"],
|
|
127
|
+
appends: ["upstream", "downstream", "workflow"]
|
|
128
|
+
});
|
|
129
|
+
if (instance.workflow.executed) {
|
|
130
|
+
context.throw(400, "Nodes in executed workflow could not be deleted");
|
|
131
|
+
}
|
|
132
|
+
await db.sequelize.transaction(async (transaction) => {
|
|
133
|
+
const { upstream, downstream } = instance.get();
|
|
134
|
+
if (upstream && upstream.downstreamId === instance.id) {
|
|
135
|
+
await upstream.update(
|
|
136
|
+
{
|
|
137
|
+
downstreamId: instance.downstreamId
|
|
138
|
+
},
|
|
139
|
+
{ transaction }
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
if (downstream) {
|
|
143
|
+
await downstream.update(
|
|
144
|
+
{
|
|
145
|
+
upstreamId: instance.upstreamId,
|
|
146
|
+
branchIndex: instance.branchIndex
|
|
147
|
+
},
|
|
148
|
+
{ transaction }
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
const nodes = await repository.find({
|
|
152
|
+
filter: {
|
|
153
|
+
workflowId: instance.workflowId
|
|
154
|
+
},
|
|
155
|
+
fields,
|
|
156
|
+
transaction
|
|
157
|
+
});
|
|
158
|
+
const nodesMap = /* @__PURE__ */ new Map();
|
|
159
|
+
nodes.forEach((item) => {
|
|
160
|
+
nodesMap.set(item.id, item);
|
|
161
|
+
});
|
|
162
|
+
nodes.forEach((item) => {
|
|
163
|
+
if (item.upstreamId) {
|
|
164
|
+
item.upstream = nodesMap.get(item.upstreamId);
|
|
165
|
+
}
|
|
166
|
+
if (item.downstreamId) {
|
|
167
|
+
item.downstream = nodesMap.get(item.downstreamId);
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
const branchNodes = searchBranchNodes(nodes, nodesMap.get(instance.id));
|
|
171
|
+
await repository.destroy({
|
|
172
|
+
filterByTk: [instance.id, ...branchNodes.map((item) => item.id)],
|
|
173
|
+
transaction
|
|
174
|
+
});
|
|
175
|
+
});
|
|
176
|
+
context.body = instance;
|
|
177
|
+
await next();
|
|
178
|
+
}
|
|
179
|
+
async function update(context, next) {
|
|
180
|
+
const { db } = context;
|
|
181
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
182
|
+
const { filterByTk, values, whitelist, blacklist, filter, updateAssociationValues } = context.action.params;
|
|
183
|
+
context.body = await db.sequelize.transaction(async (transaction) => {
|
|
184
|
+
const { workflow } = await repository.findOne({
|
|
185
|
+
filterByTk,
|
|
186
|
+
appends: ["workflow.executed"],
|
|
187
|
+
transaction
|
|
188
|
+
});
|
|
189
|
+
if (workflow.executed) {
|
|
190
|
+
context.throw(400, "Nodes in executed workflow could not be reconfigured");
|
|
191
|
+
}
|
|
192
|
+
return repository.update({
|
|
193
|
+
filterByTk,
|
|
194
|
+
values,
|
|
195
|
+
whitelist,
|
|
196
|
+
blacklist,
|
|
197
|
+
filter,
|
|
198
|
+
updateAssociationValues,
|
|
199
|
+
context,
|
|
200
|
+
transaction
|
|
201
|
+
});
|
|
202
|
+
});
|
|
203
|
+
await next();
|
|
204
|
+
}
|
|
205
|
+
async function moveUp(context, next) {
|
|
206
|
+
const { db } = context;
|
|
207
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
208
|
+
const { filterByTk } = context.action.params;
|
|
209
|
+
const fields = ["id", "upstreamId", "downstreamId", "branchIndex", "key"];
|
|
210
|
+
const instance = await repository.findOne({
|
|
211
|
+
filterByTk,
|
|
212
|
+
fields: [...fields, "workflowId"],
|
|
213
|
+
appends: ["upstream", "downstream", "workflow"]
|
|
214
|
+
});
|
|
215
|
+
if (instance.workflow.executed) {
|
|
216
|
+
context.throw(400, "Nodes in executed workflow could not be deleted");
|
|
217
|
+
}
|
|
218
|
+
await db.sequelize.transaction(async (transaction) => {
|
|
219
|
+
const { upstream, downstream } = instance.get();
|
|
220
|
+
if (!upstream) {
|
|
221
|
+
context.throw(400, "First node could not be moved up");
|
|
222
|
+
}
|
|
223
|
+
const upUpStreamId = upstream.upstreamId;
|
|
224
|
+
const upStreamId = upstream.id;
|
|
225
|
+
if (upUpStreamId) {
|
|
226
|
+
await repository.update({
|
|
227
|
+
filterByTk: upUpStreamId,
|
|
228
|
+
values: {
|
|
229
|
+
downstreamId: instance.id
|
|
230
|
+
},
|
|
231
|
+
transaction
|
|
232
|
+
});
|
|
233
|
+
}
|
|
234
|
+
await upstream.update(
|
|
235
|
+
{
|
|
236
|
+
downstreamId: instance.downstreamId,
|
|
237
|
+
upstreamId: instance.id
|
|
238
|
+
},
|
|
239
|
+
{ transaction }
|
|
240
|
+
);
|
|
241
|
+
await instance.update(
|
|
242
|
+
{
|
|
243
|
+
downstreamId: instance.upstreamId,
|
|
244
|
+
upstreamId: upUpStreamId
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
transaction
|
|
248
|
+
}
|
|
249
|
+
);
|
|
250
|
+
if (downstream) {
|
|
251
|
+
await downstream.update(
|
|
252
|
+
{
|
|
253
|
+
upstreamId: upStreamId
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
transaction
|
|
257
|
+
}
|
|
258
|
+
);
|
|
259
|
+
}
|
|
260
|
+
});
|
|
261
|
+
context.body = instance;
|
|
262
|
+
await next();
|
|
263
|
+
}
|
|
264
|
+
async function moveDown(context, next) {
|
|
265
|
+
const { db } = context;
|
|
266
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
267
|
+
const { filterByTk } = context.action.params;
|
|
268
|
+
const fields = ["id", "upstreamId", "downstreamId", "branchIndex", "key"];
|
|
269
|
+
const instance = await repository.findOne({
|
|
270
|
+
filterByTk,
|
|
271
|
+
fields: [...fields, "workflowId"],
|
|
272
|
+
appends: ["upstream", "downstream", "workflow"]
|
|
273
|
+
});
|
|
274
|
+
if (instance.workflow.executed) {
|
|
275
|
+
context.throw(400, "Nodes in executed workflow could not be deleted");
|
|
276
|
+
}
|
|
277
|
+
await db.sequelize.transaction(async (transaction) => {
|
|
278
|
+
const { upstream, downstream } = instance.get();
|
|
279
|
+
const downDownstreamId = downstream.downstreamId;
|
|
280
|
+
if (!downstream) {
|
|
281
|
+
context.throw(400, "Last node could not be moved up");
|
|
282
|
+
}
|
|
283
|
+
if (upstream) {
|
|
284
|
+
await upstream.update({
|
|
285
|
+
downstreamId: instance.downstreamId
|
|
286
|
+
}, {
|
|
287
|
+
transaction
|
|
288
|
+
});
|
|
289
|
+
}
|
|
290
|
+
await downstream.update({
|
|
291
|
+
upstreamId: instance.upstreamId,
|
|
292
|
+
downstreamId: instance.id
|
|
293
|
+
}, {
|
|
294
|
+
transaction
|
|
295
|
+
});
|
|
296
|
+
await instance.update({
|
|
297
|
+
downstreamId: downDownstreamId,
|
|
298
|
+
upstreamId: downstream.id
|
|
299
|
+
}, {
|
|
300
|
+
transaction
|
|
301
|
+
});
|
|
302
|
+
if (downDownstreamId) {
|
|
303
|
+
await repository.update({
|
|
304
|
+
filterByTk: downDownstreamId,
|
|
305
|
+
values: {
|
|
306
|
+
upstreamId: instance.id
|
|
307
|
+
},
|
|
308
|
+
transaction
|
|
309
|
+
});
|
|
310
|
+
}
|
|
311
|
+
});
|
|
312
|
+
context.body = instance;
|
|
313
|
+
await next();
|
|
314
|
+
}
|
|
315
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
316
|
+
0 && (module.exports = {
|
|
317
|
+
create,
|
|
318
|
+
destroy,
|
|
319
|
+
moveDown,
|
|
320
|
+
moveUp,
|
|
321
|
+
update
|
|
322
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Context, Next } from '@tachybase/actions';
|
|
2
|
+
export declare function update(context: Context, next: any): Promise<void>;
|
|
3
|
+
export declare function destroy(context: Context, next: any): Promise<void>;
|
|
4
|
+
export declare function dump(context: Context, next: Next): Promise<void>;
|
|
5
|
+
export declare function load(context: Context, next: Next): Promise<void>;
|
|
6
|
+
export declare function test(context: Context, next: Next): Promise<void>;
|
|
7
|
+
export declare function revision(context: Context, next: Next): Promise<void>;
|
|
8
|
+
export declare function retry(context: Context, next: Next): Promise<void>;
|
|
9
|
+
export declare function sync(context: Context, next: any): Promise<void>;
|
|
10
|
+
export declare function trigger(ctx: Context, next: Next): Promise<void>;
|
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var workflows_exports = {};
|
|
29
|
+
__export(workflows_exports, {
|
|
30
|
+
destroy: () => destroy,
|
|
31
|
+
dump: () => dump,
|
|
32
|
+
load: () => load,
|
|
33
|
+
retry: () => retry,
|
|
34
|
+
revision: () => revision,
|
|
35
|
+
sync: () => sync,
|
|
36
|
+
test: () => test,
|
|
37
|
+
trigger: () => trigger,
|
|
38
|
+
update: () => update
|
|
39
|
+
});
|
|
40
|
+
module.exports = __toCommonJS(workflows_exports);
|
|
41
|
+
var import_actions = __toESM(require("@tachybase/actions"));
|
|
42
|
+
var import_database = require("@tachybase/database");
|
|
43
|
+
var import_Plugin = __toESM(require("../Plugin"));
|
|
44
|
+
async function update(context, next) {
|
|
45
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
46
|
+
const { filterByTk, values } = context.action.params;
|
|
47
|
+
context.action.mergeParams({
|
|
48
|
+
whitelist: ["title", "description", "enabled", "triggerTitle", "config", "options", "type", "sync", "tags"]
|
|
49
|
+
});
|
|
50
|
+
if (Object.keys(values).includes("config")) {
|
|
51
|
+
const workflow = await repository.findById(filterByTk);
|
|
52
|
+
if (workflow.get("executed")) {
|
|
53
|
+
return context.throw(400, "config of executed workflow can not be updated");
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
return import_actions.default.update(context, next);
|
|
57
|
+
}
|
|
58
|
+
async function destroy(context, next) {
|
|
59
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
60
|
+
const { filterByTk, filter } = context.action.params;
|
|
61
|
+
await context.db.sequelize.transaction(async (transaction) => {
|
|
62
|
+
const items = await repository.find({
|
|
63
|
+
filterByTk,
|
|
64
|
+
filter,
|
|
65
|
+
fields: ["id", "key", "current"],
|
|
66
|
+
transaction
|
|
67
|
+
});
|
|
68
|
+
const ids = new Set(items.map((item) => item.id));
|
|
69
|
+
const keysSet = new Set(items.filter((item) => item.current).map((item) => item.key));
|
|
70
|
+
const revisions = await repository.find({
|
|
71
|
+
filter: {
|
|
72
|
+
key: Array.from(keysSet),
|
|
73
|
+
current: { [import_database.Op.not]: true }
|
|
74
|
+
},
|
|
75
|
+
fields: ["id"],
|
|
76
|
+
transaction
|
|
77
|
+
});
|
|
78
|
+
revisions.forEach((item) => ids.add(item.id));
|
|
79
|
+
context.body = await repository.destroy({
|
|
80
|
+
filterByTk: Array.from(ids),
|
|
81
|
+
individualHooks: true,
|
|
82
|
+
transaction
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
next();
|
|
86
|
+
}
|
|
87
|
+
async function dump(context, next) {
|
|
88
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
89
|
+
const { filterByTk, filter = {}, values = {} } = context.action.params;
|
|
90
|
+
context.body = await context.db.sequelize.transaction(async (transaction) => {
|
|
91
|
+
const origin = await repository.findOne({
|
|
92
|
+
filterByTk,
|
|
93
|
+
filter,
|
|
94
|
+
appends: ["nodes"],
|
|
95
|
+
context,
|
|
96
|
+
transaction
|
|
97
|
+
});
|
|
98
|
+
const revisionData = filter.key ? {
|
|
99
|
+
key: filter.key,
|
|
100
|
+
title: origin.title,
|
|
101
|
+
triggerTitle: origin.triggerTitle,
|
|
102
|
+
allExecuted: origin.allExecuted,
|
|
103
|
+
sync: origin.sync,
|
|
104
|
+
initAt: origin.initAt
|
|
105
|
+
} : values;
|
|
106
|
+
const dumpOne = {
|
|
107
|
+
...origin.toJSON(),
|
|
108
|
+
...revisionData
|
|
109
|
+
};
|
|
110
|
+
return dumpOne;
|
|
111
|
+
});
|
|
112
|
+
await next();
|
|
113
|
+
}
|
|
114
|
+
async function load(context, next) {
|
|
115
|
+
const plugin = context.app.getPlugin(import_Plugin.default);
|
|
116
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
117
|
+
const { values = {} } = context.action.params;
|
|
118
|
+
context.body = await context.db.sequelize.transaction(async (transaction) => {
|
|
119
|
+
const origin = values.workflow;
|
|
120
|
+
const trigger2 = plugin.triggers.get(origin.type);
|
|
121
|
+
const instance = await repository.create({
|
|
122
|
+
values: {
|
|
123
|
+
title: values.title,
|
|
124
|
+
description: origin.description,
|
|
125
|
+
type: origin.type,
|
|
126
|
+
triggerTitle: origin.triggerTitle,
|
|
127
|
+
allExecuted: origin.allExecuted,
|
|
128
|
+
sync: origin.sync,
|
|
129
|
+
initAt: origin.initAt,
|
|
130
|
+
config: typeof trigger2.duplicateConfig === "function" ? await trigger2.duplicateConfig(origin, { transaction }) : origin.config
|
|
131
|
+
},
|
|
132
|
+
transaction
|
|
133
|
+
});
|
|
134
|
+
const originalNodesMap = /* @__PURE__ */ new Map();
|
|
135
|
+
origin.nodes.forEach((node) => {
|
|
136
|
+
originalNodesMap.set(node.id, node);
|
|
137
|
+
});
|
|
138
|
+
const oldToNew = /* @__PURE__ */ new Map();
|
|
139
|
+
const newToOld = /* @__PURE__ */ new Map();
|
|
140
|
+
for await (const node of origin.nodes) {
|
|
141
|
+
const instruction = plugin.instructions.get(node.type);
|
|
142
|
+
const newNode = await instance.createNode(
|
|
143
|
+
{
|
|
144
|
+
type: node.type,
|
|
145
|
+
key: node.key,
|
|
146
|
+
config: typeof instruction.duplicateConfig === "function" ? await instruction.duplicateConfig(node, { transaction }) : node.config,
|
|
147
|
+
title: node.title,
|
|
148
|
+
branchIndex: node.branchIndex
|
|
149
|
+
},
|
|
150
|
+
{ transaction }
|
|
151
|
+
);
|
|
152
|
+
oldToNew.set(node.id, newNode);
|
|
153
|
+
newToOld.set(newNode.id, node);
|
|
154
|
+
}
|
|
155
|
+
for await (const [oldId, newNode] of oldToNew.entries()) {
|
|
156
|
+
const oldNode = originalNodesMap.get(oldId);
|
|
157
|
+
const newUpstream = oldNode.upstreamId ? oldToNew.get(oldNode.upstreamId) : null;
|
|
158
|
+
const newDownstream = oldNode.downstreamId ? oldToNew.get(oldNode.downstreamId) : null;
|
|
159
|
+
await newNode.update(
|
|
160
|
+
{
|
|
161
|
+
upstreamId: (newUpstream == null ? void 0 : newUpstream.id) ?? null,
|
|
162
|
+
downstreamId: (newDownstream == null ? void 0 : newDownstream.id) ?? null
|
|
163
|
+
},
|
|
164
|
+
{ transaction }
|
|
165
|
+
);
|
|
166
|
+
}
|
|
167
|
+
return instance;
|
|
168
|
+
});
|
|
169
|
+
await next();
|
|
170
|
+
}
|
|
171
|
+
async function test(context, next) {
|
|
172
|
+
const plugin = context.app.getPlugin(import_Plugin.default);
|
|
173
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
174
|
+
const { filterByTk, filter = {}, values = {} } = context.action.params;
|
|
175
|
+
if (!context.state) {
|
|
176
|
+
context.state = {};
|
|
177
|
+
}
|
|
178
|
+
if (!context.state.messages) {
|
|
179
|
+
context.state.messages = [];
|
|
180
|
+
}
|
|
181
|
+
const workflow = await repository.findOne({
|
|
182
|
+
filterByTk,
|
|
183
|
+
filter,
|
|
184
|
+
appends: ["nodes"],
|
|
185
|
+
context
|
|
186
|
+
});
|
|
187
|
+
const result = await plugin.trigger(
|
|
188
|
+
workflow,
|
|
189
|
+
{
|
|
190
|
+
data: {
|
|
191
|
+
...values.data,
|
|
192
|
+
user: context.state.currentUse
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
{ httpContext: context }
|
|
196
|
+
);
|
|
197
|
+
context.app.logger.info(result);
|
|
198
|
+
context.state.messages.push({ message: "testing" });
|
|
199
|
+
context.body = "here???";
|
|
200
|
+
}
|
|
201
|
+
async function revision(context, next) {
|
|
202
|
+
const plugin = context.app.getPlugin(import_Plugin.default);
|
|
203
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
204
|
+
const { filterByTk, filter = {}, values = {} } = context.action.params;
|
|
205
|
+
context.body = await context.db.sequelize.transaction(async (transaction) => {
|
|
206
|
+
const origin = await repository.findOne({
|
|
207
|
+
filterByTk,
|
|
208
|
+
filter,
|
|
209
|
+
appends: ["nodes"],
|
|
210
|
+
context,
|
|
211
|
+
transaction
|
|
212
|
+
});
|
|
213
|
+
const trigger2 = plugin.triggers.get(origin.type);
|
|
214
|
+
const revisionData = filter.key ? {
|
|
215
|
+
key: filter.key,
|
|
216
|
+
title: origin.title,
|
|
217
|
+
triggerTitle: origin.triggerTitle,
|
|
218
|
+
allExecuted: origin.allExecuted,
|
|
219
|
+
sync: origin.sync,
|
|
220
|
+
initAt: origin.initAt
|
|
221
|
+
} : values;
|
|
222
|
+
const instance = await repository.create({
|
|
223
|
+
values: {
|
|
224
|
+
title: `${origin.title} copy`,
|
|
225
|
+
description: origin.description,
|
|
226
|
+
...revisionData,
|
|
227
|
+
type: origin.type,
|
|
228
|
+
config: typeof trigger2.duplicateConfig === "function" ? await trigger2.duplicateConfig(origin, { transaction }) : origin.config
|
|
229
|
+
},
|
|
230
|
+
transaction
|
|
231
|
+
});
|
|
232
|
+
const originalNodesMap = /* @__PURE__ */ new Map();
|
|
233
|
+
origin.nodes.forEach((node) => {
|
|
234
|
+
originalNodesMap.set(node.id, node);
|
|
235
|
+
});
|
|
236
|
+
const oldToNew = /* @__PURE__ */ new Map();
|
|
237
|
+
const newToOld = /* @__PURE__ */ new Map();
|
|
238
|
+
for await (const node of origin.nodes) {
|
|
239
|
+
const instruction = plugin.instructions.get(node.type);
|
|
240
|
+
const newNode = await instance.createNode(
|
|
241
|
+
{
|
|
242
|
+
type: node.type,
|
|
243
|
+
key: node.key,
|
|
244
|
+
config: typeof instruction.duplicateConfig === "function" ? await instruction.duplicateConfig(node, { transaction }) : node.config,
|
|
245
|
+
title: node.title,
|
|
246
|
+
branchIndex: node.branchIndex
|
|
247
|
+
},
|
|
248
|
+
{ transaction }
|
|
249
|
+
);
|
|
250
|
+
oldToNew.set(node.id, newNode);
|
|
251
|
+
newToOld.set(newNode.id, node);
|
|
252
|
+
}
|
|
253
|
+
for await (const [oldId, newNode] of oldToNew.entries()) {
|
|
254
|
+
const oldNode = originalNodesMap.get(oldId);
|
|
255
|
+
const newUpstream = oldNode.upstreamId ? oldToNew.get(oldNode.upstreamId) : null;
|
|
256
|
+
const newDownstream = oldNode.downstreamId ? oldToNew.get(oldNode.downstreamId) : null;
|
|
257
|
+
await newNode.update(
|
|
258
|
+
{
|
|
259
|
+
upstreamId: (newUpstream == null ? void 0 : newUpstream.id) ?? null,
|
|
260
|
+
downstreamId: (newDownstream == null ? void 0 : newDownstream.id) ?? null
|
|
261
|
+
},
|
|
262
|
+
{ transaction }
|
|
263
|
+
);
|
|
264
|
+
}
|
|
265
|
+
return instance;
|
|
266
|
+
});
|
|
267
|
+
await next();
|
|
268
|
+
}
|
|
269
|
+
async function retry(context, next) {
|
|
270
|
+
const plugin = context.app.getPlugin(import_Plugin.default);
|
|
271
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
272
|
+
const { filterByTk, filter = {}, values = {} } = context.action.params;
|
|
273
|
+
const ExecutionRepo = context.db.getRepository("executions");
|
|
274
|
+
if (!context.state) {
|
|
275
|
+
context.state = {};
|
|
276
|
+
}
|
|
277
|
+
if (!context.state.messages) {
|
|
278
|
+
context.state.messages = [];
|
|
279
|
+
}
|
|
280
|
+
const workflow = await repository.findOne({
|
|
281
|
+
filterByTk,
|
|
282
|
+
filter,
|
|
283
|
+
appends: ["nodes"],
|
|
284
|
+
context
|
|
285
|
+
});
|
|
286
|
+
const execution = await ExecutionRepo.findOne({
|
|
287
|
+
filter: { key: workflow.key },
|
|
288
|
+
sort: ["-createdAt"]
|
|
289
|
+
});
|
|
290
|
+
if (!execution) {
|
|
291
|
+
context.state.messages.push({ message: "No execution records found for this workflow." });
|
|
292
|
+
}
|
|
293
|
+
const executionId = execution.id;
|
|
294
|
+
const result = await plugin.trigger(workflow, execution.context, { httpContext: context });
|
|
295
|
+
context.app.logger.info(result);
|
|
296
|
+
context.state.messages.push({ message: "Execute successfully" });
|
|
297
|
+
context.body = { executionId };
|
|
298
|
+
await next();
|
|
299
|
+
}
|
|
300
|
+
async function sync(context, next) {
|
|
301
|
+
const plugin = context.app.getPlugin(import_Plugin.default);
|
|
302
|
+
const repository = import_actions.utils.getRepositoryFromParams(context);
|
|
303
|
+
const { filterByTk, filter = {} } = context.action.params;
|
|
304
|
+
const workflows = await repository.find({
|
|
305
|
+
filterByTk,
|
|
306
|
+
filter
|
|
307
|
+
});
|
|
308
|
+
workflows.forEach((workflow) => {
|
|
309
|
+
plugin.toggle(workflow, false);
|
|
310
|
+
plugin.toggle(workflow);
|
|
311
|
+
});
|
|
312
|
+
context.status = 204;
|
|
313
|
+
await next();
|
|
314
|
+
}
|
|
315
|
+
async function trigger(ctx, next) {
|
|
316
|
+
var _a, _b;
|
|
317
|
+
if (!ctx.action.params.triggerWorkflows) {
|
|
318
|
+
const plugin = ctx.app.getPlugin(import_Plugin.default);
|
|
319
|
+
const workflow = await ctx.db.getRepository("workflows").findById(ctx.action.params.filterByTk);
|
|
320
|
+
const updateData = JSON.parse(decodeURIComponent(((_a = ctx.action.params) == null ? void 0 : _a.updateData) || ""));
|
|
321
|
+
plugin.trigger(
|
|
322
|
+
workflow,
|
|
323
|
+
{
|
|
324
|
+
data: {
|
|
325
|
+
updateData,
|
|
326
|
+
httpContext: ctx,
|
|
327
|
+
user: (_b = ctx == null ? void 0 : ctx.auth) == null ? void 0 : _b.user
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{ httpContext: ctx }
|
|
331
|
+
);
|
|
332
|
+
} else {
|
|
333
|
+
await next();
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
337
|
+
0 && (module.exports = {
|
|
338
|
+
destroy,
|
|
339
|
+
dump,
|
|
340
|
+
load,
|
|
341
|
+
retry,
|
|
342
|
+
revision,
|
|
343
|
+
sync,
|
|
344
|
+
test,
|
|
345
|
+
trigger,
|
|
346
|
+
update
|
|
347
|
+
});
|