@salesforce/lds-adapters-revenue-billing-batch 1.259.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-billing-batch",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.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",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"test:unit": "jest"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
48
|
-
"@salesforce/lds-karma": "^1.
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
48
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
49
49
|
},
|
|
50
50
|
"nx": {
|
|
51
51
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -579,6 +579,7 @@ const createPaymentsBatchSchedulerAdapterFactory = (luvio) => {
|
|
|
579
579
|
|
|
580
580
|
let createInvoicesBatchScheduler;
|
|
581
581
|
let createPaymentsBatchScheduler;
|
|
582
|
+
// Notify Update Available
|
|
582
583
|
function bindExportsTo(luvio) {
|
|
583
584
|
function unwrapSnapshotData(factory) {
|
|
584
585
|
const adapter = factory(luvio);
|
|
@@ -588,6 +589,7 @@ function bindExportsTo(luvio) {
|
|
|
588
589
|
createInvoicesBatchScheduler: unwrapSnapshotData(createInvoicesBatchSchedulerAdapterFactory),
|
|
589
590
|
createPaymentsBatchScheduler: unwrapSnapshotData(createPaymentsBatchSchedulerAdapterFactory),
|
|
590
591
|
// Imperative GET Adapters
|
|
592
|
+
// Notify Update Availables
|
|
591
593
|
};
|
|
592
594
|
}
|
|
593
595
|
withDefaultLuvio((luvio) => {
|
|
@@ -598,4 +600,4 @@ withDefaultLuvio((luvio) => {
|
|
|
598
600
|
});
|
|
599
601
|
|
|
600
602
|
export { createInvoicesBatchScheduler, createPaymentsBatchScheduler };
|
|
601
|
-
// version: 1.
|
|
603
|
+
// version: 1.261.0-10ee630e7
|