update api client

This commit is contained in:
Фролов 2021-08-30 15:09:27 +05:00
parent a23ed5bb25
commit 1ad8ecc37b
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ idData: number,
): Promise<any> { ): Promise<any> {
const result = await __request({ const result = await __request({
method: 'DELETE', method: 'DELETE',
path: `/api/well/${idWell}/measure`, path: `/api/well/${idWell}/measure/history/${idData}`,
}); });
return result.body; return result.body;
} }

View File

@ -48,7 +48,7 @@ begin?: string,
end?: string, end?: string,
minDepth: number = -1.7976931348623157e+308, minDepth: number = -1.7976931348623157e+308,
maxDepth: number = 1.7976931348623157e+308, maxDepth: number = 1.7976931348623157e+308,
skip: number =0, skip: number = 0,
take: number = 32, take: number = 32,
): Promise<WellOperationDtoPaginationContainer> { ): Promise<WellOperationDtoPaginationContainer> {
const result = await __request({ const result = await __request({