@salesforce/lds-adapters-community-microbatching 1.261.0 → 1.262.1
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
declare let ingestRecord: any;
|
|
2
|
-
export { ingestRecord
|
|
2
|
+
export { ingestRecord };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-community-microbatching",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Microbatching requests",
|
|
6
6
|
"main": "dist/es/es2018/community-microbatching.js",
|
|
@@ -35,15 +35,14 @@
|
|
|
35
35
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-community-microbatching",
|
|
36
36
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-community-microbatching",
|
|
37
37
|
"start": "nx build:karma && karma start",
|
|
38
|
-
"test": "nx build:karma && karma start --single-run"
|
|
39
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
38
|
+
"test": "nx build:karma && karma start --single-run"
|
|
40
39
|
},
|
|
41
40
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
41
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
44
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
45
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
47
46
|
},
|
|
48
47
|
"nx": {
|
|
49
48
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -293,9 +293,10 @@ const ingestRecordAdapterFactory = (luvio) => {
|
|
|
293
293
|
let ingestRecord;
|
|
294
294
|
// Notify Update Available
|
|
295
295
|
function bindExportsTo(luvio) {
|
|
296
|
+
// LDS Adapters
|
|
296
297
|
function unwrapSnapshotData(factory) {
|
|
297
298
|
const adapter = factory(luvio);
|
|
298
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
299
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
299
300
|
}
|
|
300
301
|
return {
|
|
301
302
|
ingestRecord: unwrapSnapshotData(ingestRecordAdapterFactory),
|
|
@@ -304,10 +305,8 @@ function bindExportsTo(luvio) {
|
|
|
304
305
|
};
|
|
305
306
|
}
|
|
306
307
|
withDefaultLuvio((luvio) => {
|
|
307
|
-
({
|
|
308
|
-
ingestRecord,
|
|
309
|
-
} = bindExportsTo(luvio));
|
|
308
|
+
({ ingestRecord } = bindExportsTo(luvio));
|
|
310
309
|
});
|
|
311
310
|
|
|
312
311
|
export { ingestRecord };
|
|
313
|
-
// version: 1.
|
|
312
|
+
// version: 1.262.1-9a1924e93
|