Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vkid/sdk

Package Overview
Dependencies
Maintainers
4
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vkid/sdk - npm Package Compare versions

Comparing version 2.0.0-alpha.2 to 2.0.0-alpha.ext-id

2

dist-sdk/cjs/auth/auth.js

@@ -132,2 +132,4 @@ 'use strict';

return _this.dataService.value.then(function(payload) {
cookie.setExtIdCookie(payload.ext_id);
delete payload.ext_id;
// Сбрасываем после проверки

@@ -134,0 +136,0 @@ cookie.clearStateCookie();

4

dist-sdk/cjs/auth/authDataService.js

@@ -105,3 +105,5 @@ 'use strict';

state: payload.state,
device_id: payload.device_id
device_id: payload.device_id,
expires_in: payload.expires_in,
ext_id: payload.ext_id
});

@@ -108,0 +110,0 @@ });

'use strict';
// @ts-ignore-next-line пробрасываем версию из package.json в rollup.config
var VERSION = "2.0.0-alpha.2";
var VERSION = "2.0.0-alpha.ext-id";
// @ts-ignore-next-line пробрасываем тип сборки из rollup.config

@@ -6,0 +6,0 @@ var DOMAIN = "vk.com";

@@ -124,2 +124,20 @@ 'use strict';

};
var COOKIE_EXPIRES_TIME_1_YEAR = 31536000000;
function setExtIdCookie(value) {
if (!value) {
return;
}
try {
var expireTime = new Date(new Date().getTime() + COOKIE_EXPIRES_TIME_1_YEAR).toUTCString();
var allowedDomain = location.host.split(".").slice(-2).join(".");
document.cookie = [
"vkidExtId=".concat(encodeURIComponent(value || "")),
"expires=".concat(expireTime),
"path=/",
"domain=.".concat(allowedDomain),
"SameSite=Strict",
"Secure"
].join("; ");
} catch (e) {}
}

@@ -130,2 +148,3 @@ exports.clearCodeVerifierCookie = clearCodeVerifierCookie;

exports.cookie = cookie;
exports.setExtIdCookie = setExtIdCookie;
exports.state = state;

@@ -6,3 +6,3 @@ import './../lib/@vkontakte/vkjs/lib/es6/detections.js';

import { Prompt, ConfigAuthMode } from '../core/config/types.js';
import { state, clearStateCookie, codeVerifier, clearCodeVerifierCookie } from '../utils/cookie.js';
import { state, setExtIdCookie, clearStateCookie, codeVerifier, clearCodeVerifierCookie } from '../utils/cookie.js';
import { isDomainAllowed } from '../utils/domain.js';

@@ -72,2 +72,4 @@ import { generateCodeChallenge } from '../utils/oauth.js';

return this.dataService.value.then((payload)=>{
setExtIdCookie(payload.ext_id);
delete payload.ext_id;
// Сбрасываем после проверки

@@ -74,0 +76,0 @@ clearStateCookie();

@@ -13,3 +13,5 @@ import { DataService } from '../core/dataService/dataService.js';

state: payload.state,
device_id: payload.device_id
device_id: payload.device_id,
expires_in: payload.expires_in,
ext_id: payload.ext_id
});

@@ -16,0 +18,0 @@ };

// @ts-ignore-next-line пробрасываем версию из package.json в rollup.config
const VERSION = "2.0.0-alpha.2";
const VERSION = "2.0.0-alpha.ext-id";
// @ts-ignore-next-line пробрасываем тип сборки из rollup.config

@@ -4,0 +4,0 @@ const DOMAIN = 'vk.com';

@@ -63,3 +63,21 @@ import { nanoid } from './../lib/nanoid/non-secure/index.js';

const clearCodeVerifierCookie = ()=>clearCookie('codeVerifier');
const COOKIE_EXPIRES_TIME_1_YEAR = 31_536_000_000;
function setExtIdCookie(value) {
if (!value) {
return;
}
try {
const expireTime = new Date(new Date().getTime() + COOKIE_EXPIRES_TIME_1_YEAR).toUTCString();
const allowedDomain = location.host.split('.').slice(-2).join('.');
document.cookie = [
`vkidExtId=${encodeURIComponent(value || '')}`,
`expires=${expireTime}`,
'path=/',
`domain=.${allowedDomain}`,
'SameSite=Strict',
'Secure'
].join('; ');
} catch (e) {}
}
export { clearCodeVerifierCookie, clearStateCookie, codeVerifier, cookie, state };
export { clearCodeVerifierCookie, clearStateCookie, codeVerifier, cookie, setExtIdCookie, state };

@@ -76,2 +76,10 @@ import { OAUTH2_CODE_TYPE } from "./constants";

device_id: string;
/**
* Срок жизни кода авторизации в секундах
*/
expires_in: number;
/**
* @ignore
*/
ext_id?: string;
}

@@ -78,0 +86,0 @@ export interface AuthQueryParams {

@@ -11,2 +11,3 @@ type ParamValue = string;

export declare const clearCodeVerifierCookie: () => void;
export declare function setExtIdCookie(value?: string): void;
export {};

@@ -7,2 +7,3 @@ import { AuthStatsFlowSource, AuthToken } from "../../auth/types";

device_id: string;
expires_in: number;
}

