@gengage/assistant-fe 0.4.18 → 0.4.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-paths-CReMDZWg.js +1250 -0
- package/dist/chat/components/ChoicePrompter.d.ts +2 -2
- package/dist/chat/runtime.d.ts +7 -0
- package/dist/chat/types.d.ts +65 -0
- package/dist/chat-runtime.js +1 -1
- package/dist/chat.iife.js +43 -43
- package/dist/chat.js +1 -1
- package/dist/common/find-similar-payload.d.ts +3 -0
- package/dist/common/index.d.ts +1 -0
- package/dist/common/overlay.d.ts +4 -2
- package/dist/common/sdk-version.d.ts +3 -0
- package/dist/{common-Bxy1FrAk.js → common-BM2ZsSLI.js} +3 -3
- package/dist/common.js +79 -77
- package/dist/{connection-warning-C7ehvQxx.js → connection-warning-C_4e7ahZ.js} +1 -1
- package/dist/{fastIntent-CINRmM8r.js → fastIntent-DMNzXOSI.js} +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +75 -73
- package/dist/{native-webview-BsRcv49q.js → native-webview-Bbcvvi_5.js} +1 -1
- package/dist/native.iife.js +21 -21
- package/dist/native.js +1 -1
- package/dist/{overlay-CfnBuj7M.js → overlay-O4nlUrzw.js} +1 -1
- package/dist/overlay.js +1 -1
- package/dist/qna-runtime.js +1 -1
- package/dist/qna.iife.js +22 -22
- package/dist/qna.js +1 -1
- package/dist/{runtime-B0hDHRlN.js → runtime-C51WykbJ.js} +13 -13
- package/dist/{runtime-CAUALvac.js → runtime-DBh8899B.js} +2185 -2091
- package/dist/{runtime-CLcYqzoA.js → runtime-bbMljGVG.js} +17 -17
- package/dist/simbut/index.d.ts +1 -1
- package/dist/simbut/types.d.ts +7 -7
- package/dist/{simbut-3kqLW3SM.js → simbut-CO1rLVM9.js} +19 -22
- package/dist/simbut.iife.js +9 -9
- package/dist/simbut.js +1 -1
- package/dist/simrel/components/GroupTabs.d.ts +1 -1
- package/dist/simrel/types.d.ts +3 -3
- package/dist/simrel-runtime.js +1 -1
- package/dist/{simrel-fQg2EIB8.js → simrel-zCDlCrqG.js} +1 -1
- package/dist/simrel.iife.js +7 -7
- package/dist/simrel.js +2 -2
- package/dist/{widget-base-bdJaGJYi.js → widget-base-Cf9ofZhh.js} +91 -83
- package/package.json +2 -1
- package/dist/api-paths-BX3Lea3A.js +0 -1213
package/dist/chat.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as e, c as t, d as r, i as s, l as n, n as i, o as c, r as l, s as o, t as C, u as h } from "./runtime-
|
|
1
|
+
import { a as e, c as t, d as r, i as s, l as n, n as i, o as c, r as l, s as o, t as C, u as h } from "./runtime-DBh8899B.js";
|
|
2
2
|
import { t as p } from "./chat-BRKK63lt.js";
|
|
3
3
|
export {
|
|
4
4
|
n as CHAT_SCROLL_ELEMENT_ID,
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare function firstNonEmptyStringValue(...values: unknown[]): string | undefined;
|
|
2
|
+
export declare function nonEmptyStringList(value: unknown): string[];
|
|
3
|
+
export declare function normalizeFindSimilarPayload(payload: Record<string, unknown>): Record<string, unknown>;
|
package/dist/common/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type { PageContext, SessionContext, BaseWidgetConfig, WidgetTheme, GengageWidget, StreamEvent, StreamEventMetadata, StreamEventTextChunk, StreamEventUISpec, StreamEventAction, StreamEventError, StreamEventDone, UISpec, UIElement, ActionPayload, GengageEventName, GengageEventDetailMap, } from './types.js';
|
|
2
2
|
export { BaseWidget } from './widget-base.js';
|
|
3
3
|
export type { ChatPublicAPI } from './widget-base.js';
|
|
4
|
+
export { GENGAGE_VERSION, GENGAGE_BUILD_FLAVOR } from './sdk-version.js';
|
|
4
5
|
export { consumeStream, streamPost } from './streaming.js';
|
|
5
6
|
export type { StreamOptions, StreamEventHandler } from './streaming.js';
|
|
6
7
|
export { dispatch, listen, wireQNAToChat, wireSimilarToChat } from './events.js';
|
package/dist/common/overlay.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export interface OverlayChatOptions {
|
|
|
41
41
|
pillLauncher?: ChatWidgetConfig['pillLauncher'];
|
|
42
42
|
/** Search-bar style floating launcher — forwarded to `chat.floatingLauncher`. */
|
|
43
43
|
floatingLauncher?: ChatWidgetConfig['floatingLauncher'];
|
|
44
|
+
/** Dynamic launcher positioning relative to page elements. */
|
|
45
|
+
launcherAnchor?: ChatWidgetConfig['launcherAnchor'];
|
|
44
46
|
/** Called when the chat panel opens. */
|
|
45
47
|
onOpen?: () => void;
|
|
46
48
|
/** Called when the chat panel closes. */
|
|
@@ -82,10 +84,10 @@ export interface OverlaySimButOptions {
|
|
|
82
84
|
mountTarget?: HTMLElement | string;
|
|
83
85
|
layout?: SimButWidgetConfig['layout'];
|
|
84
86
|
inlineCard?: SimButWidgetConfig['inlineCard'];
|
|
85
|
-
/** `
|
|
87
|
+
/** Optional product image URL for custom `onFindSimilar`; chat actions use SKU when available. */
|
|
86
88
|
imageUrl?: string;
|
|
87
89
|
i18n?: SimButWidgetConfig['i18n'];
|
|
88
|
-
/**
|
|
90
|
+
/** Custom click behavior, used instead of `chat` when provided. */
|
|
89
91
|
onFindSimilar?: SimButWidgetConfig['onFindSimilar'];
|
|
90
92
|
}
|
|
91
93
|
export interface OverlayWidgetsOptions {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { n as w } from "./api-paths-
|
|
2
|
-
import {
|
|
1
|
+
import { n as w } from "./api-paths-CReMDZWg.js";
|
|
2
|
+
import { i as f } from "./widget-base-Cf9ofZhh.js";
|
|
3
3
|
import { a as h, c as s, i as b, o as d, r as u, t as p } from "./schemas-CLo8wCjs.js";
|
|
4
|
-
import { a as T, i as k } from "./overlay-
|
|
4
|
+
import { a as T, i as k } from "./overlay-O4nlUrzw.js";
|
|
5
5
|
var c = d({ enabled: u().default(!0) }), S = d({
|
|
6
6
|
chat: s().optional(),
|
|
7
7
|
qna: s().optional(),
|
package/dist/common.js
CHANGED
|
@@ -1,89 +1,91 @@
|
|
|
1
|
-
import { a,
|
|
2
|
-
import { C as E, S,
|
|
3
|
-
import { N as
|
|
4
|
-
import { i as
|
|
5
|
-
import { n as
|
|
6
|
-
import { i as
|
|
7
|
-
import { a as
|
|
8
|
-
import { _ as
|
|
1
|
+
import { a, d as t, f as s, h as r, i as n, l as i, m as o, n as c, o as m, p as l, r as g, t as d, u as p } from "./api-paths-CReMDZWg.js";
|
|
2
|
+
import { C as E, E as S, S as h, T as v, _ as f, a as y, b as C, c as A, d as T, f as w, g as G, h as I, l as U, m as R, n as W, o as D, p as N, r as P, t as _, u as k, v as O, w as b, x as L, y as x } from "./widget-base-Cf9ofZhh.js";
|
|
3
|
+
import { N as F, a as M, c as z, i as H, k as V, n as K, o as Q, r as q, s as Z, t as j } from "./context-DGz5F81j.js";
|
|
4
|
+
import { i as X, n as Y, o as $, r as ee, t as ae } from "./fastIntent-DMNzXOSI.js";
|
|
5
|
+
import { n as se, t as re } from "./connection-warning-C_4e7ahZ.js";
|
|
6
|
+
import { i as ie, n as oe, r as ce, t as me } from "./overlay-O4nlUrzw.js";
|
|
7
|
+
import { a as ge, i as de, n as pe, r as ue } from "./native-webview-Bbcvvi_5.js";
|
|
8
|
+
import { _ as Se, a as he, c as ve, d as fe, f as ye, g as Ce, h as Ae, i as Te, l as we, m as Ge, n as Ie, o as Ue, p as Re, r as We, s as De, t as Ne, u as Pe, v as _e, y as ke } from "./common-BM2ZsSLI.js";
|
|
9
9
|
export {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
10
|
+
Ge as AccountRuntimeConfigSchema,
|
|
11
|
+
Ae as AnalyticsAuthModeSchema,
|
|
12
|
+
ye as AnalyticsClient,
|
|
13
|
+
k as BASE_WIDGET_THEME,
|
|
14
|
+
_ as BaseWidget,
|
|
15
|
+
Ue as DEFAULT_CUSTOMIZATION_LOCALE,
|
|
16
|
+
w as DEFAULT_WIDGET_THEME_TOKENS,
|
|
17
|
+
W as GENGAGE_BUILD_FLAVOR,
|
|
18
|
+
P as GENGAGE_VERSION,
|
|
19
|
+
Ce as UnknownActionPolicySchema,
|
|
20
|
+
ee as VoiceInput,
|
|
19
21
|
g as adaptBackendEvent,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
pe as applyNativeSession,
|
|
23
|
+
Ne as autoDetectPageContext,
|
|
24
|
+
R as basketAddEvent,
|
|
25
|
+
j as bootstrapSession,
|
|
24
26
|
d as buildChatEndpointUrl,
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
27
|
+
me as buildOverlayIdempotencyKey,
|
|
28
|
+
I as chatHistorySnapshotEvent,
|
|
29
|
+
G as checkoutCompleteEvent,
|
|
30
|
+
f as checkoutStartEvent,
|
|
31
|
+
re as configureConnectionWarning,
|
|
32
|
+
t as consumeStream,
|
|
33
|
+
De as createAccountIdentity,
|
|
34
|
+
Re as createAnalyticsClient,
|
|
35
|
+
Se as createDefaultAccountRuntimeConfig,
|
|
36
|
+
ve as createDefaultAnalyticsConfig,
|
|
37
|
+
we as createFloatingChatConfig,
|
|
38
|
+
ue as createNativeWebViewBridge,
|
|
39
|
+
Pe as createPdpQnaConfig,
|
|
40
|
+
fe as createPdpSimRelConfig,
|
|
41
|
+
o as defaultUnknownUISpecRenderer,
|
|
42
|
+
oe as destroyOverlayWidgets,
|
|
43
|
+
ae as detectFastIntent,
|
|
44
|
+
de as detectNativeEnvironment,
|
|
45
|
+
Ie as detectPageType,
|
|
46
|
+
y as dismissGlobalErrorToast,
|
|
45
47
|
M as dispatch,
|
|
46
48
|
We as extractSkuFromUrl,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
49
|
+
D as getGlobalErrorMessage,
|
|
50
|
+
ce as getOverlayWidgets,
|
|
51
|
+
i as getSuggestedSearchKeywords,
|
|
52
|
+
p as getSuggestedSearchKeywordsText,
|
|
53
|
+
K as getWindowPageContext,
|
|
54
|
+
Te as initGengageClient,
|
|
55
|
+
ge as initNativeOverlayWidgets,
|
|
56
|
+
ie as initOverlayWidgets,
|
|
57
|
+
X as isVoiceInputSupported,
|
|
58
|
+
Q as listen,
|
|
59
|
+
O as llmUsageEvent,
|
|
60
|
+
Y as makePillLauncher,
|
|
61
|
+
l as mergeUISpecRegistry,
|
|
62
|
+
x as meteringIncrementEvent,
|
|
63
|
+
C as meteringSummaryEvent,
|
|
62
64
|
c as normalizeMiddlewareUrl,
|
|
63
65
|
n as normalizeProductGroupingsResponse,
|
|
64
66
|
a as normalizeSimilarProductsResponse,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
_e as parseAccountRuntimeConfig,
|
|
68
|
+
he as preflightDiagnostics,
|
|
67
69
|
m as productToNormalized,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
70
|
+
A as registerGlobalErrorToastListener,
|
|
71
|
+
r as renderUISpecWithRegistry,
|
|
72
|
+
q as resolveSession,
|
|
73
|
+
$ as routeStreamAction,
|
|
74
|
+
ke as safeParseAccountRuntimeConfig,
|
|
75
|
+
F as sanitizeHtml,
|
|
76
|
+
U as showGlobalErrorToast,
|
|
77
|
+
L as streamChunkEvent,
|
|
78
|
+
h as streamDoneEvent,
|
|
79
|
+
E as streamErrorEvent,
|
|
78
80
|
s as streamPost,
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
81
|
+
b as streamStartEvent,
|
|
82
|
+
v as streamUiSpecEvent,
|
|
83
|
+
se as trackConnectionWarningRequest,
|
|
84
|
+
H as updatePageContext,
|
|
85
|
+
S as widgetHistorySnapshotEvent,
|
|
86
|
+
V as wireGADataLayer,
|
|
87
|
+
Z as wireQNAToChat,
|
|
86
88
|
z as wireSimilarToChat,
|
|
87
|
-
|
|
88
|
-
|
|
89
|
+
T as withBaseTheme,
|
|
90
|
+
N as withDefaultWidgetTheme
|
|
89
91
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export { GengageSimBut, createSimButWidget } from './simbut/index.js';
|
|
|
16
16
|
export { renderUISpec as renderChatUISpec, createDefaultChatUISpecRegistry, defaultChatUnknownUISpecRenderer, } from './chat/index.js';
|
|
17
17
|
export { renderQnaUISpec, createDefaultQnaUISpecRegistry, defaultQnaUnknownUISpecRenderer } from './qna/index.js';
|
|
18
18
|
export { renderSimRelUISpec, createDefaultSimRelUISpecRegistry, defaultSimRelUnknownUISpecRenderer, } from './simrel/index.js';
|
|
19
|
-
export { bootstrapSession, updatePageContext, initOverlayWidgets, getOverlayWidgets, destroyOverlayWidgets, buildOverlayIdempotencyKey, detectNativeEnvironment, applyNativeSession, createNativeWebViewBridge, initNativeOverlayWidgets, wireQNAToChat, wireSimilarToChat, dispatch, listen, consumeStream, streamPost, buildChatEndpointUrl, normalizeMiddlewareUrl, routeStreamAction, createAnalyticsClient, renderUISpecWithRegistry, defaultUnknownUISpecRenderer, BASE_WIDGET_THEME, withBaseTheme, DEFAULT_WIDGET_THEME_TOKENS, withDefaultWidgetTheme, DEFAULT_CUSTOMIZATION_LOCALE, createAccountIdentity, createFloatingChatConfig, createPdpQnaConfig, createPdpSimRelConfig, createDefaultAnalyticsConfig, parseAccountRuntimeConfig, safeParseAccountRuntimeConfig, createDefaultAccountRuntimeConfig, AccountRuntimeConfigSchema, AnalyticsAuthModeSchema, UnknownActionPolicySchema, initGengageClient, preflightDiagnostics, wireGADataLayer, isVoiceInputSupported, VoiceInput, detectPageType, extractSkuFromUrl, autoDetectPageContext, configureConnectionWarning, makePillLauncher, } from './common/index.js';
|
|
19
|
+
export { GENGAGE_VERSION, GENGAGE_BUILD_FLAVOR, bootstrapSession, updatePageContext, initOverlayWidgets, getOverlayWidgets, destroyOverlayWidgets, buildOverlayIdempotencyKey, detectNativeEnvironment, applyNativeSession, createNativeWebViewBridge, initNativeOverlayWidgets, wireQNAToChat, wireSimilarToChat, dispatch, listen, consumeStream, streamPost, buildChatEndpointUrl, normalizeMiddlewareUrl, routeStreamAction, createAnalyticsClient, renderUISpecWithRegistry, defaultUnknownUISpecRenderer, BASE_WIDGET_THEME, withBaseTheme, DEFAULT_WIDGET_THEME_TOKENS, withDefaultWidgetTheme, DEFAULT_CUSTOMIZATION_LOCALE, createAccountIdentity, createFloatingChatConfig, createPdpQnaConfig, createPdpSimRelConfig, createDefaultAnalyticsConfig, parseAccountRuntimeConfig, safeParseAccountRuntimeConfig, createDefaultAccountRuntimeConfig, AccountRuntimeConfigSchema, AnalyticsAuthModeSchema, UnknownActionPolicySchema, initGengageClient, preflightDiagnostics, wireGADataLayer, isVoiceInputSupported, VoiceInput, detectPageType, extractSkuFromUrl, autoDetectPageContext, configureConnectionWarning, makePillLauncher, } from './common/index.js';
|
|
20
20
|
export type { PageContext, SessionContext, BaseWidgetConfig, GengageWidget, StreamEvent, UISpec, UIElement, ActionPayload, GengageEventName, ChatPublicAPI, ChatTransportConfig, ChatEndpointName, AccountRuntimeConfig, AnalyticsAuthMode, UnknownActionPolicy, HostActionHandlers, ActionRouterOptions, AnalyticsEnvelope, AnalyticsInput, AnalyticsAuthConfig, AnalyticsClientConfig, UISpecDomComponentRenderParams, UISpecDomComponentRenderer, UISpecDomRegistry, UISpecDomUnknownRendererParams, UISpecDomUnknownRenderer, RenderUISpecWithRegistryOptions, OverlayWidgetsController, OverlayWidgetsOptions, OverlayChatOptions, OverlayQNAOptions, OverlaySimRelOptions, OverlaySimButOptions, NativeBridgeEnvironment, NativeSessionPayload, NativeBridgeMessage, NativeWebViewBridgeOptions, NativeWebViewBridge, NativeOverlayInitOptions, NativeOverlayInitResult, AccountIdentityConfig, AccountIdentity, GengageClientOptions, HostActions, PreflightResult, PreflightWarning, WireQNAToChatOptions, VoiceInputState, VoiceInputErrorCode, VoiceInputCallbacks, VoiceInputOptions, DetectablePageType, PageDetectionRule, PillLauncherOptions, PillLauncherKit, } from './common/index.js';
|
|
21
21
|
export type { ChatWidgetConfig, ChatMessage, ChatSession, ChatI18n, ChatRendererConfig, FloatingLauncherOptions, } from './chat/index.js';
|
|
22
22
|
export type { ChatUISpecRegistry, UISpecRenderContext as ChatUISpecRenderContext } from './chat/index.js';
|
package/dist/index.js
CHANGED
|
@@ -1,81 +1,83 @@
|
|
|
1
|
-
import { d as a,
|
|
2
|
-
import { c,
|
|
3
|
-
import { a as
|
|
4
|
-
import { c as
|
|
5
|
-
import { i as
|
|
6
|
-
import { t as P } from "./connection-warning-
|
|
7
|
-
import { a as
|
|
8
|
-
import { a as b, i as x, n as
|
|
9
|
-
import { n as
|
|
10
|
-
import { n as
|
|
11
|
-
import { i as
|
|
12
|
-
import { a as
|
|
13
|
-
import { _ as
|
|
1
|
+
import { d as a, f as t, h as r, m as i, n as s, t as n } from "./api-paths-CReMDZWg.js";
|
|
2
|
+
import { d as c, f as m, n as p, p as d, r as l, u as g } from "./widget-base-Cf9ofZhh.js";
|
|
3
|
+
import { a as u, c as S, i as C, k as U, o as h, s as A, t as I } from "./context-DGz5F81j.js";
|
|
4
|
+
import { c as y, n as E, o as D, s as G, t as T } from "./runtime-DBh8899B.js";
|
|
5
|
+
import { i as w, n as N, o as v, r as O } from "./fastIntent-DMNzXOSI.js";
|
|
6
|
+
import { t as P } from "./connection-warning-C_4e7ahZ.js";
|
|
7
|
+
import { a as L, i as Q, n as B, r as F, t as M } from "./runtime-C51WykbJ.js";
|
|
8
|
+
import { a as b, i as x, n as H, r as K, t as z } from "./runtime-bbMljGVG.js";
|
|
9
|
+
import { n as j } from "./simrel-zCDlCrqG.js";
|
|
10
|
+
import { n as J, t as X } from "./simbut-CO1rLVM9.js";
|
|
11
|
+
import { i as $, n as ee, r as ae, t as te } from "./overlay-O4nlUrzw.js";
|
|
12
|
+
import { a as ie, i as se, n as ne, r as oe } from "./native-webview-Bbcvvi_5.js";
|
|
13
|
+
import { _ as me, a as pe, c as de, d as le, g as ge, h as fe, i as ue, l as Se, m as Ce, n as Ue, o as he, p as Ae, r as Ie, s as Re, t as ye, u as Ee, v as De, y as Ge } from "./common-BM2ZsSLI.js";
|
|
14
14
|
export {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
15
|
+
Ce as AccountRuntimeConfigSchema,
|
|
16
|
+
fe as AnalyticsAuthModeSchema,
|
|
17
|
+
g as BASE_WIDGET_THEME,
|
|
18
|
+
he as DEFAULT_CUSTOMIZATION_LOCALE,
|
|
19
|
+
m as DEFAULT_WIDGET_THEME_TOKENS,
|
|
20
|
+
p as GENGAGE_BUILD_FLAVOR,
|
|
21
|
+
l as GENGAGE_VERSION,
|
|
22
|
+
T as GengageChat,
|
|
23
|
+
M as GengageQNA,
|
|
24
|
+
X as GengageSimBut,
|
|
25
|
+
z as GengageSimRel,
|
|
26
|
+
ge as UnknownActionPolicySchema,
|
|
27
|
+
O as VoiceInput,
|
|
28
|
+
ne as applyNativeSession,
|
|
29
|
+
ye as autoDetectPageContext,
|
|
30
|
+
I as bootstrapSession,
|
|
31
|
+
n as buildChatEndpointUrl,
|
|
32
|
+
te as buildOverlayIdempotencyKey,
|
|
31
33
|
P as configureConnectionWarning,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
34
|
+
a as consumeStream,
|
|
35
|
+
Re as createAccountIdentity,
|
|
36
|
+
Ae as createAnalyticsClient,
|
|
37
|
+
E as createChatWidget,
|
|
38
|
+
me as createDefaultAccountRuntimeConfig,
|
|
39
|
+
de as createDefaultAnalyticsConfig,
|
|
40
|
+
D as createDefaultChatUISpecRegistry,
|
|
41
|
+
F as createDefaultQnaUISpecRegistry,
|
|
42
|
+
K as createDefaultSimRelUISpecRegistry,
|
|
43
|
+
Se as createFloatingChatConfig,
|
|
44
|
+
oe as createNativeWebViewBridge,
|
|
45
|
+
Ee as createPdpQnaConfig,
|
|
44
46
|
le as createPdpSimRelConfig,
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
B as createQNAWidget,
|
|
48
|
+
J as createSimButWidget,
|
|
49
|
+
j as createSimRelRenderer,
|
|
50
|
+
H as createSimRelWidget,
|
|
51
|
+
G as defaultChatUnknownUISpecRenderer,
|
|
52
|
+
Q as defaultQnaUnknownUISpecRenderer,
|
|
51
53
|
x as defaultSimRelUnknownUISpecRenderer,
|
|
52
54
|
i as defaultUnknownUISpecRenderer,
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
55
|
+
ee as destroyOverlayWidgets,
|
|
56
|
+
se as detectNativeEnvironment,
|
|
57
|
+
Ue as detectPageType,
|
|
58
|
+
u as dispatch,
|
|
59
|
+
Ie as extractSkuFromUrl,
|
|
60
|
+
ae as getOverlayWidgets,
|
|
61
|
+
ue as initGengageClient,
|
|
62
|
+
ie as initNativeOverlayWidgets,
|
|
63
|
+
$ as initOverlayWidgets,
|
|
64
|
+
w as isVoiceInputSupported,
|
|
65
|
+
h as listen,
|
|
66
|
+
N as makePillLauncher,
|
|
67
|
+
s as normalizeMiddlewareUrl,
|
|
68
|
+
De as parseAccountRuntimeConfig,
|
|
69
|
+
pe as preflightDiagnostics,
|
|
70
|
+
y as renderChatUISpec,
|
|
71
|
+
L as renderQnaUISpec,
|
|
70
72
|
b as renderSimRelUISpec,
|
|
71
|
-
|
|
73
|
+
r as renderUISpecWithRegistry,
|
|
72
74
|
v as routeStreamAction,
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
75
|
+
Ge as safeParseAccountRuntimeConfig,
|
|
76
|
+
t as streamPost,
|
|
77
|
+
C as updatePageContext,
|
|
78
|
+
U as wireGADataLayer,
|
|
79
|
+
A as wireQNAToChat,
|
|
80
|
+
S as wireSimilarToChat,
|
|
81
|
+
c as withBaseTheme,
|
|
82
|
+
d as withDefaultWidgetTheme
|
|
81
83
|
};
|