@salesforce/lds-adapters-uiapi 1.312.1 → 1.314.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 +75 -17
- package/dist/es/es2018/types/src/main.d.ts +48 -14
- package/dist/es/es2018/types/src/sfdc_rest.d.ts +1 -1
- package/dist/es/es2018/types/src/util/supported-entities.d.ts +4 -4
- package/dist/es/es2018/types/src/wire/graphql/configurationTypes.d.ts +4 -0
- package/dist/es/es2018/types/src/wire/graphqlBatch/configurationTypes.d.ts +5 -0
- package/dist/es/es2018/types/src/wire/performQuickAction/configurationTypes.d.ts +4 -0
- package/dist/es/es2018/types/src/wire/performUpdateRecordQuickAction/configurationTypes.d.ts +4 -0
- package/dist/es/es2018/uiapi-records-service.js +231 -88
- package/package.json +7 -7
- package/sfdc/graphqlAdapters.js +94 -75
- package/sfdc/index.js +249 -105
- package/sfdc/uiapi-static-functions.js +197 -0
package/sfdc/index.js
CHANGED
|
@@ -60,34 +60,26 @@ function throttle(invokeLimit, timeLimit, fn, options) {
|
|
|
60
60
|
/**
|
|
61
61
|
* Defines configuration for the module with a default value which can be overridden by the runtime environment.
|
|
62
62
|
*/
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
let
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
let
|
|
83
|
-
/**
|
|
84
|
-
* Draft-aware createContentDocumentAndVersion adapter
|
|
85
|
-
*/
|
|
86
|
-
let draftAwareCreateContentDocumentAndVersionAdapter = undefined;
|
|
87
|
-
/**
|
|
88
|
-
* Draft-aware createContentVersion adapter
|
|
89
|
-
*/
|
|
90
|
-
let draftAwareCreateContentVersionAdapter = undefined;
|
|
63
|
+
// A holder for a configurable adapter override
|
|
64
|
+
class Configurable {
|
|
65
|
+
constructor() {
|
|
66
|
+
this.getAdapter = () => {
|
|
67
|
+
return this.adapter;
|
|
68
|
+
};
|
|
69
|
+
this.setAdapter = (value) => {
|
|
70
|
+
this.adapter = value;
|
|
71
|
+
};
|
|
72
|
+
this.adapter = undefined;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
// Configurable adapters that can have environmental overrides
|
|
76
|
+
let configurableCreateRecordAdapter = new Configurable();
|
|
77
|
+
let configurableUpdateRecordAdapter = new Configurable();
|
|
78
|
+
let configurableDeleteRecordAdapter = new Configurable();
|
|
79
|
+
let configurablePerformQuickActionAdapter = new Configurable();
|
|
80
|
+
let configurablePerformUpdateRecordQuickActionAdapter = new Configurable();
|
|
81
|
+
let configurableCreateContentDocumentAndVersion = new Configurable();
|
|
82
|
+
let configurableCreateContentVersion = new Configurable();
|
|
91
83
|
/**
|
|
92
84
|
* Depth to which tracked fields will be added to a request that results from a cache miss.
|
|
93
85
|
* A value of 0 inhibits the addition of tracked fields, 1 will add tracked fields that can
|
|
@@ -153,6 +145,52 @@ const configurationForOneStoreEnabledAdapters = {
|
|
|
153
145
|
function getLuvioOrOneStoreAdapter(luvioAdapter, oneStoreAdapter) {
|
|
154
146
|
return oneStoreAdapter !== null && oneStoreAdapter !== void 0 ? oneStoreAdapter : luvioAdapter;
|
|
155
147
|
}
|
|
148
|
+
const getKeywordSearchResultsFactory = new Configurable();
|
|
149
|
+
const getListRecordsByNameFactory = new Configurable();
|
|
150
|
+
const getListUiFactory = new Configurable();
|
|
151
|
+
const getLookupRecordsFactory = new Configurable();
|
|
152
|
+
const getQuickActionDefaultsFactory = new Configurable();
|
|
153
|
+
const getRecordCreateDefaultsFactory = new Configurable();
|
|
154
|
+
const getRecordTemplateCloneFactory = new Configurable();
|
|
155
|
+
const getRecordTemplateCreateFactory = new Configurable();
|
|
156
|
+
const getRecordUiFactory = new Configurable();
|
|
157
|
+
const getRecordFactory = new Configurable();
|
|
158
|
+
const getRecordsFactory = new Configurable();
|
|
159
|
+
const getRelatedListRecordsFactory = new Configurable();
|
|
160
|
+
const getRelatedListRecordsBatchFactory = new Configurable();
|
|
161
|
+
const getSearchResultsFactory = new Configurable();
|
|
162
|
+
// The following set of adapters all touch RecordRepresentation directly or indirectly,
|
|
163
|
+
// so they need to support having a custom factory provided by the mobile environment.
|
|
164
|
+
const configurationForEnvironmentFactoryOverrides = {
|
|
165
|
+
getKeywordSearchResultsAdapterFactory: getKeywordSearchResultsFactory.getAdapter,
|
|
166
|
+
setGetKeywordSearchResultsAdapterFactory: getKeywordSearchResultsFactory.setAdapter,
|
|
167
|
+
getListRecordsByNameAdapterFactory: getListRecordsByNameFactory.getAdapter,
|
|
168
|
+
setGetListRecordsByNameAdapterFactory: getListRecordsByNameFactory.setAdapter,
|
|
169
|
+
getListUiAdapterFactory: getListUiFactory.getAdapter,
|
|
170
|
+
setGetListUiAdapterFactory: getListUiFactory.setAdapter,
|
|
171
|
+
getLookupRecordsAdapterFactory: getLookupRecordsFactory.getAdapter,
|
|
172
|
+
setGetLookupRecordsAdapterFactory: getLookupRecordsFactory.setAdapter,
|
|
173
|
+
getQuickActionDefaultsAdapterFactory: getQuickActionDefaultsFactory.getAdapter,
|
|
174
|
+
setGetQuickActionDefaultsAdapterFactory: getQuickActionDefaultsFactory.setAdapter,
|
|
175
|
+
getRecordCreateDefaultsAdapterFactory: getRecordCreateDefaultsFactory.getAdapter,
|
|
176
|
+
setGetRecordCreateDefaultsAdapterFactory: getRecordCreateDefaultsFactory.setAdapter,
|
|
177
|
+
getRecordTemplateCloneAdapterFactory: getRecordTemplateCloneFactory.getAdapter,
|
|
178
|
+
setGetRecordTemplateCloneAdapterFactory: getRecordTemplateCloneFactory.setAdapter,
|
|
179
|
+
getRecordTemplateCreateAdapterFactory: getRecordTemplateCreateFactory.getAdapter,
|
|
180
|
+
setGetRecordTemplateCreateAdapterFactory: getRecordTemplateCreateFactory.setAdapter,
|
|
181
|
+
getRecordUiAdapterFactory: getRecordUiFactory.getAdapter,
|
|
182
|
+
setGetRecordUiAdapterFactory: getRecordUiFactory.setAdapter,
|
|
183
|
+
getRecordAdapterFactory: getRecordFactory.getAdapter,
|
|
184
|
+
setGetRecordAdapterFactory: getRecordFactory.setAdapter,
|
|
185
|
+
getRecordsAdapterFactory: getRecordsFactory.getAdapter,
|
|
186
|
+
setGetRecordsAdapterFactory: getRecordsFactory.setAdapter,
|
|
187
|
+
getRelatedListRecordsAdapterFactory: getRelatedListRecordsFactory.getAdapter,
|
|
188
|
+
setGetRelatedListRecordsAdapterFactory: getRelatedListRecordsFactory.setAdapter,
|
|
189
|
+
getRelatedListRecordsBatchAdapterFactory: getRelatedListRecordsBatchFactory.getAdapter,
|
|
190
|
+
setGetRelatedListRecordsBatchAdapterFactory: getRelatedListRecordsBatchFactory.setAdapter,
|
|
191
|
+
getSearchResultsAdapterFactory: getSearchResultsFactory.getAdapter,
|
|
192
|
+
setGetSearchResultsAdapterFactory: getSearchResultsFactory.setAdapter,
|
|
193
|
+
};
|
|
156
194
|
/**
|
|
157
195
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
158
196
|
* Configuration for REST adapters only.
|
|
@@ -182,66 +220,47 @@ const configurationForRestAdapters = {
|
|
|
182
220
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
183
221
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
184
222
|
},
|
|
185
|
-
// createRecord
|
|
186
|
-
setDraftAwareCreateRecordAdapter: function (adapter) {
|
|
187
|
-
draftAwareCreateRecordAdapter = adapter;
|
|
188
|
-
},
|
|
189
|
-
getDraftAwareCreateRecordAdapter: function () {
|
|
190
|
-
return draftAwareCreateRecordAdapter;
|
|
191
|
-
},
|
|
192
|
-
// updateRecord
|
|
193
|
-
setDraftAwareUpdateRecordAdapter: function (adapter) {
|
|
194
|
-
draftAwareUpdateRecordAdapter = adapter;
|
|
195
|
-
},
|
|
196
|
-
getDraftAwareUpdateRecordAdapter: function () {
|
|
197
|
-
return draftAwareUpdateRecordAdapter;
|
|
198
|
-
},
|
|
199
|
-
// deleteRecord
|
|
200
|
-
setDraftAwareDeleteRecordAdapter: function (adapter) {
|
|
201
|
-
draftAwareDeleteRecordAdapter = adapter;
|
|
202
|
-
},
|
|
203
|
-
getDraftAwareDeleteRecordAdapter: function () {
|
|
204
|
-
return draftAwareDeleteRecordAdapter;
|
|
205
|
-
},
|
|
206
|
-
// createContentDocumentAndVersion
|
|
207
|
-
setDraftAwareCreateContentDocumentAndVersionAdapter: function (adapter) {
|
|
208
|
-
draftAwareCreateContentDocumentAndVersionAdapter = adapter;
|
|
209
|
-
},
|
|
210
|
-
getDraftAwareCreateContentDocumentAndVersionAdapter: function () {
|
|
211
|
-
return draftAwareCreateContentDocumentAndVersionAdapter;
|
|
212
|
-
},
|
|
213
223
|
setRelatedListsPredictionsEnabled: function (f) {
|
|
214
224
|
relatedListsPredictionsEnabled = f;
|
|
215
225
|
},
|
|
216
226
|
areRelatedListsPredictionsEnabled: function () {
|
|
217
227
|
return relatedListsPredictionsEnabled === true;
|
|
218
228
|
},
|
|
229
|
+
// createRecord
|
|
230
|
+
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.getAdapter,
|
|
231
|
+
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.setAdapter,
|
|
232
|
+
// updateRecord
|
|
233
|
+
getDraftAwareUpdateRecordAdapter: configurableUpdateRecordAdapter.getAdapter,
|
|
234
|
+
setDraftAwareUpdateRecordAdapter: configurableUpdateRecordAdapter.setAdapter,
|
|
235
|
+
// deleteRecord
|
|
236
|
+
getDraftAwareDeleteRecordAdapter: configurableDeleteRecordAdapter.getAdapter,
|
|
237
|
+
setDraftAwareDeleteRecordAdapter: configurableDeleteRecordAdapter.setAdapter,
|
|
238
|
+
// performQuickAction
|
|
239
|
+
getDraftAwarePerformQuickActionAdapter: configurablePerformQuickActionAdapter.getAdapter,
|
|
240
|
+
setDraftAwarePerformQuickActionAdapter: configurablePerformQuickActionAdapter.setAdapter,
|
|
241
|
+
// performRecordUpdateQuickAction
|
|
242
|
+
getDraftAwarePerformUpdateRecordQuickActionAdapter: configurablePerformUpdateRecordQuickActionAdapter.getAdapter,
|
|
243
|
+
setDraftAwarePerformUpdateRecordQuickActionAdapter: configurablePerformUpdateRecordQuickActionAdapter.setAdapter,
|
|
244
|
+
// createContentDocumentAndVersion
|
|
245
|
+
getDraftAwareCreateContentDocumentAndVersionAdapter: configurableCreateContentDocumentAndVersion.getAdapter,
|
|
246
|
+
setDraftAwareCreateContentDocumentAndVersionAdapter: configurableCreateContentDocumentAndVersion.setAdapter,
|
|
219
247
|
// createContentVersion
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
},
|
|
223
|
-
getDraftAwareCreateContentVersionAdapter: function () {
|
|
224
|
-
return draftAwareCreateContentVersionAdapter;
|
|
225
|
-
},
|
|
248
|
+
getDraftAwareCreateContentVersionAdapter: configurableCreateContentVersion.getAdapter,
|
|
249
|
+
setDraftAwareCreateContentVersionAdapter: configurableCreateContentVersion.setAdapter,
|
|
226
250
|
...configurationForOneStoreEnabledAdapters,
|
|
251
|
+
...configurationForEnvironmentFactoryOverrides,
|
|
227
252
|
};
|
|
253
|
+
let configurableGraphQLAdapter = new Configurable();
|
|
254
|
+
let configurableGraphQLBatchAdapter = new Configurable();
|
|
228
255
|
/**
|
|
229
256
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
230
257
|
* Configuration for GraphQL adapters only.
|
|
231
258
|
*/
|
|
232
259
|
const configurationForGraphQLAdapters = {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
return draftAwareGraphQLAdapter;
|
|
238
|
-
},
|
|
239
|
-
setEnvironmentAwareGraphQLBatchAdapter: function (adapter) {
|
|
240
|
-
environmentAwareGraphQLBatchAdapter = adapter;
|
|
241
|
-
},
|
|
242
|
-
getEnvironmentAwareGraphQLBatchAdapter: function () {
|
|
243
|
-
return environmentAwareGraphQLBatchAdapter;
|
|
244
|
-
},
|
|
260
|
+
getDraftAwareGraphQLAdapter: configurableGraphQLAdapter.getAdapter,
|
|
261
|
+
setDraftAwareGraphQLAdapter: configurableGraphQLAdapter.setAdapter,
|
|
262
|
+
getEnvironmentAwareGraphQLBatchAdapter: configurableGraphQLBatchAdapter.getAdapter,
|
|
263
|
+
setEnvironmentAwareGraphQLBatchAdapter: configurableGraphQLBatchAdapter.setAdapter,
|
|
245
264
|
};
|
|
246
265
|
const registrations = new Set();
|
|
247
266
|
/**
|
|
@@ -3126,8 +3145,8 @@ const MAIN_RECORD_TYPE_ID = '012000000000000AAA';
|
|
|
3126
3145
|
*
|
|
3127
3146
|
* Generated
|
|
3128
3147
|
* from: ui-services-private-object-allow-list.yaml
|
|
3129
|
-
* API version:
|
|
3130
|
-
* at:
|
|
3148
|
+
* API version: 63
|
|
3149
|
+
* at: Wed, 21 Aug 2024 19:39:55 GMT
|
|
3131
3150
|
*/
|
|
3132
3151
|
const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
3133
3152
|
'AIPredictionScore',
|
|
@@ -3349,6 +3368,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3349
3368
|
'BlockchainField',
|
|
3350
3369
|
'BlockchainMember',
|
|
3351
3370
|
'BoardCertification',
|
|
3371
|
+
'BotDefinition',
|
|
3352
3372
|
'BranchUnit',
|
|
3353
3373
|
'BranchUnitBusinessMember',
|
|
3354
3374
|
'BranchUnitCustomer',
|
|
@@ -3386,6 +3406,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3386
3406
|
'CalculationProcedureVariable',
|
|
3387
3407
|
'CalculationProcedureVersion',
|
|
3388
3408
|
'Campaign',
|
|
3409
|
+
'CampaignInfluence',
|
|
3389
3410
|
'CampaignInsight',
|
|
3390
3411
|
'CampaignMember',
|
|
3391
3412
|
'CampaignMemberStatus',
|
|
@@ -3624,6 +3645,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3624
3645
|
'ElectricityEmssnFctrSet',
|
|
3625
3646
|
'ElectronicMediaGroup',
|
|
3626
3647
|
'EmailContent',
|
|
3648
|
+
'EmailMessage',
|
|
3627
3649
|
'EmailMessageRelation',
|
|
3628
3650
|
'EmissionsActivity',
|
|
3629
3651
|
'EmissionsForecastFact',
|
|
@@ -3642,8 +3664,10 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3642
3664
|
'EmssnRdctnCommitment',
|
|
3643
3665
|
'EmssnReductionTarget',
|
|
3644
3666
|
'EnablementProgram',
|
|
3667
|
+
'EnblPgmTaskMeasureProgress',
|
|
3645
3668
|
'EnblProgramSection',
|
|
3646
3669
|
'EnblProgramTaskDefinition',
|
|
3670
|
+
'EnblProgramTaskMeasure',
|
|
3647
3671
|
'EnblProgramTaskProgress',
|
|
3648
3672
|
'EngagementAttendee',
|
|
3649
3673
|
'EngagementChannelType',
|
|
@@ -3660,6 +3684,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3660
3684
|
'EntityArchivingException',
|
|
3661
3685
|
'EntityArchivingJob',
|
|
3662
3686
|
'EntityArchivingSetup',
|
|
3687
|
+
'EntityDefinition',
|
|
3663
3688
|
'EntityMilestone',
|
|
3664
3689
|
'EnvironmentHubMember',
|
|
3665
3690
|
'EnvironmentalRisk',
|
|
@@ -3739,6 +3764,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3739
3764
|
'GroupCensusMemberPlan',
|
|
3740
3765
|
'GroupClass',
|
|
3741
3766
|
'GroupClassContribution',
|
|
3767
|
+
'GroupMember',
|
|
3742
3768
|
'GuestBuyerProfile',
|
|
3743
3769
|
'HealthCareDiagnosis',
|
|
3744
3770
|
'HealthCareProcedure',
|
|
@@ -3789,6 +3815,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3789
3815
|
'InsurancePolicySurcharge',
|
|
3790
3816
|
'InsurancePolicyTransaction',
|
|
3791
3817
|
'InsuranceProfile',
|
|
3818
|
+
'IntegrationProviderDef',
|
|
3792
3819
|
'Interaction',
|
|
3793
3820
|
'InteractionAttendee',
|
|
3794
3821
|
'InteractionParticipant',
|
|
@@ -3807,7 +3834,6 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3807
3834
|
'InvoiceBatchRunRecovery',
|
|
3808
3835
|
'InvoiceLine',
|
|
3809
3836
|
'JobFamily',
|
|
3810
|
-
'JobPosition',
|
|
3811
3837
|
'JobProfile',
|
|
3812
3838
|
'JournalSubType',
|
|
3813
3839
|
'JournalType',
|
|
@@ -3931,6 +3957,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
3931
3957
|
'MfgProgramCpntFrcstFact',
|
|
3932
3958
|
'MfgProgramForecastFact',
|
|
3933
3959
|
'MfgProgramVariantFrcstFact',
|
|
3960
|
+
'MilestoneType',
|
|
3934
3961
|
'MktAiPredictiveInsight',
|
|
3935
3962
|
'MktCalculatedInsight',
|
|
3936
3963
|
'MktDataTransform',
|
|
@@ -4003,6 +4030,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4003
4030
|
'OtherComponentTask',
|
|
4004
4031
|
'OtherEmssnFctrSet',
|
|
4005
4032
|
'OtherEmssnFctrSetItem',
|
|
4033
|
+
'ParticipantRole',
|
|
4006
4034
|
'Partner',
|
|
4007
4035
|
'PartnerFundAllocation',
|
|
4008
4036
|
'PartnerFundClaim',
|
|
@@ -4026,6 +4054,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4026
4054
|
'PatientMedicalProcedure',
|
|
4027
4055
|
'PatientMedicalProcedureDetail',
|
|
4028
4056
|
'PatientMedicationDosage',
|
|
4057
|
+
'Payment',
|
|
4029
4058
|
'PaymentAuthAdjustment',
|
|
4030
4059
|
'PaymentBatchRun',
|
|
4031
4060
|
'PaymentBatchRunCriteria',
|
|
@@ -4114,7 +4143,6 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4114
4143
|
'ProductCategoryProduct',
|
|
4115
4144
|
'ProductCategoryServiceProcess',
|
|
4116
4145
|
'ProductComponentGroup',
|
|
4117
|
-
'ProductConfigurationalRule',
|
|
4118
4146
|
'ProductConsumed',
|
|
4119
4147
|
'ProductConsumedState',
|
|
4120
4148
|
'ProductConsumptionSchedule',
|
|
@@ -4133,7 +4161,6 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4133
4161
|
'ProductRelComponentOverride',
|
|
4134
4162
|
'ProductRelatedComponent',
|
|
4135
4163
|
'ProductRelatedMaterial',
|
|
4136
|
-
'ProductRelatedServiceProcess',
|
|
4137
4164
|
'ProductRelationshipType',
|
|
4138
4165
|
'ProductRequest',
|
|
4139
4166
|
'ProductRequestLineItem',
|
|
@@ -4146,6 +4173,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4146
4173
|
'ProductTransfer',
|
|
4147
4174
|
'ProductTransferState',
|
|
4148
4175
|
'ProductWarrantyTerm',
|
|
4176
|
+
'Profile',
|
|
4149
4177
|
'ProfileSkill',
|
|
4150
4178
|
'ProfileSkillEndorsement',
|
|
4151
4179
|
'ProfileSkillUser',
|
|
@@ -4350,6 +4378,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4350
4378
|
'StnryAssetWtrFtprntItm',
|
|
4351
4379
|
'StoreActionPlanTemplate',
|
|
4352
4380
|
'StoreAssortment',
|
|
4381
|
+
'StoreIntegratedService',
|
|
4353
4382
|
'StoreProduct',
|
|
4354
4383
|
'StreamingChannel',
|
|
4355
4384
|
'SuccessTeam',
|
|
@@ -4363,6 +4392,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4363
4392
|
'SurveyQuestionResponse',
|
|
4364
4393
|
'SurveyResponse',
|
|
4365
4394
|
'SurveySubject',
|
|
4395
|
+
'SurveyVersion',
|
|
4366
4396
|
'SustainabilityCntrLine',
|
|
4367
4397
|
'SustainabilityCredit',
|
|
4368
4398
|
'SustainabilityPurchase',
|
|
@@ -4388,6 +4418,8 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4388
4418
|
'TaxTreatment',
|
|
4389
4419
|
'Tenant',
|
|
4390
4420
|
'TenantParameterMap',
|
|
4421
|
+
'TenantSecurityNotificationRule',
|
|
4422
|
+
'Territory2',
|
|
4391
4423
|
'ThreatDetectionFeedback',
|
|
4392
4424
|
'TimeSheet',
|
|
4393
4425
|
'TimeSheetEntry',
|
|
@@ -4414,11 +4446,14 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4414
4446
|
'UsageImpactGroupPgmMeasure',
|
|
4415
4447
|
'UsageImpactGroupVersion',
|
|
4416
4448
|
'User',
|
|
4449
|
+
'UserDefinedLabel',
|
|
4450
|
+
'UserDefinedLabelAssignment',
|
|
4417
4451
|
'UserEsignVendorIdentifier',
|
|
4418
4452
|
'UserFinancialAuthority',
|
|
4419
4453
|
'UserLicenseDefinition',
|
|
4420
4454
|
'UserLocationAssignment',
|
|
4421
4455
|
'UserRole',
|
|
4456
|
+
'UserTerritory2AssocLog',
|
|
4422
4457
|
'Vehicle',
|
|
4423
4458
|
'VehicleAssetCrbnFtprnt',
|
|
4424
4459
|
'VehicleAssetEmssnSrc',
|
|
@@ -4483,80 +4518,168 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
4483
4518
|
*
|
|
4484
4519
|
* Generated
|
|
4485
4520
|
* from: ui-services-private-object-deny-list.yaml
|
|
4486
|
-
* API version:
|
|
4487
|
-
* at:
|
|
4521
|
+
* API version: 63
|
|
4522
|
+
* at: Wed, 21 Aug 2024 19:39:55 GMT
|
|
4488
4523
|
*/
|
|
4489
4524
|
const UIAPI_DENIED_ENTITY_API_NAMES = new Set([
|
|
4490
4525
|
'AIProductOptimizedField',
|
|
4526
|
+
'AITenantProvisionedFeature',
|
|
4491
4527
|
'ASEOrgSyncHealthStats',
|
|
4492
4528
|
'ASEOrgSyncHealthTxns',
|
|
4529
|
+
'AbnExperimentCohortAttrVal',
|
|
4493
4530
|
'ActionableOrchResponseEvent',
|
|
4494
4531
|
'ActionableOrchSourceEvent',
|
|
4495
4532
|
'ActnblListKeyPrfmIndAsgnt',
|
|
4496
|
-
'
|
|
4497
|
-
'
|
|
4533
|
+
'AiMetadataSyncStatus',
|
|
4534
|
+
'AnalyticsChangeEventLog',
|
|
4535
|
+
'AnalyticsDownloadEventLog',
|
|
4536
|
+
'AnalyticsGenerativeMetadata',
|
|
4537
|
+
'AnalyticsInteractEventLog',
|
|
4538
|
+
'AnalyticsPerfEventLog',
|
|
4539
|
+
'AnalyticsTaskStatusEvent',
|
|
4540
|
+
'ApexCalloutEventLog',
|
|
4541
|
+
'ApexExecutionEventLog',
|
|
4542
|
+
'ApexExtlCalloutEventLog',
|
|
4543
|
+
'ApexRestApiEventLog',
|
|
4544
|
+
'ApexSoapApiEventLog',
|
|
4545
|
+
'ApexTriggerEventLog',
|
|
4546
|
+
'ApexUnexpectedExcpEventLog',
|
|
4547
|
+
'ApiTotalUsageEventLog',
|
|
4548
|
+
'ApplnFormUsageTracking',
|
|
4498
4549
|
'AssetThresholdUpdateEvent',
|
|
4550
|
+
'AsyncReportRunEventLog',
|
|
4551
|
+
'AuraRequestEventLog',
|
|
4552
|
+
'BulkApi2EventLog',
|
|
4499
4553
|
'BulkApi2JobResultsEvent',
|
|
4500
4554
|
'BulkApi2JobStatusEvent',
|
|
4555
|
+
'BulkApiEventLog',
|
|
4501
4556
|
'BulkMessage',
|
|
4557
|
+
'CapabilityUserPreference',
|
|
4558
|
+
'CaseFileProcessDependency',
|
|
4559
|
+
'CaseFileProcessExecution',
|
|
4560
|
+
'CatalogListing',
|
|
4561
|
+
'CheckoutResetConfig',
|
|
4502
4562
|
'CommerceJobStatus',
|
|
4563
|
+
'CommerceSearchIndexError',
|
|
4503
4564
|
'CommerceSearchResultsRule',
|
|
4504
4565
|
'CompiledProduct',
|
|
4566
|
+
'ConcurApexLimitEventLog',
|
|
4567
|
+
'ConsentUnsubscribeAllEvent',
|
|
4505
4568
|
'ConsentUnsubscribeEvent',
|
|
4506
4569
|
'ContentTaxonomyModel',
|
|
4570
|
+
'ContentTransferEventLog',
|
|
4507
4571
|
'ContextPersistenceEvent',
|
|
4508
4572
|
'ContractCreationEvent',
|
|
4509
4573
|
'ConvIntelligenceVoiceCall',
|
|
4510
4574
|
'ConvMessageSendRequest',
|
|
4511
4575
|
'ConversationInsightEvent',
|
|
4512
4576
|
'ConversationTranscriptSendRequest',
|
|
4577
|
+
'CuratedExpJobEvent',
|
|
4578
|
+
'CuratedExpPlanEvent',
|
|
4579
|
+
'DTRecordsetReplica',
|
|
4513
4580
|
'DataActionJobStatusEvent',
|
|
4514
4581
|
'DataCloudCurrencyConfig',
|
|
4515
4582
|
'DataCloudFiscalCalendar',
|
|
4583
|
+
'DataKitDeployEvent',
|
|
4516
4584
|
'DataMultiOrgServiceEvent',
|
|
4517
|
-
'
|
|
4585
|
+
'DataShellTntUpgradeEvent',
|
|
4586
|
+
'DcsnTblSourceObjectRecord',
|
|
4587
|
+
'DecisionTableDataset',
|
|
4518
4588
|
'DecisionTableRecordset',
|
|
4589
|
+
'DecisionTblSrcChangedEvent',
|
|
4519
4590
|
'DiscoveryFrwrkSampleTemplate',
|
|
4520
4591
|
'DiscoveryFrwrkTemplateMember',
|
|
4592
|
+
'DocGenBtchStsChgEvent',
|
|
4593
|
+
'DocGenProcStsChgEvent',
|
|
4521
4594
|
'DocumentExtReviewerConsent',
|
|
4522
4595
|
'EmailBounceEvent',
|
|
4596
|
+
'EnblMlstnProgQryTmotEvent',
|
|
4597
|
+
'EngagementSignalCmpndMetric',
|
|
4598
|
+
'EngagementSignalDistinct',
|
|
4599
|
+
'EngagementSignalFilter',
|
|
4600
|
+
'EngagementSignalFltrGrp',
|
|
4601
|
+
'EngagementSignalFltrVal',
|
|
4602
|
+
'EngagementSignalJoinDim',
|
|
4603
|
+
'EngagementSignalMetric',
|
|
4604
|
+
'ExtKAImportError',
|
|
4605
|
+
'ExtKAImportResult',
|
|
4606
|
+
'ExtKnowledgeIngestionRun',
|
|
4523
4607
|
'ExtKnowledgeIngestionStatus',
|
|
4524
4608
|
'ExtKnowledgeIngestionTask',
|
|
4525
4609
|
'ExtKnowledgeOrgStatus',
|
|
4610
|
+
'ExtKnowledgePartnerOrg',
|
|
4526
4611
|
'ExtKnowledgeXDSConnector',
|
|
4612
|
+
'ExternalDataChgEvent',
|
|
4527
4613
|
'ExternalDocRefMapping',
|
|
4528
4614
|
'ExternalEncryptionRootKey',
|
|
4615
|
+
'ExternalTrigger',
|
|
4616
|
+
'ExternalTriggerData',
|
|
4617
|
+
'ExternalTriggerSubscriber',
|
|
4618
|
+
'ExtlRecShrCnctAccnt',
|
|
4619
|
+
'ExtlRecShrEvent',
|
|
4620
|
+
'ExtlRecShrProcessEvent',
|
|
4621
|
+
'ExtlRecShrRecordMap',
|
|
4622
|
+
'ExtlRecShrResultEvent',
|
|
4529
4623
|
'FirstBillPaymentSetupEvent',
|
|
4624
|
+
'FlowAutoSaveStsChngEvent',
|
|
4625
|
+
'FlowAutosaveInterviewStatus',
|
|
4530
4626
|
'FlowDefDataActionMapping',
|
|
4627
|
+
'FlowNavMetricEventLog',
|
|
4531
4628
|
'GenericHammerResult',
|
|
4532
|
-
'
|
|
4629
|
+
'GuestUserAnomalyEvent',
|
|
4630
|
+
'InsufficientAccessEventLog',
|
|
4631
|
+
'InsuranceAsyncBulkRecordDetail',
|
|
4533
4632
|
'InsuranceRatingInput',
|
|
4534
4633
|
'InsuranceRatingOutput',
|
|
4535
4634
|
'InsuranceRatingRequestEvent',
|
|
4536
4635
|
'InsuranceRatingRequestItem',
|
|
4537
4636
|
'InterviewItemWaitCondition',
|
|
4538
|
-
'
|
|
4637
|
+
'KnowledgeArticleEventLog',
|
|
4638
|
+
'LightningLoggerEventLog',
|
|
4639
|
+
'LightningPageViewEventLog',
|
|
4640
|
+
'LoginAsEventLog',
|
|
4641
|
+
'LoginEventLog',
|
|
4642
|
+
'MLModelDataAlert',
|
|
4539
4643
|
'ManagedContentJobBody',
|
|
4540
4644
|
'ManagedContentOffCoreLocation',
|
|
4541
4645
|
'ManagedContentSpaceFolderShare',
|
|
4542
4646
|
'MerchantAccountEvent',
|
|
4543
4647
|
'MessagingChannelUpdateEvent',
|
|
4648
|
+
'MetadataApiOpEventLog',
|
|
4544
4649
|
'MetricsDeletionJobStatus',
|
|
4545
4650
|
'MktMLModelPartitionRun',
|
|
4546
4651
|
'MktMLModelSetupRun',
|
|
4547
4652
|
'MktMLSetupRunChgEvent',
|
|
4548
4653
|
'MngContentFormActionEvent',
|
|
4654
|
+
'ObjectDataImportResult',
|
|
4549
4655
|
'ObjectUserTerritory2View',
|
|
4656
|
+
'OmniTrackingEvent',
|
|
4657
|
+
'OrderItemAssetizationState',
|
|
4658
|
+
'OrgDayZeroStatus',
|
|
4550
4659
|
'OrgSharingEvent',
|
|
4660
|
+
'OvenSdbExperimentRequest',
|
|
4661
|
+
'PackageInstallEventLog',
|
|
4662
|
+
'PackagePropUpdateJob',
|
|
4663
|
+
'PackagePropUpdateRequest',
|
|
4664
|
+
'PackageSubscriberOrgInfo',
|
|
4551
4665
|
'PaymentIntentEvent',
|
|
4552
4666
|
'PaymentLinkEvent',
|
|
4667
|
+
'PersnlDecisionAttrValue',
|
|
4668
|
+
'PersonalizationAttribute',
|
|
4553
4669
|
'PlatformEventUsage',
|
|
4670
|
+
'PriceBookPriceGuidance',
|
|
4554
4671
|
'PriceSheetData',
|
|
4555
4672
|
'PricingDecisionHashMap',
|
|
4556
4673
|
'PricingLookupSyncStatus',
|
|
4674
|
+
'PricingWaterfallLog',
|
|
4557
4675
|
'PushUpgradeCustomization',
|
|
4558
4676
|
'QuoteSaveEvent',
|
|
4677
|
+
'RebatePayoutSnapshot',
|
|
4678
|
+
'RecommenderStatusChgEvent',
|
|
4559
4679
|
'RelationshipGraphView',
|
|
4680
|
+
'ReminderRecord',
|
|
4681
|
+
'ReportEventLog',
|
|
4682
|
+
'RestApiEventLog',
|
|
4560
4683
|
'Rule',
|
|
4561
4684
|
'RuleAction',
|
|
4562
4685
|
'RuleActionParameter',
|
|
@@ -4565,26 +4688,46 @@ const UIAPI_DENIED_ENTITY_API_NAMES = new Set([
|
|
|
4565
4688
|
'RuleExpression',
|
|
4566
4689
|
'RuleExpressionTerm',
|
|
4567
4690
|
'RuleFilterCriteria',
|
|
4568
|
-
'
|
|
4691
|
+
'RuleLibraryContextTag',
|
|
4692
|
+
'RuleLibraryVersionSnapshot',
|
|
4569
4693
|
'RuleReferenceVariable',
|
|
4570
4694
|
'RuleValue',
|
|
4571
4695
|
'RuleVersion',
|
|
4696
|
+
'RuleVersionSnapshot',
|
|
4572
4697
|
'Ruleset',
|
|
4573
|
-
'RulesetDependency',
|
|
4574
4698
|
'RulesetVersion',
|
|
4699
|
+
'RulesetVersionSnapshot',
|
|
4700
|
+
'RuntimeCatalogSnapshot',
|
|
4701
|
+
'RuntimeCatalogSnapshotIndex',
|
|
4575
4702
|
'SalesTrxnItemPrcSht',
|
|
4576
4703
|
'SalesTrxnItemPrcShtShape',
|
|
4704
|
+
'SalesforcePayment',
|
|
4705
|
+
'SandboxStatusEventLog',
|
|
4577
4706
|
'SavedPaymentMethodEvent',
|
|
4578
4707
|
'ScheduledReminder',
|
|
4579
4708
|
'SearchBBRule',
|
|
4580
4709
|
'SearchBBRuleCondition',
|
|
4710
|
+
'SearchClickEventLog',
|
|
4711
|
+
'SearchEventLog',
|
|
4712
|
+
'SearchIndexFieldConfig',
|
|
4713
|
+
'SearchIndexObjectConfig',
|
|
4714
|
+
'SearchRecencyIndexingJob',
|
|
4581
4715
|
'ServiceAppointmentEvent',
|
|
4716
|
+
'ServiceAppointmentShift',
|
|
4582
4717
|
'SiqOrgMigrationStatus',
|
|
4718
|
+
'SiteEventLog',
|
|
4719
|
+
'SoapApiEventLog',
|
|
4583
4720
|
'StatsInvalidationEvent',
|
|
4584
4721
|
'TenantBillingUsageEvent',
|
|
4722
|
+
'TransactionSecurityEventLog',
|
|
4723
|
+
'UnifiedAnalyticsMonEvent',
|
|
4724
|
+
'UnitOfMeasureUnit',
|
|
4725
|
+
'UriEventLog',
|
|
4726
|
+
'VisualforceRequestEventLog',
|
|
4585
4727
|
'WebPushMessageSubscription',
|
|
4586
4728
|
'WebStoreCMS',
|
|
4587
4729
|
'WebStoreUserCreatedEvent',
|
|
4730
|
+
'YourAccountDataEvent',
|
|
4588
4731
|
]);
|
|
4589
4732
|
|
|
4590
4733
|
const MAX_RECORD_DEPTH = 5;
|
|
@@ -37961,6 +38104,7 @@ const getSearchFilterMetadataMetadata = { apiFamily: keyPrefix, name: adapterNam
|
|
|
37961
38104
|
const getSearchFilterOptionsMetadata = { apiFamily: keyPrefix, name: adapterName$d, ttl: 30000 };
|
|
37962
38105
|
const getSearchResultsMetadata = { apiFamily: keyPrefix, name: adapterName$b, ttl: 200 };
|
|
37963
38106
|
function bindExportsTo(luvio) {
|
|
38107
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
37964
38108
|
// LDS adapters
|
|
37965
38109
|
const getActionOverrides_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getActionOverrides', getActionOverridesAdapterFactory), getActionOverridesMetadata);
|
|
37966
38110
|
const getAllApps_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getAllApps', getAllAppsAdapterFactory), getAllAppsMetadata);
|
|
@@ -37969,7 +38113,7 @@ function bindExportsTo(luvio) {
|
|
|
37969
38113
|
const getDuplicates_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getDuplicates', getDuplicatesAdapterFactory), getDuplicatesMetadata);
|
|
37970
38114
|
const getFlexipageFormulaOverrides_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getFlexipageFormulaOverrides', getFlexipageFormulaOverridesAdapterFactory), getFlexipageFormulaOverridesMetadata);
|
|
37971
38115
|
const getGlobalActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getGlobalActions', getGlobalActionsAdapterFactory), getGlobalActionsMetadata);
|
|
37972
|
-
const getKeywordSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getKeywordSearchResults', getKeywordSearchResultsAdapterFactory), getKeywordSearchResultsMetadata);
|
|
38116
|
+
const getKeywordSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getKeywordSearchResults', (_a = configurationForEnvironmentFactoryOverrides.getKeywordSearchResultsAdapterFactory()) !== null && _a !== void 0 ? _a : getKeywordSearchResultsAdapterFactory), getKeywordSearchResultsMetadata);
|
|
37973
38117
|
const getLayout_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLayout', getLayoutAdapterFactory), getLayoutMetadata);
|
|
37974
38118
|
const getLayoutUserState_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLayoutUserState', getLayoutUserStateAdapterFactory), getLayoutUserStateMetadata);
|
|
37975
38119
|
const getListInfoByName_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getListInfoByName', getListInfoByNameAdapterFactory), luvio, 'getListInfoByName'), getListInfoByNameMetadata);
|
|
@@ -37977,11 +38121,11 @@ function bindExportsTo(luvio) {
|
|
|
37977
38121
|
const getListInfosByObjectName_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getListInfosByObjectName', getListInfosByObjectNameAdapterFactory), luvio, 'getListInfosByObjectName'), getListInfosByObjectNameMetadata);
|
|
37978
38122
|
const getListObjectInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getListObjectInfo', getListObjectInfoAdapterFactory), luvio, 'getListObjectInfo'), getListObjectInfoMetadata);
|
|
37979
38123
|
const getListPreferences_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListPreferences', getListPreferencesAdapterFactory), getListPreferencesMetadata);
|
|
37980
|
-
const getListRecordsByName_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getListRecordsByName', factory$a), luvio, 'getListRecordsByName'), getListRecordsByNameMetadata);
|
|
37981
|
-
const getListUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListUi', factory$h), getListUiMetadata);
|
|
38124
|
+
const getListRecordsByName_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getListRecordsByName', (_b = configurationForEnvironmentFactoryOverrides.getListRecordsByNameAdapterFactory()) !== null && _b !== void 0 ? _b : factory$a), luvio, 'getListRecordsByName'), getListRecordsByNameMetadata);
|
|
38125
|
+
const getListUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListUi', (_c = configurationForEnvironmentFactoryOverrides.getListUiAdapterFactory()) !== null && _c !== void 0 ? _c : factory$h), getListUiMetadata);
|
|
37982
38126
|
const getLookupActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupActions', getLookupActionsAdapterFactory), getLookupActionsMetadata);
|
|
37983
38127
|
const getLookupMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupMetadata', getLookupMetadataAdapterFactory), getLookupMetadataMetadata);
|
|
37984
|
-
const getLookupRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupRecords', factory$9), getLookupRecordsMetadata);
|
|
38128
|
+
const getLookupRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupRecords', (_d = configurationForEnvironmentFactoryOverrides.getLookupRecordsAdapterFactory()) !== null && _d !== void 0 ? _d : factory$9), getLookupRecordsMetadata);
|
|
37985
38129
|
const getNavItems_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getNavItems', getNavItemsAdapterFactory), getNavItemsMetadata);
|
|
37986
38130
|
const getObjectCreateActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getObjectCreateActions', getObjectCreateActionsAdapterFactory), getObjectCreateActionsMetadata);
|
|
37987
38131
|
const getObjectInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getObjectInfo', getObjectInfoAdapterFactory), luvio, 'getObjectInfo'), getObjectInfoMetadata);
|
|
@@ -37989,33 +38133,33 @@ function bindExportsTo(luvio) {
|
|
|
37989
38133
|
const getPathLayout_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPathLayout', getPathLayoutAdapterFactory), getPathLayoutMetadata);
|
|
37990
38134
|
const getPicklistValues_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPicklistValues', getPicklistValuesAdapterFactory), getPicklistValuesMetadata);
|
|
37991
38135
|
const getPicklistValuesByRecordType_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPicklistValuesByRecordType', getPicklistValuesByRecordTypeAdapterFactory), getPicklistValuesByRecordTypeMetadata);
|
|
37992
|
-
const getQuickActionDefaults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getQuickActionDefaults', getQuickActionDefaultsAdapterFactory), getQuickActionDefaultsMetadata);
|
|
38136
|
+
const getQuickActionDefaults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getQuickActionDefaults', (_e = configurationForEnvironmentFactoryOverrides.getQuickActionDefaultsAdapterFactory()) !== null && _e !== void 0 ? _e : getQuickActionDefaultsAdapterFactory), getQuickActionDefaultsMetadata);
|
|
37993
38137
|
const getQuickActionInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getQuickActionInfo', getQuickActionInfoAdapterFactory), getQuickActionInfoMetadata);
|
|
37994
38138
|
const getQuickActionLayout_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getQuickActionLayout', getQuickActionLayoutAdapterFactory), getQuickActionLayoutMetadata);
|
|
37995
|
-
const getRecord_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecord', factory$f), luvio, 'getRecord'), getRecordMetadata);
|
|
38139
|
+
const getRecord_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecord', (_f = configurationForEnvironmentFactoryOverrides.getRecordAdapterFactory()) !== null && _f !== void 0 ? _f : factory$f), luvio, 'getRecord'), getRecordMetadata);
|
|
37996
38140
|
const getRecordActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecordActions', getRecordActionsAdapterFactory), luvio, 'getRecordActions'), getRecordActionsMetadata);
|
|
37997
38141
|
const getRecordAvatars_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecordAvatars', getRecordAvatarsAdapterFactory), luvio, 'getRecordAvatars'), getRecordAvatarsMetadata);
|
|
37998
|
-
const getRecordCreateDefaults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordCreateDefaults', factory$7), getRecordCreateDefaultsMetadata);
|
|
38142
|
+
const getRecordCreateDefaults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordCreateDefaults', (_g = configurationForEnvironmentFactoryOverrides.getRecordCreateDefaultsAdapterFactory()) !== null && _g !== void 0 ? _g : factory$7), getRecordCreateDefaultsMetadata);
|
|
37999
38143
|
const getRecordEditActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordEditActions', getRecordEditActionsAdapterFactory), getRecordEditActionsMetadata);
|
|
38000
|
-
const getRecordTemplateClone_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordTemplateClone', factory$6), getRecordTemplateCloneMetadata);
|
|
38001
|
-
const getRecordTemplateCreate_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordTemplateCreate', factory$5), getRecordTemplateCreateMetadata);
|
|
38002
|
-
const getRecordUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordUi', factory$g), getRecordUiMetadata);
|
|
38003
|
-
const getRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecords', getRecordsAdapterFactory), luvio, 'getRecords'), getRecordsMetadata);
|
|
38144
|
+
const getRecordTemplateClone_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordTemplateClone', (_h = configurationForEnvironmentFactoryOverrides.getRecordTemplateCloneAdapterFactory()) !== null && _h !== void 0 ? _h : factory$6), getRecordTemplateCloneMetadata);
|
|
38145
|
+
const getRecordTemplateCreate_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordTemplateCreate', (_j = configurationForEnvironmentFactoryOverrides.getRecordTemplateCreateAdapterFactory()) !== null && _j !== void 0 ? _j : factory$5), getRecordTemplateCreateMetadata);
|
|
38146
|
+
const getRecordUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordUi', (_k = configurationForEnvironmentFactoryOverrides.getRecordUiAdapterFactory()) !== null && _k !== void 0 ? _k : factory$g), getRecordUiMetadata);
|
|
38147
|
+
const getRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecords', (_l = configurationForEnvironmentFactoryOverrides.getRecordsAdapterFactory()) !== null && _l !== void 0 ? _l : getRecordsAdapterFactory), luvio, 'getRecords'), getRecordsMetadata);
|
|
38004
38148
|
const getRelatedListActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListActions', getRelatedListActionsAdapterFactory), getRelatedListActionsMetadata);
|
|
38005
38149
|
const getRelatedListCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListCount', getRelatedListCountAdapterFactory), getRelatedListCountMetadata);
|
|
38006
|
-
const getRelatedListInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListInfo', getRelatedListInfoAdapterFactory), getRelatedListInfoMetadata);
|
|
38150
|
+
const getRelatedListInfo_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListInfo', getRelatedListInfoAdapterFactory), luvio, 'getRelatedListInfo'), getRelatedListInfoMetadata);
|
|
38007
38151
|
const getRelatedListInfoBatch_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListInfoBatch', getRelatedListInfoBatchAdapterFactory), luvio, 'getRelatedListInfoBatch'), getRelatedListInfoBatchMetadata);
|
|
38008
38152
|
const getRelatedListPreferences_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListPreferences', getRelatedListPreferencesAdapterFactory), getRelatedListPreferencesMetadata);
|
|
38009
38153
|
const getRelatedListPreferencesBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListPreferencesBatch', getRelatedListPreferencesBatchAdapterFactory), getRelatedListPreferencesBatchMetadata);
|
|
38010
38154
|
const getRelatedListRecordActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListRecordActions', getRelatedListRecordActionsAdapterFactory), getRelatedListRecordActionsMetadata);
|
|
38011
|
-
const getRelatedListRecords_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecords', getRelatedListRecordsAdapterFactory), luvio, 'getRelatedListRecords'), getRelatedListRecordsMetadata);
|
|
38012
|
-
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecordsBatch', getRelatedListRecordsBatchAdapterFactory), luvio, 'getRelatedListRecordsBatch'), getRelatedListRecordsBatchMetadata);
|
|
38155
|
+
const getRelatedListRecords_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecords', (_m = configurationForEnvironmentFactoryOverrides.getRelatedListRecordsAdapterFactory()) !== null && _m !== void 0 ? _m : getRelatedListRecordsAdapterFactory), luvio, 'getRelatedListRecords'), getRelatedListRecordsMetadata);
|
|
38156
|
+
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecordsBatch', (_o = configurationForEnvironmentFactoryOverrides.getRelatedListRecordsBatchAdapterFactory()) !== null && _o !== void 0 ? _o : getRelatedListRecordsBatchAdapterFactory), luvio, 'getRelatedListRecordsBatch'), getRelatedListRecordsBatchMetadata);
|
|
38013
38157
|
const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsActions', getRelatedListsActionsAdapterFactory), luvio, 'getRelatedListsActions'), getRelatedListsActionsMetadata);
|
|
38014
38158
|
const getRelatedListsCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsCount', getRelatedListsCountAdapterFactory), getRelatedListsCountMetadata);
|
|
38015
38159
|
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), getRelatedListsInfoMetadata);
|
|
38016
38160
|
const getSearchFilterMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterMetadata', getSearchFilterMetadataAdapterFactory), getSearchFilterMetadataMetadata);
|
|
38017
38161
|
const getSearchFilterOptions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterOptions', getSearchFilterOptionsAdapterFactory), getSearchFilterOptionsMetadata);
|
|
38018
|
-
const getSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchResults', getSearchResultsAdapterFactory), getSearchResultsMetadata);
|
|
38162
|
+
const getSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchResults', (_p = configurationForEnvironmentFactoryOverrides.getSearchResultsAdapterFactory()) !== null && _p !== void 0 ? _p : getSearchResultsAdapterFactory), getSearchResultsMetadata);
|
|
38019
38163
|
function unwrapSnapshotData(factory) {
|
|
38020
38164
|
const adapter = factory(luvio);
|
|
38021
38165
|
return (...config) => adapter(...config).then(snapshot => snapshot.data);
|
|
@@ -38355,5 +38499,5 @@ withDefaultLuvio((luvio) => {
|
|
|
38355
38499
|
notifyAllListInfoSummaryUpdateAvailable = throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
38356
38500
|
});
|
|
38357
38501
|
|
|
38358
|
-
export { API_NAMESPACE, 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$1e 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, 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, 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$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$D 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 };
|
|
38359
|
-
// version: 1.
|
|
38502
|
+
export { API_NAMESPACE, 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$1e 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, 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, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, 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, 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$D 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 };
|
|
38503
|
+
// version: 1.314.0-022b0c843b
|