Comparing version 2.3.1 to 2.3.2
# Change Log | ||
## 2.3.2 | ||
### Исправления | ||
- Исправления внутренней работы SDK. | ||
## 2.3.1 | ||
### Исправления | ||
- Исправлен логотип `Почты Mail`. | ||
## 2.3.0 | ||
@@ -4,0 +14,0 @@ |
'use strict'; | ||
// @ts-ignore-next-line пробрасываем версию из package.json в rollup.config | ||
var VERSION = "2.3.1"; | ||
var VERSION = "2.3.2"; | ||
// @ts-ignore-next-line пробрасываем тип сборки из rollup.config | ||
@@ -6,0 +6,0 @@ var DOMAIN = "vk.com"; |
@@ -58,5 +58,6 @@ 'use strict'; | ||
key: "sendSdkInit", | ||
value: function sendSdkInit() { | ||
value: function sendSdkInit(additionalInfo) { | ||
void this.logEvent({ | ||
step: "vkid_sdk_init" | ||
step: "vkid_sdk_init", | ||
additional_info: additionalInfo | ||
}); | ||
@@ -63,0 +64,0 @@ } |
@@ -92,3 +92,3 @@ 'use strict'; | ||
this.set(config); | ||
this.sakSessionStatsCollector.sendSdkInit(); | ||
this.sakSessionStatsCollector.sendSdkInit(config.source); | ||
return this; | ||
@@ -95,0 +95,0 @@ } |
@@ -14,2 +14,6 @@ 'use strict'; | ||
})(exports.ConfigResponseMode || (exports.ConfigResponseMode = {})); | ||
exports.ConfigSource = void 0; | ||
(function(ConfigSource) { | ||
ConfigSource["LOWCODE"] = "lowcode"; | ||
})(exports.ConfigSource || (exports.ConfigSource = {})); | ||
exports.Prompt = void 0; | ||
@@ -16,0 +20,0 @@ (function(Prompt) { |
@@ -38,2 +38,6 @@ 'use strict'; | ||
}); | ||
Object.defineProperty(exports, 'ConfigSource', { | ||
enumerable: true, | ||
get: function () { return types.ConfigSource; } | ||
}); | ||
Object.defineProperty(exports, 'Prompt', { | ||
@@ -40,0 +44,0 @@ enumerable: true, |
// @ts-ignore-next-line пробрасываем версию из package.json в rollup.config | ||
const VERSION = "2.3.1"; | ||
const VERSION = "2.3.2"; | ||
// @ts-ignore-next-line пробрасываем тип сборки из rollup.config | ||
@@ -4,0 +4,0 @@ const DOMAIN = 'vk.com'; |
@@ -18,5 +18,6 @@ import { ProductionStatsTypeActions, ProductionStatsEventScreen } from './types.js'; | ||
} | ||
sendSdkInit() { | ||
sendSdkInit(additionalInfo) { | ||
void this.logEvent({ | ||
step: 'vkid_sdk_init' | ||
step: 'vkid_sdk_init', | ||
additional_info: additionalInfo | ||
}); | ||
@@ -23,0 +24,0 @@ } |
@@ -39,3 +39,3 @@ import { LOGIN_DOMAIN, OAUTH_DOMAIN, VKID_DOMAIN } from '../../constants.js'; | ||
this.set(config); | ||
this.sakSessionStatsCollector.sendSdkInit(); | ||
this.sakSessionStatsCollector.sendSdkInit(config.source); | ||
return this; | ||
@@ -42,0 +42,0 @@ } |
@@ -12,2 +12,6 @@ var ConfigAuthMode; | ||
})(ConfigResponseMode || (ConfigResponseMode = {})); | ||
var ConfigSource; | ||
(function(ConfigSource) { | ||
ConfigSource["LOWCODE"] = 'lowcode'; | ||
})(ConfigSource || (ConfigSource = {})); | ||
var Prompt; | ||
@@ -22,2 +26,2 @@ (function(Prompt) { | ||
export { ConfigAuthMode, ConfigResponseMode, Prompt }; | ||
export { ConfigAuthMode, ConfigResponseMode, ConfigSource, Prompt }; |
import { Auth } from './auth/auth.js'; | ||
export { AuthErrorCode } from './auth/types.js'; | ||
import { Config } from './core/config/config.js'; | ||
export { ConfigAuthMode, ConfigResponseMode, Prompt } from './core/config/types.js'; | ||
export { ConfigAuthMode, ConfigResponseMode, ConfigSource, Prompt } from './core/config/types.js'; | ||
import { Widget } from './core/widget/widget.js'; | ||
@@ -6,0 +6,0 @@ export { WidgetEvents } from './core/widget/events.js'; |
import { ActionStatsCollector } from './ActionStatsCollector'; | ||
import { SakSessionStatsEventParams } from './types'; | ||
import { SakSessionAdditionalInfo, SakSessionStatsEventParams } from './types'; | ||
export declare class SakSessionStatsCollector { | ||
@@ -7,3 +7,3 @@ private readonly actionStatsCollector; | ||
logEvent(event: SakSessionStatsEventParams): Promise<unknown>; | ||
sendSdkInit(): void; | ||
sendSdkInit(additionalInfo?: SakSessionAdditionalInfo): void; | ||
} |
@@ -32,2 +32,3 @@ export declare enum ProductionStatsEventTypes { | ||
type SakSessionEventTypes = 'vkid_sdk_init'; | ||
export type SakSessionAdditionalInfo = 'lowcode'; | ||
export interface RegistrationStatsEventParams { | ||
@@ -41,2 +42,3 @@ event_type: RegistrationStatsEventTypes; | ||
step: SakSessionEventTypes; | ||
additional_info?: SakSessionAdditionalInfo; | ||
} | ||
@@ -43,0 +45,0 @@ export interface ActionStatsParams { |
export { Config } from './config'; | ||
export { ConfigAuthMode, ConfigResponseMode, Prompt } from './types'; | ||
export { ConfigAuthMode, ConfigResponseMode, ConfigSource, Prompt } from './types'; | ||
export type { ConfigData } from './types'; |
@@ -21,2 +21,5 @@ export declare enum ConfigAuthMode { | ||
}); | ||
export declare enum ConfigSource { | ||
LOWCODE = "lowcode" | ||
} | ||
export interface ConfigData { | ||
@@ -44,2 +47,6 @@ app: number; | ||
*/ | ||
source?: ConfigSource; | ||
/** | ||
* @ignore | ||
*/ | ||
__loginDomain?: string; | ||
@@ -46,0 +53,0 @@ /** |
import { Auth, AuthParams, AuthError, AuthResponse, AuthErrorCode, LogoutResult, PublicInfoResult, TokenResult, UserInfoResult } from './auth'; | ||
import { Config, ConfigData, ConfigAuthMode, ConfigResponseMode, Prompt } from './core/config'; | ||
import { Config, ConfigData, ConfigAuthMode, ConfigResponseMode, ConfigSource, Prompt } from './core/config'; | ||
export { Languages, Scheme } from './types'; | ||
declare const globalConfig: Config; | ||
export { globalConfig as Config, ConfigAuthMode, ConfigResponseMode, Prompt }; | ||
export { globalConfig as Config, ConfigAuthMode, ConfigResponseMode, ConfigSource, Prompt }; | ||
export type { ConfigData }; | ||
@@ -7,0 +7,0 @@ declare const globalAuth: Auth; |
@@ -1,1 +0,1 @@ | ||
window.searchData = JSON.parse("{\"rows\":[{\"kind\":2,\"name\":\"core/config\",\"url\":\"modules/core_config.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"core/widget\",\"url\":\"modules/core_widget.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"auth\",\"url\":\"modules/auth.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"widgets/oneTap\",\"url\":\"modules/widgets_oneTap.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"widgets/floatingOneTap\",\"url\":\"modules/widgets_floatingOneTap.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"widgets/oauthList\",\"url\":\"modules/widgets_oauthList.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"types\",\"url\":\"modules/types.html\",\"classes\":\"\"},{\"kind\":8,\"name\":\"Languages\",\"url\":\"enums/types.Languages.html\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":16,\"name\":\"RUS\",\"url\":\"enums/types.Languages.html#RUS\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"UKR\",\"url\":\"enums/types.Languages.html#UKR\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"ENG\",\"url\":\"enums/types.Languages.html#ENG\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"SPA\",\"url\":\"enums/types.Languages.html#SPA\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"GERMAN\",\"url\":\"enums/types.Languages.html#GERMAN\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"POL\",\"url\":\"enums/types.Languages.html#POL\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"FRA\",\"url\":\"enums/types.Languages.html#FRA\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"UZB\",\"url\":\"enums/types.Languages.html#UZB\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"TURKEY\",\"url\":\"enums/types.Languages.html#TURKEY\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"KAZ\",\"url\":\"enums/types.Languages.html#KAZ\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"BEL\",\"url\":\"enums/types.Languages.html#BEL\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":8,\"name\":\"Scheme\",\"url\":\"enums/types.Scheme.html\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":16,\"name\":\"LIGHT\",\"url\":\"enums/types.Scheme.html#LIGHT\",\"classes\":\"\",\"parent\":\"types.Scheme\"},{\"kind\":16,\"name\":\"DARK\",\"url\":\"enums/types.Scheme.html#DARK\",\"classes\":\"\",\"parent\":\"types.Scheme\"},{\"kind\":128,\"name\":\"Config\",\"url\":\"classes/core_config.Config.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/core_config.Config.html#constructor\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/core_config.Config.html#init\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/core_config.Config.html#update\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/core_config.Config.html#get\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":8,\"name\":\"ConfigAuthMode\",\"url\":\"enums/core_config.ConfigAuthMode.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":16,\"name\":\"Redirect\",\"url\":\"enums/core_config.ConfigAuthMode.html#Redirect\",\"classes\":\"\",\"parent\":\"core/config.ConfigAuthMode\"},{\"kind\":16,\"name\":\"InNewTab\",\"url\":\"enums/core_config.ConfigAuthMode.html#InNewTab\",\"classes\":\"\",\"parent\":\"core/config.ConfigAuthMode\"},{\"kind\":16,\"name\":\"InNewWindow\",\"url\":\"enums/core_config.ConfigAuthMode.html#InNewWindow\",\"classes\":\"\",\"parent\":\"core/config.ConfigAuthMode\"},{\"kind\":8,\"name\":\"ConfigResponseMode\",\"url\":\"enums/core_config.ConfigResponseMode.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":16,\"name\":\"Redirect\",\"url\":\"enums/core_config.ConfigResponseMode.html#Redirect\",\"classes\":\"\",\"parent\":\"core/config.ConfigResponseMode\"},{\"kind\":16,\"name\":\"Callback\",\"url\":\"enums/core_config.ConfigResponseMode.html#Callback\",\"classes\":\"\",\"parent\":\"core/config.ConfigResponseMode\"},{\"kind\":8,\"name\":\"Prompt\",\"url\":\"enums/core_config.Prompt.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":16,\"name\":\"Default\",\"url\":\"enums/core_config.Prompt.html#Default\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"None\",\"url\":\"enums/core_config.Prompt.html#None\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"Login\",\"url\":\"enums/core_config.Prompt.html#Login\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"Consent\",\"url\":\"enums/core_config.Prompt.html#Consent\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"SelectAccount\",\"url\":\"enums/core_config.Prompt.html#SelectAccount\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":256,\"name\":\"ConfigData\",\"url\":\"interfaces/core_config.ConfigData.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":1024,\"name\":\"app\",\"url\":\"interfaces/core_config.ConfigData.html#app\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"redirectUrl\",\"url\":\"interfaces/core_config.ConfigData.html#redirectUrl\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/core_config.ConfigData.html#state\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"codeVerifier\",\"url\":\"interfaces/core_config.ConfigData.html#codeVerifier\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"codeChallenge\",\"url\":\"interfaces/core_config.ConfigData.html#codeChallenge\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"scope\",\"url\":\"interfaces/core_config.ConfigData.html#scope\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":128,\"name\":\"Widget\",\"url\":\"classes/core_widget.Widget.html\",\"classes\":\"\",\"parent\":\"core/widget\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/core_widget.Widget.html#constructor\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/core_widget.Widget.html#render\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/core_widget.Widget.html#close\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/core_widget.Widget.html#show\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/core_widget.Widget.html#hide\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/core_widget.Widget.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/core_widget.Widget.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"core/widget.Widget\"},{\"kind\":8,\"name\":\"WidgetEvents\",\"url\":\"enums/core_widget.WidgetEvents.html\",\"classes\":\"\",\"parent\":\"core/widget\"},{\"kind\":16,\"name\":\"START_LOAD\",\"url\":\"enums/core_widget.WidgetEvents.html#START_LOAD\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"LOAD\",\"url\":\"enums/core_widget.WidgetEvents.html#LOAD\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"SHOW\",\"url\":\"enums/core_widget.WidgetEvents.html#SHOW\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"HIDE\",\"url\":\"enums/core_widget.WidgetEvents.html#HIDE\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"CLOSE\",\"url\":\"enums/core_widget.WidgetEvents.html#CLOSE\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"ERROR\",\"url\":\"enums/core_widget.WidgetEvents.html#ERROR\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"RESIZE\",\"url\":\"enums/core_widget.WidgetEvents.html#RESIZE\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":256,\"name\":\"WidgetParams\",\"url\":\"interfaces/core_widget.WidgetParams.html\",\"classes\":\"\",\"parent\":\"core/widget\"},{\"kind\":1024,\"name\":\"container\",\"url\":\"interfaces/core_widget.WidgetParams.html#container\",\"classes\":\"\",\"parent\":\"core/widget.WidgetParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/core_widget.WidgetParams.html#scheme\",\"classes\":\"\",\"parent\":\"core/widget.WidgetParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/core_widget.WidgetParams.html#lang\",\"classes\":\"\",\"parent\":\"core/widget.WidgetParams\"},{\"kind\":128,\"name\":\"Auth\",\"url\":\"classes/auth.Auth.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/auth.Auth.html#constructor\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"login\",\"url\":\"classes/auth.Auth.html#login\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"exchangeCode\",\"url\":\"classes/auth.Auth.html#exchangeCode\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"refreshToken\",\"url\":\"classes/auth.Auth.html#refreshToken\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"logout\",\"url\":\"classes/auth.Auth.html#logout\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"userInfo\",\"url\":\"classes/auth.Auth.html#userInfo\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"publicInfo\",\"url\":\"classes/auth.Auth.html#publicInfo\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":8,\"name\":\"AuthErrorCode\",\"url\":\"enums/auth.AuthErrorCode.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":16,\"name\":\"EventNotSupported\",\"url\":\"enums/auth.AuthErrorCode.html#EventNotSupported\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"CannotCreateNewTab\",\"url\":\"enums/auth.AuthErrorCode.html#CannotCreateNewTab\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"NewTabHasBeenClosed\",\"url\":\"enums/auth.AuthErrorCode.html#NewTabHasBeenClosed\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"AuthorizationFailed\",\"url\":\"enums/auth.AuthErrorCode.html#AuthorizationFailed\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"StateMismatch\",\"url\":\"enums/auth.AuthErrorCode.html#StateMismatch\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":256,\"name\":\"AuthError\",\"url\":\"interfaces/auth.AuthError.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/auth.AuthError.html#error\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"error_description\",\"url\":\"interfaces/auth.AuthError.html#error_description\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"error_uri\",\"url\":\"interfaces/auth.AuthError.html#error_uri\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/auth.AuthError.html#state\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/auth.AuthError.html#code\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":256,\"name\":\"AuthParams\",\"url\":\"interfaces/auth.AuthParams.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/auth.AuthParams.html#scheme\",\"classes\":\"\",\"parent\":\"auth.AuthParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/auth.AuthParams.html#lang\",\"classes\":\"\",\"parent\":\"auth.AuthParams\"},{\"kind\":256,\"name\":\"AuthResponse\",\"url\":\"interfaces/auth.AuthResponse.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/auth.AuthResponse.html#code\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/auth.AuthResponse.html#type\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/auth.AuthResponse.html#state\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"device_id\",\"url\":\"interfaces/auth.AuthResponse.html#device_id\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"expires_in\",\"url\":\"interfaces/auth.AuthResponse.html#expires_in\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":256,\"name\":\"LogoutResult\",\"url\":\"interfaces/auth.LogoutResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"response\",\"url\":\"interfaces/auth.LogoutResult.html#response\",\"classes\":\"\",\"parent\":\"auth.LogoutResult\"},{\"kind\":256,\"name\":\"PublicInfoResult\",\"url\":\"interfaces/auth.PublicInfoResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"interfaces/auth.PublicInfoResult.html#user\",\"classes\":\"\",\"parent\":\"auth.PublicInfoResult\"},{\"kind\":256,\"name\":\"TokenResult\",\"url\":\"interfaces/auth.TokenResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"access_token\",\"url\":\"interfaces/auth.TokenResult.html#access_token\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"expires_in\",\"url\":\"interfaces/auth.TokenResult.html#expires_in\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"id_token\",\"url\":\"interfaces/auth.TokenResult.html#id_token\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"refresh_token\",\"url\":\"interfaces/auth.TokenResult.html#refresh_token\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/auth.TokenResult.html#state\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"token_type\",\"url\":\"interfaces/auth.TokenResult.html#token_type\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"user_id\",\"url\":\"interfaces/auth.TokenResult.html#user_id\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"scope\",\"url\":\"interfaces/auth.TokenResult.html#scope\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":256,\"name\":\"UserInfoResult\",\"url\":\"interfaces/auth.UserInfoResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"interfaces/auth.UserInfoResult.html#user\",\"classes\":\"\",\"parent\":\"auth.UserInfoResult\"},{\"kind\":128,\"name\":\"OneTap\",\"url\":\"classes/widgets_oneTap.OneTap.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/widgets_oneTap.OneTap.html#constructor\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/widgets_oneTap.OneTap.html#render\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/widgets_oneTap.OneTap.html#close\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/widgets_oneTap.OneTap.html#show\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/widgets_oneTap.OneTap.html#hide\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/widgets_oneTap.OneTap.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/widgets_oneTap.OneTap.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":256,\"name\":\"OneTapParams\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":1024,\"name\":\"showAlternativeLogin\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#showAlternativeLogin\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"styles\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#styles\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"skin\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#skin\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"oauthList\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#oauthList\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"contentId\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#contentId\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"fastAuthEnabled\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#fastAuthEnabled\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"container\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#container\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#scheme\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#lang\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":256,\"name\":\"OneTapStyles\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html#width\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapStyles\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html#height\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapStyles\"},{\"kind\":1024,\"name\":\"borderRadius\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html#borderRadius\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapStyles\"},{\"kind\":8,\"name\":\"OneTapSkin\",\"url\":\"enums/widgets_oneTap.OneTapSkin.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":16,\"name\":\"Primary\",\"url\":\"enums/widgets_oneTap.OneTapSkin.html#Primary\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapSkin\"},{\"kind\":16,\"name\":\"Secondary\",\"url\":\"enums/widgets_oneTap.OneTapSkin.html#Secondary\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapSkin\"},{\"kind\":8,\"name\":\"OneTapContentId\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":16,\"name\":\"SIGN_IN\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#SIGN_IN\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"SIGN_UP\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#SIGN_UP\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"GET\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#GET\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"OPEN\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#OPEN\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"CALCULATE\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#CALCULATE\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"ORDER\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#ORDER\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"PLACE_ORDER\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#PLACE_ORDER\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"SUBMIT_REQUEST\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#SUBMIT_REQUEST\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"PARTICIPATE\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#PARTICIPATE\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":8,\"name\":\"OneTapInternalEvents\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":16,\"name\":\"LOGIN_SUCCESS\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#LOGIN_SUCCESS\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"SHOW_FULL_AUTH\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#SHOW_FULL_AUTH\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"START_AUTHORIZE\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#START_AUTHORIZE\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"NOT_AUTHORIZED\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#NOT_AUTHORIZED\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"AUTHENTICATION_INFO\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#AUTHENTICATION_INFO\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":128,\"name\":\"FloatingOneTap\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#constructor\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#render\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#close\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#show\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#hide\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":256,\"name\":\"FloatingOneTapParams\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":1024,\"name\":\"indent\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#indent\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"contentId\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#contentId\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"showAlternativeLogin\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#showAlternativeLogin\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#appName\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"oauthList\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#oauthList\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"fastAuthEnabled\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#fastAuthEnabled\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#scheme\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#lang\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":8,\"name\":\"FloatingOneTapContentId\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":16,\"name\":\"SIGN_IN_TO_SERVICE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#SIGN_IN_TO_SERVICE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"SIGN_IN_TO_ACCOUNT\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#SIGN_IN_TO_ACCOUNT\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"REGISTRATION_FOR_EVENT\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#REGISTRATION_FOR_EVENT\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"SUBMIT_APPLICATIONS\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#SUBMIT_APPLICATIONS\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"MAKE_ORDER_WITH_SERVICE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#MAKE_ORDER_WITH_SERVICE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"MAKE_ORDER_WITHOUT_SERVICE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#MAKE_ORDER_WITHOUT_SERVICE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"FAST_REGISTRATION\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#FAST_REGISTRATION\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":256,\"name\":\"FloatingOneTapIndent\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":1024,\"name\":\"top\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html#top\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapIndent\"},{\"kind\":1024,\"name\":\"right\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html#right\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapIndent\"},{\"kind\":1024,\"name\":\"bottom\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html#bottom\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapIndent\"},{\"kind\":8,\"name\":\"FloatingOneTapInternalEvents\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":16,\"name\":\"LOGIN_SUCCESS\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#LOGIN_SUCCESS\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":16,\"name\":\"SHOW_FULL_AUTH\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#SHOW_FULL_AUTH\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":16,\"name\":\"START_AUTHORIZE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#START_AUTHORIZE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":16,\"name\":\"NOT_AUTHORIZED\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#NOT_AUTHORIZED\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":128,\"name\":\"OAuthList\",\"url\":\"classes/widgets_oauthList.OAuthList.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/widgets_oauthList.OAuthList.html#constructor\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/widgets_oauthList.OAuthList.html#render\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/widgets_oauthList.OAuthList.html#close\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/widgets_oauthList.OAuthList.html#show\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/widgets_oauthList.OAuthList.html#hide\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/widgets_oauthList.OAuthList.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/widgets_oauthList.OAuthList.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":256,\"name\":\"OAuthListParams\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":1024,\"name\":\"styles\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#styles\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"oauthList\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#oauthList\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"container\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#container\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#scheme\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#lang\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":8,\"name\":\"OAuthName\",\"url\":\"enums/widgets_oauthList.OAuthName.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":16,\"name\":\"OK\",\"url\":\"enums/widgets_oauthList.OAuthName.html#OK\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthName\"},{\"kind\":16,\"name\":\"MAIL\",\"url\":\"enums/widgets_oauthList.OAuthName.html#MAIL\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthName\"},{\"kind\":16,\"name\":\"VK\",\"url\":\"enums/widgets_oauthList.OAuthName.html#VK\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthName\"},{\"kind\":8,\"name\":\"ExternalOAuthName\",\"url\":\"enums/widgets_oauthList.ExternalOAuthName.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":16,\"name\":\"OK\",\"url\":\"enums/widgets_oauthList.ExternalOAuthName.html#OK\",\"classes\":\"\",\"parent\":\"widgets/oauthList.ExternalOAuthName\"},{\"kind\":16,\"name\":\"MAIL\",\"url\":\"enums/widgets_oauthList.ExternalOAuthName.html#MAIL\",\"classes\":\"\",\"parent\":\"widgets/oauthList.ExternalOAuthName\"},{\"kind\":256,\"name\":\"OAuthListStyles\",\"url\":\"interfaces/widgets_oauthList.OAuthListStyles.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/widgets_oauthList.OAuthListStyles.html#height\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListStyles\"},{\"kind\":1024,\"name\":\"borderRadius\",\"url\":\"interfaces/widgets_oauthList.OAuthListStyles.html#borderRadius\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListStyles\"},{\"kind\":8,\"name\":\"OAuthListInternalEvents\",\"url\":\"enums/widgets_oauthList.OAuthListInternalEvents.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":16,\"name\":\"LOGIN_SUCCESS\",\"url\":\"enums/widgets_oauthList.OAuthListInternalEvents.html#LOGIN_SUCCESS\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListInternalEvents\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,49.558]],[\"comment/0\",[]],[\"name/1\",[1,49.558]],[\"comment/1\",[]],[\"name/2\",[2,44.45]],[\"comment/2\",[]],[\"name/3\",[3,49.558]],[\"comment/3\",[]],[\"name/4\",[4,49.558]],[\"comment/4\",[]],[\"name/5\",[5,49.558]],[\"comment/5\",[]],[\"name/6\",[6,49.558]],[\"comment/6\",[]],[\"name/7\",[7,49.558]],[\"comment/7\",[]],[\"name/8\",[8,49.558]],[\"comment/8\",[]],[\"name/9\",[9,49.558]],[\"comment/9\",[]],[\"name/10\",[10,49.558]],[\"comment/10\",[]],[\"name/11\",[11,49.558]],[\"comment/11\",[]],[\"name/12\",[12,49.558]],[\"comment/12\",[]],[\"name/13\",[13,49.558]],[\"comment/13\",[]],[\"name/14\",[14,49.558]],[\"comment/14\",[]],[\"name/15\",[15,49.558]],[\"comment/15\",[]],[\"name/16\",[16,49.558]],[\"comment/16\",[]],[\"name/17\",[17,49.558]],[\"comment/17\",[]],[\"name/18\",[18,49.558]],[\"comment/18\",[]],[\"name/19\",[19,34.895]],[\"comment/19\",[]],[\"name/20\",[20,49.558]],[\"comment/20\",[]],[\"name/21\",[21,49.558]],[\"comment/21\",[]],[\"name/22\",[22,49.558]],[\"comment/22\",[]],[\"name/23\",[23,34.895]],[\"comment/23\",[]],[\"name/24\",[24,49.558]],[\"comment/24\",[]],[\"name/25\",[25,49.558]],[\"comment/25\",[]],[\"name/26\",[26,44.45]],[\"comment/26\",[]],[\"name/27\",[27,49.558]],[\"comment/27\",[]],[\"name/28\",[28,44.45]],[\"comment/28\",[]],[\"name/29\",[29,49.558]],[\"comment/29\",[]],[\"name/30\",[30,49.558]],[\"comment/30\",[]],[\"name/31\",[31,49.558]],[\"comment/31\",[]],[\"name/32\",[28,44.45]],[\"comment/32\",[]],[\"name/33\",[32,49.558]],[\"comment/33\",[]],[\"name/34\",[33,49.558]],[\"comment/34\",[]],[\"name/35\",[34,49.558]],[\"comment/35\",[]],[\"name/36\",[35,49.558]],[\"comment/36\",[]],[\"name/37\",[36,44.45]],[\"comment/37\",[]],[\"name/38\",[37,49.558]],[\"comment/38\",[]],[\"name/39\",[38,49.558]],[\"comment/39\",[]],[\"name/40\",[39,49.558]],[\"comment/40\",[]],[\"name/41\",[40,49.558]],[\"comment/41\",[]],[\"name/42\",[41,49.558]],[\"comment/42\",[]],[\"name/43\",[42,38.572]],[\"comment/43\",[]],[\"name/44\",[43,49.558]],[\"comment/44\",[]],[\"name/45\",[44,49.558]],[\"comment/45\",[]],[\"name/46\",[45,44.45]],[\"comment/46\",[]],[\"name/47\",[46,49.558]],[\"comment/47\",[]],[\"name/48\",[23,34.895]],[\"comment/48\",[]],[\"name/49\",[47,38.572]],[\"comment/49\",[]],[\"name/50\",[48,36.565]],[\"comment/50\",[]],[\"name/51\",[49,36.565]],[\"comment/51\",[]],[\"name/52\",[50,36.565]],[\"comment/52\",[]],[\"name/53\",[51,38.572]],[\"comment/53\",[]],[\"name/54\",[52,38.572]],[\"comment/54\",[]],[\"name/55\",[53,49.558]],[\"comment/55\",[]],[\"name/56\",[54,49.558]],[\"comment/56\",[]],[\"name/57\",[55,49.558]],[\"comment/57\",[]],[\"name/58\",[49,36.565]],[\"comment/58\",[]],[\"name/59\",[50,36.565]],[\"comment/59\",[]],[\"name/60\",[48,36.565]],[\"comment/60\",[]],[\"name/61\",[56,44.45]],[\"comment/61\",[]],[\"name/62\",[57,49.558]],[\"comment/62\",[]],[\"name/63\",[58,49.558]],[\"comment/63\",[]],[\"name/64\",[59,41.085]],[\"comment/64\",[]],[\"name/65\",[19,34.895]],[\"comment/65\",[]],[\"name/66\",[60,36.565]],[\"comment/66\",[]],[\"name/67\",[2,44.45]],[\"comment/67\",[]],[\"name/68\",[23,34.895]],[\"comment/68\",[]],[\"name/69\",[36,44.45]],[\"comment/69\",[]],[\"name/70\",[61,49.558]],[\"comment/70\",[]],[\"name/71\",[62,49.558]],[\"comment/71\",[]],[\"name/72\",[63,49.558]],[\"comment/72\",[]],[\"name/73\",[64,49.558]],[\"comment/73\",[]],[\"name/74\",[65,49.558]],[\"comment/74\",[]],[\"name/75\",[66,49.558]],[\"comment/75\",[]],[\"name/76\",[67,49.558]],[\"comment/76\",[]],[\"name/77\",[68,49.558]],[\"comment/77\",[]],[\"name/78\",[69,49.558]],[\"comment/78\",[]],[\"name/79\",[70,49.558]],[\"comment/79\",[]],[\"name/80\",[71,49.558]],[\"comment/80\",[]],[\"name/81\",[72,49.558]],[\"comment/81\",[]],[\"name/82\",[56,44.45]],[\"comment/82\",[]],[\"name/83\",[73,49.558]],[\"comment/83\",[]],[\"name/84\",[74,49.558]],[\"comment/84\",[]],[\"name/85\",[42,38.572]],[\"comment/85\",[]],[\"name/86\",[75,44.45]],[\"comment/86\",[]],[\"name/87\",[76,49.558]],[\"comment/87\",[]],[\"name/88\",[19,34.895]],[\"comment/88\",[]],[\"name/89\",[60,36.565]],[\"comment/89\",[]],[\"name/90\",[77,49.558]],[\"comment/90\",[]],[\"name/91\",[75,44.45]],[\"comment/91\",[]],[\"name/92\",[78,49.558]],[\"comment/92\",[]],[\"name/93\",[42,38.572]],[\"comment/93\",[]],[\"name/94\",[79,49.558]],[\"comment/94\",[]],[\"name/95\",[80,44.45]],[\"comment/95\",[]],[\"name/96\",[81,49.558]],[\"comment/96\",[]],[\"name/97\",[82,49.558]],[\"comment/97\",[]],[\"name/98\",[83,49.558]],[\"comment/98\",[]],[\"name/99\",[84,44.45]],[\"comment/99\",[]],[\"name/100\",[85,49.558]],[\"comment/100\",[]],[\"name/101\",[86,49.558]],[\"comment/101\",[]],[\"name/102\",[80,44.45]],[\"comment/102\",[]],[\"name/103\",[87,49.558]],[\"comment/103\",[]],[\"name/104\",[88,49.558]],[\"comment/104\",[]],[\"name/105\",[42,38.572]],[\"comment/105\",[]],[\"name/106\",[89,49.558]],[\"comment/106\",[]],[\"name/107\",[90,49.558]],[\"comment/107\",[]],[\"name/108\",[45,44.45]],[\"comment/108\",[]],[\"name/109\",[91,49.558]],[\"comment/109\",[]],[\"name/110\",[84,44.45]],[\"comment/110\",[]],[\"name/111\",[92,49.558]],[\"comment/111\",[]],[\"name/112\",[23,34.895]],[\"comment/112\",[]],[\"name/113\",[47,38.572]],[\"comment/113\",[]],[\"name/114\",[48,36.565]],[\"comment/114\",[]],[\"name/115\",[49,36.565]],[\"comment/115\",[]],[\"name/116\",[50,36.565]],[\"comment/116\",[]],[\"name/117\",[51,38.572]],[\"comment/117\",[]],[\"name/118\",[52,38.572]],[\"comment/118\",[]],[\"name/119\",[93,49.558]],[\"comment/119\",[]],[\"name/120\",[94,44.45]],[\"comment/120\",[]],[\"name/121\",[95,44.45]],[\"comment/121\",[]],[\"name/122\",[96,49.558]],[\"comment/122\",[]],[\"name/123\",[97,38.572]],[\"comment/123\",[]],[\"name/124\",[98,44.45]],[\"comment/124\",[]],[\"name/125\",[99,44.45]],[\"comment/125\",[]],[\"name/126\",[59,41.085]],[\"comment/126\",[]],[\"name/127\",[19,34.895]],[\"comment/127\",[]],[\"name/128\",[60,36.565]],[\"comment/128\",[]],[\"name/129\",[100,49.558]],[\"comment/129\",[]],[\"name/130\",[101,49.558]],[\"comment/130\",[]],[\"name/131\",[102,44.45]],[\"comment/131\",[]],[\"name/132\",[103,44.45]],[\"comment/132\",[]],[\"name/133\",[104,49.558]],[\"comment/133\",[]],[\"name/134\",[105,49.558]],[\"comment/134\",[]],[\"name/135\",[106,49.558]],[\"comment/135\",[]],[\"name/136\",[107,49.558]],[\"comment/136\",[]],[\"name/137\",[108,49.558]],[\"comment/137\",[]],[\"name/138\",[109,49.558]],[\"comment/138\",[]],[\"name/139\",[26,44.45]],[\"comment/139\",[]],[\"name/140\",[110,49.558]],[\"comment/140\",[]],[\"name/141\",[111,49.558]],[\"comment/141\",[]],[\"name/142\",[112,49.558]],[\"comment/142\",[]],[\"name/143\",[113,49.558]],[\"comment/143\",[]],[\"name/144\",[114,49.558]],[\"comment/144\",[]],[\"name/145\",[115,49.558]],[\"comment/145\",[]],[\"name/146\",[116,49.558]],[\"comment/146\",[]],[\"name/147\",[117,41.085]],[\"comment/147\",[]],[\"name/148\",[118,44.45]],[\"comment/148\",[]],[\"name/149\",[119,44.45]],[\"comment/149\",[]],[\"name/150\",[120,44.45]],[\"comment/150\",[]],[\"name/151\",[121,49.558]],[\"comment/151\",[]],[\"name/152\",[122,49.558]],[\"comment/152\",[]],[\"name/153\",[23,34.895]],[\"comment/153\",[]],[\"name/154\",[47,38.572]],[\"comment/154\",[]],[\"name/155\",[48,36.565]],[\"comment/155\",[]],[\"name/156\",[49,36.565]],[\"comment/156\",[]],[\"name/157\",[50,36.565]],[\"comment/157\",[]],[\"name/158\",[51,38.572]],[\"comment/158\",[]],[\"name/159\",[52,38.572]],[\"comment/159\",[]],[\"name/160\",[123,49.558]],[\"comment/160\",[]],[\"name/161\",[124,49.558]],[\"comment/161\",[]],[\"name/162\",[98,44.45]],[\"comment/162\",[]],[\"name/163\",[94,44.45]],[\"comment/163\",[]],[\"name/164\",[125,49.558]],[\"comment/164\",[]],[\"name/165\",[97,38.572]],[\"comment/165\",[]],[\"name/166\",[99,44.45]],[\"comment/166\",[]],[\"name/167\",[19,34.895]],[\"comment/167\",[]],[\"name/168\",[60,36.565]],[\"comment/168\",[]],[\"name/169\",[126,49.558]],[\"comment/169\",[]],[\"name/170\",[127,49.558]],[\"comment/170\",[]],[\"name/171\",[128,49.558]],[\"comment/171\",[]],[\"name/172\",[129,49.558]],[\"comment/172\",[]],[\"name/173\",[130,49.558]],[\"comment/173\",[]],[\"name/174\",[131,49.558]],[\"comment/174\",[]],[\"name/175\",[132,49.558]],[\"comment/175\",[]],[\"name/176\",[133,49.558]],[\"comment/176\",[]],[\"name/177\",[134,49.558]],[\"comment/177\",[]],[\"name/178\",[135,49.558]],[\"comment/178\",[]],[\"name/179\",[136,49.558]],[\"comment/179\",[]],[\"name/180\",[137,49.558]],[\"comment/180\",[]],[\"name/181\",[138,49.558]],[\"comment/181\",[]],[\"name/182\",[117,41.085]],[\"comment/182\",[]],[\"name/183\",[118,44.45]],[\"comment/183\",[]],[\"name/184\",[119,44.45]],[\"comment/184\",[]],[\"name/185\",[120,44.45]],[\"comment/185\",[]],[\"name/186\",[97,38.572]],[\"comment/186\",[]],[\"name/187\",[23,34.895]],[\"comment/187\",[]],[\"name/188\",[47,38.572]],[\"comment/188\",[]],[\"name/189\",[48,36.565]],[\"comment/189\",[]],[\"name/190\",[49,36.565]],[\"comment/190\",[]],[\"name/191\",[50,36.565]],[\"comment/191\",[]],[\"name/192\",[51,38.572]],[\"comment/192\",[]],[\"name/193\",[52,38.572]],[\"comment/193\",[]],[\"name/194\",[139,49.558]],[\"comment/194\",[]],[\"name/195\",[95,44.45]],[\"comment/195\",[]],[\"name/196\",[97,38.572]],[\"comment/196\",[]],[\"name/197\",[59,41.085]],[\"comment/197\",[]],[\"name/198\",[19,34.895]],[\"comment/198\",[]],[\"name/199\",[60,36.565]],[\"comment/199\",[]],[\"name/200\",[140,49.558]],[\"comment/200\",[]],[\"name/201\",[141,44.45]],[\"comment/201\",[]],[\"name/202\",[142,44.45]],[\"comment/202\",[]],[\"name/203\",[143,49.558]],[\"comment/203\",[]],[\"name/204\",[144,49.558]],[\"comment/204\",[]],[\"name/205\",[141,44.45]],[\"comment/205\",[]],[\"name/206\",[142,44.45]],[\"comment/206\",[]],[\"name/207\",[145,49.558]],[\"comment/207\",[]],[\"name/208\",[102,44.45]],[\"comment/208\",[]],[\"name/209\",[103,44.45]],[\"comment/209\",[]],[\"name/210\",[146,49.558]],[\"comment/210\",[]],[\"name/211\",[117,41.085]],[\"comment/211\",[]]],\"invertedIndex\":[[\"access_token\",{\"_index\":86,\"name\":{\"101\":{}},\"comment\":{}}],[\"app\",{\"_index\":40,\"name\":{\"41\":{}},\"comment\":{}}],[\"appname\",{\"_index\":125,\"name\":{\"164\":{}},\"comment\":{}}],[\"auth\",{\"_index\":2,\"name\":{\"2\":{},\"67\":{}},\"comment\":{}}],[\"authentication_info\",{\"_index\":121,\"name\":{\"151\":{}},\"comment\":{}}],[\"autherror\",{\"_index\":72,\"name\":{\"81\":{}},\"comment\":{}}],[\"autherrorcode\",{\"_index\":66,\"name\":{\"75\":{}},\"comment\":{}}],[\"authorizationfailed\",{\"_index\":70,\"name\":{\"79\":{}},\"comment\":{}}],[\"authparams\",{\"_index\":76,\"name\":{\"87\":{}},\"comment\":{}}],[\"authresponse\",{\"_index\":77,\"name\":{\"90\":{}},\"comment\":{}}],[\"bel\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"borderradius\",{\"_index\":103,\"name\":{\"132\":{},\"209\":{}},\"comment\":{}}],[\"bottom\",{\"_index\":137,\"name\":{\"180\":{}},\"comment\":{}}],[\"calculate\",{\"_index\":111,\"name\":{\"141\":{}},\"comment\":{}}],[\"callback\",{\"_index\":32,\"name\":{\"33\":{}},\"comment\":{}}],[\"cannotcreatenewtab\",{\"_index\":68,\"name\":{\"77\":{}},\"comment\":{}}],[\"close\",{\"_index\":48,\"name\":{\"50\":{},\"60\":{},\"114\":{},\"155\":{},\"189\":{}},\"comment\":{}}],[\"code\",{\"_index\":75,\"name\":{\"86\":{},\"91\":{}},\"comment\":{}}],[\"codechallenge\",{\"_index\":44,\"name\":{\"45\":{}},\"comment\":{}}],[\"codeverifier\",{\"_index\":43,\"name\":{\"44\":{}},\"comment\":{}}],[\"config\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"configauthmode\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"configdata\",{\"_index\":39,\"name\":{\"40\":{}},\"comment\":{}}],[\"configresponsemode\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"consent\",{\"_index\":37,\"name\":{\"38\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":23,\"name\":{\"23\":{},\"48\":{},\"68\":{},\"112\":{},\"153\":{},\"187\":{}},\"comment\":{}}],[\"container\",{\"_index\":59,\"name\":{\"64\":{},\"126\":{},\"197\":{}},\"comment\":{}}],[\"contentid\",{\"_index\":98,\"name\":{\"124\":{},\"162\":{}},\"comment\":{}}],[\"core/config\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"core/widget\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"dark\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"default\",{\"_index\":34,\"name\":{\"35\":{}},\"comment\":{}}],[\"device_id\",{\"_index\":79,\"name\":{\"94\":{}},\"comment\":{}}],[\"eng\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"error\",{\"_index\":56,\"name\":{\"61\":{},\"82\":{}},\"comment\":{}}],[\"error_description\",{\"_index\":73,\"name\":{\"83\":{}},\"comment\":{}}],[\"error_uri\",{\"_index\":74,\"name\":{\"84\":{}},\"comment\":{}}],[\"eventnotsupported\",{\"_index\":67,\"name\":{\"76\":{}},\"comment\":{}}],[\"exchangecode\",{\"_index\":61,\"name\":{\"70\":{}},\"comment\":{}}],[\"expires_in\",{\"_index\":80,\"name\":{\"95\":{},\"102\":{}},\"comment\":{}}],[\"externaloauthname\",{\"_index\":144,\"name\":{\"204\":{}},\"comment\":{}}],[\"fast_registration\",{\"_index\":133,\"name\":{\"176\":{}},\"comment\":{}}],[\"fastauthenabled\",{\"_index\":99,\"name\":{\"125\":{},\"166\":{}},\"comment\":{}}],[\"floatingonetap\",{\"_index\":122,\"name\":{\"152\":{}},\"comment\":{}}],[\"floatingonetapcontentid\",{\"_index\":126,\"name\":{\"169\":{}},\"comment\":{}}],[\"floatingonetapindent\",{\"_index\":134,\"name\":{\"177\":{}},\"comment\":{}}],[\"floatingonetapinternalevents\",{\"_index\":138,\"name\":{\"181\":{}},\"comment\":{}}],[\"floatingonetapparams\",{\"_index\":123,\"name\":{\"160\":{}},\"comment\":{}}],[\"fra\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"german\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"get\",{\"_index\":26,\"name\":{\"26\":{},\"139\":{}},\"comment\":{}}],[\"height\",{\"_index\":102,\"name\":{\"131\":{},\"208\":{}},\"comment\":{}}],[\"hide\",{\"_index\":50,\"name\":{\"52\":{},\"59\":{},\"116\":{},\"157\":{},\"191\":{}},\"comment\":{}}],[\"id_token\",{\"_index\":87,\"name\":{\"103\":{}},\"comment\":{}}],[\"indent\",{\"_index\":124,\"name\":{\"161\":{}},\"comment\":{}}],[\"init\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"innewtab\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"innewwindow\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"kaz\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"lang\",{\"_index\":60,\"name\":{\"66\":{},\"89\":{},\"128\":{},\"168\":{},\"199\":{}},\"comment\":{}}],[\"languages\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"light\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"load\",{\"_index\":55,\"name\":{\"57\":{}},\"comment\":{}}],[\"login\",{\"_index\":36,\"name\":{\"37\":{},\"69\":{}},\"comment\":{}}],[\"login_success\",{\"_index\":117,\"name\":{\"147\":{},\"182\":{},\"211\":{}},\"comment\":{}}],[\"logout\",{\"_index\":63,\"name\":{\"72\":{}},\"comment\":{}}],[\"logoutresult\",{\"_index\":81,\"name\":{\"96\":{}},\"comment\":{}}],[\"mail\",{\"_index\":142,\"name\":{\"202\":{},\"206\":{}},\"comment\":{}}],[\"make_order_with_service\",{\"_index\":131,\"name\":{\"174\":{}},\"comment\":{}}],[\"make_order_without_service\",{\"_index\":132,\"name\":{\"175\":{}},\"comment\":{}}],[\"newtabhasbeenclosed\",{\"_index\":69,\"name\":{\"78\":{}},\"comment\":{}}],[\"none\",{\"_index\":35,\"name\":{\"36\":{}},\"comment\":{}}],[\"not_authorized\",{\"_index\":120,\"name\":{\"150\":{},\"185\":{}},\"comment\":{}}],[\"oauthlist\",{\"_index\":97,\"name\":{\"123\":{},\"165\":{},\"186\":{},\"196\":{}},\"comment\":{}}],[\"oauthlistinternalevents\",{\"_index\":146,\"name\":{\"210\":{}},\"comment\":{}}],[\"oauthlistparams\",{\"_index\":139,\"name\":{\"194\":{}},\"comment\":{}}],[\"oauthliststyles\",{\"_index\":145,\"name\":{\"207\":{}},\"comment\":{}}],[\"oauthname\",{\"_index\":140,\"name\":{\"200\":{}},\"comment\":{}}],[\"off\",{\"_index\":52,\"name\":{\"54\":{},\"118\":{},\"159\":{},\"193\":{}},\"comment\":{}}],[\"ok\",{\"_index\":141,\"name\":{\"201\":{},\"205\":{}},\"comment\":{}}],[\"on\",{\"_index\":51,\"name\":{\"53\":{},\"117\":{},\"158\":{},\"192\":{}},\"comment\":{}}],[\"onetap\",{\"_index\":92,\"name\":{\"111\":{}},\"comment\":{}}],[\"onetapcontentid\",{\"_index\":107,\"name\":{\"136\":{}},\"comment\":{}}],[\"onetapinternalevents\",{\"_index\":116,\"name\":{\"146\":{}},\"comment\":{}}],[\"onetapparams\",{\"_index\":93,\"name\":{\"119\":{}},\"comment\":{}}],[\"onetapskin\",{\"_index\":104,\"name\":{\"133\":{}},\"comment\":{}}],[\"onetapstyles\",{\"_index\":100,\"name\":{\"129\":{}},\"comment\":{}}],[\"open\",{\"_index\":110,\"name\":{\"140\":{}},\"comment\":{}}],[\"order\",{\"_index\":112,\"name\":{\"142\":{}},\"comment\":{}}],[\"participate\",{\"_index\":115,\"name\":{\"145\":{}},\"comment\":{}}],[\"place_order\",{\"_index\":113,\"name\":{\"143\":{}},\"comment\":{}}],[\"pol\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"primary\",{\"_index\":105,\"name\":{\"134\":{}},\"comment\":{}}],[\"prompt\",{\"_index\":33,\"name\":{\"34\":{}},\"comment\":{}}],[\"publicinfo\",{\"_index\":65,\"name\":{\"74\":{}},\"comment\":{}}],[\"publicinforesult\",{\"_index\":83,\"name\":{\"98\":{}},\"comment\":{}}],[\"redirect\",{\"_index\":28,\"name\":{\"28\":{},\"32\":{}},\"comment\":{}}],[\"redirecturl\",{\"_index\":41,\"name\":{\"42\":{}},\"comment\":{}}],[\"refresh_token\",{\"_index\":88,\"name\":{\"104\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":62,\"name\":{\"71\":{}},\"comment\":{}}],[\"registration_for_event\",{\"_index\":129,\"name\":{\"172\":{}},\"comment\":{}}],[\"render\",{\"_index\":47,\"name\":{\"49\":{},\"113\":{},\"154\":{},\"188\":{}},\"comment\":{}}],[\"resize\",{\"_index\":57,\"name\":{\"62\":{}},\"comment\":{}}],[\"response\",{\"_index\":82,\"name\":{\"97\":{}},\"comment\":{}}],[\"right\",{\"_index\":136,\"name\":{\"179\":{}},\"comment\":{}}],[\"rus\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"scheme\",{\"_index\":19,\"name\":{\"19\":{},\"65\":{},\"88\":{},\"127\":{},\"167\":{},\"198\":{}},\"comment\":{}}],[\"scope\",{\"_index\":45,\"name\":{\"46\":{},\"108\":{}},\"comment\":{}}],[\"secondary\",{\"_index\":106,\"name\":{\"135\":{}},\"comment\":{}}],[\"selectaccount\",{\"_index\":38,\"name\":{\"39\":{}},\"comment\":{}}],[\"show\",{\"_index\":49,\"name\":{\"51\":{},\"58\":{},\"115\":{},\"156\":{},\"190\":{}},\"comment\":{}}],[\"show_full_auth\",{\"_index\":118,\"name\":{\"148\":{},\"183\":{}},\"comment\":{}}],[\"showalternativelogin\",{\"_index\":94,\"name\":{\"120\":{},\"163\":{}},\"comment\":{}}],[\"sign_in\",{\"_index\":108,\"name\":{\"137\":{}},\"comment\":{}}],[\"sign_in_to_account\",{\"_index\":128,\"name\":{\"171\":{}},\"comment\":{}}],[\"sign_in_to_service\",{\"_index\":127,\"name\":{\"170\":{}},\"comment\":{}}],[\"sign_up\",{\"_index\":109,\"name\":{\"138\":{}},\"comment\":{}}],[\"skin\",{\"_index\":96,\"name\":{\"122\":{}},\"comment\":{}}],[\"spa\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"start_authorize\",{\"_index\":119,\"name\":{\"149\":{},\"184\":{}},\"comment\":{}}],[\"start_load\",{\"_index\":54,\"name\":{\"56\":{}},\"comment\":{}}],[\"state\",{\"_index\":42,\"name\":{\"43\":{},\"85\":{},\"93\":{},\"105\":{}},\"comment\":{}}],[\"statemismatch\",{\"_index\":71,\"name\":{\"80\":{}},\"comment\":{}}],[\"styles\",{\"_index\":95,\"name\":{\"121\":{},\"195\":{}},\"comment\":{}}],[\"submit_applications\",{\"_index\":130,\"name\":{\"173\":{}},\"comment\":{}}],[\"submit_request\",{\"_index\":114,\"name\":{\"144\":{}},\"comment\":{}}],[\"token_type\",{\"_index\":89,\"name\":{\"106\":{}},\"comment\":{}}],[\"tokenresult\",{\"_index\":85,\"name\":{\"100\":{}},\"comment\":{}}],[\"top\",{\"_index\":135,\"name\":{\"178\":{}},\"comment\":{}}],[\"turkey\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"type\",{\"_index\":78,\"name\":{\"92\":{}},\"comment\":{}}],[\"types\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"ukr\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"update\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"user\",{\"_index\":84,\"name\":{\"99\":{},\"110\":{}},\"comment\":{}}],[\"user_id\",{\"_index\":90,\"name\":{\"107\":{}},\"comment\":{}}],[\"userinfo\",{\"_index\":64,\"name\":{\"73\":{}},\"comment\":{}}],[\"userinforesult\",{\"_index\":91,\"name\":{\"109\":{}},\"comment\":{}}],[\"uzb\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"vk\",{\"_index\":143,\"name\":{\"203\":{}},\"comment\":{}}],[\"widget\",{\"_index\":46,\"name\":{\"47\":{}},\"comment\":{}}],[\"widgetevents\",{\"_index\":53,\"name\":{\"55\":{}},\"comment\":{}}],[\"widgetparams\",{\"_index\":58,\"name\":{\"63\":{}},\"comment\":{}}],[\"widgets/floatingonetap\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"widgets/oauthlist\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"widgets/onetap\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"width\",{\"_index\":101,\"name\":{\"130\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); | ||
window.searchData = JSON.parse("{\"rows\":[{\"kind\":2,\"name\":\"core/config\",\"url\":\"modules/core_config.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"core/widget\",\"url\":\"modules/core_widget.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"auth\",\"url\":\"modules/auth.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"widgets/oneTap\",\"url\":\"modules/widgets_oneTap.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"widgets/floatingOneTap\",\"url\":\"modules/widgets_floatingOneTap.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"widgets/oauthList\",\"url\":\"modules/widgets_oauthList.html\",\"classes\":\"\"},{\"kind\":2,\"name\":\"types\",\"url\":\"modules/types.html\",\"classes\":\"\"},{\"kind\":8,\"name\":\"Languages\",\"url\":\"enums/types.Languages.html\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":16,\"name\":\"RUS\",\"url\":\"enums/types.Languages.html#RUS\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"UKR\",\"url\":\"enums/types.Languages.html#UKR\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"ENG\",\"url\":\"enums/types.Languages.html#ENG\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"SPA\",\"url\":\"enums/types.Languages.html#SPA\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"GERMAN\",\"url\":\"enums/types.Languages.html#GERMAN\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"POL\",\"url\":\"enums/types.Languages.html#POL\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"FRA\",\"url\":\"enums/types.Languages.html#FRA\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"UZB\",\"url\":\"enums/types.Languages.html#UZB\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"TURKEY\",\"url\":\"enums/types.Languages.html#TURKEY\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"KAZ\",\"url\":\"enums/types.Languages.html#KAZ\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":16,\"name\":\"BEL\",\"url\":\"enums/types.Languages.html#BEL\",\"classes\":\"\",\"parent\":\"types.Languages\"},{\"kind\":8,\"name\":\"Scheme\",\"url\":\"enums/types.Scheme.html\",\"classes\":\"\",\"parent\":\"types\"},{\"kind\":16,\"name\":\"LIGHT\",\"url\":\"enums/types.Scheme.html#LIGHT\",\"classes\":\"\",\"parent\":\"types.Scheme\"},{\"kind\":16,\"name\":\"DARK\",\"url\":\"enums/types.Scheme.html#DARK\",\"classes\":\"\",\"parent\":\"types.Scheme\"},{\"kind\":128,\"name\":\"Config\",\"url\":\"classes/core_config.Config.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/core_config.Config.html#constructor\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":2048,\"name\":\"init\",\"url\":\"classes/core_config.Config.html#init\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/core_config.Config.html#update\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/core_config.Config.html#get\",\"classes\":\"\",\"parent\":\"core/config.Config\"},{\"kind\":8,\"name\":\"ConfigAuthMode\",\"url\":\"enums/core_config.ConfigAuthMode.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":16,\"name\":\"Redirect\",\"url\":\"enums/core_config.ConfigAuthMode.html#Redirect\",\"classes\":\"\",\"parent\":\"core/config.ConfigAuthMode\"},{\"kind\":16,\"name\":\"InNewTab\",\"url\":\"enums/core_config.ConfigAuthMode.html#InNewTab\",\"classes\":\"\",\"parent\":\"core/config.ConfigAuthMode\"},{\"kind\":16,\"name\":\"InNewWindow\",\"url\":\"enums/core_config.ConfigAuthMode.html#InNewWindow\",\"classes\":\"\",\"parent\":\"core/config.ConfigAuthMode\"},{\"kind\":8,\"name\":\"ConfigResponseMode\",\"url\":\"enums/core_config.ConfigResponseMode.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":16,\"name\":\"Redirect\",\"url\":\"enums/core_config.ConfigResponseMode.html#Redirect\",\"classes\":\"\",\"parent\":\"core/config.ConfigResponseMode\"},{\"kind\":16,\"name\":\"Callback\",\"url\":\"enums/core_config.ConfigResponseMode.html#Callback\",\"classes\":\"\",\"parent\":\"core/config.ConfigResponseMode\"},{\"kind\":8,\"name\":\"ConfigSource\",\"url\":\"enums/core_config.ConfigSource.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":16,\"name\":\"LOWCODE\",\"url\":\"enums/core_config.ConfigSource.html#LOWCODE\",\"classes\":\"\",\"parent\":\"core/config.ConfigSource\"},{\"kind\":8,\"name\":\"Prompt\",\"url\":\"enums/core_config.Prompt.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":16,\"name\":\"Default\",\"url\":\"enums/core_config.Prompt.html#Default\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"None\",\"url\":\"enums/core_config.Prompt.html#None\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"Login\",\"url\":\"enums/core_config.Prompt.html#Login\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"Consent\",\"url\":\"enums/core_config.Prompt.html#Consent\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":16,\"name\":\"SelectAccount\",\"url\":\"enums/core_config.Prompt.html#SelectAccount\",\"classes\":\"\",\"parent\":\"core/config.Prompt\"},{\"kind\":256,\"name\":\"ConfigData\",\"url\":\"interfaces/core_config.ConfigData.html\",\"classes\":\"\",\"parent\":\"core/config\"},{\"kind\":1024,\"name\":\"app\",\"url\":\"interfaces/core_config.ConfigData.html#app\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"redirectUrl\",\"url\":\"interfaces/core_config.ConfigData.html#redirectUrl\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/core_config.ConfigData.html#state\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"codeVerifier\",\"url\":\"interfaces/core_config.ConfigData.html#codeVerifier\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"codeChallenge\",\"url\":\"interfaces/core_config.ConfigData.html#codeChallenge\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":1024,\"name\":\"scope\",\"url\":\"interfaces/core_config.ConfigData.html#scope\",\"classes\":\"\",\"parent\":\"core/config.ConfigData\"},{\"kind\":128,\"name\":\"Widget\",\"url\":\"classes/core_widget.Widget.html\",\"classes\":\"\",\"parent\":\"core/widget\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/core_widget.Widget.html#constructor\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/core_widget.Widget.html#render\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/core_widget.Widget.html#close\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/core_widget.Widget.html#show\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/core_widget.Widget.html#hide\",\"classes\":\"\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/core_widget.Widget.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"core/widget.Widget\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/core_widget.Widget.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"core/widget.Widget\"},{\"kind\":8,\"name\":\"WidgetEvents\",\"url\":\"enums/core_widget.WidgetEvents.html\",\"classes\":\"\",\"parent\":\"core/widget\"},{\"kind\":16,\"name\":\"START_LOAD\",\"url\":\"enums/core_widget.WidgetEvents.html#START_LOAD\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"LOAD\",\"url\":\"enums/core_widget.WidgetEvents.html#LOAD\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"SHOW\",\"url\":\"enums/core_widget.WidgetEvents.html#SHOW\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"HIDE\",\"url\":\"enums/core_widget.WidgetEvents.html#HIDE\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"CLOSE\",\"url\":\"enums/core_widget.WidgetEvents.html#CLOSE\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"ERROR\",\"url\":\"enums/core_widget.WidgetEvents.html#ERROR\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":16,\"name\":\"RESIZE\",\"url\":\"enums/core_widget.WidgetEvents.html#RESIZE\",\"classes\":\"\",\"parent\":\"core/widget.WidgetEvents\"},{\"kind\":256,\"name\":\"WidgetParams\",\"url\":\"interfaces/core_widget.WidgetParams.html\",\"classes\":\"\",\"parent\":\"core/widget\"},{\"kind\":1024,\"name\":\"container\",\"url\":\"interfaces/core_widget.WidgetParams.html#container\",\"classes\":\"\",\"parent\":\"core/widget.WidgetParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/core_widget.WidgetParams.html#scheme\",\"classes\":\"\",\"parent\":\"core/widget.WidgetParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/core_widget.WidgetParams.html#lang\",\"classes\":\"\",\"parent\":\"core/widget.WidgetParams\"},{\"kind\":128,\"name\":\"Auth\",\"url\":\"classes/auth.Auth.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/auth.Auth.html#constructor\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"login\",\"url\":\"classes/auth.Auth.html#login\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"exchangeCode\",\"url\":\"classes/auth.Auth.html#exchangeCode\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"refreshToken\",\"url\":\"classes/auth.Auth.html#refreshToken\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"logout\",\"url\":\"classes/auth.Auth.html#logout\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"userInfo\",\"url\":\"classes/auth.Auth.html#userInfo\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":2048,\"name\":\"publicInfo\",\"url\":\"classes/auth.Auth.html#publicInfo\",\"classes\":\"\",\"parent\":\"auth.Auth\"},{\"kind\":8,\"name\":\"AuthErrorCode\",\"url\":\"enums/auth.AuthErrorCode.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":16,\"name\":\"EventNotSupported\",\"url\":\"enums/auth.AuthErrorCode.html#EventNotSupported\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"CannotCreateNewTab\",\"url\":\"enums/auth.AuthErrorCode.html#CannotCreateNewTab\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"NewTabHasBeenClosed\",\"url\":\"enums/auth.AuthErrorCode.html#NewTabHasBeenClosed\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"AuthorizationFailed\",\"url\":\"enums/auth.AuthErrorCode.html#AuthorizationFailed\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":16,\"name\":\"StateMismatch\",\"url\":\"enums/auth.AuthErrorCode.html#StateMismatch\",\"classes\":\"\",\"parent\":\"auth.AuthErrorCode\"},{\"kind\":256,\"name\":\"AuthError\",\"url\":\"interfaces/auth.AuthError.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/auth.AuthError.html#error\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"error_description\",\"url\":\"interfaces/auth.AuthError.html#error_description\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"error_uri\",\"url\":\"interfaces/auth.AuthError.html#error_uri\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/auth.AuthError.html#state\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/auth.AuthError.html#code\",\"classes\":\"\",\"parent\":\"auth.AuthError\"},{\"kind\":256,\"name\":\"AuthParams\",\"url\":\"interfaces/auth.AuthParams.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/auth.AuthParams.html#scheme\",\"classes\":\"\",\"parent\":\"auth.AuthParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/auth.AuthParams.html#lang\",\"classes\":\"\",\"parent\":\"auth.AuthParams\"},{\"kind\":256,\"name\":\"AuthResponse\",\"url\":\"interfaces/auth.AuthResponse.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/auth.AuthResponse.html#code\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/auth.AuthResponse.html#type\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/auth.AuthResponse.html#state\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"device_id\",\"url\":\"interfaces/auth.AuthResponse.html#device_id\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":1024,\"name\":\"expires_in\",\"url\":\"interfaces/auth.AuthResponse.html#expires_in\",\"classes\":\"\",\"parent\":\"auth.AuthResponse\"},{\"kind\":256,\"name\":\"LogoutResult\",\"url\":\"interfaces/auth.LogoutResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"response\",\"url\":\"interfaces/auth.LogoutResult.html#response\",\"classes\":\"\",\"parent\":\"auth.LogoutResult\"},{\"kind\":256,\"name\":\"PublicInfoResult\",\"url\":\"interfaces/auth.PublicInfoResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"interfaces/auth.PublicInfoResult.html#user\",\"classes\":\"\",\"parent\":\"auth.PublicInfoResult\"},{\"kind\":256,\"name\":\"TokenResult\",\"url\":\"interfaces/auth.TokenResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"access_token\",\"url\":\"interfaces/auth.TokenResult.html#access_token\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"expires_in\",\"url\":\"interfaces/auth.TokenResult.html#expires_in\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"id_token\",\"url\":\"interfaces/auth.TokenResult.html#id_token\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"refresh_token\",\"url\":\"interfaces/auth.TokenResult.html#refresh_token\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/auth.TokenResult.html#state\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"token_type\",\"url\":\"interfaces/auth.TokenResult.html#token_type\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"user_id\",\"url\":\"interfaces/auth.TokenResult.html#user_id\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":1024,\"name\":\"scope\",\"url\":\"interfaces/auth.TokenResult.html#scope\",\"classes\":\"\",\"parent\":\"auth.TokenResult\"},{\"kind\":256,\"name\":\"UserInfoResult\",\"url\":\"interfaces/auth.UserInfoResult.html\",\"classes\":\"\",\"parent\":\"auth\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"interfaces/auth.UserInfoResult.html#user\",\"classes\":\"\",\"parent\":\"auth.UserInfoResult\"},{\"kind\":128,\"name\":\"OneTap\",\"url\":\"classes/widgets_oneTap.OneTap.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/widgets_oneTap.OneTap.html#constructor\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/widgets_oneTap.OneTap.html#render\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/widgets_oneTap.OneTap.html#close\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/widgets_oneTap.OneTap.html#show\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/widgets_oneTap.OneTap.html#hide\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/widgets_oneTap.OneTap.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/widgets_oneTap.OneTap.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTap\"},{\"kind\":256,\"name\":\"OneTapParams\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":1024,\"name\":\"showAlternativeLogin\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#showAlternativeLogin\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"styles\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#styles\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"skin\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#skin\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"oauthList\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#oauthList\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"contentId\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#contentId\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"fastAuthEnabled\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#fastAuthEnabled\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"container\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#container\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#scheme\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/widgets_oneTap.OneTapParams.html#lang\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oneTap.OneTapParams\"},{\"kind\":256,\"name\":\"OneTapStyles\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html#width\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapStyles\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html#height\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapStyles\"},{\"kind\":1024,\"name\":\"borderRadius\",\"url\":\"interfaces/widgets_oneTap.OneTapStyles.html#borderRadius\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapStyles\"},{\"kind\":8,\"name\":\"OneTapSkin\",\"url\":\"enums/widgets_oneTap.OneTapSkin.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":16,\"name\":\"Primary\",\"url\":\"enums/widgets_oneTap.OneTapSkin.html#Primary\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapSkin\"},{\"kind\":16,\"name\":\"Secondary\",\"url\":\"enums/widgets_oneTap.OneTapSkin.html#Secondary\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapSkin\"},{\"kind\":8,\"name\":\"OneTapContentId\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":16,\"name\":\"SIGN_IN\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#SIGN_IN\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"SIGN_UP\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#SIGN_UP\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"GET\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#GET\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"OPEN\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#OPEN\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"CALCULATE\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#CALCULATE\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"ORDER\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#ORDER\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"PLACE_ORDER\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#PLACE_ORDER\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"SUBMIT_REQUEST\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#SUBMIT_REQUEST\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":16,\"name\":\"PARTICIPATE\",\"url\":\"enums/widgets_oneTap.OneTapContentId.html#PARTICIPATE\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapContentId\"},{\"kind\":8,\"name\":\"OneTapInternalEvents\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html\",\"classes\":\"\",\"parent\":\"widgets/oneTap\"},{\"kind\":16,\"name\":\"LOGIN_SUCCESS\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#LOGIN_SUCCESS\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"SHOW_FULL_AUTH\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#SHOW_FULL_AUTH\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"START_AUTHORIZE\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#START_AUTHORIZE\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"NOT_AUTHORIZED\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#NOT_AUTHORIZED\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":16,\"name\":\"AUTHENTICATION_INFO\",\"url\":\"enums/widgets_oneTap.OneTapInternalEvents.html#AUTHENTICATION_INFO\",\"classes\":\"\",\"parent\":\"widgets/oneTap.OneTapInternalEvents\"},{\"kind\":128,\"name\":\"FloatingOneTap\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#constructor\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#render\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#close\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#show\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#hide\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/widgets_floatingOneTap.FloatingOneTap.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTap\"},{\"kind\":256,\"name\":\"FloatingOneTapParams\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":1024,\"name\":\"indent\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#indent\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"contentId\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#contentId\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"showAlternativeLogin\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#showAlternativeLogin\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#appName\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"oauthList\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#oauthList\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"fastAuthEnabled\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#fastAuthEnabled\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#scheme\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapParams.html#lang\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapParams\"},{\"kind\":8,\"name\":\"FloatingOneTapContentId\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":16,\"name\":\"SIGN_IN_TO_SERVICE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#SIGN_IN_TO_SERVICE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"SIGN_IN_TO_ACCOUNT\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#SIGN_IN_TO_ACCOUNT\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"REGISTRATION_FOR_EVENT\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#REGISTRATION_FOR_EVENT\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"SUBMIT_APPLICATIONS\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#SUBMIT_APPLICATIONS\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"MAKE_ORDER_WITH_SERVICE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#MAKE_ORDER_WITH_SERVICE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"MAKE_ORDER_WITHOUT_SERVICE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#MAKE_ORDER_WITHOUT_SERVICE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":16,\"name\":\"FAST_REGISTRATION\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapContentId.html#FAST_REGISTRATION\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapContentId\"},{\"kind\":256,\"name\":\"FloatingOneTapIndent\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":1024,\"name\":\"top\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html#top\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapIndent\"},{\"kind\":1024,\"name\":\"right\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html#right\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapIndent\"},{\"kind\":1024,\"name\":\"bottom\",\"url\":\"interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html#bottom\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapIndent\"},{\"kind\":8,\"name\":\"FloatingOneTapInternalEvents\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap\"},{\"kind\":16,\"name\":\"LOGIN_SUCCESS\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#LOGIN_SUCCESS\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":16,\"name\":\"SHOW_FULL_AUTH\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#SHOW_FULL_AUTH\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":16,\"name\":\"START_AUTHORIZE\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#START_AUTHORIZE\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":16,\"name\":\"NOT_AUTHORIZED\",\"url\":\"enums/widgets_floatingOneTap.FloatingOneTapInternalEvents.html#NOT_AUTHORIZED\",\"classes\":\"\",\"parent\":\"widgets/floatingOneTap.FloatingOneTapInternalEvents\"},{\"kind\":128,\"name\":\"OAuthList\",\"url\":\"classes/widgets_oauthList.OAuthList.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/widgets_oauthList.OAuthList.html#constructor\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/widgets_oauthList.OAuthList.html#render\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/widgets_oauthList.OAuthList.html#close\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"show\",\"url\":\"classes/widgets_oauthList.OAuthList.html#show\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"hide\",\"url\":\"classes/widgets_oauthList.OAuthList.html#hide\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"on\",\"url\":\"classes/widgets_oauthList.OAuthList.html#on\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":2048,\"name\":\"off\",\"url\":\"classes/widgets_oauthList.OAuthList.html#off\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthList\"},{\"kind\":256,\"name\":\"OAuthListParams\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":1024,\"name\":\"styles\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#styles\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"oauthList\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#oauthList\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"container\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#container\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"scheme\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#scheme\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":1024,\"name\":\"lang\",\"url\":\"interfaces/widgets_oauthList.OAuthListParams.html#lang\",\"classes\":\"tsd-is-inherited\",\"parent\":\"widgets/oauthList.OAuthListParams\"},{\"kind\":8,\"name\":\"OAuthName\",\"url\":\"enums/widgets_oauthList.OAuthName.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":16,\"name\":\"OK\",\"url\":\"enums/widgets_oauthList.OAuthName.html#OK\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthName\"},{\"kind\":16,\"name\":\"MAIL\",\"url\":\"enums/widgets_oauthList.OAuthName.html#MAIL\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthName\"},{\"kind\":16,\"name\":\"VK\",\"url\":\"enums/widgets_oauthList.OAuthName.html#VK\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthName\"},{\"kind\":8,\"name\":\"ExternalOAuthName\",\"url\":\"enums/widgets_oauthList.ExternalOAuthName.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":16,\"name\":\"OK\",\"url\":\"enums/widgets_oauthList.ExternalOAuthName.html#OK\",\"classes\":\"\",\"parent\":\"widgets/oauthList.ExternalOAuthName\"},{\"kind\":16,\"name\":\"MAIL\",\"url\":\"enums/widgets_oauthList.ExternalOAuthName.html#MAIL\",\"classes\":\"\",\"parent\":\"widgets/oauthList.ExternalOAuthName\"},{\"kind\":256,\"name\":\"OAuthListStyles\",\"url\":\"interfaces/widgets_oauthList.OAuthListStyles.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/widgets_oauthList.OAuthListStyles.html#height\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListStyles\"},{\"kind\":1024,\"name\":\"borderRadius\",\"url\":\"interfaces/widgets_oauthList.OAuthListStyles.html#borderRadius\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListStyles\"},{\"kind\":8,\"name\":\"OAuthListInternalEvents\",\"url\":\"enums/widgets_oauthList.OAuthListInternalEvents.html\",\"classes\":\"\",\"parent\":\"widgets/oauthList\"},{\"kind\":16,\"name\":\"LOGIN_SUCCESS\",\"url\":\"enums/widgets_oauthList.OAuthListInternalEvents.html#LOGIN_SUCCESS\",\"classes\":\"\",\"parent\":\"widgets/oauthList.OAuthListInternalEvents\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,49.652]],[\"comment/0\",[]],[\"name/1\",[1,49.652]],[\"comment/1\",[]],[\"name/2\",[2,44.543]],[\"comment/2\",[]],[\"name/3\",[3,49.652]],[\"comment/3\",[]],[\"name/4\",[4,49.652]],[\"comment/4\",[]],[\"name/5\",[5,49.652]],[\"comment/5\",[]],[\"name/6\",[6,49.652]],[\"comment/6\",[]],[\"name/7\",[7,49.652]],[\"comment/7\",[]],[\"name/8\",[8,49.652]],[\"comment/8\",[]],[\"name/9\",[9,49.652]],[\"comment/9\",[]],[\"name/10\",[10,49.652]],[\"comment/10\",[]],[\"name/11\",[11,49.652]],[\"comment/11\",[]],[\"name/12\",[12,49.652]],[\"comment/12\",[]],[\"name/13\",[13,49.652]],[\"comment/13\",[]],[\"name/14\",[14,49.652]],[\"comment/14\",[]],[\"name/15\",[15,49.652]],[\"comment/15\",[]],[\"name/16\",[16,49.652]],[\"comment/16\",[]],[\"name/17\",[17,49.652]],[\"comment/17\",[]],[\"name/18\",[18,49.652]],[\"comment/18\",[]],[\"name/19\",[19,34.988]],[\"comment/19\",[]],[\"name/20\",[20,49.652]],[\"comment/20\",[]],[\"name/21\",[21,49.652]],[\"comment/21\",[]],[\"name/22\",[22,49.652]],[\"comment/22\",[]],[\"name/23\",[23,34.988]],[\"comment/23\",[]],[\"name/24\",[24,49.652]],[\"comment/24\",[]],[\"name/25\",[25,49.652]],[\"comment/25\",[]],[\"name/26\",[26,44.543]],[\"comment/26\",[]],[\"name/27\",[27,49.652]],[\"comment/27\",[]],[\"name/28\",[28,44.543]],[\"comment/28\",[]],[\"name/29\",[29,49.652]],[\"comment/29\",[]],[\"name/30\",[30,49.652]],[\"comment/30\",[]],[\"name/31\",[31,49.652]],[\"comment/31\",[]],[\"name/32\",[28,44.543]],[\"comment/32\",[]],[\"name/33\",[32,49.652]],[\"comment/33\",[]],[\"name/34\",[33,49.652]],[\"comment/34\",[]],[\"name/35\",[34,49.652]],[\"comment/35\",[]],[\"name/36\",[35,49.652]],[\"comment/36\",[]],[\"name/37\",[36,49.652]],[\"comment/37\",[]],[\"name/38\",[37,49.652]],[\"comment/38\",[]],[\"name/39\",[38,44.543]],[\"comment/39\",[]],[\"name/40\",[39,49.652]],[\"comment/40\",[]],[\"name/41\",[40,49.652]],[\"comment/41\",[]],[\"name/42\",[41,49.652]],[\"comment/42\",[]],[\"name/43\",[42,49.652]],[\"comment/43\",[]],[\"name/44\",[43,49.652]],[\"comment/44\",[]],[\"name/45\",[44,38.666]],[\"comment/45\",[]],[\"name/46\",[45,49.652]],[\"comment/46\",[]],[\"name/47\",[46,49.652]],[\"comment/47\",[]],[\"name/48\",[47,44.543]],[\"comment/48\",[]],[\"name/49\",[48,49.652]],[\"comment/49\",[]],[\"name/50\",[23,34.988]],[\"comment/50\",[]],[\"name/51\",[49,38.666]],[\"comment/51\",[]],[\"name/52\",[50,36.659]],[\"comment/52\",[]],[\"name/53\",[51,36.659]],[\"comment/53\",[]],[\"name/54\",[52,36.659]],[\"comment/54\",[]],[\"name/55\",[53,38.666]],[\"comment/55\",[]],[\"name/56\",[54,38.666]],[\"comment/56\",[]],[\"name/57\",[55,49.652]],[\"comment/57\",[]],[\"name/58\",[56,49.652]],[\"comment/58\",[]],[\"name/59\",[57,49.652]],[\"comment/59\",[]],[\"name/60\",[51,36.659]],[\"comment/60\",[]],[\"name/61\",[52,36.659]],[\"comment/61\",[]],[\"name/62\",[50,36.659]],[\"comment/62\",[]],[\"name/63\",[58,44.543]],[\"comment/63\",[]],[\"name/64\",[59,49.652]],[\"comment/64\",[]],[\"name/65\",[60,49.652]],[\"comment/65\",[]],[\"name/66\",[61,41.179]],[\"comment/66\",[]],[\"name/67\",[19,34.988]],[\"comment/67\",[]],[\"name/68\",[62,36.659]],[\"comment/68\",[]],[\"name/69\",[2,44.543]],[\"comment/69\",[]],[\"name/70\",[23,34.988]],[\"comment/70\",[]],[\"name/71\",[38,44.543]],[\"comment/71\",[]],[\"name/72\",[63,49.652]],[\"comment/72\",[]],[\"name/73\",[64,49.652]],[\"comment/73\",[]],[\"name/74\",[65,49.652]],[\"comment/74\",[]],[\"name/75\",[66,49.652]],[\"comment/75\",[]],[\"name/76\",[67,49.652]],[\"comment/76\",[]],[\"name/77\",[68,49.652]],[\"comment/77\",[]],[\"name/78\",[69,49.652]],[\"comment/78\",[]],[\"name/79\",[70,49.652]],[\"comment/79\",[]],[\"name/80\",[71,49.652]],[\"comment/80\",[]],[\"name/81\",[72,49.652]],[\"comment/81\",[]],[\"name/82\",[73,49.652]],[\"comment/82\",[]],[\"name/83\",[74,49.652]],[\"comment/83\",[]],[\"name/84\",[58,44.543]],[\"comment/84\",[]],[\"name/85\",[75,49.652]],[\"comment/85\",[]],[\"name/86\",[76,49.652]],[\"comment/86\",[]],[\"name/87\",[44,38.666]],[\"comment/87\",[]],[\"name/88\",[77,44.543]],[\"comment/88\",[]],[\"name/89\",[78,49.652]],[\"comment/89\",[]],[\"name/90\",[19,34.988]],[\"comment/90\",[]],[\"name/91\",[62,36.659]],[\"comment/91\",[]],[\"name/92\",[79,49.652]],[\"comment/92\",[]],[\"name/93\",[77,44.543]],[\"comment/93\",[]],[\"name/94\",[80,49.652]],[\"comment/94\",[]],[\"name/95\",[44,38.666]],[\"comment/95\",[]],[\"name/96\",[81,49.652]],[\"comment/96\",[]],[\"name/97\",[82,44.543]],[\"comment/97\",[]],[\"name/98\",[83,49.652]],[\"comment/98\",[]],[\"name/99\",[84,49.652]],[\"comment/99\",[]],[\"name/100\",[85,49.652]],[\"comment/100\",[]],[\"name/101\",[86,44.543]],[\"comment/101\",[]],[\"name/102\",[87,49.652]],[\"comment/102\",[]],[\"name/103\",[88,49.652]],[\"comment/103\",[]],[\"name/104\",[82,44.543]],[\"comment/104\",[]],[\"name/105\",[89,49.652]],[\"comment/105\",[]],[\"name/106\",[90,49.652]],[\"comment/106\",[]],[\"name/107\",[44,38.666]],[\"comment/107\",[]],[\"name/108\",[91,49.652]],[\"comment/108\",[]],[\"name/109\",[92,49.652]],[\"comment/109\",[]],[\"name/110\",[47,44.543]],[\"comment/110\",[]],[\"name/111\",[93,49.652]],[\"comment/111\",[]],[\"name/112\",[86,44.543]],[\"comment/112\",[]],[\"name/113\",[94,49.652]],[\"comment/113\",[]],[\"name/114\",[23,34.988]],[\"comment/114\",[]],[\"name/115\",[49,38.666]],[\"comment/115\",[]],[\"name/116\",[50,36.659]],[\"comment/116\",[]],[\"name/117\",[51,36.659]],[\"comment/117\",[]],[\"name/118\",[52,36.659]],[\"comment/118\",[]],[\"name/119\",[53,38.666]],[\"comment/119\",[]],[\"name/120\",[54,38.666]],[\"comment/120\",[]],[\"name/121\",[95,49.652]],[\"comment/121\",[]],[\"name/122\",[96,44.543]],[\"comment/122\",[]],[\"name/123\",[97,44.543]],[\"comment/123\",[]],[\"name/124\",[98,49.652]],[\"comment/124\",[]],[\"name/125\",[99,38.666]],[\"comment/125\",[]],[\"name/126\",[100,44.543]],[\"comment/126\",[]],[\"name/127\",[101,44.543]],[\"comment/127\",[]],[\"name/128\",[61,41.179]],[\"comment/128\",[]],[\"name/129\",[19,34.988]],[\"comment/129\",[]],[\"name/130\",[62,36.659]],[\"comment/130\",[]],[\"name/131\",[102,49.652]],[\"comment/131\",[]],[\"name/132\",[103,49.652]],[\"comment/132\",[]],[\"name/133\",[104,44.543]],[\"comment/133\",[]],[\"name/134\",[105,44.543]],[\"comment/134\",[]],[\"name/135\",[106,49.652]],[\"comment/135\",[]],[\"name/136\",[107,49.652]],[\"comment/136\",[]],[\"name/137\",[108,49.652]],[\"comment/137\",[]],[\"name/138\",[109,49.652]],[\"comment/138\",[]],[\"name/139\",[110,49.652]],[\"comment/139\",[]],[\"name/140\",[111,49.652]],[\"comment/140\",[]],[\"name/141\",[26,44.543]],[\"comment/141\",[]],[\"name/142\",[112,49.652]],[\"comment/142\",[]],[\"name/143\",[113,49.652]],[\"comment/143\",[]],[\"name/144\",[114,49.652]],[\"comment/144\",[]],[\"name/145\",[115,49.652]],[\"comment/145\",[]],[\"name/146\",[116,49.652]],[\"comment/146\",[]],[\"name/147\",[117,49.652]],[\"comment/147\",[]],[\"name/148\",[118,49.652]],[\"comment/148\",[]],[\"name/149\",[119,41.179]],[\"comment/149\",[]],[\"name/150\",[120,44.543]],[\"comment/150\",[]],[\"name/151\",[121,44.543]],[\"comment/151\",[]],[\"name/152\",[122,44.543]],[\"comment/152\",[]],[\"name/153\",[123,49.652]],[\"comment/153\",[]],[\"name/154\",[124,49.652]],[\"comment/154\",[]],[\"name/155\",[23,34.988]],[\"comment/155\",[]],[\"name/156\",[49,38.666]],[\"comment/156\",[]],[\"name/157\",[50,36.659]],[\"comment/157\",[]],[\"name/158\",[51,36.659]],[\"comment/158\",[]],[\"name/159\",[52,36.659]],[\"comment/159\",[]],[\"name/160\",[53,38.666]],[\"comment/160\",[]],[\"name/161\",[54,38.666]],[\"comment/161\",[]],[\"name/162\",[125,49.652]],[\"comment/162\",[]],[\"name/163\",[126,49.652]],[\"comment/163\",[]],[\"name/164\",[100,44.543]],[\"comment/164\",[]],[\"name/165\",[96,44.543]],[\"comment/165\",[]],[\"name/166\",[127,49.652]],[\"comment/166\",[]],[\"name/167\",[99,38.666]],[\"comment/167\",[]],[\"name/168\",[101,44.543]],[\"comment/168\",[]],[\"name/169\",[19,34.988]],[\"comment/169\",[]],[\"name/170\",[62,36.659]],[\"comment/170\",[]],[\"name/171\",[128,49.652]],[\"comment/171\",[]],[\"name/172\",[129,49.652]],[\"comment/172\",[]],[\"name/173\",[130,49.652]],[\"comment/173\",[]],[\"name/174\",[131,49.652]],[\"comment/174\",[]],[\"name/175\",[132,49.652]],[\"comment/175\",[]],[\"name/176\",[133,49.652]],[\"comment/176\",[]],[\"name/177\",[134,49.652]],[\"comment/177\",[]],[\"name/178\",[135,49.652]],[\"comment/178\",[]],[\"name/179\",[136,49.652]],[\"comment/179\",[]],[\"name/180\",[137,49.652]],[\"comment/180\",[]],[\"name/181\",[138,49.652]],[\"comment/181\",[]],[\"name/182\",[139,49.652]],[\"comment/182\",[]],[\"name/183\",[140,49.652]],[\"comment/183\",[]],[\"name/184\",[119,41.179]],[\"comment/184\",[]],[\"name/185\",[120,44.543]],[\"comment/185\",[]],[\"name/186\",[121,44.543]],[\"comment/186\",[]],[\"name/187\",[122,44.543]],[\"comment/187\",[]],[\"name/188\",[99,38.666]],[\"comment/188\",[]],[\"name/189\",[23,34.988]],[\"comment/189\",[]],[\"name/190\",[49,38.666]],[\"comment/190\",[]],[\"name/191\",[50,36.659]],[\"comment/191\",[]],[\"name/192\",[51,36.659]],[\"comment/192\",[]],[\"name/193\",[52,36.659]],[\"comment/193\",[]],[\"name/194\",[53,38.666]],[\"comment/194\",[]],[\"name/195\",[54,38.666]],[\"comment/195\",[]],[\"name/196\",[141,49.652]],[\"comment/196\",[]],[\"name/197\",[97,44.543]],[\"comment/197\",[]],[\"name/198\",[99,38.666]],[\"comment/198\",[]],[\"name/199\",[61,41.179]],[\"comment/199\",[]],[\"name/200\",[19,34.988]],[\"comment/200\",[]],[\"name/201\",[62,36.659]],[\"comment/201\",[]],[\"name/202\",[142,49.652]],[\"comment/202\",[]],[\"name/203\",[143,44.543]],[\"comment/203\",[]],[\"name/204\",[144,44.543]],[\"comment/204\",[]],[\"name/205\",[145,49.652]],[\"comment/205\",[]],[\"name/206\",[146,49.652]],[\"comment/206\",[]],[\"name/207\",[143,44.543]],[\"comment/207\",[]],[\"name/208\",[144,44.543]],[\"comment/208\",[]],[\"name/209\",[147,49.652]],[\"comment/209\",[]],[\"name/210\",[104,44.543]],[\"comment/210\",[]],[\"name/211\",[105,44.543]],[\"comment/211\",[]],[\"name/212\",[148,49.652]],[\"comment/212\",[]],[\"name/213\",[119,41.179]],[\"comment/213\",[]]],\"invertedIndex\":[[\"access_token\",{\"_index\":88,\"name\":{\"103\":{}},\"comment\":{}}],[\"app\",{\"_index\":42,\"name\":{\"43\":{}},\"comment\":{}}],[\"appname\",{\"_index\":127,\"name\":{\"166\":{}},\"comment\":{}}],[\"auth\",{\"_index\":2,\"name\":{\"2\":{},\"69\":{}},\"comment\":{}}],[\"authentication_info\",{\"_index\":123,\"name\":{\"153\":{}},\"comment\":{}}],[\"autherror\",{\"_index\":74,\"name\":{\"83\":{}},\"comment\":{}}],[\"autherrorcode\",{\"_index\":68,\"name\":{\"77\":{}},\"comment\":{}}],[\"authorizationfailed\",{\"_index\":72,\"name\":{\"81\":{}},\"comment\":{}}],[\"authparams\",{\"_index\":78,\"name\":{\"89\":{}},\"comment\":{}}],[\"authresponse\",{\"_index\":79,\"name\":{\"92\":{}},\"comment\":{}}],[\"bel\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"borderradius\",{\"_index\":105,\"name\":{\"134\":{},\"211\":{}},\"comment\":{}}],[\"bottom\",{\"_index\":139,\"name\":{\"182\":{}},\"comment\":{}}],[\"calculate\",{\"_index\":113,\"name\":{\"143\":{}},\"comment\":{}}],[\"callback\",{\"_index\":32,\"name\":{\"33\":{}},\"comment\":{}}],[\"cannotcreatenewtab\",{\"_index\":70,\"name\":{\"79\":{}},\"comment\":{}}],[\"close\",{\"_index\":50,\"name\":{\"52\":{},\"62\":{},\"116\":{},\"157\":{},\"191\":{}},\"comment\":{}}],[\"code\",{\"_index\":77,\"name\":{\"88\":{},\"93\":{}},\"comment\":{}}],[\"codechallenge\",{\"_index\":46,\"name\":{\"47\":{}},\"comment\":{}}],[\"codeverifier\",{\"_index\":45,\"name\":{\"46\":{}},\"comment\":{}}],[\"config\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"configauthmode\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"configdata\",{\"_index\":41,\"name\":{\"42\":{}},\"comment\":{}}],[\"configresponsemode\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"configsource\",{\"_index\":33,\"name\":{\"34\":{}},\"comment\":{}}],[\"consent\",{\"_index\":39,\"name\":{\"40\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":23,\"name\":{\"23\":{},\"50\":{},\"70\":{},\"114\":{},\"155\":{},\"189\":{}},\"comment\":{}}],[\"container\",{\"_index\":61,\"name\":{\"66\":{},\"128\":{},\"199\":{}},\"comment\":{}}],[\"contentid\",{\"_index\":100,\"name\":{\"126\":{},\"164\":{}},\"comment\":{}}],[\"core/config\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"core/widget\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"dark\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"default\",{\"_index\":36,\"name\":{\"37\":{}},\"comment\":{}}],[\"device_id\",{\"_index\":81,\"name\":{\"96\":{}},\"comment\":{}}],[\"eng\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"error\",{\"_index\":58,\"name\":{\"63\":{},\"84\":{}},\"comment\":{}}],[\"error_description\",{\"_index\":75,\"name\":{\"85\":{}},\"comment\":{}}],[\"error_uri\",{\"_index\":76,\"name\":{\"86\":{}},\"comment\":{}}],[\"eventnotsupported\",{\"_index\":69,\"name\":{\"78\":{}},\"comment\":{}}],[\"exchangecode\",{\"_index\":63,\"name\":{\"72\":{}},\"comment\":{}}],[\"expires_in\",{\"_index\":82,\"name\":{\"97\":{},\"104\":{}},\"comment\":{}}],[\"externaloauthname\",{\"_index\":146,\"name\":{\"206\":{}},\"comment\":{}}],[\"fast_registration\",{\"_index\":135,\"name\":{\"178\":{}},\"comment\":{}}],[\"fastauthenabled\",{\"_index\":101,\"name\":{\"127\":{},\"168\":{}},\"comment\":{}}],[\"floatingonetap\",{\"_index\":124,\"name\":{\"154\":{}},\"comment\":{}}],[\"floatingonetapcontentid\",{\"_index\":128,\"name\":{\"171\":{}},\"comment\":{}}],[\"floatingonetapindent\",{\"_index\":136,\"name\":{\"179\":{}},\"comment\":{}}],[\"floatingonetapinternalevents\",{\"_index\":140,\"name\":{\"183\":{}},\"comment\":{}}],[\"floatingonetapparams\",{\"_index\":125,\"name\":{\"162\":{}},\"comment\":{}}],[\"fra\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"german\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"get\",{\"_index\":26,\"name\":{\"26\":{},\"141\":{}},\"comment\":{}}],[\"height\",{\"_index\":104,\"name\":{\"133\":{},\"210\":{}},\"comment\":{}}],[\"hide\",{\"_index\":52,\"name\":{\"54\":{},\"61\":{},\"118\":{},\"159\":{},\"193\":{}},\"comment\":{}}],[\"id_token\",{\"_index\":89,\"name\":{\"105\":{}},\"comment\":{}}],[\"indent\",{\"_index\":126,\"name\":{\"163\":{}},\"comment\":{}}],[\"init\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"innewtab\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"innewwindow\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"kaz\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"lang\",{\"_index\":62,\"name\":{\"68\":{},\"91\":{},\"130\":{},\"170\":{},\"201\":{}},\"comment\":{}}],[\"languages\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"light\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"load\",{\"_index\":57,\"name\":{\"59\":{}},\"comment\":{}}],[\"login\",{\"_index\":38,\"name\":{\"39\":{},\"71\":{}},\"comment\":{}}],[\"login_success\",{\"_index\":119,\"name\":{\"149\":{},\"184\":{},\"213\":{}},\"comment\":{}}],[\"logout\",{\"_index\":65,\"name\":{\"74\":{}},\"comment\":{}}],[\"logoutresult\",{\"_index\":83,\"name\":{\"98\":{}},\"comment\":{}}],[\"lowcode\",{\"_index\":34,\"name\":{\"35\":{}},\"comment\":{}}],[\"mail\",{\"_index\":144,\"name\":{\"204\":{},\"208\":{}},\"comment\":{}}],[\"make_order_with_service\",{\"_index\":133,\"name\":{\"176\":{}},\"comment\":{}}],[\"make_order_without_service\",{\"_index\":134,\"name\":{\"177\":{}},\"comment\":{}}],[\"newtabhasbeenclosed\",{\"_index\":71,\"name\":{\"80\":{}},\"comment\":{}}],[\"none\",{\"_index\":37,\"name\":{\"38\":{}},\"comment\":{}}],[\"not_authorized\",{\"_index\":122,\"name\":{\"152\":{},\"187\":{}},\"comment\":{}}],[\"oauthlist\",{\"_index\":99,\"name\":{\"125\":{},\"167\":{},\"188\":{},\"198\":{}},\"comment\":{}}],[\"oauthlistinternalevents\",{\"_index\":148,\"name\":{\"212\":{}},\"comment\":{}}],[\"oauthlistparams\",{\"_index\":141,\"name\":{\"196\":{}},\"comment\":{}}],[\"oauthliststyles\",{\"_index\":147,\"name\":{\"209\":{}},\"comment\":{}}],[\"oauthname\",{\"_index\":142,\"name\":{\"202\":{}},\"comment\":{}}],[\"off\",{\"_index\":54,\"name\":{\"56\":{},\"120\":{},\"161\":{},\"195\":{}},\"comment\":{}}],[\"ok\",{\"_index\":143,\"name\":{\"203\":{},\"207\":{}},\"comment\":{}}],[\"on\",{\"_index\":53,\"name\":{\"55\":{},\"119\":{},\"160\":{},\"194\":{}},\"comment\":{}}],[\"onetap\",{\"_index\":94,\"name\":{\"113\":{}},\"comment\":{}}],[\"onetapcontentid\",{\"_index\":109,\"name\":{\"138\":{}},\"comment\":{}}],[\"onetapinternalevents\",{\"_index\":118,\"name\":{\"148\":{}},\"comment\":{}}],[\"onetapparams\",{\"_index\":95,\"name\":{\"121\":{}},\"comment\":{}}],[\"onetapskin\",{\"_index\":106,\"name\":{\"135\":{}},\"comment\":{}}],[\"onetapstyles\",{\"_index\":102,\"name\":{\"131\":{}},\"comment\":{}}],[\"open\",{\"_index\":112,\"name\":{\"142\":{}},\"comment\":{}}],[\"order\",{\"_index\":114,\"name\":{\"144\":{}},\"comment\":{}}],[\"participate\",{\"_index\":117,\"name\":{\"147\":{}},\"comment\":{}}],[\"place_order\",{\"_index\":115,\"name\":{\"145\":{}},\"comment\":{}}],[\"pol\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"primary\",{\"_index\":107,\"name\":{\"136\":{}},\"comment\":{}}],[\"prompt\",{\"_index\":35,\"name\":{\"36\":{}},\"comment\":{}}],[\"publicinfo\",{\"_index\":67,\"name\":{\"76\":{}},\"comment\":{}}],[\"publicinforesult\",{\"_index\":85,\"name\":{\"100\":{}},\"comment\":{}}],[\"redirect\",{\"_index\":28,\"name\":{\"28\":{},\"32\":{}},\"comment\":{}}],[\"redirecturl\",{\"_index\":43,\"name\":{\"44\":{}},\"comment\":{}}],[\"refresh_token\",{\"_index\":90,\"name\":{\"106\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":64,\"name\":{\"73\":{}},\"comment\":{}}],[\"registration_for_event\",{\"_index\":131,\"name\":{\"174\":{}},\"comment\":{}}],[\"render\",{\"_index\":49,\"name\":{\"51\":{},\"115\":{},\"156\":{},\"190\":{}},\"comment\":{}}],[\"resize\",{\"_index\":59,\"name\":{\"64\":{}},\"comment\":{}}],[\"response\",{\"_index\":84,\"name\":{\"99\":{}},\"comment\":{}}],[\"right\",{\"_index\":138,\"name\":{\"181\":{}},\"comment\":{}}],[\"rus\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"scheme\",{\"_index\":19,\"name\":{\"19\":{},\"67\":{},\"90\":{},\"129\":{},\"169\":{},\"200\":{}},\"comment\":{}}],[\"scope\",{\"_index\":47,\"name\":{\"48\":{},\"110\":{}},\"comment\":{}}],[\"secondary\",{\"_index\":108,\"name\":{\"137\":{}},\"comment\":{}}],[\"selectaccount\",{\"_index\":40,\"name\":{\"41\":{}},\"comment\":{}}],[\"show\",{\"_index\":51,\"name\":{\"53\":{},\"60\":{},\"117\":{},\"158\":{},\"192\":{}},\"comment\":{}}],[\"show_full_auth\",{\"_index\":120,\"name\":{\"150\":{},\"185\":{}},\"comment\":{}}],[\"showalternativelogin\",{\"_index\":96,\"name\":{\"122\":{},\"165\":{}},\"comment\":{}}],[\"sign_in\",{\"_index\":110,\"name\":{\"139\":{}},\"comment\":{}}],[\"sign_in_to_account\",{\"_index\":130,\"name\":{\"173\":{}},\"comment\":{}}],[\"sign_in_to_service\",{\"_index\":129,\"name\":{\"172\":{}},\"comment\":{}}],[\"sign_up\",{\"_index\":111,\"name\":{\"140\":{}},\"comment\":{}}],[\"skin\",{\"_index\":98,\"name\":{\"124\":{}},\"comment\":{}}],[\"spa\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"start_authorize\",{\"_index\":121,\"name\":{\"151\":{},\"186\":{}},\"comment\":{}}],[\"start_load\",{\"_index\":56,\"name\":{\"58\":{}},\"comment\":{}}],[\"state\",{\"_index\":44,\"name\":{\"45\":{},\"87\":{},\"95\":{},\"107\":{}},\"comment\":{}}],[\"statemismatch\",{\"_index\":73,\"name\":{\"82\":{}},\"comment\":{}}],[\"styles\",{\"_index\":97,\"name\":{\"123\":{},\"197\":{}},\"comment\":{}}],[\"submit_applications\",{\"_index\":132,\"name\":{\"175\":{}},\"comment\":{}}],[\"submit_request\",{\"_index\":116,\"name\":{\"146\":{}},\"comment\":{}}],[\"token_type\",{\"_index\":91,\"name\":{\"108\":{}},\"comment\":{}}],[\"tokenresult\",{\"_index\":87,\"name\":{\"102\":{}},\"comment\":{}}],[\"top\",{\"_index\":137,\"name\":{\"180\":{}},\"comment\":{}}],[\"turkey\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"type\",{\"_index\":80,\"name\":{\"94\":{}},\"comment\":{}}],[\"types\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"ukr\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"update\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"user\",{\"_index\":86,\"name\":{\"101\":{},\"112\":{}},\"comment\":{}}],[\"user_id\",{\"_index\":92,\"name\":{\"109\":{}},\"comment\":{}}],[\"userinfo\",{\"_index\":66,\"name\":{\"75\":{}},\"comment\":{}}],[\"userinforesult\",{\"_index\":93,\"name\":{\"111\":{}},\"comment\":{}}],[\"uzb\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"vk\",{\"_index\":145,\"name\":{\"205\":{}},\"comment\":{}}],[\"widget\",{\"_index\":48,\"name\":{\"49\":{}},\"comment\":{}}],[\"widgetevents\",{\"_index\":55,\"name\":{\"57\":{}},\"comment\":{}}],[\"widgetparams\",{\"_index\":60,\"name\":{\"65\":{}},\"comment\":{}}],[\"widgets/floatingonetap\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"widgets/oauthlist\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"widgets/onetap\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"width\",{\"_index\":103,\"name\":{\"132\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); |
{ | ||
"name": "@vkid/sdk", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"description": "VK ID Web SDK", | ||
@@ -5,0 +5,0 @@ "main": "dist-sdk/cjs/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2080380
284
13920