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

@@ -1,7 +1,6 @@
/* tslint:disable */
/* eslint-disable */
import { UInt64Value } from './u-int-64-value';
export interface AddCommentReq {
idPackage?: UInt64Value;
idPackage?: number;
text?: string;
}

View File

@@ -1,8 +1,7 @@
/* tslint:disable */
/* eslint-disable */
import { StringValue } from './string-value';
export interface AddPackageReq {
modules?: Array<number>;
name?: StringValue;
url?: StringValue;
name?: string;
url?: string;
}

View File

@@ -1,4 +1,5 @@
/* tslint:disable */
/* eslint-disable */
export interface AddPackageRsp {
status?: string;
}

View File

@@ -1,13 +0,0 @@
/* tslint:disable */
/* eslint-disable */
/**
* Wrapper message for `string`. The JSON representation for `StringValue` is JSON string.
*/
export interface StringValue {
/**
* The string value.
*/
value?: string;
}

View File

@@ -1,13 +0,0 @@
/* tslint:disable */
/* eslint-disable */
/**
* Wrapper message for `uint64`. The JSON representation for `UInt64Value` is JSON string.
*/
export interface UInt64Value {
/**
* The uint64 value.
*/
value?: number;
}

View File

@@ -1,11 +1,9 @@
/* tslint:disable */
/* eslint-disable */
import { StringValue } from './string-value';
import { UInt64Value } from './u-int-64-value';
export interface UpdatePackageReq {
id?: UInt64Value;
id?: number;
issues?: Array<number>;
modules?: Array<number>;
name?: StringValue;
url?: StringValue;
name?: string;
url?: string;
}