@@ -9,0 +10,0 @@ export interface StatsInfoParams {

@@ -1,1 +0,1 @@

window.searchData = JSON.parse("{\"rows\":[{\"kind\":2,\"name\":\"core/config\",\"url\":\"modules/core_config.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\":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\":\"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\":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\":\"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\":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\":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\":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\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,46.821]],[\"comment/0\",[]],[\"name/1\",[1,41.713]],[\"comment/1\",[]],[\"name/2\",[2,46.821]],[\"comment/2\",[]],[\"name/3\",[3,46.821]],[\"comment/3\",[]],[\"name/4\",[4,46.821]],[\"comment/4\",[]],[\"name/5\",[5,46.821]],[\"comment/5\",[]],[\"name/6\",[6,46.821]],[\"comment/6\",[]],[\"name/7\",[7,46.821]],[\"comment/7\",[]],[\"name/8\",[8,46.821]],[\"comment/8\",[]],[\"name/9\",[9,46.821]],[\"comment/9\",[]],[\"name/10\",[10,46.821]],[\"comment/10\",[]],[\"name/11\",[11,46.821]],[\"comment/11\",[]],[\"name/12\",[12,46.821]],[\"comment/12\",[]],[\"name/13\",[13,46.821]],[\"comment/13\",[]],[\"name/14\",[14,46.821]],[\"comment/14\",[]],[\"name/15\",[15,46.821]],[\"comment/15\",[]],[\"name/16\",[16,46.821]],[\"comment/16\",[]],[\"name/17\",[17,46.821]],[\"comment/17\",[]],[\"name/18\",[18,33.828]],[\"comment/18\",[]],[\"name/19\",[19,46.821]],[\"comment/19\",[]],[\"name/20\",[20,46.821]],[\"comment/20\",[]],[\"name/21\",[21,46.821]],[\"comment/21\",[]],[\"name/22\",[22,33.828]],[\"comment/22\",[]],[\"name/23\",[23,46.821]],[\"comment/23\",[]],[\"name/24\",[24,46.821]],[\"comment/24\",[]],[\"name/25\",[25,46.821]],[\"comment/25\",[]],[\"name/26\",[26,46.821]],[\"comment/26\",[]],[\"name/27\",[27,46.821]],[\"comment/27\",[]],[\"name/28\",[28,46.821]],[\"comment/28\",[]],[\"name/29\",[29,46.821]],[\"comment/29\",[]],[\"name/30\",[30,46.821]],[\"comment/30\",[]],[\"name/31\",[31,46.821]],[\"comment/31\",[]],[\"name/32\",[32,41.713]],[\"comment/32\",[]],[\"name/33\",[33,46.821]],[\"comment/33\",[]],[\"name/34\",[34,46.821]],[\"comment/34\",[]],[\"name/35\",[35,46.821]],[\"comment/35\",[]],[\"name/36\",[36,46.821]],[\"comment/36\",[]],[\"name/37\",[37,46.821]],[\"comment/37\",[]],[\"name/38\",[38,35.835]],[\"comment/38\",[]],[\"name/39\",[39,46.821]],[\"comment/39\",[]],[\"name/40\",[40,46.821]],[\"comment/40\",[]],[\"name/41\",[41,41.713]],[\"comment/41\",[]],[\"name/42\",[1,41.713]],[\"comment/42\",[]],[\"name/43\",[22,33.828]],[\"comment/43\",[]],[\"name/44\",[32,41.713]],[\"comment/44\",[]],[\"name/45\",[42,46.821]],[\"comment/45\",[]],[\"name/46\",[43,46.821]],[\"comment/46\",[]],[\"name/47\",[44,46.821]],[\"comment/47\",[]],[\"name/48\",[45,46.821]],[\"comment/48\",[]],[\"name/49\",[46,46.821]],[\"comment/49\",[]],[\"name/50\",[47,46.821]],[\"comment/50\",[]],[\"name/51\",[48,46.821]],[\"comment/51\",[]],[\"name/52\",[49,46.821]],[\"comment/52\",[]],[\"name/53\",[50,46.821]],[\"comment/53\",[]],[\"name/54\",[51,46.821]],[\"comment/54\",[]],[\"name/55\",[52,46.821]],[\"comment/55\",[]],[\"name/56\",[53,46.821]],[\"comment/56\",[]],[\"name/57\",[54,46.821]],[\"comment/57\",[]],[\"name/58\",[55,46.821]],[\"comment/58\",[]],[\"name/59\",[56,46.821]],[\"comment/59\",[]],[\"name/60\",[38,35.835]],[\"comment/60\",[]],[\"name/61\",[57,41.713]],[\"comment/61\",[]],[\"name/62\",[58,46.821]],[\"comment/62\",[]],[\"name/63\",[18,33.828]],[\"comment/63\",[]],[\"name/64\",[59,35.835]],[\"comment/64\",[]],[\"name/65\",[60,46.821]],[\"comment/65\",[]],[\"name/66\",[57,41.713]],[\"comment/66\",[]],[\"name/67\",[61,46.821]],[\"comment/67\",[]],[\"name/68\",[38,35.835]],[\"comment/68\",[]],[\"name/69\",[62,46.821]],[\"comment/69\",[]],[\"name/70\",[63,46.821]],[\"comment/70\",[]],[\"name/71\",[64,46.821]],[\"comment/71\",[]],[\"name/72\",[65,46.821]],[\"comment/72\",[]],[\"name/73\",[66,41.713]],[\"comment/73\",[]],[\"name/74\",[67,46.821]],[\"comment/74\",[]],[\"name/75\",[68,46.821]],[\"comment/75\",[]],[\"name/76\",[69,46.821]],[\"comment/76\",[]],[\"name/77\",[70,46.821]],[\"comment/77\",[]],[\"name/78\",[71,46.821]],[\"comment/78\",[]],[\"name/79\",[38,35.835]],[\"comment/79\",[]],[\"name/80\",[72,46.821]],[\"comment/80\",[]],[\"name/81\",[73,46.821]],[\"comment/81\",[]],[\"name/82\",[41,41.713]],[\"comment/82\",[]],[\"name/83\",[74,46.821]],[\"comment/83\",[]],[\"name/84\",[66,41.713]],[\"comment/84\",[]],[\"name/85\",[75,46.821]],[\"comment/85\",[]],[\"name/86\",[22,33.828]],[\"comment/86\",[]],[\"name/87\",[76,38.348]],[\"comment/87\",[]],[\"name/88\",[77,38.348]],[\"comment/88\",[]],[\"name/89\",[78,38.348]],[\"comment/89\",[]],[\"name/90\",[79,38.348]],[\"comment/90\",[]],[\"name/91\",[80,38.348]],[\"comment/91\",[]],[\"name/92\",[81,38.348]],[\"comment/92\",[]],[\"name/93\",[82,46.821]],[\"comment/93\",[]],[\"name/94\",[83,41.713]],[\"comment/94\",[]],[\"name/95\",[84,41.713]],[\"comment/95\",[]],[\"name/96\",[85,46.821]],[\"comment/96\",[]],[\"name/97\",[86,35.835]],[\"comment/97\",[]],[\"name/98\",[87,41.713]],[\"comment/98\",[]],[\"name/99\",[88,41.713]],[\"comment/99\",[]],[\"name/100\",[18,33.828]],[\"comment/100\",[]],[\"name/101\",[59,35.835]],[\"comment/101\",[]],[\"name/102\",[89,46.821]],[\"comment/102\",[]],[\"name/103\",[90,46.821]],[\"comment/103\",[]],[\"name/104\",[91,41.713]],[\"comment/104\",[]],[\"name/105\",[92,41.713]],[\"comment/105\",[]],[\"name/106\",[93,46.821]],[\"comment/106\",[]],[\"name/107\",[94,46.821]],[\"comment/107\",[]],[\"name/108\",[95,46.821]],[\"comment/108\",[]],[\"name/109\",[96,46.821]],[\"comment/109\",[]],[\"name/110\",[22,33.828]],[\"comment/110\",[]],[\"name/111\",[76,38.348]],[\"comment/111\",[]],[\"name/112\",[77,38.348]],[\"comment/112\",[]],[\"name/113\",[78,38.348]],[\"comment/113\",[]],[\"name/114\",[79,38.348]],[\"comment/114\",[]],[\"name/115\",[80,38.348]],[\"comment/115\",[]],[\"name/116\",[81,38.348]],[\"comment/116\",[]],[\"name/117\",[97,46.821]],[\"comment/117\",[]],[\"name/118\",[98,46.821]],[\"comment/118\",[]],[\"name/119\",[99,46.821]],[\"comment/119\",[]],[\"name/120\",[83,41.713]],[\"comment/120\",[]],[\"name/121\",[100,46.821]],[\"comment/121\",[]],[\"name/122\",[86,35.835]],[\"comment/122\",[]],[\"name/123\",[87,41.713]],[\"comment/123\",[]],[\"name/124\",[18,33.828]],[\"comment/124\",[]],[\"name/125\",[59,35.835]],[\"comment/125\",[]],[\"name/126\",[101,46.821]],[\"comment/126\",[]],[\"name/127\",[102,46.821]],[\"comment/127\",[]],[\"name/128\",[103,46.821]],[\"comment/128\",[]],[\"name/129\",[104,46.821]],[\"comment/129\",[]],[\"name/130\",[105,46.821]],[\"comment/130\",[]],[\"name/131\",[106,46.821]],[\"comment/131\",[]],[\"name/132\",[107,46.821]],[\"comment/132\",[]],[\"name/133\",[108,46.821]],[\"comment/133\",[]],[\"name/134\",[109,46.821]],[\"comment/134\",[]],[\"name/135\",[110,46.821]],[\"comment/135\",[]],[\"name/136\",[111,46.821]],[\"comment/136\",[]],[\"name/137\",[86,35.835]],[\"comment/137\",[]],[\"name/138\",[22,33.828]],[\"comment/138\",[]],[\"name/139\",[76,38.348]],[\"comment/139\",[]],[\"name/140\",[77,38.348]],[\"comment/140\",[]],[\"name/141\",[78,38.348]],[\"comment/141\",[]],[\"name/142\",[79,38.348]],[\"comment/142\",[]],[\"name/143\",[80,38.348]],[\"comment/143\",[]],[\"name/144\",[81,38.348]],[\"comment/144\",[]],[\"name/145\",[112,46.821]],[\"comment/145\",[]],[\"name/146\",[84,41.713]],[\"comment/146\",[]],[\"name/147\",[86,35.835]],[\"comment/147\",[]],[\"name/148\",[88,41.713]],[\"comment/148\",[]],[\"name/149\",[18,33.828]],[\"comment/149\",[]],[\"name/150\",[59,35.835]],[\"comment/150\",[]],[\"name/151\",[113,46.821]],[\"comment/151\",[]],[\"name/152\",[114,41.713]],[\"comment/152\",[]],[\"name/153\",[115,41.713]],[\"comment/153\",[]],[\"name/154\",[116,46.821]],[\"comment/154\",[]],[\"name/155\",[117,46.821]],[\"comment/155\",[]],[\"name/156\",[114,41.713]],[\"comment/156\",[]],[\"name/157\",[115,41.713]],[\"comment/157\",[]],[\"name/158\",[118,46.821]],[\"comment/158\",[]],[\"name/159\",[91,41.713]],[\"comment/159\",[]],[\"name/160\",[92,41.713]],[\"comment/160\",[]]],\"invertedIndex\":[[\"access_token\",{\"_index\":68,\"name\":{\"75\":{}},\"comment\":{}}],[\"app\",{\"_index\":36,\"name\":{\"36\":{}},\"comment\":{}}],[\"appname\",{\"_index\":100,\"name\":{\"121\":{}},\"comment\":{}}],[\"auth\",{\"_index\":1,\"name\":{\"1\":{},\"42\":{}},\"comment\":{}}],[\"autherror\",{\"_index\":53,\"name\":{\"56\":{}},\"comment\":{}}],[\"autherrorcode\",{\"_index\":47,\"name\":{\"50\":{}},\"comment\":{}}],[\"authorizationfailed\",{\"_index\":51,\"name\":{\"54\":{}},\"comment\":{}}],[\"authparams\",{\"_index\":58,\"name\":{\"62\":{}},\"comment\":{}}],[\"authresponse\",{\"_index\":60,\"name\":{\"65\":{}},\"comment\":{}}],[\"bel\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"borderradius\",{\"_index\":92,\"name\":{\"105\":{},\"160\":{}},\"comment\":{}}],[\"bottom\",{\"_index\":111,\"name\":{\"136\":{}},\"comment\":{}}],[\"cannotcreatenewtab\",{\"_index\":49,\"name\":{\"52\":{}},\"comment\":{}}],[\"close\",{\"_index\":77,\"name\":{\"88\":{},\"112\":{},\"140\":{}},\"comment\":{}}],[\"code\",{\"_index\":57,\"name\":{\"61\":{},\"66\":{}},\"comment\":{}}],[\"codechallenge\",{\"_index\":40,\"name\":{\"40\":{}},\"comment\":{}}],[\"codeverifier\",{\"_index\":39,\"name\":{\"39\":{}},\"comment\":{}}],[\"config\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"configauthmode\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"configdata\",{\"_index\":35,\"name\":{\"35\":{}},\"comment\":{}}],[\"consent\",{\"_index\":33,\"name\":{\"33\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":22,\"name\":{\"22\":{},\"43\":{},\"86\":{},\"110\":{},\"138\":{}},\"comment\":{}}],[\"container\",{\"_index\":88,\"name\":{\"99\":{},\"148\":{}},\"comment\":{}}],[\"contentid\",{\"_index\":99,\"name\":{\"119\":{}},\"comment\":{}}],[\"core/config\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"dark\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"default\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"device_id\",{\"_index\":62,\"name\":{\"69\":{}},\"comment\":{}}],[\"eng\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"error\",{\"_index\":54,\"name\":{\"57\":{}},\"comment\":{}}],[\"error_description\",{\"_index\":55,\"name\":{\"58\":{}},\"comment\":{}}],[\"error_uri\",{\"_index\":56,\"name\":{\"59\":{}},\"comment\":{}}],[\"eventnotsupported\",{\"_index\":48,\"name\":{\"51\":{}},\"comment\":{}}],[\"exchangecode\",{\"_index\":42,\"name\":{\"45\":{}},\"comment\":{}}],[\"expires_in\",{\"_index\":69,\"name\":{\"76\":{}},\"comment\":{}}],[\"externaloauthname\",{\"_index\":117,\"name\":{\"155\":{}},\"comment\":{}}],[\"fastauthenabled\",{\"_index\":87,\"name\":{\"98\":{},\"123\":{}},\"comment\":{}}],[\"floatingonetap\",{\"_index\":96,\"name\":{\"109\":{}},\"comment\":{}}],[\"floatingonetapcontentid\",{\"_index\":101,\"name\":{\"126\":{}},\"comment\":{}}],[\"floatingonetapindent\",{\"_index\":108,\"name\":{\"133\":{}},\"comment\":{}}],[\"floatingonetapparams\",{\"_index\":97,\"name\":{\"117\":{}},\"comment\":{}}],[\"fra\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"german\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"get\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"height\",{\"_index\":91,\"name\":{\"104\":{},\"159\":{}},\"comment\":{}}],[\"hide\",{\"_index\":79,\"name\":{\"90\":{},\"114\":{},\"142\":{}},\"comment\":{}}],[\"id_token\",{\"_index\":70,\"name\":{\"77\":{}},\"comment\":{}}],[\"indent\",{\"_index\":98,\"name\":{\"118\":{}},\"comment\":{}}],[\"init\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"innewtab\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"kaz\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"lang\",{\"_index\":59,\"name\":{\"64\":{},\"101\":{},\"125\":{},\"150\":{}},\"comment\":{}}],[\"languages\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"light\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"login\",{\"_index\":32,\"name\":{\"32\":{},\"44\":{}},\"comment\":{}}],[\"logout\",{\"_index\":44,\"name\":{\"47\":{}},\"comment\":{}}],[\"logoutresult\",{\"_index\":63,\"name\":{\"70\":{}},\"comment\":{}}],[\"mail\",{\"_index\":115,\"name\":{\"153\":{},\"157\":{}},\"comment\":{}}],[\"make_order_with_service\",{\"_index\":106,\"name\":{\"131\":{}},\"comment\":{}}],[\"make_order_without_service\",{\"_index\":107,\"name\":{\"132\":{}},\"comment\":{}}],[\"newtabhasbeenclosed\",{\"_index\":50,\"name\":{\"53\":{}},\"comment\":{}}],[\"none\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"oauthlist\",{\"_index\":86,\"name\":{\"97\":{},\"122\":{},\"137\":{},\"147\":{}},\"comment\":{}}],[\"oauthlistparams\",{\"_index\":112,\"name\":{\"145\":{}},\"comment\":{}}],[\"oauthliststyles\",{\"_index\":118,\"name\":{\"158\":{}},\"comment\":{}}],[\"oauthname\",{\"_index\":113,\"name\":{\"151\":{}},\"comment\":{}}],[\"off\",{\"_index\":81,\"name\":{\"92\":{},\"116\":{},\"144\":{}},\"comment\":{}}],[\"ok\",{\"_index\":114,\"name\":{\"152\":{},\"156\":{}},\"comment\":{}}],[\"on\",{\"_index\":80,\"name\":{\"91\":{},\"115\":{},\"143\":{}},\"comment\":{}}],[\"onetap\",{\"_index\":75,\"name\":{\"85\":{}},\"comment\":{}}],[\"onetapparams\",{\"_index\":82,\"name\":{\"93\":{}},\"comment\":{}}],[\"onetapskin\",{\"_index\":93,\"name\":{\"106\":{}},\"comment\":{}}],[\"onetapstyles\",{\"_index\":89,\"name\":{\"102\":{}},\"comment\":{}}],[\"pol\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"primary\",{\"_index\":94,\"name\":{\"107\":{}},\"comment\":{}}],[\"prompt\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"publicinfo\",{\"_index\":46,\"name\":{\"49\":{}},\"comment\":{}}],[\"publicinforesult\",{\"_index\":65,\"name\":{\"72\":{}},\"comment\":{}}],[\"redirect\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"redirecturl\",{\"_index\":37,\"name\":{\"37\":{}},\"comment\":{}}],[\"refresh_token\",{\"_index\":71,\"name\":{\"78\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":43,\"name\":{\"46\":{}},\"comment\":{}}],[\"registration_for_event\",{\"_index\":104,\"name\":{\"129\":{}},\"comment\":{}}],[\"render\",{\"_index\":76,\"name\":{\"87\":{},\"111\":{},\"139\":{}},\"comment\":{}}],[\"response\",{\"_index\":64,\"name\":{\"71\":{}},\"comment\":{}}],[\"right\",{\"_index\":110,\"name\":{\"135\":{}},\"comment\":{}}],[\"rus\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"scheme\",{\"_index\":18,\"name\":{\"18\":{},\"63\":{},\"100\":{},\"124\":{},\"149\":{}},\"comment\":{}}],[\"scope\",{\"_index\":41,\"name\":{\"41\":{},\"82\":{}},\"comment\":{}}],[\"secondary\",{\"_index\":95,\"name\":{\"108\":{}},\"comment\":{}}],[\"selectaccount\",{\"_index\":34,\"name\":{\"34\":{}},\"comment\":{}}],[\"show\",{\"_index\":78,\"name\":{\"89\":{},\"113\":{},\"141\":{}},\"comment\":{}}],[\"showalternativelogin\",{\"_index\":83,\"name\":{\"94\":{},\"120\":{}},\"comment\":{}}],[\"sign_in_to_account\",{\"_index\":103,\"name\":{\"128\":{}},\"comment\":{}}],[\"sign_in_to_service\",{\"_index\":102,\"name\":{\"127\":{}},\"comment\":{}}],[\"skin\",{\"_index\":85,\"name\":{\"96\":{}},\"comment\":{}}],[\"spa\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"state\",{\"_index\":38,\"name\":{\"38\":{},\"60\":{},\"68\":{},\"79\":{}},\"comment\":{}}],[\"statemismatch\",{\"_index\":52,\"name\":{\"55\":{}},\"comment\":{}}],[\"styles\",{\"_index\":84,\"name\":{\"95\":{},\"146\":{}},\"comment\":{}}],[\"submit_applications\",{\"_index\":105,\"name\":{\"130\":{}},\"comment\":{}}],[\"token_type\",{\"_index\":72,\"name\":{\"80\":{}},\"comment\":{}}],[\"tokenresult\",{\"_index\":67,\"name\":{\"74\":{}},\"comment\":{}}],[\"top\",{\"_index\":109,\"name\":{\"134\":{}},\"comment\":{}}],[\"turkey\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"type\",{\"_index\":61,\"name\":{\"67\":{}},\"comment\":{}}],[\"types\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"ukr\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"update\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"user\",{\"_index\":66,\"name\":{\"73\":{},\"84\":{}},\"comment\":{}}],[\"user_id\",{\"_index\":73,\"name\":{\"81\":{}},\"comment\":{}}],[\"userinfo\",{\"_index\":45,\"name\":{\"48\":{}},\"comment\":{}}],[\"userinforesult\",{\"_index\":74,\"name\":{\"83\":{}},\"comment\":{}}],[\"uzb\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"vk\",{\"_index\":116,\"name\":{\"154\":{}},\"comment\":{}}],[\"widgets/floatingonetap\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"widgets/oauthlist\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"widgets/onetap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"width\",{\"_index\":90,\"name\":{\"103\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
window.searchData = JSON.parse("{\"rows\":[{\"kind\":2,\"name\":\"core/config\",\"url\":\"modules/core_config.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\":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\":\"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\":\"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\":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\":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\":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\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,46.883]],[\"comment/0\",[]],[\"name/1\",[1,41.775]],[\"comment/1\",[]],[\"name/2\",[2,46.883]],[\"comment/2\",[]],[\"name/3\",[3,46.883]],[\"comment/3\",[]],[\"name/4\",[4,46.883]],[\"comment/4\",[]],[\"name/5\",[5,46.883]],[\"comment/5\",[]],[\"name/6\",[6,46.883]],[\"comment/6\",[]],[\"name/7\",[7,46.883]],[\"comment/7\",[]],[\"name/8\",[8,46.883]],[\"comment/8\",[]],[\"name/9\",[9,46.883]],[\"comment/9\",[]],[\"name/10\",[10,46.883]],[\"comment/10\",[]],[\"name/11\",[11,46.883]],[\"comment/11\",[]],[\"name/12\",[12,46.883]],[\"comment/12\",[]],[\"name/13\",[13,46.883]],[\"comment/13\",[]],[\"name/14\",[14,46.883]],[\"comment/14\",[]],[\"name/15\",[15,46.883]],[\"comment/15\",[]],[\"name/16\",[16,46.883]],[\"comment/16\",[]],[\"name/17\",[17,46.883]],[\"comment/17\",[]],[\"name/18\",[18,33.89]],[\"comment/18\",[]],[\"name/19\",[19,46.883]],[\"comment/19\",[]],[\"name/20\",[20,46.883]],[\"comment/20\",[]],[\"name/21\",[21,46.883]],[\"comment/21\",[]],[\"name/22\",[22,33.89]],[\"comment/22\",[]],[\"name/23\",[23,46.883]],[\"comment/23\",[]],[\"name/24\",[24,46.883]],[\"comment/24\",[]],[\"name/25\",[25,46.883]],[\"comment/25\",[]],[\"name/26\",[26,46.883]],[\"comment/26\",[]],[\"name/27\",[27,46.883]],[\"comment/27\",[]],[\"name/28\",[28,46.883]],[\"comment/28\",[]],[\"name/29\",[29,46.883]],[\"comment/29\",[]],[\"name/30\",[30,46.883]],[\"comment/30\",[]],[\"name/31\",[31,46.883]],[\"comment/31\",[]],[\"name/32\",[32,41.775]],[\"comment/32\",[]],[\"name/33\",[33,46.883]],[\"comment/33\",[]],[\"name/34\",[34,46.883]],[\"comment/34\",[]],[\"name/35\",[35,46.883]],[\"comment/35\",[]],[\"name/36\",[36,46.883]],[\"comment/36\",[]],[\"name/37\",[37,46.883]],[\"comment/37\",[]],[\"name/38\",[38,35.897]],[\"comment/38\",[]],[\"name/39\",[39,46.883]],[\"comment/39\",[]],[\"name/40\",[40,46.883]],[\"comment/40\",[]],[\"name/41\",[41,41.775]],[\"comment/41\",[]],[\"name/42\",[1,41.775]],[\"comment/42\",[]],[\"name/43\",[22,33.89]],[\"comment/43\",[]],[\"name/44\",[32,41.775]],[\"comment/44\",[]],[\"name/45\",[42,46.883]],[\"comment/45\",[]],[\"name/46\",[43,46.883]],[\"comment/46\",[]],[\"name/47\",[44,46.883]],[\"comment/47\",[]],[\"name/48\",[45,46.883]],[\"comment/48\",[]],[\"name/49\",[46,46.883]],[\"comment/49\",[]],[\"name/50\",[47,46.883]],[\"comment/50\",[]],[\"name/51\",[48,46.883]],[\"comment/51\",[]],[\"name/52\",[49,46.883]],[\"comment/52\",[]],[\"name/53\",[50,46.883]],[\"comment/53\",[]],[\"name/54\",[51,46.883]],[\"comment/54\",[]],[\"name/55\",[52,46.883]],[\"comment/55\",[]],[\"name/56\",[53,46.883]],[\"comment/56\",[]],[\"name/57\",[54,46.883]],[\"comment/57\",[]],[\"name/58\",[55,46.883]],[\"comment/58\",[]],[\"name/59\",[56,46.883]],[\"comment/59\",[]],[\"name/60\",[38,35.897]],[\"comment/60\",[]],[\"name/61\",[57,41.775]],[\"comment/61\",[]],[\"name/62\",[58,46.883]],[\"comment/62\",[]],[\"name/63\",[18,33.89]],[\"comment/63\",[]],[\"name/64\",[59,35.897]],[\"comment/64\",[]],[\"name/65\",[60,46.883]],[\"comment/65\",[]],[\"name/66\",[57,41.775]],[\"comment/66\",[]],[\"name/67\",[61,46.883]],[\"comment/67\",[]],[\"name/68\",[38,35.897]],[\"comment/68\",[]],[\"name/69\",[62,46.883]],[\"comment/69\",[]],[\"name/70\",[63,41.775]],[\"comment/70\",[]],[\"name/71\",[64,46.883]],[\"comment/71\",[]],[\"name/72\",[65,46.883]],[\"comment/72\",[]],[\"name/73\",[66,46.883]],[\"comment/73\",[]],[\"name/74\",[67,41.775]],[\"comment/74\",[]],[\"name/75\",[68,46.883]],[\"comment/75\",[]],[\"name/76\",[69,46.883]],[\"comment/76\",[]],[\"name/77\",[63,41.775]],[\"comment/77\",[]],[\"name/78\",[70,46.883]],[\"comment/78\",[]],[\"name/79\",[71,46.883]],[\"comment/79\",[]],[\"name/80\",[38,35.897]],[\"comment/80\",[]],[\"name/81\",[72,46.883]],[\"comment/81\",[]],[\"name/82\",[73,46.883]],[\"comment/82\",[]],[\"name/83\",[41,41.775]],[\"comment/83\",[]],[\"name/84\",[74,46.883]],[\"comment/84\",[]],[\"name/85\",[67,41.775]],[\"comment/85\",[]],[\"name/86\",[75,46.883]],[\"comment/86\",[]],[\"name/87\",[22,33.89]],[\"comment/87\",[]],[\"name/88\",[76,38.41]],[\"comment/88\",[]],[\"name/89\",[77,38.41]],[\"comment/89\",[]],[\"name/90\",[78,38.41]],[\"comment/90\",[]],[\"name/91\",[79,38.41]],[\"comment/91\",[]],[\"name/92\",[80,38.41]],[\"comment/92\",[]],[\"name/93\",[81,38.41]],[\"comment/93\",[]],[\"name/94\",[82,46.883]],[\"comment/94\",[]],[\"name/95\",[83,41.775]],[\"comment/95\",[]],[\"name/96\",[84,41.775]],[\"comment/96\",[]],[\"name/97\",[85,46.883]],[\"comment/97\",[]],[\"name/98\",[86,35.897]],[\"comment/98\",[]],[\"name/99\",[87,41.775]],[\"comment/99\",[]],[\"name/100\",[88,41.775]],[\"comment/100\",[]],[\"name/101\",[18,33.89]],[\"comment/101\",[]],[\"name/102\",[59,35.897]],[\"comment/102\",[]],[\"name/103\",[89,46.883]],[\"comment/103\",[]],[\"name/104\",[90,46.883]],[\"comment/104\",[]],[\"name/105\",[91,41.775]],[\"comment/105\",[]],[\"name/106\",[92,41.775]],[\"comment/106\",[]],[\"name/107\",[93,46.883]],[\"comment/107\",[]],[\"name/108\",[94,46.883]],[\"comment/108\",[]],[\"name/109\",[95,46.883]],[\"comment/109\",[]],[\"name/110\",[96,46.883]],[\"comment/110\",[]],[\"name/111\",[22,33.89]],[\"comment/111\",[]],[\"name/112\",[76,38.41]],[\"comment/112\",[]],[\"name/113\",[77,38.41]],[\"comment/113\",[]],[\"name/114\",[78,38.41]],[\"comment/114\",[]],[\"name/115\",[79,38.41]],[\"comment/115\",[]],[\"name/116\",[80,38.41]],[\"comment/116\",[]],[\"name/117\",[81,38.41]],[\"comment/117\",[]],[\"name/118\",[97,46.883]],[\"comment/118\",[]],[\"name/119\",[98,46.883]],[\"comment/119\",[]],[\"name/120\",[99,46.883]],[\"comment/120\",[]],[\"name/121\",[83,41.775]],[\"comment/121\",[]],[\"name/122\",[100,46.883]],[\"comment/122\",[]],[\"name/123\",[86,35.897]],[\"comment/123\",[]],[\"name/124\",[87,41.775]],[\"comment/124\",[]],[\"name/125\",[18,33.89]],[\"comment/125\",[]],[\"name/126\",[59,35.897]],[\"comment/126\",[]],[\"name/127\",[101,46.883]],[\"comment/127\",[]],[\"name/128\",[102,46.883]],[\"comment/128\",[]],[\"name/129\",[103,46.883]],[\"comment/129\",[]],[\"name/130\",[104,46.883]],[\"comment/130\",[]],[\"name/131\",[105,46.883]],[\"comment/131\",[]],[\"name/132\",[106,46.883]],[\"comment/132\",[]],[\"name/133\",[107,46.883]],[\"comment/133\",[]],[\"name/134\",[108,46.883]],[\"comment/134\",[]],[\"name/135\",[109,46.883]],[\"comment/135\",[]],[\"name/136\",[110,46.883]],[\"comment/136\",[]],[\"name/137\",[111,46.883]],[\"comment/137\",[]],[\"name/138\",[86,35.897]],[\"comment/138\",[]],[\"name/139\",[22,33.89]],[\"comment/139\",[]],[\"name/140\",[76,38.41]],[\"comment/140\",[]],[\"name/141\",[77,38.41]],[\"comment/141\",[]],[\"name/142\",[78,38.41]],[\"comment/142\",[]],[\"name/143\",[79,38.41]],[\"comment/143\",[]],[\"name/144\",[80,38.41]],[\"comment/144\",[]],[\"name/145\",[81,38.41]],[\"comment/145\",[]],[\"name/146\",[112,46.883]],[\"comment/146\",[]],[\"name/147\",[84,41.775]],[\"comment/147\",[]],[\"name/148\",[86,35.897]],[\"comment/148\",[]],[\"name/149\",[88,41.775]],[\"comment/149\",[]],[\"name/150\",[18,33.89]],[\"comment/150\",[]],[\"name/151\",[59,35.897]],[\"comment/151\",[]],[\"name/152\",[113,46.883]],[\"comment/152\",[]],[\"name/153\",[114,41.775]],[\"comment/153\",[]],[\"name/154\",[115,41.775]],[\"comment/154\",[]],[\"name/155\",[116,46.883]],[\"comment/155\",[]],[\"name/156\",[117,46.883]],[\"comment/156\",[]],[\"name/157\",[114,41.775]],[\"comment/157\",[]],[\"name/158\",[115,41.775]],[\"comment/158\",[]],[\"name/159\",[118,46.883]],[\"comment/159\",[]],[\"name/160\",[91,41.775]],[\"comment/160\",[]],[\"name/161\",[92,41.775]],[\"comment/161\",[]]],\"invertedIndex\":[[\"access_token\",{\"_index\":69,\"name\":{\"76\":{}},\"comment\":{}}],[\"app\",{\"_index\":36,\"name\":{\"36\":{}},\"comment\":{}}],[\"appname\",{\"_index\":100,\"name\":{\"122\":{}},\"comment\":{}}],[\"auth\",{\"_index\":1,\"name\":{\"1\":{},\"42\":{}},\"comment\":{}}],[\"autherror\",{\"_index\":53,\"name\":{\"56\":{}},\"comment\":{}}],[\"autherrorcode\",{\"_index\":47,\"name\":{\"50\":{}},\"comment\":{}}],[\"authorizationfailed\",{\"_index\":51,\"name\":{\"54\":{}},\"comment\":{}}],[\"authparams\",{\"_index\":58,\"name\":{\"62\":{}},\"comment\":{}}],[\"authresponse\",{\"_index\":60,\"name\":{\"65\":{}},\"comment\":{}}],[\"bel\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"borderradius\",{\"_index\":92,\"name\":{\"106\":{},\"161\":{}},\"comment\":{}}],[\"bottom\",{\"_index\":111,\"name\":{\"137\":{}},\"comment\":{}}],[\"cannotcreatenewtab\",{\"_index\":49,\"name\":{\"52\":{}},\"comment\":{}}],[\"close\",{\"_index\":77,\"name\":{\"89\":{},\"113\":{},\"141\":{}},\"comment\":{}}],[\"code\",{\"_index\":57,\"name\":{\"61\":{},\"66\":{}},\"comment\":{}}],[\"codechallenge\",{\"_index\":40,\"name\":{\"40\":{}},\"comment\":{}}],[\"codeverifier\",{\"_index\":39,\"name\":{\"39\":{}},\"comment\":{}}],[\"config\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"configauthmode\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"configdata\",{\"_index\":35,\"name\":{\"35\":{}},\"comment\":{}}],[\"consent\",{\"_index\":33,\"name\":{\"33\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":22,\"name\":{\"22\":{},\"43\":{},\"87\":{},\"111\":{},\"139\":{}},\"comment\":{}}],[\"container\",{\"_index\":88,\"name\":{\"100\":{},\"149\":{}},\"comment\":{}}],[\"contentid\",{\"_index\":99,\"name\":{\"120\":{}},\"comment\":{}}],[\"core/config\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"dark\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"default\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"device_id\",{\"_index\":62,\"name\":{\"69\":{}},\"comment\":{}}],[\"eng\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"error\",{\"_index\":54,\"name\":{\"57\":{}},\"comment\":{}}],[\"error_description\",{\"_index\":55,\"name\":{\"58\":{}},\"comment\":{}}],[\"error_uri\",{\"_index\":56,\"name\":{\"59\":{}},\"comment\":{}}],[\"eventnotsupported\",{\"_index\":48,\"name\":{\"51\":{}},\"comment\":{}}],[\"exchangecode\",{\"_index\":42,\"name\":{\"45\":{}},\"comment\":{}}],[\"expires_in\",{\"_index\":63,\"name\":{\"70\":{},\"77\":{}},\"comment\":{}}],[\"externaloauthname\",{\"_index\":117,\"name\":{\"156\":{}},\"comment\":{}}],[\"fastauthenabled\",{\"_index\":87,\"name\":{\"99\":{},\"124\":{}},\"comment\":{}}],[\"floatingonetap\",{\"_index\":96,\"name\":{\"110\":{}},\"comment\":{}}],[\"floatingonetapcontentid\",{\"_index\":101,\"name\":{\"127\":{}},\"comment\":{}}],[\"floatingonetapindent\",{\"_index\":108,\"name\":{\"134\":{}},\"comment\":{}}],[\"floatingonetapparams\",{\"_index\":97,\"name\":{\"118\":{}},\"comment\":{}}],[\"fra\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"german\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"get\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"height\",{\"_index\":91,\"name\":{\"105\":{},\"160\":{}},\"comment\":{}}],[\"hide\",{\"_index\":79,\"name\":{\"91\":{},\"115\":{},\"143\":{}},\"comment\":{}}],[\"id_token\",{\"_index\":70,\"name\":{\"78\":{}},\"comment\":{}}],[\"indent\",{\"_index\":98,\"name\":{\"119\":{}},\"comment\":{}}],[\"init\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"innewtab\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"kaz\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"lang\",{\"_index\":59,\"name\":{\"64\":{},\"102\":{},\"126\":{},\"151\":{}},\"comment\":{}}],[\"languages\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"light\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"login\",{\"_index\":32,\"name\":{\"32\":{},\"44\":{}},\"comment\":{}}],[\"logout\",{\"_index\":44,\"name\":{\"47\":{}},\"comment\":{}}],[\"logoutresult\",{\"_index\":64,\"name\":{\"71\":{}},\"comment\":{}}],[\"mail\",{\"_index\":115,\"name\":{\"154\":{},\"158\":{}},\"comment\":{}}],[\"make_order_with_service\",{\"_index\":106,\"name\":{\"132\":{}},\"comment\":{}}],[\"make_order_without_service\",{\"_index\":107,\"name\":{\"133\":{}},\"comment\":{}}],[\"newtabhasbeenclosed\",{\"_index\":50,\"name\":{\"53\":{}},\"comment\":{}}],[\"none\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"oauthlist\",{\"_index\":86,\"name\":{\"98\":{},\"123\":{},\"138\":{},\"148\":{}},\"comment\":{}}],[\"oauthlistparams\",{\"_index\":112,\"name\":{\"146\":{}},\"comment\":{}}],[\"oauthliststyles\",{\"_index\":118,\"name\":{\"159\":{}},\"comment\":{}}],[\"oauthname\",{\"_index\":113,\"name\":{\"152\":{}},\"comment\":{}}],[\"off\",{\"_index\":81,\"name\":{\"93\":{},\"117\":{},\"145\":{}},\"comment\":{}}],[\"ok\",{\"_index\":114,\"name\":{\"153\":{},\"157\":{}},\"comment\":{}}],[\"on\",{\"_index\":80,\"name\":{\"92\":{},\"116\":{},\"144\":{}},\"comment\":{}}],[\"onetap\",{\"_index\":75,\"name\":{\"86\":{}},\"comment\":{}}],[\"onetapparams\",{\"_index\":82,\"name\":{\"94\":{}},\"comment\":{}}],[\"onetapskin\",{\"_index\":93,\"name\":{\"107\":{}},\"comment\":{}}],[\"onetapstyles\",{\"_index\":89,\"name\":{\"103\":{}},\"comment\":{}}],[\"pol\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"primary\",{\"_index\":94,\"name\":{\"108\":{}},\"comment\":{}}],[\"prompt\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"publicinfo\",{\"_index\":46,\"name\":{\"49\":{}},\"comment\":{}}],[\"publicinforesult\",{\"_index\":66,\"name\":{\"73\":{}},\"comment\":{}}],[\"redirect\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"redirecturl\",{\"_index\":37,\"name\":{\"37\":{}},\"comment\":{}}],[\"refresh_token\",{\"_index\":71,\"name\":{\"79\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":43,\"name\":{\"46\":{}},\"comment\":{}}],[\"registration_for_event\",{\"_index\":104,\"name\":{\"130\":{}},\"comment\":{}}],[\"render\",{\"_index\":76,\"name\":{\"88\":{},\"112\":{},\"140\":{}},\"comment\":{}}],[\"response\",{\"_index\":65,\"name\":{\"72\":{}},\"comment\":{}}],[\"right\",{\"_index\":110,\"name\":{\"136\":{}},\"comment\":{}}],[\"rus\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"scheme\",{\"_index\":18,\"name\":{\"18\":{},\"63\":{},\"101\":{},\"125\":{},\"150\":{}},\"comment\":{}}],[\"scope\",{\"_index\":41,\"name\":{\"41\":{},\"83\":{}},\"comment\":{}}],[\"secondary\",{\"_index\":95,\"name\":{\"109\":{}},\"comment\":{}}],[\"selectaccount\",{\"_index\":34,\"name\":{\"34\":{}},\"comment\":{}}],[\"show\",{\"_index\":78,\"name\":{\"90\":{},\"114\":{},\"142\":{}},\"comment\":{}}],[\"showalternativelogin\",{\"_index\":83,\"name\":{\"95\":{},\"121\":{}},\"comment\":{}}],[\"sign_in_to_account\",{\"_index\":103,\"name\":{\"129\":{}},\"comment\":{}}],[\"sign_in_to_service\",{\"_index\":102,\"name\":{\"128\":{}},\"comment\":{}}],[\"skin\",{\"_index\":85,\"name\":{\"97\":{}},\"comment\":{}}],[\"spa\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"state\",{\"_index\":38,\"name\":{\"38\":{},\"60\":{},\"68\":{},\"80\":{}},\"comment\":{}}],[\"statemismatch\",{\"_index\":52,\"name\":{\"55\":{}},\"comment\":{}}],[\"styles\",{\"_index\":84,\"name\":{\"96\":{},\"147\":{}},\"comment\":{}}],[\"submit_applications\",{\"_index\":105,\"name\":{\"131\":{}},\"comment\":{}}],[\"token_type\",{\"_index\":72,\"name\":{\"81\":{}},\"comment\":{}}],[\"tokenresult\",{\"_index\":68,\"name\":{\"75\":{}},\"comment\":{}}],[\"top\",{\"_index\":109,\"name\":{\"135\":{}},\"comment\":{}}],[\"turkey\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"type\",{\"_index\":61,\"name\":{\"67\":{}},\"comment\":{}}],[\"types\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"ukr\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"update\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"user\",{\"_index\":67,\"name\":{\"74\":{},\"85\":{}},\"comment\":{}}],[\"user_id\",{\"_index\":73,\"name\":{\"82\":{}},\"comment\":{}}],[\"userinfo\",{\"_index\":45,\"name\":{\"48\":{}},\"comment\":{}}],[\"userinforesult\",{\"_index\":74,\"name\":{\"84\":{}},\"comment\":{}}],[\"uzb\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"vk\",{\"_index\":116,\"name\":{\"155\":{}},\"comment\":{}}],[\"widgets/floatingonetap\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"widgets/oauthlist\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"widgets/onetap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"width\",{\"_index\":90,\"name\":{\"104\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
{
"name": "@vkid/sdk",
"version": "2.0.0-alpha.2",
"version": "2.0.0-alpha.ext-id",
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc