@salesforce/lds-network-aura 1.165.0 → 1.166.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 +4 -2
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -511,7 +511,7 @@ const GET_COLLECTION_METADATA_FOR_SITE = new RegExp(`${CONNECT_BASE_URI}/sites/(
|
|
|
511
511
|
const GET_COLLECTION_ITEMS_FOR_CHANNEL = new RegExp(`${CONNECT_BASE_URI}/cms/delivery/channels/([A-Z0-9]){15,18}/collections/([A-Z0-9]){1,28}$`, 'i');
|
|
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
|
-
const CMS_SPACE_PATH = new RegExp(`${CMS_BASE_URI}/spaces/([A-Z0-9]){15,18}
|
|
514
|
+
const CMS_SPACE_PATH = new RegExp(`${CMS_BASE_URI}/spaces/([A-Z0-9]){15,18}$`, 'i');
|
|
515
515
|
const CREATE_MANAGED_CONTENT_IMPORT_V2_JOB_PATH = new RegExp(`${CONNECT_BASE_URI}/cms/spaces/([A-Z0-9]){15,18}/contents/import`, 'i');
|
|
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');
|
|
@@ -665,6 +665,7 @@ const MANAGED_CONTENT_ORCHESTRATION_INSTANCES_PATH = new RegExp(`${CMS_BASE_URI}
|
|
|
665
665
|
const MANAGED_CONTENT_CHANNEL_MANAGEMENT_PATH = new RegExp(`${CMS_BASE_URI}/management/channels$`, 'i');
|
|
666
666
|
const MANAGED_CONTENT_CHANNEL_MANAGEMENT_RECORD_PATH = new RegExp(`${CMS_BASE_URI}/management/channels/([A-Z0-9]){15,18}$`, 'i');
|
|
667
667
|
const MANAGED_CONTENT_RUNNING_ORCHESTRATION_HISTORY_PATH = new RegExp(`${CMS_BASE_URI}/contents/orchestration-history-events`, 'i');
|
|
668
|
+
const MANAGED_CONTENT_TYPE_FOR_MIXIN_PATH = new RegExp(`${CMS_BASE_URI}/spaces/([A-Z0-9]){15,18}/content-types$`, 'i');
|
|
668
669
|
const GET_SLOTS_PATH = new RegExp(`${HEALTH_CLOUD_BASE_URI}/advanced-therapy-management/get-slots`, 'i');
|
|
669
670
|
const CANCEL_SLOT_CHAIN_PATH = new RegExp(`${HEALTH_CLOUD_BASE_URI}/advanced-therapy-management/cancel-slot-chain`, 'i');
|
|
670
671
|
const BOOK_SLOTS_PATH = new RegExp(`${HEALTH_CLOUD_BASE_URI}/advanced-therapy-management/book-slot-chain`, 'i');
|
|
@@ -833,6 +834,7 @@ const connect = [
|
|
|
833
834
|
generateAdapter('patch', CMS_BASE_URI, MANAGED_CONTENT_CHANNEL_MANAGEMENT_RECORD_PATH, 'ManagedContentController.patchManagedContentChannelRecord'),
|
|
834
835
|
generateAdapter('post', CMS_BASE_URI, MANAGED_CONTENT_ORCHESTRATION_INSTANCES_PATH, 'ManagedContentController.createManagedContentOrchestrationInstance'),
|
|
835
836
|
generateAdapter('get', CMS_BASE_URI, MANAGED_CONTENT_RUNNING_ORCHESTRATION_HISTORY_PATH, 'ManagedContentController.getManagedContentRunningOrchestrationHistoryEvents'),
|
|
837
|
+
generateAdapter('get', CMS_BASE_URI, MANAGED_CONTENT_TYPE_FOR_MIXIN_PATH, 'ManagedContentController.getManagedContentTypesForMixin'),
|
|
836
838
|
generateAdapter('post', CMS_NON_CONNECT_BASE_URI, CREATE_DEPLOYMENT_PATH, 'ManagedContentController.createDeployment'),
|
|
837
839
|
generateAdapter('post', CMS_BASE_URI, CREATE_MANAGED_CONTENT_VARIANT_PATH, 'ManagedContentController.createManagedContentVariant'),
|
|
838
840
|
generateAdapter('post', CMS_BASE_URI, CREATE_MANAGED_CONTENT_PATH, 'ManagedContentController.createManagedContent'),
|
|
@@ -3047,4 +3049,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3047
3049
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3048
3050
|
|
|
3049
3051
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3050
|
-
// version: 1.
|
|
3052
|
+
// version: 1.166.0-76f47bcc0
|