qlik-saas-api
Version:
Interact with Qlik Sense SaaS REST API
30 lines (29 loc) • 827 B
TypeScript
import { QlikSaaSClient } from "qlik-rest-api";
import { WebIntegration } from "./WebIntegration";
export interface IWebIntegrationCreate {
name: string;
/**
* The origins that are allowed to make requests to the tenant.
*
* Include protocol as well. For example: http://localhost and not only localhost
*/
validOrigins?: string[];
}
export declare class WebIntegrations {
#private;
constructor(saasClient: QlikSaaSClient);
get(arg: {
id: string;
}): Promise<WebIntegration>;
getAll(): Promise<any>;
getFilter(arg: {
filter: string;
}): Promise<WebIntegration[]>;
removeFilter(arg: {
filter: string;
}): Promise<{
id: string;
status: number;
}[]>;
create(arg: IWebIntegrationCreate): Promise<WebIntegration>;
}