From 9d5b4ee78c7c4871ae5b23221ea29f3bda2fe54e Mon Sep 17 00:00:00 2001 From: Roy Jeong Date: Wed, 11 Dec 2024 21:11:10 -0800 Subject: [PATCH] Delete unnecessary comments and unused import class --- frontend/src/env.ts | 1 - .../services/vdyp-api/apis/get-help-api.ts | 48 +-------- .../services/vdyp-api/apis/get-root-api.ts | 47 +-------- .../vdyp-api/apis/run-dcsvprojection-api.ts | 8 +- .../vdyp-api/apis/run-hcsvprojection-api.ts | 9 +- .../vdyp-api/apis/run-scsvprojection-api.ts | 69 +------------ frontend/src/services/vdyp-api/base.ts | 22 ----- .../src/services/vdyp-api/configuration.ts | 37 ------- .../src/services/vdyp-api/models/filters.ts | 19 ---- .../models/parameter-details-message.ts | 34 ------- .../services/vdyp-api/models/parameters.ts | 99 ------------------- .../vdyp-api/models/progress-frequency.ts | 9 -- .../vdyp-api/models/projection-dcsv-body.ts | 9 -- .../vdyp-api/models/projection-hcsv-body.ts | 14 --- .../vdyp-api/models/projection-scsv-body.ts | 44 --------- .../vdyp-api/models/utilization-parameter.ts | 9 -- 16 files changed, 17 insertions(+), 461 deletions(-) diff --git a/frontend/src/env.ts b/frontend/src/env.ts index f3d8d3941..9061cb9c6 100644 --- a/frontend/src/env.ts +++ b/frontend/src/env.ts @@ -1,5 +1,4 @@ declare global { - // eslint-disable-next-line no-unused-vars interface Window { config: any } 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 d72479557..6204f2ad9 100644 --- a/frontend/src/services/vdyp-api/apis/get-help-api.ts +++ b/frontend/src/services/vdyp-api/apis/get-help-api.ts @@ -1,28 +1,18 @@ import globalAxios from 'axios' import type { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios' import { Configuration } from '../configuration' -// Some imports not used depending on template conditions -// @ts-ignore -import { BASE_PATH, BaseAPI, RequiredError } from '../base' +import { BASE_PATH, BaseAPI } from '../base' import type { RequestArgs } from '../base' import type { ParameterDetailsMessage } from '../models' -/** - * GetHelpApi - axios parameter creator - * @export - */ +import { env } from '@/env' + export const GetHelpApiAxiosParamCreator = function ( configuration?: Configuration, ) { return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ helpGet: async (options: AxiosRequestConfig = {}): Promise => { const localVarPath = `/api/v8/help` - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, 'https://example.com') + const localVarUrlObj = new URL(localVarPath, env.VITE_API_URL) let baseOptions if (configuration) { baseOptions = configuration.baseOptions @@ -60,17 +50,8 @@ export const GetHelpApiAxiosParamCreator = function ( } } -/** - * GetHelpApi - functional programming interface - * @export - */ export const GetHelpApiFp = function (configuration?: Configuration) { return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ async helpGet( options?: AxiosRequestConfig, ): Promise< @@ -95,21 +76,12 @@ export const GetHelpApiFp = function (configuration?: Configuration) { } } -/** - * GetHelpApi - factory interface - * @export - */ export const GetHelpApiFactory = function ( configuration?: Configuration, basePath?: string, axios?: AxiosInstance, ) { return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ async helpGet( options?: AxiosRequestConfig, ): Promise> { @@ -120,19 +92,7 @@ export const GetHelpApiFactory = function ( } } -/** - * GetHelpApi - object-oriented interface - * @export - * @class GetHelpApi - * @extends {BaseAPI} - */ export class GetHelpApi extends BaseAPI { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof GetHelpApi - */ public async helpGet( options?: AxiosRequestConfig, ): Promise> { 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 4bf7bdfc7..d8b2ade4d 100644 --- a/frontend/src/services/vdyp-api/apis/get-root-api.ts +++ b/frontend/src/services/vdyp-api/apis/get-root-api.ts @@ -1,29 +1,18 @@ import globalAxios from 'axios' import type { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios' import { Configuration } from '../configuration' -// Some imports not used depending on template conditions -// @ts-ignore -import { BASE_PATH, BaseAPI, RequiredError } from '../base' +import { BASE_PATH, BaseAPI } from '../base' import type { RequestArgs } from '../base' import type { RootResource } from '../models' +import { env } from '@/env' -/** - * GetRootApi - axios parameter creator - * @export - */ export const GetRootApiAxiosParamCreator = function ( configuration?: Configuration, ) { return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ rootGet: async (options: AxiosRequestConfig = {}): Promise => { const localVarPath = `/api/v8` - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, 'https://example.com') + const localVarUrlObj = new URL(localVarPath, env.VITE_API_URL) let baseOptions if (configuration) { baseOptions = configuration.baseOptions @@ -61,17 +50,8 @@ export const GetRootApiAxiosParamCreator = function ( } } -/** - * GetRootApi - functional programming interface - * @export - */ export const GetRootApiFp = function (configuration?: Configuration) { return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ async rootGet( options?: AxiosRequestConfig, ): Promise< @@ -96,21 +76,12 @@ export const GetRootApiFp = function (configuration?: Configuration) { } } -/** - * GetRootApi - factory interface - * @export - */ export const GetRootApiFactory = function ( configuration?: Configuration, basePath?: string, axios?: AxiosInstance, ) { return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ async rootGet( options?: AxiosRequestConfig, ): Promise> /* edited */ { @@ -121,19 +92,7 @@ export const GetRootApiFactory = function ( } } -/** - * GetRootApi - object-oriented interface - * @export - * @class GetRootApi - * @extends {BaseAPI} - */ export class GetRootApi extends BaseAPI { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof GetRootApi - */ public async rootGet( options?: AxiosRequestConfig, ): Promise> /* edited */ { diff --git a/frontend/src/services/vdyp-api/apis/run-dcsvprojection-api.ts b/frontend/src/services/vdyp-api/apis/run-dcsvprojection-api.ts index e25ce2fc0..51d8d3c08 100644 --- a/frontend/src/services/vdyp-api/apis/run-dcsvprojection-api.ts +++ b/frontend/src/services/vdyp-api/apis/run-dcsvprojection-api.ts @@ -1,11 +1,10 @@ import globalAxios from 'axios' import type { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios' import { Configuration } from '../configuration' -// Some imports not used depending on template conditions -// @ts-ignore -import { BASE_PATH, BaseAPI, RequiredError } from '../base' +import { BASE_PATH, BaseAPI } from '../base' import type { RequestArgs } from '../base' import type { FileUpload, Parameters } from '../models' +import { env } from '@/env' export const RunDCSVProjectionApiAxiosParamCreator = function ( configuration?: Configuration, @@ -18,8 +17,7 @@ export const RunDCSVProjectionApiAxiosParamCreator = function ( options: AxiosRequestConfig = {}, ): Promise => { const localVarPath = `/api/v8/projection/dcsv` - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, 'https://example.com') + const localVarUrlObj = new URL(localVarPath, env.VITE_API_URL) let baseOptions if (configuration) { baseOptions = configuration.baseOptions 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 0e9385962..63b93c6ea 100644 --- a/frontend/src/services/vdyp-api/apis/run-hcsvprojection-api.ts +++ b/frontend/src/services/vdyp-api/apis/run-hcsvprojection-api.ts @@ -1,11 +1,10 @@ import globalAxios from 'axios' import type { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios' import { Configuration } from '../configuration' -// Some imports not used depending on template conditions -// @ts-ignore -import { BASE_PATH, BaseAPI, RequiredError } from '../base' +import { BASE_PATH, BaseAPI } from '../base' import type { RequestArgs } from '../base' import type { FileUpload, Parameters } from '../models' +import { env } from '@/env' export const RunHCSVProjectionApiAxiosParamCreator = function ( configuration?: Configuration, @@ -19,7 +18,7 @@ export const RunHCSVProjectionApiAxiosParamCreator = function ( options: AxiosRequestConfig = {}, ): Promise => { const localVarPath = `/api/v8/projection/hcsv` - const localVarUrlObj = new URL(localVarPath, 'https://example.com') + const localVarUrlObj = new URL(localVarPath, env.VITE_API_URL) let baseOptions if (configuration) { baseOptions = configuration.baseOptions @@ -112,7 +111,7 @@ export const RunHCSVProjectionApiFp = function (configuration?: Configuration) { ) => { const axiosRequestArgs: AxiosRequestConfig = { ...localVarAxiosArgs.options, - url: localVarAxiosArgs.url, + url: basePath + localVarAxiosArgs.url, responseType: 'blob' /* edited */, } return axios.request(axiosRequestArgs) diff --git a/frontend/src/services/vdyp-api/apis/run-scsvprojection-api.ts b/frontend/src/services/vdyp-api/apis/run-scsvprojection-api.ts index 30556c298..e96181532 100644 --- a/frontend/src/services/vdyp-api/apis/run-scsvprojection-api.ts +++ b/frontend/src/services/vdyp-api/apis/run-scsvprojection-api.ts @@ -1,31 +1,15 @@ import globalAxios from 'axios' import type { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios' import { Configuration } from '../configuration' -// Some imports not used depending on template conditions -// @ts-ignore -import { BASE_PATH, BaseAPI, RequiredError } from '../base' +import { BASE_PATH, BaseAPI } from '../base' import type { RequestArgs } from '../base' import type { FileUpload, Parameters } from '../models' +import { env } from '@/env' export const RunSCSVProjectionApiAxiosParamCreator = function ( configuration?: Configuration, ) { return { - /** - * - * @param {FileUpload} [polygonInputData] - * @param {FileUpload} [layersInputData] - * @param {FileUpload} [historyInputData] - * @param {FileUpload} [nonVegetationInputData] - * @param {FileUpload} [otherVegetationInputData] - * @param {FileUpload} [polygonIdInputData] - * @param {FileUpload} [speciesInputData] - * @param {FileUpload} [vriAdjustInputData] - * @param {Parameters} [projectionParameters] - * @param {boolean} [trialRun] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ projectionScsvPostForm: async ( polygonInputData?: FileUpload, layersInputData?: FileUpload, @@ -40,8 +24,7 @@ export const RunSCSVProjectionApiAxiosParamCreator = function ( options: AxiosRequestConfig = {}, ): Promise => { const localVarPath = `/api/v8/projection/scsv` - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, 'https://example.com') + const localVarUrlObj = new URL(localVarPath, env.VITE_API_URL) let baseOptions if (configuration) { baseOptions = configuration.baseOptions @@ -139,21 +122,6 @@ export const RunSCSVProjectionApiAxiosParamCreator = function ( export const RunSCSVProjectionApiFp = function (configuration?: Configuration) { return { - /** - * - * @param {FileUpload} [polygonInputData] - * @param {FileUpload} [layersInputData] - * @param {FileUpload} [historyInputData] - * @param {FileUpload} [nonVegetationInputData] - * @param {FileUpload} [otherVegetationInputData] - * @param {FileUpload} [polygonIdInputData] - * @param {FileUpload} [speciesInputData] - * @param {FileUpload} [vriAdjustInputData] - * @param {Parameters} [projectionParameters] - * @param {boolean} [trialRun] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ async projectionScsvPostForm( polygonInputData?: FileUpload, layersInputData?: FileUpload, @@ -204,21 +172,6 @@ export const RunSCSVProjectionApiFactory = function ( axios?: AxiosInstance, ) { return { - /** - * - * @param {FileUpload} [polygonInputData] - * @param {FileUpload} [layersInputData] - * @param {FileUpload} [historyInputData] - * @param {FileUpload} [nonVegetationInputData] - * @param {FileUpload} [otherVegetationInputData] - * @param {FileUpload} [polygonIdInputData] - * @param {FileUpload} [speciesInputData] - * @param {FileUpload} [vriAdjustInputData] - * @param {Parameters} [projectionParameters] - * @param {boolean} [trialRun] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ async projectionScsvPostForm( polygonInputData?: FileUpload, layersInputData?: FileUpload, @@ -252,22 +205,6 @@ export const RunSCSVProjectionApiFactory = function ( } export class RunSCSVProjectionApi extends BaseAPI { - /** - * - * @param {FileUpload} [polygonInputData] - * @param {FileUpload} [layersInputData] - * @param {FileUpload} [historyInputData] - * @param {FileUpload} [nonVegetationInputData] - * @param {FileUpload} [otherVegetationInputData] - * @param {FileUpload} [polygonIdInputData] - * @param {FileUpload} [speciesInputData] - * @param {FileUpload} [vriAdjustInputData] - * @param {Parameters} [projectionParameters] - * @param {boolean} [trialRun] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof RunSCSVProjectionApi - */ public async projectionScsvPostForm( polygonInputData?: FileUpload, layersInputData?: FileUpload, diff --git a/frontend/src/services/vdyp-api/base.ts b/frontend/src/services/vdyp-api/base.ts index 05a4843ef..f8d884323 100644 --- a/frontend/src/services/vdyp-api/base.ts +++ b/frontend/src/services/vdyp-api/base.ts @@ -1,15 +1,9 @@ import { Configuration } from './configuration' -// Some imports not used depending on template conditions -// @ts-ignore import globalAxios from 'axios' import type { AxiosRequestConfig, AxiosInstance } from 'axios' export const BASE_PATH = '' -/** - * - * @export - */ export const COLLECTION_FORMATS = { csv: ',', ssv: ' ', @@ -17,21 +11,11 @@ export const COLLECTION_FORMATS = { pipes: '|', } -/** - * - * @export - * @interface RequestArgs - */ export interface RequestArgs { url: string options: AxiosRequestConfig } -/** - * - * @export - * @class BaseAPI - */ export class BaseAPI { protected configuration: Configuration | undefined @@ -47,12 +31,6 @@ export class BaseAPI { } } -/** - * - * @export - * @class RequiredError - * @extends {Error} - */ export class RequiredError extends Error { name: 'RequiredError' = 'RequiredError' constructor( diff --git a/frontend/src/services/vdyp-api/configuration.ts b/frontend/src/services/vdyp-api/configuration.ts index b38e4d4b8..f9e99b704 100644 --- a/frontend/src/services/vdyp-api/configuration.ts +++ b/frontend/src/services/vdyp-api/configuration.ts @@ -16,61 +16,24 @@ export interface ConfigurationParameters { } export class Configuration { - /** - * parameter for apiKey security - * - * @param name security name - * @memberof Configuration - */ apiKey?: | string | Promise | ((name: string) => string) | ((name: string) => Promise) - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ username?: string - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ password?: string - /** - * parameter for oauth2 security - * - * @param name security name - * @param scopes oauth2 scope - * @memberof Configuration - */ accessToken?: | string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise) - /** - * override base path - * - * @type {string} - * @memberof Configuration - */ basePath?: string - /** - * base options for axios calls - * - * @type {any} - * @memberof Configuration - */ baseOptions?: any constructor(param: ConfigurationParameters = {}) { diff --git a/frontend/src/services/vdyp-api/models/filters.ts b/frontend/src/services/vdyp-api/models/filters.ts index 5a4482764..5c85fcee2 100644 --- a/frontend/src/services/vdyp-api/models/filters.ts +++ b/frontend/src/services/vdyp-api/models/filters.ts @@ -1,25 +1,6 @@ export interface Filters { - /** - * @type {string} - * @memberof Filters - */ maintainer?: string - - /** - * @type {string} - * @memberof Filters - */ mapsheet?: string - - /** - * @type {string} - * @memberof Filters - */ polygon?: string - - /** - * @type {string} - * @memberof Filters - */ polygonId?: string } diff --git a/frontend/src/services/vdyp-api/models/parameter-details-message.ts b/frontend/src/services/vdyp-api/models/parameter-details-message.ts index f2b3198af..52eae2496 100644 --- a/frontend/src/services/vdyp-api/models/parameter-details-message.ts +++ b/frontend/src/services/vdyp-api/models/parameter-details-message.ts @@ -1,41 +1,7 @@ export interface ParameterDetailsMessage { - /** - * the parameter name - * - * @type {string} - * @memberof ParameterDetailsMessage - */ field?: string - - /** - * a brief description of the parameter's purpose - * - * @type {string} - * @memberof ParameterDetailsMessage - */ shortDescription?: string - - /** - * if the parameter has a value, a description of the value - * - * @type {string} - * @memberof ParameterDetailsMessage - */ parameterValue?: string - - /** - * a description of the parameter - * - * @type {string} - * @memberof ParameterDetailsMessage - */ longDescription?: string - - /** - * the default value used if the parameter is not specified - * - * @type {string} - * @memberof ParameterDetailsMessage - */ defaultValue?: string } diff --git a/frontend/src/services/vdyp-api/models/parameters.ts b/frontend/src/services/vdyp-api/models/parameters.ts index e113bfd13..a88fdc04a 100644 --- a/frontend/src/services/vdyp-api/models/parameters.ts +++ b/frontend/src/services/vdyp-api/models/parameters.ts @@ -7,123 +7,24 @@ import { SelectedDebugOptionsEnum } from './selected-debug-options-enum' import { SelectedExecutionOptionsEnum } from './selected-execution-options-enum' import type { UtilizationParameter } from './utilization-parameter' export interface Parameters { - /** - * @type {OutputFormatEnum} - * @memberof Parameters - */ outputFormat?: OutputFormatEnum - - /** - * @type {Array} - * @memberof Parameters - */ selectedExecutionOptions?: Array - - /** - * @type {Array} - * @memberof Parameters - */ selectedDebugOptions?: Array - - /** - * @type {number} - * @memberof Parameters - */ ageStart?: number - - /** - * @type {number} - * @memberof Parameters - */ minAgeStart?: number - - /** - * @type {number} - * @memberof Parameters - */ maxAgeStart?: number - - /** - * @type {number} - * @memberof Parameters - */ ageEnd?: number - - /** - * @type {number} - * @memberof Parameters - */ minAgeEnd?: number - - /** - * @type {number} - * @memberof Parameters - */ maxAgeEnd?: number - - /** - * @type {number} - * @memberof Parameters - */ yearStart?: number - - /** - * @type {number} - * @memberof Parameters - */ yearEnd?: number - - /** - * @type {number} - * @memberof Parameters - */ forceYear?: number - - /** - * @type {number} - * @memberof Parameters - */ ageIncrement?: number - - /** - * @type {number} - * @memberof Parameters - */ minAgeIncrement?: number - - /** - * @type {number} - * @memberof Parameters - */ maxAgeIncrement?: number - - /** - * @type {CombineAgeYearRangeEnum} - * @memberof Parameters - */ combineAgeYearRange?: CombineAgeYearRangeEnum - - /** - * @type {ProgressFrequency} - * @memberof Parameters - */ progressFrequency?: ProgressFrequency - - /** - * @type {MetadataToOutputEnum} - * @memberof Parameters - */ metadataToOutput?: MetadataToOutputEnum - - /** - * @type {Filters} - * @memberof Parameters - */ filters?: Filters - - /** - * @type {Array} - * @memberof Parameters - */ utils?: Array } diff --git a/frontend/src/services/vdyp-api/models/progress-frequency.ts b/frontend/src/services/vdyp-api/models/progress-frequency.ts index efde3509f..4f9bcbf0f 100644 --- a/frontend/src/services/vdyp-api/models/progress-frequency.ts +++ b/frontend/src/services/vdyp-api/models/progress-frequency.ts @@ -1,14 +1,5 @@ import { EnumValue } from './enum-value' export interface ProgressFrequency { - /** - * @type {number} - * @memberof ProgressFrequency - */ intValue?: number - - /** - * @type {EnumValue} - * @memberof ProgressFrequency - */ enumValue?: EnumValue } diff --git a/frontend/src/services/vdyp-api/models/projection-dcsv-body.ts b/frontend/src/services/vdyp-api/models/projection-dcsv-body.ts index 7735943be..5e9ff102c 100644 --- a/frontend/src/services/vdyp-api/models/projection-dcsv-body.ts +++ b/frontend/src/services/vdyp-api/models/projection-dcsv-body.ts @@ -1,15 +1,6 @@ import type { FileUpload } from './file-upload' import type { Parameters } from './parameters' export interface ProjectionDcsvBody { - /** - * @type {FileUpload} - * @memberof ProjectionDcsvBody - */ dcsvInputData?: FileUpload - - /** - * @type {Parameters} - * @memberof ProjectionDcsvBody - */ projectionParameters?: Parameters } diff --git a/frontend/src/services/vdyp-api/models/projection-hcsv-body.ts b/frontend/src/services/vdyp-api/models/projection-hcsv-body.ts index 730c59464..87f5cf7c2 100644 --- a/frontend/src/services/vdyp-api/models/projection-hcsv-body.ts +++ b/frontend/src/services/vdyp-api/models/projection-hcsv-body.ts @@ -1,21 +1,7 @@ import type { FileUpload } from './file-upload' import type { Parameters } from './parameters' export interface ProjectionHcsvBody { - /** - * @type {FileUpload} - * @memberof ProjectionHcsvBody - */ polygonInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionHcsvBody - */ layersInputData?: FileUpload - - /** - * @type {Parameters} - * @memberof ProjectionHcsvBody - */ projectionParameters?: Parameters } diff --git a/frontend/src/services/vdyp-api/models/projection-scsv-body.ts b/frontend/src/services/vdyp-api/models/projection-scsv-body.ts index e75f6adf9..b2dda55f9 100644 --- a/frontend/src/services/vdyp-api/models/projection-scsv-body.ts +++ b/frontend/src/services/vdyp-api/models/projection-scsv-body.ts @@ -1,57 +1,13 @@ import type { FileUpload } from './file-upload' import type { Parameters } from './parameters' export interface ProjectionScsvBody { - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ polygonInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ layersInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ historyInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ nonVegetationInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ otherVegetationInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ polygonIdInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ speciesInputData?: FileUpload - - /** - * @type {FileUpload} - * @memberof ProjectionScsvBody - */ vriAdjustInputData?: FileUpload - - /** - * @type {Parameters} - * @memberof ProjectionScsvBody - */ projectionParameters?: Parameters } diff --git a/frontend/src/services/vdyp-api/models/utilization-parameter.ts b/frontend/src/services/vdyp-api/models/utilization-parameter.ts index ae36d9a80..e9b34272b 100644 --- a/frontend/src/services/vdyp-api/models/utilization-parameter.ts +++ b/frontend/src/services/vdyp-api/models/utilization-parameter.ts @@ -1,14 +1,5 @@ import { ValueEnum } from './value-enum' export interface UtilizationParameter { - /** - * @type {string} - * @memberof UtilizationParameter - */ speciesName?: string - - /** - * @type {ValueEnum} - * @memberof UtilizationParameter - */ value?: ValueEnum }