@salesforce/lds-adapters-revenue-place-quote 1.261.0 → 1.262.1
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
declare let updateQuote: any;
|
|
2
|
-
export { updateQuote
|
|
2
|
+
export { updateQuote };
|
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.262.1",
|
|
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",
|
|
@@ -40,15 +40,14 @@
|
|
|
40
40
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-revenue-place-quote",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
42
|
"test": "nx build:karma && karma start --single-run",
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
44
43
|
"test:unit": "jest"
|
|
45
44
|
},
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
50
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
52
51
|
},
|
|
53
52
|
"nx": {
|
|
54
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -369,9 +369,10 @@ const updateQuoteAdapterFactory = (luvio) => {
|
|
|
369
369
|
let updateQuote;
|
|
370
370
|
// Notify Update Available
|
|
371
371
|
function bindExportsTo(luvio) {
|
|
372
|
+
// LDS Adapters
|
|
372
373
|
function unwrapSnapshotData(factory) {
|
|
373
374
|
const adapter = factory(luvio);
|
|
374
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
375
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
375
376
|
}
|
|
376
377
|
return {
|
|
377
378
|
updateQuote: unwrapSnapshotData(updateQuoteAdapterFactory),
|
|
@@ -380,10 +381,8 @@ function bindExportsTo(luvio) {
|
|
|
380
381
|
};
|
|
381
382
|
}
|
|
382
383
|
withDefaultLuvio((luvio) => {
|
|
383
|
-
({
|
|
384
|
-
updateQuote,
|
|
385
|
-
} = bindExportsTo(luvio));
|
|
384
|
+
({ updateQuote } = bindExportsTo(luvio));
|
|
386
385
|
});
|
|
387
386
|
|
|
388
387
|
export { updateQuote };
|
|
389
|
-
// version: 1.
|
|
388
|
+
// version: 1.262.1-9a1924e93
|