Update api
This commit is contained in:
parent
4d7a982760
commit
947389a852
1 changed files with 31 additions and 0 deletions
|
@ -12,6 +12,7 @@ import type { DataProvider } from '../models/DataProvider';
|
|||
import type { FeatureInfo } from '../models/FeatureInfo';
|
||||
import type { MeasuresItem } from '../models/MeasuresItem';
|
||||
import type { ModelInfo } from '../models/ModelInfo';
|
||||
import type { PlotParams } from '../models/PlotParams';
|
||||
import type { Project } from '../models/Project';
|
||||
import type { RoleRead } from '../models/RoleRead';
|
||||
import type { Store } from '../models/Store';
|
||||
|
@ -296,4 +297,34 @@ export class ApiService {
|
|||
},
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Get Plot Params
|
||||
* @returns PlotParams Successful Response
|
||||
* @throws ApiError
|
||||
*/
|
||||
public getPlotParamsApiPlotParamsStoreGet({
|
||||
store,
|
||||
id,
|
||||
value,
|
||||
}: {
|
||||
store: string,
|
||||
id: string,
|
||||
value: string,
|
||||
}): Observable<PlotParams> {
|
||||
return __request(OpenAPI, this.http, {
|
||||
method: 'GET',
|
||||
url: '/api/plot-params/{store}',
|
||||
path: {
|
||||
'store': store,
|
||||
},
|
||||
query: {
|
||||
'id': id,
|
||||
'value': value,
|
||||
},
|
||||
errors: {
|
||||
404: `Not found`,
|
||||
422: `Validation Error`,
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue