@salesforce/lds-adapters-revenue-billing-batch 1.260.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
|
@@ -579,23 +579,23 @@ const createPaymentsBatchSchedulerAdapterFactory = (luvio) => {
|
|
|
579
579
|
|
|
580
580
|
let createInvoicesBatchScheduler;
|
|
581
581
|
let createPaymentsBatchScheduler;
|
|
582
|
+
// Notify Update Available
|
|
582
583
|
function bindExportsTo(luvio) {
|
|
584
|
+
// LDS Adapters
|
|
583
585
|
function unwrapSnapshotData(factory) {
|
|
584
586
|
const adapter = factory(luvio);
|
|
585
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
587
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
586
588
|
}
|
|
587
589
|
return {
|
|
588
590
|
createInvoicesBatchScheduler: unwrapSnapshotData(createInvoicesBatchSchedulerAdapterFactory),
|
|
589
591
|
createPaymentsBatchScheduler: unwrapSnapshotData(createPaymentsBatchSchedulerAdapterFactory),
|
|
590
592
|
// Imperative GET Adapters
|
|
593
|
+
// Notify Update Availables
|
|
591
594
|
};
|
|
592
595
|
}
|
|
593
596
|
withDefaultLuvio((luvio) => {
|
|
594
|
-
({
|
|
595
|
-
createInvoicesBatchScheduler,
|
|
596
|
-
createPaymentsBatchScheduler,
|
|
597
|
-
} = bindExportsTo(luvio));
|
|
597
|
+
({ createInvoicesBatchScheduler, createPaymentsBatchScheduler } = bindExportsTo(luvio));
|
|
598
598
|
});
|
|
599
599
|
|
|
600
600
|
export { createInvoicesBatchScheduler, createPaymentsBatchScheduler };
|
|
601
|
-
// version: 1.
|
|
601
|
+
// version: 1.262.0-d3c071fdc
|