diff --git a/CHANGELOG.md b/CHANGELOG.md index fa29a36..5ee5fd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 2.2.0 + +### Новое +- Добавлена возможность открыть авторизацию в новом окне для всех модулей. +- Добавлена возможность менять текста в [кнопке One Tap](https://id.vk.com/business/go/docs/ru/vkid/latest/vk-id/connection/web/onetap). +- Добавлен новый сценарий "Быстрая регистрация" в [шторку авторизации](https://id.vk.com/business/go/docs/ru/vkid/latest/vk-id/connection/web/auth). + ## 2.1.0 ### Новое diff --git a/README.md b/README.md index 4d59db6..a61536f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ --- -ℹ️ Версия VK ID SDK 2.1.0 поддерживает авторизацию по протоколу [OAuth 2.1](https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-10), а также способы входа через аккаунты Одноклассников и Mail.ru. +ℹ️ Версия VK ID SDK 2.2.0 поддерживает авторизацию по протоколу [OAuth 2.1](https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-10), а также способы входа через аккаунты Одноклассников и Mail.ru. --- @@ -114,7 +114,7 @@ if (container) { - [Что такое VK ID](https://id.vk.com/about/business/go/docs/ru/vkid/latest/vk-id/intro/start-page) - [Создание приложения](https://id.vk.com/about/business/go/docs/ru/vkid/latest/vk-id/connection/create-application) - [Требования к дизайну](https://id.vk.com/about/business/go/docs/ru/vkid/latest/vk-id/connection/guidelines/design-rules-oauth) -- [Спецификация](https://vkcom.github.io/vkid-web-sdk/) +- [Спецификация](https://vkcom.github.io/vkid-web-sdk/docs) ## Contributing diff --git a/__tests__/auth/auth.tests.ts b/__tests__/auth/auth.tests.ts index d9fefbe..a51359d 100644 --- a/__tests__/auth/auth.tests.ts +++ b/__tests__/auth/auth.tests.ts @@ -6,6 +6,7 @@ import { encodeStatsInfo } from '#/utils/url'; import { version } from '../../package.json'; import { WINDOW_LOCATION_HOST } from '../constants'; +import { wait } from '../utils'; const APP_ID = 100; @@ -34,7 +35,7 @@ describe('Auth', () => { }); beforeEach(() => { - Config.init({ app: APP_ID, redirectUrl: 'https://id.vk.com', state: 'state', codeVerifier: 'codeVerifier', mode: ConfigAuthMode.Redirect }); + Config.init({ app: APP_ID, redirectUrl: 'https://id.vk.com', state: 'state', codeVerifier: 'codeVerifier', mode: ConfigAuthMode.InNewTab }); reporter .addLabel('layer', 'unit') .feature('Units') @@ -46,7 +47,10 @@ describe('Auth', () => { }); test('Should redirect to url with default fields', async () => { - await Auth.login(); + Config.update({ mode: ConfigAuthMode.Redirect }); + + void Auth.login(); + await wait(100); expect(assignFn).toHaveBeenCalled(); const callArgs: string[] = assignFn.mock.calls[0]; @@ -73,6 +77,8 @@ describe('Auth', () => { }); test('Should redirect to url with additional fields', async () => { + Config.update({ mode: ConfigAuthMode.Redirect }); + const params: AuthParams = { scheme: Scheme.LIGHT, lang: Languages.RUS, @@ -80,7 +86,8 @@ describe('Auth', () => { statsFlowSource: AuthStatsFlowSource.BUTTON_ONE_TAP, }; - await Auth.login(params); + void Auth.login(params); + await wait(100); expect(assignFn).toHaveBeenCalled(); const callArgs: string[] = assignFn.mock.calls[0]; @@ -112,7 +119,6 @@ describe('Auth', () => { }); test('Opens a window with default fields', () => { - Config.update({ mode: ConfigAuthMode.InNewTab }); Auth.login().catch(console.error); expect(openFn).toHaveBeenCalled(); @@ -130,6 +136,7 @@ describe('Auth', () => { expect(searchParams.get('app_id')).toEqual(APP_ID.toString()), expect(searchParams.get('redirect_uri')).toEqual(Config.get().redirectUrl), expect(searchParams.get('prompt')).toEqual(''), + expect(searchParams.get('origin')).toEqual(location.protocol + '//' + location.hostname), expect(searchParams.get('stats_info')).toEqual(encodeStatsInfo({ flow_source: AuthStatsFlowSource.AUTH, session_id: 'abc', @@ -140,7 +147,7 @@ describe('Auth', () => { }); test('Opens a window with additional fields', () => { - Config.update({ mode: ConfigAuthMode.InNewTab, prompt: [Prompt.Login, Prompt.Consent] }); + Config.update({ prompt: [Prompt.Login, Prompt.Consent] }); const params: AuthParams = { scheme: Scheme.LIGHT, lang: Languages.RUS, @@ -165,6 +172,7 @@ describe('Auth', () => { expect(searchParams.get('app_id')).toEqual(APP_ID.toString()), expect(searchParams.get('redirect_uri')).toEqual(Config.get().redirectUrl), expect(searchParams.get('prompt')).toEqual([Prompt.Login, Prompt.Consent].join(' ').trim()), + expect(searchParams.get('origin')).toEqual(location.protocol + '//' + location.hostname), expect(searchParams.get('stats_info')).toEqual(encodeStatsInfo({ flow_source: AuthStatsFlowSource.AUTH, session_id: 'abc', @@ -175,7 +183,7 @@ describe('Auth', () => { }); test('Must redirect with payload', async () => { - Config.update({ mode: ConfigAuthMode.InNewTab, redirectUrl: 'https://id.vk.com?query=123' }); + Config.update({ redirectUrl: 'https://id.vk.com?query=123' }); const response: AuthResponse = { code: 'code', @@ -200,7 +208,7 @@ describe('Auth', () => { }); }); - await Auth.login(); + void Auth.login(); expect(openFn).toHaveBeenCalled(); expect(closeFn).toHaveBeenCalled(); expect(assignFn).toHaveBeenCalled(); @@ -221,7 +229,8 @@ describe('Auth', () => { }); test('Should fetch oauth2/auth with authorization_code exchange params', async () => { - await Auth.login(); + void Auth.login(); + const { redirectUrl, app, codeVerifier, state } = Config.get(); const mockResponse = { json() { return Promise.resolve(JSON.parse('{ "state": "state" }')); @@ -248,10 +257,13 @@ describe('Auth', () => { }); test('Should set state and codeVerifier params to cookie after login()', async () => { + Config.update({ mode: ConfigAuthMode.Redirect }); + codeVerifierCookie('1'); stateCookie('1'); - await Auth.login(); + void Auth.login(); + const { codeVerifier, state } = Config.get(); expect(codeVerifier).toEqual(codeVerifierCookie()); diff --git a/__tests__/widgets/floatingOneTap/analytics/FloatingOneTapStatsCollector.tests.ts b/__tests__/widgets/floatingOneTap/analytics/FloatingOneTapStatsCollector.tests.ts index dfe1358..a07218e 100644 --- a/__tests__/widgets/floatingOneTap/analytics/FloatingOneTapStatsCollector.tests.ts +++ b/__tests__/widgets/floatingOneTap/analytics/FloatingOneTapStatsCollector.tests.ts @@ -45,7 +45,7 @@ describe('FloatingOneTapStatsCollector', () => { }); it('Log ScreenProcessed', async () => { - void statsCollector.sendScreenProcessed({ + void statsCollector.sendScreenProceed({ lang: Languages.RUS, scheme: Scheme.DARK, contentId: FloatingOneTapContentId.SIGN_IN_TO_ACCOUNT, @@ -79,6 +79,7 @@ describe('FloatingOneTapStatsCollector', () => { name: 'text_type', value: TEXT_TYPE[FloatingOneTapContentId.SIGN_IN_TO_ACCOUNT], }], + }, } })); }); diff --git a/__tests__/widgets/oneTap/analytics/OneTapStatsCollector.tests.ts b/__tests__/widgets/oneTap/analytics/OneTapStatsCollector.tests.ts index 17d62bd..52509b3 100644 --- a/__tests__/widgets/oneTap/analytics/OneTapStatsCollector.tests.ts +++ b/__tests__/widgets/oneTap/analytics/OneTapStatsCollector.tests.ts @@ -1,12 +1,10 @@ -import { - ProductionStatsEventScreen, - RegistrationStatsEventParams, - ProductionStatsEventTypes, - ProductionStatsTypeActions, -} from '#/core/analytics'; +import { ProductionStatsEventScreen, ProductionStatsEventTypes, ProductionStatsTypeActions, RegistrationStatsEventParams } from '#/core/analytics'; import { Config } from '#/core/config'; +import { Languages, Scheme } from '#/types'; import { request } from '#/utils/request'; +import { OneTapContentId, OneTapSkin } from '#/widgets/oneTap'; import { OneTapStatsCollector } from '#/widgets/oneTap/analytics'; +import { TEXT_TYPE } from '#/widgets/oneTap/analytics/constants'; import { wait } from '../../../utils'; @@ -124,7 +122,12 @@ describe('OneTapStatsCollector', () => { }); it('Log ScreenProceed', async () => { - void statsCollector.sendScreenProceed(); + void statsCollector.sendScreenProceed({ + lang: Languages.RUS, + scheme: Scheme.DARK, + skin: OneTapSkin.Secondary, + contentId: OneTapContentId.CALCULATE, + }); await wait(0); const events = JSON.parse((requestMocked.mock.lastCall?.[1] as any).events)[0]; @@ -138,6 +141,18 @@ describe('OneTapStatsCollector', () => { }, { name: 'unique_session_id', value: 'id', + }, { + name: 'theme_type', + value: Scheme.DARK, + }, { + name: 'style_type', + value: OneTapSkin.Secondary, + }, { + name: 'language', + value: Languages.RUS.toString(), + }, { + name: 'text_type', + value: TEXT_TYPE[OneTapContentId.CALCULATE], }], }))); }); diff --git a/__tests__/widgets/oneTap/oneTap.tests.ts b/__tests__/widgets/oneTap/oneTap.tests.ts index 2215307..d731108 100644 --- a/__tests__/widgets/oneTap/oneTap.tests.ts +++ b/__tests__/widgets/oneTap/oneTap.tests.ts @@ -1,6 +1,6 @@ import { BRIDGE_MESSAGE_TYPE_SDK } from '#/core/bridge/bridge'; import { WidgetEvents } from '#/core/widget'; -import { Config, Languages, OAuthName, OneTapSkin } from '#/index'; +import { Config, Languages, OAuthName, OneTapContentId, OneTapSkin } from '#/index'; import { Scheme } from '#/types'; import { OneTap } from '#/widgets/oneTap'; import { OneTapBridgeMessage } from '#/widgets/oneTap/types'; @@ -39,6 +39,7 @@ describe('OneTap', () => { oneTap = new TestOneTap(); container = document.createElement('div', {}); + document.body.append(container); reporter @@ -83,6 +84,7 @@ describe('OneTap', () => { expect(searchParams.get('redirect_uri')).toEqual('test'), expect(searchParams.get('oauth_version')).toEqual('2'), expect(searchParams.get('uuid')).toEqual('abc'), + expect(searchParams.get('content_id')).toEqual(`${OneTapContentId.SIGN_IN}`), ]; expect([...new Set(searchParams.keys())].length).toEqual(expectArr.length); @@ -196,17 +198,6 @@ describe('OneTap', () => { expect(oneTapEl?.getAttribute('data-state')).toEqual('loaded'); }); - test('Must render oauthlist if oauthList param exists', async () => { - oneTap.render({ - container, - oauthList: [OAuthName.MAIL, OAuthName.OK], - }); - await wait(0); - const oneTapEl = document.querySelector('[data-test-id="oneTap"]'); - const oauthListEl = oneTapEl?.querySelector('[data-test-id="oauthList"]'); - expect(oauthListEl).toBeTruthy(); - }); - test('Must not render oauthlist if only OAuthName.VK', async () => { oneTap.render({ container, diff --git a/demo/index.ts b/demo/index.ts index 5d62465..c72700d 100644 --- a/demo/index.ts +++ b/demo/index.ts @@ -90,7 +90,7 @@ function handleSelectParamsChange() { document.querySelector('html')?.setAttribute('data-scheme', demoStore.scheme); } -['lang', 'scheme', 'contentId', 'oauthes', 'onetapSkin', 'fastAuthEnabledOnetap', 'fastAuthEnabledFloatingOnetap'].forEach((item) => { +['lang', 'scheme', 'floatingOneTapContentId', 'buttonOneTapContentId', 'oauthes', 'onetapSkin', 'fastAuthEnabledOnetap', 'fastAuthEnabledFloatingOnetap'].forEach((item) => { document.getElementById(item)?.addEventListener('change', handleSelectParamsChange); }); @@ -101,8 +101,10 @@ function handleConfigParamsChange() { demoStore = Object.assign(demoStore, { [this.name]: this.value }); saveDemoStoreInLS(demoStore); } -const modeEl = document.getElementById('mode'); -modeEl && modeEl.addEventListener('change', handleConfigParamsChange); +['mode', 'responseMode'].forEach((name) => { + const modeEl = document.getElementById(name); + modeEl && modeEl.addEventListener('change', handleConfigParamsChange); +}); function handleModuleEnabledCheckboxChange() { demoStore = Object.assign(demoStore, { [this.name]: this.checked }); diff --git a/demo/types.ts b/demo/types.ts index a8f1e52..a3303d7 100644 --- a/demo/types.ts +++ b/demo/types.ts @@ -1,19 +1,22 @@ import { TokenResult } from '#/auth/types'; -import { ConfigAuthMode, Prompt } from '#/core/config'; +import { ConfigAuthMode, ConfigResponseMode, Prompt } from '#/core/config'; import { Languages, Scheme } from '#/types'; import { FloatingOneTapContentId } from '#/widgets/floatingOneTap'; +import { OneTapContentId } from '#/widgets/oneTap'; export interface DemoStore { app: number; state: string; codeVerifier: string; codeChallenge: string; - contentId: FloatingOneTapContentId; + floatingOneTapContentId: FloatingOneTapContentId; + buttonOneTapContentId: OneTapContentId; lang: Languages; scheme: Scheme; onetapSkin: 'primary' | 'secondary'; oauthes: '' | 'mail_ru' |'ok_ru' | 'mail_ru,ok_ru'; mode: ConfigAuthMode; + responseMode: ConfigResponseMode; enable_oauthList: boolean; enable_basicAuth: boolean; enable_oneTap: boolean; diff --git a/demo/utils/createModule.ts b/demo/utils/createModule.ts index 4242f9f..fedf069 100644 --- a/demo/utils/createModule.ts +++ b/demo/utils/createModule.ts @@ -1,9 +1,8 @@ -import * as VKID from '#/index'; -import { OAuthName } from '#/index'; -import { OneTapInternalEvents } from '#/widgets/oneTap/events'; +import * as VKID from '@vkid/sdk'; import { showAuthInfoSnackbar, showInitErrorSnackbar } from '#demo/components/snackbar'; import { DemoStore } from '#demo/types'; +import { handleCallbackAuth } from '#demo/utils/handleAuth'; export const createOneTap = (demoStore: DemoStore) => { const container = document.getElementById('oneTap') as HTMLElement; @@ -14,13 +13,15 @@ export const createOneTap = (demoStore: DemoStore) => { lang: Number(demoStore.lang), scheme: demoStore.scheme, skin: demoStore.onetapSkin as VKID.OneTapParams['skin'], - oauthList: demoStore.oauthes ? demoStore.oauthes.split(',') as OAuthName[] : undefined, + oauthList: demoStore.oauthes ? demoStore.oauthes.split(',') as VKID.OAuthName[] : undefined, fastAuthEnabled: !!demoStore.fastAuthEnabledOnetap, + contentId: Number(demoStore.buttonOneTapContentId), }; const oneTap = new VKID.OneTap(); oneTap.on(VKID.WidgetEvents.ERROR, showInitErrorSnackbar) - .on(OneTapInternalEvents.AUTHENTICATION_INFO, showAuthInfoSnackbar) + .on(VKID.OneTapInternalEvents.LOGIN_SUCCESS, handleCallbackAuth) + .on(VKID.OneTapInternalEvents.AUTHENTICATION_INFO, showAuthInfoSnackbar) .render(params); return oneTap; @@ -30,15 +31,17 @@ export const createFloatingOneTap = (demoStore: DemoStore) => { const params = { appName: 'VK ID Demo', showAlternativeLogin: true, - contentId: Number(demoStore.contentId), lang: Number(demoStore.lang), scheme: demoStore.scheme, - oauthList: demoStore.oauthes ? demoStore.oauthes.split(',') as OAuthName[] : undefined, + oauthList: demoStore.oauthes ? demoStore.oauthes.split(',') as VKID.OAuthName[] : undefined, fastAuthEnabled: !!demoStore.fastAuthEnabledFloatingOnetap, + contentId: Number(demoStore.floatingOneTapContentId), }; const floatingOneTap = new VKID.FloatingOneTap(); - floatingOneTap.on(VKID.WidgetEvents.ERROR, showInitErrorSnackbar) + floatingOneTap + .on(VKID.FloatingOneTapInternalEvents.LOGIN_SUCCESS, handleCallbackAuth) + .on(VKID.WidgetEvents.ERROR, showInitErrorSnackbar) .render(params); return floatingOneTap; @@ -48,7 +51,9 @@ export const createOAuthList = (demoStore: DemoStore) => { const container = document.getElementById('oauthList') as HTMLElement; const oauthList = new VKID.OAuthList(); - oauthList.on(VKID.WidgetEvents.ERROR, showInitErrorSnackbar) + oauthList + .on(VKID.OAuthListInternalEvents.LOGIN_SUCCESS, handleCallbackAuth) + .on(VKID.WidgetEvents.ERROR, showInitErrorSnackbar) .render({ container, scheme: demoStore.scheme, diff --git a/demo/utils/handleAuth.ts b/demo/utils/handleAuth.ts index dede963..436f87b 100644 --- a/demo/utils/handleAuth.ts +++ b/demo/utils/handleAuth.ts @@ -1,12 +1,51 @@ -import { Auth } from '@vkid/sdk'; +import * as VKID from '@vkid/sdk'; import { OAUTH2_CODE_TYPE } from '#/auth/constants'; import { showAuthErrorSnackbar, showAuthSuccessSnackbar } from '#demo/components/snackbar'; import { DemoStore } from '#demo/types'; -import { saveDemoStoreInLS } from '#demo/utils/localstorage'; +import { getDemoStoreFromLS, saveDemoStoreInLS } from '#demo/utils/localstorage'; import { initTokenManager } from '#demo/utils/tokenManager'; +interface HandleSuccessAuth { + deviceId: string | null; + code: string | null; + responseType: string | null; + demoStore: DemoStore; + error: string | null; +} + +const handleSuccessAuth = ({ + deviceId, + code, + responseType, + demoStore, + error, +}: HandleSuccessAuth) => { + if (deviceId && code && responseType === OAUTH2_CODE_TYPE) { + if (!demoStore.codeChallenge) { + VKID.Auth.exchangeCode(code, deviceId) + .then((exchangeRes) => { + Object.assign(demoStore, { authResult: { ...exchangeRes, updated_at: Date.now() }, deviceId }); + saveDemoStoreInLS(demoStore); + + // eslint-disable-next-line no-console + console.log('exchange auth code result:', exchangeRes); + showAuthSuccessSnackbar(); + + initTokenManager(demoStore); + }) + .catch((e) => { + console.error('Ошибка Auth.exchangeCode()', e); + showAuthErrorSnackbar(); + }); + } + window.history.pushState({}, document.title, window.location.pathname); + } else if (error) { + showAuthErrorSnackbar(); + } +}; + export const initHandleAuth = (demoStore: DemoStore) => { const urlParams = new URLSearchParams(window.location.search); try { @@ -15,27 +54,25 @@ export const initHandleAuth = (demoStore: DemoStore) => { const error = urlParams.get('error'); const responseType = urlParams.get('type'); - if (deviceId && code && responseType === OAUTH2_CODE_TYPE) { - if (!demoStore.codeChallenge) { - Auth.exchangeCode(code, deviceId) - .then((exchangeRes) => { - Object.assign(demoStore, { authResult: { ...exchangeRes, updated_at: Date.now() }, deviceId }); - saveDemoStoreInLS(demoStore); - - // eslint-disable-next-line no-console - console.log('exchange auth code result:', exchangeRes); - showAuthSuccessSnackbar(); - - initTokenManager(demoStore); - }) - .catch((e) => { - console.error('Ошибка Auth.exchangeCode()', e); - showAuthErrorSnackbar(); - }); - } - window.history.pushState({}, document.title, window.location.pathname); - } else if (error) { - showAuthErrorSnackbar(); - } + handleSuccessAuth({ + code, + deviceId, + error, + responseType, + demoStore, + }); } catch {} }; + +export const handleCallbackAuth = (params: VKID.AuthResponse) => { + const demoStore = getDemoStoreFromLS(); + const { code, device_id, type } = params; + + handleSuccessAuth({ + code, + deviceId: device_id, + error: '', + responseType: type, + demoStore, + }); +}; diff --git a/demo/utils/initAuthButtons.ts b/demo/utils/initAuthButtons.ts index edf29df..c64ff59 100644 --- a/demo/utils/initAuthButtons.ts +++ b/demo/utils/initAuthButtons.ts @@ -1,6 +1,7 @@ import * as VKID from '#/index'; import { DemoStore } from '#demo/types'; +import { handleCallbackAuth } from '#demo/utils/handleAuth'; export const initAuthButtons = (demoStore: DemoStore) => { if (!demoStore.enable_basicAuth) { return; } @@ -43,9 +44,11 @@ export const initAuthButtons = (demoStore: DemoStore) => { button.onclick = () => VKID.Auth.login({ lang: demoStore.lang, scheme: demoStore.scheme, - }).catch((e: VKID.AuthError) => { - console.error('Ошибка Auth.login()', e); - }); + }) + .then(handleCallbackAuth) + .catch((e: VKID.AuthError) => { + console.error('Ошибка Auth.login()', e); + }); }); }; diff --git a/demo/utils/initModuleParamsList.ts b/demo/utils/initModuleParamsList.ts index c463a54..ae470a7 100644 --- a/demo/utils/initModuleParamsList.ts +++ b/demo/utils/initModuleParamsList.ts @@ -1,4 +1,4 @@ -import { Languages, Scheme, ConfigAuthMode, FloatingOneTapContentId, OneTapSkin, OAuthName, Prompt } from '@vkid/sdk'; +import { Languages, Scheme, ConfigAuthMode, ConfigResponseMode, FloatingOneTapContentId, OneTapContentId, OneTapSkin, OAuthName, Prompt } from '@vkid/sdk'; import { DemoStore } from '#demo/types'; @@ -22,17 +22,36 @@ const schemeOptions = [ ]; const modeOptions = [ - { value: ConfigAuthMode.Redirect, text: 'Текущая вкладка' }, { value: ConfigAuthMode.InNewTab, text: 'Новая вкладка' }, + { value: ConfigAuthMode.Redirect, text: 'Текущая вкладка' }, + { value: ConfigAuthMode.InNewWindow, text: 'Новое окно' }, ]; -const contentIdOptions = [ +const responseModeOptions = [ + { value: ConfigResponseMode.Redirect, text: 'Redirect' }, + { value: ConfigResponseMode.Callback, text: 'Callback' }, +]; + +const floatingOneTapContentIdOptions = [ { value: FloatingOneTapContentId.SIGN_IN_TO_SERVICE, text: 'Войти в сервис' }, { value: FloatingOneTapContentId.SIGN_IN_TO_ACCOUNT, text: 'Войти в аккаунт' }, { value: FloatingOneTapContentId.REGISTRATION_FOR_EVENT, text: 'Регистрация на мероприятие' }, { value: FloatingOneTapContentId.SUBMIT_APPLICATIONS, text: 'Подача заявки' }, { value: FloatingOneTapContentId.MAKE_ORDER_WITH_SERVICE, text: 'Оформление заказа 1' }, { value: FloatingOneTapContentId.MAKE_ORDER_WITHOUT_SERVICE, text: 'Оформление заказа 2' }, + { value: FloatingOneTapContentId.FAST_REGISTRATION, text: 'Быстрая регистрация в сервисе' }, +]; + +const buttonOneTapContentIdOptions = [ + { value: OneTapContentId.SIGN_IN, text: 'Войти' }, + { value: OneTapContentId.SIGN_UP, text: 'Записаться' }, + { value: OneTapContentId.GET, text: 'Получить' }, + { value: OneTapContentId.OPEN, text: 'Открыть' }, + { value: OneTapContentId.CALCULATE, text: 'Рассчитать' }, + { value: OneTapContentId.ORDER, text: 'Заказать' }, + { value: OneTapContentId.PLACE_ORDER, text: 'Оформить заказ' }, + { value: OneTapContentId.SUBMIT_REQUEST, text: 'Оставить заявку' }, + { value: OneTapContentId.PARTICIPATE, text: 'Участвовать' }, ]; const onetapSkinOptions = [ @@ -82,9 +101,19 @@ export const initModuleParamsList = (store: DemoStore) => { ${modeOptions.map(({ text, value }) => ``).join('')}
- - + ${responseModeOptions.map(({ text, value }) => ``).join('')} + +
+ + +
+ +
diff --git a/demo/utils/localstorage.ts b/demo/utils/localstorage.ts index 1a7bf9c..8ce58c9 100644 --- a/demo/utils/localstorage.ts +++ b/demo/utils/localstorage.ts @@ -1,5 +1,4 @@ -import * as VKID from '#/index'; -import { ConfigAuthMode } from '#/index'; +import * as VKID from '@vkid/sdk'; import { DemoStore } from '#demo/types'; @@ -25,12 +24,14 @@ export const getDemoStoreFromLS = (): DemoStore => { state: '', codeVerifier: '', codeChallenge: '', - contentId: VKID.FloatingOneTapContentId.SIGN_IN_TO_SERVICE, + floatingOneTapContentId: VKID.FloatingOneTapContentId.SIGN_IN_TO_SERVICE, + buttonOneTapContentId: VKID.OneTapContentId.SIGN_IN, lang: VKID.Languages.RUS, scheme: VKID.Scheme.LIGHT, onetapSkin: 'primary', oauthes: '', - mode: ConfigAuthMode.Redirect, + mode: VKID.ConfigAuthMode.InNewTab, + responseMode: VKID.ConfigResponseMode.Redirect, enable_oauthList: true, enable_basicAuth: true, @@ -48,7 +49,13 @@ export const getDemoStoreFromLS = (): DemoStore => { const stringStore = localStorage.getItem('vkid_demo:store'); if (stringStore) { const lsStore = JSON.parse(stringStore); - return { ...defaultDemoStore, ...lsStore }; + return { + ...defaultDemoStore, + ...lsStore, + lang: Number(lsStore.lang), + floatingOneTapContentId: Number(lsStore.floatingOneTapContentId), + buttonOneTapContentId: Number(lsStore.buttonOneTapContentId), + }; } saveDemoStoreInLS(defaultDemoStore); } catch (e) {} diff --git a/docs/assets/search.js b/docs/assets/search.js index 121d134..fcd2568 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +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\":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\":[]}}"); \ No newline at end of file +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\":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\":\"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,48.52]],[\"comment/0\",[]],[\"name/1\",[1,43.412]],[\"comment/1\",[]],[\"name/2\",[2,48.52]],[\"comment/2\",[]],[\"name/3\",[3,48.52]],[\"comment/3\",[]],[\"name/4\",[4,48.52]],[\"comment/4\",[]],[\"name/5\",[5,48.52]],[\"comment/5\",[]],[\"name/6\",[6,48.52]],[\"comment/6\",[]],[\"name/7\",[7,48.52]],[\"comment/7\",[]],[\"name/8\",[8,48.52]],[\"comment/8\",[]],[\"name/9\",[9,48.52]],[\"comment/9\",[]],[\"name/10\",[10,48.52]],[\"comment/10\",[]],[\"name/11\",[11,48.52]],[\"comment/11\",[]],[\"name/12\",[12,48.52]],[\"comment/12\",[]],[\"name/13\",[13,48.52]],[\"comment/13\",[]],[\"name/14\",[14,48.52]],[\"comment/14\",[]],[\"name/15\",[15,48.52]],[\"comment/15\",[]],[\"name/16\",[16,48.52]],[\"comment/16\",[]],[\"name/17\",[17,48.52]],[\"comment/17\",[]],[\"name/18\",[18,35.527]],[\"comment/18\",[]],[\"name/19\",[19,48.52]],[\"comment/19\",[]],[\"name/20\",[20,48.52]],[\"comment/20\",[]],[\"name/21\",[21,48.52]],[\"comment/21\",[]],[\"name/22\",[22,35.527]],[\"comment/22\",[]],[\"name/23\",[23,48.52]],[\"comment/23\",[]],[\"name/24\",[24,48.52]],[\"comment/24\",[]],[\"name/25\",[25,43.412]],[\"comment/25\",[]],[\"name/26\",[26,48.52]],[\"comment/26\",[]],[\"name/27\",[27,43.412]],[\"comment/27\",[]],[\"name/28\",[28,48.52]],[\"comment/28\",[]],[\"name/29\",[29,48.52]],[\"comment/29\",[]],[\"name/30\",[30,48.52]],[\"comment/30\",[]],[\"name/31\",[27,43.412]],[\"comment/31\",[]],[\"name/32\",[31,48.52]],[\"comment/32\",[]],[\"name/33\",[32,48.52]],[\"comment/33\",[]],[\"name/34\",[33,48.52]],[\"comment/34\",[]],[\"name/35\",[34,48.52]],[\"comment/35\",[]],[\"name/36\",[35,43.412]],[\"comment/36\",[]],[\"name/37\",[36,48.52]],[\"comment/37\",[]],[\"name/38\",[37,48.52]],[\"comment/38\",[]],[\"name/39\",[38,48.52]],[\"comment/39\",[]],[\"name/40\",[39,48.52]],[\"comment/40\",[]],[\"name/41\",[40,48.52]],[\"comment/41\",[]],[\"name/42\",[41,37.534]],[\"comment/42\",[]],[\"name/43\",[42,48.52]],[\"comment/43\",[]],[\"name/44\",[43,48.52]],[\"comment/44\",[]],[\"name/45\",[44,43.412]],[\"comment/45\",[]],[\"name/46\",[1,43.412]],[\"comment/46\",[]],[\"name/47\",[22,35.527]],[\"comment/47\",[]],[\"name/48\",[35,43.412]],[\"comment/48\",[]],[\"name/49\",[45,48.52]],[\"comment/49\",[]],[\"name/50\",[46,48.52]],[\"comment/50\",[]],[\"name/51\",[47,48.52]],[\"comment/51\",[]],[\"name/52\",[48,48.52]],[\"comment/52\",[]],[\"name/53\",[49,48.52]],[\"comment/53\",[]],[\"name/54\",[50,48.52]],[\"comment/54\",[]],[\"name/55\",[51,48.52]],[\"comment/55\",[]],[\"name/56\",[52,48.52]],[\"comment/56\",[]],[\"name/57\",[53,48.52]],[\"comment/57\",[]],[\"name/58\",[54,48.52]],[\"comment/58\",[]],[\"name/59\",[55,48.52]],[\"comment/59\",[]],[\"name/60\",[56,48.52]],[\"comment/60\",[]],[\"name/61\",[57,48.52]],[\"comment/61\",[]],[\"name/62\",[58,48.52]],[\"comment/62\",[]],[\"name/63\",[59,48.52]],[\"comment/63\",[]],[\"name/64\",[41,37.534]],[\"comment/64\",[]],[\"name/65\",[60,43.412]],[\"comment/65\",[]],[\"name/66\",[61,48.52]],[\"comment/66\",[]],[\"name/67\",[18,35.527]],[\"comment/67\",[]],[\"name/68\",[62,37.534]],[\"comment/68\",[]],[\"name/69\",[63,48.52]],[\"comment/69\",[]],[\"name/70\",[60,43.412]],[\"comment/70\",[]],[\"name/71\",[64,48.52]],[\"comment/71\",[]],[\"name/72\",[41,37.534]],[\"comment/72\",[]],[\"name/73\",[65,48.52]],[\"comment/73\",[]],[\"name/74\",[66,43.412]],[\"comment/74\",[]],[\"name/75\",[67,48.52]],[\"comment/75\",[]],[\"name/76\",[68,48.52]],[\"comment/76\",[]],[\"name/77\",[69,48.52]],[\"comment/77\",[]],[\"name/78\",[70,43.412]],[\"comment/78\",[]],[\"name/79\",[71,48.52]],[\"comment/79\",[]],[\"name/80\",[72,48.52]],[\"comment/80\",[]],[\"name/81\",[66,43.412]],[\"comment/81\",[]],[\"name/82\",[73,48.52]],[\"comment/82\",[]],[\"name/83\",[74,48.52]],[\"comment/83\",[]],[\"name/84\",[41,37.534]],[\"comment/84\",[]],[\"name/85\",[75,48.52]],[\"comment/85\",[]],[\"name/86\",[76,48.52]],[\"comment/86\",[]],[\"name/87\",[44,43.412]],[\"comment/87\",[]],[\"name/88\",[77,48.52]],[\"comment/88\",[]],[\"name/89\",[70,43.412]],[\"comment/89\",[]],[\"name/90\",[78,48.52]],[\"comment/90\",[]],[\"name/91\",[22,35.527]],[\"comment/91\",[]],[\"name/92\",[79,40.047]],[\"comment/92\",[]],[\"name/93\",[80,40.047]],[\"comment/93\",[]],[\"name/94\",[81,40.047]],[\"comment/94\",[]],[\"name/95\",[82,40.047]],[\"comment/95\",[]],[\"name/96\",[83,40.047]],[\"comment/96\",[]],[\"name/97\",[84,40.047]],[\"comment/97\",[]],[\"name/98\",[85,48.52]],[\"comment/98\",[]],[\"name/99\",[86,43.412]],[\"comment/99\",[]],[\"name/100\",[87,43.412]],[\"comment/100\",[]],[\"name/101\",[88,48.52]],[\"comment/101\",[]],[\"name/102\",[89,37.534]],[\"comment/102\",[]],[\"name/103\",[90,43.412]],[\"comment/103\",[]],[\"name/104\",[91,43.412]],[\"comment/104\",[]],[\"name/105\",[92,43.412]],[\"comment/105\",[]],[\"name/106\",[18,35.527]],[\"comment/106\",[]],[\"name/107\",[62,37.534]],[\"comment/107\",[]],[\"name/108\",[93,48.52]],[\"comment/108\",[]],[\"name/109\",[94,48.52]],[\"comment/109\",[]],[\"name/110\",[95,43.412]],[\"comment/110\",[]],[\"name/111\",[96,43.412]],[\"comment/111\",[]],[\"name/112\",[97,48.52]],[\"comment/112\",[]],[\"name/113\",[98,48.52]],[\"comment/113\",[]],[\"name/114\",[99,48.52]],[\"comment/114\",[]],[\"name/115\",[100,48.52]],[\"comment/115\",[]],[\"name/116\",[101,48.52]],[\"comment/116\",[]],[\"name/117\",[102,48.52]],[\"comment/117\",[]],[\"name/118\",[25,43.412]],[\"comment/118\",[]],[\"name/119\",[103,48.52]],[\"comment/119\",[]],[\"name/120\",[104,48.52]],[\"comment/120\",[]],[\"name/121\",[105,48.52]],[\"comment/121\",[]],[\"name/122\",[106,48.52]],[\"comment/122\",[]],[\"name/123\",[107,48.52]],[\"comment/123\",[]],[\"name/124\",[108,48.52]],[\"comment/124\",[]],[\"name/125\",[109,48.52]],[\"comment/125\",[]],[\"name/126\",[110,40.047]],[\"comment/126\",[]],[\"name/127\",[111,43.412]],[\"comment/127\",[]],[\"name/128\",[112,43.412]],[\"comment/128\",[]],[\"name/129\",[113,43.412]],[\"comment/129\",[]],[\"name/130\",[114,48.52]],[\"comment/130\",[]],[\"name/131\",[115,48.52]],[\"comment/131\",[]],[\"name/132\",[22,35.527]],[\"comment/132\",[]],[\"name/133\",[79,40.047]],[\"comment/133\",[]],[\"name/134\",[80,40.047]],[\"comment/134\",[]],[\"name/135\",[81,40.047]],[\"comment/135\",[]],[\"name/136\",[82,40.047]],[\"comment/136\",[]],[\"name/137\",[83,40.047]],[\"comment/137\",[]],[\"name/138\",[84,40.047]],[\"comment/138\",[]],[\"name/139\",[116,48.52]],[\"comment/139\",[]],[\"name/140\",[117,48.52]],[\"comment/140\",[]],[\"name/141\",[90,43.412]],[\"comment/141\",[]],[\"name/142\",[86,43.412]],[\"comment/142\",[]],[\"name/143\",[118,48.52]],[\"comment/143\",[]],[\"name/144\",[89,37.534]],[\"comment/144\",[]],[\"name/145\",[91,43.412]],[\"comment/145\",[]],[\"name/146\",[18,35.527]],[\"comment/146\",[]],[\"name/147\",[62,37.534]],[\"comment/147\",[]],[\"name/148\",[119,48.52]],[\"comment/148\",[]],[\"name/149\",[120,48.52]],[\"comment/149\",[]],[\"name/150\",[121,48.52]],[\"comment/150\",[]],[\"name/151\",[122,48.52]],[\"comment/151\",[]],[\"name/152\",[123,48.52]],[\"comment/152\",[]],[\"name/153\",[124,48.52]],[\"comment/153\",[]],[\"name/154\",[125,48.52]],[\"comment/154\",[]],[\"name/155\",[126,48.52]],[\"comment/155\",[]],[\"name/156\",[127,48.52]],[\"comment/156\",[]],[\"name/157\",[128,48.52]],[\"comment/157\",[]],[\"name/158\",[129,48.52]],[\"comment/158\",[]],[\"name/159\",[130,48.52]],[\"comment/159\",[]],[\"name/160\",[131,48.52]],[\"comment/160\",[]],[\"name/161\",[110,40.047]],[\"comment/161\",[]],[\"name/162\",[111,43.412]],[\"comment/162\",[]],[\"name/163\",[112,43.412]],[\"comment/163\",[]],[\"name/164\",[113,43.412]],[\"comment/164\",[]],[\"name/165\",[89,37.534]],[\"comment/165\",[]],[\"name/166\",[22,35.527]],[\"comment/166\",[]],[\"name/167\",[79,40.047]],[\"comment/167\",[]],[\"name/168\",[80,40.047]],[\"comment/168\",[]],[\"name/169\",[81,40.047]],[\"comment/169\",[]],[\"name/170\",[82,40.047]],[\"comment/170\",[]],[\"name/171\",[83,40.047]],[\"comment/171\",[]],[\"name/172\",[84,40.047]],[\"comment/172\",[]],[\"name/173\",[132,48.52]],[\"comment/173\",[]],[\"name/174\",[87,43.412]],[\"comment/174\",[]],[\"name/175\",[89,37.534]],[\"comment/175\",[]],[\"name/176\",[92,43.412]],[\"comment/176\",[]],[\"name/177\",[18,35.527]],[\"comment/177\",[]],[\"name/178\",[62,37.534]],[\"comment/178\",[]],[\"name/179\",[133,48.52]],[\"comment/179\",[]],[\"name/180\",[134,43.412]],[\"comment/180\",[]],[\"name/181\",[135,43.412]],[\"comment/181\",[]],[\"name/182\",[136,48.52]],[\"comment/182\",[]],[\"name/183\",[137,48.52]],[\"comment/183\",[]],[\"name/184\",[134,43.412]],[\"comment/184\",[]],[\"name/185\",[135,43.412]],[\"comment/185\",[]],[\"name/186\",[138,48.52]],[\"comment/186\",[]],[\"name/187\",[95,43.412]],[\"comment/187\",[]],[\"name/188\",[96,43.412]],[\"comment/188\",[]],[\"name/189\",[139,48.52]],[\"comment/189\",[]],[\"name/190\",[110,40.047]],[\"comment/190\",[]]],\"invertedIndex\":[[\"access_token\",{\"_index\":72,\"name\":{\"80\":{}},\"comment\":{}}],[\"app\",{\"_index\":39,\"name\":{\"40\":{}},\"comment\":{}}],[\"appname\",{\"_index\":118,\"name\":{\"143\":{}},\"comment\":{}}],[\"auth\",{\"_index\":1,\"name\":{\"1\":{},\"46\":{}},\"comment\":{}}],[\"authentication_info\",{\"_index\":114,\"name\":{\"130\":{}},\"comment\":{}}],[\"autherror\",{\"_index\":56,\"name\":{\"60\":{}},\"comment\":{}}],[\"autherrorcode\",{\"_index\":50,\"name\":{\"54\":{}},\"comment\":{}}],[\"authorizationfailed\",{\"_index\":54,\"name\":{\"58\":{}},\"comment\":{}}],[\"authparams\",{\"_index\":61,\"name\":{\"66\":{}},\"comment\":{}}],[\"authresponse\",{\"_index\":63,\"name\":{\"69\":{}},\"comment\":{}}],[\"bel\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"borderradius\",{\"_index\":96,\"name\":{\"111\":{},\"188\":{}},\"comment\":{}}],[\"bottom\",{\"_index\":130,\"name\":{\"159\":{}},\"comment\":{}}],[\"calculate\",{\"_index\":104,\"name\":{\"120\":{}},\"comment\":{}}],[\"callback\",{\"_index\":31,\"name\":{\"32\":{}},\"comment\":{}}],[\"cannotcreatenewtab\",{\"_index\":52,\"name\":{\"56\":{}},\"comment\":{}}],[\"close\",{\"_index\":80,\"name\":{\"93\":{},\"134\":{},\"168\":{}},\"comment\":{}}],[\"code\",{\"_index\":60,\"name\":{\"65\":{},\"70\":{}},\"comment\":{}}],[\"codechallenge\",{\"_index\":43,\"name\":{\"44\":{}},\"comment\":{}}],[\"codeverifier\",{\"_index\":42,\"name\":{\"43\":{}},\"comment\":{}}],[\"config\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"configauthmode\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"configdata\",{\"_index\":38,\"name\":{\"39\":{}},\"comment\":{}}],[\"configresponsemode\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"consent\",{\"_index\":36,\"name\":{\"37\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":22,\"name\":{\"22\":{},\"47\":{},\"91\":{},\"132\":{},\"166\":{}},\"comment\":{}}],[\"container\",{\"_index\":92,\"name\":{\"105\":{},\"176\":{}},\"comment\":{}}],[\"contentid\",{\"_index\":90,\"name\":{\"103\":{},\"141\":{}},\"comment\":{}}],[\"core/config\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"dark\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"default\",{\"_index\":33,\"name\":{\"34\":{}},\"comment\":{}}],[\"device_id\",{\"_index\":65,\"name\":{\"73\":{}},\"comment\":{}}],[\"eng\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"error\",{\"_index\":57,\"name\":{\"61\":{}},\"comment\":{}}],[\"error_description\",{\"_index\":58,\"name\":{\"62\":{}},\"comment\":{}}],[\"error_uri\",{\"_index\":59,\"name\":{\"63\":{}},\"comment\":{}}],[\"eventnotsupported\",{\"_index\":51,\"name\":{\"55\":{}},\"comment\":{}}],[\"exchangecode\",{\"_index\":45,\"name\":{\"49\":{}},\"comment\":{}}],[\"expires_in\",{\"_index\":66,\"name\":{\"74\":{},\"81\":{}},\"comment\":{}}],[\"externaloauthname\",{\"_index\":137,\"name\":{\"183\":{}},\"comment\":{}}],[\"fast_registration\",{\"_index\":126,\"name\":{\"155\":{}},\"comment\":{}}],[\"fastauthenabled\",{\"_index\":91,\"name\":{\"104\":{},\"145\":{}},\"comment\":{}}],[\"floatingonetap\",{\"_index\":115,\"name\":{\"131\":{}},\"comment\":{}}],[\"floatingonetapcontentid\",{\"_index\":119,\"name\":{\"148\":{}},\"comment\":{}}],[\"floatingonetapindent\",{\"_index\":127,\"name\":{\"156\":{}},\"comment\":{}}],[\"floatingonetapinternalevents\",{\"_index\":131,\"name\":{\"160\":{}},\"comment\":{}}],[\"floatingonetapparams\",{\"_index\":116,\"name\":{\"139\":{}},\"comment\":{}}],[\"fra\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"german\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"get\",{\"_index\":25,\"name\":{\"25\":{},\"118\":{}},\"comment\":{}}],[\"height\",{\"_index\":95,\"name\":{\"110\":{},\"187\":{}},\"comment\":{}}],[\"hide\",{\"_index\":82,\"name\":{\"95\":{},\"136\":{},\"170\":{}},\"comment\":{}}],[\"id_token\",{\"_index\":73,\"name\":{\"82\":{}},\"comment\":{}}],[\"indent\",{\"_index\":117,\"name\":{\"140\":{}},\"comment\":{}}],[\"init\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"innewtab\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"innewwindow\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"kaz\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"lang\",{\"_index\":62,\"name\":{\"68\":{},\"107\":{},\"147\":{},\"178\":{}},\"comment\":{}}],[\"languages\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"light\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"login\",{\"_index\":35,\"name\":{\"36\":{},\"48\":{}},\"comment\":{}}],[\"login_success\",{\"_index\":110,\"name\":{\"126\":{},\"161\":{},\"190\":{}},\"comment\":{}}],[\"logout\",{\"_index\":47,\"name\":{\"51\":{}},\"comment\":{}}],[\"logoutresult\",{\"_index\":67,\"name\":{\"75\":{}},\"comment\":{}}],[\"mail\",{\"_index\":135,\"name\":{\"181\":{},\"185\":{}},\"comment\":{}}],[\"make_order_with_service\",{\"_index\":124,\"name\":{\"153\":{}},\"comment\":{}}],[\"make_order_without_service\",{\"_index\":125,\"name\":{\"154\":{}},\"comment\":{}}],[\"newtabhasbeenclosed\",{\"_index\":53,\"name\":{\"57\":{}},\"comment\":{}}],[\"none\",{\"_index\":34,\"name\":{\"35\":{}},\"comment\":{}}],[\"not_authorized\",{\"_index\":113,\"name\":{\"129\":{},\"164\":{}},\"comment\":{}}],[\"oauthlist\",{\"_index\":89,\"name\":{\"102\":{},\"144\":{},\"165\":{},\"175\":{}},\"comment\":{}}],[\"oauthlistinternalevents\",{\"_index\":139,\"name\":{\"189\":{}},\"comment\":{}}],[\"oauthlistparams\",{\"_index\":132,\"name\":{\"173\":{}},\"comment\":{}}],[\"oauthliststyles\",{\"_index\":138,\"name\":{\"186\":{}},\"comment\":{}}],[\"oauthname\",{\"_index\":133,\"name\":{\"179\":{}},\"comment\":{}}],[\"off\",{\"_index\":84,\"name\":{\"97\":{},\"138\":{},\"172\":{}},\"comment\":{}}],[\"ok\",{\"_index\":134,\"name\":{\"180\":{},\"184\":{}},\"comment\":{}}],[\"on\",{\"_index\":83,\"name\":{\"96\":{},\"137\":{},\"171\":{}},\"comment\":{}}],[\"onetap\",{\"_index\":78,\"name\":{\"90\":{}},\"comment\":{}}],[\"onetapcontentid\",{\"_index\":100,\"name\":{\"115\":{}},\"comment\":{}}],[\"onetapinternalevents\",{\"_index\":109,\"name\":{\"125\":{}},\"comment\":{}}],[\"onetapparams\",{\"_index\":85,\"name\":{\"98\":{}},\"comment\":{}}],[\"onetapskin\",{\"_index\":97,\"name\":{\"112\":{}},\"comment\":{}}],[\"onetapstyles\",{\"_index\":93,\"name\":{\"108\":{}},\"comment\":{}}],[\"open\",{\"_index\":103,\"name\":{\"119\":{}},\"comment\":{}}],[\"order\",{\"_index\":105,\"name\":{\"121\":{}},\"comment\":{}}],[\"participate\",{\"_index\":108,\"name\":{\"124\":{}},\"comment\":{}}],[\"place_order\",{\"_index\":106,\"name\":{\"122\":{}},\"comment\":{}}],[\"pol\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"primary\",{\"_index\":98,\"name\":{\"113\":{}},\"comment\":{}}],[\"prompt\",{\"_index\":32,\"name\":{\"33\":{}},\"comment\":{}}],[\"publicinfo\",{\"_index\":49,\"name\":{\"53\":{}},\"comment\":{}}],[\"publicinforesult\",{\"_index\":69,\"name\":{\"77\":{}},\"comment\":{}}],[\"redirect\",{\"_index\":27,\"name\":{\"27\":{},\"31\":{}},\"comment\":{}}],[\"redirecturl\",{\"_index\":40,\"name\":{\"41\":{}},\"comment\":{}}],[\"refresh_token\",{\"_index\":74,\"name\":{\"83\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":46,\"name\":{\"50\":{}},\"comment\":{}}],[\"registration_for_event\",{\"_index\":122,\"name\":{\"151\":{}},\"comment\":{}}],[\"render\",{\"_index\":79,\"name\":{\"92\":{},\"133\":{},\"167\":{}},\"comment\":{}}],[\"response\",{\"_index\":68,\"name\":{\"76\":{}},\"comment\":{}}],[\"right\",{\"_index\":129,\"name\":{\"158\":{}},\"comment\":{}}],[\"rus\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"scheme\",{\"_index\":18,\"name\":{\"18\":{},\"67\":{},\"106\":{},\"146\":{},\"177\":{}},\"comment\":{}}],[\"scope\",{\"_index\":44,\"name\":{\"45\":{},\"87\":{}},\"comment\":{}}],[\"secondary\",{\"_index\":99,\"name\":{\"114\":{}},\"comment\":{}}],[\"selectaccount\",{\"_index\":37,\"name\":{\"38\":{}},\"comment\":{}}],[\"show\",{\"_index\":81,\"name\":{\"94\":{},\"135\":{},\"169\":{}},\"comment\":{}}],[\"show_full_auth\",{\"_index\":111,\"name\":{\"127\":{},\"162\":{}},\"comment\":{}}],[\"showalternativelogin\",{\"_index\":86,\"name\":{\"99\":{},\"142\":{}},\"comment\":{}}],[\"sign_in\",{\"_index\":101,\"name\":{\"116\":{}},\"comment\":{}}],[\"sign_in_to_account\",{\"_index\":121,\"name\":{\"150\":{}},\"comment\":{}}],[\"sign_in_to_service\",{\"_index\":120,\"name\":{\"149\":{}},\"comment\":{}}],[\"sign_up\",{\"_index\":102,\"name\":{\"117\":{}},\"comment\":{}}],[\"skin\",{\"_index\":88,\"name\":{\"101\":{}},\"comment\":{}}],[\"spa\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"start_authorize\",{\"_index\":112,\"name\":{\"128\":{},\"163\":{}},\"comment\":{}}],[\"state\",{\"_index\":41,\"name\":{\"42\":{},\"64\":{},\"72\":{},\"84\":{}},\"comment\":{}}],[\"statemismatch\",{\"_index\":55,\"name\":{\"59\":{}},\"comment\":{}}],[\"styles\",{\"_index\":87,\"name\":{\"100\":{},\"174\":{}},\"comment\":{}}],[\"submit_applications\",{\"_index\":123,\"name\":{\"152\":{}},\"comment\":{}}],[\"submit_request\",{\"_index\":107,\"name\":{\"123\":{}},\"comment\":{}}],[\"token_type\",{\"_index\":75,\"name\":{\"85\":{}},\"comment\":{}}],[\"tokenresult\",{\"_index\":71,\"name\":{\"79\":{}},\"comment\":{}}],[\"top\",{\"_index\":128,\"name\":{\"157\":{}},\"comment\":{}}],[\"turkey\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"type\",{\"_index\":64,\"name\":{\"71\":{}},\"comment\":{}}],[\"types\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"ukr\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"update\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"user\",{\"_index\":70,\"name\":{\"78\":{},\"89\":{}},\"comment\":{}}],[\"user_id\",{\"_index\":76,\"name\":{\"86\":{}},\"comment\":{}}],[\"userinfo\",{\"_index\":48,\"name\":{\"52\":{}},\"comment\":{}}],[\"userinforesult\",{\"_index\":77,\"name\":{\"88\":{}},\"comment\":{}}],[\"uzb\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"vk\",{\"_index\":136,\"name\":{\"182\":{}},\"comment\":{}}],[\"widgets/floatingonetap\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"widgets/oauthlist\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"widgets/onetap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"width\",{\"_index\":94,\"name\":{\"109\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/classes/auth.Auth.html b/docs/classes/auth.Auth.html index 7692b8b..00a3337 100644 --- a/docs/classes/auth.Auth.html +++ b/docs/classes/auth.Auth.html @@ -1,4 +1,4 @@ -Auth | @vkid/sdk - v2.1.0
+Auth | @vkid/sdk - v2.2.0
  • Preparing search index...
  • -
  • The search index is not available
