@salesforce/lds-network-aura 1.286.0 → 1.287.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 +13 -1
- package/package.json +6 -6
package/dist/ldsNetwork.js
CHANGED
|
@@ -1102,9 +1102,13 @@ const BUSINESS_OBJECTIVES_RECOMMENDATIONS_PATH = new RegExp(`${COMMERCE_GOALS_RE
|
|
|
1102
1102
|
const CMS_CONTENT_TAXONOMY_TERMS_PATH = new RegExp(`${CMS_BASE_URI}/contents/([A-Z0-9_]){15,28}/taxonomy-terms`, 'i');
|
|
1103
1103
|
const POST_TRIGGER_BENEFIT_SESSION_GENERATION_BASE_URI = new RegExp(`${PROGRAM_MGMT_BASE_URI}/benefit-schedules/([A-Z0-9]{15,18})/sessions$`, 'i');
|
|
1104
1104
|
const INSURANCE_RATING = new RegExp(`${INSURANCE_BASE_URI}/product-rating`, 'i');
|
|
1105
|
+
const INSURANCE_ENDORSE_POLICY = new RegExp(`${INSURANCE_BASE_URI}/policies/([A-Za-z0-9_]){1,255}/endorse/`, 'i');
|
|
1106
|
+
const INSURANCE_ISSUE = new RegExp(`${INSURANCE_BASE_URI}/policies`, 'i');
|
|
1105
1107
|
const insurance = [
|
|
1106
1108
|
generateAdapter('post', INSURANCE_BASE_URI, INSURANCE_RATING, 'IInsuranceConnectFeatureController.insuranceProductRatingPost', 'ProductRatingPostInput'),
|
|
1107
1109
|
generateAdapter('patch', INSURANCE_BASE_URI, INSURANCE_RATING, 'IInsuranceConnectFeatureController.insuranceProductRatingPatch', 'productRatingPatchInput'),
|
|
1110
|
+
generateAdapter('post', INSURANCE_BASE_URI, INSURANCE_ENDORSE_POLICY, 'IInsuranceConnectFeatureController.insuranceEndorsePolicyPost', 'EndorsePolicyInput'),
|
|
1111
|
+
generateAdapter('post', INSURANCE_BASE_URI, INSURANCE_ISSUE, 'IInsuranceConnectFeatureController.insuranceIssuePolicyPost', 'IssuePolicyInput'),
|
|
1108
1112
|
];
|
|
1109
1113
|
const SHARING_PUBLIC_GROUP_SUMMARY_PATH = new RegExp(`${SHARING_BASE_URI}/publicGroupsSummary`, 'i');
|
|
1110
1114
|
const USER_SUMMARY_SHARING_PATH = new RegExp(`${SHARING_BASE_URI}/groups-for-user/([A-Z0-9_]){15,18}/([A-Za-z]){5,50}`, 'i');
|
|
@@ -1149,6 +1153,13 @@ const OMNI_DESIGNER_FETCH_DESIGNER_CUSTOMIZATIONS = new RegExp(`${OMNI_DESIGNER_
|
|
|
1149
1153
|
const OMNI_DESIGNER_FETCH_DYNAMIC_ELEMENTS_RESOURCE = new RegExp(`${OMNI_DESIGNER_BASE_URI}/os/fetch-dynamic-elements`, 'i');
|
|
1150
1154
|
const OMNI_DESIGNER_FETCH_NON_OMNISCRIPT_LWC_RESOURCE = new RegExp(`${OMNI_DESIGNER_BASE_URI}/os/non-omniscript-lwc`, 'i');
|
|
1151
1155
|
const OMNI_DESIGNER_UPLOAD_DOCUMENT = new RegExp(`${OMNI_DESIGNER_BASE_URI}/os/document`, 'i');
|
|
1156
|
+
const UNIFIED_ANALYTICS_DASHBOARD_COLLECTION_PATH = new RegExp(`${BASE_URI}/unified-analytics/dashboards$`, 'i');
|
|
1157
|
+
const UNIFIED_ANALYTICS_DASHBOARD_BY_NAME = new RegExp(`${BASE_URI}/unified-analytics/dashboards/([A-Za-z0-9_]+){3,50}$`, 'i');
|
|
1158
|
+
const unifiedAnalytics = [
|
|
1159
|
+
generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_COLLECTION_PATH, 'AnalyticsController.getDashboards'),
|
|
1160
|
+
generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_BY_NAME, 'AnalyticsController.getDashboard'),
|
|
1161
|
+
generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_COLLECTION_PATH, 'AnalyticsController.createDashboard', 'dashboard'),
|
|
1162
|
+
];
|
|
1152
1163
|
const EVF_SDK_GET_EVENT_TYPES_PATH = new RegExp(`${EVF_SDK_BASE_URI}/event-types`, 'i');
|
|
1153
1164
|
const EVF_SDK_POST_EVENT_PATH = new RegExp(`${EVF_SDK_BASE_URI}/event$`, 'i');
|
|
1154
1165
|
const OMNI_DESIGNER_GET_INTEGRATION_PROCEDURE_DATA = new RegExp(`${OMNI_DESIGNER_BASE_URI}/record/([A-Z0-9]){15,18}`, 'i');
|
|
@@ -2523,6 +2534,7 @@ registerApiFamilyRoutes(salesforceJourney);
|
|
|
2523
2534
|
registerApiFamilyRoutes(personalizationService);
|
|
2524
2535
|
registerApiFamilyRoutes(industriesRecordAggregation);
|
|
2525
2536
|
registerApiFamilyRoutes(integrationFulfillment);
|
|
2537
|
+
registerApiFamilyRoutes(unifiedAnalytics);
|
|
2526
2538
|
registerApiFamilyRoutes(evfSdk);
|
|
2527
2539
|
registerApiFamilyRoutes(stageManagement);
|
|
2528
2540
|
|
|
@@ -4344,4 +4356,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
4344
4356
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
4345
4357
|
|
|
4346
4358
|
export { main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
4347
|
-
// version: 1.
|
|
4359
|
+
// version: 1.287.0-f2fda24df
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.287.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"@luvio/engine": "0.154.16"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-aura-storage": "^1.
|
|
42
|
-
"@salesforce/lds-environment-settings": "^1.
|
|
43
|
-
"@salesforce/lds-instrumentation": "^1.
|
|
44
|
-
"@salesforce/lds-network-adapter": "^1.
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.287.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.287.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.287.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.287.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.287.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|