generated: regenerate the API clients for the analysis mode, the grid settings and the crystal list

Output of update_version.sh. The five lanes each reverted their generated trees
before handing back, so that two independently regenerated copies never had to be
merged; this is the single pass that replaces them.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01EFEJG6WBQv8th4UJFNe53N
This commit is contained in:
2026-09-08 07:59:42 +02:00
co-authored by Claude Opus 5
parent 5fe8a967cd
commit 37efa573c4
43 changed files with 3753 additions and 104 deletions
@@ -0,0 +1,41 @@
# GridScanCrystal
One crystal found in a grid scan.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**nx** | **float** | Centre, fractional grid coordinate along the fast grid axis |
**ny** | **float** | Centre, fractional grid coordinate along the slow grid axis |
**x_um** | **float** | Centre, signed offset along the fast grid axis, in micrometres | [optional]
**y_um** | **float** | Centre, signed offset along the slow grid axis, in micrometres | [optional]
**image_number** | **int** | The grid point at the centre, as an image ordinal | [optional]
**major_um** | **float** | Extent along the crystal&#39;s major principal axis, in micrometres | [optional]
**minor_um** | **float** | Extent along its minor principal axis, in micrometres | [optional]
**angle_deg** | **float** | Direction of the major axis from the +x grid axis, counter-clockwise, in degrees. This is an AXIS, not a direction: it lives in [0, 180) and wraps, so 179 and 0 are adjacent. Averaging two of these arithmetically across the wrap turns two nearly parallel needles into a right angle - combine them on the doubled angle (mean of 2*theta, halved), or not at all. | [optional]
**score** | **float** | Diffraction score the crystal was ranked on |
**ice_score** | **float** | Ice-ring score over the crystal&#39;s grid points | [optional]
**res_a** | **float** | Resolution estimate over the crystal&#39;s grid points, in Angstrom | [optional]
**n_images** | **int** | Grid points that fell in this crystal | [optional]
## Example
```python
from jfjoch_client.models.grid_scan_crystal import GridScanCrystal
# TODO update the JSON string below
json = "{}"
# create an instance of GridScanCrystal from a JSON string
grid_scan_crystal_instance = GridScanCrystal.from_json(json)
# print the JSON string representation of the object
print(GridScanCrystal.to_json())
# convert the object into a dict
grid_scan_crystal_dict = grid_scan_crystal_instance.to_dict()
# create an instance of GridScanCrystal from a dict
grid_scan_crystal_from_dict = GridScanCrystal.from_dict(grid_scan_crystal_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)