@salesforce/lds-adapters-platform-formula 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-platform-formula",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "APIs related to core Salesforce Formulas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/platform-formula.js",
|
|
@@ -40,11 +40,11 @@
|
|
|
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.
|
|
47
|
-
"@salesforce/lds-karma": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
47
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -259,6 +259,7 @@ const getExplanationAdapterFactory = (luvio) => {
|
|
|
259
259
|
};
|
|
260
260
|
|
|
261
261
|
let getExplanation;
|
|
262
|
+
// Notify Update Available
|
|
262
263
|
function bindExportsTo(luvio) {
|
|
263
264
|
function unwrapSnapshotData(factory) {
|
|
264
265
|
const adapter = factory(luvio);
|
|
@@ -267,6 +268,7 @@ function bindExportsTo(luvio) {
|
|
|
267
268
|
return {
|
|
268
269
|
getExplanation: unwrapSnapshotData(getExplanationAdapterFactory),
|
|
269
270
|
// Imperative GET Adapters
|
|
271
|
+
// Notify Update Availables
|
|
270
272
|
};
|
|
271
273
|
}
|
|
272
274
|
withDefaultLuvio((luvio) => {
|
|
@@ -276,4 +278,4 @@ withDefaultLuvio((luvio) => {
|
|
|
276
278
|
});
|
|
277
279
|
|
|
278
280
|
export { getExplanation };
|
|
279
|
-
// version: 1.
|
|
281
|
+
// version: 1.261.0-10ee630e7
|