@salesforce/lds-network-aura 1.171.0 → 1.172.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.
@@ -516,7 +516,7 @@ const CREATE_MANAGED_CONTENT_IMPORT_V2_JOB_PATH = new RegExp(`${CONNECT_BASE_URI
516
516
  const CREATE_MANAGED_CONTENT_EXPORT_V2_JOB_PATH = new RegExp(`${CONNECT_BASE_URI}/cms/spaces/([A-Z0-9]){15,18}/contents/export`, 'i');
517
517
  const CREATE_TRANSLATION_V2_JOB_PATH = new RegExp(`${CONNECT_BASE_URI}/cms/content/spaces/([A-Z0-9]){15,18}/translation`, 'i');
518
518
  const GET_SEARCH_RESULTS = new RegExp(`${CONNECT_BASE_URI}/cms/items/search`, 'i');
519
- const CREATE_DEPLOYMENT_PATH = new RegExp(`${CMS_NON_CONNECT_BASE_URI}/deployments`, 'i');
519
+ const DEPLOYMENT_PATH = new RegExp(`${CMS_NON_CONNECT_BASE_URI}/deployments`, 'i');
520
520
  const UNPUBLISH_MANAGED_CONTENT_PATH = new RegExp(`${CMS_BASE_URI}/contents/unpublish`, 'i');
521
521
  const PUBLISH_MANAGED_CONTENT_PATH = new RegExp(`${CMS_BASE_URI}/contents/publish`, 'i');
522
522
  const CREATE_MANAGED_CONTENT_VARIANT_PATH = new RegExp(`${CMS_BASE_URI}/contents/variants`, 'i');
@@ -839,7 +839,8 @@ const connect = [
839
839
  generateAdapter('post', CMS_BASE_URI, MANAGED_CONTENT_ORCHESTRATION_INSTANCES_PATH, 'ManagedContentController.createManagedContentOrchestrationInstance'),
840
840
  generateAdapter('get', CMS_BASE_URI, MANAGED_CONTENT_RUNNING_ORCHESTRATION_HISTORY_PATH, 'ManagedContentController.getManagedContentRunningOrchestrationHistoryEvents'),
841
841
  generateAdapter('get', CMS_BASE_URI, MANAGED_CONTENT_TYPE_FOR_MIXIN_PATH, 'ManagedContentController.getManagedContentTypesForMixin'),
842
- generateAdapter('post', CMS_NON_CONNECT_BASE_URI, CREATE_DEPLOYMENT_PATH, 'ManagedContentController.createDeployment'),
842
+ generateAdapter('post', CMS_NON_CONNECT_BASE_URI, DEPLOYMENT_PATH, 'ManagedContentController.createDeployment'),
843
+ generateAdapter('get', CMS_NON_CONNECT_BASE_URI, DEPLOYMENT_PATH, 'ManagedContentController.getDeploymentById'),
843
844
  generateAdapter('post', CMS_BASE_URI, CREATE_MANAGED_CONTENT_VARIANT_PATH, 'ManagedContentController.createManagedContentVariant'),
844
845
  generateAdapter('post', CMS_BASE_URI, CREATE_MANAGED_CONTENT_PATH, 'ManagedContentController.createManagedContent'),
845
846
  generateAdapter('get', CMS_BASE_URI, GET_CMS_SPACES, 'ManagedContentController.getManagedContentSpaces'),
@@ -3066,4 +3067,4 @@ function auraNetworkAdapter(resourceRequest) {
3066
3067
  var main = platformNetworkAdapter(auraNetworkAdapter);
3067
3068
 
3068
3069
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
3069
- // version: 1.171.0-2b2365b14
3070
+ // version: 1.172.0-54479eea8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.171.0",
3
+ "version": "1.172.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",