@revxui/api-clients-ts
Version:
swagger client for @revxui/api-clients-ts
44 lines (43 loc) • 2.84 kB
TypeScript
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ApiResponseObjectWhitelabelingEntity } from '../model/apiResponseObjectWhitelabelingEntity';
import { Configuration } from '../configuration';
import * as i0 from "@angular/core";
export declare class CSSThemeController_Service {
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;
/**
* CSSTheme By LicenseeId
*
* @param licenseeId licenseeId
* @param reqId request id
* @param token Auth Token
* @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.
*/
themeByLicenseeIdUsingGET(licenseeId: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectWhitelabelingEntity>;
themeByLicenseeIdUsingGET(licenseeId: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectWhitelabelingEntity>>;
themeByLicenseeIdUsingGET(licenseeId: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectWhitelabelingEntity>>;
/**
* CSSTheme By SubDomain
*
* @param subdomain subdomain
* @param reqId request id
* @param token Auth Token
* @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.
*/
themeBySubDomainUsingGET(subdomain: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectWhitelabelingEntity>;
themeBySubDomainUsingGET(subdomain: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectWhitelabelingEntity>>;
themeBySubDomainUsingGET(subdomain: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectWhitelabelingEntity>>;
static ɵfac: i0.ɵɵFactoryDeclaration<CSSThemeController_Service, [null, { optional: true; }, { optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDeclaration<CSSThemeController_Service>;
}