Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
94e8e40
Add mechanism to send an utterance after live chat has completed. Cap…
bobpskier Oct 8, 2024
8c9860a
Bump cookie and express in /lex-web-ui
dependabot[bot] Oct 13, 2024
218cf68
Fix S3 cleanup to not delete on update
Oct 24, 2024
49f7261
Merge pull request #753 from aws-samples/feature/vpc-support
atjohns Oct 24, 2024
5bdeeb2
Merge pull request #750 from aws-samples/dependabot/npm_and_yarn/lex-…
atjohns Oct 24, 2024
abb32d0
Bump cookie and express
dependabot[bot] Oct 25, 2024
0dcb27e
Bump elliptic from 6.5.7 to 6.6.0 in /lex-web-ui
dependabot[bot] Oct 31, 2024
71837f5
Support redacting transcript delivered to agents when a user connects…
bobpskier Nov 6, 2024
fe8c09d
streaming endpoint support for qnabot
abhirpat Nov 6, 2024
a7ff24b
Merge pull request #758 from aws-samples/feat/streamingqna
atjohns Nov 7, 2024
db11bde
Merge pull request #756 from aws-samples/dependabot/npm_and_yarn/lex-…
atjohns Nov 7, 2024
b7b3f41
Merge pull request #754 from aws-samples/dependabot/npm_and_yarn/mult…
atjohns Nov 7, 2024
6b5748b
Update release.sh
atjohns Nov 7, 2024
41b0e78
Merge branch 'development' into feature-end-live-chat-utterance
atjohns Nov 7, 2024
a9b47d2
Merge pull request #757 from bobpskier/feature-end-live-chat-utterance
atjohns Nov 7, 2024
08be466
feat: streaming support for qnabot II
abhirpat Nov 12, 2024
1d8fcf0
Merge pull request #759 from aws-samples/feat/streamingqna
atjohns Nov 12, 2024
2dd2529
Update dependencies and add auth to streaming websocket
Dec 6, 2024
ff4c74a
Merge pull request #763 from aws-samples/feature/streaming-secure-web…
atjohns Dec 6, 2024
c339a26
Remove Lambda layer as QBusiness APIs are not part of standard Python…
Dec 12, 2024
c466a21
Merge pull request #766 from aws-samples/feature/remove-qbus-layer
atjohns Dec 12, 2024
de518e5
release & distribution build for v0.21.6
Dec 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build/update-lex-web-ui-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ const lexV2BotLocaleVoices = {
'CONNECT_START_LIVE_CHAT_ICON',
'CONNECT_END_LIVE_CHAT_LABEL',
'CONNECT_END_LIVE_CHAT_ICON',
'CONNECT_END_LIVE_CHAT_UTTERANCE',
'CONNECT_TRANSCRIPT_MESSAGE_DELAY_IN_MSEC',
'CONNECT_TRANSCRIPT_REDACT_REGEX',
'APP_DOMAIN_NAME',
'UI_TOOLBAR_TITLE',
'UI_TOOLBAR_LOGO',
Expand Down
2 changes: 2 additions & 0 deletions config/base.env.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ module.exports = {
chatEndedMessage: process.env.CONNECT_CHAT_ENDED_MESSAGE,
attachChatTranscript: process.env.CONNECT_ATTACH_CHAT_TRANSCRIPT,
liveChatTerms: process.env.CONNECT_LIVE_CHAT_TERMS,
endLiveChatUtterance: process.env.CONNECT_END_LIVE_CHAT_UTTERANCE,
transcriptMessageDelayInMsec: process.env.CONNECT_TRANSCRIPT_MESSAGE_DELAY_IN_MSEC,
transcriptRedactRegex: process.env.CONNECT_TRANSCRIPT_REDACT_REGEX,
},
lex: {
v2BotId: process.env.V2_BOT_ID,
Expand Down
2 changes: 2 additions & 0 deletions config/env.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ export CONNECT_START_LIVE_CHAT_LABEL ?= $()
export CONNECT_START_LIVE_CHAT_ICON ?= $()
export CONNECT_END_LIVE_CHAT_LABEL ?= $()
export CONNECT_END_LIVE_CHAT_ICON ?= $()
export CONNECT_END_LIVE_CHAT_UTTERANCE ?= $()
export CONNECT_TRANSCRIPT_MESSAGE_DELAY_IN_MSEC ?= $()
export CONNECT_TRANSCRIPT_REDACT_REGEX ?= $()
export BOT_INITIAL_TEXT ?= $()
export BOT_INITIAL_SPEECH ?= $()
export BOT_INITIAL_UTTERANCE ?= $()
Expand Down
2 changes: 2 additions & 0 deletions config/utils/merge-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ module.exports = function mergeConfig(baseConfig, srcConfig) {
key=== 'initialText' ||
key=== 'avatarImageUrl' ||
key=== 'toolbarLogo' ||
key=== 'streamingWebSocketEndpoint' ||
key=== 'streamingDynamoDbTable' ||
!isEmpty(srcConfig[key]) ) {
value = (typeof (baseConfig[key]) === 'object') ?
// recursively merge sub-objects in both directions
Expand Down
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
font-src 'self' fonts.gstatic.com;
upgrade-insecure-requests;">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<title>LexWebUi Demo</title>
<title>LexWebUi</title>
<!-- empty favicon to avoid 404 -->
<link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon" />

Expand Down
855 changes: 790 additions & 65 deletions dist/lex-web-ui-loader.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lex-web-ui-loader.js.map

Large diffs are not rendered by default.

Loading