This commit is contained in:
2023-08-12 20:55:20 +03:00
parent 816b43dc37
commit a11bb6b95c
13 changed files with 95 additions and 139 deletions

View File

@@ -16,7 +16,6 @@ import { AddPackageReq } from '../models/add-package-req';
import { AddPackageRsp } from '../models/add-package-rsp';
import { GetModuleRsp } from '../models/get-module-rsp';
import { ListPackageRsp } from '../models/list-package-rsp';
import { UInt64Value } from '../models/u-int-64-value';
import { UpdatePackageReq } from '../models/update-package-req';
import { UpdatePackageRsp } from '../models/update-package-rsp';
@@ -131,7 +130,7 @@ export class PkgdashServiceService extends BaseService {
*/
updateInfo$Response(
params: {
id: UInt64Value;
id: number;
body: UpdatePackageReq
},
context?: HttpContext
@@ -160,7 +159,7 @@ export class PkgdashServiceService extends BaseService {
*/
updateInfo(
params: {
id: UInt64Value;
id: number;
body: UpdatePackageReq
},
context?: HttpContext