Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate frontend API files now that listCount APIs are merged #757

Merged
merged 2 commits into from
Jan 31, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Regenerate frontend swagger-generated API files now that listCount AP…
…Is are merged
  • Loading branch information
rileyjbauer committed Jan 31, 2019
commit c9a387c1b2280e5c6b6bfe7ff12af2b64fe91d71
6 changes: 6 additions & 0 deletions frontend/src/apis/experiment/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ export interface ApiListExperimentsResponse {
* @memberof ApiListExperimentsResponse
*/
experiments?: Array<ApiExperiment>;
/**
*
* @type {number}
* @memberof ApiListExperimentsResponse
*/
total_size?: number;
/**
*
* @type {string}
Expand Down
19 changes: 10 additions & 9 deletions frontend/src/apis/filter/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*/


import * as url from "url";
import * as portableFetch from "portable-fetch";
import { Configuration } from "./configuration";

Expand Down Expand Up @@ -201,15 +202,15 @@ export interface ApiStringValues {
* @enum {string}
*/
export enum PredicateOp {
UNKNOWN = <any>'UNKNOWN',
EQUALS = <any>'EQUALS',
NOTEQUALS = <any>'NOT_EQUALS',
GREATERTHAN = <any>'GREATER_THAN',
GREATERTHANEQUALS = <any>'GREATER_THAN_EQUALS',
LESSTHAN = <any>'LESS_THAN',
LESSTHANEQUALS = <any>'LESS_THAN_EQUALS',
IN = <any>'IN',
ISSUBSTRING = <any>'IS_SUBSTRING'
UNKNOWN = <any> 'UNKNOWN',
EQUALS = <any> 'EQUALS',
NOTEQUALS = <any> 'NOT_EQUALS',
GREATERTHAN = <any> 'GREATER_THAN',
GREATERTHANEQUALS = <any> 'GREATER_THAN_EQUALS',
LESSTHAN = <any> 'LESS_THAN',
LESSTHANEQUALS = <any> 'LESS_THAN_EQUALS',
IN = <any> 'IN',
ISSUBSTRING = <any> 'IS_SUBSTRING'
}


6 changes: 6 additions & 0 deletions frontend/src/apis/job/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,12 @@ export interface ApiListJobsResponse {
* @memberof ApiListJobsResponse
*/
jobs?: Array<ApiJob>;
/**
*
* @type {number}
* @memberof ApiListJobsResponse
*/
total_size?: number;
/**
*
* @type {string}
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/apis/pipeline/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ export interface ApiListPipelinesResponse {
* @memberof ApiListPipelinesResponse
*/
pipelines?: Array<ApiPipeline>;
/**
*
* @type {number}
* @memberof ApiListPipelinesResponse
*/
total_size?: number;
/**
*
* @type {string}
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/apis/run/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ export interface ApiListRunsResponse {
* @memberof ApiListRunsResponse
*/
runs?: Array<ApiRun>;
/**
*
* @type {number}
* @memberof ApiListRunsResponse
*/
total_size?: number;
/**
*
* @type {string}
Expand Down