@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,380 @@
|
|
|
1
|
+
import { ISchema } from '@tachybase/schema';
|
|
2
|
+
export declare const executionCollection: {
|
|
3
|
+
name: string;
|
|
4
|
+
fields: {
|
|
5
|
+
interface: string;
|
|
6
|
+
type: string;
|
|
7
|
+
name: string;
|
|
8
|
+
uiSchema: ISchema;
|
|
9
|
+
}[];
|
|
10
|
+
};
|
|
11
|
+
export declare const getExecutionSchema: (params?: any) => {
|
|
12
|
+
type: string;
|
|
13
|
+
name: string;
|
|
14
|
+
title: string;
|
|
15
|
+
'x-component': string;
|
|
16
|
+
properties: {
|
|
17
|
+
content: {
|
|
18
|
+
type: string;
|
|
19
|
+
'x-decorator': string;
|
|
20
|
+
'x-decorator-props': {
|
|
21
|
+
collection: {
|
|
22
|
+
name: string;
|
|
23
|
+
fields: {
|
|
24
|
+
interface: string;
|
|
25
|
+
type: string;
|
|
26
|
+
name: string;
|
|
27
|
+
uiSchema: ISchema;
|
|
28
|
+
}[];
|
|
29
|
+
};
|
|
30
|
+
dataSource: string;
|
|
31
|
+
action: string;
|
|
32
|
+
params: {
|
|
33
|
+
appends: string[];
|
|
34
|
+
pageSize: number;
|
|
35
|
+
sort: string[];
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
properties: {
|
|
39
|
+
actions: {
|
|
40
|
+
type: string;
|
|
41
|
+
'x-component': string;
|
|
42
|
+
'x-component-props': {
|
|
43
|
+
style: {
|
|
44
|
+
marginBottom: number;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
properties: {
|
|
48
|
+
refresher: {
|
|
49
|
+
type: string;
|
|
50
|
+
title: string;
|
|
51
|
+
'x-action': string;
|
|
52
|
+
'x-component': string;
|
|
53
|
+
'x-use-component-props': string;
|
|
54
|
+
'x-designer': string;
|
|
55
|
+
'x-component-props': {
|
|
56
|
+
icon: string;
|
|
57
|
+
};
|
|
58
|
+
'x-align': string;
|
|
59
|
+
};
|
|
60
|
+
clear: {
|
|
61
|
+
type: string;
|
|
62
|
+
title: string;
|
|
63
|
+
'x-component': string;
|
|
64
|
+
'x-component-props': {
|
|
65
|
+
isShow: any;
|
|
66
|
+
useAction(): {
|
|
67
|
+
run(): Promise<void>;
|
|
68
|
+
};
|
|
69
|
+
confirm: {
|
|
70
|
+
title: string;
|
|
71
|
+
content: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
table: {
|
|
78
|
+
type: string;
|
|
79
|
+
'x-component': string;
|
|
80
|
+
'x-use-component-props': string;
|
|
81
|
+
'x-component-props': {
|
|
82
|
+
rowKey: string;
|
|
83
|
+
};
|
|
84
|
+
properties: {
|
|
85
|
+
actions: {
|
|
86
|
+
type: string;
|
|
87
|
+
title: string;
|
|
88
|
+
'x-component': string;
|
|
89
|
+
'x-component-props': {
|
|
90
|
+
width: number;
|
|
91
|
+
};
|
|
92
|
+
properties: {
|
|
93
|
+
actions: {
|
|
94
|
+
type: string;
|
|
95
|
+
'x-component': string;
|
|
96
|
+
'x-component-props': {
|
|
97
|
+
split: string;
|
|
98
|
+
};
|
|
99
|
+
properties: {
|
|
100
|
+
link: {
|
|
101
|
+
type: string;
|
|
102
|
+
'x-component': string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
id: {
|
|
109
|
+
type: string;
|
|
110
|
+
'x-decorator': string;
|
|
111
|
+
'x-component': string;
|
|
112
|
+
'x-component-props': {
|
|
113
|
+
width: number;
|
|
114
|
+
};
|
|
115
|
+
properties: {
|
|
116
|
+
id: {
|
|
117
|
+
type: string;
|
|
118
|
+
'x-component': string;
|
|
119
|
+
'x-read-pretty': boolean;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
createdAt: {
|
|
124
|
+
type: string;
|
|
125
|
+
'x-decorator': string;
|
|
126
|
+
'x-component': string;
|
|
127
|
+
'x-component-props': {
|
|
128
|
+
width: number;
|
|
129
|
+
};
|
|
130
|
+
properties: {
|
|
131
|
+
createdAt: {
|
|
132
|
+
type: string;
|
|
133
|
+
'x-component': string;
|
|
134
|
+
'x-component-props': {
|
|
135
|
+
showTime: boolean;
|
|
136
|
+
};
|
|
137
|
+
'x-read-pretty': boolean;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
executionTime: {
|
|
142
|
+
type: string;
|
|
143
|
+
title: string;
|
|
144
|
+
'x-decorator': string;
|
|
145
|
+
'x-component': string;
|
|
146
|
+
'x-component-props': {
|
|
147
|
+
width: number;
|
|
148
|
+
};
|
|
149
|
+
properties: {
|
|
150
|
+
executionTime: {
|
|
151
|
+
type: string;
|
|
152
|
+
'x-decorator': string;
|
|
153
|
+
'x-component': string;
|
|
154
|
+
'x-read-pretty': boolean;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
workflowId: {
|
|
159
|
+
type: string;
|
|
160
|
+
'x-decorator': string;
|
|
161
|
+
'x-component': string;
|
|
162
|
+
'x-component-props': {
|
|
163
|
+
width: number;
|
|
164
|
+
};
|
|
165
|
+
properties: {
|
|
166
|
+
workflowId: {
|
|
167
|
+
type: string;
|
|
168
|
+
'x-component': string;
|
|
169
|
+
'x-read-pretty': boolean;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
status: {
|
|
174
|
+
type: string;
|
|
175
|
+
title: string;
|
|
176
|
+
'x-decorator': string;
|
|
177
|
+
'x-component': string;
|
|
178
|
+
'x-component-props': {
|
|
179
|
+
width: number;
|
|
180
|
+
};
|
|
181
|
+
properties: {
|
|
182
|
+
status: {
|
|
183
|
+
type: string;
|
|
184
|
+
'x-decorator': string;
|
|
185
|
+
'x-component': string;
|
|
186
|
+
'x-read-pretty': boolean;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
export declare const executionSchema: {
|
|
197
|
+
type: string;
|
|
198
|
+
name: string;
|
|
199
|
+
title: string;
|
|
200
|
+
'x-component': string;
|
|
201
|
+
properties: {
|
|
202
|
+
content: {
|
|
203
|
+
type: string;
|
|
204
|
+
'x-decorator': string;
|
|
205
|
+
'x-decorator-props': {
|
|
206
|
+
collection: {
|
|
207
|
+
name: string;
|
|
208
|
+
fields: {
|
|
209
|
+
interface: string;
|
|
210
|
+
type: string;
|
|
211
|
+
name: string;
|
|
212
|
+
uiSchema: ISchema;
|
|
213
|
+
}[];
|
|
214
|
+
};
|
|
215
|
+
dataSource: string;
|
|
216
|
+
action: string;
|
|
217
|
+
params: {
|
|
218
|
+
appends: string[];
|
|
219
|
+
pageSize: number;
|
|
220
|
+
sort: string[];
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
properties: {
|
|
224
|
+
actions: {
|
|
225
|
+
type: string;
|
|
226
|
+
'x-component': string;
|
|
227
|
+
'x-component-props': {
|
|
228
|
+
style: {
|
|
229
|
+
marginBottom: number;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
properties: {
|
|
233
|
+
refresher: {
|
|
234
|
+
type: string;
|
|
235
|
+
title: string;
|
|
236
|
+
'x-action': string;
|
|
237
|
+
'x-component': string;
|
|
238
|
+
'x-use-component-props': string;
|
|
239
|
+
'x-designer': string;
|
|
240
|
+
'x-component-props': {
|
|
241
|
+
icon: string;
|
|
242
|
+
};
|
|
243
|
+
'x-align': string;
|
|
244
|
+
};
|
|
245
|
+
clear: {
|
|
246
|
+
type: string;
|
|
247
|
+
title: string;
|
|
248
|
+
'x-component': string;
|
|
249
|
+
'x-component-props': {
|
|
250
|
+
isShow: any;
|
|
251
|
+
useAction(): {
|
|
252
|
+
run(): Promise<void>;
|
|
253
|
+
};
|
|
254
|
+
confirm: {
|
|
255
|
+
title: string;
|
|
256
|
+
content: string;
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
table: {
|
|
263
|
+
type: string;
|
|
264
|
+
'x-component': string;
|
|
265
|
+
'x-use-component-props': string;
|
|
266
|
+
'x-component-props': {
|
|
267
|
+
rowKey: string;
|
|
268
|
+
};
|
|
269
|
+
properties: {
|
|
270
|
+
actions: {
|
|
271
|
+
type: string;
|
|
272
|
+
title: string;
|
|
273
|
+
'x-component': string;
|
|
274
|
+
'x-component-props': {
|
|
275
|
+
width: number;
|
|
276
|
+
};
|
|
277
|
+
properties: {
|
|
278
|
+
actions: {
|
|
279
|
+
type: string;
|
|
280
|
+
'x-component': string;
|
|
281
|
+
'x-component-props': {
|
|
282
|
+
split: string;
|
|
283
|
+
};
|
|
284
|
+
properties: {
|
|
285
|
+
link: {
|
|
286
|
+
type: string;
|
|
287
|
+
'x-component': string;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
id: {
|
|
294
|
+
type: string;
|
|
295
|
+
'x-decorator': string;
|
|
296
|
+
'x-component': string;
|
|
297
|
+
'x-component-props': {
|
|
298
|
+
width: number;
|
|
299
|
+
};
|
|
300
|
+
properties: {
|
|
301
|
+
id: {
|
|
302
|
+
type: string;
|
|
303
|
+
'x-component': string;
|
|
304
|
+
'x-read-pretty': boolean;
|
|
305
|
+
};
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
createdAt: {
|
|
309
|
+
type: string;
|
|
310
|
+
'x-decorator': string;
|
|
311
|
+
'x-component': string;
|
|
312
|
+
'x-component-props': {
|
|
313
|
+
width: number;
|
|
314
|
+
};
|
|
315
|
+
properties: {
|
|
316
|
+
createdAt: {
|
|
317
|
+
type: string;
|
|
318
|
+
'x-component': string;
|
|
319
|
+
'x-component-props': {
|
|
320
|
+
showTime: boolean;
|
|
321
|
+
};
|
|
322
|
+
'x-read-pretty': boolean;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
executionTime: {
|
|
327
|
+
type: string;
|
|
328
|
+
title: string;
|
|
329
|
+
'x-decorator': string;
|
|
330
|
+
'x-component': string;
|
|
331
|
+
'x-component-props': {
|
|
332
|
+
width: number;
|
|
333
|
+
};
|
|
334
|
+
properties: {
|
|
335
|
+
executionTime: {
|
|
336
|
+
type: string;
|
|
337
|
+
'x-decorator': string;
|
|
338
|
+
'x-component': string;
|
|
339
|
+
'x-read-pretty': boolean;
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
workflowId: {
|
|
344
|
+
type: string;
|
|
345
|
+
'x-decorator': string;
|
|
346
|
+
'x-component': string;
|
|
347
|
+
'x-component-props': {
|
|
348
|
+
width: number;
|
|
349
|
+
};
|
|
350
|
+
properties: {
|
|
351
|
+
workflowId: {
|
|
352
|
+
type: string;
|
|
353
|
+
'x-component': string;
|
|
354
|
+
'x-read-pretty': boolean;
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
status: {
|
|
359
|
+
type: string;
|
|
360
|
+
title: string;
|
|
361
|
+
'x-decorator': string;
|
|
362
|
+
'x-component': string;
|
|
363
|
+
'x-component-props': {
|
|
364
|
+
width: number;
|
|
365
|
+
};
|
|
366
|
+
properties: {
|
|
367
|
+
status: {
|
|
368
|
+
type: string;
|
|
369
|
+
'x-decorator': string;
|
|
370
|
+
'x-component': string;
|
|
371
|
+
'x-read-pretty': boolean;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { ISchema } from '@tachybase/schema';
|
|
2
|
+
export declare const collectionWorkflows: {
|
|
3
|
+
name: string;
|
|
4
|
+
fields: ({
|
|
5
|
+
type: string;
|
|
6
|
+
name: string;
|
|
7
|
+
interface: string;
|
|
8
|
+
uiSchema: ISchema;
|
|
9
|
+
target?: undefined;
|
|
10
|
+
targetKey?: undefined;
|
|
11
|
+
foreignKey?: undefined;
|
|
12
|
+
collectionName?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
type: string;
|
|
15
|
+
name: string;
|
|
16
|
+
interface?: undefined;
|
|
17
|
+
uiSchema?: undefined;
|
|
18
|
+
target?: undefined;
|
|
19
|
+
targetKey?: undefined;
|
|
20
|
+
foreignKey?: undefined;
|
|
21
|
+
collectionName?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
name: string;
|
|
24
|
+
type: string;
|
|
25
|
+
interface: string;
|
|
26
|
+
target: string;
|
|
27
|
+
targetKey: string;
|
|
28
|
+
foreignKey: string;
|
|
29
|
+
collectionName: string;
|
|
30
|
+
uiSchema: {
|
|
31
|
+
type: string;
|
|
32
|
+
title: string;
|
|
33
|
+
'x-component': string;
|
|
34
|
+
'x-component-props': {
|
|
35
|
+
fieldNames: {
|
|
36
|
+
value: string;
|
|
37
|
+
label: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
'x-read-pretty': boolean;
|
|
41
|
+
};
|
|
42
|
+
})[];
|
|
43
|
+
};
|
|
44
|
+
export declare const workflowFieldset: Record<string, ISchema>;
|
|
45
|
+
export declare const createWorkflow: ISchema;
|
|
46
|
+
export declare const updateWorkflow: ISchema;
|
|
47
|
+
export declare const workflowSchema: ISchema;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
2
|
+
workflowPageClass: import("antd-style").SerializedStyles;
|
|
3
|
+
dropdownClass: import("antd-style").SerializedStyles;
|
|
4
|
+
workflowVersionDropdownClass: import("antd-style").SerializedStyles;
|
|
5
|
+
executionsDropdownRowClass: import("antd-style").SerializedStyles;
|
|
6
|
+
branchBlockClass: import("antd-style").SerializedStyles;
|
|
7
|
+
branchClass: import("antd-style").SerializedStyles;
|
|
8
|
+
nodeJobButtonClass: import("antd-style").SerializedStyles;
|
|
9
|
+
nodeHeaderClass: import("antd-style").SerializedStyles;
|
|
10
|
+
nodeMetaClass: import("antd-style").SerializedStyles;
|
|
11
|
+
nodeTitleClass: import("antd-style").SerializedStyles;
|
|
12
|
+
nodeSubtreeClass: import("antd-style").SerializedStyles;
|
|
13
|
+
nodeJobResultClass: import("antd-style").SerializedStyles;
|
|
14
|
+
addButtonClass: import("antd-style").SerializedStyles;
|
|
15
|
+
conditionClass: import("antd-style").SerializedStyles;
|
|
16
|
+
loopLineClass: import("antd-style").SerializedStyles;
|
|
17
|
+
terminalClass: import("antd-style").SerializedStyles;
|
|
18
|
+
}>;
|
|
19
|
+
export default useStyles;
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@tachybase/client';
|
|
2
|
+
import { Trigger } from '.';
|
|
3
|
+
import { useWorkflowAnyExecuted } from '../hooks';
|
|
4
|
+
export default class extends Trigger {
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
fieldset: {
|
|
8
|
+
collection: {
|
|
9
|
+
'x-disabled': string;
|
|
10
|
+
'x-component-props': {
|
|
11
|
+
dataSourceFilter(item: any): any;
|
|
12
|
+
};
|
|
13
|
+
"x-reactions": any[];
|
|
14
|
+
type: string;
|
|
15
|
+
title: string;
|
|
16
|
+
required: boolean;
|
|
17
|
+
'x-decorator': string;
|
|
18
|
+
'x-component': string;
|
|
19
|
+
};
|
|
20
|
+
mode: {
|
|
21
|
+
type: string;
|
|
22
|
+
title: string;
|
|
23
|
+
'x-decorator': string;
|
|
24
|
+
'x-component': string;
|
|
25
|
+
'x-component-props': {
|
|
26
|
+
popupMatchSelectWidth: boolean;
|
|
27
|
+
placeholder: string;
|
|
28
|
+
className: string;
|
|
29
|
+
};
|
|
30
|
+
enum: {
|
|
31
|
+
label: string;
|
|
32
|
+
value: number;
|
|
33
|
+
}[];
|
|
34
|
+
required: boolean;
|
|
35
|
+
'x-reactions': {
|
|
36
|
+
dependencies: string[];
|
|
37
|
+
fulfill: {
|
|
38
|
+
state: {
|
|
39
|
+
visible: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}[];
|
|
43
|
+
};
|
|
44
|
+
blacklist: {
|
|
45
|
+
type: string;
|
|
46
|
+
title: string;
|
|
47
|
+
description: string;
|
|
48
|
+
'x-decorator': string;
|
|
49
|
+
'x-component': string;
|
|
50
|
+
'x-component-props': {
|
|
51
|
+
mode: string;
|
|
52
|
+
placeholder: string;
|
|
53
|
+
filter(field: any): boolean;
|
|
54
|
+
};
|
|
55
|
+
'x-reactions': {
|
|
56
|
+
dependencies: string[];
|
|
57
|
+
fulfill: {
|
|
58
|
+
state: {
|
|
59
|
+
visible: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
}[];
|
|
63
|
+
};
|
|
64
|
+
changed: {
|
|
65
|
+
type: string;
|
|
66
|
+
title: string;
|
|
67
|
+
description: string;
|
|
68
|
+
'x-decorator': string;
|
|
69
|
+
'x-component': string;
|
|
70
|
+
'x-component-props': {
|
|
71
|
+
mode: string;
|
|
72
|
+
placeholder: string;
|
|
73
|
+
filter(field: any): boolean;
|
|
74
|
+
};
|
|
75
|
+
'x-reactions': {
|
|
76
|
+
dependencies: string[];
|
|
77
|
+
fulfill: {
|
|
78
|
+
state: {
|
|
79
|
+
visible: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
}[];
|
|
83
|
+
};
|
|
84
|
+
condition: {
|
|
85
|
+
title: string;
|
|
86
|
+
'x-component-props': {};
|
|
87
|
+
'x-reactions': {
|
|
88
|
+
dependencies: string[];
|
|
89
|
+
fulfill: {
|
|
90
|
+
state: {
|
|
91
|
+
visible: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}[];
|
|
95
|
+
type: string;
|
|
96
|
+
'x-decorator': string;
|
|
97
|
+
'x-component': string;
|
|
98
|
+
'x-use-component-props': () => {
|
|
99
|
+
options: any[];
|
|
100
|
+
className: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
appends: {
|
|
104
|
+
'x-reactions': {
|
|
105
|
+
dependencies: string[];
|
|
106
|
+
fulfill: {
|
|
107
|
+
state: {
|
|
108
|
+
visible: string;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
}[];
|
|
112
|
+
type: string;
|
|
113
|
+
title: string;
|
|
114
|
+
description: string;
|
|
115
|
+
'x-decorator': string;
|
|
116
|
+
'x-component': string;
|
|
117
|
+
'x-component-props': {
|
|
118
|
+
title: string;
|
|
119
|
+
multiple: boolean;
|
|
120
|
+
useCollection(): any;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
scope: {
|
|
125
|
+
useCollectionDataSource: typeof useCollectionDataSource;
|
|
126
|
+
useWorkflowAnyExecuted: typeof useWorkflowAnyExecuted;
|
|
127
|
+
};
|
|
128
|
+
components: {
|
|
129
|
+
FieldsSelect: import("react").MemoExoticComponent<import("packages/schema/lib").ReactFC<Omit<any, "ref">>>;
|
|
130
|
+
};
|
|
131
|
+
useVariables(config: any, options: any): import("..").VariableOption[];
|
|
132
|
+
useInitializers(config: any): SchemaInitializerItemType | null;
|
|
133
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SchemaInitializerItemType } from '@tachybase/client';
|
|
3
|
+
import { ISchema } from '@tachybase/schema';
|
|
4
|
+
import { UseVariableOptions, VariableOption } from '../variable';
|
|
5
|
+
export declare abstract class Trigger {
|
|
6
|
+
sync: boolean;
|
|
7
|
+
title: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
useVariables?(config: Record<string, any>, options?: UseVariableOptions): VariableOption[];
|
|
10
|
+
fieldset: {
|
|
11
|
+
[key: string]: ISchema;
|
|
12
|
+
};
|
|
13
|
+
view?: ISchema;
|
|
14
|
+
scope?: {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
};
|
|
17
|
+
components?: {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
};
|
|
20
|
+
useInitializers?(config: any): SchemaInitializerItemType | null;
|
|
21
|
+
initializers?: any;
|
|
22
|
+
isActionTriggerable?: boolean | ((config: object, context?: object) => boolean);
|
|
23
|
+
}
|
|
24
|
+
export declare const TriggerConfig: () => React.JSX.Element;
|
|
25
|
+
export declare function useTrigger(): Trigger;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@tachybase/client';
|
|
2
|
+
import { Trigger } from '..';
|
|
3
|
+
export default class extends Trigger {
|
|
4
|
+
sync: boolean;
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
fieldset: {
|
|
8
|
+
config: {
|
|
9
|
+
type: string;
|
|
10
|
+
'x-component': string;
|
|
11
|
+
'x-component-props': {};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
scope: {
|
|
15
|
+
useCollectionDataSource: typeof useCollectionDataSource;
|
|
16
|
+
};
|
|
17
|
+
components: {
|
|
18
|
+
ScheduleConfig: () => import("react").JSX.Element;
|
|
19
|
+
};
|
|
20
|
+
useVariables(config: any, opts: any): any[];
|
|
21
|
+
useInitializers(config: any): SchemaInitializerItemType | null;
|
|
22
|
+
}
|