matrix-react-sdk
Version:
SDK for matrix.org using React
35 lines (34 loc) • 1.52 kB
TypeScript
import { Room, IOpenIDToken } from "matrix-js-sdk/src/matrix";
import { TermsInteractionCallback } from "./Terms";
import { WidgetType } from "./widgets/WidgetType";
export default class ScalarAuthClient {
private apiUrl;
private uiUrl;
private scalarToken;
private termsInteractionCallback?;
private isDefaultManager;
constructor(apiUrl: string, uiUrl: string);
private writeTokenToStore;
private readTokenFromStore;
private readToken;
setTermsInteractionCallback(callback: TermsInteractionCallback): void;
connect(): Promise<void>;
hasCredentials(): boolean;
getScalarToken(): Promise<string>;
private getAccountName;
private checkToken;
registerForToken(): Promise<string>;
exchangeForScalarToken(openidTokenObject: IOpenIDToken): Promise<string>;
getScalarPageTitle(url: string): Promise<string>;
/**
* Mark all assets associated with the specified widget as "disabled" in the
* integration manager database.
* This can be useful to temporarily prevent purchased assets from being displayed.
* @param {WidgetType} widgetType The Widget Type to disable assets for
* @param {string} widgetId The widget ID to disable assets for
* @return {Promise} Resolves on completion
*/
disableWidgetAssets(widgetType: WidgetType, widgetId: string): Promise<void>;
getScalarInterfaceUrlForRoom(room: Room, screen?: string, id?: string): string;
getStarterLink(starterLinkUrl: string): string;
}