@salesforce/lds-network-aura 1.414.1 → 1.415.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 +6 -6
package/dist/ldsNetwork.js
CHANGED
|
@@ -1494,6 +1494,7 @@ const CONTRIBUTOR_BUSINESS_UNITS = new RegExp(`${BUSINESS_UNITS_BASE_URI}/contri
|
|
|
1494
1494
|
const BUSINESS_UNIT_COLLECTION_PATH = new RegExp(`${BUSINESS_UNITS_BASE_URI}`, 'i');
|
|
1495
1495
|
const BUSINESS_UNIT_BULK = new RegExp(`${BUSINESS_UNITS_BASE_URI}/([A-Za-z0-9_]){15,18}/contributors/bulk`, 'i');
|
|
1496
1496
|
const BUSINESS_UNIT_DELETE = new RegExp(`${BUSINESS_UNITS_BASE_URI}/([A-Za-z0-9_]){15,18}/contributors/([A-Za-z0-9_]){15,18}`, 'i');
|
|
1497
|
+
const BUSINESS_UNIT_PATCH_CONTRIBUTOR = new RegExp(`${BUSINESS_UNITS_BASE_URI}/([A-Za-z0-9_]){15,18}/contributors/([A-Za-z0-9_]){15,18}`, 'i');
|
|
1497
1498
|
const BUSINESS_UNIT_CHANNELS_PATH = new RegExp(`${BUSINESS_UNITS_BASE_URI}/channels`, 'i');
|
|
1498
1499
|
const BUSINESS_UNIT_CHANNELS_BULK_PATH = new RegExp(`${BUSINESS_UNITS_BASE_URI}/channels/bulk`, 'i');
|
|
1499
1500
|
const UMA_DATASPACES = new RegExp(`${CONNECT_BASE_URI}/uma/dataSpaces`, 'i');
|
|
@@ -3714,6 +3715,7 @@ const businessUnitConnect = [
|
|
|
3714
3715
|
generateAdapter('get', BUSINESS_UNITS_BASE_URI, BUSINESS_UNIT_CONTRIBUTORS_PATH, 'BusinessUnitController.getBusinessUnitContributors'),
|
|
3715
3716
|
generateAdapter('post', BUSINESS_UNITS_BASE_URI, BUSINESS_UNIT_BULK, 'BusinessUnitController.businessUnitContributorCollectionPostAction', 'businessUnitContributorsInput'),
|
|
3716
3717
|
generateAdapter('delete', BUSINESS_UNITS_BASE_URI, BUSINESS_UNIT_DELETE, 'BusinessUnitController.deleteBusinessUnitContributor'),
|
|
3718
|
+
generateAdapter('patch', BUSINESS_UNITS_BASE_URI, BUSINESS_UNIT_PATCH_CONTRIBUTOR, 'BusinessUnitController.patchBusinessUnitContributor', 'data'),
|
|
3717
3719
|
generateAdapter('post', BUSINESS_UNITS_BASE_URI, BUSINESS_UNIT_CONTRIBUTORS_PATH, 'BusinessUnitController.createBusinessUnitContributor', 'data'),
|
|
3718
3720
|
generateAdapter('get', BUSINESS_UNITS_BASE_URI, CONTRIBUTOR_BUSINESS_UNITS, 'BusinessUnitController.getBusinessUnitsForContributor'),
|
|
3719
3721
|
generateAdapter('get', BUSINESS_UNITS_BASE_URI, BUSINESS_UNIT_ASSOCIATED_RECORDS_PATH, 'BusinessUnitController.getBusinessUnitForRecord'),
|
|
@@ -5851,4 +5853,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
5851
5853
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
5852
5854
|
|
|
5853
5855
|
export { CrudEventState, CrudEventType, UIAPI_GET_LAYOUT, UIAPI_GET_LAYOUT_USER_STATE, UIAPI_OBJECT_INFO_BATCH_PATH, UIAPI_OBJECT_INFO_PATH, UIAPI_RECORDS_PATH$1 as UIAPI_RECORDS_PATH, UIAPI_RELATED_LIST_RECORDS_BATCH_PATH, UIAPI_RELATED_LIST_RECORDS_PATH, createOkResponse$1 as createOkResponse, main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, getTransactionKey, instrument$1 as instrument, layoutStorage, layoutStorageStatsLogger, layoutUserStateStorage, layoutUserStateStorageStatsLogger, instrument as ldsNetworkAdapterInstrument, objectInfoStorage, objectInfoStorageStatsLogger, shouldForceRefresh };
|
|
5854
|
-
// version: 1.
|
|
5856
|
+
// version: 1.415.0-3636f2a7b2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.415.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.158.7"
|
|
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.415.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.415.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.415.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.415.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.415.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|