@d34dman/flowdrop 0.0.58 → 0.0.59
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/README.md +5 -4
- package/dist/schema/index.d.ts +1 -1
- package/dist/schema/index.js +1 -1
- package/dist/schemas/v1/workflow.schema.json +1078 -0
- package/package.json +232 -231
- package/schemas/v1/workflow.schema.json +0 -952
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="static/logo.svg" alt="FlowDrop" width="120" />
|
|
2
|
+
<img src="https://raw.githubusercontent.com/flowdrop-io/flowdrop/main/libs/flowdrop/static/logo.svg" alt="FlowDrop" width="120" />
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center">FlowDrop</h1>
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
</p>
|
|
30
30
|
|
|
31
31
|
<p align="center">
|
|
32
|
-
<img src="static/FlowDrop-Screenshot.jpg" alt="FlowDrop Screenshot" width="800" />
|
|
32
|
+
<img src="https://raw.githubusercontent.com/flowdrop-io/flowdrop/main/libs/flowdrop/static/FlowDrop-Screenshot.jpg" alt="FlowDrop Screenshot" width="800" />
|
|
33
33
|
</p>
|
|
34
34
|
<p align="center">
|
|
35
35
|
<em>Build AI-powered workflows with drag-and-drop simplicity. Connect nodes, configure inputs/outputs, and visualize your entire pipeline.</em>
|
|
@@ -90,7 +90,7 @@ FlowDrop ships with 7 beautifully designed node types:
|
|
|
90
90
|
| `note` | Markdown documentation blocks |
|
|
91
91
|
|
|
92
92
|
<p align="center">
|
|
93
|
-
<img src="static/Node-Types.jpg" alt="FlowDrop Node Types" width="800" />
|
|
93
|
+
<img src="https://raw.githubusercontent.com/flowdrop-io/flowdrop/main/libs/flowdrop/static/Node-Types.jpg" alt="FlowDrop Node Types" width="800" />
|
|
94
94
|
</p>
|
|
95
95
|
<p align="center">
|
|
96
96
|
<em>From simple triggers to complex branching logic, each node type is designed for specific workflow patterns.</em>
|
|
@@ -199,6 +199,7 @@ Make it yours with CSS custom properties:
|
|
|
199
199
|
### Docker (Recommended)
|
|
200
200
|
|
|
201
201
|
```bash
|
|
202
|
+
cd ../../apps/example-client-docker
|
|
202
203
|
cp env.example .env
|
|
203
204
|
docker-compose up -d
|
|
204
205
|
```
|
|
@@ -217,7 +218,7 @@ Runtime configuration means you build once and deploy to staging, production, or
|
|
|
217
218
|
| Resource | Description |
|
|
218
219
|
| ------------------------------------------------------------ | ------------------------ |
|
|
219
220
|
| [API Documentation](https://flowdrop-io.github.io/flowdrop/) | REST API specification |
|
|
220
|
-
| [
|
|
221
|
+
| [Docker Guide](../../apps/example-client-docker/README.md) | Docker deployment guide |
|
|
221
222
|
| [QUICK_START.md](./QUICK_START.md) | Get running in 5 minutes |
|
|
222
223
|
| [CHANGELOG.md](./CHANGELOG.md) | Version history |
|
|
223
224
|
|
package/dist/schema/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
*
|
|
18
18
|
* @module schema
|
|
19
19
|
*/
|
|
20
|
-
import workflowSchema from '
|
|
20
|
+
import workflowSchema from '../schemas/v1/workflow.schema.json';
|
|
21
21
|
/** Current workflow schema format version */
|
|
22
22
|
export declare const WORKFLOW_SCHEMA_VERSION = "1.0.0";
|
|
23
23
|
export { workflowSchema };
|
package/dist/schema/index.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
*
|
|
18
18
|
* @module schema
|
|
19
19
|
*/
|
|
20
|
-
import workflowSchema from '
|
|
20
|
+
import workflowSchema from '../schemas/v1/workflow.schema.json';
|
|
21
21
|
/** Current workflow schema format version */
|
|
22
22
|
export const WORKFLOW_SCHEMA_VERSION = '1.0.0';
|
|
23
23
|
export { workflowSchema };
|