diff --git a/src/api/generated/index.ts b/src/api/generated/index.ts index 92d95069..b6cf06aa 100644 --- a/src/api/generated/index.ts +++ b/src/api/generated/index.ts @@ -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'; diff --git a/src/api/generated/models/File.ts b/src/api/generated/models/File.ts new file mode 100644 index 00000000..8448c8a0 --- /dev/null +++ b/src/api/generated/models/File.ts @@ -0,0 +1,6 @@ +/* generated using openapi-typescript-codegen -- do no edit */ +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ + +export type File = Record; diff --git a/src/api/generated/services/ImagesService.ts b/src/api/generated/services/ImagesService.ts index 461e58a4..15394ab6 100644 --- a/src/api/generated/services/ImagesService.ts +++ b/src/api/generated/services/ImagesService.ts @@ -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'; @@ -10,12 +12,12 @@ export class ImagesService { /** * @param imageId - * @returns binary Success + * @returns File Success * @throws ApiError */ public static getApiImagesVariogram( imageId: string, - ): CancelablePromise { + ): CancelablePromise { return __request(OpenAPI, { method: 'GET', url: '/api/images/variogram/{imageId}',