UNPKG

@chustasoft/cs-releasy-connector

Version:

JS connector library for ChustaSoft Releasy backend project, providing easy access to REST features

13 lines (12 loc) 512 B
import { BasicAuthentication, JwtAuthentication } from '@chustasoft/cs-common'; import { ReleaseInfo } from '..'; export declare abstract class ReleaseInfoService { private httpService; private apiUrl; constructor(authorizationApiUrl: string); getAll(): Promise<ReleaseInfo[]>; get(identifier: string): Promise<ReleaseInfo>; getFrom(filter: string | Date): Promise<ReleaseInfo[]>; abstract getAuthentication(): JwtAuthentication | BasicAuthentication; private getFilterUrlPart; }