@salesforce/lds-runtime-mobile 1.170.0 → 1.170.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.
- package/dist/main.js +7 -3
- package/package.json +1 -1
- package/sfdc/main.js +7 -3
package/dist/main.js
CHANGED
|
@@ -12324,7 +12324,9 @@ class UiApiDraftRecordService {
|
|
|
12324
12324
|
return record;
|
|
12325
12325
|
}
|
|
12326
12326
|
buildCacheKeysForRecordRepresentation(record) {
|
|
12327
|
-
|
|
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
|
-
|
|
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.
|
|
16175
|
+
// version: 1.170.1-4e9cb0108
|
package/package.json
CHANGED
package/sfdc/main.js
CHANGED
|
@@ -12324,7 +12324,9 @@ class UiApiDraftRecordService {
|
|
|
12324
12324
|
return record;
|
|
12325
12325
|
}
|
|
12326
12326
|
buildCacheKeysForRecordRepresentation(record) {
|
|
12327
|
-
|
|
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
|
-
|
|
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.
|
|
16175
|
+
// version: 1.170.1-4e9cb0108
|