@salesforce/lds-adapters-industries-einstein-aiaccelerator 1.259.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 +4 -4
- package/sfdc/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-einstein-aiaccelerator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "AI Accelerator Connect API to make predictions",
|
|
6
6
|
"main": "dist/es/es2018/industries-einstein-aiaccelerator.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
46
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -3656,6 +3656,7 @@ const predictionsAdapterFactory = (luvio) => {
|
|
|
3656
3656
|
|
|
3657
3657
|
let fetchRecommendations;
|
|
3658
3658
|
let predictions;
|
|
3659
|
+
// Notify Update Available
|
|
3659
3660
|
function bindExportsTo(luvio) {
|
|
3660
3661
|
function unwrapSnapshotData(factory) {
|
|
3661
3662
|
const adapter = factory(luvio);
|
|
@@ -3665,6 +3666,7 @@ function bindExportsTo(luvio) {
|
|
|
3665
3666
|
fetchRecommendations: unwrapSnapshotData(fetchRecommendationsAdapterFactory),
|
|
3666
3667
|
predictions: unwrapSnapshotData(predictionsAdapterFactory),
|
|
3667
3668
|
// Imperative GET Adapters
|
|
3669
|
+
// Notify Update Availables
|
|
3668
3670
|
};
|
|
3669
3671
|
}
|
|
3670
3672
|
withDefaultLuvio((luvio) => {
|
|
@@ -3675,4 +3677,4 @@ withDefaultLuvio((luvio) => {
|
|
|
3675
3677
|
});
|
|
3676
3678
|
|
|
3677
3679
|
export { fetchRecommendations, predictions };
|
|
3678
|
-
// version: 1.
|
|
3680
|
+
// version: 1.261.0-10ee630e7
|