@salesforce/lds-adapters-industries-cpq 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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/sfdc/index.js +5 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-cpq",
3
- "version": "1.260.0",
3
+ "version": "1.261.0",
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",
@@ -43,11 +43,11 @@
43
43
  "test:compat": "nx build:karma && karma start --single-run --compat"
44
44
  },
45
45
  "dependencies": {
46
- "@salesforce/lds-bindings": "^1.260.0"
46
+ "@salesforce/lds-bindings": "^1.261.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@salesforce/lds-compiler-plugins": "^1.260.0",
50
- "@salesforce/lds-karma": "^1.260.0"
49
+ "@salesforce/lds-compiler-plugins": "^1.261.0",
50
+ "@salesforce/lds-karma": "^1.261.0"
51
51
  },
52
52
  "nx": {
53
53
  "targets": {
package/sfdc/index.js CHANGED
@@ -6322,6 +6322,7 @@ let updateCartItems;
6322
6322
  // Imperative GET Adapters
6323
6323
  let getCart_imperative;
6324
6324
  const getCartMetadata = { apiFamily: 'cpq', name: 'getCart' };
6325
+ // Notify Update Available
6325
6326
  function bindExportsTo(luvio) {
6326
6327
  // LDS Adapters
6327
6328
  const getCart_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getCart', getCartAdapterFactory), getCartMetadata);
@@ -6342,7 +6343,8 @@ function bindExportsTo(luvio) {
6342
6343
  updateCart: unwrapSnapshotData(updateCartAdapterFactory),
6343
6344
  updateCartItems: unwrapSnapshotData(updateCartItemsAdapterFactory),
6344
6345
  // Imperative GET Adapters
6345
- getCart_imperative: createImperativeAdapter(luvio, getCart_ldsAdapter, getCartMetadata)
6346
+ getCart_imperative: createImperativeAdapter(luvio, getCart_ldsAdapter, getCartMetadata),
6347
+ // Notify Update Availables
6346
6348
  };
6347
6349
  }
6348
6350
  withDefaultLuvio((luvio) => {
@@ -6358,9 +6360,9 @@ withDefaultLuvio((luvio) => {
6358
6360
  searchProductList,
6359
6361
  updateCart,
6360
6362
  updateCartItems,
6361
- getCart_imperative
6363
+ getCart_imperative,
6362
6364
  } = bindExportsTo(luvio));
6363
6365
  });
6364
6366
 
6365
6367
  export { configure, createCart, createCartItems, getCart, getCart_imperative, preview, priceCart, productDetails, productList, searchProductList, updateCart, updateCartItems };
6366
- // version: 1.260.0-7a5d1675a
6368
+ // version: 1.261.0-10ee630e7