@salesforce/lwc-adapters-uiapi 1.327.0 → 1.329.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.
Files changed (2) hide show
  1. package/dist/main.js +6 -7
  2. package/package.json +3 -3
package/dist/main.js CHANGED
@@ -12744,13 +12744,12 @@ function mergePendingFields(newRecord, oldRecord, existingNode) {
12744
12744
  }
12745
12745
  }
12746
12746
  }
12747
- else {
12748
- const state = fieldValueRep.linkData();
12749
- if (state !== undefined) {
12750
- const { fields } = state;
12751
- if (includes.call(fields, 'ExternalId')) {
12752
- continue;
12753
- }
12747
+ // 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
12748
+ const state = fieldValueRep.linkData();
12749
+ if (state !== undefined) {
12750
+ const { fields } = state;
12751
+ if (includes.call(fields, 'ExternalId')) {
12752
+ continue;
12754
12753
  }
12755
12754
  }
12756
12755
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lwc-adapters-uiapi",
3
- "version": "1.327.0",
3
+ "version": "1.329.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "UIAPI adapters with LWC bindings",
6
6
  "module": "dist/main.js",
@@ -31,10 +31,10 @@
31
31
  "clean": "rm -rf dist src/generated"
32
32
  },
33
33
  "devDependencies": {
34
- "@salesforce/lds-adapters-uiapi": "^1.327.0"
34
+ "@salesforce/lds-adapters-uiapi": "^1.329.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "@luvio/lwc-luvio": "0.156.5",
38
- "@salesforce/lds-default-luvio": "^1.327.0"
38
+ "@salesforce/lds-default-luvio": "^1.329.0"
39
39
  }
40
40
  }