@salesforce/lds-adapters-revenue-place-quote 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 +4 -4
- package/sfdc/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-revenue-place-quote",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Place Quote API for partial items and price/taxation updates async",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/revenue-place-quote.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -367,6 +367,7 @@ const updateQuoteAdapterFactory = (luvio) => {
|
|
|
367
367
|
};
|
|
368
368
|
|
|
369
369
|
let updateQuote;
|
|
370
|
+
// Notify Update Available
|
|
370
371
|
function bindExportsTo(luvio) {
|
|
371
372
|
function unwrapSnapshotData(factory) {
|
|
372
373
|
const adapter = factory(luvio);
|
|
@@ -375,6 +376,7 @@ function bindExportsTo(luvio) {
|
|
|
375
376
|
return {
|
|
376
377
|
updateQuote: unwrapSnapshotData(updateQuoteAdapterFactory),
|
|
377
378
|
// Imperative GET Adapters
|
|
379
|
+
// Notify Update Availables
|
|
378
380
|
};
|
|
379
381
|
}
|
|
380
382
|
withDefaultLuvio((luvio) => {
|
|
@@ -384,4 +386,4 @@ withDefaultLuvio((luvio) => {
|
|
|
384
386
|
});
|
|
385
387
|
|
|
386
388
|
export { updateQuote };
|
|
387
|
-
// version: 1.
|
|
389
|
+
// version: 1.261.0-10ee630e7
|