anbaric 1.12.0 → 1.14.0
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 +3 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -179,9 +179,12 @@ principal commands are:
|
|
|
179
179
|
| `anbaric state-machines` | list registered state machines |
|
|
180
180
|
| `anbaric jobs create <sm-id> <start-state> [k=v ...]` | create a job and queue it for processing |
|
|
181
181
|
| `anbaric jobs list [state-machine-id]` | list jobs |
|
|
182
|
+
| `anbaric jobs stats` | job counts per state and the queue size |
|
|
182
183
|
| `anbaric jobs watch <job-id>` | follow a job's state as it changes |
|
|
183
184
|
| `anbaric jobs set-state <job-id> <state>` | move a job to a state and re-queue it |
|
|
184
185
|
| `anbaric jobs update <job-id> <key=value ...>` | change job properties and re-queue |
|
|
186
|
+
| `anbaric jobs kill <job-id>` | kill a job so it stops progressing |
|
|
187
|
+
| `anbaric jobs kill-old <age>` | kill jobs not updated within `<age>` (e.g. `24h`, `7d`) |
|
|
185
188
|
|
|
186
189
|
The `app configure`/`deploy`/`update` commands act on the application for the
|
|
187
190
|
current project, located by walking up to the nearest `package.json`, so they
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anbaric",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "Everything needed to write an Anbaric app: state machines, jobs, document and secret stores, local in-memory implementations and the Anbaric Cloud clients",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"src"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"anbaric-impl-cloud": "^1.
|
|
14
|
-
"anbaric-data-store": "^1.
|
|
15
|
-
"anbaric-state-machine": "^1.
|
|
16
|
-
"anbaric-tsapi": "^1.
|
|
13
|
+
"anbaric-impl-cloud": "^1.14.0",
|
|
14
|
+
"anbaric-data-store": "^1.14.0",
|
|
15
|
+
"anbaric-state-machine": "^1.14.0",
|
|
16
|
+
"anbaric-tsapi": "^1.14.0"
|
|
17
17
|
}
|
|
18
18
|
}
|