@salesforce/lds-adapters-revenue-place-order 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.
- package/package.json +4 -4
- package/sfdc/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-revenue-place-order",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
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.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.261.0",
|
|
45
45
|
"raml2html": "^7.8.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
49
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
50
50
|
},
|
|
51
51
|
"nx": {
|
|
52
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -371,6 +371,7 @@ const placeOrderAdapterFactory = (luvio) => {
|
|
|
371
371
|
};
|
|
372
372
|
|
|
373
373
|
let placeOrder;
|
|
374
|
+
// Notify Update Available
|
|
374
375
|
function bindExportsTo(luvio) {
|
|
375
376
|
function unwrapSnapshotData(factory) {
|
|
376
377
|
const adapter = factory(luvio);
|
|
@@ -379,6 +380,7 @@ function bindExportsTo(luvio) {
|
|
|
379
380
|
return {
|
|
380
381
|
placeOrder: unwrapSnapshotData(placeOrderAdapterFactory),
|
|
381
382
|
// Imperative GET Adapters
|
|
383
|
+
// Notify Update Availables
|
|
382
384
|
};
|
|
383
385
|
}
|
|
384
386
|
withDefaultLuvio((luvio) => {
|
|
@@ -388,4 +390,4 @@ withDefaultLuvio((luvio) => {
|
|
|
388
390
|
});
|
|
389
391
|
|
|
390
392
|
export { placeOrder };
|
|
391
|
-
// version: 1.
|
|
393
|
+
// version: 1.261.0-10ee630e7
|