diff --git a/frontend/src/components/ResultGrid.tsx b/frontend/src/components/ResultGrid.tsx index cd39d8d495bc002289ec81776827f415ceedd28f..b116e41aab87bf8bc988705380ac118d3b0c2378 100644 --- a/frontend/src/components/ResultGrid.tsx +++ b/frontend/src/components/ResultGrid.tsx @@ -186,7 +186,7 @@ const ResultGrid: React.FC<ResultGridProps> = ({ activePgroup }) => { setBasePath(`${OpenAPI.BASE}/`); - SamplesService.getSampleResultsSamplesResultsGet(activePgroup) + SamplesService.getSampleResults(activePgroup) .then((response: SampleResult[]) => { const treeRows: TreeRow[] = []; diff --git a/frontend/src/components/RunDetails.tsx b/frontend/src/components/RunDetails.tsx index 94d0a415262440dc069509636c2b7ed113b69f9c..b5daf1e60970f0ae8eaabf01b11055a09ca8663f 100644 --- a/frontend/src/components/RunDetails.tsx +++ b/frontend/src/components/RunDetails.tsx @@ -69,10 +69,11 @@ const RunDetails: React.FC<RunDetailsProps> = ({ run, onHeightChange, basePath, const fetchResults = async (sample_id: number, runId: number) => { try { - const results = await SamplesService.getResultsForRunAndSampleSamplesProcessingResultsSampleIdRunIdGet(sample_id, runId); + const results = await SamplesService.getResultsForRunAndSample(sample_id, runId); // Explicitly handle nested results const mappedResults: ProcessingResults[] = results.map((res): ProcessingResults => ({ + id: res.id, pipeline: res.result?.pipeline || 'N/A', resolution: res.result.resolution ?? 0, unit_cell: res.result?.unit_cell || 'N/A', diff --git a/testfunctions.ipynb b/testfunctions.ipynb index 73657c97bfee775ebf6f9b9f22e52f9573af1f89..8168e44dab649464a628d92f20ed8ceeff7c1a45 100644 --- a/testfunctions.ipynb +++ b/testfunctions.ipynb @@ -3,8 +3,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-03-17T20:57:43.884083Z", - "start_time": "2025-03-17T20:57:43.366257Z" + "end_time": "2025-03-19T11:01:53.035111Z", + "start_time": "2025-03-19T11:01:52.510182Z" } }, "cell_type": "code", @@ -699,7 +699,7 @@ "\n", " try:\n", " # Call the endpoint. The endpoint path expects the sample_id.\n", - " api_response = api_instance.create_experiment_parameters_for_sample_samples_samples_sample_id_experiment_parameters_post(\n", + " api_response = api_instance.create_experiment_parameters_for_sample(\n", " sample_id=experiment_params_payload.sample_id,\n", " experiment_parameters_create=experiment_params_payload\n", ")\n", @@ -807,7 +807,7 @@ " api_instance = aareDBclient.SamplesApi(api_client)\n", "\n", " try:\n", - " api_response = api_instance.create_result_samples_processing_results_post(\n", + " api_response = api_instance.create_result(\n", " result_create=payload_dict\n", " )\n", "\n",