Skip to content

Commit

Permalink
Merge branch 'main' into feat/result-area
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund authored Feb 14, 2024
2 parents 3c9813c + f20693e commit ab93d71
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/api/generated/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export type { CreateParameterCommand } from './models/CreateParameterCommand';
export type { ErrorResponse } from './models/ErrorResponse';
export type { EstimateChannelCommand } from './models/EstimateChannelCommand';
export type { EstimateVariogramCommand } from './models/EstimateVariogramCommand';
export type { File } from './models/File';
export type { GetAnalogueListQueryResponse } from './models/GetAnalogueListQueryResponse';
export type { GetAnalogueModelListQueryResponse } from './models/GetAnalogueModelListQueryResponse';
export type { GetAnalogueModelQueryResponse } from './models/GetAnalogueModelQueryResponse';
Expand Down
6 changes: 6 additions & 0 deletions src/api/generated/models/File.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

export type File = Record<string, any>;
6 changes: 4 additions & 2 deletions src/api/generated/services/ImagesService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { File } from '../models/File';

import type { CancelablePromise } from '../core/CancelablePromise';
import { OpenAPI } from '../core/OpenAPI';
import { request as __request } from '../core/request';
Expand All @@ -10,12 +12,12 @@ export class ImagesService {

/**
* @param imageId
* @returns binary Success
* @returns File Success
* @throws ApiError
*/
public static getApiImagesVariogram(
imageId: string,
): CancelablePromise<Blob> {
): CancelablePromise<File> {
return __request(OpenAPI, {
method: 'GET',
url: '/api/images/variogram/{imageId}',
Expand Down

0 comments on commit ab93d71

Please sign in to comment.