@salesforce/lds-runtime-mobile 1.266.0-dev5 → 1.266.0-dev7
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 +30 -7
- package/package.json +16 -16
- package/sfdc/main.js +30 -7
package/dist/main.js
CHANGED
|
@@ -1385,6 +1385,10 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
|
|
|
1385
1385
|
}
|
|
1386
1386
|
return {};
|
|
1387
1387
|
};
|
|
1388
|
+
const getIngestStagingStore = function () {
|
|
1389
|
+
validateNotDisposed();
|
|
1390
|
+
return stagingStore === null || stagingStore === void 0 ? void 0 : stagingStore.fallbackStringKeyInMemoryStore;
|
|
1391
|
+
};
|
|
1388
1392
|
const handleSuccessResponse = async function (ingestAndBroadcastFunc, getResponseCacheKeysFunc) {
|
|
1389
1393
|
validateNotDisposed();
|
|
1390
1394
|
const cacheKeyMap = getResponseCacheKeysFunc();
|
|
@@ -1577,6 +1581,7 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
|
|
|
1577
1581
|
applyCachePolicy: { value: applyCachePolicy },
|
|
1578
1582
|
getIngestStagingStoreRecords: { value: getIngestStagingStoreRecords },
|
|
1579
1583
|
getIngestStagingStoreMetadata: { value: getIngestStagingStoreMetadata },
|
|
1584
|
+
getIngestStagingStore: { value: getIngestStagingStore },
|
|
1580
1585
|
handleSuccessResponse: { value: handleSuccessResponse },
|
|
1581
1586
|
handleErrorResponse: { value: handleErrorResponse },
|
|
1582
1587
|
getNotifyChangeStoreEntries: { value: getNotifyChangeStoreEntries },
|
|
@@ -11638,7 +11643,7 @@ function createUserJsonOutput(selection, jsonInput, jsonOutput) {
|
|
|
11638
11643
|
function createjsonOutput(selections, jsonInput, jsonOutput) {
|
|
11639
11644
|
const keys$1 = keys$4(jsonInput);
|
|
11640
11645
|
selections.filter(isFieldNode).forEach((subSelection) => {
|
|
11641
|
-
const fieldName = subSelection.name.value;
|
|
11646
|
+
const fieldName = subSelection.alias ? subSelection.alias.value : subSelection.name.value;
|
|
11642
11647
|
if (keys$1.includes(fieldName)) {
|
|
11643
11648
|
if (isArray$2(jsonInput[fieldName])) {
|
|
11644
11649
|
jsonOutput[fieldName] = [];
|
|
@@ -12954,7 +12959,7 @@ function normalizeRecordFields(key, entry) {
|
|
|
12954
12959
|
* @param normalizedRecord Record containing normalized field links
|
|
12955
12960
|
* @param recordStore a store containing referenced record fields
|
|
12956
12961
|
*/
|
|
12957
|
-
function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries) {
|
|
12962
|
+
function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries, store) {
|
|
12958
12963
|
const fields = normalizedRecord.fields;
|
|
12959
12964
|
const filteredFields = {};
|
|
12960
12965
|
const links = {};
|
|
@@ -12981,6 +12986,19 @@ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntr
|
|
|
12981
12986
|
if (ref !== undefined) {
|
|
12982
12987
|
filteredFields[fieldName] = ref;
|
|
12983
12988
|
}
|
|
12989
|
+
else {
|
|
12990
|
+
// if we have a store to read, try to find the field there too
|
|
12991
|
+
// The durable ingest staging store may pass through to L1, and
|
|
12992
|
+
// not all fields are necessarily published every time, so it is
|
|
12993
|
+
// important to check L1 and not just the fields being published,
|
|
12994
|
+
// otherwise we risk truncating the fields on the record.
|
|
12995
|
+
if (store) {
|
|
12996
|
+
ref = store.readEntry(__ref);
|
|
12997
|
+
if (ref !== undefined) {
|
|
12998
|
+
filteredFields[fieldName] = ref;
|
|
12999
|
+
}
|
|
13000
|
+
}
|
|
13001
|
+
}
|
|
12984
13002
|
}
|
|
12985
13003
|
// we want to preserve fields that are missing nodes
|
|
12986
13004
|
if (filteredFields[fieldName] !== undefined || field.isMissing === true) {
|
|
@@ -13002,7 +13020,7 @@ function getDenormalizedKey(originalKey, recordId, luvio) {
|
|
|
13002
13020
|
}
|
|
13003
13021
|
return keyBuilderRecord(luvio, { recordId });
|
|
13004
13022
|
}
|
|
13005
|
-
function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata) {
|
|
13023
|
+
function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata, getStore) {
|
|
13006
13024
|
const getEntries = function (entries, segment) {
|
|
13007
13025
|
// this HOF only inspects records in the default segment
|
|
13008
13026
|
if (segment !== DefaultDurableSegment) {
|
|
@@ -13070,6 +13088,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
|
|
|
13070
13088
|
const putRecordViews = {};
|
|
13071
13089
|
const storeRecords = getStoreRecords !== undefined ? getStoreRecords() : {};
|
|
13072
13090
|
const storeMetadata = getStoreMetadata !== undefined ? getStoreMetadata() : {};
|
|
13091
|
+
const store = getStore();
|
|
13073
13092
|
for (let i = 0, len = keys$1.length; i < len; i++) {
|
|
13074
13093
|
const key = keys$1[i];
|
|
13075
13094
|
let value = entries[key];
|
|
@@ -13116,7 +13135,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
|
|
|
13116
13135
|
metadataVersion: DURABLE_METADATA_VERSION,
|
|
13117
13136
|
};
|
|
13118
13137
|
}
|
|
13119
|
-
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries);
|
|
13138
|
+
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
|
|
13120
13139
|
putEntries[recordKey] = {
|
|
13121
13140
|
data: denormalizedRecord,
|
|
13122
13141
|
metadata,
|
|
@@ -17793,22 +17812,25 @@ function getRuntime() {
|
|
|
17793
17812
|
const internalAdapterStore = new InMemoryStore();
|
|
17794
17813
|
let getIngestRecordsForInternalAdapters;
|
|
17795
17814
|
let getIngestMetadataForInternalAdapters;
|
|
17815
|
+
let getIngestStoreInternal;
|
|
17796
17816
|
const internalAdapterDurableStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => getIngestRecordsForInternalAdapters !== undefined
|
|
17797
17817
|
? getIngestRecordsForInternalAdapters()
|
|
17798
17818
|
: {}, () => getIngestMetadataForInternalAdapters !== undefined
|
|
17799
17819
|
? getIngestMetadataForInternalAdapters()
|
|
17800
|
-
: {});
|
|
17820
|
+
: {}, () => (getIngestStoreInternal !== undefined ? getIngestStoreInternal() : undefined));
|
|
17801
17821
|
const { adapters: { getObjectInfo, getObjectInfos, getRecord, getObjectInfoDirectory }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
|
|
17802
17822
|
lazyInternalLuvio = internalLuvio;
|
|
17803
17823
|
getIngestRecordsForInternalAdapters =
|
|
17804
17824
|
internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
|
|
17805
17825
|
getIngestMetadataForInternalAdapters =
|
|
17806
17826
|
internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
|
|
17827
|
+
getIngestStoreInternal = internalAdapterDurableEnvironment.getIngestStagingStore;
|
|
17807
17828
|
lazyObjectInfoService = new ObjectInfoService(getObjectInfo, getObjectInfos, getObjectInfoDirectory, lazyBaseDurableStore);
|
|
17808
17829
|
// creates a durable store that denormalizes scalar fields for records
|
|
17809
17830
|
let getIngestRecords;
|
|
17810
17831
|
let getIngestMetadata;
|
|
17811
|
-
|
|
17832
|
+
let getIngestStore;
|
|
17833
|
+
const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}), () => (getIngestStore !== undefined ? getIngestStore() : undefined));
|
|
17812
17834
|
const baseEnv = new Environment(store, lazyNetworkAdapter);
|
|
17813
17835
|
const gqlEnv = makeEnvironmentGraphqlAware(baseEnv);
|
|
17814
17836
|
const durableEnv = makeDurable(gqlEnv, {
|
|
@@ -17817,6 +17839,7 @@ function getRuntime() {
|
|
|
17817
17839
|
});
|
|
17818
17840
|
getIngestRecords = durableEnv.getIngestStagingStoreRecords;
|
|
17819
17841
|
getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
|
|
17842
|
+
getIngestStore = durableEnv.getIngestStagingStore;
|
|
17820
17843
|
// draft queue
|
|
17821
17844
|
lazyDraftQueue = buildLdsDraftQueue(recordDenormingStore);
|
|
17822
17845
|
const draftService = new UiApiDraftRecordService(lazyDraftQueue, () => lazyLuvio, recordDenormingStore, getObjectInfo, newRecordId, userId, formatDisplayValue);
|
|
@@ -17916,4 +17939,4 @@ register({
|
|
|
17916
17939
|
});
|
|
17917
17940
|
|
|
17918
17941
|
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, registerReportObserver, reportGraphqlQueryParseError };
|
|
17919
|
-
// version: 1.266.0-
|
|
17942
|
+
// version: 1.266.0-dev7-c30e261b4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-mobile",
|
|
3
|
-
"version": "1.266.0-
|
|
3
|
+
"version": "1.266.0-dev7",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS runtime for mobile/hybrid environments.",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -32,25 +32,25 @@
|
|
|
32
32
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-mobile"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@salesforce/lds-adapters-uiapi": "^1.266.0-
|
|
36
|
-
"@salesforce/lds-bindings": "^1.266.0-
|
|
37
|
-
"@salesforce/lds-instrumentation": "^1.266.0-
|
|
38
|
-
"@salesforce/lds-priming": "^1.266.0-
|
|
35
|
+
"@salesforce/lds-adapters-uiapi": "^1.266.0-dev7",
|
|
36
|
+
"@salesforce/lds-bindings": "^1.266.0-dev7",
|
|
37
|
+
"@salesforce/lds-instrumentation": "^1.266.0-dev7",
|
|
38
|
+
"@salesforce/lds-priming": "^1.266.0-dev7",
|
|
39
39
|
"@salesforce/user": "0.0.21",
|
|
40
40
|
"o11y": "244.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@salesforce/lds-adapters-graphql": "^1.266.0-
|
|
44
|
-
"@salesforce/lds-drafts": "^1.266.0-
|
|
45
|
-
"@salesforce/lds-drafts-adapters-uiapi": "^1.266.0-
|
|
46
|
-
"@salesforce/lds-graphql-eval": "^1.266.0-
|
|
47
|
-
"@salesforce/lds-network-adapter": "^1.266.0-
|
|
48
|
-
"@salesforce/lds-network-nimbus": "^1.266.0-
|
|
49
|
-
"@salesforce/lds-store-binary": "^1.266.0-
|
|
50
|
-
"@salesforce/lds-store-nimbus": "^1.266.0-
|
|
51
|
-
"@salesforce/lds-store-sql": "^1.266.0-
|
|
52
|
-
"@salesforce/lds-utils-adapters": "^1.266.0-
|
|
53
|
-
"@salesforce/nimbus-plugin-lds": "^1.266.0-
|
|
43
|
+
"@salesforce/lds-adapters-graphql": "^1.266.0-dev7",
|
|
44
|
+
"@salesforce/lds-drafts": "^1.266.0-dev7",
|
|
45
|
+
"@salesforce/lds-drafts-adapters-uiapi": "^1.266.0-dev7",
|
|
46
|
+
"@salesforce/lds-graphql-eval": "^1.266.0-dev7",
|
|
47
|
+
"@salesforce/lds-network-adapter": "^1.266.0-dev7",
|
|
48
|
+
"@salesforce/lds-network-nimbus": "^1.266.0-dev7",
|
|
49
|
+
"@salesforce/lds-store-binary": "^1.266.0-dev7",
|
|
50
|
+
"@salesforce/lds-store-nimbus": "^1.266.0-dev7",
|
|
51
|
+
"@salesforce/lds-store-sql": "^1.266.0-dev7",
|
|
52
|
+
"@salesforce/lds-utils-adapters": "^1.266.0-dev7",
|
|
53
|
+
"@salesforce/nimbus-plugin-lds": "^1.266.0-dev7",
|
|
54
54
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
55
55
|
"wait-for-expect": "^3.0.2"
|
|
56
56
|
},
|
package/sfdc/main.js
CHANGED
|
@@ -1385,6 +1385,10 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
|
|
|
1385
1385
|
}
|
|
1386
1386
|
return {};
|
|
1387
1387
|
};
|
|
1388
|
+
const getIngestStagingStore = function () {
|
|
1389
|
+
validateNotDisposed();
|
|
1390
|
+
return stagingStore === null || stagingStore === void 0 ? void 0 : stagingStore.fallbackStringKeyInMemoryStore;
|
|
1391
|
+
};
|
|
1388
1392
|
const handleSuccessResponse = async function (ingestAndBroadcastFunc, getResponseCacheKeysFunc) {
|
|
1389
1393
|
validateNotDisposed();
|
|
1390
1394
|
const cacheKeyMap = getResponseCacheKeysFunc();
|
|
@@ -1577,6 +1581,7 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
|
|
|
1577
1581
|
applyCachePolicy: { value: applyCachePolicy },
|
|
1578
1582
|
getIngestStagingStoreRecords: { value: getIngestStagingStoreRecords },
|
|
1579
1583
|
getIngestStagingStoreMetadata: { value: getIngestStagingStoreMetadata },
|
|
1584
|
+
getIngestStagingStore: { value: getIngestStagingStore },
|
|
1580
1585
|
handleSuccessResponse: { value: handleSuccessResponse },
|
|
1581
1586
|
handleErrorResponse: { value: handleErrorResponse },
|
|
1582
1587
|
getNotifyChangeStoreEntries: { value: getNotifyChangeStoreEntries },
|
|
@@ -11638,7 +11643,7 @@ function createUserJsonOutput(selection, jsonInput, jsonOutput) {
|
|
|
11638
11643
|
function createjsonOutput(selections, jsonInput, jsonOutput) {
|
|
11639
11644
|
const keys$1 = keys$4(jsonInput);
|
|
11640
11645
|
selections.filter(isFieldNode).forEach((subSelection) => {
|
|
11641
|
-
const fieldName = subSelection.name.value;
|
|
11646
|
+
const fieldName = subSelection.alias ? subSelection.alias.value : subSelection.name.value;
|
|
11642
11647
|
if (keys$1.includes(fieldName)) {
|
|
11643
11648
|
if (isArray$2(jsonInput[fieldName])) {
|
|
11644
11649
|
jsonOutput[fieldName] = [];
|
|
@@ -12954,7 +12959,7 @@ function normalizeRecordFields(key, entry) {
|
|
|
12954
12959
|
* @param normalizedRecord Record containing normalized field links
|
|
12955
12960
|
* @param recordStore a store containing referenced record fields
|
|
12956
12961
|
*/
|
|
12957
|
-
function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries) {
|
|
12962
|
+
function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries, store) {
|
|
12958
12963
|
const fields = normalizedRecord.fields;
|
|
12959
12964
|
const filteredFields = {};
|
|
12960
12965
|
const links = {};
|
|
@@ -12981,6 +12986,19 @@ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntr
|
|
|
12981
12986
|
if (ref !== undefined) {
|
|
12982
12987
|
filteredFields[fieldName] = ref;
|
|
12983
12988
|
}
|
|
12989
|
+
else {
|
|
12990
|
+
// if we have a store to read, try to find the field there too
|
|
12991
|
+
// The durable ingest staging store may pass through to L1, and
|
|
12992
|
+
// not all fields are necessarily published every time, so it is
|
|
12993
|
+
// important to check L1 and not just the fields being published,
|
|
12994
|
+
// otherwise we risk truncating the fields on the record.
|
|
12995
|
+
if (store) {
|
|
12996
|
+
ref = store.readEntry(__ref);
|
|
12997
|
+
if (ref !== undefined) {
|
|
12998
|
+
filteredFields[fieldName] = ref;
|
|
12999
|
+
}
|
|
13000
|
+
}
|
|
13001
|
+
}
|
|
12984
13002
|
}
|
|
12985
13003
|
// we want to preserve fields that are missing nodes
|
|
12986
13004
|
if (filteredFields[fieldName] !== undefined || field.isMissing === true) {
|
|
@@ -13002,7 +13020,7 @@ function getDenormalizedKey(originalKey, recordId, luvio) {
|
|
|
13002
13020
|
}
|
|
13003
13021
|
return keyBuilderRecord(luvio, { recordId });
|
|
13004
13022
|
}
|
|
13005
|
-
function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata) {
|
|
13023
|
+
function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata, getStore) {
|
|
13006
13024
|
const getEntries = function (entries, segment) {
|
|
13007
13025
|
// this HOF only inspects records in the default segment
|
|
13008
13026
|
if (segment !== DefaultDurableSegment) {
|
|
@@ -13070,6 +13088,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
|
|
|
13070
13088
|
const putRecordViews = {};
|
|
13071
13089
|
const storeRecords = getStoreRecords !== undefined ? getStoreRecords() : {};
|
|
13072
13090
|
const storeMetadata = getStoreMetadata !== undefined ? getStoreMetadata() : {};
|
|
13091
|
+
const store = getStore();
|
|
13073
13092
|
for (let i = 0, len = keys$1.length; i < len; i++) {
|
|
13074
13093
|
const key = keys$1[i];
|
|
13075
13094
|
let value = entries[key];
|
|
@@ -13116,7 +13135,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
|
|
|
13116
13135
|
metadataVersion: DURABLE_METADATA_VERSION,
|
|
13117
13136
|
};
|
|
13118
13137
|
}
|
|
13119
|
-
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries);
|
|
13138
|
+
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
|
|
13120
13139
|
putEntries[recordKey] = {
|
|
13121
13140
|
data: denormalizedRecord,
|
|
13122
13141
|
metadata,
|
|
@@ -17793,22 +17812,25 @@ function getRuntime() {
|
|
|
17793
17812
|
const internalAdapterStore = new InMemoryStore();
|
|
17794
17813
|
let getIngestRecordsForInternalAdapters;
|
|
17795
17814
|
let getIngestMetadataForInternalAdapters;
|
|
17815
|
+
let getIngestStoreInternal;
|
|
17796
17816
|
const internalAdapterDurableStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => getIngestRecordsForInternalAdapters !== undefined
|
|
17797
17817
|
? getIngestRecordsForInternalAdapters()
|
|
17798
17818
|
: {}, () => getIngestMetadataForInternalAdapters !== undefined
|
|
17799
17819
|
? getIngestMetadataForInternalAdapters()
|
|
17800
|
-
: {});
|
|
17820
|
+
: {}, () => (getIngestStoreInternal !== undefined ? getIngestStoreInternal() : undefined));
|
|
17801
17821
|
const { adapters: { getObjectInfo, getObjectInfos, getRecord, getObjectInfoDirectory }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
|
|
17802
17822
|
lazyInternalLuvio = internalLuvio;
|
|
17803
17823
|
getIngestRecordsForInternalAdapters =
|
|
17804
17824
|
internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
|
|
17805
17825
|
getIngestMetadataForInternalAdapters =
|
|
17806
17826
|
internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
|
|
17827
|
+
getIngestStoreInternal = internalAdapterDurableEnvironment.getIngestStagingStore;
|
|
17807
17828
|
lazyObjectInfoService = new ObjectInfoService(getObjectInfo, getObjectInfos, getObjectInfoDirectory, lazyBaseDurableStore);
|
|
17808
17829
|
// creates a durable store that denormalizes scalar fields for records
|
|
17809
17830
|
let getIngestRecords;
|
|
17810
17831
|
let getIngestMetadata;
|
|
17811
|
-
|
|
17832
|
+
let getIngestStore;
|
|
17833
|
+
const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}), () => (getIngestStore !== undefined ? getIngestStore() : undefined));
|
|
17812
17834
|
const baseEnv = new Environment(store, lazyNetworkAdapter);
|
|
17813
17835
|
const gqlEnv = makeEnvironmentGraphqlAware(baseEnv);
|
|
17814
17836
|
const durableEnv = makeDurable(gqlEnv, {
|
|
@@ -17817,6 +17839,7 @@ function getRuntime() {
|
|
|
17817
17839
|
});
|
|
17818
17840
|
getIngestRecords = durableEnv.getIngestStagingStoreRecords;
|
|
17819
17841
|
getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
|
|
17842
|
+
getIngestStore = durableEnv.getIngestStagingStore;
|
|
17820
17843
|
// draft queue
|
|
17821
17844
|
lazyDraftQueue = buildLdsDraftQueue(recordDenormingStore);
|
|
17822
17845
|
const draftService = new UiApiDraftRecordService(lazyDraftQueue, () => lazyLuvio, recordDenormingStore, getObjectInfo, newRecordId, userId, formatDisplayValue);
|
|
@@ -17916,4 +17939,4 @@ register({
|
|
|
17916
17939
|
});
|
|
17917
17940
|
|
|
17918
17941
|
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, registerReportObserver, reportGraphqlQueryParseError };
|
|
17919
|
-
// version: 1.266.0-
|
|
17942
|
+
// version: 1.266.0-dev7-c30e261b4
|