@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,798 @@
|
|
|
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 swagger_exports = {};
|
|
19
|
+
__export(swagger_exports, {
|
|
20
|
+
default: () => swagger_default
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(swagger_exports);
|
|
23
|
+
var swagger_default = {
|
|
24
|
+
openapi: "3.0.2",
|
|
25
|
+
info: {
|
|
26
|
+
title: "TachyBase API - Workflow plugin"
|
|
27
|
+
},
|
|
28
|
+
tags: [],
|
|
29
|
+
paths: {
|
|
30
|
+
"/workflows:list": {
|
|
31
|
+
get: {
|
|
32
|
+
tags: ["workflows"],
|
|
33
|
+
description: "",
|
|
34
|
+
parameters: [
|
|
35
|
+
{
|
|
36
|
+
$ref: "#/components/schemas/workflow/filter"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
responses: {
|
|
40
|
+
200: {
|
|
41
|
+
description: "OK",
|
|
42
|
+
content: {
|
|
43
|
+
"application/json": {
|
|
44
|
+
schema: {
|
|
45
|
+
type: "array",
|
|
46
|
+
items: {
|
|
47
|
+
$ref: "#/components/schemas/workflow/model"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"/workflows:get": {
|
|
57
|
+
get: {
|
|
58
|
+
tags: ["workflows"],
|
|
59
|
+
description: "Get single workflow",
|
|
60
|
+
parameters: [
|
|
61
|
+
{
|
|
62
|
+
$ref: "#/components/schemas/workflow/filterByTk"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
$ref: "#/components/schemas/workflow/filter"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
responses: {
|
|
69
|
+
200: {
|
|
70
|
+
description: "OK",
|
|
71
|
+
content: {
|
|
72
|
+
"application/json": {
|
|
73
|
+
schema: {
|
|
74
|
+
allOf: [
|
|
75
|
+
{
|
|
76
|
+
$ref: "#/components/schemas/workflow/model"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
type: "object",
|
|
80
|
+
properties: {
|
|
81
|
+
nodes: {
|
|
82
|
+
type: "array",
|
|
83
|
+
items: {
|
|
84
|
+
$ref: "#/components/schemas/node"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"/workflows:create": {
|
|
98
|
+
post: {
|
|
99
|
+
tags: ["workflows"],
|
|
100
|
+
description: "Create new workflow",
|
|
101
|
+
parameters: [],
|
|
102
|
+
requestBody: {
|
|
103
|
+
content: {
|
|
104
|
+
"application/json": {
|
|
105
|
+
schema: {
|
|
106
|
+
type: "object",
|
|
107
|
+
properties: {
|
|
108
|
+
title: {
|
|
109
|
+
$ref: "#/components/schemas/workflow/model/properties/title"
|
|
110
|
+
},
|
|
111
|
+
type: {
|
|
112
|
+
$ref: "#/components/schemas/workflow/model/properties/type"
|
|
113
|
+
},
|
|
114
|
+
description: {
|
|
115
|
+
$ref: "#/components/schemas/workflow/model/properties/description"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
responses: {
|
|
123
|
+
200: {
|
|
124
|
+
description: "OK",
|
|
125
|
+
content: {
|
|
126
|
+
"application/json": {
|
|
127
|
+
schema: {
|
|
128
|
+
allOf: [
|
|
129
|
+
{
|
|
130
|
+
$ref: "#/components/schemas/workflow"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"/workflows:update": {
|
|
141
|
+
post: {
|
|
142
|
+
tags: ["workflows"],
|
|
143
|
+
description: "Update a workflow",
|
|
144
|
+
parameters: [],
|
|
145
|
+
requestBody: {
|
|
146
|
+
content: {
|
|
147
|
+
"application/json": {
|
|
148
|
+
schema: {
|
|
149
|
+
type: "object",
|
|
150
|
+
properties: {
|
|
151
|
+
title: {
|
|
152
|
+
$ref: "#/components/schemas/workflow/model/properties/title"
|
|
153
|
+
},
|
|
154
|
+
enabled: {
|
|
155
|
+
$ref: "#/components/schemas/workflow/model/properties/enabled"
|
|
156
|
+
},
|
|
157
|
+
description: {
|
|
158
|
+
$ref: "#/components/schemas/workflow/model/properties/description"
|
|
159
|
+
},
|
|
160
|
+
config: {
|
|
161
|
+
$ref: "#/components/schemas/workflow/model/properties/config"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
responses: {
|
|
169
|
+
200: {
|
|
170
|
+
description: "OK"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"/workflows:destroy": {
|
|
176
|
+
post: {
|
|
177
|
+
tags: ["workflows"],
|
|
178
|
+
description: "Delete workflows. Also will delete all nodes and executions of the workflow.",
|
|
179
|
+
parameters: [
|
|
180
|
+
{
|
|
181
|
+
name: "filterByTk",
|
|
182
|
+
in: "query",
|
|
183
|
+
description: "Primary key of a record",
|
|
184
|
+
schema: {
|
|
185
|
+
type: "integer",
|
|
186
|
+
description: "ID. The only workflow with ID will be deleted."
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
name: "filter",
|
|
191
|
+
in: "query",
|
|
192
|
+
description: "Filter",
|
|
193
|
+
schema: {
|
|
194
|
+
type: "object",
|
|
195
|
+
properties: {
|
|
196
|
+
key: {
|
|
197
|
+
type: "string",
|
|
198
|
+
description: "Key. If provided, all workflow with same key will be deleted."
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
responses: {
|
|
205
|
+
200: {
|
|
206
|
+
description: "OK"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"/workflows:revision": {
|
|
212
|
+
post: {
|
|
213
|
+
tags: ["workflows"],
|
|
214
|
+
description: "Duplicate a workflow to a new version or a new workflow. All nodes will be duplicated too.",
|
|
215
|
+
parameters: [
|
|
216
|
+
{
|
|
217
|
+
name: "filterByTk",
|
|
218
|
+
in: "query",
|
|
219
|
+
description: "Primary key of a record",
|
|
220
|
+
schema: {
|
|
221
|
+
type: "integer",
|
|
222
|
+
description: "ID. The workflow to duplicate."
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
name: "filter",
|
|
227
|
+
in: "query",
|
|
228
|
+
description: "Filter",
|
|
229
|
+
schema: {
|
|
230
|
+
type: "object",
|
|
231
|
+
properties: {
|
|
232
|
+
key: {
|
|
233
|
+
type: "string",
|
|
234
|
+
description: "Key. If provided, only duplicate to a new version. Or will be duplicated to a new workflow."
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
responses: {
|
|
241
|
+
200: {
|
|
242
|
+
description: "OK"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"/workflows:trigger": {
|
|
248
|
+
post: {
|
|
249
|
+
tags: ["workflows"],
|
|
250
|
+
description: "",
|
|
251
|
+
parameters: [
|
|
252
|
+
{
|
|
253
|
+
name: "triggerWorkflows",
|
|
254
|
+
in: "query",
|
|
255
|
+
description: "A combined string to describe workflows to trigger and context data to use. e.g. `?triggerWorkflows=1,2!category`. Each comma separated part is a trigger pair, as `1` and `2!category`. The number part is the ID of workflow, exclamation means the path of association to use in form data. If ignored, will trigger with the full form data object.",
|
|
256
|
+
schema: {
|
|
257
|
+
type: "string"
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
responses: {
|
|
262
|
+
202: {
|
|
263
|
+
description: "Accepted"
|
|
264
|
+
},
|
|
265
|
+
400: {
|
|
266
|
+
description: "Bad Request"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"/workflows/{workflowId}/nodes:create": {
|
|
272
|
+
post: {
|
|
273
|
+
tags: ["workflows.nodes"],
|
|
274
|
+
description: "Create a new node in workflow",
|
|
275
|
+
parameters: [],
|
|
276
|
+
requestBody: {
|
|
277
|
+
content: {
|
|
278
|
+
"application/json": {
|
|
279
|
+
schema: {
|
|
280
|
+
type: "object",
|
|
281
|
+
properties: {
|
|
282
|
+
title: {
|
|
283
|
+
$ref: "#/components/schemas/node/properties/title"
|
|
284
|
+
},
|
|
285
|
+
type: {
|
|
286
|
+
$ref: "#/components/schemas/node/properties/type"
|
|
287
|
+
},
|
|
288
|
+
upstreamId: {
|
|
289
|
+
$ref: "#/components/schemas/node/properties/upstreamId"
|
|
290
|
+
},
|
|
291
|
+
branchIndex: {
|
|
292
|
+
$ref: "#/components/schemas/node/properties/branchIndex"
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
responses: {
|
|
300
|
+
200: {
|
|
301
|
+
description: "OK",
|
|
302
|
+
content: {
|
|
303
|
+
"application/json": {
|
|
304
|
+
schema: {
|
|
305
|
+
allOf: [
|
|
306
|
+
{
|
|
307
|
+
$ref: "#/components/schemas/node"
|
|
308
|
+
}
|
|
309
|
+
]
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"/flow_nodes:update": {
|
|
318
|
+
post: {
|
|
319
|
+
tags: ["flow_nodes"],
|
|
320
|
+
description: "Update node properties.",
|
|
321
|
+
parameters: [
|
|
322
|
+
{
|
|
323
|
+
name: "filterByTk",
|
|
324
|
+
in: "query",
|
|
325
|
+
description: "Primary key of a record",
|
|
326
|
+
schema: {
|
|
327
|
+
type: "integer",
|
|
328
|
+
description: "ID"
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
requestBody: {
|
|
333
|
+
content: {
|
|
334
|
+
"application/json": {
|
|
335
|
+
schema: {
|
|
336
|
+
type: "object",
|
|
337
|
+
properties: {
|
|
338
|
+
title: {
|
|
339
|
+
$ref: "#/components/schemas/node/properties/title"
|
|
340
|
+
},
|
|
341
|
+
config: {
|
|
342
|
+
$ref: "#/components/schemas/node/properties/config"
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
responses: {
|
|
350
|
+
200: {
|
|
351
|
+
description: "OK"
|
|
352
|
+
},
|
|
353
|
+
400: {
|
|
354
|
+
description: "Bad Request. Node in exected workflow cannot be updated."
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"/flow_nodes:destroy": {
|
|
360
|
+
post: {
|
|
361
|
+
tags: ["flow_nodes"],
|
|
362
|
+
description: "Delete a node. All nodes in sub-branches will also be deleted.",
|
|
363
|
+
parameters: [
|
|
364
|
+
{
|
|
365
|
+
name: "filterByTk",
|
|
366
|
+
in: "query",
|
|
367
|
+
description: "Primary key of a record",
|
|
368
|
+
schema: {
|
|
369
|
+
type: "integer",
|
|
370
|
+
description: "ID"
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
responses: {
|
|
375
|
+
200: {
|
|
376
|
+
description: "OK"
|
|
377
|
+
},
|
|
378
|
+
400: {
|
|
379
|
+
description: "Bad Request. Node in exected workflow cannot be deleted."
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"/executions:list": {
|
|
385
|
+
get: {
|
|
386
|
+
tags: ["executions"],
|
|
387
|
+
description: "Get list of executions",
|
|
388
|
+
parameters: [],
|
|
389
|
+
responses: {
|
|
390
|
+
200: {
|
|
391
|
+
description: "OK",
|
|
392
|
+
content: {
|
|
393
|
+
"application/json": {
|
|
394
|
+
schema: {
|
|
395
|
+
type: "array",
|
|
396
|
+
description: "List of executions",
|
|
397
|
+
items: {
|
|
398
|
+
$ref: "#/components/schemas/execution",
|
|
399
|
+
type: "object",
|
|
400
|
+
not: {
|
|
401
|
+
$ref: "#/components/schemas/execution/properties/jobs"
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"/executions:get": {
|
|
412
|
+
get: {
|
|
413
|
+
tags: ["executions"],
|
|
414
|
+
description: "Get single execution",
|
|
415
|
+
parameters: [
|
|
416
|
+
{
|
|
417
|
+
name: "filterByTk",
|
|
418
|
+
in: "query",
|
|
419
|
+
description: "Primary key of a record",
|
|
420
|
+
schema: {
|
|
421
|
+
type: "integer",
|
|
422
|
+
description: "ID"
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
responses: {
|
|
427
|
+
200: {
|
|
428
|
+
description: "OK",
|
|
429
|
+
content: {
|
|
430
|
+
"application/json": {
|
|
431
|
+
schema: {
|
|
432
|
+
$ref: "#/components/schemas/execution"
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
"/users_jobs:list": {
|
|
441
|
+
get: {
|
|
442
|
+
tags: ["users_jobs"],
|
|
443
|
+
description: "List manual jobs",
|
|
444
|
+
parameters: [],
|
|
445
|
+
responses: {
|
|
446
|
+
200: {
|
|
447
|
+
description: "OK",
|
|
448
|
+
content: {
|
|
449
|
+
"application/json": {
|
|
450
|
+
schema: {
|
|
451
|
+
type: "array",
|
|
452
|
+
description: "List of manual jobs",
|
|
453
|
+
items: {
|
|
454
|
+
$ref: "#/components/schemas/user_job"
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"/users_jobs:get": {
|
|
464
|
+
get: {
|
|
465
|
+
tags: ["users_jobs"],
|
|
466
|
+
description: "Single user job",
|
|
467
|
+
parameters: [],
|
|
468
|
+
responses: {
|
|
469
|
+
200: {
|
|
470
|
+
description: "OK",
|
|
471
|
+
content: {
|
|
472
|
+
"application/json": {
|
|
473
|
+
schema: {
|
|
474
|
+
allOf: [
|
|
475
|
+
{
|
|
476
|
+
$ref: "#/components/schemas/user_job"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
type: "object",
|
|
480
|
+
properties: {
|
|
481
|
+
execution: {
|
|
482
|
+
$ref: "#/components/schemas/execution"
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
]
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
"/users_jobs:submit": {
|
|
495
|
+
post: {
|
|
496
|
+
tags: ["users_jobs"],
|
|
497
|
+
description: "",
|
|
498
|
+
parameters: [
|
|
499
|
+
{
|
|
500
|
+
name: "filterByTk",
|
|
501
|
+
in: "query",
|
|
502
|
+
description: "Primary key of a record",
|
|
503
|
+
schema: {
|
|
504
|
+
type: "integer",
|
|
505
|
+
description: "ID"
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
],
|
|
509
|
+
requestBody: {
|
|
510
|
+
content: {
|
|
511
|
+
"application/json": {
|
|
512
|
+
schema: {
|
|
513
|
+
type: "object",
|
|
514
|
+
properties: {
|
|
515
|
+
result: {
|
|
516
|
+
type: "object",
|
|
517
|
+
properties: {
|
|
518
|
+
$formKey: {
|
|
519
|
+
type: "object"
|
|
520
|
+
},
|
|
521
|
+
_: {
|
|
522
|
+
type: "string"
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
responses: {
|
|
532
|
+
202: {
|
|
533
|
+
description: "Accepted"
|
|
534
|
+
},
|
|
535
|
+
400: {
|
|
536
|
+
description: "Bad Request. Status of the job is not 0."
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
components: {
|
|
543
|
+
schemas: {
|
|
544
|
+
workflow: {
|
|
545
|
+
model: {
|
|
546
|
+
type: "object",
|
|
547
|
+
description: "Workflow",
|
|
548
|
+
properties: {
|
|
549
|
+
id: {
|
|
550
|
+
type: "integer",
|
|
551
|
+
description: "ID"
|
|
552
|
+
},
|
|
553
|
+
key: {
|
|
554
|
+
type: "string",
|
|
555
|
+
description: "Key. Variant versions of the same workflow share the same key."
|
|
556
|
+
},
|
|
557
|
+
title: {
|
|
558
|
+
type: "string",
|
|
559
|
+
description: "Title"
|
|
560
|
+
},
|
|
561
|
+
description: {
|
|
562
|
+
type: "string",
|
|
563
|
+
description: "Description"
|
|
564
|
+
},
|
|
565
|
+
current: {
|
|
566
|
+
type: "boolean",
|
|
567
|
+
description: "Current version"
|
|
568
|
+
},
|
|
569
|
+
enabled: {
|
|
570
|
+
type: "boolean",
|
|
571
|
+
description: "Enabled"
|
|
572
|
+
},
|
|
573
|
+
type: {
|
|
574
|
+
type: "string",
|
|
575
|
+
description: "Event type"
|
|
576
|
+
},
|
|
577
|
+
config: {
|
|
578
|
+
type: "object",
|
|
579
|
+
description: "Configuration JSON object"
|
|
580
|
+
},
|
|
581
|
+
nodes: {
|
|
582
|
+
type: "array",
|
|
583
|
+
description: "Workflow nodes"
|
|
584
|
+
},
|
|
585
|
+
executions: {
|
|
586
|
+
type: "array",
|
|
587
|
+
description: "Executions"
|
|
588
|
+
},
|
|
589
|
+
revisions: {
|
|
590
|
+
type: "array",
|
|
591
|
+
description: "Revisions"
|
|
592
|
+
},
|
|
593
|
+
executed: {
|
|
594
|
+
type: "integer",
|
|
595
|
+
description: "Executed count for a single version"
|
|
596
|
+
},
|
|
597
|
+
allExecuted: {
|
|
598
|
+
type: "integer",
|
|
599
|
+
description: "Executed count for all versions of the same workflow"
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
filterByTk: {
|
|
604
|
+
name: "filterByTk",
|
|
605
|
+
in: "query",
|
|
606
|
+
description: "Primary key of a record",
|
|
607
|
+
schema: {
|
|
608
|
+
type: "integer",
|
|
609
|
+
description: "ID"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
filter: {
|
|
613
|
+
name: "filter",
|
|
614
|
+
in: "query",
|
|
615
|
+
description: "Filter parameters in JSON format",
|
|
616
|
+
schema: {
|
|
617
|
+
type: "object",
|
|
618
|
+
properties: {
|
|
619
|
+
id: {
|
|
620
|
+
$ref: "#/components/schemas/workflow/model/properties/id"
|
|
621
|
+
},
|
|
622
|
+
title: {
|
|
623
|
+
$ref: "#/components/schemas/workflow/model/properties/title"
|
|
624
|
+
},
|
|
625
|
+
type: {
|
|
626
|
+
$ref: "#/components/schemas/workflow/model/properties/type"
|
|
627
|
+
},
|
|
628
|
+
enabled: {
|
|
629
|
+
$ref: "#/components/schemas/workflow/model/properties/enabled"
|
|
630
|
+
},
|
|
631
|
+
current: {
|
|
632
|
+
$ref: "#/components/schemas/workflow/model/properties/current"
|
|
633
|
+
},
|
|
634
|
+
key: {
|
|
635
|
+
$ref: "#/components/schemas/workflow/model/properties/key"
|
|
636
|
+
},
|
|
637
|
+
executed: {
|
|
638
|
+
$ref: "#/components/schemas/workflow/model/properties/executed"
|
|
639
|
+
},
|
|
640
|
+
allExecuted: {
|
|
641
|
+
$ref: "#/components/schemas/workflow/model/properties/allExecuted"
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
node: {
|
|
648
|
+
type: "object",
|
|
649
|
+
description: "Workflow node",
|
|
650
|
+
properties: {
|
|
651
|
+
id: {
|
|
652
|
+
type: "integer",
|
|
653
|
+
description: "ID"
|
|
654
|
+
},
|
|
655
|
+
title: {
|
|
656
|
+
type: "string",
|
|
657
|
+
description: "Title"
|
|
658
|
+
},
|
|
659
|
+
workflowId: {
|
|
660
|
+
type: "integer",
|
|
661
|
+
description: "Workflow ID"
|
|
662
|
+
},
|
|
663
|
+
upstreamId: {
|
|
664
|
+
type: "integer",
|
|
665
|
+
description: "Upstream node ID"
|
|
666
|
+
},
|
|
667
|
+
upstream: {
|
|
668
|
+
type: "object",
|
|
669
|
+
description: "Upstream node",
|
|
670
|
+
$ref: "#/components/schemas/node"
|
|
671
|
+
},
|
|
672
|
+
downstreamId: {
|
|
673
|
+
type: "integer",
|
|
674
|
+
description: "Downstream node ID in flow, not in sub-branches",
|
|
675
|
+
$ref: "#/components/schemas/node"
|
|
676
|
+
},
|
|
677
|
+
downstream: {
|
|
678
|
+
type: "object",
|
|
679
|
+
description: "Downstream node",
|
|
680
|
+
$ref: "#/components/schemas/node"
|
|
681
|
+
},
|
|
682
|
+
type: {
|
|
683
|
+
type: "string",
|
|
684
|
+
description: "Node type"
|
|
685
|
+
},
|
|
686
|
+
config: {
|
|
687
|
+
type: "object",
|
|
688
|
+
description: "Configuration JSON object"
|
|
689
|
+
},
|
|
690
|
+
branchIndex: {
|
|
691
|
+
type: "integer",
|
|
692
|
+
description: "Non-null if the node is a branch node of upstream"
|
|
693
|
+
},
|
|
694
|
+
branches: {
|
|
695
|
+
type: "array",
|
|
696
|
+
description: "Branch nodes under the node",
|
|
697
|
+
items: {
|
|
698
|
+
$ref: "#/components/schemas/node"
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
execution: {
|
|
704
|
+
type: "object",
|
|
705
|
+
description: "Execution record of workflow",
|
|
706
|
+
properties: {
|
|
707
|
+
id: {
|
|
708
|
+
type: "integer",
|
|
709
|
+
description: "ID"
|
|
710
|
+
},
|
|
711
|
+
key: {
|
|
712
|
+
type: "string",
|
|
713
|
+
description: "Workflow key"
|
|
714
|
+
},
|
|
715
|
+
workflowId: {
|
|
716
|
+
type: "integer",
|
|
717
|
+
description: "Workflow ID"
|
|
718
|
+
},
|
|
719
|
+
context: {
|
|
720
|
+
type: "object",
|
|
721
|
+
description: "Context data"
|
|
722
|
+
},
|
|
723
|
+
status: {
|
|
724
|
+
type: "integer",
|
|
725
|
+
description: "Status of execution"
|
|
726
|
+
},
|
|
727
|
+
jobs: {
|
|
728
|
+
type: "array",
|
|
729
|
+
description: "Results of executed nodes",
|
|
730
|
+
items: {
|
|
731
|
+
$ref: "#/components/schemas/job"
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
job: {
|
|
737
|
+
type: "object",
|
|
738
|
+
description: "Job record of exected node",
|
|
739
|
+
properties: {
|
|
740
|
+
id: {
|
|
741
|
+
type: "integer",
|
|
742
|
+
description: "ID"
|
|
743
|
+
},
|
|
744
|
+
executionId: {
|
|
745
|
+
type: "integer",
|
|
746
|
+
description: "Execution ID"
|
|
747
|
+
},
|
|
748
|
+
nodeId: {
|
|
749
|
+
type: "integer",
|
|
750
|
+
description: "Node ID"
|
|
751
|
+
},
|
|
752
|
+
status: {
|
|
753
|
+
type: "integer",
|
|
754
|
+
description: "Status of job"
|
|
755
|
+
},
|
|
756
|
+
result: {
|
|
757
|
+
type: "object",
|
|
758
|
+
description: "Result data of job"
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
user_job: {
|
|
763
|
+
type: "object",
|
|
764
|
+
description: "User job",
|
|
765
|
+
properties: {
|
|
766
|
+
id: {
|
|
767
|
+
type: "integer",
|
|
768
|
+
description: "ID"
|
|
769
|
+
},
|
|
770
|
+
executionId: {
|
|
771
|
+
type: "integer",
|
|
772
|
+
description: "Execution ID"
|
|
773
|
+
},
|
|
774
|
+
nodeId: {
|
|
775
|
+
type: "integer",
|
|
776
|
+
description: "Node ID"
|
|
777
|
+
},
|
|
778
|
+
workflowId: {
|
|
779
|
+
type: "integer",
|
|
780
|
+
description: "Workflow ID"
|
|
781
|
+
},
|
|
782
|
+
userId: {
|
|
783
|
+
type: "integer",
|
|
784
|
+
description: "User ID"
|
|
785
|
+
},
|
|
786
|
+
status: {
|
|
787
|
+
type: "integer",
|
|
788
|
+
description: "Status of job"
|
|
789
|
+
},
|
|
790
|
+
result: {
|
|
791
|
+
type: "object",
|
|
792
|
+
description: "Result data of job"
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
};
|