@salesforce/lds-network-aura 1.367.0 → 1.368.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
|
@@ -682,6 +682,7 @@ const GET_WEB_URLS_PATH = new RegExp(`${CMS_BASE_URI}/contents/([A-Z0-9_]){1,28}
|
|
|
682
682
|
const UPDATE_MANAGED_CONTENT_WEB_URL_PATH = new RegExp(`${CMS_BASE_URI}/contents/web-urls/([A-Z0-9_]){1,28}`, 'i');
|
|
683
683
|
const GET_MANAGED_CONTENT_PATH = new RegExp(`${CMS_BASE_URI}/contents/([A-Z0-9_]){1,80}$`, 'i');
|
|
684
684
|
const GET_MANAGED_CONTENT_PROVIDERS_PATH = new RegExp(`${CMS_BASE_URI}/content/providers`, 'i');
|
|
685
|
+
const GET_MANAGED_CONTENT_DOCUMENT_COLLECTION_PATH = new RegExp(`${CMS_BASE_URI}/digital-asset-management-providers/([A-Z0-9]){15,18}/contents`, 'i');
|
|
685
686
|
const REPLACE_MANAGED_CONTENT_VARIANT_PATH = GET_MANAGED_CONTENT_VARIANT_PATH;
|
|
686
687
|
const DELETE_MANAGED_CONTENT_VARIANT_PATH = GET_MANAGED_CONTENT_VARIANT_PATH;
|
|
687
688
|
const LIST_CONTENT_INTERNAL_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([A-Z0-9]){15,18}/managed-content/delivery/contents`, 'i');
|
|
@@ -1789,6 +1790,7 @@ const connect = [
|
|
|
1789
1790
|
generateAdapter('get', CONNECT_BASE_URI, GET_SEARCH_RESULTS, 'ManagedContentController.searchManagedContentForItems'),
|
|
1790
1791
|
generateAdapter('get', CMS_BASE_URI, GET_MANAGED_CONTENT_PATH, 'ManagedContentController.getManagedContent'),
|
|
1791
1792
|
generateAdapter('get', CMS_BASE_URI, GET_MANAGED_CONTENT_PROVIDERS_PATH, 'ManagedContentController.getManagedContentProviders'),
|
|
1793
|
+
generateAdapter('get', CMS_BASE_URI, GET_MANAGED_CONTENT_DOCUMENT_COLLECTION_PATH, 'ManagedContentController.getManagedContentDocumentCollection'),
|
|
1792
1794
|
generateAdapter('get', CMS_BASE_URI, GET_MANAGED_CONTENT_REFERENCED_BY_PATH, 'ManagedContentController.getManagedContentReferencedBy'),
|
|
1793
1795
|
generateAdapter('get', CMS_BASE_URI, GET_MANAGED_CONTENT_VARIANT_RENDITION_PATH, 'ManagedContentController.getManagedContentVariantRendition'),
|
|
1794
1796
|
generateAdapter('get', CMS_BASE_URI, GET_MANAGED_CONTENT_VARIANT_REFERENCES_PATH, 'ManagedContentController.getVariantReferences'),
|
|
@@ -5716,4 +5718,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
5716
5718
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
5717
5719
|
|
|
5718
5720
|
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 };
|
|
5719
|
-
// version: 1.
|
|
5721
|
+
// version: 1.368.0-20c9e0247b
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.368.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.3"
|
|
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.368.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.368.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.368.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.368.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.368.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|