@finbourne/lusid-sdk-angular8
Version:
An angular (8+) SDK for secure access to the LUSID® by FINBOURNE web API
32 lines (31 loc) • 2.11 kB
TypeScript
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ResourceListOfChange } from '../model/resourceListOfChange';
import { Configuration } from '../configuration';
import * as i0 from "@angular/core";
export declare class EntitiesService {
protected httpClient: HttpClient;
protected basePath: string;
defaultHeaders: HttpHeaders;
configuration: Configuration;
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
/**
* @param consumes string[] mime-types
* @return true: consumes contains 'multipart/form-data', false: otherwise
*/
private canConsumeForm;
/**
* [EARLY ACCESS] GetPortfolioChanges: Get the next change to each portfolio in a scope.
* Gets the time of the next (earliest effective at) modification (correction and/or amendment) to each portfolio in a scope relative to a point in bitemporal time. Includes changes from parent portfolios in different scopes. Excludes changes from subcriptions (e.g corporate actions).
* @param scope The scope
* @param effectiveAt The effective date of the origin.
* @param asAt The as-at date of the origin.
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
getPortfolioChanges(scope: string, effectiveAt: string, asAt?: Date, observe?: 'body', reportProgress?: boolean): Observable<ResourceListOfChange>;
getPortfolioChanges(scope: string, effectiveAt: string, asAt?: Date, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ResourceListOfChange>>;
getPortfolioChanges(scope: string, effectiveAt: string, asAt?: Date, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ResourceListOfChange>>;
static ɵfac: i0.ɵɵFactoryDef<EntitiesService, [null, { optional: true; }, { optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDef<EntitiesService>;
}