@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,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createConfigItem = createConfigItem;
|
|
7
|
+
exports.createConfigItemAsync = createConfigItemAsync;
|
|
8
|
+
exports.createConfigItemSync = createConfigItemSync;
|
|
9
|
+
Object.defineProperty(exports, "default", {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () {
|
|
12
|
+
return _full.default;
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
exports.loadOptions = loadOptions;
|
|
16
|
+
exports.loadOptionsAsync = loadOptionsAsync;
|
|
17
|
+
exports.loadOptionsSync = loadOptionsSync;
|
|
18
|
+
exports.loadPartialConfig = loadPartialConfig;
|
|
19
|
+
exports.loadPartialConfigAsync = loadPartialConfigAsync;
|
|
20
|
+
exports.loadPartialConfigSync = loadPartialConfigSync;
|
|
21
|
+
function _gensync() {
|
|
22
|
+
const data = require("gensync");
|
|
23
|
+
_gensync = function () {
|
|
24
|
+
return data;
|
|
25
|
+
};
|
|
26
|
+
return data;
|
|
27
|
+
}
|
|
28
|
+
var _full = require("./full.js");
|
|
29
|
+
var _partial = require("./partial.js");
|
|
30
|
+
var _item = require("./item.js");
|
|
31
|
+
var _rewriteStackTrace = require("../errors/rewrite-stack-trace.js");
|
|
32
|
+
const loadPartialConfigRunner = _gensync()(_partial.loadPartialConfig);
|
|
33
|
+
function loadPartialConfigAsync(...args) {
|
|
34
|
+
return (0, _rewriteStackTrace.beginHiddenCallStack)(loadPartialConfigRunner.async)(...args);
|
|
35
|
+
}
|
|
36
|
+
function loadPartialConfigSync(...args) {
|
|
37
|
+
return (0, _rewriteStackTrace.beginHiddenCallStack)(loadPartialConfigRunner.sync)(...args);
|
|
38
|
+
}
|
|
39
|
+
function loadPartialConfig(opts, callback) {
|
|
40
|
+
if (callback !== undefined) {
|
|
41
|
+
(0, _rewriteStackTrace.beginHiddenCallStack)(loadPartialConfigRunner.errback)(opts, callback);
|
|
42
|
+
} else if (typeof opts === "function") {
|
|
43
|
+
(0, _rewriteStackTrace.beginHiddenCallStack)(loadPartialConfigRunner.errback)(undefined, opts);
|
|
44
|
+
} else {
|
|
45
|
+
{
|
|
46
|
+
return loadPartialConfigSync(opts);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
function* loadOptionsImpl(opts) {
|
|
51
|
+
var _config$options;
|
|
52
|
+
const config = yield* (0, _full.default)(opts);
|
|
53
|
+
return (_config$options = config == null ? void 0 : config.options) != null ? _config$options : null;
|
|
54
|
+
}
|
|
55
|
+
const loadOptionsRunner = _gensync()(loadOptionsImpl);
|
|
56
|
+
function loadOptionsAsync(...args) {
|
|
57
|
+
return (0, _rewriteStackTrace.beginHiddenCallStack)(loadOptionsRunner.async)(...args);
|
|
58
|
+
}
|
|
59
|
+
function loadOptionsSync(...args) {
|
|
60
|
+
return (0, _rewriteStackTrace.beginHiddenCallStack)(loadOptionsRunner.sync)(...args);
|
|
61
|
+
}
|
|
62
|
+
function loadOptions(opts, callback) {
|
|
63
|
+
if (callback !== undefined) {
|
|
64
|
+
(0, _rewriteStackTrace.beginHiddenCallStack)(loadOptionsRunner.errback)(opts, callback);
|
|
65
|
+
} else if (typeof opts === "function") {
|
|
66
|
+
(0, _rewriteStackTrace.beginHiddenCallStack)(loadOptionsRunner.errback)(undefined, opts);
|
|
67
|
+
} else {
|
|
68
|
+
{
|
|
69
|
+
return loadOptionsSync(opts);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
const createConfigItemRunner = _gensync()(_item.createConfigItem);
|
|
74
|
+
function createConfigItemAsync(...args) {
|
|
75
|
+
return (0, _rewriteStackTrace.beginHiddenCallStack)(createConfigItemRunner.async)(...args);
|
|
76
|
+
}
|
|
77
|
+
function createConfigItemSync(...args) {
|
|
78
|
+
return (0, _rewriteStackTrace.beginHiddenCallStack)(createConfigItemRunner.sync)(...args);
|
|
79
|
+
}
|
|
80
|
+
function createConfigItem(target, options, callback) {
|
|
81
|
+
if (callback !== undefined) {
|
|
82
|
+
(0, _rewriteStackTrace.beginHiddenCallStack)(createConfigItemRunner.errback)(target, options, callback);
|
|
83
|
+
} else if (typeof options === "function") {
|
|
84
|
+
(0, _rewriteStackTrace.beginHiddenCallStack)(createConfigItemRunner.errback)(target, undefined, callback);
|
|
85
|
+
} else {
|
|
86
|
+
{
|
|
87
|
+
return createConfigItemSync(target, options);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
0 && 0;
|
|
92
|
+
|
|
93
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createConfigItem = createConfigItem;
|
|
7
|
+
exports.createItemFromDescriptor = createItemFromDescriptor;
|
|
8
|
+
exports.getItemDescriptor = getItemDescriptor;
|
|
9
|
+
function _path() {
|
|
10
|
+
const data = require("path");
|
|
11
|
+
_path = function () {
|
|
12
|
+
return data;
|
|
13
|
+
};
|
|
14
|
+
return data;
|
|
15
|
+
}
|
|
16
|
+
var _configDescriptors = require("./config-descriptors.js");
|
|
17
|
+
function createItemFromDescriptor(desc) {
|
|
18
|
+
return new ConfigItem(desc);
|
|
19
|
+
}
|
|
20
|
+
function* createConfigItem(value, {
|
|
21
|
+
dirname = ".",
|
|
22
|
+
type
|
|
23
|
+
} = {}) {
|
|
24
|
+
const descriptor = yield* (0, _configDescriptors.createDescriptor)(value, _path().resolve(dirname), {
|
|
25
|
+
type,
|
|
26
|
+
alias: "programmatic item"
|
|
27
|
+
});
|
|
28
|
+
return createItemFromDescriptor(descriptor);
|
|
29
|
+
}
|
|
30
|
+
const CONFIG_ITEM_BRAND = Symbol.for("@babel/core@7 - ConfigItem");
|
|
31
|
+
function getItemDescriptor(item) {
|
|
32
|
+
if (item != null && item[CONFIG_ITEM_BRAND]) {
|
|
33
|
+
return item._descriptor;
|
|
34
|
+
}
|
|
35
|
+
return undefined;
|
|
36
|
+
}
|
|
37
|
+
class ConfigItem {
|
|
38
|
+
constructor(descriptor) {
|
|
39
|
+
this._descriptor = void 0;
|
|
40
|
+
this[CONFIG_ITEM_BRAND] = true;
|
|
41
|
+
this.value = void 0;
|
|
42
|
+
this.options = void 0;
|
|
43
|
+
this.dirname = void 0;
|
|
44
|
+
this.name = void 0;
|
|
45
|
+
this.file = void 0;
|
|
46
|
+
this._descriptor = descriptor;
|
|
47
|
+
Object.defineProperty(this, "_descriptor", {
|
|
48
|
+
enumerable: false
|
|
49
|
+
});
|
|
50
|
+
Object.defineProperty(this, CONFIG_ITEM_BRAND, {
|
|
51
|
+
enumerable: false
|
|
52
|
+
});
|
|
53
|
+
this.value = this._descriptor.value;
|
|
54
|
+
this.options = this._descriptor.options;
|
|
55
|
+
this.dirname = this._descriptor.dirname;
|
|
56
|
+
this.name = this._descriptor.name;
|
|
57
|
+
this.file = this._descriptor.file ? {
|
|
58
|
+
request: this._descriptor.file.request,
|
|
59
|
+
resolved: this._descriptor.file.resolved
|
|
60
|
+
} : undefined;
|
|
61
|
+
Object.freeze(this);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
Object.freeze(ConfigItem.prototype);
|
|
65
|
+
0 && 0;
|
|
66
|
+
|
|
67
|
+
//# sourceMappingURL=item.js.map
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = loadPrivatePartialConfig;
|
|
7
|
+
exports.loadPartialConfig = loadPartialConfig;
|
|
8
|
+
function _path() {
|
|
9
|
+
const data = require("path");
|
|
10
|
+
_path = function () {
|
|
11
|
+
return data;
|
|
12
|
+
};
|
|
13
|
+
return data;
|
|
14
|
+
}
|
|
15
|
+
var _plugin = require("./plugin.js");
|
|
16
|
+
var _util = require("./util.js");
|
|
17
|
+
var _item = require("./item.js");
|
|
18
|
+
var _configChain = require("./config-chain.js");
|
|
19
|
+
var _environment = require("./helpers/environment.js");
|
|
20
|
+
var _options = require("./validation/options.js");
|
|
21
|
+
var _index = require("./files/index.js");
|
|
22
|
+
var _resolveTargets = require("./resolve-targets.js");
|
|
23
|
+
const _excluded = ["showIgnoredFiles"];
|
|
24
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
|
25
|
+
function resolveRootMode(rootDir, rootMode) {
|
|
26
|
+
switch (rootMode) {
|
|
27
|
+
case "root":
|
|
28
|
+
return rootDir;
|
|
29
|
+
case "upward-optional":
|
|
30
|
+
{
|
|
31
|
+
const upwardRootDir = (0, _index.findConfigUpwards)(rootDir);
|
|
32
|
+
return upwardRootDir === null ? rootDir : upwardRootDir;
|
|
33
|
+
}
|
|
34
|
+
case "upward":
|
|
35
|
+
{
|
|
36
|
+
const upwardRootDir = (0, _index.findConfigUpwards)(rootDir);
|
|
37
|
+
if (upwardRootDir !== null) return upwardRootDir;
|
|
38
|
+
throw Object.assign(new Error(`Babel was run with rootMode:"upward" but a root could not ` + `be found when searching upward from "${rootDir}".\n` + `One of the following config files must be in the directory tree: ` + `"${_index.ROOT_CONFIG_FILENAMES.join(", ")}".`), {
|
|
39
|
+
code: "BABEL_ROOT_NOT_FOUND",
|
|
40
|
+
dirname: rootDir
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
default:
|
|
44
|
+
throw new Error(`Assertion failure - unknown rootMode value.`);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
function* loadPrivatePartialConfig(inputOpts) {
|
|
48
|
+
if (inputOpts != null && (typeof inputOpts !== "object" || Array.isArray(inputOpts))) {
|
|
49
|
+
throw new Error("Babel options must be an object, null, or undefined");
|
|
50
|
+
}
|
|
51
|
+
const args = inputOpts ? (0, _options.validate)("arguments", inputOpts) : {};
|
|
52
|
+
const {
|
|
53
|
+
envName = (0, _environment.getEnv)(),
|
|
54
|
+
cwd = ".",
|
|
55
|
+
root: rootDir = ".",
|
|
56
|
+
rootMode = "root",
|
|
57
|
+
caller,
|
|
58
|
+
cloneInputAst = true
|
|
59
|
+
} = args;
|
|
60
|
+
const absoluteCwd = _path().resolve(cwd);
|
|
61
|
+
const absoluteRootDir = resolveRootMode(_path().resolve(absoluteCwd, rootDir), rootMode);
|
|
62
|
+
const filename = typeof args.filename === "string" ? _path().resolve(cwd, args.filename) : undefined;
|
|
63
|
+
const showConfigPath = yield* (0, _index.resolveShowConfigPath)(absoluteCwd);
|
|
64
|
+
const context = {
|
|
65
|
+
filename,
|
|
66
|
+
cwd: absoluteCwd,
|
|
67
|
+
root: absoluteRootDir,
|
|
68
|
+
envName,
|
|
69
|
+
caller,
|
|
70
|
+
showConfig: showConfigPath === filename
|
|
71
|
+
};
|
|
72
|
+
const configChain = yield* (0, _configChain.buildRootChain)(args, context);
|
|
73
|
+
if (!configChain) return null;
|
|
74
|
+
const merged = {
|
|
75
|
+
assumptions: {}
|
|
76
|
+
};
|
|
77
|
+
configChain.options.forEach(opts => {
|
|
78
|
+
(0, _util.mergeOptions)(merged, opts);
|
|
79
|
+
});
|
|
80
|
+
const options = Object.assign({}, merged, {
|
|
81
|
+
targets: (0, _resolveTargets.resolveTargets)(merged, absoluteRootDir),
|
|
82
|
+
cloneInputAst,
|
|
83
|
+
babelrc: false,
|
|
84
|
+
configFile: false,
|
|
85
|
+
browserslistConfigFile: false,
|
|
86
|
+
passPerPreset: false,
|
|
87
|
+
envName: context.envName,
|
|
88
|
+
cwd: context.cwd,
|
|
89
|
+
root: context.root,
|
|
90
|
+
rootMode: "root",
|
|
91
|
+
filename: typeof context.filename === "string" ? context.filename : undefined,
|
|
92
|
+
plugins: configChain.plugins.map(descriptor => (0, _item.createItemFromDescriptor)(descriptor)),
|
|
93
|
+
presets: configChain.presets.map(descriptor => (0, _item.createItemFromDescriptor)(descriptor))
|
|
94
|
+
});
|
|
95
|
+
return {
|
|
96
|
+
options,
|
|
97
|
+
context,
|
|
98
|
+
fileHandling: configChain.fileHandling,
|
|
99
|
+
ignore: configChain.ignore,
|
|
100
|
+
babelrc: configChain.babelrc,
|
|
101
|
+
config: configChain.config,
|
|
102
|
+
files: configChain.files
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
function* loadPartialConfig(opts) {
|
|
106
|
+
let showIgnoredFiles = false;
|
|
107
|
+
if (typeof opts === "object" && opts !== null && !Array.isArray(opts)) {
|
|
108
|
+
var _opts = opts;
|
|
109
|
+
({
|
|
110
|
+
showIgnoredFiles
|
|
111
|
+
} = _opts);
|
|
112
|
+
opts = _objectWithoutPropertiesLoose(_opts, _excluded);
|
|
113
|
+
_opts;
|
|
114
|
+
}
|
|
115
|
+
const result = yield* loadPrivatePartialConfig(opts);
|
|
116
|
+
if (!result) return null;
|
|
117
|
+
const {
|
|
118
|
+
options,
|
|
119
|
+
babelrc,
|
|
120
|
+
ignore,
|
|
121
|
+
config,
|
|
122
|
+
fileHandling,
|
|
123
|
+
files
|
|
124
|
+
} = result;
|
|
125
|
+
if (fileHandling === "ignored" && !showIgnoredFiles) {
|
|
126
|
+
return null;
|
|
127
|
+
}
|
|
128
|
+
(options.plugins || []).forEach(item => {
|
|
129
|
+
if (item.value instanceof _plugin.default) {
|
|
130
|
+
throw new Error("Passing cached plugin instances is not supported in " + "babel.loadPartialConfig()");
|
|
131
|
+
}
|
|
132
|
+
});
|
|
133
|
+
return new PartialConfig(options, babelrc ? babelrc.filepath : undefined, ignore ? ignore.filepath : undefined, config ? config.filepath : undefined, fileHandling, files);
|
|
134
|
+
}
|
|
135
|
+
class PartialConfig {
|
|
136
|
+
constructor(options, babelrc, ignore, config, fileHandling, files) {
|
|
137
|
+
this.options = void 0;
|
|
138
|
+
this.babelrc = void 0;
|
|
139
|
+
this.babelignore = void 0;
|
|
140
|
+
this.config = void 0;
|
|
141
|
+
this.fileHandling = void 0;
|
|
142
|
+
this.files = void 0;
|
|
143
|
+
this.options = options;
|
|
144
|
+
this.babelignore = ignore;
|
|
145
|
+
this.babelrc = babelrc;
|
|
146
|
+
this.config = config;
|
|
147
|
+
this.fileHandling = fileHandling;
|
|
148
|
+
this.files = files;
|
|
149
|
+
Object.freeze(this);
|
|
150
|
+
}
|
|
151
|
+
hasFilesystemConfig() {
|
|
152
|
+
return this.babelrc !== undefined || this.config !== undefined;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
Object.freeze(PartialConfig.prototype);
|
|
156
|
+
0 && 0;
|
|
157
|
+
|
|
158
|
+
//# sourceMappingURL=partial.js.map
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = pathToPattern;
|
|
7
|
+
function _path() {
|
|
8
|
+
const data = require("path");
|
|
9
|
+
_path = function () {
|
|
10
|
+
return data;
|
|
11
|
+
};
|
|
12
|
+
return data;
|
|
13
|
+
}
|
|
14
|
+
const sep = `\\${_path().sep}`;
|
|
15
|
+
const endSep = `(?:${sep}|$)`;
|
|
16
|
+
const substitution = `[^${sep}]+`;
|
|
17
|
+
const starPat = `(?:${substitution}${sep})`;
|
|
18
|
+
const starPatLast = `(?:${substitution}${endSep})`;
|
|
19
|
+
const starStarPat = `${starPat}*?`;
|
|
20
|
+
const starStarPatLast = `${starPat}*?${starPatLast}?`;
|
|
21
|
+
function escapeRegExp(string) {
|
|
22
|
+
return string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&");
|
|
23
|
+
}
|
|
24
|
+
function pathToPattern(pattern, dirname) {
|
|
25
|
+
const parts = _path().resolve(dirname, pattern).split(_path().sep);
|
|
26
|
+
return new RegExp(["^", ...parts.map((part, i) => {
|
|
27
|
+
const last = i === parts.length - 1;
|
|
28
|
+
if (part === "**") return last ? starStarPatLast : starStarPat;
|
|
29
|
+
if (part === "*") return last ? starPatLast : starPat;
|
|
30
|
+
if (part.indexOf("*.") === 0) {
|
|
31
|
+
return substitution + escapeRegExp(part.slice(1)) + (last ? endSep : sep);
|
|
32
|
+
}
|
|
33
|
+
return escapeRegExp(part) + (last ? endSep : sep);
|
|
34
|
+
})].join(""));
|
|
35
|
+
}
|
|
36
|
+
0 && 0;
|
|
37
|
+
|
|
38
|
+
//# sourceMappingURL=pattern-to-regex.js.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _deepArray = require("./helpers/deep-array.js");
|
|
8
|
+
class Plugin {
|
|
9
|
+
constructor(plugin, options, key, externalDependencies = (0, _deepArray.finalize)([])) {
|
|
10
|
+
this.key = void 0;
|
|
11
|
+
this.manipulateOptions = void 0;
|
|
12
|
+
this.post = void 0;
|
|
13
|
+
this.pre = void 0;
|
|
14
|
+
this.visitor = void 0;
|
|
15
|
+
this.parserOverride = void 0;
|
|
16
|
+
this.generatorOverride = void 0;
|
|
17
|
+
this.options = void 0;
|
|
18
|
+
this.externalDependencies = void 0;
|
|
19
|
+
this.key = plugin.name || key;
|
|
20
|
+
this.manipulateOptions = plugin.manipulateOptions;
|
|
21
|
+
this.post = plugin.post;
|
|
22
|
+
this.pre = plugin.pre;
|
|
23
|
+
this.visitor = plugin.visitor || {};
|
|
24
|
+
this.parserOverride = plugin.parserOverride;
|
|
25
|
+
this.generatorOverride = plugin.generatorOverride;
|
|
26
|
+
this.options = options;
|
|
27
|
+
this.externalDependencies = externalDependencies;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.default = Plugin;
|
|
31
|
+
0 && 0;
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=plugin.js.map
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.ConfigPrinter = exports.ChainFormatter = void 0;
|
|
7
|
+
function _gensync() {
|
|
8
|
+
const data = require("gensync");
|
|
9
|
+
_gensync = function () {
|
|
10
|
+
return data;
|
|
11
|
+
};
|
|
12
|
+
return data;
|
|
13
|
+
}
|
|
14
|
+
const ChainFormatter = exports.ChainFormatter = {
|
|
15
|
+
Programmatic: 0,
|
|
16
|
+
Config: 1
|
|
17
|
+
};
|
|
18
|
+
const Formatter = {
|
|
19
|
+
title(type, callerName, filepath) {
|
|
20
|
+
let title = "";
|
|
21
|
+
if (type === ChainFormatter.Programmatic) {
|
|
22
|
+
title = "programmatic options";
|
|
23
|
+
if (callerName) {
|
|
24
|
+
title += " from " + callerName;
|
|
25
|
+
}
|
|
26
|
+
} else {
|
|
27
|
+
title = "config " + filepath;
|
|
28
|
+
}
|
|
29
|
+
return title;
|
|
30
|
+
},
|
|
31
|
+
loc(index, envName) {
|
|
32
|
+
let loc = "";
|
|
33
|
+
if (index != null) {
|
|
34
|
+
loc += `.overrides[${index}]`;
|
|
35
|
+
}
|
|
36
|
+
if (envName != null) {
|
|
37
|
+
loc += `.env["${envName}"]`;
|
|
38
|
+
}
|
|
39
|
+
return loc;
|
|
40
|
+
},
|
|
41
|
+
*optionsAndDescriptors(opt) {
|
|
42
|
+
const content = Object.assign({}, opt.options);
|
|
43
|
+
delete content.overrides;
|
|
44
|
+
delete content.env;
|
|
45
|
+
const pluginDescriptors = [...(yield* opt.plugins())];
|
|
46
|
+
if (pluginDescriptors.length) {
|
|
47
|
+
content.plugins = pluginDescriptors.map(d => descriptorToConfig(d));
|
|
48
|
+
}
|
|
49
|
+
const presetDescriptors = [...(yield* opt.presets())];
|
|
50
|
+
if (presetDescriptors.length) {
|
|
51
|
+
content.presets = [...presetDescriptors].map(d => descriptorToConfig(d));
|
|
52
|
+
}
|
|
53
|
+
return JSON.stringify(content, undefined, 2);
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
function descriptorToConfig(d) {
|
|
57
|
+
var _d$file;
|
|
58
|
+
let name = (_d$file = d.file) == null ? void 0 : _d$file.request;
|
|
59
|
+
if (name == null) {
|
|
60
|
+
if (typeof d.value === "object") {
|
|
61
|
+
name = d.value;
|
|
62
|
+
} else if (typeof d.value === "function") {
|
|
63
|
+
name = `[Function: ${d.value.toString().slice(0, 50)} ... ]`;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
if (name == null) {
|
|
67
|
+
name = "[Unknown]";
|
|
68
|
+
}
|
|
69
|
+
if (d.options === undefined) {
|
|
70
|
+
return name;
|
|
71
|
+
} else if (d.name == null) {
|
|
72
|
+
return [name, d.options];
|
|
73
|
+
} else {
|
|
74
|
+
return [name, d.options, d.name];
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
class ConfigPrinter {
|
|
78
|
+
constructor() {
|
|
79
|
+
this._stack = [];
|
|
80
|
+
}
|
|
81
|
+
configure(enabled, type, {
|
|
82
|
+
callerName,
|
|
83
|
+
filepath
|
|
84
|
+
}) {
|
|
85
|
+
if (!enabled) return () => {};
|
|
86
|
+
return (content, index, envName) => {
|
|
87
|
+
this._stack.push({
|
|
88
|
+
type,
|
|
89
|
+
callerName,
|
|
90
|
+
filepath,
|
|
91
|
+
content,
|
|
92
|
+
index,
|
|
93
|
+
envName
|
|
94
|
+
});
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
static *format(config) {
|
|
98
|
+
let title = Formatter.title(config.type, config.callerName, config.filepath);
|
|
99
|
+
const loc = Formatter.loc(config.index, config.envName);
|
|
100
|
+
if (loc) title += ` ${loc}`;
|
|
101
|
+
const content = yield* Formatter.optionsAndDescriptors(config.content);
|
|
102
|
+
return `${title}\n${content}`;
|
|
103
|
+
}
|
|
104
|
+
*output() {
|
|
105
|
+
if (this._stack.length === 0) return "";
|
|
106
|
+
const configs = yield* _gensync().all(this._stack.map(s => ConfigPrinter.format(s)));
|
|
107
|
+
return configs.join("\n\n");
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
exports.ConfigPrinter = ConfigPrinter;
|
|
111
|
+
0 && 0;
|
|
112
|
+
|
|
113
|
+
//# sourceMappingURL=printer.js.map
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.resolveBrowserslistConfigFile = resolveBrowserslistConfigFile;
|
|
7
|
+
exports.resolveTargets = resolveTargets;
|
|
8
|
+
function _helperCompilationTargets() {
|
|
9
|
+
const data = require("@babel/helper-compilation-targets");
|
|
10
|
+
_helperCompilationTargets = function () {
|
|
11
|
+
return data;
|
|
12
|
+
};
|
|
13
|
+
return data;
|
|
14
|
+
}
|
|
15
|
+
function resolveBrowserslistConfigFile(browserslistConfigFile, configFilePath) {
|
|
16
|
+
return undefined;
|
|
17
|
+
}
|
|
18
|
+
function resolveTargets(options, root) {
|
|
19
|
+
const optTargets = options.targets;
|
|
20
|
+
let targets;
|
|
21
|
+
if (typeof optTargets === "string" || Array.isArray(optTargets)) {
|
|
22
|
+
targets = {
|
|
23
|
+
browsers: optTargets
|
|
24
|
+
};
|
|
25
|
+
} else if (optTargets) {
|
|
26
|
+
if ("esmodules" in optTargets) {
|
|
27
|
+
targets = Object.assign({}, optTargets, {
|
|
28
|
+
esmodules: "intersect"
|
|
29
|
+
});
|
|
30
|
+
} else {
|
|
31
|
+
targets = optTargets;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return (0, _helperCompilationTargets().default)(targets, {
|
|
35
|
+
ignoreBrowserslistConfig: true,
|
|
36
|
+
browserslistEnv: options.browserslistEnv
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
0 && 0;
|
|
40
|
+
|
|
41
|
+
//# sourceMappingURL=resolve-targets-browser.js.map
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.resolveBrowserslistConfigFile = resolveBrowserslistConfigFile;
|
|
7
|
+
exports.resolveTargets = resolveTargets;
|
|
8
|
+
function _path() {
|
|
9
|
+
const data = require("path");
|
|
10
|
+
_path = function () {
|
|
11
|
+
return data;
|
|
12
|
+
};
|
|
13
|
+
return data;
|
|
14
|
+
}
|
|
15
|
+
function _helperCompilationTargets() {
|
|
16
|
+
const data = require("@babel/helper-compilation-targets");
|
|
17
|
+
_helperCompilationTargets = function () {
|
|
18
|
+
return data;
|
|
19
|
+
};
|
|
20
|
+
return data;
|
|
21
|
+
}
|
|
22
|
+
({});
|
|
23
|
+
function resolveBrowserslistConfigFile(browserslistConfigFile, configFileDir) {
|
|
24
|
+
return _path().resolve(configFileDir, browserslistConfigFile);
|
|
25
|
+
}
|
|
26
|
+
function resolveTargets(options, root) {
|
|
27
|
+
const optTargets = options.targets;
|
|
28
|
+
let targets;
|
|
29
|
+
if (typeof optTargets === "string" || Array.isArray(optTargets)) {
|
|
30
|
+
targets = {
|
|
31
|
+
browsers: optTargets
|
|
32
|
+
};
|
|
33
|
+
} else if (optTargets) {
|
|
34
|
+
if ("esmodules" in optTargets) {
|
|
35
|
+
targets = Object.assign({}, optTargets, {
|
|
36
|
+
esmodules: "intersect"
|
|
37
|
+
});
|
|
38
|
+
} else {
|
|
39
|
+
targets = optTargets;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
const {
|
|
43
|
+
browserslistConfigFile
|
|
44
|
+
} = options;
|
|
45
|
+
let configFile;
|
|
46
|
+
let ignoreBrowserslistConfig = false;
|
|
47
|
+
if (typeof browserslistConfigFile === "string") {
|
|
48
|
+
configFile = browserslistConfigFile;
|
|
49
|
+
} else {
|
|
50
|
+
ignoreBrowserslistConfig = browserslistConfigFile === false;
|
|
51
|
+
}
|
|
52
|
+
return (0, _helperCompilationTargets().default)(targets, {
|
|
53
|
+
ignoreBrowserslistConfig,
|
|
54
|
+
configFile,
|
|
55
|
+
configPath: root,
|
|
56
|
+
browserslistEnv: options.browserslistEnv
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
0 && 0;
|
|
60
|
+
|
|
61
|
+
//# sourceMappingURL=resolve-targets.js.map
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.isIterableIterator = isIterableIterator;
|
|
7
|
+
exports.mergeOptions = mergeOptions;
|
|
8
|
+
function mergeOptions(target, source) {
|
|
9
|
+
for (const k of Object.keys(source)) {
|
|
10
|
+
if ((k === "parserOpts" || k === "generatorOpts" || k === "assumptions") && source[k]) {
|
|
11
|
+
const parserOpts = source[k];
|
|
12
|
+
const targetObj = target[k] || (target[k] = {});
|
|
13
|
+
mergeDefaultFields(targetObj, parserOpts);
|
|
14
|
+
} else {
|
|
15
|
+
const val = source[k];
|
|
16
|
+
if (val !== undefined) target[k] = val;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
function mergeDefaultFields(target, source) {
|
|
21
|
+
for (const k of Object.keys(source)) {
|
|
22
|
+
const val = source[k];
|
|
23
|
+
if (val !== undefined) target[k] = val;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
function isIterableIterator(value) {
|
|
27
|
+
return !!value && typeof value.next === "function" && typeof value[Symbol.iterator] === "function";
|
|
28
|
+
}
|
|
29
|
+
0 && 0;
|
|
30
|
+
|
|
31
|
+
//# sourceMappingURL=util.js.map
|