@salesforce/lds-network-aura 1.217.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 +17 -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';
|
|
@@ -635,6 +635,7 @@ const ACTIONABLE_LIST_GET_ACTIONABLE_LIST_MEMBERS_PATH = new RegExp(`${CONNECT_B
|
|
|
635
635
|
const UPSERT_ACTIONABLE_LIST_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list$`, 'i');
|
|
636
636
|
const ACTIONABLE_LIST_DATASET_INFO_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list-definition/rows$`, 'i');
|
|
637
637
|
const UPSERT_AL_DATASET_COLUMN_USER_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list-dataset-column-user-assignment$`, 'i');
|
|
638
|
+
const UPSERT_AL_REFRESH_COUNT_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list-refresh-count$`, 'i');
|
|
638
639
|
const CLM_CONTRACT_URI_PATH = new RegExp(`${CLM_BASE_URI}/contract/([A-Z0-9]){15,18}/contract-document-version$`, 'i');
|
|
639
640
|
const CLM_GET_DOCUMENT_URI_PATH = new RegExp(`${CLM_BASE_URI}/document-template$`, 'i');
|
|
640
641
|
const CLM_UPDATE_DOCUMENT_URI_PATH = new RegExp(`${CLM_BASE_URI}/contract-document-version/([A-Z0-9]){1,18}$`, 'i');
|
|
@@ -854,16 +855,16 @@ const FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_
|
|
|
854
855
|
const FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/commitment/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
855
856
|
const FUNDRAISING_GIFT_TRANSACTION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/gift-commitments/[a-zA-Z0-9]{15,18}/gift-transactions$`, 'i');
|
|
856
857
|
const FUNDRAISING_TRANSACTION_LINKED_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/transaction/[a-zA-Z0-9]{15,18}/designations$`, 'i');
|
|
857
|
-
const
|
|
858
|
-
const
|
|
859
|
-
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');
|
|
860
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');
|
|
861
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');
|
|
862
863
|
const CATALOG_ITEM_PATH = new RegExp(`${CONNECT_BASE_URI}/category-network/9cn([a-zA-Z0-9]){12,15}/catalog-item`, 'i');
|
|
863
864
|
const CATEGORY_NETWORKS_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/data-category/category-network`, 'i');
|
|
864
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');
|
|
865
866
|
const CATEGORY_GROUP_PATH = new RegExp(`${CONNECT_BASE_URI}/data-category/category-group`);
|
|
866
|
-
const
|
|
867
|
+
const PUT_CDP_DATA_GRAPH_PATH = new RegExp(`${CDP_BASE_URI}/data-graphs/retry`, 'i');
|
|
867
868
|
const AUTOMOTIVE_INV_MGMT_PATH = new RegExp(`${CONNECT_BASE_URI}/inventory-visibility/actions`, 'i');
|
|
868
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');
|
|
869
870
|
const CPQ_INSTANT_PRICING_PATH = new RegExp(`${INDUSTRIES_BASE_URI}/cpq/quotes/actions/get-instant-price`, 'i');
|
|
@@ -1001,6 +1002,7 @@ const connect = [
|
|
|
1001
1002
|
generateAdapter('post', CONNECT_BASE_URI, UPSERT_ACTIONABLE_LIST_URI_PATH, 'IndustriesActionableListController.upsertActionableList'),
|
|
1002
1003
|
generateAdapter('post', CONNECT_BASE_URI, ACTIONABLE_LIST_DATASET_INFO_URI_PATH, 'IndustriesActionableListController.getActionableListDatasetInfo'),
|
|
1003
1004
|
generateAdapter('post', CONNECT_BASE_URI, UPSERT_AL_DATASET_COLUMN_USER_URI_PATH, 'IndustriesActionableListController.upsertActionableListDatasetColumnUser'),
|
|
1005
|
+
generateAdapter('post', CONNECT_BASE_URI, UPSERT_AL_REFRESH_COUNT_URI_PATH, 'IndustriesActionableListController.upsertActionableListRefreshFilter'),
|
|
1004
1006
|
generateAdapter('get', CLM_BASE_URI, CLM_CONTRACT_URI_PATH, 'ClmController.getContractDocumentVersion'),
|
|
1005
1007
|
generateAdapter('post', CLM_BASE_URI, CLM_CONTRACT_URI_PATH, 'ClmController.createContractDocumentVersionAndInitializeGenerateDocumentProcess'),
|
|
1006
1008
|
generateAdapter('get', CLM_BASE_URI, CLM_GET_DOCUMENT_URI_PATH, 'ClmController.getTemplates'),
|
|
@@ -1564,10 +1566,10 @@ const cpq = [
|
|
|
1564
1566
|
generateAdapter('patch', CPQ_BASE_URI, CPQ_PRICE_CART, 'ICpqConnectFeatureController.priceCart'),
|
|
1565
1567
|
];
|
|
1566
1568
|
const cdp = [
|
|
1567
|
-
generateAdapter('delete', CDP_BASE_URI,
|
|
1568
|
-
generateAdapter('get', CDP_BASE_URI,
|
|
1569
|
-
generateAdapter('post', CDP_BASE_URI,
|
|
1570
|
-
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'),
|
|
1571
1573
|
];
|
|
1572
1574
|
const automotive = [
|
|
1573
1575
|
generateAdapter('post', CONNECT_BASE_URI, AUTOMOTIVE_INV_MGMT_PATH, 'InventoryManagementActionsController.postInventoryManagementAction'),
|
|
@@ -3279,4 +3281,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3279
3281
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3280
3282
|
|
|
3281
3283
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3282
|
-
// version: 1.
|
|
3284
|
+
// version: 1.219.0-e5e550eb7
|