Skip to content

nocode-js/sequential-workflow-model

Repository files navigation

Sequential Workflow Model

License: MIT View this project on NPM

This package contains a extendable data model of a sequential workflow.

The package is used by the following packages:

🔨 How to Extend Model

To extend the model, you need to extend base interfaces.

interface MyDefinition extends Definition {
  properties: {
    baseUrl: string;
  };
}

interface SendEmailStep extends Step {
  componentType: 'task';
  type: 'sendEmail';
  properties: {
    to: string;
    subject: string;
    body: string;
  };
}

interface IfStep extends BranchedStep {
  componentType: 'switch';
  type: 'if';
  properties: {
    condition: string;
  };
}

💡 License

This project is released under the MIT license.

About

Extendable data model of sequential workflow.

Resources

License

Stars

Watchers

Forks

Packages

No packages published
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy