@salesforce/lds-adapters-commerce-store-pricing 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 +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-commerce-store-pricing",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters Commerce Store Pricing",
|
|
6
6
|
"main": "dist/es/es2018/commerce-store-pricing.js",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-commerce-store-pricing"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@salesforce/lds-bindings": "^1.
|
|
32
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
36
|
-
"@salesforce/lds-karma": "^1.
|
|
35
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
36
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
37
37
|
},
|
|
38
38
|
"nx": {
|
|
39
39
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -394,21 +394,23 @@ let getProductPrice;
|
|
|
394
394
|
let getProductPrice_imperative;
|
|
395
395
|
// Adapter Metadata
|
|
396
396
|
const getProductPriceMetadata = { apiFamily: 'Commerce', name: 'getProductPrice' };
|
|
397
|
+
// Notify Update Available
|
|
397
398
|
function bindExportsTo(luvio) {
|
|
398
399
|
// LDS Adapters
|
|
399
400
|
const getProductPrice_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getProductPrice', getProductPriceAdapterFactory), getProductPriceMetadata);
|
|
400
401
|
return {
|
|
401
402
|
getProductPrice: createWireAdapterConstructor(luvio, getProductPrice_ldsAdapter, getProductPriceMetadata),
|
|
402
403
|
// Imperative GET Adapters
|
|
403
|
-
getProductPrice_imperative: createImperativeAdapter(luvio, getProductPrice_ldsAdapter, getProductPriceMetadata)
|
|
404
|
+
getProductPrice_imperative: createImperativeAdapter(luvio, getProductPrice_ldsAdapter, getProductPriceMetadata),
|
|
405
|
+
// Notify Update Availables
|
|
404
406
|
};
|
|
405
407
|
}
|
|
406
408
|
withDefaultLuvio((luvio) => {
|
|
407
409
|
({
|
|
408
410
|
getProductPrice,
|
|
409
|
-
getProductPrice_imperative
|
|
411
|
+
getProductPrice_imperative,
|
|
410
412
|
} = bindExportsTo(luvio));
|
|
411
413
|
});
|
|
412
414
|
|
|
413
415
|
export { getProductPrice, getProductPrice_imperative };
|
|
414
|
-
// version: 1.
|
|
416
|
+
// version: 1.261.0-10ee630e7
|