@microsoft/omnichannel-chat-widget 1.7.7-main.37d9c4a → 1.7.7-main.5a9f9d2
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/lib/cjs/components/webchatcontainerstateful/common/defaultStyles/defaultWebChatStyles.js +1 -1
- package/lib/cjs/components/webchatcontainerstateful/webchatcontroller/middlewares/storemiddlewares/htmlTextMiddleware.js +1 -3
- package/lib/cjs/plugins/createChatTranscript.js +5 -1
- package/lib/esm/components/webchatcontainerstateful/common/defaultStyles/defaultWebChatStyles.js +1 -1
- package/lib/esm/components/webchatcontainerstateful/webchatcontroller/middlewares/storemiddlewares/htmlTextMiddleware.js +1 -3
- package/lib/esm/plugins/createChatTranscript.js +5 -1
- package/lib/types/common/facades/FacadeChatSDK.d.ts +1 -1
- package/package.json +2 -2
|
@@ -70,9 +70,6 @@ const processHTMLText = (action, text, honorsTargetInHTMLLinks) => {
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
|
|
74
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
75
|
-
action = (0, _simpleUpdateIn.default)(action, [_Constants.Constants.payload, _Constants.Constants.activity, _Constants.Constants.text], () => htmlNode.innerHTML);
|
|
76
73
|
} catch (e) {
|
|
77
74
|
let errorMessage = "Failed to apply action: ";
|
|
78
75
|
try {
|
|
@@ -89,6 +86,7 @@ const processHTMLText = (action, text, honorsTargetInHTMLLinks) => {
|
|
|
89
86
|
});
|
|
90
87
|
}
|
|
91
88
|
}
|
|
89
|
+
action = (0, _simpleUpdateIn.default)(action, [_Constants.Constants.payload, _Constants.Constants.activity, _Constants.Constants.text], () => htmlNode.innerHTML);
|
|
92
90
|
return action;
|
|
93
91
|
};
|
|
94
92
|
|
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _utils = require("../common/utils");
|
|
8
8
|
var _defaultLibraryScripts = _interopRequireDefault(require("../components/footerstateful/downloadtranscriptstateful/common/defaultLibraryScripts"));
|
|
9
|
+
var _dompurify = _interopRequireDefault(require("dompurify"));
|
|
9
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
10
11
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
11
12
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
@@ -674,7 +675,10 @@ const createChatTranscript = async function (transcript, facadeChatSDK) {
|
|
|
674
675
|
reader.readAsDataURL(blob);
|
|
675
676
|
});
|
|
676
677
|
};
|
|
677
|
-
let messages = transcriptMessages
|
|
678
|
+
let messages = transcriptMessages.filter(message => {
|
|
679
|
+
message.content = _dompurify.default.sanitize(message.content);
|
|
680
|
+
return message.content.length > 0;
|
|
681
|
+
});
|
|
678
682
|
if (renderAttachments) {
|
|
679
683
|
messages = await Promise.all(transcriptMessages.map(async message => {
|
|
680
684
|
// eslint-disable-line @typescript-eslint/no-explicit-any
|
|
@@ -64,9 +64,6 @@ const processHTMLText = (action, text, honorsTargetInHTMLLinks) => {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
|
-
|
|
68
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
69
|
-
action = updateIn(action, [Constants.payload, Constants.activity, Constants.text], () => htmlNode.innerHTML);
|
|
70
67
|
} catch (e) {
|
|
71
68
|
let errorMessage = "Failed to apply action: ";
|
|
72
69
|
try {
|
|
@@ -83,6 +80,7 @@ const processHTMLText = (action, text, honorsTargetInHTMLLinks) => {
|
|
|
83
80
|
});
|
|
84
81
|
}
|
|
85
82
|
}
|
|
83
|
+
action = updateIn(action, [Constants.payload, Constants.activity, Constants.text], () => htmlNode.innerHTML);
|
|
86
84
|
return action;
|
|
87
85
|
};
|
|
88
86
|
|
|
@@ -5,6 +5,7 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
5
5
|
|
|
6
6
|
import { createFileAndDownload } from "../common/utils";
|
|
7
7
|
import defaultLibraryScripts from "../components/footerstateful/downloadtranscriptstateful/common/defaultLibraryScripts";
|
|
8
|
+
import DOMPurify from "dompurify";
|
|
8
9
|
class TranscriptHTMLBuilder {
|
|
9
10
|
// eslint-disable-line @typescript-eslint/no-explicit-any
|
|
10
11
|
|
|
@@ -669,7 +670,10 @@ const createChatTranscript = async function (transcript, facadeChatSDK) {
|
|
|
669
670
|
reader.readAsDataURL(blob);
|
|
670
671
|
});
|
|
671
672
|
};
|
|
672
|
-
let messages = transcriptMessages
|
|
673
|
+
let messages = transcriptMessages.filter(message => {
|
|
674
|
+
message.content = DOMPurify.sanitize(message.content);
|
|
675
|
+
return message.content.length > 0;
|
|
676
|
+
});
|
|
673
677
|
if (renderAttachments) {
|
|
674
678
|
messages = await Promise.all(transcriptMessages.map(async message => {
|
|
675
679
|
// eslint-disable-line @typescript-eslint/no-explicit-any
|
|
@@ -57,7 +57,7 @@ export declare class FacadeChatSDK {
|
|
|
57
57
|
getCallingToken(): Promise<string>;
|
|
58
58
|
getMessages(): Promise<IMessage[] | OmnichannelMessage[] | undefined>;
|
|
59
59
|
getDataMaskingRules(): Promise<MaskingRules>;
|
|
60
|
-
sendMessage(message: ChatSDKMessage): Promise<void>;
|
|
60
|
+
sendMessage(message: ChatSDKMessage): Promise<void | OmnichannelMessage>;
|
|
61
61
|
onNewMessage(onNewMessageCallback: CallableFunction, optionalParams?: OnNewMessageOptionalParams): Promise<void>;
|
|
62
62
|
sendTypingEvent(): Promise<void>;
|
|
63
63
|
onTypingEvent(onTypingEventCallback: CallableFunction): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/omnichannel-chat-widget",
|
|
3
|
-
"version": "1.7.7-main.
|
|
3
|
+
"version": "1.7.7-main.5a9f9d2",
|
|
4
4
|
"description": "Microsoft Omnichannel Chat Widget",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"types": "lib/types/index.d.ts",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"dependencies": {
|
|
79
79
|
"@azure/core-tracing": "^1.2.0",
|
|
80
80
|
"@microsoft/omnichannel-chat-components": "1.1.8",
|
|
81
|
-
"@microsoft/omnichannel-chat-sdk": "^1.10.
|
|
81
|
+
"@microsoft/omnichannel-chat-sdk": "^1.10.16",
|
|
82
82
|
"@opentelemetry/api": "^1.9.0",
|
|
83
83
|
"abort-controller-es5": "^2.0.1",
|
|
84
84
|
"dompurify": "^3.2.4",
|