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
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
Prev Previous commit
Manually remove 'url' import from filter/api.ts
  • Loading branch information
rileyjbauer committed Jan 31, 2019
commit e07590d0c582f774d5bd493e90362fc26ff762ba
36 changes: 17 additions & 19 deletions frontend/src/apis/filter/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: version not set
*
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/


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

Expand All @@ -40,7 +38,7 @@ export interface FetchAPI {
}

/**
*
*
* @export
* @interface FetchArgs
*/
Expand All @@ -50,7 +48,7 @@ export interface FetchArgs {
}

/**
*
*
* @export
* @class BaseAPI
*/
Expand All @@ -66,7 +64,7 @@ export class BaseAPI {
};

/**
*
*
* @export
* @class RequiredError
* @extends {Error}
Expand All @@ -93,27 +91,27 @@ export interface ApiFilter {
}

/**
*
*
* @export
* @interface ApiIntValues
*/
export interface ApiIntValues {
/**
*
*
* @type {Array<number>}
* @memberof ApiIntValues
*/
values?: Array<number>;
}

/**
*
*
* @export
* @interface ApiLongValues
*/
export interface ApiLongValues {
/**
*
*
* @type {Array&lt;string&gt;}
* @memberof ApiLongValues
*/
Expand All @@ -127,31 +125,31 @@ export interface ApiLongValues {
*/
export interface ApiPredicate {
/**
*
*
* @type {PredicateOp}
* @memberof ApiPredicate
*/
op?: PredicateOp;
/**
*
*
* @type {string}
* @memberof ApiPredicate
*/
key?: string;
/**
*
*
* @type {number}
* @memberof ApiPredicate
*/
int_value?: number;
/**
*
*
* @type {string}
* @memberof ApiPredicate
*/
long_value?: string;
/**
*
*
* @type {string}
* @memberof ApiPredicate
*/
Expand All @@ -169,27 +167,27 @@ export interface ApiPredicate {
*/
int_values?: ApiIntValues;
/**
*
*
* @type {ApiLongValues}
* @memberof ApiPredicate
*/
long_values?: ApiLongValues;
/**
*
*
* @type {ApiStringValues}
* @memberof ApiPredicate
*/
string_values?: ApiStringValues;
}

/**
*
*
* @export
* @interface ApiStringValues
*/
export interface ApiStringValues {
/**
*
*
* @type {Array&lt;string&gt;}
* @memberof ApiStringValues
*/
Expand Down