@salesforce/lds-network-aura 1.218.0 → 1.219.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 +15 -15
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -336,22 +336,22 @@ function executeSoqlQueryPost(resourceRequest) {
|
|
|
336
336
|
}
|
|
337
337
|
router.post((path) => path.startsWith(`${WAVE_BASE_URI}/soql`), executeSoqlQueryPost);
|
|
338
338
|
|
|
339
|
-
function
|
|
339
|
+
function executeDataGraphQueryPost(resourceRequest) {
|
|
340
340
|
const { body } = resourceRequest;
|
|
341
341
|
const params = buildUiApiParams({
|
|
342
342
|
input: body,
|
|
343
343
|
}, resourceRequest);
|
|
344
|
-
return dispatchAction('
|
|
344
|
+
return dispatchAction('CdpDataGraphController.createDataGraph', params, undefined);
|
|
345
345
|
}
|
|
346
|
-
function
|
|
346
|
+
function executeDataGraphRetry(resourceRequest) {
|
|
347
347
|
const { body } = resourceRequest;
|
|
348
348
|
const params = buildUiApiParams({
|
|
349
349
|
input: body,
|
|
350
350
|
}, resourceRequest);
|
|
351
|
-
return dispatchAction('
|
|
351
|
+
return dispatchAction('CdpDataGraphController.retryDataGraph', params, undefined);
|
|
352
352
|
}
|
|
353
|
-
router.post((path) => path.startsWith(`${CDP_BASE_URI}/
|
|
354
|
-
router.put((path) => path.startsWith(`${CDP_BASE_URI}/
|
|
353
|
+
router.post((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs`), executeDataGraphQueryPost);
|
|
354
|
+
router.put((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs/retry`), executeDataGraphRetry);
|
|
355
355
|
|
|
356
356
|
const LWR_APEX_BASE_URI = '/lwr/apex/v59.0';
|
|
357
357
|
const ApexController = 'ApexActionController.execute';
|
|
@@ -855,16 +855,16 @@ const FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_
|
|
|
855
855
|
const FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/commitment/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
856
856
|
const FUNDRAISING_GIFT_TRANSACTION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/gift-commitments/[a-zA-Z0-9]{15,18}/gift-transactions$`, 'i');
|
|
857
857
|
const FUNDRAISING_TRANSACTION_LINKED_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/transaction/[a-zA-Z0-9]{15,18}/designations$`, 'i');
|
|
858
|
-
const
|
|
859
|
-
const
|
|
860
|
-
const
|
|
858
|
+
const CDP_DATA_GRAPH_PATH = new RegExp(`${CDP_BASE_URI}/data-graphs`, 'i');
|
|
859
|
+
const GET_CDP_DATA_GRAPH_PATH = new RegExp(`${CDP_BASE_URI}/data-graphs/([A-Z0-9_]){1,80}$`, 'i');
|
|
860
|
+
const DELETE_CDP_DATA_GRAPH_PATH = new RegExp(`${CDP_BASE_URI}/data-graphs/([A-Z0-9_]){1,80}$`, 'i');
|
|
861
861
|
const KNOWLEDGE_ARTICLE_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/category-network/9cn([a-zA-Z0-9]){12,15}/knowledge-article`, 'i');
|
|
862
862
|
const CATALOG_ITEM_FOR_COMMUNITY_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/category-network/9cn([a-zA-Z0-9]){12,15}/catalog-item`, 'i');
|
|
863
863
|
const CATALOG_ITEM_PATH = new RegExp(`${CONNECT_BASE_URI}/category-network/9cn([a-zA-Z0-9]){12,15}/catalog-item`, 'i');
|
|
864
864
|
const CATEGORY_NETWORKS_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/data-category/category-network`, 'i');
|
|
865
865
|
const CATALOG_ITEM_BY_CATEGORY_PATH = new RegExp(`${CONNECT_BASE_URI}/data-category/category-group/([a-zA-Z0-9_]){0,80}/category/([a-zA-Z0-9_]){0,80}/catalog-item`, 'i');
|
|
866
866
|
const CATEGORY_GROUP_PATH = new RegExp(`${CONNECT_BASE_URI}/data-category/category-group`);
|
|
867
|
-
const
|
|
867
|
+
const PUT_CDP_DATA_GRAPH_PATH = new RegExp(`${CDP_BASE_URI}/data-graphs/retry`, 'i');
|
|
868
868
|
const AUTOMOTIVE_INV_MGMT_PATH = new RegExp(`${CONNECT_BASE_URI}/inventory-visibility/actions`, 'i');
|
|
869
869
|
const DOCGEN_BATCH_DOCGEN_PERFORM_ACTION_PATH = new RegExp(`${DOCGEN_BASE_URI}/doc-generation-batch-process/([A-Z0-9]){1,18}/([a-zA-Z0-9_]){0,80}$`, 'i');
|
|
870
870
|
const CPQ_INSTANT_PRICING_PATH = new RegExp(`${INDUSTRIES_BASE_URI}/cpq/quotes/actions/get-instant-price`, 'i');
|
|
@@ -1566,10 +1566,10 @@ const cpq = [
|
|
|
1566
1566
|
generateAdapter('patch', CPQ_BASE_URI, CPQ_PRICE_CART, 'ICpqConnectFeatureController.priceCart'),
|
|
1567
1567
|
];
|
|
1568
1568
|
const cdp = [
|
|
1569
|
-
generateAdapter('delete', CDP_BASE_URI,
|
|
1570
|
-
generateAdapter('get', CDP_BASE_URI,
|
|
1571
|
-
generateAdapter('post', CDP_BASE_URI,
|
|
1572
|
-
generateAdapter('put', CDP_BASE_URI,
|
|
1569
|
+
generateAdapter('delete', CDP_BASE_URI, DELETE_CDP_DATA_GRAPH_PATH, 'CdpDataGraphController.deleteDataGraph'),
|
|
1570
|
+
generateAdapter('get', CDP_BASE_URI, GET_CDP_DATA_GRAPH_PATH, 'CdpDataGraphController.getDataGraph'),
|
|
1571
|
+
generateAdapter('post', CDP_BASE_URI, CDP_DATA_GRAPH_PATH, 'CdpDataGraphController.createDataGraph'),
|
|
1572
|
+
generateAdapter('put', CDP_BASE_URI, PUT_CDP_DATA_GRAPH_PATH, 'CdpDataGraphController.retryDataGraph'),
|
|
1573
1573
|
];
|
|
1574
1574
|
const automotive = [
|
|
1575
1575
|
generateAdapter('post', CONNECT_BASE_URI, AUTOMOTIVE_INV_MGMT_PATH, 'InventoryManagementActionsController.postInventoryManagementAction'),
|
|
@@ -3281,4 +3281,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3281
3281
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3282
3282
|
|
|
3283
3283
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3284
|
-
// version: 1.
|
|
3284
|
+
// version: 1.219.0-e5e550eb7
|