@salesforce/lds-adapters-uiapi-lex 1.355.0 → 1.357.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-uiapi-lex",
3
- "version": "1.355.0",
3
+ "version": "1.357.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "UIAPI LWC Adapters built for LEX",
6
6
  "repository": {
@@ -34,7 +34,7 @@ function resolvedPromiseLike$1(result) {
34
34
  }
35
35
  return {
36
36
  then: (onFulfilled, _onRejected) => {
37
- if (onFulfilled) {
37
+ if (typeof onFulfilled === 'function') {
38
38
  try {
39
39
  return resolvedPromiseLike$1(onFulfilled(result));
40
40
  }
@@ -59,7 +59,7 @@ function rejectedPromiseLike$1(reason) {
59
59
  }
60
60
  return {
61
61
  then: (_onFulfilled, onRejected) => {
62
- if (onRejected) {
62
+ if (typeof onRejected === 'function') {
63
63
  try {
64
64
  return resolvedPromiseLike$1(onRejected(reason));
65
65
  }
@@ -665,4 +665,4 @@ racesync([getServices(serviceRequirements)]).then(
665
665
  );
666
666
 
667
667
  export { getObjectInfo, getObjectInfos };
668
- // version: 1.355.0-4ae8017b1b
668
+ // version: 1.357.0-aac41a57a8