We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9766f0a commit 1b32bceCopy full SHA for 1b32bce
2 files changed
package.json
@@ -43,7 +43,7 @@
43
"ai-agent"
44
],
45
"dependencies": {
46
- "@linkedapi/node": "^1.2.16",
+ "@linkedapi/node": "^1.2.17",
47
"@oclif/core": "^4.2.10"
48
},
49
"devDependencies": {
src/commands/workflow/status.ts
@@ -51,11 +51,11 @@ See https://linkedapi.io/docs/executing-workflows/ for details on workflow execu
51
} else {
52
const status = await client.customWorkflow.status(args.id);
53
54
- if (status === 'running') {
+ if (status === 'running' || status === 'pending') {
55
formatOutput({
56
data: {
57
workflowId: args.id,
58
- status: 'running',
+ status,
59
60
errors: [],
61
isJson: flags.json,
0 commit comments