@salesforce/lds-adapters-uiapi 1.287.0-dev13 → 1.287.0-dev15
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.
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import type { RecordLayoutRepresentation } from '../generated/types/RecordLayoutRepresentation';
|
|
2
2
|
import type { ObjectInfoRepresentation } from '../generated/types/ObjectInfoRepresentation';
|
|
3
|
+
export interface FieldsAndOptionalFields {
|
|
4
|
+
fields: string[];
|
|
5
|
+
optionalFields: string[];
|
|
6
|
+
}
|
|
3
7
|
export declare function getNameField(objectInfo: ObjectInfoRepresentation, fieldApiName: string): string;
|
|
4
|
-
export declare function getQualifiedFieldApiNamesFromLayout(layout: RecordLayoutRepresentation, objectInfo: ObjectInfoRepresentation):
|
|
8
|
+
export declare function getQualifiedFieldApiNamesFromLayout(layout: RecordLayoutRepresentation, objectInfo: ObjectInfoRepresentation): FieldsAndOptionalFields;
|
|
@@ -12727,6 +12727,7 @@ function getNameField(objectInfo, fieldApiName) {
|
|
|
12727
12727
|
}
|
|
12728
12728
|
function getQualifiedFieldApiNamesFromLayout(layout, objectInfo) {
|
|
12729
12729
|
const qualifiedFieldNames = [];
|
|
12730
|
+
const qualifiedOptionalFieldNames = [];
|
|
12730
12731
|
for (let a = 0, alen = layout.sections.length; a < alen; a++) {
|
|
12731
12732
|
const section = layout.sections[a];
|
|
12732
12733
|
for (let b = 0, blen = section.layoutRows.length; b < blen; b++) {
|
|
@@ -12742,7 +12743,8 @@ function getQualifiedFieldApiNamesFromLayout(layout, objectInfo) {
|
|
|
12742
12743
|
// By default, include the "Id" field on spanning records that are on the layout.
|
|
12743
12744
|
qualifiedFieldNames.push(`${objectInfo.apiName}.${relationshipFieldApiName}.${FIELD_ID}`);
|
|
12744
12745
|
const nameField = getNameField(objectInfo, apiName);
|
|
12745
|
-
|
|
12746
|
+
// W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
12747
|
+
qualifiedOptionalFieldNames.push(`${objectInfo.apiName}.${relationshipFieldApiName}.${nameField}`);
|
|
12746
12748
|
}
|
|
12747
12749
|
qualifiedFieldNames.push(`${objectInfo.apiName}.${component.apiName}`);
|
|
12748
12750
|
}
|
|
@@ -12750,7 +12752,10 @@ function getQualifiedFieldApiNamesFromLayout(layout, objectInfo) {
|
|
|
12750
12752
|
}
|
|
12751
12753
|
}
|
|
12752
12754
|
}
|
|
12753
|
-
return
|
|
12755
|
+
return {
|
|
12756
|
+
fields: qualifiedFieldNames,
|
|
12757
|
+
optionalFields: qualifiedOptionalFieldNames,
|
|
12758
|
+
};
|
|
12754
12759
|
}
|
|
12755
12760
|
|
|
12756
12761
|
function getMissingRecordLookupFields(record, objectInfo) {
|
|
@@ -13171,11 +13176,13 @@ function refresh(luvio, config) {
|
|
|
13171
13176
|
throw new Error(`RecordUi adapter resolved with a ${snapshot.state} snapshot with undefined data`);
|
|
13172
13177
|
}
|
|
13173
13178
|
const { layoutMap, objectInfo } = getLayoutMapAndObjectInfo(recordId, data);
|
|
13174
|
-
|
|
13179
|
+
// W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
13180
|
+
const { fields, optionalFields: layoutOptionalFields } = getFieldsFromLayoutMap(layoutMap, objectInfo);
|
|
13181
|
+
const mergedOptionalFields = dedupe(optionalFields.concat(layoutOptionalFields));
|
|
13175
13182
|
return buildCachedSnapshot$9(luvio, {
|
|
13176
13183
|
recordId,
|
|
13177
13184
|
fields,
|
|
13178
|
-
optionalFields,
|
|
13185
|
+
optionalFields: mergedOptionalFields,
|
|
13179
13186
|
}, refresh);
|
|
13180
13187
|
});
|
|
13181
13188
|
}
|
|
@@ -13236,6 +13243,7 @@ const recordLayoutFragmentSelector = [
|
|
|
13236
13243
|
];
|
|
13237
13244
|
function getFieldsFromLayoutMap(layoutMap, objectInfo) {
|
|
13238
13245
|
let fields = [];
|
|
13246
|
+
let optionalFields = [];
|
|
13239
13247
|
const layoutTypes = keys(layoutMap);
|
|
13240
13248
|
for (let i = 0, layoutTypesLen = layoutTypes.length; i < layoutTypesLen; i += 1) {
|
|
13241
13249
|
const layoutType = layoutTypes[i];
|
|
@@ -13243,11 +13251,15 @@ function getFieldsFromLayoutMap(layoutMap, objectInfo) {
|
|
|
13243
13251
|
const modes = keys(modesMap);
|
|
13244
13252
|
for (let m = 0, modesLen = modes.length; m < modesLen; m += 1) {
|
|
13245
13253
|
const mode = modes[m];
|
|
13246
|
-
const
|
|
13247
|
-
fields = fields.concat(
|
|
13254
|
+
const { fields: modeFields, optionalFields: modeOptionalFields } = getQualifiedFieldApiNamesFromLayout(modesMap[mode], objectInfo);
|
|
13255
|
+
fields = fields.concat(modeFields);
|
|
13256
|
+
optionalFields = optionalFields.concat(modeOptionalFields);
|
|
13248
13257
|
}
|
|
13249
13258
|
}
|
|
13250
|
-
return
|
|
13259
|
+
return {
|
|
13260
|
+
fields: dedupe(fields).sort(),
|
|
13261
|
+
optionalFields: dedupe(optionalFields).sort(),
|
|
13262
|
+
};
|
|
13251
13263
|
}
|
|
13252
13264
|
/**
|
|
13253
13265
|
* W-14696113
|
|
@@ -13264,8 +13276,12 @@ function convertToImplicitFields(fields, optionalFields) {
|
|
|
13264
13276
|
return implicitFields;
|
|
13265
13277
|
}
|
|
13266
13278
|
function getRecordForLayoutableEntities(luvio, refresh, recordId, layoutMap, objectInfo, configOptionalFields) {
|
|
13267
|
-
|
|
13268
|
-
|
|
13279
|
+
// W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
13280
|
+
let { fields, optionalFields } = getFieldsFromLayoutMap(layoutMap, objectInfo);
|
|
13281
|
+
if (configOptionalFields && configOptionalFields.length > 0) {
|
|
13282
|
+
optionalFields = dedupe(optionalFields.concat(configOptionalFields));
|
|
13283
|
+
}
|
|
13284
|
+
const implicitFields = convertToImplicitFields(fields, optionalFields);
|
|
13269
13285
|
return getRecord(luvio, refresh, recordId, [], implicitFields);
|
|
13270
13286
|
}
|
|
13271
13287
|
function getRecordForNonLayoutableEntities(luvio, adapterContext, refresh, recordId, objectInfo, configOptionalFields, configFields) {
|
|
@@ -13527,8 +13543,15 @@ function buildRecordLayoutSnapshot(recordLayout, luvio, config, recordLayoutSnap
|
|
|
13527
13543
|
return;
|
|
13528
13544
|
}
|
|
13529
13545
|
// transform the layouts & object info into a set of fields
|
|
13530
|
-
|
|
13531
|
-
|
|
13546
|
+
// // W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
13547
|
+
const { fields, optionalFields } = getFieldsFromLayoutMap(layoutMap, objectInfoSnapshot.data);
|
|
13548
|
+
let configWithModifiedOptionalFields = {
|
|
13549
|
+
...config,
|
|
13550
|
+
optionalFields: config.optionalFields
|
|
13551
|
+
? dedupe(config.optionalFields.concat(optionalFields)).sort()
|
|
13552
|
+
: optionalFields,
|
|
13553
|
+
};
|
|
13554
|
+
return getRecordRepSnapshot(luvio, configWithModifiedOptionalFields, recordLayoutSnapshot, objectInfoSnapshot, fields, isRecordLayoutStale, context, storeLookup);
|
|
13532
13555
|
};
|
|
13533
13556
|
}
|
|
13534
13557
|
function buildRecordSnapshot(luvio, config, recordLayoutSnapshot, objectInfoSnapshot, fields) {
|
|
@@ -13557,6 +13580,8 @@ function getRecordRepSnapshot(luvio, config, recordLayoutSnapshot, objectInfoSna
|
|
|
13557
13580
|
// allow buildNetworkSnapshot() to use GetRecordFields if we were just missing some fields in L1
|
|
13558
13581
|
else if (isUnfulfilledSnapshot(recordRepSnapshot)) {
|
|
13559
13582
|
context.fields = fields;
|
|
13583
|
+
// W-15692973: Update optionalFields of config as the optional fields may have Name fields of referenced entities
|
|
13584
|
+
context.config.optionalFields = optionalFields;
|
|
13560
13585
|
}
|
|
13561
13586
|
// return however much of the record we were able to find in L1; cache policy decides if we
|
|
13562
13587
|
// should consult L2 or go to network
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-uiapi",
|
|
3
|
-
"version": "1.287.0-
|
|
3
|
+
"version": "1.287.0-dev15",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters for record related UI API endpoints",
|
|
6
6
|
"main": "dist/es/es2018/uiapi-records-service.js",
|
|
@@ -68,22 +68,22 @@
|
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@salesforce/lds-bindings": "^1.287.0-
|
|
72
|
-
"@salesforce/lds-default-luvio": "^1.287.0-
|
|
71
|
+
"@salesforce/lds-bindings": "^1.287.0-dev15",
|
|
72
|
+
"@salesforce/lds-default-luvio": "^1.287.0-dev15"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@databases/sqlite": "^3.0.0",
|
|
76
|
-
"@salesforce/lds-compiler-plugins": "^1.287.0-
|
|
77
|
-
"@salesforce/lds-jest": "^1.287.0-
|
|
78
|
-
"@salesforce/lds-store-binary": "^1.287.0-
|
|
76
|
+
"@salesforce/lds-compiler-plugins": "^1.287.0-dev15",
|
|
77
|
+
"@salesforce/lds-jest": "^1.287.0-dev15",
|
|
78
|
+
"@salesforce/lds-store-binary": "^1.287.0-dev15"
|
|
79
79
|
},
|
|
80
80
|
"luvioBundlesize": [
|
|
81
81
|
{
|
|
82
82
|
"path": "./sfdc/index.js",
|
|
83
83
|
"maxSize": {
|
|
84
84
|
"none": "1.60 MB",
|
|
85
|
-
"min": "
|
|
86
|
-
"compressed": "
|
|
85
|
+
"min": "755 kB",
|
|
86
|
+
"compressed": "113 kB"
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
{
|
package/sfdc/graphqlAdapters.js
CHANGED
|
@@ -19744,4 +19744,4 @@ register({
|
|
|
19744
19744
|
});
|
|
19745
19745
|
|
|
19746
19746
|
export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
|
|
19747
|
-
// version: 1.287.0-
|
|
19747
|
+
// version: 1.287.0-dev15-4b3ad0d7fe
|
package/sfdc/index.js
CHANGED
|
@@ -12372,6 +12372,7 @@ function getNameField(objectInfo, fieldApiName) {
|
|
|
12372
12372
|
}
|
|
12373
12373
|
function getQualifiedFieldApiNamesFromLayout(layout, objectInfo) {
|
|
12374
12374
|
const qualifiedFieldNames = [];
|
|
12375
|
+
const qualifiedOptionalFieldNames = [];
|
|
12375
12376
|
for (let a = 0, alen = layout.sections.length; a < alen; a++) {
|
|
12376
12377
|
const section = layout.sections[a];
|
|
12377
12378
|
for (let b = 0, blen = section.layoutRows.length; b < blen; b++) {
|
|
@@ -12387,7 +12388,8 @@ function getQualifiedFieldApiNamesFromLayout(layout, objectInfo) {
|
|
|
12387
12388
|
// By default, include the "Id" field on spanning records that are on the layout.
|
|
12388
12389
|
qualifiedFieldNames.push(`${objectInfo.apiName}.${relationshipFieldApiName}.${FIELD_ID}`);
|
|
12389
12390
|
const nameField = getNameField(objectInfo, apiName);
|
|
12390
|
-
|
|
12391
|
+
// W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
12392
|
+
qualifiedOptionalFieldNames.push(`${objectInfo.apiName}.${relationshipFieldApiName}.${nameField}`);
|
|
12391
12393
|
}
|
|
12392
12394
|
qualifiedFieldNames.push(`${objectInfo.apiName}.${component.apiName}`);
|
|
12393
12395
|
}
|
|
@@ -12395,7 +12397,10 @@ function getQualifiedFieldApiNamesFromLayout(layout, objectInfo) {
|
|
|
12395
12397
|
}
|
|
12396
12398
|
}
|
|
12397
12399
|
}
|
|
12398
|
-
return
|
|
12400
|
+
return {
|
|
12401
|
+
fields: qualifiedFieldNames,
|
|
12402
|
+
optionalFields: qualifiedOptionalFieldNames,
|
|
12403
|
+
};
|
|
12399
12404
|
}
|
|
12400
12405
|
|
|
12401
12406
|
function getMissingRecordLookupFields(record, objectInfo) {
|
|
@@ -12816,11 +12821,13 @@ function refresh$1(luvio, config) {
|
|
|
12816
12821
|
throw new Error(`RecordUi adapter resolved with a ${snapshot.state} snapshot with undefined data`);
|
|
12817
12822
|
}
|
|
12818
12823
|
const { layoutMap, objectInfo } = getLayoutMapAndObjectInfo(recordId, data);
|
|
12819
|
-
|
|
12824
|
+
// W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
12825
|
+
const { fields, optionalFields: layoutOptionalFields } = getFieldsFromLayoutMap(layoutMap, objectInfo);
|
|
12826
|
+
const mergedOptionalFields = dedupe(optionalFields.concat(layoutOptionalFields));
|
|
12820
12827
|
return buildCachedSnapshot$9(luvio, {
|
|
12821
12828
|
recordId,
|
|
12822
12829
|
fields,
|
|
12823
|
-
optionalFields,
|
|
12830
|
+
optionalFields: mergedOptionalFields,
|
|
12824
12831
|
}, refresh);
|
|
12825
12832
|
});
|
|
12826
12833
|
}
|
|
@@ -12881,6 +12888,7 @@ const recordLayoutFragmentSelector = [
|
|
|
12881
12888
|
];
|
|
12882
12889
|
function getFieldsFromLayoutMap(layoutMap, objectInfo) {
|
|
12883
12890
|
let fields = [];
|
|
12891
|
+
let optionalFields = [];
|
|
12884
12892
|
const layoutTypes = keys(layoutMap);
|
|
12885
12893
|
for (let i = 0, layoutTypesLen = layoutTypes.length; i < layoutTypesLen; i += 1) {
|
|
12886
12894
|
const layoutType = layoutTypes[i];
|
|
@@ -12888,11 +12896,15 @@ function getFieldsFromLayoutMap(layoutMap, objectInfo) {
|
|
|
12888
12896
|
const modes = keys(modesMap);
|
|
12889
12897
|
for (let m = 0, modesLen = modes.length; m < modesLen; m += 1) {
|
|
12890
12898
|
const mode = modes[m];
|
|
12891
|
-
const
|
|
12892
|
-
fields = fields.concat(
|
|
12899
|
+
const { fields: modeFields, optionalFields: modeOptionalFields } = getQualifiedFieldApiNamesFromLayout(modesMap[mode], objectInfo);
|
|
12900
|
+
fields = fields.concat(modeFields);
|
|
12901
|
+
optionalFields = optionalFields.concat(modeOptionalFields);
|
|
12893
12902
|
}
|
|
12894
12903
|
}
|
|
12895
|
-
return
|
|
12904
|
+
return {
|
|
12905
|
+
fields: dedupe(fields).sort(),
|
|
12906
|
+
optionalFields: dedupe(optionalFields).sort(),
|
|
12907
|
+
};
|
|
12896
12908
|
}
|
|
12897
12909
|
/**
|
|
12898
12910
|
* W-14696113
|
|
@@ -12909,8 +12921,12 @@ function convertToImplicitFields(fields, optionalFields) {
|
|
|
12909
12921
|
return implicitFields;
|
|
12910
12922
|
}
|
|
12911
12923
|
function getRecordForLayoutableEntities(luvio, refresh, recordId, layoutMap, objectInfo, configOptionalFields) {
|
|
12912
|
-
|
|
12913
|
-
|
|
12924
|
+
// W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
12925
|
+
let { fields, optionalFields } = getFieldsFromLayoutMap(layoutMap, objectInfo);
|
|
12926
|
+
if (configOptionalFields && configOptionalFields.length > 0) {
|
|
12927
|
+
optionalFields = dedupe(optionalFields.concat(configOptionalFields));
|
|
12928
|
+
}
|
|
12929
|
+
const implicitFields = convertToImplicitFields(fields, optionalFields);
|
|
12914
12930
|
return getRecord$1(luvio, refresh, recordId, [], implicitFields);
|
|
12915
12931
|
}
|
|
12916
12932
|
function getRecordForNonLayoutableEntities(luvio, adapterContext, refresh, recordId, objectInfo, configOptionalFields, configFields) {
|
|
@@ -13172,8 +13188,15 @@ function buildRecordLayoutSnapshot(recordLayout, luvio, config, recordLayoutSnap
|
|
|
13172
13188
|
return;
|
|
13173
13189
|
}
|
|
13174
13190
|
// transform the layouts & object info into a set of fields
|
|
13175
|
-
|
|
13176
|
-
|
|
13191
|
+
// // W-15692973: Name field of referenced entites are moved to optionalFields since the Name field may not exist for few entites.
|
|
13192
|
+
const { fields, optionalFields } = getFieldsFromLayoutMap(layoutMap, objectInfoSnapshot.data);
|
|
13193
|
+
let configWithModifiedOptionalFields = {
|
|
13194
|
+
...config,
|
|
13195
|
+
optionalFields: config.optionalFields
|
|
13196
|
+
? dedupe(config.optionalFields.concat(optionalFields)).sort()
|
|
13197
|
+
: optionalFields,
|
|
13198
|
+
};
|
|
13199
|
+
return getRecordRepSnapshot(luvio, configWithModifiedOptionalFields, recordLayoutSnapshot, objectInfoSnapshot, fields, isRecordLayoutStale, context, storeLookup);
|
|
13177
13200
|
};
|
|
13178
13201
|
}
|
|
13179
13202
|
function buildRecordSnapshot(luvio, config, recordLayoutSnapshot, objectInfoSnapshot, fields) {
|
|
@@ -13202,6 +13225,8 @@ function getRecordRepSnapshot(luvio, config, recordLayoutSnapshot, objectInfoSna
|
|
|
13202
13225
|
// allow buildNetworkSnapshot() to use GetRecordFields if we were just missing some fields in L1
|
|
13203
13226
|
else if (isUnfulfilledSnapshot(recordRepSnapshot)) {
|
|
13204
13227
|
context.fields = fields;
|
|
13228
|
+
// W-15692973: Update optionalFields of config as the optional fields may have Name fields of referenced entities
|
|
13229
|
+
context.config.optionalFields = optionalFields;
|
|
13205
13230
|
}
|
|
13206
13231
|
// return however much of the record we were able to find in L1; cache policy decides if we
|
|
13207
13232
|
// should consult L2 or go to network
|
|
@@ -37029,4 +37054,4 @@ withDefaultLuvio((luvio) => {
|
|
|
37029
37054
|
});
|
|
37030
37055
|
|
|
37031
37056
|
export { API_NAMESPACE, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$I as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$N as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$U as RecordRepresentationRepresentationType, TTL$y as RecordRepresentationTTL, RepresentationType$U as RecordRepresentationType, VERSION$1a as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, createRelatedListAdapterWithPrediction, deleteListInfo, deleteRecord, executeBatchRecordOperations, extractRecordIdFromStoreKey, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getFlexipageFormulaOverrides, getFlexipageFormulaOverrides_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListInfosByObjectName, getListInfosByObjectName_imperative, getListObjectInfo, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPathLayout, getPathLayout_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoBatch, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatch, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActionsAdapterFactory, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$W as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$G as ingestObjectInfo, ingest$A as ingestQuickActionExecutionRepresentation, ingest$N as ingestRecord, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$C as keyBuilderFromTypeRecordRepresentation, keyBuilder$1V as keyBuilderObjectInfo, keyBuilder$1O as keyBuilderQuickActionExecutionRepresentation, keyBuilder$26 as keyBuilderRecord, notifyAllListInfoSummaryUpdateAvailable, notifyAllListRecordUpdateAvailable, notifyListInfoSummaryUpdateAvailable, notifyListInfoUpdateAvailable, notifyListRecordCollectionUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
|
|
37032
|
-
// version: 1.287.0-
|
|
37057
|
+
// version: 1.287.0-dev15-4b3ad0d7fe
|