@aglyn/plugins-workflows 1.0.0-beta.143 → 1.0.0-beta.145
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 +16 -2
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
# @aglyn/plugins-workflows
|
|
2
2
|
|
|
3
|
-
The Automation plugin
|
|
3
|
+
The Automation plugin: the console's **Automation** section —
|
|
4
4
|
Workflows, Actions and Webhooks — and the engine that runs what is built there.
|
|
5
5
|
|
|
6
|
+
> Beta. Published from the Aglyn monorepo under the `beta` dist-tag; APIs can change between beta releases.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @aglyn/plugins-workflows@beta
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
A plugin is loaded through Aglyn's plugin manager (`@aglyn/aglyn`) by the console and the tenant runtime; it is not a standalone library.
|
|
15
|
+
|
|
6
16
|
## The engine
|
|
7
17
|
|
|
8
18
|
`src/lib/engine/` holds the automation engine, and nothing outside this plugin
|
|
9
19
|
runs an automation:
|
|
10
20
|
|
|
11
|
-
- `workflow-steps.ts` — ONE STEP MODEL
|
|
21
|
+
- `workflow-steps.ts` — ONE STEP MODEL. A stored step is a function
|
|
12
22
|
call or an Actions step, told apart by `type`; nothing is migrated. It also
|
|
13
23
|
holds which Actions steps a workflow may run (every server-side one), the
|
|
14
24
|
refusal for the rest, and the validation both editors use. Pure and
|
|
@@ -50,3 +60,7 @@ the core's own compose path read it too.
|
|
|
50
60
|
- `./server` — the tenant and console API surfaces: the inbound webhook, the
|
|
51
61
|
flow-resume job, the automation draft writer.
|
|
52
62
|
- `./declarations.server` — the boot registration above.
|
|
63
|
+
|
|
64
|
+
## License
|
|
65
|
+
|
|
66
|
+
Apache-2.0. Source: https://github.com/aglyn/aglyn/tree/main/libs/plugins/workflows
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aglyn/plugins-workflows",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.145",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://aglyn.com",
|
|
6
6
|
"repository": {
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"./package.json": "./package.json"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@aglyn/aglyn": "1.0.0-beta.
|
|
29
|
-
"@aglyn/shared-data-mdi": "1.0.0-beta.
|
|
30
|
-
"@aglyn/shared-ui-jsx": "1.0.0-beta.
|
|
31
|
-
"@aglyn/shared-ui-next": "1.0.0-beta.
|
|
32
|
-
"@aglyn/shared-ui-snackstack": "1.0.0-beta.
|
|
33
|
-
"@aglyn/shared-util-email": "1.0.0-beta.
|
|
34
|
-
"@aglyn/shared-util-timestamp": "1.0.0-beta.
|
|
35
|
-
"@aglyn/tenant-data-admin": "1.0.0-beta.
|
|
36
|
-
"@aglyn/tenant-feature-instance": "1.0.0-beta.
|
|
37
|
-
"@aglyn/tenant-runtime": "1.0.0-beta.
|
|
28
|
+
"@aglyn/aglyn": "1.0.0-beta.145",
|
|
29
|
+
"@aglyn/shared-data-mdi": "1.0.0-beta.145",
|
|
30
|
+
"@aglyn/shared-ui-jsx": "1.0.0-beta.145",
|
|
31
|
+
"@aglyn/shared-ui-next": "1.0.0-beta.145",
|
|
32
|
+
"@aglyn/shared-ui-snackstack": "1.0.0-beta.145",
|
|
33
|
+
"@aglyn/shared-util-email": "1.0.0-beta.145",
|
|
34
|
+
"@aglyn/shared-util-timestamp": "1.0.0-beta.145",
|
|
35
|
+
"@aglyn/tenant-data-admin": "1.0.0-beta.145",
|
|
36
|
+
"@aglyn/tenant-feature-instance": "1.0.0-beta.145",
|
|
37
|
+
"@aglyn/tenant-runtime": "1.0.0-beta.145",
|
|
38
38
|
"@swc/helpers": "0.5.23"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|