@salesforce/lds-runtime-bridge 1.242.0 → 1.242.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.
@@ -68,6 +68,9 @@ function handleDurableStoreRejection(instrument) {
68
68
  }
69
69
 
70
70
  function isStoreEntryError(storeRecord) {
71
+ if (!storeRecord || typeof storeRecord !== 'object') {
72
+ return false;
73
+ }
71
74
  return storeRecord.__type === 'error';
72
75
  }
73
76
 
@@ -5613,6 +5616,7 @@ var PredicateType;
5613
5616
  PredicateType["single"] = "single";
5614
5617
  PredicateType["not"] = "not";
5615
5618
  })(PredicateType || (PredicateType = {}));
5619
+ const PARENT_RELATIONSHIP = 'parentRelationship';
5616
5620
 
5617
5621
  ({
5618
5622
  kind: Kind.DIRECTIVE,
@@ -5629,7 +5633,7 @@ var PredicateType;
5629
5633
  },
5630
5634
  value: {
5631
5635
  kind: Kind.STRING,
5632
- value: 'parentRelationship',
5636
+ value: PARENT_RELATIONSHIP,
5633
5637
  block: false,
5634
5638
  },
5635
5639
  },
@@ -5988,4 +5992,4 @@ function ldsRuntimeBridge() {
5988
5992
  }
5989
5993
 
5990
5994
  export { ldsRuntimeBridge as default };
5991
- // version: 1.242.0-57237c3b6
5995
+ // version: 1.242.1-58f8f4bb1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-runtime-bridge",
3
- "version": "1.242.0",
3
+ "version": "1.242.1",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS runtime for bridge.app.",
6
6
  "main": "dist/ldsRuntimeBridge.js",