merge
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { UInt64Value } from './u-int-64-value';
|
||||
export interface AddCommentReq {
|
||||
idPackage?: UInt64Value;
|
||||
idPackage?: number;
|
||||
text?: string;
|
||||
}
|
||||
|
@@ -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;
|
||||
}
|
||||
|
@@ -1,4 +1,5 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface AddPackageRsp {
|
||||
status?: string;
|
||||
}
|
||||
|
@@ -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;
|
||||
}
|
@@ -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;
|
||||
}
|
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user