@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,135 @@
|
|
|
1
|
+
const ECLevel = require('./error-correction-level')
|
|
2
|
+
|
|
3
|
+
const EC_BLOCKS_TABLE = [
|
|
4
|
+
// L M Q H
|
|
5
|
+
1, 1, 1, 1,
|
|
6
|
+
1, 1, 1, 1,
|
|
7
|
+
1, 1, 2, 2,
|
|
8
|
+
1, 2, 2, 4,
|
|
9
|
+
1, 2, 4, 4,
|
|
10
|
+
2, 4, 4, 4,
|
|
11
|
+
2, 4, 6, 5,
|
|
12
|
+
2, 4, 6, 6,
|
|
13
|
+
2, 5, 8, 8,
|
|
14
|
+
4, 5, 8, 8,
|
|
15
|
+
4, 5, 8, 11,
|
|
16
|
+
4, 8, 10, 11,
|
|
17
|
+
4, 9, 12, 16,
|
|
18
|
+
4, 9, 16, 16,
|
|
19
|
+
6, 10, 12, 18,
|
|
20
|
+
6, 10, 17, 16,
|
|
21
|
+
6, 11, 16, 19,
|
|
22
|
+
6, 13, 18, 21,
|
|
23
|
+
7, 14, 21, 25,
|
|
24
|
+
8, 16, 20, 25,
|
|
25
|
+
8, 17, 23, 25,
|
|
26
|
+
9, 17, 23, 34,
|
|
27
|
+
9, 18, 25, 30,
|
|
28
|
+
10, 20, 27, 32,
|
|
29
|
+
12, 21, 29, 35,
|
|
30
|
+
12, 23, 34, 37,
|
|
31
|
+
12, 25, 34, 40,
|
|
32
|
+
13, 26, 35, 42,
|
|
33
|
+
14, 28, 38, 45,
|
|
34
|
+
15, 29, 40, 48,
|
|
35
|
+
16, 31, 43, 51,
|
|
36
|
+
17, 33, 45, 54,
|
|
37
|
+
18, 35, 48, 57,
|
|
38
|
+
19, 37, 51, 60,
|
|
39
|
+
19, 38, 53, 63,
|
|
40
|
+
20, 40, 56, 66,
|
|
41
|
+
21, 43, 59, 70,
|
|
42
|
+
22, 45, 62, 74,
|
|
43
|
+
24, 47, 65, 77,
|
|
44
|
+
25, 49, 68, 81
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
const EC_CODEWORDS_TABLE = [
|
|
48
|
+
// L M Q H
|
|
49
|
+
7, 10, 13, 17,
|
|
50
|
+
10, 16, 22, 28,
|
|
51
|
+
15, 26, 36, 44,
|
|
52
|
+
20, 36, 52, 64,
|
|
53
|
+
26, 48, 72, 88,
|
|
54
|
+
36, 64, 96, 112,
|
|
55
|
+
40, 72, 108, 130,
|
|
56
|
+
48, 88, 132, 156,
|
|
57
|
+
60, 110, 160, 192,
|
|
58
|
+
72, 130, 192, 224,
|
|
59
|
+
80, 150, 224, 264,
|
|
60
|
+
96, 176, 260, 308,
|
|
61
|
+
104, 198, 288, 352,
|
|
62
|
+
120, 216, 320, 384,
|
|
63
|
+
132, 240, 360, 432,
|
|
64
|
+
144, 280, 408, 480,
|
|
65
|
+
168, 308, 448, 532,
|
|
66
|
+
180, 338, 504, 588,
|
|
67
|
+
196, 364, 546, 650,
|
|
68
|
+
224, 416, 600, 700,
|
|
69
|
+
224, 442, 644, 750,
|
|
70
|
+
252, 476, 690, 816,
|
|
71
|
+
270, 504, 750, 900,
|
|
72
|
+
300, 560, 810, 960,
|
|
73
|
+
312, 588, 870, 1050,
|
|
74
|
+
336, 644, 952, 1110,
|
|
75
|
+
360, 700, 1020, 1200,
|
|
76
|
+
390, 728, 1050, 1260,
|
|
77
|
+
420, 784, 1140, 1350,
|
|
78
|
+
450, 812, 1200, 1440,
|
|
79
|
+
480, 868, 1290, 1530,
|
|
80
|
+
510, 924, 1350, 1620,
|
|
81
|
+
540, 980, 1440, 1710,
|
|
82
|
+
570, 1036, 1530, 1800,
|
|
83
|
+
570, 1064, 1590, 1890,
|
|
84
|
+
600, 1120, 1680, 1980,
|
|
85
|
+
630, 1204, 1770, 2100,
|
|
86
|
+
660, 1260, 1860, 2220,
|
|
87
|
+
720, 1316, 1950, 2310,
|
|
88
|
+
750, 1372, 2040, 2430
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Returns the number of error correction block that the QR Code should contain
|
|
93
|
+
* for the specified version and error correction level.
|
|
94
|
+
*
|
|
95
|
+
* @param {Number} version QR Code version
|
|
96
|
+
* @param {Number} errorCorrectionLevel Error correction level
|
|
97
|
+
* @return {Number} Number of error correction blocks
|
|
98
|
+
*/
|
|
99
|
+
exports.getBlocksCount = function getBlocksCount (version, errorCorrectionLevel) {
|
|
100
|
+
switch (errorCorrectionLevel) {
|
|
101
|
+
case ECLevel.L:
|
|
102
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 0]
|
|
103
|
+
case ECLevel.M:
|
|
104
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 1]
|
|
105
|
+
case ECLevel.Q:
|
|
106
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 2]
|
|
107
|
+
case ECLevel.H:
|
|
108
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 3]
|
|
109
|
+
default:
|
|
110
|
+
return undefined
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Returns the number of error correction codewords to use for the specified
|
|
116
|
+
* version and error correction level.
|
|
117
|
+
*
|
|
118
|
+
* @param {Number} version QR Code version
|
|
119
|
+
* @param {Number} errorCorrectionLevel Error correction level
|
|
120
|
+
* @return {Number} Number of error correction codewords
|
|
121
|
+
*/
|
|
122
|
+
exports.getTotalCodewordsCount = function getTotalCodewordsCount (version, errorCorrectionLevel) {
|
|
123
|
+
switch (errorCorrectionLevel) {
|
|
124
|
+
case ECLevel.L:
|
|
125
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 0]
|
|
126
|
+
case ECLevel.M:
|
|
127
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 1]
|
|
128
|
+
case ECLevel.Q:
|
|
129
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 2]
|
|
130
|
+
case ECLevel.H:
|
|
131
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 3]
|
|
132
|
+
default:
|
|
133
|
+
return undefined
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
exports.L = { bit: 1 }
|
|
2
|
+
exports.M = { bit: 0 }
|
|
3
|
+
exports.Q = { bit: 3 }
|
|
4
|
+
exports.H = { bit: 2 }
|
|
5
|
+
|
|
6
|
+
function fromString (string) {
|
|
7
|
+
if (typeof string !== 'string') {
|
|
8
|
+
throw new Error('Param is not a string')
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const lcStr = string.toLowerCase()
|
|
12
|
+
|
|
13
|
+
switch (lcStr) {
|
|
14
|
+
case 'l':
|
|
15
|
+
case 'low':
|
|
16
|
+
return exports.L
|
|
17
|
+
|
|
18
|
+
case 'm':
|
|
19
|
+
case 'medium':
|
|
20
|
+
return exports.M
|
|
21
|
+
|
|
22
|
+
case 'q':
|
|
23
|
+
case 'quartile':
|
|
24
|
+
return exports.Q
|
|
25
|
+
|
|
26
|
+
case 'h':
|
|
27
|
+
case 'high':
|
|
28
|
+
return exports.H
|
|
29
|
+
|
|
30
|
+
default:
|
|
31
|
+
throw new Error('Unknown EC Level: ' + string)
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
exports.isValid = function isValid (level) {
|
|
36
|
+
return level && typeof level.bit !== 'undefined' &&
|
|
37
|
+
level.bit >= 0 && level.bit < 4
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
exports.from = function from (value, defaultValue) {
|
|
41
|
+
if (exports.isValid(value)) {
|
|
42
|
+
return value
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
try {
|
|
46
|
+
return fromString(value)
|
|
47
|
+
} catch (e) {
|
|
48
|
+
return defaultValue
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const getSymbolSize = require('./utils').getSymbolSize
|
|
2
|
+
const FINDER_PATTERN_SIZE = 7
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Returns an array containing the positions of each finder pattern.
|
|
6
|
+
* Each array's element represent the top-left point of the pattern as (x, y) coordinates
|
|
7
|
+
*
|
|
8
|
+
* @param {Number} version QR Code version
|
|
9
|
+
* @return {Array} Array of coordinates
|
|
10
|
+
*/
|
|
11
|
+
exports.getPositions = function getPositions (version) {
|
|
12
|
+
const size = getSymbolSize(version)
|
|
13
|
+
|
|
14
|
+
return [
|
|
15
|
+
// top-left
|
|
16
|
+
[0, 0],
|
|
17
|
+
// top-right
|
|
18
|
+
[size - FINDER_PATTERN_SIZE, 0],
|
|
19
|
+
// bottom-left
|
|
20
|
+
[0, size - FINDER_PATTERN_SIZE]
|
|
21
|
+
]
|
|
22
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
const G15 = (1 << 10) | (1 << 8) | (1 << 5) | (1 << 4) | (1 << 2) | (1 << 1) | (1 << 0)
|
|
4
|
+
const G15_MASK = (1 << 14) | (1 << 12) | (1 << 10) | (1 << 4) | (1 << 1)
|
|
5
|
+
const G15_BCH = Utils.getBCHDigit(G15)
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Returns format information with relative error correction bits
|
|
9
|
+
*
|
|
10
|
+
* The format information is a 15-bit sequence containing 5 data bits,
|
|
11
|
+
* with 10 error correction bits calculated using the (15, 5) BCH code.
|
|
12
|
+
*
|
|
13
|
+
* @param {Number} errorCorrectionLevel Error correction level
|
|
14
|
+
* @param {Number} mask Mask pattern
|
|
15
|
+
* @return {Number} Encoded format information bits
|
|
16
|
+
*/
|
|
17
|
+
exports.getEncodedBits = function getEncodedBits (errorCorrectionLevel, mask) {
|
|
18
|
+
const data = ((errorCorrectionLevel.bit << 3) | mask)
|
|
19
|
+
let d = data << 10
|
|
20
|
+
|
|
21
|
+
while (Utils.getBCHDigit(d) - G15_BCH >= 0) {
|
|
22
|
+
d ^= (G15 << (Utils.getBCHDigit(d) - G15_BCH))
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// xor final data with mask pattern in order to ensure that
|
|
26
|
+
// no combination of Error Correction Level and data mask pattern
|
|
27
|
+
// will result in an all-zero data string
|
|
28
|
+
return ((data << 10) | d) ^ G15_MASK
|
|
29
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
const EXP_TABLE = new Uint8Array(512)
|
|
2
|
+
const LOG_TABLE = new Uint8Array(256)
|
|
3
|
+
/**
|
|
4
|
+
* Precompute the log and anti-log tables for faster computation later
|
|
5
|
+
*
|
|
6
|
+
* For each possible value in the galois field 2^8, we will pre-compute
|
|
7
|
+
* the logarithm and anti-logarithm (exponential) of this value
|
|
8
|
+
*
|
|
9
|
+
* ref {@link https://en.wikiversity.org/wiki/Reed%E2%80%93Solomon_codes_for_coders#Introduction_to_mathematical_fields}
|
|
10
|
+
*/
|
|
11
|
+
;(function initTables () {
|
|
12
|
+
let x = 1
|
|
13
|
+
for (let i = 0; i < 255; i++) {
|
|
14
|
+
EXP_TABLE[i] = x
|
|
15
|
+
LOG_TABLE[x] = i
|
|
16
|
+
|
|
17
|
+
x <<= 1 // multiply by 2
|
|
18
|
+
|
|
19
|
+
// The QR code specification says to use byte-wise modulo 100011101 arithmetic.
|
|
20
|
+
// This means that when a number is 256 or larger, it should be XORed with 0x11D.
|
|
21
|
+
if (x & 0x100) { // similar to x >= 256, but a lot faster (because 0x100 == 256)
|
|
22
|
+
x ^= 0x11D
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Optimization: double the size of the anti-log table so that we don't need to mod 255 to
|
|
27
|
+
// stay inside the bounds (because we will mainly use this table for the multiplication of
|
|
28
|
+
// two GF numbers, no more).
|
|
29
|
+
// @see {@link mul}
|
|
30
|
+
for (let i = 255; i < 512; i++) {
|
|
31
|
+
EXP_TABLE[i] = EXP_TABLE[i - 255]
|
|
32
|
+
}
|
|
33
|
+
}())
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Returns log value of n inside Galois Field
|
|
37
|
+
*
|
|
38
|
+
* @param {Number} n
|
|
39
|
+
* @return {Number}
|
|
40
|
+
*/
|
|
41
|
+
exports.log = function log (n) {
|
|
42
|
+
if (n < 1) throw new Error('log(' + n + ')')
|
|
43
|
+
return LOG_TABLE[n]
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Returns anti-log value of n inside Galois Field
|
|
48
|
+
*
|
|
49
|
+
* @param {Number} n
|
|
50
|
+
* @return {Number}
|
|
51
|
+
*/
|
|
52
|
+
exports.exp = function exp (n) {
|
|
53
|
+
return EXP_TABLE[n]
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Multiplies two number inside Galois Field
|
|
58
|
+
*
|
|
59
|
+
* @param {Number} x
|
|
60
|
+
* @param {Number} y
|
|
61
|
+
* @return {Number}
|
|
62
|
+
*/
|
|
63
|
+
exports.mul = function mul (x, y) {
|
|
64
|
+
if (x === 0 || y === 0) return 0
|
|
65
|
+
|
|
66
|
+
// should be EXP_TABLE[(LOG_TABLE[x] + LOG_TABLE[y]) % 255] if EXP_TABLE wasn't oversized
|
|
67
|
+
// @see {@link initTables}
|
|
68
|
+
return EXP_TABLE[LOG_TABLE[x] + LOG_TABLE[y]]
|
|
69
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
const Mode = require('./mode')
|
|
2
|
+
const Utils = require('./utils')
|
|
3
|
+
|
|
4
|
+
function KanjiData (data) {
|
|
5
|
+
this.mode = Mode.KANJI
|
|
6
|
+
this.data = data
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
KanjiData.getBitsLength = function getBitsLength (length) {
|
|
10
|
+
return length * 13
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
KanjiData.prototype.getLength = function getLength () {
|
|
14
|
+
return this.data.length
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
KanjiData.prototype.getBitsLength = function getBitsLength () {
|
|
18
|
+
return KanjiData.getBitsLength(this.data.length)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
KanjiData.prototype.write = function (bitBuffer) {
|
|
22
|
+
let i
|
|
23
|
+
|
|
24
|
+
// In the Shift JIS system, Kanji characters are represented by a two byte combination.
|
|
25
|
+
// These byte values are shifted from the JIS X 0208 values.
|
|
26
|
+
// JIS X 0208 gives details of the shift coded representation.
|
|
27
|
+
for (i = 0; i < this.data.length; i++) {
|
|
28
|
+
let value = Utils.toSJIS(this.data[i])
|
|
29
|
+
|
|
30
|
+
// For characters with Shift JIS values from 0x8140 to 0x9FFC:
|
|
31
|
+
if (value >= 0x8140 && value <= 0x9FFC) {
|
|
32
|
+
// Subtract 0x8140 from Shift JIS value
|
|
33
|
+
value -= 0x8140
|
|
34
|
+
|
|
35
|
+
// For characters with Shift JIS values from 0xE040 to 0xEBBF
|
|
36
|
+
} else if (value >= 0xE040 && value <= 0xEBBF) {
|
|
37
|
+
// Subtract 0xC140 from Shift JIS value
|
|
38
|
+
value -= 0xC140
|
|
39
|
+
} else {
|
|
40
|
+
throw new Error(
|
|
41
|
+
'Invalid SJIS character: ' + this.data[i] + '\n' +
|
|
42
|
+
'Make sure your charset is UTF-8')
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Multiply most significant byte of result by 0xC0
|
|
46
|
+
// and add least significant byte to product
|
|
47
|
+
value = (((value >>> 8) & 0xff) * 0xC0) + (value & 0xff)
|
|
48
|
+
|
|
49
|
+
// Convert result to a 13-bit binary string
|
|
50
|
+
bitBuffer.put(value, 13)
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
module.exports = KanjiData
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Data mask pattern reference
|
|
3
|
+
* @type {Object}
|
|
4
|
+
*/
|
|
5
|
+
exports.Patterns = {
|
|
6
|
+
PATTERN000: 0,
|
|
7
|
+
PATTERN001: 1,
|
|
8
|
+
PATTERN010: 2,
|
|
9
|
+
PATTERN011: 3,
|
|
10
|
+
PATTERN100: 4,
|
|
11
|
+
PATTERN101: 5,
|
|
12
|
+
PATTERN110: 6,
|
|
13
|
+
PATTERN111: 7
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Weighted penalty scores for the undesirable features
|
|
18
|
+
* @type {Object}
|
|
19
|
+
*/
|
|
20
|
+
const PenaltyScores = {
|
|
21
|
+
N1: 3,
|
|
22
|
+
N2: 3,
|
|
23
|
+
N3: 40,
|
|
24
|
+
N4: 10
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Check if mask pattern value is valid
|
|
29
|
+
*
|
|
30
|
+
* @param {Number} mask Mask pattern
|
|
31
|
+
* @return {Boolean} true if valid, false otherwise
|
|
32
|
+
*/
|
|
33
|
+
exports.isValid = function isValid (mask) {
|
|
34
|
+
return mask != null && mask !== '' && !isNaN(mask) && mask >= 0 && mask <= 7
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Returns mask pattern from a value.
|
|
39
|
+
* If value is not valid, returns undefined
|
|
40
|
+
*
|
|
41
|
+
* @param {Number|String} value Mask pattern value
|
|
42
|
+
* @return {Number} Valid mask pattern or undefined
|
|
43
|
+
*/
|
|
44
|
+
exports.from = function from (value) {
|
|
45
|
+
return exports.isValid(value) ? parseInt(value, 10) : undefined
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Find adjacent modules in row/column with the same color
|
|
50
|
+
* and assign a penalty value.
|
|
51
|
+
*
|
|
52
|
+
* Points: N1 + i
|
|
53
|
+
* i is the amount by which the number of adjacent modules of the same color exceeds 5
|
|
54
|
+
*/
|
|
55
|
+
exports.getPenaltyN1 = function getPenaltyN1 (data) {
|
|
56
|
+
const size = data.size
|
|
57
|
+
let points = 0
|
|
58
|
+
let sameCountCol = 0
|
|
59
|
+
let sameCountRow = 0
|
|
60
|
+
let lastCol = null
|
|
61
|
+
let lastRow = null
|
|
62
|
+
|
|
63
|
+
for (let row = 0; row < size; row++) {
|
|
64
|
+
sameCountCol = sameCountRow = 0
|
|
65
|
+
lastCol = lastRow = null
|
|
66
|
+
|
|
67
|
+
for (let col = 0; col < size; col++) {
|
|
68
|
+
let module = data.get(row, col)
|
|
69
|
+
if (module === lastCol) {
|
|
70
|
+
sameCountCol++
|
|
71
|
+
} else {
|
|
72
|
+
if (sameCountCol >= 5) points += PenaltyScores.N1 + (sameCountCol - 5)
|
|
73
|
+
lastCol = module
|
|
74
|
+
sameCountCol = 1
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
module = data.get(col, row)
|
|
78
|
+
if (module === lastRow) {
|
|
79
|
+
sameCountRow++
|
|
80
|
+
} else {
|
|
81
|
+
if (sameCountRow >= 5) points += PenaltyScores.N1 + (sameCountRow - 5)
|
|
82
|
+
lastRow = module
|
|
83
|
+
sameCountRow = 1
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (sameCountCol >= 5) points += PenaltyScores.N1 + (sameCountCol - 5)
|
|
88
|
+
if (sameCountRow >= 5) points += PenaltyScores.N1 + (sameCountRow - 5)
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return points
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Find 2x2 blocks with the same color and assign a penalty value
|
|
96
|
+
*
|
|
97
|
+
* Points: N2 * (m - 1) * (n - 1)
|
|
98
|
+
*/
|
|
99
|
+
exports.getPenaltyN2 = function getPenaltyN2 (data) {
|
|
100
|
+
const size = data.size
|
|
101
|
+
let points = 0
|
|
102
|
+
|
|
103
|
+
for (let row = 0; row < size - 1; row++) {
|
|
104
|
+
for (let col = 0; col < size - 1; col++) {
|
|
105
|
+
const last = data.get(row, col) +
|
|
106
|
+
data.get(row, col + 1) +
|
|
107
|
+
data.get(row + 1, col) +
|
|
108
|
+
data.get(row + 1, col + 1)
|
|
109
|
+
|
|
110
|
+
if (last === 4 || last === 0) points++
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
return points * PenaltyScores.N2
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Find 1:1:3:1:1 ratio (dark:light:dark:light:dark) pattern in row/column,
|
|
119
|
+
* preceded or followed by light area 4 modules wide
|
|
120
|
+
*
|
|
121
|
+
* Points: N3 * number of pattern found
|
|
122
|
+
*/
|
|
123
|
+
exports.getPenaltyN3 = function getPenaltyN3 (data) {
|
|
124
|
+
const size = data.size
|
|
125
|
+
let points = 0
|
|
126
|
+
let bitsCol = 0
|
|
127
|
+
let bitsRow = 0
|
|
128
|
+
|
|
129
|
+
for (let row = 0; row < size; row++) {
|
|
130
|
+
bitsCol = bitsRow = 0
|
|
131
|
+
for (let col = 0; col < size; col++) {
|
|
132
|
+
bitsCol = ((bitsCol << 1) & 0x7FF) | data.get(row, col)
|
|
133
|
+
if (col >= 10 && (bitsCol === 0x5D0 || bitsCol === 0x05D)) points++
|
|
134
|
+
|
|
135
|
+
bitsRow = ((bitsRow << 1) & 0x7FF) | data.get(col, row)
|
|
136
|
+
if (col >= 10 && (bitsRow === 0x5D0 || bitsRow === 0x05D)) points++
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
return points * PenaltyScores.N3
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Calculate proportion of dark modules in entire symbol
|
|
145
|
+
*
|
|
146
|
+
* Points: N4 * k
|
|
147
|
+
*
|
|
148
|
+
* k is the rating of the deviation of the proportion of dark modules
|
|
149
|
+
* in the symbol from 50% in steps of 5%
|
|
150
|
+
*/
|
|
151
|
+
exports.getPenaltyN4 = function getPenaltyN4 (data) {
|
|
152
|
+
let darkCount = 0
|
|
153
|
+
const modulesCount = data.data.length
|
|
154
|
+
|
|
155
|
+
for (let i = 0; i < modulesCount; i++) darkCount += data.data[i]
|
|
156
|
+
|
|
157
|
+
const k = Math.abs(Math.ceil((darkCount * 100 / modulesCount) / 5) - 10)
|
|
158
|
+
|
|
159
|
+
return k * PenaltyScores.N4
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Return mask value at given position
|
|
164
|
+
*
|
|
165
|
+
* @param {Number} maskPattern Pattern reference value
|
|
166
|
+
* @param {Number} i Row
|
|
167
|
+
* @param {Number} j Column
|
|
168
|
+
* @return {Boolean} Mask value
|
|
169
|
+
*/
|
|
170
|
+
function getMaskAt (maskPattern, i, j) {
|
|
171
|
+
switch (maskPattern) {
|
|
172
|
+
case exports.Patterns.PATTERN000: return (i + j) % 2 === 0
|
|
173
|
+
case exports.Patterns.PATTERN001: return i % 2 === 0
|
|
174
|
+
case exports.Patterns.PATTERN010: return j % 3 === 0
|
|
175
|
+
case exports.Patterns.PATTERN011: return (i + j) % 3 === 0
|
|
176
|
+
case exports.Patterns.PATTERN100: return (Math.floor(i / 2) + Math.floor(j / 3)) % 2 === 0
|
|
177
|
+
case exports.Patterns.PATTERN101: return (i * j) % 2 + (i * j) % 3 === 0
|
|
178
|
+
case exports.Patterns.PATTERN110: return ((i * j) % 2 + (i * j) % 3) % 2 === 0
|
|
179
|
+
case exports.Patterns.PATTERN111: return ((i * j) % 3 + (i + j) % 2) % 2 === 0
|
|
180
|
+
|
|
181
|
+
default: throw new Error('bad maskPattern:' + maskPattern)
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* Apply a mask pattern to a BitMatrix
|
|
187
|
+
*
|
|
188
|
+
* @param {Number} pattern Pattern reference number
|
|
189
|
+
* @param {BitMatrix} data BitMatrix data
|
|
190
|
+
*/
|
|
191
|
+
exports.applyMask = function applyMask (pattern, data) {
|
|
192
|
+
const size = data.size
|
|
193
|
+
|
|
194
|
+
for (let col = 0; col < size; col++) {
|
|
195
|
+
for (let row = 0; row < size; row++) {
|
|
196
|
+
if (data.isReserved(row, col)) continue
|
|
197
|
+
data.xor(row, col, getMaskAt(pattern, row, col))
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Returns the best mask pattern for data
|
|
204
|
+
*
|
|
205
|
+
* @param {BitMatrix} data
|
|
206
|
+
* @return {Number} Mask pattern reference number
|
|
207
|
+
*/
|
|
208
|
+
exports.getBestMask = function getBestMask (data, setupFormatFunc) {
|
|
209
|
+
const numPatterns = Object.keys(exports.Patterns).length
|
|
210
|
+
let bestPattern = 0
|
|
211
|
+
let lowerPenalty = Infinity
|
|
212
|
+
|
|
213
|
+
for (let p = 0; p < numPatterns; p++) {
|
|
214
|
+
setupFormatFunc(p)
|
|
215
|
+
exports.applyMask(p, data)
|
|
216
|
+
|
|
217
|
+
// Calculate penalty
|
|
218
|
+
const penalty =
|
|
219
|
+
exports.getPenaltyN1(data) +
|
|
220
|
+
exports.getPenaltyN2(data) +
|
|
221
|
+
exports.getPenaltyN3(data) +
|
|
222
|
+
exports.getPenaltyN4(data)
|
|
223
|
+
|
|
224
|
+
// Undo previously applied mask
|
|
225
|
+
exports.applyMask(p, data)
|
|
226
|
+
|
|
227
|
+
if (penalty < lowerPenalty) {
|
|
228
|
+
lowerPenalty = penalty
|
|
229
|
+
bestPattern = p
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
return bestPattern
|
|
234
|
+
}
|