@gengage/assistant-fe 0.6.19 → 0.6.22
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/README.md +4 -2
- package/dist/agentic/adaptor/create-adaptor.d.ts +6 -3
- package/dist/agentic/adaptor/mount.d.ts +8 -2
- package/dist/agentic/{similarity.d.ts → algos/similarity.d.ts} +11 -2
- package/dist/agentic/algos/similarity.js +261 -0
- package/dist/agentic/context/chat-context.d.ts +4 -2
- package/dist/agentic/context/context-store.d.ts +11 -1
- package/dist/agentic/context/persistence.d.ts +1 -0
- package/dist/agentic/contracts/agentic-contracts.d.ts +133 -0
- package/dist/agentic/debug/activity-collector.d.ts +14 -0
- package/dist/agentic/debug/activity-instrumentation.d.ts +22 -0
- package/dist/agentic/debug/activity-overlay.d.ts +3 -0
- package/dist/agentic/debug/activity-state.d.ts +37 -0
- package/dist/agentic/debug/local-dev.d.ts +18 -0
- package/dist/agentic/events/product-normalize.d.ts +4 -1
- package/dist/agentic/events/ui-specs.d.ts +8 -4
- package/dist/agentic/index.d.ts +25 -2
- package/dist/agentic/index.js +2792 -441
- package/dist/agentic/types.d.ts +77 -4
- package/dist/agentic/util/common/declarative-cache.d.ts +21 -0
- package/dist/agentic/util/common/fallback-status.d.ts +10 -0
- package/dist/agentic/util/common/flow-steps.d.ts +8 -0
- package/dist/agentic/util/common/gss-tool-aliases.d.ts +66 -0
- package/dist/agentic/util/common/iframe-scraper.d.ts +22 -0
- package/dist/agentic/util/common/llm-routing.d.ts +50 -0
- package/dist/agentic/util/common/object.d.ts +1 -0
- package/dist/agentic/util/common/open-product-page.d.ts +30 -0
- package/dist/agentic/util/common/panel-context.d.ts +3 -0
- package/dist/agentic/util/common/privacy.d.ts +14 -0
- package/dist/agentic/util/common/product-resolver.d.ts +20 -0
- package/dist/agentic/util/common/product-surface.d.ts +24 -0
- package/dist/agentic/util/common/ref-store.d.ts +15 -0
- package/dist/agentic/util/common/retail-privacy.d.ts +4 -0
- package/dist/agentic/util/common/route-params.d.ts +3 -0
- package/dist/agentic/util/common/similarity-ranking.d.ts +2 -0
- package/dist/agentic/util/common/site-awareness.d.ts +130 -0
- package/dist/agentic/util/lazy-runtime-loader.d.ts +2 -1
- package/dist/agentic/worker/rpc.d.ts +26 -6
- package/dist/agentic/worker.d.ts +15 -2
- package/dist/agentic/worker.js +316 -119
- package/dist/agentic.iife.js +352 -6
- package/dist/{api-paths-lIioK7-S.js → api-paths-DE3_TyTw.js} +1 -1
- package/dist/chat/history-storage.d.ts +1 -0
- package/dist/chat/runtime.d.ts +1 -1
- package/dist/chat/types.d.ts +1 -0
- package/dist/chat-runtime.js +1 -1
- package/dist/chat.iife.js +10 -10
- package/dist/chat.js +1 -1
- package/dist/{common-8WOyaL9-.js → common-BWnFHbvv.js} +2 -2
- package/dist/common.js +8 -8
- package/dist/{connection-warning-CBR0CWsY.js → connection-warning-Tk4ZjgMi.js} +1 -1
- package/dist/{context-heG8hv5l.js → context-UTzCGyR9.js} +19 -8
- package/dist/{fastIntent-Dw79pmRK.js → fastIntent-DIhMlxVd.js} +2 -2
- package/dist/index.js +13 -13
- package/dist/{native-webview-NWc9LrJh.js → native-webview-BcwGKkDe.js} +1 -1
- package/dist/native.iife.js +6 -6
- package/dist/native.js +1 -1
- package/dist/{overlay-COzFFq0-.js → overlay-cF2SjxYU.js} +1 -1
- package/dist/overlay.js +2 -2
- package/dist/qna-runtime.js +1 -1
- package/dist/qna.iife.js +1 -1
- package/dist/qna.js +1 -1
- package/dist/route-params-5KSvTyeb.js +2454 -0
- package/dist/{runtime-BsnZ6gt2.js → runtime-CjJy8KKu.js} +4 -4
- package/dist/{runtime-w0f2VkzL.js → runtime-H5hNQQKm.js} +51 -48
- package/dist/{runtime-D5Sj-_tA.js → runtime-wEP7N2Hr.js} +4 -4
- package/dist/{simbut-BvdJtzCu.js → simbut-BlBLtgVy.js} +2 -2
- package/dist/simbut.iife.js +1 -1
- package/dist/simbut.js +1 -1
- package/dist/{simrel-DU6a27g9.js → simrel-S6-OsWJ9.js} +2 -2
- package/dist/simrel-runtime.js +1 -1
- package/dist/simrel.iife.js +2 -2
- package/dist/simrel.js +2 -2
- package/dist/{widget-base-BeWuIxD6.js → widget-base-e4JwEf2I.js} +2 -2
- package/package.json +5 -1
- package/dist/account-config-D_EMuR0g.js +0 -1479
|
@@ -67,6 +67,7 @@ export interface SaveHistorySessionParams {
|
|
|
67
67
|
lastBackendContext: BackendContext | null;
|
|
68
68
|
pageType?: string | undefined;
|
|
69
69
|
sku?: string | undefined;
|
|
70
|
+
attachmentPlaceholder?: string | undefined;
|
|
70
71
|
}
|
|
71
72
|
export declare class ChatHistoryStorage {
|
|
72
73
|
private readonly _appId;
|
package/dist/chat/runtime.d.ts
CHANGED
|
@@ -240,7 +240,7 @@ export declare class GengageChat extends BaseWidget<ChatWidgetConfig> {
|
|
|
240
240
|
* - floating: drawer open and side panel visible (split / “maximized” layout)
|
|
241
241
|
*/
|
|
242
242
|
private _isMaximizedForHostChrome;
|
|
243
|
-
/** Host page scroll blocked
|
|
243
|
+
/** Host page scroll blocked when host chrome is maximized (overlay/mobile sheet, or expanded desktop MainPane). */
|
|
244
244
|
private _shouldLockHostDocumentScroll;
|
|
245
245
|
private _applyOpenStateClasses;
|
|
246
246
|
/** MainPane = assistant left panel; mobile counts full overlay panel as expanded. */
|
package/dist/chat/types.d.ts
CHANGED
|
@@ -329,6 +329,7 @@ export interface ChatI18n {
|
|
|
329
329
|
favoritesAriaLabel: string;
|
|
330
330
|
historyAriaLabel: string;
|
|
331
331
|
historyPageTitle: string;
|
|
332
|
+
historyImageAttachmentLabel: string;
|
|
332
333
|
emptyHistoryMessage: string;
|
|
333
334
|
historyDeleteLabel: string;
|
|
334
335
|
historyDeleteConfirmMessage: string;
|
package/dist/chat-runtime.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as e, d as t, f as r, i as s, l as n, n as i, r as l, s as C, t as c, u as d } from "./runtime-
|
|
1
|
+
import { c as e, d as t, f as r, i as s, l as n, n as i, r as l, s as C, t as c, u as d } from "./runtime-H5hNQQKm.js";
|
|
2
2
|
export {
|
|
3
3
|
d as CHAT_SCROLL_ELEMENT_ID,
|
|
4
4
|
s as ChatPresentationState,
|