@salesforce/lds-adapters-service-einstein-copilot-bot 1.260.0 → 1.261.0
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/package.json +3 -3
- package/sfdc/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-einstein-copilot-bot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Einstein Copilot Bot API Family",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/service-einstein-copilot-bot.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1074,6 +1074,7 @@ const sendMessageAdapterFactory = (luvio) => {
|
|
|
1074
1074
|
};
|
|
1075
1075
|
|
|
1076
1076
|
let sendMessage;
|
|
1077
|
+
// Notify Update Available
|
|
1077
1078
|
function bindExportsTo(luvio) {
|
|
1078
1079
|
function unwrapSnapshotData(factory) {
|
|
1079
1080
|
const adapter = factory(luvio);
|
|
@@ -1082,6 +1083,7 @@ function bindExportsTo(luvio) {
|
|
|
1082
1083
|
return {
|
|
1083
1084
|
sendMessage: unwrapSnapshotData(sendMessageAdapterFactory),
|
|
1084
1085
|
// Imperative GET Adapters
|
|
1086
|
+
// Notify Update Availables
|
|
1085
1087
|
};
|
|
1086
1088
|
}
|
|
1087
1089
|
withDefaultLuvio((luvio) => {
|
|
@@ -1091,4 +1093,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1091
1093
|
});
|
|
1092
1094
|
|
|
1093
1095
|
export { sendMessage };
|
|
1094
|
-
// version: 1.
|
|
1096
|
+
// version: 1.261.0-10ee630e7
|