@salesforce/lds-runtime-mobile 1.170.0 → 1.171.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/dist/main.js CHANGED
@@ -12324,7 +12324,9 @@ class UiApiDraftRecordService {
12324
12324
  return record;
12325
12325
  }
12326
12326
  buildCacheKeysForRecordRepresentation(record) {
12327
- return getTypeCacheKeysRecord(this.getLuvio(), record, () => '');
12327
+ const cacheKeys = new StoreKeyMap();
12328
+ getTypeCacheKeysRecord(cacheKeys, this.getLuvio(), record, () => '');
12329
+ return cacheKeys;
12328
12330
  }
12329
12331
  synchronousIngestRecord(record) {
12330
12332
  const luvio = this.getLuvio();
@@ -13080,9 +13082,11 @@ class ContentDocumentCompositeRepresentationActionHandler extends AbstractResour
13080
13082
  }
13081
13083
  buildCacheKeysFromResponse(response) {
13082
13084
  const luvio = this.getLuvio();
13083
- return getResponseCacheKeysContentDocumentCompositeRepresentation(luvio,
13085
+ const cacheKeys = new StoreKeyMap();
13086
+ getResponseCacheKeysContentDocumentCompositeRepresentation(cacheKeys, luvio,
13084
13087
  // this 2nd param is unused
13085
13088
  {}, response);
13089
+ return cacheKeys;
13086
13090
  }
13087
13091
  synchronousIngest(response, action) {
13088
13092
  // before mutating the response we need to check if we are ingesting a
@@ -16168,4 +16172,4 @@ register({
16168
16172
  });
16169
16173
 
16170
16174
  export { getRuntime, registerReportObserver, reportGraphqlQueryParseError };
16171
- // version: 1.170.0-6d09e766b
16175
+ // version: 1.171.0-2b2365b14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-runtime-mobile",
3
- "version": "1.170.0",
3
+ "version": "1.171.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS runtime for mobile/hybrid environments.",
6
6
  "main": "dist/main.js",
package/sfdc/main.js CHANGED
@@ -12324,7 +12324,9 @@ class UiApiDraftRecordService {
12324
12324
  return record;
12325
12325
  }
12326
12326
  buildCacheKeysForRecordRepresentation(record) {
12327
- return getTypeCacheKeysRecord(this.getLuvio(), record, () => '');
12327
+ const cacheKeys = new StoreKeyMap();
12328
+ getTypeCacheKeysRecord(cacheKeys, this.getLuvio(), record, () => '');
12329
+ return cacheKeys;
12328
12330
  }
12329
12331
  synchronousIngestRecord(record) {
12330
12332
  const luvio = this.getLuvio();
@@ -13080,9 +13082,11 @@ class ContentDocumentCompositeRepresentationActionHandler extends AbstractResour
13080
13082
  }
13081
13083
  buildCacheKeysFromResponse(response) {
13082
13084
  const luvio = this.getLuvio();
13083
- return getResponseCacheKeysContentDocumentCompositeRepresentation(luvio,
13085
+ const cacheKeys = new StoreKeyMap();
13086
+ getResponseCacheKeysContentDocumentCompositeRepresentation(cacheKeys, luvio,
13084
13087
  // this 2nd param is unused
13085
13088
  {}, response);
13089
+ return cacheKeys;
13086
13090
  }
13087
13091
  synchronousIngest(response, action) {
13088
13092
  // before mutating the response we need to check if we are ingesting a
@@ -16168,4 +16172,4 @@ register({
16168
16172
  });
16169
16173
 
16170
16174
  export { getRuntime, registerReportObserver, reportGraphqlQueryParseError };
16171
- // version: 1.170.0-6d09e766b
16175
+ // version: 1.171.0-2b2365b14