@salesforce/lds-network-aura 1.172.0 → 1.174.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.
@@ -512,6 +512,7 @@ const GET_COLLECTION_ITEMS_FOR_CHANNEL = new RegExp(`${CONNECT_BASE_URI}/cms/del
512
512
  const GET_COLLECTION_METADATA_FOR_CHANNEL = new RegExp(`${CONNECT_BASE_URI}/cms/delivery/channels/([A-Z0-9]){15,18}/collections/([A-Z0-9]){1,28}/metadata$`, 'i');
513
513
  const GET_CMS_SPACES = new RegExp(`${CMS_BASE_URI}/spaces$`, 'i');
514
514
  const CMS_SPACE_PATH = new RegExp(`${CMS_BASE_URI}/spaces/([A-Z0-9]){15,18}$`, 'i');
515
+ const CMS_MANAGED_CONTENT_ORCH_CONFIG_PATH = new RegExp(`${CMS_BASE_URI}/spaces/([A-Z0-9]){15,18}/orchestrator-config$`, 'i');
515
516
  const CREATE_MANAGED_CONTENT_IMPORT_V2_JOB_PATH = new RegExp(`${CONNECT_BASE_URI}/cms/spaces/([A-Z0-9]){15,18}/contents/import`, 'i');
516
517
  const CREATE_MANAGED_CONTENT_EXPORT_V2_JOB_PATH = new RegExp(`${CONNECT_BASE_URI}/cms/spaces/([A-Z0-9]){15,18}/contents/export`, 'i');
517
518
  const CREATE_TRANSLATION_V2_JOB_PATH = new RegExp(`${CONNECT_BASE_URI}/cms/content/spaces/([A-Z0-9]){15,18}/translation`, 'i');
@@ -845,6 +846,7 @@ const connect = [
845
846
  generateAdapter('post', CMS_BASE_URI, CREATE_MANAGED_CONTENT_PATH, 'ManagedContentController.createManagedContent'),
846
847
  generateAdapter('get', CMS_BASE_URI, GET_CMS_SPACES, 'ManagedContentController.getManagedContentSpaces'),
847
848
  generateAdapter('get', CMS_BASE_URI, CMS_SPACE_PATH, 'ManagedContentController.getManagedContentSpace'),
849
+ generateAdapter('get', CMS_BASE_URI, CMS_MANAGED_CONTENT_ORCH_CONFIG_PATH, 'ManagedContentController.getManagedContentSpaceOrchestratorConfig'),
848
850
  generateAdapter('patch', CMS_BASE_URI, CMS_SPACE_PATH, 'ManagedContentController.patchManagedContentSpace'),
849
851
  generateAdapter('post', CONNECT_BASE_URI, CREATE_MANAGED_CONTENT_IMPORT_V2_JOB_PATH, 'ManagedContentController.createManagedContentImportV2Job'),
850
852
  generateAdapter('post', CONNECT_BASE_URI, CREATE_MANAGED_CONTENT_EXPORT_V2_JOB_PATH, 'ManagedContentController.createManagedContentExportV2Job'),
@@ -3067,4 +3069,4 @@ function auraNetworkAdapter(resourceRequest) {
3067
3069
  var main = platformNetworkAdapter(auraNetworkAdapter);
3068
3070
 
3069
3071
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
3070
- // version: 1.172.0-54479eea8
3072
+ // version: 1.174.0-5f6c9e1e8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.172.0",
3
+ "version": "1.174.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",