@outputai/cli 0.1.7-next.ee88974.0 → 0.1.7
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by orval v8.
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* Output.ai API
|
|
5
5
|
* API for managing and executing Output.ai workflows
|
|
@@ -15,9 +15,9 @@ export interface ErrorResponse {
|
|
|
15
15
|
/** Human-readable error message */
|
|
16
16
|
message?: string;
|
|
17
17
|
/**
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
* Workflow ID when the error is tied to a specific execution (e.g. timeout)
|
|
19
|
+
* @nullable
|
|
20
|
+
*/
|
|
21
21
|
workflowId?: string | null;
|
|
22
22
|
}
|
|
23
23
|
export type ValidationErrorResponseError = typeof ValidationErrorResponseError[keyof typeof ValidationErrorResponseError];
|
|
@@ -69,14 +69,14 @@ export interface Workflow {
|
|
|
69
69
|
*/
|
|
70
70
|
export type TraceInfoDestinations = {
|
|
71
71
|
/**
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
* Absolute path to local trace file, or null if not saved locally
|
|
73
|
+
* @nullable
|
|
74
|
+
*/
|
|
75
75
|
local: string | null;
|
|
76
76
|
/**
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
77
|
+
* Remote trace location (e.g., S3 URI), or null if not saved remotely
|
|
78
|
+
* @nullable
|
|
79
|
+
*/
|
|
80
80
|
remote: string | null;
|
|
81
81
|
};
|
|
82
82
|
/**
|
|
@@ -163,9 +163,9 @@ export interface WorkflowRunInfo {
|
|
|
163
163
|
/** ISO 8601 timestamp of run start */
|
|
164
164
|
startedAt?: string;
|
|
165
165
|
/**
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
166
|
+
* ISO 8601 timestamp of completion, or null if still running
|
|
167
|
+
* @nullable
|
|
168
|
+
*/
|
|
169
169
|
completedAt?: string | null;
|
|
170
170
|
}
|
|
171
171
|
export interface WorkflowRunsResponse {
|
|
@@ -226,9 +226,9 @@ export type PostWorkflowRun200 = {
|
|
|
226
226
|
/** The workflow execution status */
|
|
227
227
|
status?: PostWorkflowRun200Status;
|
|
228
228
|
/**
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
229
|
+
* Error message if workflow failed, null otherwise
|
|
230
|
+
* @nullable
|
|
231
|
+
*/
|
|
232
232
|
error?: string | null;
|
|
233
233
|
};
|
|
234
234
|
export type PostWorkflowStartBody = {
|
|
@@ -310,9 +310,9 @@ export type GetWorkflowIdResult200 = {
|
|
|
310
310
|
/** The workflow execution status */
|
|
311
311
|
status?: GetWorkflowIdResult200Status;
|
|
312
312
|
/**
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
313
|
+
* Error message if workflow failed, null otherwise
|
|
314
|
+
* @nullable
|
|
315
|
+
*/
|
|
316
316
|
error?: string | null;
|
|
317
317
|
};
|
|
318
318
|
export type GetWorkflowCatalogId200 = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/cli",
|
|
3
|
-
"version": "0.1.7
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "CLI for Output.ai workflow generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"output": "./bin/run.js"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@anthropic-ai/claude-agent-sdk": "0.2.
|
|
18
|
-
"@aws-sdk/client-s3": "3.
|
|
17
|
+
"@anthropic-ai/claude-agent-sdk": "0.2.81",
|
|
18
|
+
"@aws-sdk/client-s3": "3.1015.0",
|
|
19
19
|
"@hackylabs/deep-redact": "3.0.5",
|
|
20
20
|
"@inquirer/prompts": "8.3.2",
|
|
21
|
-
"@oclif/core": "4.
|
|
22
|
-
"@oclif/plugin-help": "6.2.
|
|
21
|
+
"@oclif/core": "4.10.2",
|
|
22
|
+
"@oclif/plugin-help": "6.2.40",
|
|
23
23
|
"change-case": "5.4.4",
|
|
24
24
|
"cli-progress": "3.12.0",
|
|
25
25
|
"cli-table3": "0.6.5",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"ky": "1.14.3",
|
|
33
33
|
"log-update": "7.2.0",
|
|
34
34
|
"semver": "7.7.4",
|
|
35
|
-
"yaml": "^2.
|
|
36
|
-
"@outputai/credentials": "0.1.7
|
|
37
|
-
"@outputai/
|
|
38
|
-
"@outputai/
|
|
35
|
+
"yaml": "^2.8.3",
|
|
36
|
+
"@outputai/credentials": "0.1.7",
|
|
37
|
+
"@outputai/llm": "0.1.7",
|
|
38
|
+
"@outputai/evals": "0.1.7"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/cli-progress": "3.11.6",
|
|
42
42
|
"@types/debug": "4.1.13",
|
|
43
43
|
"@types/js-yaml": "4.0.9",
|
|
44
44
|
"@types/semver": "7.7.1",
|
|
45
|
-
"orval": "8.
|
|
45
|
+
"orval": "8.6.2"
|
|
46
46
|
},
|
|
47
47
|
"license": "Apache-2.0",
|
|
48
48
|
"publishConfig": {
|