@salesforce/lds-network-aura 1.139.2 → 1.140.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.
@@ -65,6 +65,7 @@ const EDUCATION_BASE_URI = `${CONNECT_BASE_URI}/education`;
65
65
  const CPQ_BASE_URI = `${CONNECT_BASE_URI}/cpq`;
66
66
  const LIGHTNING_CARDS_BASE_URI = `${CONNECT_BASE_URI}/lightning-cards`;
67
67
  const FUNDRAISING_BASE_URI = `${CONNECT_BASE_URI}/fundraising`;
68
+ const CDP_BASE_URI = `${BASE_URI}/ssot`;
68
69
 
69
70
  function getStatusText(status) {
70
71
  switch (status) {
@@ -759,6 +760,9 @@ const CPQ_PRICE_CART = new RegExp(`${CPQ_BASE_URI}/carts/([A-Za-z0-9]+(-[A-Za-z0
759
760
  const FUNDRAISING_GIFT_COMMITMENT_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/donor/[a-zA-Z0-9]{15,18}/commitment$`, 'i');
760
761
  const FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/campaign/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
761
762
  const FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/commitment/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
763
+ const CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/adg`, 'i');
764
+ const GET_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/adg/([A-Z0-9_]){1,80}$`, 'i');
765
+ const DELETE_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/adg/([A-Z0-9_]){1,80}$`, 'i');
762
766
  const connect = [
763
767
  generateAdapter('get', CONNECT_BASE_URI, NOTIFICATION_SERVICE_CONFIG_PATH, 'NotificationServiceConnectFamilyController.getNotificationServiceConfig'),
764
768
  generateAdapter('post', CONNECT_BASE_URI, AI_ACCELERATOR_RECOMMENDATIONS, 'AIAcceleratorConnectFamilyController.fetchRecommendations'),
@@ -1331,6 +1335,11 @@ const cpq = [
1331
1335
  generateAdapter('delete', CPQ_BASE_URI, CPQ_DELETE_CART_ITEM, 'ICpqConnectFeatureController.deleteCartItem'),
1332
1336
  generateAdapter('patch', CPQ_BASE_URI, CPQ_PRICE_CART, 'ICpqConnectFeatureController.priceCart'),
1333
1337
  ];
1338
+ const cdp = [
1339
+ generateAdapter('delete', CDP_BASE_URI, DELETE_CDP_ADG_PATH, 'CdpApplicationDataGraphController.deleteAdg'),
1340
+ generateAdapter('get', CDP_BASE_URI, GET_CDP_ADG_PATH, 'CdpApplicationDataGraphController.getAdg'),
1341
+ generateAdapter('post', CDP_BASE_URI, CDP_ADG_PATH, 'CdpApplicationDataGraphController.createAdg'),
1342
+ ];
1334
1343
  registerApiFamilyRoutes(updateQuote);
1335
1344
  registerApiFamilyRoutes(connect);
1336
1345
  registerApiFamilyRoutes(connectInternal);
@@ -1380,6 +1389,7 @@ registerApiFamilyRoutes(automationRules);
1380
1389
  registerApiFamilyRoutes(fundraising);
1381
1390
  registerApiFamilyRoutes(auditTrailExport);
1382
1391
  registerApiFamilyRoutes(cpq);
1392
+ registerApiFamilyRoutes(cdp);
1383
1393
 
1384
1394
  const UI_API_BASE_URI$1 = `${BASE_URI}/ui-api`;
1385
1395
  const ACTION_CONFIG = {
@@ -2974,4 +2984,4 @@ function auraNetworkAdapter(resourceRequest) {
2974
2984
  var main = platformNetworkAdapter(auraNetworkAdapter);
2975
2985
 
2976
2986
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
2977
- // version: 1.139.2-3a6e84c50
2987
+ // version: 1.140.0-a9e378a04
@@ -43,3 +43,4 @@ export declare const EDUCATION_BASE_URI: string;
43
43
  export declare const CPQ_BASE_URI: string;
44
44
  export declare const LIGHTNING_CARDS_BASE_URI: string;
45
45
  export declare const FUNDRAISING_BASE_URI: string;
46
+ export declare const CDP_BASE_URI: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.139.2",
3
+ "version": "1.140.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",