diff --git a/frontend/src/services/vdyp-api/apis/get-help-api.ts b/frontend/src/services/vdyp-api/apis/get-help-api.ts
index 6204f2ad9..bf100bcc2 100644
--- a/frontend/src/services/vdyp-api/apis/get-help-api.ts
+++ b/frontend/src/services/vdyp-api/apis/get-help-api.ts
@@ -58,7 +58,7 @@ export const GetHelpApiFp = function (configuration?: Configuration) {
(
axios?: AxiosInstance,
basePath?: string,
- ) => Promise>
+ ) => Promise>
> {
const localVarAxiosArgs =
await GetHelpApiAxiosParamCreator(configuration).helpGet(options)
@@ -84,7 +84,7 @@ export const GetHelpApiFactory = function (
return {
async helpGet(
options?: AxiosRequestConfig,
- ): Promise> {
+ ): Promise> {
return GetHelpApiFp(configuration)
.helpGet(options)
.then((request) => request(axios, basePath))
@@ -95,7 +95,7 @@ export const GetHelpApiFactory = function (
export class GetHelpApi extends BaseAPI {
public async helpGet(
options?: AxiosRequestConfig,
- ): Promise> {
+ ): Promise> {
return GetHelpApiFp(this.configuration)
.helpGet(options)
.then((request) => request(this.axios, this.basePath))
diff --git a/frontend/src/services/vdyp-api/apis/get-root-api.ts b/frontend/src/services/vdyp-api/apis/get-root-api.ts
index d8b2ade4d..a6eaefe0e 100644
--- a/frontend/src/services/vdyp-api/apis/get-root-api.ts
+++ b/frontend/src/services/vdyp-api/apis/get-root-api.ts
@@ -58,7 +58,7 @@ export const GetRootApiFp = function (configuration?: Configuration) {
(
axios?: AxiosInstance,
basePath?: string,
- ) => Promise> /* edited */
+ ) => Promise>
> {
const localVarAxiosArgs =
await GetRootApiAxiosParamCreator(configuration).rootGet(options)
@@ -84,7 +84,7 @@ export const GetRootApiFactory = function (
return {
async rootGet(
options?: AxiosRequestConfig,
- ): Promise> /* edited */ {
+ ): Promise> {
return GetRootApiFp(configuration)
.rootGet(options)
.then((request) => request(axios, basePath))
@@ -95,7 +95,7 @@ export const GetRootApiFactory = function (
export class GetRootApi extends BaseAPI {
public async rootGet(
options?: AxiosRequestConfig,
- ): Promise> /* edited */ {
+ ): Promise> {
return GetRootApiFp(this.configuration)
.rootGet(options)
.then((request) => request(this.axios, this.basePath))
diff --git a/frontend/src/services/vdyp-api/apis/run-hcsvprojection-api.ts b/frontend/src/services/vdyp-api/apis/run-hcsvprojection-api.ts
index 63b93c6ea..f49bd306a 100644
--- a/frontend/src/services/vdyp-api/apis/run-hcsvprojection-api.ts
+++ b/frontend/src/services/vdyp-api/apis/run-hcsvprojection-api.ts
@@ -28,7 +28,7 @@ export const RunHCSVProjectionApiAxiosParamCreator = function (
headers: {
Accept: 'application/octet-stream',
'Content-Type': 'multipart/form-data',
- } /* edited */,
+ },
...baseOptions,
...options,
}
@@ -91,10 +91,7 @@ export const RunHCSVProjectionApiFp = function (configuration?: Configuration) {
trialRun?: boolean,
options?: AxiosRequestConfig,
): Promise<
- (
- axios?: AxiosInstance,
- basePath?: string,
- ) => Promise> /* edited */
+ (axios?: AxiosInstance, basePath?: string) => Promise>
> {
const localVarAxiosArgs = await RunHCSVProjectionApiAxiosParamCreator(
configuration,
@@ -112,7 +109,7 @@ export const RunHCSVProjectionApiFp = function (configuration?: Configuration) {
const axiosRequestArgs: AxiosRequestConfig = {
...localVarAxiosArgs.options,
url: basePath + localVarAxiosArgs.url,
- responseType: 'blob' /* edited */,
+ responseType: 'blob',
}
return axios.request(axiosRequestArgs)
}
@@ -132,7 +129,7 @@ export const RunHCSVProjectionApiFactory = function (
projectionParameters?: Parameters,
trialRun?: boolean,
options?: AxiosRequestConfig,
- ): Promise> /* edited */ {
+ ): Promise> {
return RunHCSVProjectionApiFp(configuration)
.projectionHcsvPostForm(
polygonInputData,
@@ -153,7 +150,7 @@ export class RunHCSVProjectionApi extends BaseAPI {
projectionParameters?: Parameters,
trialRun?: boolean,
options?: AxiosRequestConfig,
- ): Promise> /* edited */ {
+ ): Promise> {
return RunHCSVProjectionApiFp(this.configuration)
.projectionHcsvPostForm(
polygonInputData,