@salesforce/lwc-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/main.js +237 -88
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -7297,34 +7297,26 @@ function deepMerge(target, ...sources) {
|
|
|
7297
7297
|
/**
|
|
7298
7298
|
* Defines configuration for the module with a default value which can be overridden by the runtime environment.
|
|
7299
7299
|
*/
|
|
7300
|
-
|
|
7301
|
-
|
|
7302
|
-
|
|
7303
|
-
|
|
7304
|
-
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7308
|
-
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
|
-
|
|
7312
|
-
|
|
7313
|
-
|
|
7314
|
-
|
|
7315
|
-
let
|
|
7316
|
-
|
|
7317
|
-
|
|
7318
|
-
|
|
7319
|
-
let
|
|
7320
|
-
/**
|
|
7321
|
-
* Draft-aware createContentDocumentAndVersion adapter
|
|
7322
|
-
*/
|
|
7323
|
-
let draftAwareCreateContentDocumentAndVersionAdapter = undefined;
|
|
7324
|
-
/**
|
|
7325
|
-
* Draft-aware createContentVersion adapter
|
|
7326
|
-
*/
|
|
7327
|
-
let draftAwareCreateContentVersionAdapter = undefined;
|
|
7300
|
+
// A holder for a configurable adapter override
|
|
7301
|
+
class Configurable {
|
|
7302
|
+
constructor() {
|
|
7303
|
+
this.getAdapter = () => {
|
|
7304
|
+
return this.adapter;
|
|
7305
|
+
};
|
|
7306
|
+
this.setAdapter = (value) => {
|
|
7307
|
+
this.adapter = value;
|
|
7308
|
+
};
|
|
7309
|
+
this.adapter = undefined;
|
|
7310
|
+
}
|
|
7311
|
+
}
|
|
7312
|
+
// Configurable adapters that can have environmental overrides
|
|
7313
|
+
let configurableCreateRecordAdapter = new Configurable();
|
|
7314
|
+
let configurableUpdateRecordAdapter = new Configurable();
|
|
7315
|
+
let configurableDeleteRecordAdapter = new Configurable();
|
|
7316
|
+
let configurablePerformQuickActionAdapter = new Configurable();
|
|
7317
|
+
let configurablePerformUpdateRecordQuickActionAdapter = new Configurable();
|
|
7318
|
+
let configurableCreateContentDocumentAndVersion = new Configurable();
|
|
7319
|
+
let configurableCreateContentVersion = new Configurable();
|
|
7328
7320
|
/**
|
|
7329
7321
|
* Depth to which tracked fields will be added to a request that results from a cache miss.
|
|
7330
7322
|
* A value of 0 inhibits the addition of tracked fields, 1 will add tracked fields that can
|
|
@@ -7381,6 +7373,52 @@ const configurationForOneStoreEnabledAdapters = {
|
|
|
7381
7373
|
return oneStoreGetObjectInfosAdapter;
|
|
7382
7374
|
},
|
|
7383
7375
|
};
|
|
7376
|
+
const getKeywordSearchResultsFactory = new Configurable();
|
|
7377
|
+
const getListRecordsByNameFactory = new Configurable();
|
|
7378
|
+
const getListUiFactory = new Configurable();
|
|
7379
|
+
const getLookupRecordsFactory = new Configurable();
|
|
7380
|
+
const getQuickActionDefaultsFactory = new Configurable();
|
|
7381
|
+
const getRecordCreateDefaultsFactory = new Configurable();
|
|
7382
|
+
const getRecordTemplateCloneFactory = new Configurable();
|
|
7383
|
+
const getRecordTemplateCreateFactory = new Configurable();
|
|
7384
|
+
const getRecordUiFactory = new Configurable();
|
|
7385
|
+
const getRecordFactory = new Configurable();
|
|
7386
|
+
const getRecordsFactory = new Configurable();
|
|
7387
|
+
const getRelatedListRecordsFactory = new Configurable();
|
|
7388
|
+
const getRelatedListRecordsBatchFactory = new Configurable();
|
|
7389
|
+
const getSearchResultsFactory = new Configurable();
|
|
7390
|
+
// The following set of adapters all touch RecordRepresentation directly or indirectly,
|
|
7391
|
+
// so they need to support having a custom factory provided by the mobile environment.
|
|
7392
|
+
const configurationForEnvironmentFactoryOverrides = {
|
|
7393
|
+
getKeywordSearchResultsAdapterFactory: getKeywordSearchResultsFactory.getAdapter,
|
|
7394
|
+
setGetKeywordSearchResultsAdapterFactory: getKeywordSearchResultsFactory.setAdapter,
|
|
7395
|
+
getListRecordsByNameAdapterFactory: getListRecordsByNameFactory.getAdapter,
|
|
7396
|
+
setGetListRecordsByNameAdapterFactory: getListRecordsByNameFactory.setAdapter,
|
|
7397
|
+
getListUiAdapterFactory: getListUiFactory.getAdapter,
|
|
7398
|
+
setGetListUiAdapterFactory: getListUiFactory.setAdapter,
|
|
7399
|
+
getLookupRecordsAdapterFactory: getLookupRecordsFactory.getAdapter,
|
|
7400
|
+
setGetLookupRecordsAdapterFactory: getLookupRecordsFactory.setAdapter,
|
|
7401
|
+
getQuickActionDefaultsAdapterFactory: getQuickActionDefaultsFactory.getAdapter,
|
|
7402
|
+
setGetQuickActionDefaultsAdapterFactory: getQuickActionDefaultsFactory.setAdapter,
|
|
7403
|
+
getRecordCreateDefaultsAdapterFactory: getRecordCreateDefaultsFactory.getAdapter,
|
|
7404
|
+
setGetRecordCreateDefaultsAdapterFactory: getRecordCreateDefaultsFactory.setAdapter,
|
|
7405
|
+
getRecordTemplateCloneAdapterFactory: getRecordTemplateCloneFactory.getAdapter,
|
|
7406
|
+
setGetRecordTemplateCloneAdapterFactory: getRecordTemplateCloneFactory.setAdapter,
|
|
7407
|
+
getRecordTemplateCreateAdapterFactory: getRecordTemplateCreateFactory.getAdapter,
|
|
7408
|
+
setGetRecordTemplateCreateAdapterFactory: getRecordTemplateCreateFactory.setAdapter,
|
|
7409
|
+
getRecordUiAdapterFactory: getRecordUiFactory.getAdapter,
|
|
7410
|
+
setGetRecordUiAdapterFactory: getRecordUiFactory.setAdapter,
|
|
7411
|
+
getRecordAdapterFactory: getRecordFactory.getAdapter,
|
|
7412
|
+
setGetRecordAdapterFactory: getRecordFactory.setAdapter,
|
|
7413
|
+
getRecordsAdapterFactory: getRecordsFactory.getAdapter,
|
|
7414
|
+
setGetRecordsAdapterFactory: getRecordsFactory.setAdapter,
|
|
7415
|
+
getRelatedListRecordsAdapterFactory: getRelatedListRecordsFactory.getAdapter,
|
|
7416
|
+
setGetRelatedListRecordsAdapterFactory: getRelatedListRecordsFactory.setAdapter,
|
|
7417
|
+
getRelatedListRecordsBatchAdapterFactory: getRelatedListRecordsBatchFactory.getAdapter,
|
|
7418
|
+
setGetRelatedListRecordsBatchAdapterFactory: getRelatedListRecordsBatchFactory.setAdapter,
|
|
7419
|
+
getSearchResultsAdapterFactory: getSearchResultsFactory.getAdapter,
|
|
7420
|
+
setGetSearchResultsAdapterFactory: getSearchResultsFactory.setAdapter,
|
|
7421
|
+
};
|
|
7384
7422
|
/**
|
|
7385
7423
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
7386
7424
|
* Configuration for REST adapters only.
|
|
@@ -7410,66 +7448,47 @@ const configurationForRestAdapters = {
|
|
|
7410
7448
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
7411
7449
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
7412
7450
|
},
|
|
7413
|
-
// createRecord
|
|
7414
|
-
setDraftAwareCreateRecordAdapter: function (adapter) {
|
|
7415
|
-
draftAwareCreateRecordAdapter = adapter;
|
|
7416
|
-
},
|
|
7417
|
-
getDraftAwareCreateRecordAdapter: function () {
|
|
7418
|
-
return draftAwareCreateRecordAdapter;
|
|
7419
|
-
},
|
|
7420
|
-
// updateRecord
|
|
7421
|
-
setDraftAwareUpdateRecordAdapter: function (adapter) {
|
|
7422
|
-
draftAwareUpdateRecordAdapter = adapter;
|
|
7423
|
-
},
|
|
7424
|
-
getDraftAwareUpdateRecordAdapter: function () {
|
|
7425
|
-
return draftAwareUpdateRecordAdapter;
|
|
7426
|
-
},
|
|
7427
|
-
// deleteRecord
|
|
7428
|
-
setDraftAwareDeleteRecordAdapter: function (adapter) {
|
|
7429
|
-
draftAwareDeleteRecordAdapter = adapter;
|
|
7430
|
-
},
|
|
7431
|
-
getDraftAwareDeleteRecordAdapter: function () {
|
|
7432
|
-
return draftAwareDeleteRecordAdapter;
|
|
7433
|
-
},
|
|
7434
|
-
// createContentDocumentAndVersion
|
|
7435
|
-
setDraftAwareCreateContentDocumentAndVersionAdapter: function (adapter) {
|
|
7436
|
-
draftAwareCreateContentDocumentAndVersionAdapter = adapter;
|
|
7437
|
-
},
|
|
7438
|
-
getDraftAwareCreateContentDocumentAndVersionAdapter: function () {
|
|
7439
|
-
return draftAwareCreateContentDocumentAndVersionAdapter;
|
|
7440
|
-
},
|
|
7441
7451
|
setRelatedListsPredictionsEnabled: function (f) {
|
|
7442
7452
|
relatedListsPredictionsEnabled = f;
|
|
7443
7453
|
},
|
|
7444
7454
|
areRelatedListsPredictionsEnabled: function () {
|
|
7445
7455
|
return relatedListsPredictionsEnabled === true;
|
|
7446
7456
|
},
|
|
7457
|
+
// createRecord
|
|
7458
|
+
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.getAdapter,
|
|
7459
|
+
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.setAdapter,
|
|
7460
|
+
// updateRecord
|
|
7461
|
+
getDraftAwareUpdateRecordAdapter: configurableUpdateRecordAdapter.getAdapter,
|
|
7462
|
+
setDraftAwareUpdateRecordAdapter: configurableUpdateRecordAdapter.setAdapter,
|
|
7463
|
+
// deleteRecord
|
|
7464
|
+
getDraftAwareDeleteRecordAdapter: configurableDeleteRecordAdapter.getAdapter,
|
|
7465
|
+
setDraftAwareDeleteRecordAdapter: configurableDeleteRecordAdapter.setAdapter,
|
|
7466
|
+
// performQuickAction
|
|
7467
|
+
getDraftAwarePerformQuickActionAdapter: configurablePerformQuickActionAdapter.getAdapter,
|
|
7468
|
+
setDraftAwarePerformQuickActionAdapter: configurablePerformQuickActionAdapter.setAdapter,
|
|
7469
|
+
// performRecordUpdateQuickAction
|
|
7470
|
+
getDraftAwarePerformUpdateRecordQuickActionAdapter: configurablePerformUpdateRecordQuickActionAdapter.getAdapter,
|
|
7471
|
+
setDraftAwarePerformUpdateRecordQuickActionAdapter: configurablePerformUpdateRecordQuickActionAdapter.setAdapter,
|
|
7472
|
+
// createContentDocumentAndVersion
|
|
7473
|
+
getDraftAwareCreateContentDocumentAndVersionAdapter: configurableCreateContentDocumentAndVersion.getAdapter,
|
|
7474
|
+
setDraftAwareCreateContentDocumentAndVersionAdapter: configurableCreateContentDocumentAndVersion.setAdapter,
|
|
7447
7475
|
// createContentVersion
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
},
|
|
7451
|
-
getDraftAwareCreateContentVersionAdapter: function () {
|
|
7452
|
-
return draftAwareCreateContentVersionAdapter;
|
|
7453
|
-
},
|
|
7476
|
+
getDraftAwareCreateContentVersionAdapter: configurableCreateContentVersion.getAdapter,
|
|
7477
|
+
setDraftAwareCreateContentVersionAdapter: configurableCreateContentVersion.setAdapter,
|
|
7454
7478
|
...configurationForOneStoreEnabledAdapters,
|
|
7479
|
+
...configurationForEnvironmentFactoryOverrides,
|
|
7455
7480
|
};
|
|
7481
|
+
let configurableGraphQLAdapter = new Configurable();
|
|
7482
|
+
let configurableGraphQLBatchAdapter = new Configurable();
|
|
7456
7483
|
/**
|
|
7457
7484
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
7458
7485
|
* Configuration for GraphQL adapters only.
|
|
7459
7486
|
*/
|
|
7460
7487
|
const configurationForGraphQLAdapters = {
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
return draftAwareGraphQLAdapter;
|
|
7466
|
-
},
|
|
7467
|
-
setEnvironmentAwareGraphQLBatchAdapter: function (adapter) {
|
|
7468
|
-
environmentAwareGraphQLBatchAdapter = adapter;
|
|
7469
|
-
},
|
|
7470
|
-
getEnvironmentAwareGraphQLBatchAdapter: function () {
|
|
7471
|
-
return environmentAwareGraphQLBatchAdapter;
|
|
7472
|
-
},
|
|
7488
|
+
getDraftAwareGraphQLAdapter: configurableGraphQLAdapter.getAdapter,
|
|
7489
|
+
setDraftAwareGraphQLAdapter: configurableGraphQLAdapter.setAdapter,
|
|
7490
|
+
getEnvironmentAwareGraphQLBatchAdapter: configurableGraphQLBatchAdapter.getAdapter,
|
|
7491
|
+
setEnvironmentAwareGraphQLBatchAdapter: configurableGraphQLBatchAdapter.setAdapter,
|
|
7473
7492
|
};
|
|
7474
7493
|
const registrations = new Set();
|
|
7475
7494
|
/**
|
|
@@ -10304,8 +10323,8 @@ const MAIN_RECORD_TYPE_ID = '012000000000000AAA';
|
|
|
10304
10323
|
*
|
|
10305
10324
|
* Generated
|
|
10306
10325
|
* from: ui-services-private-object-allow-list.yaml
|
|
10307
|
-
* API version:
|
|
10308
|
-
* at:
|
|
10326
|
+
* API version: 63
|
|
10327
|
+
* at: Wed, 21 Aug 2024 19:39:55 GMT
|
|
10309
10328
|
*/
|
|
10310
10329
|
const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
10311
10330
|
'AIPredictionScore',
|
|
@@ -10527,6 +10546,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10527
10546
|
'BlockchainField',
|
|
10528
10547
|
'BlockchainMember',
|
|
10529
10548
|
'BoardCertification',
|
|
10549
|
+
'BotDefinition',
|
|
10530
10550
|
'BranchUnit',
|
|
10531
10551
|
'BranchUnitBusinessMember',
|
|
10532
10552
|
'BranchUnitCustomer',
|
|
@@ -10564,6 +10584,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10564
10584
|
'CalculationProcedureVariable',
|
|
10565
10585
|
'CalculationProcedureVersion',
|
|
10566
10586
|
'Campaign',
|
|
10587
|
+
'CampaignInfluence',
|
|
10567
10588
|
'CampaignInsight',
|
|
10568
10589
|
'CampaignMember',
|
|
10569
10590
|
'CampaignMemberStatus',
|
|
@@ -10802,6 +10823,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10802
10823
|
'ElectricityEmssnFctrSet',
|
|
10803
10824
|
'ElectronicMediaGroup',
|
|
10804
10825
|
'EmailContent',
|
|
10826
|
+
'EmailMessage',
|
|
10805
10827
|
'EmailMessageRelation',
|
|
10806
10828
|
'EmissionsActivity',
|
|
10807
10829
|
'EmissionsForecastFact',
|
|
@@ -10820,8 +10842,10 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10820
10842
|
'EmssnRdctnCommitment',
|
|
10821
10843
|
'EmssnReductionTarget',
|
|
10822
10844
|
'EnablementProgram',
|
|
10845
|
+
'EnblPgmTaskMeasureProgress',
|
|
10823
10846
|
'EnblProgramSection',
|
|
10824
10847
|
'EnblProgramTaskDefinition',
|
|
10848
|
+
'EnblProgramTaskMeasure',
|
|
10825
10849
|
'EnblProgramTaskProgress',
|
|
10826
10850
|
'EngagementAttendee',
|
|
10827
10851
|
'EngagementChannelType',
|
|
@@ -10838,6 +10862,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10838
10862
|
'EntityArchivingException',
|
|
10839
10863
|
'EntityArchivingJob',
|
|
10840
10864
|
'EntityArchivingSetup',
|
|
10865
|
+
'EntityDefinition',
|
|
10841
10866
|
'EntityMilestone',
|
|
10842
10867
|
'EnvironmentHubMember',
|
|
10843
10868
|
'EnvironmentalRisk',
|
|
@@ -10917,6 +10942,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10917
10942
|
'GroupCensusMemberPlan',
|
|
10918
10943
|
'GroupClass',
|
|
10919
10944
|
'GroupClassContribution',
|
|
10945
|
+
'GroupMember',
|
|
10920
10946
|
'GuestBuyerProfile',
|
|
10921
10947
|
'HealthCareDiagnosis',
|
|
10922
10948
|
'HealthCareProcedure',
|
|
@@ -10967,6 +10993,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10967
10993
|
'InsurancePolicySurcharge',
|
|
10968
10994
|
'InsurancePolicyTransaction',
|
|
10969
10995
|
'InsuranceProfile',
|
|
10996
|
+
'IntegrationProviderDef',
|
|
10970
10997
|
'Interaction',
|
|
10971
10998
|
'InteractionAttendee',
|
|
10972
10999
|
'InteractionParticipant',
|
|
@@ -10985,7 +11012,6 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
10985
11012
|
'InvoiceBatchRunRecovery',
|
|
10986
11013
|
'InvoiceLine',
|
|
10987
11014
|
'JobFamily',
|
|
10988
|
-
'JobPosition',
|
|
10989
11015
|
'JobProfile',
|
|
10990
11016
|
'JournalSubType',
|
|
10991
11017
|
'JournalType',
|
|
@@ -11109,6 +11135,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11109
11135
|
'MfgProgramCpntFrcstFact',
|
|
11110
11136
|
'MfgProgramForecastFact',
|
|
11111
11137
|
'MfgProgramVariantFrcstFact',
|
|
11138
|
+
'MilestoneType',
|
|
11112
11139
|
'MktAiPredictiveInsight',
|
|
11113
11140
|
'MktCalculatedInsight',
|
|
11114
11141
|
'MktDataTransform',
|
|
@@ -11181,6 +11208,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11181
11208
|
'OtherComponentTask',
|
|
11182
11209
|
'OtherEmssnFctrSet',
|
|
11183
11210
|
'OtherEmssnFctrSetItem',
|
|
11211
|
+
'ParticipantRole',
|
|
11184
11212
|
'Partner',
|
|
11185
11213
|
'PartnerFundAllocation',
|
|
11186
11214
|
'PartnerFundClaim',
|
|
@@ -11204,6 +11232,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11204
11232
|
'PatientMedicalProcedure',
|
|
11205
11233
|
'PatientMedicalProcedureDetail',
|
|
11206
11234
|
'PatientMedicationDosage',
|
|
11235
|
+
'Payment',
|
|
11207
11236
|
'PaymentAuthAdjustment',
|
|
11208
11237
|
'PaymentBatchRun',
|
|
11209
11238
|
'PaymentBatchRunCriteria',
|
|
@@ -11292,7 +11321,6 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11292
11321
|
'ProductCategoryProduct',
|
|
11293
11322
|
'ProductCategoryServiceProcess',
|
|
11294
11323
|
'ProductComponentGroup',
|
|
11295
|
-
'ProductConfigurationalRule',
|
|
11296
11324
|
'ProductConsumed',
|
|
11297
11325
|
'ProductConsumedState',
|
|
11298
11326
|
'ProductConsumptionSchedule',
|
|
@@ -11311,7 +11339,6 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11311
11339
|
'ProductRelComponentOverride',
|
|
11312
11340
|
'ProductRelatedComponent',
|
|
11313
11341
|
'ProductRelatedMaterial',
|
|
11314
|
-
'ProductRelatedServiceProcess',
|
|
11315
11342
|
'ProductRelationshipType',
|
|
11316
11343
|
'ProductRequest',
|
|
11317
11344
|
'ProductRequestLineItem',
|
|
@@ -11324,6 +11351,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11324
11351
|
'ProductTransfer',
|
|
11325
11352
|
'ProductTransferState',
|
|
11326
11353
|
'ProductWarrantyTerm',
|
|
11354
|
+
'Profile',
|
|
11327
11355
|
'ProfileSkill',
|
|
11328
11356
|
'ProfileSkillEndorsement',
|
|
11329
11357
|
'ProfileSkillUser',
|
|
@@ -11528,6 +11556,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11528
11556
|
'StnryAssetWtrFtprntItm',
|
|
11529
11557
|
'StoreActionPlanTemplate',
|
|
11530
11558
|
'StoreAssortment',
|
|
11559
|
+
'StoreIntegratedService',
|
|
11531
11560
|
'StoreProduct',
|
|
11532
11561
|
'StreamingChannel',
|
|
11533
11562
|
'SuccessTeam',
|
|
@@ -11541,6 +11570,7 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11541
11570
|
'SurveyQuestionResponse',
|
|
11542
11571
|
'SurveyResponse',
|
|
11543
11572
|
'SurveySubject',
|
|
11573
|
+
'SurveyVersion',
|
|
11544
11574
|
'SustainabilityCntrLine',
|
|
11545
11575
|
'SustainabilityCredit',
|
|
11546
11576
|
'SustainabilityPurchase',
|
|
@@ -11566,6 +11596,8 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11566
11596
|
'TaxTreatment',
|
|
11567
11597
|
'Tenant',
|
|
11568
11598
|
'TenantParameterMap',
|
|
11599
|
+
'TenantSecurityNotificationRule',
|
|
11600
|
+
'Territory2',
|
|
11569
11601
|
'ThreatDetectionFeedback',
|
|
11570
11602
|
'TimeSheet',
|
|
11571
11603
|
'TimeSheetEntry',
|
|
@@ -11592,11 +11624,14 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11592
11624
|
'UsageImpactGroupPgmMeasure',
|
|
11593
11625
|
'UsageImpactGroupVersion',
|
|
11594
11626
|
'User',
|
|
11627
|
+
'UserDefinedLabel',
|
|
11628
|
+
'UserDefinedLabelAssignment',
|
|
11595
11629
|
'UserEsignVendorIdentifier',
|
|
11596
11630
|
'UserFinancialAuthority',
|
|
11597
11631
|
'UserLicenseDefinition',
|
|
11598
11632
|
'UserLocationAssignment',
|
|
11599
11633
|
'UserRole',
|
|
11634
|
+
'UserTerritory2AssocLog',
|
|
11600
11635
|
'Vehicle',
|
|
11601
11636
|
'VehicleAssetCrbnFtprnt',
|
|
11602
11637
|
'VehicleAssetEmssnSrc',
|
|
@@ -11661,80 +11696,168 @@ const UIAPI_SUPPORTED_ENTITY_API_NAMES = new Set([
|
|
|
11661
11696
|
*
|
|
11662
11697
|
* Generated
|
|
11663
11698
|
* from: ui-services-private-object-deny-list.yaml
|
|
11664
|
-
* API version:
|
|
11665
|
-
* at:
|
|
11699
|
+
* API version: 63
|
|
11700
|
+
* at: Wed, 21 Aug 2024 19:39:55 GMT
|
|
11666
11701
|
*/
|
|
11667
11702
|
const UIAPI_DENIED_ENTITY_API_NAMES = new Set([
|
|
11668
11703
|
'AIProductOptimizedField',
|
|
11704
|
+
'AITenantProvisionedFeature',
|
|
11669
11705
|
'ASEOrgSyncHealthStats',
|
|
11670
11706
|
'ASEOrgSyncHealthTxns',
|
|
11707
|
+
'AbnExperimentCohortAttrVal',
|
|
11671
11708
|
'ActionableOrchResponseEvent',
|
|
11672
11709
|
'ActionableOrchSourceEvent',
|
|
11673
11710
|
'ActnblListKeyPrfmIndAsgnt',
|
|
11674
|
-
'
|
|
11675
|
-
'
|
|
11711
|
+
'AiMetadataSyncStatus',
|
|
11712
|
+
'AnalyticsChangeEventLog',
|
|
11713
|
+
'AnalyticsDownloadEventLog',
|
|
11714
|
+
'AnalyticsGenerativeMetadata',
|
|
11715
|
+
'AnalyticsInteractEventLog',
|
|
11716
|
+
'AnalyticsPerfEventLog',
|
|
11717
|
+
'AnalyticsTaskStatusEvent',
|
|
11718
|
+
'ApexCalloutEventLog',
|
|
11719
|
+
'ApexExecutionEventLog',
|
|
11720
|
+
'ApexExtlCalloutEventLog',
|
|
11721
|
+
'ApexRestApiEventLog',
|
|
11722
|
+
'ApexSoapApiEventLog',
|
|
11723
|
+
'ApexTriggerEventLog',
|
|
11724
|
+
'ApexUnexpectedExcpEventLog',
|
|
11725
|
+
'ApiTotalUsageEventLog',
|
|
11726
|
+
'ApplnFormUsageTracking',
|
|
11676
11727
|
'AssetThresholdUpdateEvent',
|
|
11728
|
+
'AsyncReportRunEventLog',
|
|
11729
|
+
'AuraRequestEventLog',
|
|
11730
|
+
'BulkApi2EventLog',
|
|
11677
11731
|
'BulkApi2JobResultsEvent',
|
|
11678
11732
|
'BulkApi2JobStatusEvent',
|
|
11733
|
+
'BulkApiEventLog',
|
|
11679
11734
|
'BulkMessage',
|
|
11735
|
+
'CapabilityUserPreference',
|
|
11736
|
+
'CaseFileProcessDependency',
|
|
11737
|
+
'CaseFileProcessExecution',
|
|
11738
|
+
'CatalogListing',
|
|
11739
|
+
'CheckoutResetConfig',
|
|
11680
11740
|
'CommerceJobStatus',
|
|
11741
|
+
'CommerceSearchIndexError',
|
|
11681
11742
|
'CommerceSearchResultsRule',
|
|
11682
11743
|
'CompiledProduct',
|
|
11744
|
+
'ConcurApexLimitEventLog',
|
|
11745
|
+
'ConsentUnsubscribeAllEvent',
|
|
11683
11746
|
'ConsentUnsubscribeEvent',
|
|
11684
11747
|
'ContentTaxonomyModel',
|
|
11748
|
+
'ContentTransferEventLog',
|
|
11685
11749
|
'ContextPersistenceEvent',
|
|
11686
11750
|
'ContractCreationEvent',
|
|
11687
11751
|
'ConvIntelligenceVoiceCall',
|
|
11688
11752
|
'ConvMessageSendRequest',
|
|
11689
11753
|
'ConversationInsightEvent',
|
|
11690
11754
|
'ConversationTranscriptSendRequest',
|
|
11755
|
+
'CuratedExpJobEvent',
|
|
11756
|
+
'CuratedExpPlanEvent',
|
|
11757
|
+
'DTRecordsetReplica',
|
|
11691
11758
|
'DataActionJobStatusEvent',
|
|
11692
11759
|
'DataCloudCurrencyConfig',
|
|
11693
11760
|
'DataCloudFiscalCalendar',
|
|
11761
|
+
'DataKitDeployEvent',
|
|
11694
11762
|
'DataMultiOrgServiceEvent',
|
|
11695
|
-
'
|
|
11763
|
+
'DataShellTntUpgradeEvent',
|
|
11764
|
+
'DcsnTblSourceObjectRecord',
|
|
11765
|
+
'DecisionTableDataset',
|
|
11696
11766
|
'DecisionTableRecordset',
|
|
11767
|
+
'DecisionTblSrcChangedEvent',
|
|
11697
11768
|
'DiscoveryFrwrkSampleTemplate',
|
|
11698
11769
|
'DiscoveryFrwrkTemplateMember',
|
|
11770
|
+
'DocGenBtchStsChgEvent',
|
|
11771
|
+
'DocGenProcStsChgEvent',
|
|
11699
11772
|
'DocumentExtReviewerConsent',
|
|
11700
11773
|
'EmailBounceEvent',
|
|
11774
|
+
'EnblMlstnProgQryTmotEvent',
|
|
11775
|
+
'EngagementSignalCmpndMetric',
|
|
11776
|
+
'EngagementSignalDistinct',
|
|
11777
|
+
'EngagementSignalFilter',
|
|
11778
|
+
'EngagementSignalFltrGrp',
|
|
11779
|
+
'EngagementSignalFltrVal',
|
|
11780
|
+
'EngagementSignalJoinDim',
|
|
11781
|
+
'EngagementSignalMetric',
|
|
11782
|
+
'ExtKAImportError',
|
|
11783
|
+
'ExtKAImportResult',
|
|
11784
|
+
'ExtKnowledgeIngestionRun',
|
|
11701
11785
|
'ExtKnowledgeIngestionStatus',
|
|
11702
11786
|
'ExtKnowledgeIngestionTask',
|
|
11703
11787
|
'ExtKnowledgeOrgStatus',
|
|
11788
|
+
'ExtKnowledgePartnerOrg',
|
|
11704
11789
|
'ExtKnowledgeXDSConnector',
|
|
11790
|
+
'ExternalDataChgEvent',
|
|
11705
11791
|
'ExternalDocRefMapping',
|
|
11706
11792
|
'ExternalEncryptionRootKey',
|
|
11793
|
+
'ExternalTrigger',
|
|
11794
|
+
'ExternalTriggerData',
|
|
11795
|
+
'ExternalTriggerSubscriber',
|
|
11796
|
+
'ExtlRecShrCnctAccnt',
|
|
11797
|
+
'ExtlRecShrEvent',
|
|
11798
|
+
'ExtlRecShrProcessEvent',
|
|
11799
|
+
'ExtlRecShrRecordMap',
|
|
11800
|
+
'ExtlRecShrResultEvent',
|
|
11707
11801
|
'FirstBillPaymentSetupEvent',
|
|
11802
|
+
'FlowAutoSaveStsChngEvent',
|
|
11803
|
+
'FlowAutosaveInterviewStatus',
|
|
11708
11804
|
'FlowDefDataActionMapping',
|
|
11805
|
+
'FlowNavMetricEventLog',
|
|
11709
11806
|
'GenericHammerResult',
|
|
11710
|
-
'
|
|
11807
|
+
'GuestUserAnomalyEvent',
|
|
11808
|
+
'InsufficientAccessEventLog',
|
|
11809
|
+
'InsuranceAsyncBulkRecordDetail',
|
|
11711
11810
|
'InsuranceRatingInput',
|
|
11712
11811
|
'InsuranceRatingOutput',
|
|
11713
11812
|
'InsuranceRatingRequestEvent',
|
|
11714
11813
|
'InsuranceRatingRequestItem',
|
|
11715
11814
|
'InterviewItemWaitCondition',
|
|
11716
|
-
'
|
|
11815
|
+
'KnowledgeArticleEventLog',
|
|
11816
|
+
'LightningLoggerEventLog',
|
|
11817
|
+
'LightningPageViewEventLog',
|
|
11818
|
+
'LoginAsEventLog',
|
|
11819
|
+
'LoginEventLog',
|
|
11820
|
+
'MLModelDataAlert',
|
|
11717
11821
|
'ManagedContentJobBody',
|
|
11718
11822
|
'ManagedContentOffCoreLocation',
|
|
11719
11823
|
'ManagedContentSpaceFolderShare',
|
|
11720
11824
|
'MerchantAccountEvent',
|
|
11721
11825
|
'MessagingChannelUpdateEvent',
|
|
11826
|
+
'MetadataApiOpEventLog',
|
|
11722
11827
|
'MetricsDeletionJobStatus',
|
|
11723
11828
|
'MktMLModelPartitionRun',
|
|
11724
11829
|
'MktMLModelSetupRun',
|
|
11725
11830
|
'MktMLSetupRunChgEvent',
|
|
11726
11831
|
'MngContentFormActionEvent',
|
|
11832
|
+
'ObjectDataImportResult',
|
|
11727
11833
|
'ObjectUserTerritory2View',
|
|
11834
|
+
'OmniTrackingEvent',
|
|
11835
|
+
'OrderItemAssetizationState',
|
|
11836
|
+
'OrgDayZeroStatus',
|
|
11728
11837
|
'OrgSharingEvent',
|
|
11838
|
+
'OvenSdbExperimentRequest',
|
|
11839
|
+
'PackageInstallEventLog',
|
|
11840
|
+
'PackagePropUpdateJob',
|
|
11841
|
+
'PackagePropUpdateRequest',
|
|
11842
|
+
'PackageSubscriberOrgInfo',
|
|
11729
11843
|
'PaymentIntentEvent',
|
|
11730
11844
|
'PaymentLinkEvent',
|
|
11845
|
+
'PersnlDecisionAttrValue',
|
|
11846
|
+
'PersonalizationAttribute',
|
|
11731
11847
|
'PlatformEventUsage',
|
|
11848
|
+
'PriceBookPriceGuidance',
|
|
11732
11849
|
'PriceSheetData',
|
|
11733
11850
|
'PricingDecisionHashMap',
|
|
11734
11851
|
'PricingLookupSyncStatus',
|
|
11852
|
+
'PricingWaterfallLog',
|
|
11735
11853
|
'PushUpgradeCustomization',
|
|
11736
11854
|
'QuoteSaveEvent',
|
|
11855
|
+
'RebatePayoutSnapshot',
|
|
11856
|
+
'RecommenderStatusChgEvent',
|
|
11737
11857
|
'RelationshipGraphView',
|
|
11858
|
+
'ReminderRecord',
|
|
11859
|
+
'ReportEventLog',
|
|
11860
|
+
'RestApiEventLog',
|
|
11738
11861
|
'Rule',
|
|
11739
11862
|
'RuleAction',
|
|
11740
11863
|
'RuleActionParameter',
|
|
@@ -11743,26 +11866,46 @@ const UIAPI_DENIED_ENTITY_API_NAMES = new Set([
|
|
|
11743
11866
|
'RuleExpression',
|
|
11744
11867
|
'RuleExpressionTerm',
|
|
11745
11868
|
'RuleFilterCriteria',
|
|
11746
|
-
'
|
|
11869
|
+
'RuleLibraryContextTag',
|
|
11870
|
+
'RuleLibraryVersionSnapshot',
|
|
11747
11871
|
'RuleReferenceVariable',
|
|
11748
11872
|
'RuleValue',
|
|
11749
11873
|
'RuleVersion',
|
|
11874
|
+
'RuleVersionSnapshot',
|
|
11750
11875
|
'Ruleset',
|
|
11751
|
-
'RulesetDependency',
|
|
11752
11876
|
'RulesetVersion',
|
|
11877
|
+
'RulesetVersionSnapshot',
|
|
11878
|
+
'RuntimeCatalogSnapshot',
|
|
11879
|
+
'RuntimeCatalogSnapshotIndex',
|
|
11753
11880
|
'SalesTrxnItemPrcSht',
|
|
11754
11881
|
'SalesTrxnItemPrcShtShape',
|
|
11882
|
+
'SalesforcePayment',
|
|
11883
|
+
'SandboxStatusEventLog',
|
|
11755
11884
|
'SavedPaymentMethodEvent',
|
|
11756
11885
|
'ScheduledReminder',
|
|
11757
11886
|
'SearchBBRule',
|
|
11758
11887
|
'SearchBBRuleCondition',
|
|
11888
|
+
'SearchClickEventLog',
|
|
11889
|
+
'SearchEventLog',
|
|
11890
|
+
'SearchIndexFieldConfig',
|
|
11891
|
+
'SearchIndexObjectConfig',
|
|
11892
|
+
'SearchRecencyIndexingJob',
|
|
11759
11893
|
'ServiceAppointmentEvent',
|
|
11894
|
+
'ServiceAppointmentShift',
|
|
11760
11895
|
'SiqOrgMigrationStatus',
|
|
11896
|
+
'SiteEventLog',
|
|
11897
|
+
'SoapApiEventLog',
|
|
11761
11898
|
'StatsInvalidationEvent',
|
|
11762
11899
|
'TenantBillingUsageEvent',
|
|
11900
|
+
'TransactionSecurityEventLog',
|
|
11901
|
+
'UnifiedAnalyticsMonEvent',
|
|
11902
|
+
'UnitOfMeasureUnit',
|
|
11903
|
+
'UriEventLog',
|
|
11904
|
+
'VisualforceRequestEventLog',
|
|
11763
11905
|
'WebPushMessageSubscription',
|
|
11764
11906
|
'WebStoreCMS',
|
|
11765
11907
|
'WebStoreUserCreatedEvent',
|
|
11908
|
+
'YourAccountDataEvent',
|
|
11766
11909
|
]);
|
|
11767
11910
|
|
|
11768
11911
|
const MAX_RECORD_DEPTH = 5;
|
|
@@ -65189,6 +65332,12 @@ function createDispatchResourceRequestContext(requestContext) {
|
|
|
65189
65332
|
}
|
|
65190
65333
|
return dispatchOptions;
|
|
65191
65334
|
}
|
|
65335
|
+
|
|
65336
|
+
({
|
|
65337
|
+
...configurationForRestAdapters,
|
|
65338
|
+
...configurationForGraphQLAdapters,
|
|
65339
|
+
...configurationForOneStoreEnabledAdapters,
|
|
65340
|
+
});
|
|
65192
65341
|
ensureRegisteredOnce({
|
|
65193
65342
|
id: '@salesforce/lds-adapters-uiapi',
|
|
65194
65343
|
configuration: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.314.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "UIAPI adapters with LWC bindings",
|
|
6
6
|
"module": "dist/main.js",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"clean": "rm -rf dist src/generated"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
34
|
+
"@salesforce/lds-adapters-uiapi": "^1.314.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@luvio/lwc-luvio": "0.156.4",
|
|
38
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.314.0"
|
|
39
39
|
}
|
|
40
40
|
}
|