@salesforce/lds-adapters-industries-cpq 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.
|
@@ -10,4 +10,4 @@ declare let searchProductList: any;
|
|
|
10
10
|
declare let updateCart: any;
|
|
11
11
|
declare let updateCartItems: any;
|
|
12
12
|
declare let getCart_imperative: any;
|
|
13
|
-
export { configure, createCart, createCartItems, getCart, preview, priceCart, productDetails, productList, searchProductList, updateCart, updateCartItems, getCart_imperative };
|
|
13
|
+
export { configure, createCart, createCartItems, getCart, preview, priceCart, productDetails, productList, searchProductList, updateCart, updateCartItems, getCart_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-cpq",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "APIs for Industries CPQ Project",
|
|
6
6
|
"main": "dist/es/es2018/industries-cpq.js",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-cpq",
|
|
40
40
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-industries-cpq",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
|
-
"test": "nx build:karma && karma start --single-run"
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
42
|
+
"test": "nx build:karma && karma start --single-run"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -6328,7 +6328,7 @@ function bindExportsTo(luvio) {
|
|
|
6328
6328
|
const getCart_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getCart', getCartAdapterFactory), getCartMetadata);
|
|
6329
6329
|
function unwrapSnapshotData(factory) {
|
|
6330
6330
|
const adapter = factory(luvio);
|
|
6331
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
6331
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
6332
6332
|
}
|
|
6333
6333
|
return {
|
|
6334
6334
|
configure: unwrapSnapshotData(configureAdapterFactory),
|
|
@@ -6365,4 +6365,4 @@ withDefaultLuvio((luvio) => {
|
|
|
6365
6365
|
});
|
|
6366
6366
|
|
|
6367
6367
|
export { configure, createCart, createCartItems, getCart, getCart_imperative, preview, priceCart, productDetails, productList, searchProductList, updateCart, updateCartItems };
|
|
6368
|
-
// version: 1.
|
|
6368
|
+
// version: 1.262.1-9a1924e93
|