@salesforce/lds-adapters-revenue-place-order 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 placeOrder: any;
2
- export { placeOrder, };
2
+ export { placeOrder };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-revenue-place-order",
3
- "version": "1.261.0",
3
+ "version": "1.262.1",
4
4
  "description": "Place Order Connect API ",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/revenue-place-order.js",
@@ -41,12 +41,12 @@
41
41
  "test:unit": "jest"
42
42
  },
43
43
  "dependencies": {
44
- "@salesforce/lds-bindings": "^1.261.0",
44
+ "@salesforce/lds-bindings": "^1.262.1",
45
45
  "raml2html": "^7.8.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@salesforce/lds-compiler-plugins": "^1.261.0",
49
- "@salesforce/lds-karma": "^1.261.0"
48
+ "@salesforce/lds-compiler-plugins": "^1.262.1",
49
+ "@salesforce/lds-karma": "^1.262.1"
50
50
  },
51
51
  "nx": {
52
52
  "targets": {
package/sfdc/index.js CHANGED
@@ -373,9 +373,10 @@ const placeOrderAdapterFactory = (luvio) => {
373
373
  let placeOrder;
374
374
  // Notify Update Available
375
375
  function bindExportsTo(luvio) {
376
+ // LDS Adapters
376
377
  function unwrapSnapshotData(factory) {
377
378
  const adapter = factory(luvio);
378
- return (config) => adapter(config).then(snapshot => snapshot.data);
379
+ return (config) => adapter(config).then((snapshot) => snapshot.data);
379
380
  }
380
381
  return {
381
382
  placeOrder: unwrapSnapshotData(placeOrderAdapterFactory),
@@ -384,10 +385,8 @@ function bindExportsTo(luvio) {
384
385
  };
385
386
  }
386
387
  withDefaultLuvio((luvio) => {
387
- ({
388
- placeOrder,
389
- } = bindExportsTo(luvio));
388
+ ({ placeOrder } = bindExportsTo(luvio));
390
389
  });
391
390
 
392
391
  export { placeOrder };
393
- // version: 1.261.0-10ee630e7
392
+ // version: 1.262.1-9a1924e93