@outputai/cli 0.7.1-next.2a4105c.0 → 0.7.1-next.ae5bab4.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.
|
@@ -226,39 +226,6 @@ export declare const WorkflowResultResponseStatus: {
|
|
|
226
226
|
readonly timed_out: "timed_out";
|
|
227
227
|
readonly continued: "continued";
|
|
228
228
|
};
|
|
229
|
-
/**
|
|
230
|
-
* Structured failure details if the workflow failed, null otherwise
|
|
231
|
-
* @nullable
|
|
232
|
-
*/
|
|
233
|
-
export type WorkflowResultResponseErrorDetails = {
|
|
234
|
-
/**
|
|
235
|
-
* Friendly failure message (from the underlying application error)
|
|
236
|
-
* @nullable
|
|
237
|
-
*/
|
|
238
|
-
message?: string | null;
|
|
239
|
-
/**
|
|
240
|
-
* Error name/type (the original error's class)
|
|
241
|
-
* @nullable
|
|
242
|
-
*/
|
|
243
|
-
name?: string | null;
|
|
244
|
-
/**
|
|
245
|
-
* Whether Temporal flagged the failure retryable; null if unknown
|
|
246
|
-
* @nullable
|
|
247
|
-
*/
|
|
248
|
-
retryable?: boolean | null;
|
|
249
|
-
/**
|
|
250
|
-
* Failing activity key ("workflow#step"); null if no activity failed
|
|
251
|
-
* @nullable
|
|
252
|
-
*/
|
|
253
|
-
activityId?: string | null;
|
|
254
|
-
/**
|
|
255
|
-
* Sanitized error cause chain (name/message per level, no stack)
|
|
256
|
-
* @nullable
|
|
257
|
-
*/
|
|
258
|
-
cause?: {
|
|
259
|
-
[key: string]: unknown;
|
|
260
|
-
} | null;
|
|
261
|
-
} | null | null;
|
|
262
229
|
export interface WorkflowResultResponse {
|
|
263
230
|
/** The workflow execution id */
|
|
264
231
|
workflowId?: string;
|
|
@@ -281,11 +248,6 @@ export interface WorkflowResultResponse {
|
|
|
281
248
|
* @nullable
|
|
282
249
|
*/
|
|
283
250
|
error?: string | null;
|
|
284
|
-
/**
|
|
285
|
-
* Structured failure details if the workflow failed, null otherwise
|
|
286
|
-
* @nullable
|
|
287
|
-
*/
|
|
288
|
-
errorDetails?: WorkflowResultResponseErrorDetails;
|
|
289
251
|
}
|
|
290
252
|
export interface StopWorkflowResponse {
|
|
291
253
|
workflowId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/cli",
|
|
3
|
-
"version": "0.7.1-next.
|
|
3
|
+
"version": "0.7.1-next.ae5bab4.0",
|
|
4
4
|
"description": "CLI for Output.ai workflow generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"semver": "7.7.4",
|
|
37
37
|
"undici": "8.1.0",
|
|
38
38
|
"yaml": "^2.8.3",
|
|
39
|
-
"@outputai/
|
|
40
|
-
"@outputai/
|
|
41
|
-
"@outputai/
|
|
39
|
+
"@outputai/credentials": "0.7.1-next.ae5bab4.0",
|
|
40
|
+
"@outputai/llm": "0.7.1-next.ae5bab4.0",
|
|
41
|
+
"@outputai/evals": "0.7.1-next.ae5bab4.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/cli-progress": "3.11.6",
|