@salesforce/lds-runtime-bridge 1.229.0-dev7 → 1.229.0-dev9
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/dist/ldsRuntimeBridge.js +4 -3
- package/package.json +8 -8
package/dist/ldsRuntimeBridge.js
CHANGED
|
@@ -15,6 +15,7 @@ import { setDefaultLuvio } from 'force/ldsEngine';
|
|
|
15
15
|
import { StoreKeySet, serializeStructuredKey, Reader, deepFreeze, emitAdapterEvent, InMemoryStore, Environment, Luvio } from 'force/luvioEngine';
|
|
16
16
|
import { instrumentLuvio } from 'force/ldsInstrumentation';
|
|
17
17
|
import { keyBuilderRecord } from 'force/ldsAdaptersUiapi';
|
|
18
|
+
import '@salesforce/gate/lds.idempotencyWriteDisabled';
|
|
18
19
|
import '@salesforce/gate/lds.graphqlEvalExcludeStaleRecords';
|
|
19
20
|
import networkAdapter from 'force/ldsNetwork';
|
|
20
21
|
import ldsEngineCreator from 'force/ldsEngineCreator';
|
|
@@ -655,12 +656,12 @@ function makeDurable(environment, { durableStore, instrumentation }) {
|
|
|
655
656
|
}
|
|
656
657
|
return environment.getNode(key, ingestStagingStore);
|
|
657
658
|
};
|
|
658
|
-
const wrapNormalizedGraphNode = function (normalized) {
|
|
659
|
+
const wrapNormalizedGraphNode = function (normalized, key) {
|
|
659
660
|
validateNotDisposed();
|
|
660
661
|
if (ingestStagingStore === null) {
|
|
661
662
|
ingestStagingStore = buildIngestStagingStore(environment);
|
|
662
663
|
}
|
|
663
|
-
return environment.wrapNormalizedGraphNode(normalized, ingestStagingStore);
|
|
664
|
+
return environment.wrapNormalizedGraphNode(normalized, key, ingestStagingStore);
|
|
664
665
|
};
|
|
665
666
|
const rebuildSnapshot = function (snapshot, onRebuild) {
|
|
666
667
|
validateNotDisposed();
|
|
@@ -6571,4 +6572,4 @@ function ldsRuntimeBridge() {
|
|
|
6571
6572
|
}
|
|
6572
6573
|
|
|
6573
6574
|
export { ldsRuntimeBridge as default };
|
|
6574
|
-
// version: 1.229.0-
|
|
6575
|
+
// version: 1.229.0-dev9-dd96b5901
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-bridge",
|
|
3
|
-
"version": "1.229.0-
|
|
3
|
+
"version": "1.229.0-dev9",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS runtime for bridge.app.",
|
|
6
6
|
"main": "dist/ldsRuntimeBridge.js",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-bridge"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@salesforce/lds-adapters-uiapi": "1.229.0-
|
|
38
|
-
"@salesforce/lds-instrumentation": "1.229.0-
|
|
37
|
+
"@salesforce/lds-adapters-uiapi": "1.229.0-dev9",
|
|
38
|
+
"@salesforce/lds-instrumentation": "1.229.0-dev9",
|
|
39
39
|
"@salesforce/user": "0.0.21",
|
|
40
40
|
"o11y": "244.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@salesforce/lds-drafts-adapters-uiapi": "1.229.0-
|
|
44
|
-
"@salesforce/lds-network-aura": "1.229.0-
|
|
45
|
-
"@salesforce/lds-runtime-aura": "1.229.0-
|
|
46
|
-
"@salesforce/lds-store-nimbus": "1.229.0-
|
|
47
|
-
"@salesforce/nimbus-plugin-lds": "1.229.0-
|
|
43
|
+
"@salesforce/lds-drafts-adapters-uiapi": "1.229.0-dev9",
|
|
44
|
+
"@salesforce/lds-network-aura": "1.229.0-dev9",
|
|
45
|
+
"@salesforce/lds-runtime-aura": "1.229.0-dev9",
|
|
46
|
+
"@salesforce/lds-store-nimbus": "1.229.0-dev9",
|
|
47
|
+
"@salesforce/nimbus-plugin-lds": "1.229.0-dev9",
|
|
48
48
|
"babel-plugin-dynamic-import-node": "^2.3.3"
|
|
49
49
|
},
|
|
50
50
|
"luvioBundlesize": [
|