codemie-sdk 0.1.403 → 0.1.405
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/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1692,7 +1692,7 @@ interface WorkflowExecutionResponse {
|
|
|
1692
1692
|
/** Associated workflow identifier */
|
|
1693
1693
|
workflow_id: string;
|
|
1694
1694
|
/** Execution status */
|
|
1695
|
-
|
|
1695
|
+
overall_status: ExecutionStatusType;
|
|
1696
1696
|
/** Creation date */
|
|
1697
1697
|
date: string;
|
|
1698
1698
|
/** Execution prompt */
|
package/dist/index.d.ts
CHANGED
|
@@ -1692,7 +1692,7 @@ interface WorkflowExecutionResponse {
|
|
|
1692
1692
|
/** Associated workflow identifier */
|
|
1693
1693
|
workflow_id: string;
|
|
1694
1694
|
/** Execution status */
|
|
1695
|
-
|
|
1695
|
+
overall_status: ExecutionStatusType;
|
|
1696
1696
|
/** Creation date */
|
|
1697
1697
|
date: string;
|
|
1698
1698
|
/** Execution prompt */
|
package/dist/index.js
CHANGED
|
@@ -1212,7 +1212,7 @@ var WorkflowMapper = class {
|
|
|
1212
1212
|
id: response.id,
|
|
1213
1213
|
execution_id: response.execution_id,
|
|
1214
1214
|
workflow_id: response.workflow_id,
|
|
1215
|
-
overall_status: response.
|
|
1215
|
+
overall_status: response.overall_status,
|
|
1216
1216
|
created_date: response.date,
|
|
1217
1217
|
prompt: response.prompt,
|
|
1218
1218
|
updated_date: response.updated_date,
|
|
@@ -1303,7 +1303,7 @@ var WorkflowExecutionStateService = class {
|
|
|
1303
1303
|
};
|
|
1304
1304
|
const response = await this.api.get(
|
|
1305
1305
|
`/v1/workflows/${this.workflowId}/executions/${this.executionId}/states`,
|
|
1306
|
-
|
|
1306
|
+
queryParams
|
|
1307
1307
|
);
|
|
1308
1308
|
return response.data;
|
|
1309
1309
|
}
|
|
@@ -1334,7 +1334,7 @@ var WorkflowExecutionService = class {
|
|
|
1334
1334
|
};
|
|
1335
1335
|
const response = await this.api.get(
|
|
1336
1336
|
`/v1/workflows/${this.workflowId}/executions`,
|
|
1337
|
-
|
|
1337
|
+
queryParams
|
|
1338
1338
|
);
|
|
1339
1339
|
return response.data.map(WorkflowMapper.mapWorkflowExecutionResponse);
|
|
1340
1340
|
}
|