7
ui/src/app/api/models/add-comment-req.ts
Normal file
7
ui/src/app/api/models/add-comment-req.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { UInt64Value } from './u-int-64-value';
|
||||
export interface AddCommentReq {
|
||||
idPackage?: UInt64Value;
|
||||
text?: string;
|
||||
}
|
5
ui/src/app/api/models/add-comment-rsp.ts
Normal file
5
ui/src/app/api/models/add-comment-rsp.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface AddCommentRsp {
|
||||
id?: number;
|
||||
}
|
8
ui/src/app/api/models/add-package-req.ts
Normal file
8
ui/src/app/api/models/add-package-req.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { StringValue } from './string-value';
|
||||
export interface AddPackageReq {
|
||||
modules?: Array<number>;
|
||||
name?: StringValue;
|
||||
url?: StringValue;
|
||||
}
|
4
ui/src/app/api/models/add-package-rsp.ts
Normal file
4
ui/src/app/api/models/add-package-rsp.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface AddPackageRsp {
|
||||
}
|
6
ui/src/app/api/models/error-rsp.ts
Normal file
6
ui/src/app/api/models/error-rsp.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { Error } from './error';
|
||||
export interface ErrorRsp {
|
||||
error?: Error;
|
||||
}
|
8
ui/src/app/api/models/error.ts
Normal file
8
ui/src/app/api/models/error.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface Error {
|
||||
code?: string;
|
||||
details?: string;
|
||||
title?: string;
|
||||
uuid?: string;
|
||||
}
|
6
ui/src/app/api/models/get-module-rsp.ts
Normal file
6
ui/src/app/api/models/get-module-rsp.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { Module } from './module';
|
||||
export interface GetModuleRsp {
|
||||
modules?: Array<Module>;
|
||||
}
|
6
ui/src/app/api/models/list-package-rsp.ts
Normal file
6
ui/src/app/api/models/list-package-rsp.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { Package } from './package';
|
||||
export interface ListPackageRsp {
|
||||
packages?: Array<Package>;
|
||||
}
|
9
ui/src/app/api/models/module.ts
Normal file
9
ui/src/app/api/models/module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface Module {
|
||||
id?: number;
|
||||
last_version?: string;
|
||||
name?: string;
|
||||
package?: number;
|
||||
version?: string;
|
||||
}
|
10
ui/src/app/api/models/package.ts
Normal file
10
ui/src/app/api/models/package.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface Package {
|
||||
comments?: Array<number>;
|
||||
id?: number;
|
||||
issues?: Array<number>;
|
||||
modules?: Array<number>;
|
||||
name?: string;
|
||||
url?: string;
|
||||
}
|
13
ui/src/app/api/models/string-value.ts
Normal file
13
ui/src/app/api/models/string-value.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
/**
|
||||
* Wrapper message for `string`. The JSON representation for `StringValue` is JSON string.
|
||||
*/
|
||||
export interface StringValue {
|
||||
|
||||
/**
|
||||
* The string value.
|
||||
*/
|
||||
value?: string;
|
||||
}
|
13
ui/src/app/api/models/u-int-64-value.ts
Normal file
13
ui/src/app/api/models/u-int-64-value.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
/**
|
||||
* Wrapper message for `uint64`. The JSON representation for `UInt64Value` is JSON string.
|
||||
*/
|
||||
export interface UInt64Value {
|
||||
|
||||
/**
|
||||
* The uint64 value.
|
||||
*/
|
||||
value?: number;
|
||||
}
|
11
ui/src/app/api/models/update-package-req.ts
Normal file
11
ui/src/app/api/models/update-package-req.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import { StringValue } from './string-value';
|
||||
import { UInt64Value } from './u-int-64-value';
|
||||
export interface UpdatePackageReq {
|
||||
id?: UInt64Value;
|
||||
issues?: Array<number>;
|
||||
modules?: Array<number>;
|
||||
name?: StringValue;
|
||||
url?: StringValue;
|
||||
}
|
5
ui/src/app/api/models/update-package-rsp.ts
Normal file
5
ui/src/app/api/models/update-package-rsp.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export interface UpdatePackageRsp {
|
||||
id?: number;
|
||||
}
|
Reference in New Issue
Block a user