@salesforce/lds-adapters-uiapi 1.430.0 → 1.431.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/es/es2018/types/src/configuration.d.ts +0 -4
- package/dist/es/es2018/types/src/main.d.ts +0 -4
- package/dist/es/es2018/types/src/predictive-loading/registry.d.ts +0 -2
- package/dist/es/es2018/uiapi-records-service.js +1 -41
- package/package.json +7 -7
- package/sfdc/graphqlAdapters.js +1 -21
- package/sfdc/index.js +9 -49
- package/sfdc/uiapi-static-functions.js +0 -20
|
@@ -103,10 +103,6 @@ export declare const configurationForRestAdapters: {
|
|
|
103
103
|
getTrackedFieldDepthOnNotifyChange: () => number;
|
|
104
104
|
setTrackedFieldLeafNodeIdAndNameOnly: (trackedFieldLeafNodeIdAndNameOnlyParam: boolean) => void;
|
|
105
105
|
getTrackedFieldLeafNodeIdAndNameOnly: () => boolean;
|
|
106
|
-
setRelatedListsPredictionsEnabled: (f: boolean) => void;
|
|
107
|
-
areRelatedListsPredictionsEnabled: () => boolean;
|
|
108
|
-
setRelatedListsPlusPredictionsEnabled: (f: boolean) => void;
|
|
109
|
-
areRelatedListsPlusPredictionsEnabled: () => boolean;
|
|
110
106
|
setRecordRepresentationIngestionOverride: (ingest: ResourceIngest) => void;
|
|
111
107
|
getRecordRepresentationIngestionOverride: () => ResourceIngest | undefined;
|
|
112
108
|
getDraftAwareCreateRecordAdapter: () => DraftAwareCreateRecordAdapter | undefined;
|
|
@@ -136,10 +136,6 @@ export declare const configuration: {
|
|
|
136
136
|
getTrackedFieldDepthOnNotifyChange: () => number;
|
|
137
137
|
setTrackedFieldLeafNodeIdAndNameOnly: (trackedFieldLeafNodeIdAndNameOnlyParam: boolean) => void;
|
|
138
138
|
getTrackedFieldLeafNodeIdAndNameOnly: () => boolean;
|
|
139
|
-
setRelatedListsPredictionsEnabled: (f: boolean) => void;
|
|
140
|
-
areRelatedListsPredictionsEnabled: () => boolean;
|
|
141
|
-
setRelatedListsPlusPredictionsEnabled: (f: boolean) => void;
|
|
142
|
-
areRelatedListsPlusPredictionsEnabled: () => boolean;
|
|
143
139
|
setRecordRepresentationIngestionOverride: (ingest: ResourceIngest) => void;
|
|
144
140
|
getRecordRepresentationIngestionOverride: () => ResourceIngest | undefined;
|
|
145
141
|
getDraftAwareCreateRecordAdapter: () => import("./wire/createRecord/configurationTypes").DraftAwareCreateRecordAdapter | undefined;
|
|
@@ -4,6 +4,4 @@ interface Prefetcher {
|
|
|
4
4
|
}
|
|
5
5
|
export declare function registerPrefetcher(luvio: Luvio, prefetcher: Prefetcher): void;
|
|
6
6
|
export declare function createLDSAdapterWithPrediction<C, D>(adapter: Adapter<C, D>, luvio: Luvio, name: string): Adapter<C, D>;
|
|
7
|
-
export declare function createRelatedListAdapterWithPrediction<C, D>(adapter: Adapter<C, D>, luvio: Luvio, name: string): Adapter<C, D>;
|
|
8
|
-
export declare function createRelatedListPlusAdapterWithPrediction<C, D>(adapter: Adapter<C, D>, luvio: Luvio, name: string): Adapter<C, D>;
|
|
9
7
|
export {};
|
|
@@ -68,14 +68,6 @@ let oneStoreGetObjectInfoAdapter = undefined;
|
|
|
68
68
|
* One store enabled Get Object Infos adapter
|
|
69
69
|
*/
|
|
70
70
|
let oneStoreGetObjectInfosAdapter = undefined;
|
|
71
|
-
/**
|
|
72
|
-
* Determines when to include PDL strategies for Related Lists
|
|
73
|
-
*/
|
|
74
|
-
let relatedListsPredictionsEnabled = false;
|
|
75
|
-
/**
|
|
76
|
-
* Determines whether to include additional PDL strategies for Related Lists
|
|
77
|
-
*/
|
|
78
|
-
let relatedListsPlusPredictionsEnabled = false;
|
|
79
71
|
let recordRepresentationIngestionOverride = undefined;
|
|
80
72
|
/**
|
|
81
73
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
@@ -170,18 +162,6 @@ const configurationForRestAdapters = {
|
|
|
170
162
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
171
163
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
172
164
|
},
|
|
173
|
-
setRelatedListsPredictionsEnabled: function (f) {
|
|
174
|
-
relatedListsPredictionsEnabled = f;
|
|
175
|
-
},
|
|
176
|
-
areRelatedListsPredictionsEnabled: function () {
|
|
177
|
-
return relatedListsPredictionsEnabled === true;
|
|
178
|
-
},
|
|
179
|
-
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
180
|
-
relatedListsPlusPredictionsEnabled = f;
|
|
181
|
-
},
|
|
182
|
-
areRelatedListsPlusPredictionsEnabled: function () {
|
|
183
|
-
return relatedListsPlusPredictionsEnabled === true;
|
|
184
|
-
},
|
|
185
165
|
setRecordRepresentationIngestionOverride: function (ingest) {
|
|
186
166
|
recordRepresentationIngestionOverride = ingest;
|
|
187
167
|
},
|
|
@@ -321,26 +301,6 @@ function createLDSAdapterWithPrediction(adapter, luvio, name) {
|
|
|
321
301
|
return result;
|
|
322
302
|
};
|
|
323
303
|
}
|
|
324
|
-
function createRelatedListAdapterWithPrediction(adapter, luvio, name) {
|
|
325
|
-
if (configurationForRestAdapters.areRelatedListsPredictionsEnabled() /* gate is open */) {
|
|
326
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
327
|
-
}
|
|
328
|
-
else {
|
|
329
|
-
return (config, requestContext) => {
|
|
330
|
-
return adapter(config, requestContext);
|
|
331
|
-
};
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
function createRelatedListPlusAdapterWithPrediction(adapter, luvio, name) {
|
|
335
|
-
if (configurationForRestAdapters.areRelatedListsPlusPredictionsEnabled() /* gate is open */) {
|
|
336
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
337
|
-
}
|
|
338
|
-
else {
|
|
339
|
-
return (config, requestContext) => {
|
|
340
|
-
return adapter(config, requestContext);
|
|
341
|
-
};
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
304
|
|
|
345
305
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
346
306
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -65303,4 +65263,4 @@ function getRecordIngestionOverride() {
|
|
|
65303
65263
|
return getRecordRepresentationIngestionOverride();
|
|
65304
65264
|
}
|
|
65305
65265
|
|
|
65306
|
-
export { API_NAMESPACE, VERSION$33 as FieldValueRepresentationVersion, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$31 as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields,
|
|
65266
|
+
export { API_NAMESPACE, VERSION$33 as FieldValueRepresentationVersion, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$31 as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, deleteListInfoAdapterFactory, factory$3 as deleteRecordAdapterFactory, factory$f as executeBatchRecordOperationsAdapterFactory, extractRecordIdFromStoreKey, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getFlexipageFormulaOverridesAdapterFactory, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListInfosByObjectNameAdapterFactory, getListObjectInfoAdapterFactory, getListPreferencesAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$j as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$k as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfosAdapterFactory, getPathLayoutAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionInfoAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$h as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordId18Array, getRecordIngestionOverride, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$i as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$2E as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$g as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$2a as ingestDuplicateConfiguration, ingest$24 as ingestDuplicatesRepresentation, ingest$2C as ingestListInfo, ingest$2y as ingestListRecords, ingest$2s as ingestObjectInfo, ingest$2m as ingestQuickActionExecutionRepresentation, ingest$2z as ingestRecord, ingest$2p as ingestRecordUi, ingest$1Y as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1V as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1X as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$E as keyBuilderFromTypeRecordRepresentation, keyBuilder$3D as keyBuilderObjectInfo, keyBuilder$3w as keyBuilderQuickActionExecutionRepresentation, keyBuilder$3U as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, registerPrefetcher, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, updateListPreferencesAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.431.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters for record related UI API endpoints",
|
|
6
6
|
"type": "module",
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@luvio/graphql-parser": "0.160.4",
|
|
71
|
-
"@salesforce/lds-adapters-onestore-graphql": "^1.
|
|
72
|
-
"@salesforce/lds-bindings": "^1.
|
|
73
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
71
|
+
"@salesforce/lds-adapters-onestore-graphql": "^1.431.0",
|
|
72
|
+
"@salesforce/lds-bindings": "^1.431.0",
|
|
73
|
+
"@salesforce/lds-default-luvio": "^1.431.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
77
|
-
"@salesforce/lds-jest": "^1.
|
|
78
|
-
"@salesforce/lds-store-binary": "^1.
|
|
76
|
+
"@salesforce/lds-compiler-plugins": "^1.431.0",
|
|
77
|
+
"@salesforce/lds-jest": "^1.431.0",
|
|
78
|
+
"@salesforce/lds-store-binary": "^1.431.0"
|
|
79
79
|
},
|
|
80
80
|
"luvioBundlesize": [
|
|
81
81
|
{
|
package/sfdc/graphqlAdapters.js
CHANGED
|
@@ -27623,14 +27623,6 @@ let oneStoreGetObjectInfoAdapter = undefined;
|
|
|
27623
27623
|
* One store enabled Get Object Infos adapter
|
|
27624
27624
|
*/
|
|
27625
27625
|
let oneStoreGetObjectInfosAdapter = undefined;
|
|
27626
|
-
/**
|
|
27627
|
-
* Determines when to include PDL strategies for Related Lists
|
|
27628
|
-
*/
|
|
27629
|
-
let relatedListsPredictionsEnabled = false;
|
|
27630
|
-
/**
|
|
27631
|
-
* Determines whether to include additional PDL strategies for Related Lists
|
|
27632
|
-
*/
|
|
27633
|
-
let relatedListsPlusPredictionsEnabled = false;
|
|
27634
27626
|
let recordRepresentationIngestionOverride = undefined;
|
|
27635
27627
|
/**
|
|
27636
27628
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
@@ -27725,18 +27717,6 @@ const configurationForRestAdapters = {
|
|
|
27725
27717
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
27726
27718
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
27727
27719
|
},
|
|
27728
|
-
setRelatedListsPredictionsEnabled: function (f) {
|
|
27729
|
-
relatedListsPredictionsEnabled = f;
|
|
27730
|
-
},
|
|
27731
|
-
areRelatedListsPredictionsEnabled: function () {
|
|
27732
|
-
return relatedListsPredictionsEnabled === true;
|
|
27733
|
-
},
|
|
27734
|
-
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
27735
|
-
relatedListsPlusPredictionsEnabled = f;
|
|
27736
|
-
},
|
|
27737
|
-
areRelatedListsPlusPredictionsEnabled: function () {
|
|
27738
|
-
return relatedListsPlusPredictionsEnabled === true;
|
|
27739
|
-
},
|
|
27740
27720
|
setRecordRepresentationIngestionOverride: function (ingest) {
|
|
27741
27721
|
recordRepresentationIngestionOverride = ingest;
|
|
27742
27722
|
},
|
|
@@ -28839,4 +28819,4 @@ register({
|
|
|
28839
28819
|
});
|
|
28840
28820
|
|
|
28841
28821
|
export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_deprecated, graphql_imperative, graphql_imperative_deprecated, graphql_imperative_onestore, graphql_onestore, graphql_state_manager, refreshGraphQL, refreshGraphQL_deprecated };
|
|
28842
|
-
// version: 1.
|
|
28822
|
+
// version: 1.431.0-51a9c51ed3
|
package/sfdc/index.js
CHANGED
|
@@ -116,14 +116,6 @@ let oneStoreGetObjectInfoAdapter = undefined;
|
|
|
116
116
|
* One store enabled Get Object Infos adapter
|
|
117
117
|
*/
|
|
118
118
|
let oneStoreGetObjectInfosAdapter = undefined;
|
|
119
|
-
/**
|
|
120
|
-
* Determines when to include PDL strategies for Related Lists
|
|
121
|
-
*/
|
|
122
|
-
let relatedListsPredictionsEnabled = false;
|
|
123
|
-
/**
|
|
124
|
-
* Determines whether to include additional PDL strategies for Related Lists
|
|
125
|
-
*/
|
|
126
|
-
let relatedListsPlusPredictionsEnabled = false;
|
|
127
119
|
let recordRepresentationIngestionOverride = undefined;
|
|
128
120
|
/**
|
|
129
121
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
@@ -227,18 +219,6 @@ const configurationForRestAdapters = {
|
|
|
227
219
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
228
220
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
229
221
|
},
|
|
230
|
-
setRelatedListsPredictionsEnabled: function (f) {
|
|
231
|
-
relatedListsPredictionsEnabled = f;
|
|
232
|
-
},
|
|
233
|
-
areRelatedListsPredictionsEnabled: function () {
|
|
234
|
-
return relatedListsPredictionsEnabled === true;
|
|
235
|
-
},
|
|
236
|
-
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
237
|
-
relatedListsPlusPredictionsEnabled = f;
|
|
238
|
-
},
|
|
239
|
-
areRelatedListsPlusPredictionsEnabled: function () {
|
|
240
|
-
return relatedListsPlusPredictionsEnabled === true;
|
|
241
|
-
},
|
|
242
222
|
setRecordRepresentationIngestionOverride: function (ingest) {
|
|
243
223
|
recordRepresentationIngestionOverride = ingest;
|
|
244
224
|
},
|
|
@@ -378,26 +358,6 @@ function createLDSAdapterWithPrediction(adapter, luvio, name) {
|
|
|
378
358
|
return result;
|
|
379
359
|
};
|
|
380
360
|
}
|
|
381
|
-
function createRelatedListAdapterWithPrediction(adapter, luvio, name) {
|
|
382
|
-
if (configurationForRestAdapters.areRelatedListsPredictionsEnabled() /* gate is open */) {
|
|
383
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
384
|
-
}
|
|
385
|
-
else {
|
|
386
|
-
return (config, requestContext) => {
|
|
387
|
-
return adapter(config, requestContext);
|
|
388
|
-
};
|
|
389
|
-
}
|
|
390
|
-
}
|
|
391
|
-
function createRelatedListPlusAdapterWithPrediction(adapter, luvio, name) {
|
|
392
|
-
if (configurationForRestAdapters.areRelatedListsPlusPredictionsEnabled() /* gate is open */) {
|
|
393
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
394
|
-
}
|
|
395
|
-
else {
|
|
396
|
-
return (config, requestContext) => {
|
|
397
|
-
return adapter(config, requestContext);
|
|
398
|
-
};
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
361
|
|
|
402
362
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
403
363
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -37182,18 +37142,18 @@ function bindExportsTo(luvio) {
|
|
|
37182
37142
|
const getRecordTemplateCreate_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordTemplateCreate', configurationForEnvironmentFactoryOverrides.getRecordTemplateCreateAdapterFactory() ?? factory$5), getRecordTemplateCreateMetadata);
|
|
37183
37143
|
const getRecordUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordUi', configurationForEnvironmentFactoryOverrides.getRecordUiAdapterFactory() ?? factory$g), getRecordUiMetadata);
|
|
37184
37144
|
const getRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecords', configurationForEnvironmentFactoryOverrides.getRecordsAdapterFactory() ?? getRecordsAdapterFactory), luvio, 'getRecords'), getRecordsMetadata);
|
|
37185
|
-
const getRelatedListActions_ldsAdapter = createInstrumentedAdapter(
|
|
37145
|
+
const getRelatedListActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListActions', getRelatedListActionsAdapterFactory), luvio, 'getRelatedListActions'), getRelatedListActionsMetadata);
|
|
37186
37146
|
const getRelatedListCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListCount', getRelatedListCountAdapterFactory), getRelatedListCountMetadata);
|
|
37187
|
-
const getRelatedListInfo_ldsAdapter = createInstrumentedAdapter(
|
|
37188
|
-
const getRelatedListInfoBatch_ldsAdapter = createInstrumentedAdapter(
|
|
37147
|
+
const getRelatedListInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListInfo', getRelatedListInfoAdapterFactory), luvio, 'getRelatedListInfo'), getRelatedListInfoMetadata);
|
|
37148
|
+
const getRelatedListInfoBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListInfoBatch', getRelatedListInfoBatchAdapterFactory), luvio, 'getRelatedListInfoBatch'), getRelatedListInfoBatchMetadata);
|
|
37189
37149
|
const getRelatedListPreferences_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListPreferences', getRelatedListPreferencesAdapterFactory), getRelatedListPreferencesMetadata);
|
|
37190
37150
|
const getRelatedListPreferencesBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListPreferencesBatch', getRelatedListPreferencesBatchAdapterFactory), getRelatedListPreferencesBatchMetadata);
|
|
37191
37151
|
const getRelatedListRecordActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListRecordActions', getRelatedListRecordActionsAdapterFactory), getRelatedListRecordActionsMetadata);
|
|
37192
|
-
const getRelatedListRecords_ldsAdapter = createInstrumentedAdapter(
|
|
37193
|
-
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(
|
|
37194
|
-
const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(
|
|
37152
|
+
const getRelatedListRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecords', configurationForEnvironmentFactoryOverrides.getRelatedListRecordsAdapterFactory() ?? getRelatedListRecordsAdapterFactory), luvio, 'getRelatedListRecords'), getRelatedListRecordsMetadata);
|
|
37153
|
+
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecordsBatch', configurationForEnvironmentFactoryOverrides.getRelatedListRecordsBatchAdapterFactory() ?? getRelatedListRecordsBatchAdapterFactory), luvio, 'getRelatedListRecordsBatch'), getRelatedListRecordsBatchMetadata);
|
|
37154
|
+
const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsActions', getRelatedListsActionsAdapterFactory), luvio, 'getRelatedListsActions'), getRelatedListsActionsMetadata);
|
|
37195
37155
|
const getRelatedListsCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsCount', getRelatedListsCountAdapterFactory), getRelatedListsCountMetadata);
|
|
37196
|
-
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(
|
|
37156
|
+
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), luvio, 'getRelatedListsInfo'), getRelatedListsInfoMetadata);
|
|
37197
37157
|
const getSearchFilterMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterMetadata', getSearchFilterMetadataAdapterFactory), getSearchFilterMetadataMetadata);
|
|
37198
37158
|
const getSearchFilterOptions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterOptions', getSearchFilterOptionsAdapterFactory), getSearchFilterOptionsMetadata);
|
|
37199
37159
|
const getSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchResults', configurationForEnvironmentFactoryOverrides.getSearchResultsAdapterFactory() ?? getSearchResultsAdapterFactory), getSearchResultsMetadata);
|
|
@@ -37536,5 +37496,5 @@ withDefaultLuvio((luvio) => {
|
|
|
37536
37496
|
notifyAllListInfoSummaryUpdateAvailable = throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
37537
37497
|
});
|
|
37538
37498
|
|
|
37539
|
-
export { API_NAMESPACE, VERSION$1i as FieldValueRepresentationVersion, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$O as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$V as RecordRepresentationRepresentationType, TTL$z as RecordRepresentationTTL, RepresentationType$V as RecordRepresentationType, VERSION$1g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord,
|
|
37540
|
-
// version: 1.
|
|
37499
|
+
export { API_NAMESPACE, VERSION$1i as FieldValueRepresentationVersion, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$O as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$V as RecordRepresentationRepresentationType, TTL$z as RecordRepresentationTTL, RepresentationType$V as RecordRepresentationType, VERSION$1g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, 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, getListInfoByNameAdapterFactory, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListInfosByObjectName, getListInfosByObjectNameAdapterFactory, getListInfosByObjectName_imperative, getListObjectInfo, getListObjectInfoAdapterFactory, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, factory$a as getListRecordsByNameAdapterFactory, 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, getQuickActionInfo, getQuickActionInfo_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordId18Array, getRecordIngestionOverride, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActionsAdapterFactory, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoAdapterFactory, 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, getRelatedListsInfoAdapterFactory, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$X as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$H as ingestObjectInfo, ingest$B as ingestQuickActionExecutionRepresentation, ingest$O as ingestRecord, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$E as keyBuilderFromTypeRecordRepresentation, keyBuilder$1Y as keyBuilderObjectInfo, keyBuilder$1R as keyBuilderQuickActionExecutionRepresentation, keyBuilder$29 as keyBuilderRecord, notifyAllListInfoSummaryUpdateAvailable, notifyAllListRecordUpdateAvailable, notifyListInfoSummaryUpdateAvailable, notifyListInfoUpdateAvailable, notifyListRecordCollectionUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
|
|
37500
|
+
// version: 1.431.0-51a9c51ed3
|
|
@@ -210,14 +210,6 @@ let oneStoreGetObjectInfoAdapter = undefined;
|
|
|
210
210
|
* One store enabled Get Object Infos adapter
|
|
211
211
|
*/
|
|
212
212
|
let oneStoreGetObjectInfosAdapter = undefined;
|
|
213
|
-
/**
|
|
214
|
-
* Determines when to include PDL strategies for Related Lists
|
|
215
|
-
*/
|
|
216
|
-
let relatedListsPredictionsEnabled = false;
|
|
217
|
-
/**
|
|
218
|
-
* Determines whether to include additional PDL strategies for Related Lists
|
|
219
|
-
*/
|
|
220
|
-
let relatedListsPlusPredictionsEnabled = false;
|
|
221
213
|
let recordRepresentationIngestionOverride = undefined;
|
|
222
214
|
/**
|
|
223
215
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
@@ -312,18 +304,6 @@ const configurationForEnvironmentFactoryOverrides = {
|
|
|
312
304
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
313
305
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
314
306
|
},
|
|
315
|
-
setRelatedListsPredictionsEnabled: function (f) {
|
|
316
|
-
relatedListsPredictionsEnabled = f;
|
|
317
|
-
},
|
|
318
|
-
areRelatedListsPredictionsEnabled: function () {
|
|
319
|
-
return relatedListsPredictionsEnabled === true;
|
|
320
|
-
},
|
|
321
|
-
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
322
|
-
relatedListsPlusPredictionsEnabled = f;
|
|
323
|
-
},
|
|
324
|
-
areRelatedListsPlusPredictionsEnabled: function () {
|
|
325
|
-
return relatedListsPlusPredictionsEnabled === true;
|
|
326
|
-
},
|
|
327
307
|
setRecordRepresentationIngestionOverride: function (ingest) {
|
|
328
308
|
recordRepresentationIngestionOverride = ingest;
|
|
329
309
|
},
|