@salesforce/lds-adapters-community-microbatching 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-community-microbatching",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Microbatching requests",
|
|
6
6
|
"main": "dist/es/es2018/community-microbatching.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
46
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -291,6 +291,7 @@ const ingestRecordAdapterFactory = (luvio) => {
|
|
|
291
291
|
};
|
|
292
292
|
|
|
293
293
|
let ingestRecord;
|
|
294
|
+
// Notify Update Available
|
|
294
295
|
function bindExportsTo(luvio) {
|
|
295
296
|
function unwrapSnapshotData(factory) {
|
|
296
297
|
const adapter = factory(luvio);
|
|
@@ -299,6 +300,7 @@ function bindExportsTo(luvio) {
|
|
|
299
300
|
return {
|
|
300
301
|
ingestRecord: unwrapSnapshotData(ingestRecordAdapterFactory),
|
|
301
302
|
// Imperative GET Adapters
|
|
303
|
+
// Notify Update Availables
|
|
302
304
|
};
|
|
303
305
|
}
|
|
304
306
|
withDefaultLuvio((luvio) => {
|
|
@@ -308,4 +310,4 @@ withDefaultLuvio((luvio) => {
|
|
|
308
310
|
});
|
|
309
311
|
|
|
310
312
|
export { ingestRecord };
|
|
311
|
-
// version: 1.
|
|
313
|
+
// version: 1.261.0-10ee630e7
|