@salesforce/lds-network-aura 1.123.2 → 1.124.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/ldsNetwork.js +6 -1
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -564,6 +564,7 @@ const LEAVE_CALL_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/video-call/le
|
|
|
564
564
|
const TRANSCRIPTION_CALL_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/video-call/transcription`, 'i');
|
|
565
565
|
const VIDEO_PARTICIPANT_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/video-call/participant`, 'i');
|
|
566
566
|
const VIDEO_CALL_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/video-call`, 'i');
|
|
567
|
+
const FEATURE_VALIDATION_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/feature-validation`, 'i');
|
|
567
568
|
const HPI_SCORE_PATH = new RegExp(`${CONNECT_BASE_URI}/health/uhs/actions`, 'i');
|
|
568
569
|
const GET_PATIENT_LIST_SCORE = new RegExp(`${CONNECT_BASE_URI}/health/uhslist/[A-Z0-9_-]`, 'i');
|
|
569
570
|
const GET_PATIENT_SCORE_APEX_PATH = new RegExp(`${CONNECT_BASE_URI}/health/uhsscore/apexinterface/[A-Z0-9_-]`, 'i');
|
|
@@ -1062,6 +1063,9 @@ const videovisits = [
|
|
|
1062
1063
|
generateAdapter('put', CONNECT_BASE_URI, VIDEO_CALL_PATH, 'VideoCallController.updateVideoCall'),
|
|
1063
1064
|
generateAdapter('get', CONNECT_BASE_URI, VIDEO_PARTICIPANT_PATH, 'VideoCallController.getParticipantData'),
|
|
1064
1065
|
];
|
|
1066
|
+
const featurevalidation = [
|
|
1067
|
+
generateAdapter('post', CONNECT_BASE_URI, FEATURE_VALIDATION_PATH, 'FeatureValidationController.featureValidation'),
|
|
1068
|
+
];
|
|
1065
1069
|
const hpiscore = [
|
|
1066
1070
|
{
|
|
1067
1071
|
method: 'get',
|
|
@@ -1281,6 +1285,7 @@ registerApiFamilyRoutes(flowBuilder);
|
|
|
1281
1285
|
registerApiFamilyRoutes(billing);
|
|
1282
1286
|
registerApiFamilyRoutes(marketingIntegration);
|
|
1283
1287
|
registerApiFamilyRoutes(videovisits);
|
|
1288
|
+
registerApiFamilyRoutes(featurevalidation);
|
|
1284
1289
|
registerApiFamilyRoutes(interesttagging);
|
|
1285
1290
|
registerApiFamilyRoutes(identityVerification);
|
|
1286
1291
|
registerApiFamilyRoutes(salesExcellence);
|
|
@@ -2906,4 +2911,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
2906
2911
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
2907
2912
|
|
|
2908
2913
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
2909
|
-
// version: 1.
|
|
2914
|
+
// version: 1.124.0-127a4ea43
|