@salesforce/lds-adapters-revenue-billing-batch 1.261.0 → 1.262.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-revenue-billing-batch",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "This API family is meant for all APIs required for Billing Batch.",
|
|
6
6
|
"main": "dist/es/es2018/revenue-billing-batch.js",
|
|
@@ -37,15 +37,14 @@
|
|
|
37
37
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-revenue-billing-batch",
|
|
38
38
|
"start": "nx build:karma && karma start",
|
|
39
39
|
"test": "nx build:karma && karma start --single-run",
|
|
40
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
41
40
|
"test:unit": "jest"
|
|
42
41
|
},
|
|
43
42
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
48
|
-
"@salesforce/lds-karma": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
47
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
49
48
|
},
|
|
50
49
|
"nx": {
|
|
51
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -581,9 +581,10 @@ let createInvoicesBatchScheduler;
|
|
|
581
581
|
let createPaymentsBatchScheduler;
|
|
582
582
|
// Notify Update Available
|
|
583
583
|
function bindExportsTo(luvio) {
|
|
584
|
+
// LDS Adapters
|
|
584
585
|
function unwrapSnapshotData(factory) {
|
|
585
586
|
const adapter = factory(luvio);
|
|
586
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
587
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
587
588
|
}
|
|
588
589
|
return {
|
|
589
590
|
createInvoicesBatchScheduler: unwrapSnapshotData(createInvoicesBatchSchedulerAdapterFactory),
|
|
@@ -593,11 +594,8 @@ function bindExportsTo(luvio) {
|
|
|
593
594
|
};
|
|
594
595
|
}
|
|
595
596
|
withDefaultLuvio((luvio) => {
|
|
596
|
-
({
|
|
597
|
-
createInvoicesBatchScheduler,
|
|
598
|
-
createPaymentsBatchScheduler,
|
|
599
|
-
} = bindExportsTo(luvio));
|
|
597
|
+
({ createInvoicesBatchScheduler, createPaymentsBatchScheduler } = bindExportsTo(luvio));
|
|
600
598
|
});
|
|
601
599
|
|
|
602
600
|
export { createInvoicesBatchScheduler, createPaymentsBatchScheduler };
|
|
603
|
-
// version: 1.
|
|
601
|
+
// version: 1.262.0-d3c071fdc
|