├── .env ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── npm-ci.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .nvmrc ├── .prettierrc.js ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── assets ├── simple-workflow.svg └── supplying-pizza.svg ├── coverage-badge.svg ├── docs ├── .nojekyll ├── assets │ ├── hierarchy.js │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ ├── context_context.Context.html │ ├── context_state.State.html │ ├── context_token.Token.html │ ├── core_activities_event.EventActivity.html │ ├── core_activities_gateway.GatewayActivity.html │ ├── core_activities_task.TaskActivity.html │ ├── core_base_activity.Activity.html │ ├── core_base_attribute.Attribute.html │ ├── core_base_sequence.Sequence.html │ ├── core_container.Container.html │ └── engine_workflow.WorkflowJS.html ├── coverage │ ├── coverage-summary.json │ ├── lcov-report │ │ ├── base.css │ │ ├── block-navigation.js │ │ ├── favicon.png │ │ ├── index.html │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── sort-arrow-sprite.png │ │ ├── sorter.js │ │ └── src │ │ │ ├── common │ │ │ ├── decorators │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ ├── method.ts.html │ │ │ │ ├── params.ts.html │ │ │ │ └── process.ts.html │ │ │ ├── index.html │ │ │ ├── index.ts.html │ │ │ ├── keys.ts.html │ │ │ └── types.ts.html │ │ │ ├── context │ │ │ ├── context.ts.html │ │ │ ├── enums │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ └── status.ts.html │ │ │ ├── index.html │ │ │ ├── index.ts.html │ │ │ ├── state.ts.html │ │ │ └── token.ts.html │ │ │ ├── core │ │ │ ├── activities │ │ │ │ ├── event.ts.html │ │ │ │ ├── gateway.ts.html │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ └── task.ts.html │ │ │ ├── base │ │ │ │ ├── activity.ts.html │ │ │ │ ├── attribute.ts.html │ │ │ │ ├── index.html │ │ │ │ ├── index.ts.html │ │ │ │ └── sequence.ts.html │ │ │ ├── container.ts.html │ │ │ ├── index.html │ │ │ └── index.ts.html │ │ │ ├── engine │ │ │ ├── index.html │ │ │ ├── index.ts.html │ │ │ ├── types │ │ │ │ ├── execute.ts.html │ │ │ │ ├── index.html │ │ │ │ └── index.ts.html │ │ │ └── workflow.ts.html │ │ │ ├── index.html │ │ │ ├── index.ts.html │ │ │ ├── tools.ts.html │ │ │ └── utils.ts.html │ └── lcov.info ├── enums │ ├── context_enums_status.Status.html │ ├── core_activities_event.EventDefinitionType.html │ ├── core_activities_event.EventType.html │ ├── core_activities_event.IntermediateType.html │ ├── core_activities_gateway.GatewayType.html │ └── core_activities_task.TaskType.html ├── functions │ ├── common_decorators_method.Node.html │ ├── common_decorators_params.Act.html │ ├── common_decorators_params.Ctx.html │ ├── common_decorators_params.Data.html │ ├── common_decorators_params.Param.html │ ├── common_decorators_params.Sign.html │ ├── common_decorators_params.Value.html │ ├── common_decorators_process.Process.html │ ├── tools.getActivity.html │ ├── tools.getBPMNProcess.html │ ├── tools.getKey.html │ ├── tools.getWrappedBPMNElement.html │ ├── tools.takeOutgoing.html │ ├── utils.logger.html │ ├── utils.parse.html │ ├── utils.readFile.html │ └── utils.uid.html ├── hierarchy.html ├── index.html ├── interfaces │ ├── context_context.ContextInterface.html │ ├── context_state.StateInterface.html │ ├── context_token.TokenInterface.html │ ├── core_base_activity.GoOutInterface.html │ ├── core_base_activity.TakeOutgoingInterface.html │ ├── core_container.DefinitionContainer.html │ ├── core_container.ElementContainer.html │ ├── core_container.WrappedElement.html │ └── engine_workflow.ExecutionInterface.html ├── media │ └── LICENSE ├── modules.html ├── modules │ ├── common.html │ ├── common_decorators.html │ ├── common_decorators_method.html │ ├── common_decorators_params.html │ ├── common_decorators_process.html │ ├── common_keys.html │ ├── common_types.html │ ├── context.html │ ├── context_context.html │ ├── context_enums.html │ ├── context_enums_status.html │ ├── context_state.html │ ├── context_token.html │ ├── core.html │ ├── core_activities.html │ ├── core_activities_event.html │ ├── core_activities_gateway.html │ ├── core_activities_task.html │ ├── core_base.html │ ├── core_base_activity.html │ ├── core_base_attribute.html │ ├── core_base_sequence.html │ ├── core_container.html │ ├── engine.html │ ├── engine_types.html │ ├── engine_types_execute.html │ ├── engine_workflow.html │ ├── index.html │ ├── tools.html │ ├── type.html │ ├── type_base.html │ ├── type_collaboration.html │ ├── type_definition.html │ ├── type_process.html │ └── utils.html ├── types │ ├── common_decorators_method.MethodOptions.html │ ├── common_decorators_params.ParamType.html │ ├── common_types.IdentityOptions.html │ ├── common_types.Metadata.html │ ├── common_types.ProcessOptions.html │ ├── engine_types_execute.Execute.html │ ├── type_base.BPMNActivity.html │ ├── type_base.BPMNActivityType.html │ ├── type_base.BPMNElement.html │ ├── type_base.BPMNEvent.html │ ├── type_base.BPMNEventDefinitionType.html │ ├── type_base.BPMNEventType.html │ ├── type_base.BPMNGateway.html │ ├── type_base.BPMNGatewayType.html │ ├── type_base.BPMNSchema.html │ ├── type_base.BPMNTaskType.html │ ├── type_base._.html │ ├── type_collaboration.BPMNCollaboration.html │ ├── type_collaboration.BPMNMessageFlow.html │ ├── type_collaboration.BPMNParticipant.html │ ├── type_definition.BPMNDefinition.html │ ├── type_process.BPMNBoundaryEvent.html │ ├── type_process.BPMNEndEvent.html │ ├── type_process.BPMNEventDefinition.html │ ├── type_process.BPMNIntermediateEvent.html │ ├── type_process.BPMNLane.html │ ├── type_process.BPMNLaneSet.html │ ├── type_process.BPMNNormalGateway.html │ ├── type_process.BPMNProcess.html │ ├── type_process.BPMNSequenceFlow.html │ ├── type_process.BPMNStartEvent.html │ ├── type_process.BPMNStrictGateway.html │ └── type_process.BPMNTask.html └── variables │ ├── common_keys.Default.html │ ├── common_keys.NodeKey.html │ └── common_keys.ParamKey.html ├── example ├── .env ├── README.md ├── example_01.ts ├── example_02.ts ├── example_03.ts ├── example_04.ts ├── example_05.ts ├── example_06.ts ├── simple-workflow.bpmn ├── supplying-pizza.bpmn └── tsconfig.json ├── jest.config.ts ├── jest.setup.js ├── package.json ├── pnpm-lock.yaml ├── src ├── common │ ├── decorators │ │ ├── index.ts │ │ ├── method.ts │ │ ├── params.ts │ │ └── process.ts │ ├── index.ts │ ├── keys.ts │ └── types.ts ├── context │ ├── context.ts │ ├── enums │ │ ├── index.ts │ │ └── status.ts │ ├── index.ts │ ├── state.ts │ └── token.ts ├── core │ ├── activities │ │ ├── event.ts │ │ ├── gateway.ts │ │ ├── index.ts │ │ └── task.ts │ ├── base │ │ ├── activity.ts │ │ ├── attribute.ts │ │ ├── index.ts │ │ └── sequence.ts │ ├── container.ts │ └── index.ts ├── engine │ ├── index.ts │ ├── types │ │ ├── execute.ts │ │ └── index.ts │ └── workflow.ts ├── index.ts ├── tools.ts ├── type │ ├── base.ts │ ├── collaboration.ts │ ├── definition.ts │ ├── index.ts │ └── process.ts └── utils.ts ├── test ├── core │ └── base │ │ ├── activity.test.ts │ │ ├── attribute.test.ts │ │ └── sequence.test.ts ├── engine │ └── workflow.test.ts ├── tools.test.ts └── utils.test.ts ├── tsconfig.json └── tslint.json /.env: -------------------------------------------------------------------------------- 1 | DEBUG=* 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | docs 3 | coverage 4 | node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/npm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.github/workflows/npm-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/README.md -------------------------------------------------------------------------------- /assets/simple-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/assets/simple-workflow.svg -------------------------------------------------------------------------------- /assets/supplying-pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/assets/supplying-pizza.svg -------------------------------------------------------------------------------- /coverage-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/coverage-badge.svg -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/hierarchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/hierarchy.js -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/context_context.Context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/context_context.Context.html -------------------------------------------------------------------------------- /docs/classes/context_state.State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/context_state.State.html -------------------------------------------------------------------------------- /docs/classes/context_token.Token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/context_token.Token.html -------------------------------------------------------------------------------- /docs/classes/core_activities_event.EventActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/core_activities_event.EventActivity.html -------------------------------------------------------------------------------- /docs/classes/core_activities_gateway.GatewayActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/core_activities_gateway.GatewayActivity.html -------------------------------------------------------------------------------- /docs/classes/core_activities_task.TaskActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/core_activities_task.TaskActivity.html -------------------------------------------------------------------------------- /docs/classes/core_base_activity.Activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/core_base_activity.Activity.html -------------------------------------------------------------------------------- /docs/classes/core_base_attribute.Attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/core_base_attribute.Attribute.html -------------------------------------------------------------------------------- /docs/classes/core_base_sequence.Sequence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/core_base_sequence.Sequence.html -------------------------------------------------------------------------------- /docs/classes/core_container.Container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/core_container.Container.html -------------------------------------------------------------------------------- /docs/classes/engine_workflow.WorkflowJS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/classes/engine_workflow.WorkflowJS.html -------------------------------------------------------------------------------- /docs/coverage/coverage-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/coverage-summary.json -------------------------------------------------------------------------------- /docs/coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /docs/coverage/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /docs/coverage/lcov-report/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/favicon.png -------------------------------------------------------------------------------- /docs/coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /docs/coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /docs/coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /docs/coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/decorators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/decorators/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/decorators/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/decorators/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/decorators/method.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/decorators/method.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/decorators/params.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/decorators/params.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/decorators/process.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/decorators/process.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/keys.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/keys.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/common/types.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/common/types.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/context.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/context.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/enums/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/enums/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/enums/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/enums/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/enums/status.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/enums/status.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/state.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/state.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/context/token.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/context/token.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/activities/event.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/activities/event.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/activities/gateway.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/activities/gateway.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/activities/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/activities/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/activities/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/activities/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/activities/task.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/activities/task.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/base/activity.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/base/activity.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/base/attribute.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/base/attribute.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/base/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/base/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/base/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/base/sequence.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/base/sequence.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/container.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/container.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/core/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/core/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/engine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/engine/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/engine/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/engine/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/engine/types/execute.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/engine/types/execute.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/engine/types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/engine/types/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/engine/types/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/engine/types/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/engine/workflow.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/engine/workflow.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/tools.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/tools.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/src/utils.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov-report/src/utils.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/coverage/lcov.info -------------------------------------------------------------------------------- /docs/enums/context_enums_status.Status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/enums/context_enums_status.Status.html -------------------------------------------------------------------------------- /docs/enums/core_activities_event.EventDefinitionType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/enums/core_activities_event.EventDefinitionType.html -------------------------------------------------------------------------------- /docs/enums/core_activities_event.EventType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/enums/core_activities_event.EventType.html -------------------------------------------------------------------------------- /docs/enums/core_activities_event.IntermediateType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/enums/core_activities_event.IntermediateType.html -------------------------------------------------------------------------------- /docs/enums/core_activities_gateway.GatewayType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/enums/core_activities_gateway.GatewayType.html -------------------------------------------------------------------------------- /docs/enums/core_activities_task.TaskType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/enums/core_activities_task.TaskType.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_method.Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_method.Node.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_params.Act.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_params.Act.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_params.Ctx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_params.Ctx.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_params.Data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_params.Data.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_params.Param.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_params.Param.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_params.Sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_params.Sign.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_params.Value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_params.Value.html -------------------------------------------------------------------------------- /docs/functions/common_decorators_process.Process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/common_decorators_process.Process.html -------------------------------------------------------------------------------- /docs/functions/tools.getActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/tools.getActivity.html -------------------------------------------------------------------------------- /docs/functions/tools.getBPMNProcess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/tools.getBPMNProcess.html -------------------------------------------------------------------------------- /docs/functions/tools.getKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/tools.getKey.html -------------------------------------------------------------------------------- /docs/functions/tools.getWrappedBPMNElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/tools.getWrappedBPMNElement.html -------------------------------------------------------------------------------- /docs/functions/tools.takeOutgoing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/tools.takeOutgoing.html -------------------------------------------------------------------------------- /docs/functions/utils.logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/utils.logger.html -------------------------------------------------------------------------------- /docs/functions/utils.parse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/utils.parse.html -------------------------------------------------------------------------------- /docs/functions/utils.readFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/utils.readFile.html -------------------------------------------------------------------------------- /docs/functions/utils.uid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/functions/utils.uid.html -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/context_context.ContextInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/context_context.ContextInterface.html -------------------------------------------------------------------------------- /docs/interfaces/context_state.StateInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/context_state.StateInterface.html -------------------------------------------------------------------------------- /docs/interfaces/context_token.TokenInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/context_token.TokenInterface.html -------------------------------------------------------------------------------- /docs/interfaces/core_base_activity.GoOutInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/core_base_activity.GoOutInterface.html -------------------------------------------------------------------------------- /docs/interfaces/core_base_activity.TakeOutgoingInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/core_base_activity.TakeOutgoingInterface.html -------------------------------------------------------------------------------- /docs/interfaces/core_container.DefinitionContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/core_container.DefinitionContainer.html -------------------------------------------------------------------------------- /docs/interfaces/core_container.ElementContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/core_container.ElementContainer.html -------------------------------------------------------------------------------- /docs/interfaces/core_container.WrappedElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/core_container.WrappedElement.html -------------------------------------------------------------------------------- /docs/interfaces/engine_workflow.ExecutionInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/interfaces/engine_workflow.ExecutionInterface.html -------------------------------------------------------------------------------- /docs/media/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/media/LICENSE -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/modules/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/common.html -------------------------------------------------------------------------------- /docs/modules/common_decorators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/common_decorators.html -------------------------------------------------------------------------------- /docs/modules/common_decorators_method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/common_decorators_method.html -------------------------------------------------------------------------------- /docs/modules/common_decorators_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/common_decorators_params.html -------------------------------------------------------------------------------- /docs/modules/common_decorators_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/common_decorators_process.html -------------------------------------------------------------------------------- /docs/modules/common_keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/common_keys.html -------------------------------------------------------------------------------- /docs/modules/common_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/common_types.html -------------------------------------------------------------------------------- /docs/modules/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/context.html -------------------------------------------------------------------------------- /docs/modules/context_context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/context_context.html -------------------------------------------------------------------------------- /docs/modules/context_enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/context_enums.html -------------------------------------------------------------------------------- /docs/modules/context_enums_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/context_enums_status.html -------------------------------------------------------------------------------- /docs/modules/context_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/context_state.html -------------------------------------------------------------------------------- /docs/modules/context_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/context_token.html -------------------------------------------------------------------------------- /docs/modules/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core.html -------------------------------------------------------------------------------- /docs/modules/core_activities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_activities.html -------------------------------------------------------------------------------- /docs/modules/core_activities_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_activities_event.html -------------------------------------------------------------------------------- /docs/modules/core_activities_gateway.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_activities_gateway.html -------------------------------------------------------------------------------- /docs/modules/core_activities_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_activities_task.html -------------------------------------------------------------------------------- /docs/modules/core_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_base.html -------------------------------------------------------------------------------- /docs/modules/core_base_activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_base_activity.html -------------------------------------------------------------------------------- /docs/modules/core_base_attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_base_attribute.html -------------------------------------------------------------------------------- /docs/modules/core_base_sequence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_base_sequence.html -------------------------------------------------------------------------------- /docs/modules/core_container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/core_container.html -------------------------------------------------------------------------------- /docs/modules/engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/engine.html -------------------------------------------------------------------------------- /docs/modules/engine_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/engine_types.html -------------------------------------------------------------------------------- /docs/modules/engine_types_execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/engine_types_execute.html -------------------------------------------------------------------------------- /docs/modules/engine_workflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/engine_workflow.html -------------------------------------------------------------------------------- /docs/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/index.html -------------------------------------------------------------------------------- /docs/modules/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/tools.html -------------------------------------------------------------------------------- /docs/modules/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/type.html -------------------------------------------------------------------------------- /docs/modules/type_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/type_base.html -------------------------------------------------------------------------------- /docs/modules/type_collaboration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/type_collaboration.html -------------------------------------------------------------------------------- /docs/modules/type_definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/type_definition.html -------------------------------------------------------------------------------- /docs/modules/type_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/type_process.html -------------------------------------------------------------------------------- /docs/modules/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/modules/utils.html -------------------------------------------------------------------------------- /docs/types/common_decorators_method.MethodOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/common_decorators_method.MethodOptions.html -------------------------------------------------------------------------------- /docs/types/common_decorators_params.ParamType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/common_decorators_params.ParamType.html -------------------------------------------------------------------------------- /docs/types/common_types.IdentityOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/common_types.IdentityOptions.html -------------------------------------------------------------------------------- /docs/types/common_types.Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/common_types.Metadata.html -------------------------------------------------------------------------------- /docs/types/common_types.ProcessOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/common_types.ProcessOptions.html -------------------------------------------------------------------------------- /docs/types/engine_types_execute.Execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/engine_types_execute.Execute.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNActivity.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNActivityType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNActivityType.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNElement.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNEvent.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNEventDefinitionType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNEventDefinitionType.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNEventType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNEventType.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNGateway.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNGateway.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNGatewayType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNGatewayType.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNSchema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNSchema.html -------------------------------------------------------------------------------- /docs/types/type_base.BPMNTaskType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base.BPMNTaskType.html -------------------------------------------------------------------------------- /docs/types/type_base._.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_base._.html -------------------------------------------------------------------------------- /docs/types/type_collaboration.BPMNCollaboration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_collaboration.BPMNCollaboration.html -------------------------------------------------------------------------------- /docs/types/type_collaboration.BPMNMessageFlow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_collaboration.BPMNMessageFlow.html -------------------------------------------------------------------------------- /docs/types/type_collaboration.BPMNParticipant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_collaboration.BPMNParticipant.html -------------------------------------------------------------------------------- /docs/types/type_definition.BPMNDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_definition.BPMNDefinition.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNBoundaryEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNBoundaryEvent.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNEndEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNEndEvent.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNEventDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNEventDefinition.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNIntermediateEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNIntermediateEvent.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNLane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNLane.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNLaneSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNLaneSet.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNNormalGateway.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNNormalGateway.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNProcess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNProcess.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNSequenceFlow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNSequenceFlow.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNStartEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNStartEvent.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNStrictGateway.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNStrictGateway.html -------------------------------------------------------------------------------- /docs/types/type_process.BPMNTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/types/type_process.BPMNTask.html -------------------------------------------------------------------------------- /docs/variables/common_keys.Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/variables/common_keys.Default.html -------------------------------------------------------------------------------- /docs/variables/common_keys.NodeKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/variables/common_keys.NodeKey.html -------------------------------------------------------------------------------- /docs/variables/common_keys.ParamKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/docs/variables/common_keys.ParamKey.html -------------------------------------------------------------------------------- /example/.env: -------------------------------------------------------------------------------- 1 | DEBUG=* 2 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/README.md -------------------------------------------------------------------------------- /example/example_01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/example_01.ts -------------------------------------------------------------------------------- /example/example_02.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/example_02.ts -------------------------------------------------------------------------------- /example/example_03.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/example_03.ts -------------------------------------------------------------------------------- /example/example_04.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/example_04.ts -------------------------------------------------------------------------------- /example/example_05.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/example_05.ts -------------------------------------------------------------------------------- /example/example_06.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/example_06.ts -------------------------------------------------------------------------------- /example/simple-workflow.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/simple-workflow.bpmn -------------------------------------------------------------------------------- /example/supplying-pizza.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/supplying-pizza.bpmn -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/common/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/common/decorators/index.ts -------------------------------------------------------------------------------- /src/common/decorators/method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/common/decorators/method.ts -------------------------------------------------------------------------------- /src/common/decorators/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/common/decorators/params.ts -------------------------------------------------------------------------------- /src/common/decorators/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/common/decorators/process.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/common/keys.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/context/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/context/context.ts -------------------------------------------------------------------------------- /src/context/enums/index.ts: -------------------------------------------------------------------------------- 1 | export * from './status'; 2 | -------------------------------------------------------------------------------- /src/context/enums/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/context/enums/status.ts -------------------------------------------------------------------------------- /src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/context/index.ts -------------------------------------------------------------------------------- /src/context/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/context/state.ts -------------------------------------------------------------------------------- /src/context/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/context/token.ts -------------------------------------------------------------------------------- /src/core/activities/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/activities/event.ts -------------------------------------------------------------------------------- /src/core/activities/gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/activities/gateway.ts -------------------------------------------------------------------------------- /src/core/activities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/activities/index.ts -------------------------------------------------------------------------------- /src/core/activities/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/activities/task.ts -------------------------------------------------------------------------------- /src/core/base/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/base/activity.ts -------------------------------------------------------------------------------- /src/core/base/attribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/base/attribute.ts -------------------------------------------------------------------------------- /src/core/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/base/index.ts -------------------------------------------------------------------------------- /src/core/base/sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/base/sequence.ts -------------------------------------------------------------------------------- /src/core/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/container.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/engine/index.ts -------------------------------------------------------------------------------- /src/engine/types/execute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/engine/types/execute.ts -------------------------------------------------------------------------------- /src/engine/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './execute'; 2 | -------------------------------------------------------------------------------- /src/engine/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/engine/workflow.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/type/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/type/base.ts -------------------------------------------------------------------------------- /src/type/collaboration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/type/collaboration.ts -------------------------------------------------------------------------------- /src/type/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/type/definition.ts -------------------------------------------------------------------------------- /src/type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/type/index.ts -------------------------------------------------------------------------------- /src/type/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/type/process.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/core/base/activity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/test/core/base/activity.test.ts -------------------------------------------------------------------------------- /test/core/base/attribute.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/test/core/base/attribute.test.ts -------------------------------------------------------------------------------- /test/core/base/sequence.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/test/core/base/sequence.test.ts -------------------------------------------------------------------------------- /test/engine/workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/test/engine/workflow.test.ts -------------------------------------------------------------------------------- /test/tools.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/test/tools.test.ts -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-js/HEAD/tslint.json --------------------------------------------------------------------------------