@vkid/sdk - v2.1.0
+
  • The search index is not available
  • @vkid/sdk - v2.2.0
    @@ -143,7 +143,7 @@

    refreshToken
  • userInfo
  • @@ -177,6 +178,7 @@

    @@ -185,6 +187,7 @@

    @@ -95,7 +95,7 @@

    init
  • update
  • @@ -129,6 +130,7 @@

    @@ -137,6 +139,7 @@

    @@ -171,6 +172,7 @@

    @@ -179,6 +181,7 @@

    @@ -171,6 +172,7 @@

    @@ -179,6 +181,7 @@

    @@ -171,6 +172,7 @@

    @@ -179,6 +181,7 @@

    @@ -113,6 +114,7 @@

    @@ -121,6 +123,7 @@

    @@ -88,6 +89,7 @@

    @@ -96,6 +98,7 @@

    @@ -93,6 +94,7 @@

    @@ -101,6 +103,7 @@

    @@ -88,6 +89,7 @@

    @@ -96,6 +98,7 @@

    Contributing

    Проект VK ID SDK имеет открытый исходный код на GitHub, и вы можете присоединиться к его доработке — мы будем благодарны за внесение улучшений и исправление возможных ошибок.

    Code of Conduct

    Если вы собираетесь вносить изменения в проект VK ID SDK, следуйте правилам разработки. Они помогут понять, какие действия возможны, а какие недопустимы.

    @@ -108,7 +108,7 @@

    Code of Conduct
  • Contributing Guide
  • @@ -142,6 +143,7 @@

    @@ -150,6 +152,7 @@

    @@ -117,6 +118,7 @@

    @@ -125,6 +127,7 @@

    @@ -96,6 +97,7 @@

    @@ -104,6 +106,7 @@

    @@ -117,6 +118,7 @@

    @@ -125,6 +127,7 @@

    @@ -87,6 +88,7 @@

    @@ -95,6 +97,7 @@

    @@ -87,6 +88,7 @@

    @@ -95,6 +97,7 @@

    @@ -122,6 +123,7 @@

    @@ -130,6 +132,7 @@

    @@ -87,6 +88,7 @@

    @@ -95,6 +97,7 @@

    @@ -112,6 +113,7 @@

    @@ -120,6 +122,7 @@

    • ExternalOAuthName
    • +
    • OAuthListInternalEvents
    • OAuthName
    • OAuthList
    • OAuthListParams
    • @@ -128,6 +131,8 @@

      widgets/oneTap
        +
      • OneTapContentId
      • +
      • OneTapInternalEvents
      • OneTapSkin
      • OneTap
      • OneTapParams
      • diff --git a/docs/interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html b/docs/interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html index 20bba2b..3f97353 100644 --- a/docs/interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html +++ b/docs/interfaces/widgets_floatingOneTap.FloatingOneTapIndent.html @@ -1,4 +1,4 @@ -FloatingOneTapIndent | @vkid/sdk - v2.1.0
        +FloatingOneTapIndent | @vkid/sdk - v2.2.0
        • Preparing search index...
        • -
        • The search index is not available
        @vkid/sdk - v2.1.0
        +
      • The search index is not available
      @vkid/sdk - v2.2.0
      @@ -69,7 +69,7 @@

      right
    • top
    @@ -103,6 +104,7 @@

    @@ -111,6 +113,7 @@

    • ExternalOAuthName
    • +
    • OAuthListInternalEvents
    • OAuthName
    • OAuthList
    • OAuthListParams
    • @@ -119,6 +122,8 @@

      widgets/oneTap
        +
      • OneTapContentId
      • +
      • OneTapInternalEvents
      • OneTapSkin
      • OneTap
      • OneTapParams
      • diff --git a/docs/interfaces/widgets_floatingOneTap.FloatingOneTapParams.html b/docs/interfaces/widgets_floatingOneTap.FloatingOneTapParams.html index 3402e7f..9b39e9c 100644 --- a/docs/interfaces/widgets_floatingOneTap.FloatingOneTapParams.html +++ b/docs/interfaces/widgets_floatingOneTap.FloatingOneTapParams.html @@ -1,4 +1,4 @@ -FloatingOneTapParams | @vkid/sdk - v2.1.0
        +FloatingOneTapParams | @vkid/sdk - v2.2.0
        • Preparing search index...
        • -
        • The search index is not available
        @vkid/sdk - v2.1.0
        +
      • The search index is not available
      @vkid/sdk - v2.2.0
      @@ -110,7 +110,7 @@

      scheme
    • showAlternativeLogin
    @@ -144,6 +145,7 @@

    @@ -152,6 +154,7 @@

    • ExternalOAuthName
    • +
    • OAuthListInternalEvents
    • OAuthName
    • OAuthList
    • OAuthListParams
    • @@ -160,6 +163,8 @@

      widgets/oneTap
        +
      • OneTapContentId
      • +
      • OneTapInternalEvents
      • OneTapSkin
      • OneTap
      • OneTapParams
      • diff --git a/docs/interfaces/widgets_oauthList.OAuthListParams.html b/docs/interfaces/widgets_oauthList.OAuthListParams.html index 63c73d5..0abd63d 100644 --- a/docs/interfaces/widgets_oauthList.OAuthListParams.html +++ b/docs/interfaces/widgets_oauthList.OAuthListParams.html @@ -1,4 +1,4 @@ -OAuthListParams | @vkid/sdk - v2.1.0
        +OAuthListParams | @vkid/sdk - v2.2.0
        • Preparing search index...
        • -
        • The search index is not available
        @vkid/sdk - v2.1.0
        +
      • The search index is not available
      @vkid/sdk - v2.2.0
      @@ -88,7 +88,7 @@

      scheme
    • styles
    @@ -122,6 +123,7 @@

    @@ -130,6 +132,7 @@

    • ExternalOAuthName
    • +
    • OAuthListInternalEvents
    • OAuthName
    • OAuthList
    • OAuthListParams
    • @@ -138,6 +141,8 @@

      widgets/oneTap
        +
      • OneTapContentId
      • +
      • OneTapInternalEvents
      • OneTapSkin
      • OneTap
      • OneTapParams
      • diff --git a/docs/interfaces/widgets_oauthList.OAuthListStyles.html b/docs/interfaces/widgets_oauthList.OAuthListStyles.html index 5556c8f..079faa1 100644 --- a/docs/interfaces/widgets_oauthList.OAuthListStyles.html +++ b/docs/interfaces/widgets_oauthList.OAuthListStyles.html @@ -1,4 +1,4 @@ -OAuthListStyles | @vkid/sdk - v2.1.0
        +OAuthListStyles | @vkid/sdk - v2.2.0
        • Preparing search index...
        • -
        • The search index is not available
        @vkid/sdk - v2.1.0
        +
      • The search index is not available
      @vkid/sdk - v2.2.0
      @@ -62,7 +62,7 @@

      borderRadius
    • height
    @@ -96,6 +97,7 @@

    @@ -104,6 +106,7 @@

    • ExternalOAuthName
    • +
    • OAuthListInternalEvents
    • OAuthName
    • OAuthList
    • OAuthListParams
    • @@ -112,6 +115,8 @@

      widgets/oneTap
        +
      • OneTapContentId
      • +
      • OneTapInternalEvents
      • OneTapSkin
      • OneTap
      • OneTapParams
      • diff --git a/docs/interfaces/widgets_oneTap.OneTapParams.html b/docs/interfaces/widgets_oneTap.OneTapParams.html index d048d02..f510ac6 100644 --- a/docs/interfaces/widgets_oneTap.OneTapParams.html +++ b/docs/interfaces/widgets_oneTap.OneTapParams.html @@ -1,4 +1,4 @@ -OneTapParams | @vkid/sdk - v2.1.0
        +OneTapParams | @vkid/sdk - v2.2.0
        • Preparing search index...
        • -
        • The search index is not available
        @vkid/sdk - v2.1.0
        +
      • The search index is not available
      @vkid/sdk - v2.2.0
      @@ -30,6 +30,7 @@

      Properties

      +
      + +
      contentId?: OneTapContentId
      +

      Тип отображаемого контента

      +
      fastAuthEnabled?: boolean
      @@ -103,6 +109,7 @@

      @@ -145,6 +153,7 @@

      @@ -153,6 +162,7 @@

      @@ -103,6 +104,7 @@

      @@ -111,6 +113,7 @@

      • ExternalOAuthName
      • +
      • OAuthListInternalEvents
      • OAuthName
      • OAuthList
      • OAuthListParams
      • @@ -119,6 +122,8 @@

        widgets/oneTap
          +
        • OneTapContentId
        • +
        • OneTapInternalEvents
        • OneTapSkin
        • OneTap
        • OneTapParams
        • diff --git a/docs/modules/auth.html b/docs/modules/auth.html index 6acf7b4..3cd1935 100644 --- a/docs/modules/auth.html +++ b/docs/modules/auth.html @@ -1,4 +1,4 @@ -auth | @vkid/sdk - v2.1.0
          +auth | @vkid/sdk - v2.2.0
          • Preparing search index...
          • -
          • The search index is not available
          @vkid/sdk - v2.1.0
          +
        • The search index is not available
        @vkid/sdk - v2.2.0
        @@ -50,7 +50,7 @@

        Member Visibility

        Theme

        @@ -92,6 +94,7 @@

        Theme