@salesforce/lds-network-aura 1.217.0 → 1.218.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 +3 -1
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -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');
|
|
@@ -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'),
|
|
@@ -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.218.0-2099a91aa
|