codemie-sdk 0.1.404 → 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 CHANGED
@@ -1302,7 +1302,7 @@ var WorkflowMapper = class {
1302
1302
  id: response.id,
1303
1303
  execution_id: response.execution_id,
1304
1304
  workflow_id: response.workflow_id,
1305
- overall_status: response.status,
1305
+ overall_status: response.overall_status,
1306
1306
  created_date: response.date,
1307
1307
  prompt: response.prompt,
1308
1308
  updated_date: response.updated_date,
@@ -1393,7 +1393,7 @@ var WorkflowExecutionStateService = class {
1393
1393
  };
1394
1394
  const response = await this.api.get(
1395
1395
  `/v1/workflows/${this.workflowId}/executions/${this.executionId}/states`,
1396
- { params: queryParams }
1396
+ queryParams
1397
1397
  );
1398
1398
  return response.data;
1399
1399
  }
@@ -1424,7 +1424,7 @@ var WorkflowExecutionService = class {
1424
1424
  };
1425
1425
  const response = await this.api.get(
1426
1426
  `/v1/workflows/${this.workflowId}/executions`,
1427
- { params: queryParams }
1427
+ queryParams
1428
1428
  );
1429
1429
  return response.data.map(WorkflowMapper.mapWorkflowExecutionResponse);
1430
1430
  }