Skip to content

Commit

Permalink
CELE-126 Client code generation
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcorreia committed Dec 19, 2024
1 parent 678a4da commit 638da58
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
15 changes: 15 additions & 0 deletions applications/visualizer/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,20 @@
"title": "Slicerange",
"type": "array"
},
"maxResolution": {
"maxItems": 2,
"minItems": 2,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
}
],
"title": "Maxresolution",
"type": "array"
},
"resourceUrl": {
"title": "Resourceurl",
"type": "string"
Expand Down Expand Up @@ -574,6 +588,7 @@
"nbSlices",
"tileSize",
"sliceRange",
"maxResolution",
"resourceUrl",
"segmentationUrl",
"segmentationSize",
Expand Down
9 changes: 9 additions & 0 deletions applications/visualizer/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@ components:
type: object
EMData:
properties:
maxResolution:
maxItems: 2
minItems: 2
prefixItems:
- type: integer
- type: integer
title: Maxresolution
type: array
maxZoom:
title: Maxzoom
type: integer
Expand Down Expand Up @@ -138,6 +146,7 @@ components:
- nbSlices
- tileSize
- sliceRange
- maxResolution
- resourceUrl
- segmentationUrl
- segmentationSize
Expand Down
15 changes: 15 additions & 0 deletions applications/visualizer/backend/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,20 @@
"title": "Slicerange",
"type": "array"
},
"maxResolution": {
"maxItems": 2,
"minItems": 2,
"prefixItems": [
{
"type": "integer"
},
{
"type": "integer"
}
],
"title": "Maxresolution",
"type": "array"
},
"resourceUrl": {
"title": "Resourceurl",
"type": "string"
Expand Down Expand Up @@ -574,6 +588,7 @@
"nbSlices",
"tileSize",
"sliceRange",
"maxResolution",
"resourceUrl",
"segmentationUrl",
"segmentationSize",
Expand Down
1 change: 1 addition & 0 deletions applications/visualizer/frontend/src/rest/models/EMData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export type EMData = {
nbSlices: number;
tileSize: any[];
sliceRange: any[];
maxResolution: any[];
resourceUrl: string;
segmentationUrl: (string | null);
segmentationSize: (any[] | null);
Expand Down

0 comments on commit 638da58

Please sign in to comment.