@salesforce/lds-ads-bridge 1.328.0 → 1.329.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.
@@ -481,7 +481,7 @@ const callbacks$1 = [];
481
481
  function register(r) {
482
482
  callbacks$1.forEach((callback) => callback(r));
483
483
  }
484
- // version: 1.328.0-f3d79bc783
484
+ // version: 1.329.1-0d03c6aeee
485
485
 
486
486
  /**
487
487
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
@@ -8085,13 +8085,12 @@ function mergePendingFields(newRecord, oldRecord, existingNode) {
8085
8085
  }
8086
8086
  }
8087
8087
  }
8088
- else {
8089
- const state = fieldValueRep.linkData();
8090
- if (state !== undefined) {
8091
- const { fields } = state;
8092
- if (includes.call(fields, 'ExternalId')) {
8093
- continue;
8094
- }
8088
+ // If the fields requested off of this spanning record are external fields, skip them to avoid creating request that exceed the SOQL limits on external data. https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_limits.htm
8089
+ const state = fieldValueRep.linkData();
8090
+ if (state !== undefined) {
8091
+ const { fields } = state;
8092
+ if (includes.call(fields, 'ExternalId')) {
8093
+ continue;
8095
8094
  }
8096
8095
  }
8097
8096
  }
package/dist/adsBridge.js CHANGED
@@ -367,4 +367,4 @@ function withAdsBridge(callback) {
367
367
  }
368
368
 
369
369
  export { instrument, withAdsBridge };
370
- // version: 1.328.0-f3d79bc783
370
+ // version: 1.329.1-0d03c6aeee
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-ads-bridge",
3
- "version": "1.328.0",
3
+ "version": "1.329.1",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Bridge to sync data between LDS and ADS",
6
6
  "main": "dist/adsBridge.js",
@@ -30,8 +30,8 @@
30
30
  "release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-ads-bridge"
31
31
  },
32
32
  "devDependencies": {
33
- "@salesforce/lds-adapters-uiapi": "^1.328.0",
34
- "@salesforce/lds-uiapi-record-utils-mobile": "^1.328.0"
33
+ "@salesforce/lds-adapters-uiapi": "^1.329.1",
34
+ "@salesforce/lds-uiapi-record-utils-mobile": "^1.329.1"
35
35
  },
36
36
  "volta": {
37
37
  "extends": "../../package.json"