rotowire-api-client
Version:
Node and NestJS wrappers for Rotowire feeds
65 lines (52 loc) • 1.9 kB
text/typescript
/**
* Rotowire MLB API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Observable } from 'rxjs';
import { Configuration } from '../configuration';
export interface DefaultRotowireMlbApiServiceInterface {
defaultHeaders: {};
configuration: Configuration;
/**
* Daily Projections
*
* @param format Output Format - json or yaml (default)
* @param date Date \"YYYY-MM-DD\"
*/
dailyProjections(format: string, date?: string, extraHttpRequestParams?: any): Observable<{}>;
/**
* Expected Lineups
*
* @param format Output Format - json or yaml (default)
* @param date Date \"YYYY-MM-DD\"
*/
expectedLineups(format: string, date?: string, extraHttpRequestParams?: any): Observable<{}>;
/**
* Injuries
*
* @param format Output Format - json or yaml (default)
*/
injuries(format: string, extraHttpRequestParams?: any): Observable<{}>;
/**
* News Injuries
*
* @param format Output Format - json or yaml (default)
* @param date Date \"YYYY-MM-DD\"
*/
newsInjuries(format: string, date?: string, extraHttpRequestParams?: any): Observable<{}>;
/**
* Projected Starters
*
* @param format Output Format - json or yaml (default)
* @param date Date \"YYYY-MM-DD\"
* @param spring_training Flag to show spring training games
*/
projectedStarters(format: string, date?: string, spring_training?: number, extraHttpRequestParams?: any): Observable<{}>;
}