@salesforce/lds-network-aura 1.210.0 → 1.211.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 +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -450,6 +450,7 @@ const GET_EXTENSIONS_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/extension
|
|
|
450
450
|
const GET_MAPPINGS_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/mappings(\\?.*)?$`, 'i');
|
|
451
451
|
const GET_MAPPING_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/mappings/([A-Z0-9]){15,18}$`, 'i');
|
|
452
452
|
const GET_PROVIDERS_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/providers(\\?.*)?$`, 'i');
|
|
453
|
+
const GET_PROVIDER_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/providers/([A-Z0-9]){15,18}$`, 'i');
|
|
453
454
|
const GET_GUIDANCE_ASSISTANT_PATH = new RegExp(`${GUIDANCE_BASE_URI}/([A-Z0-9_]){2,80}$`, 'i');
|
|
454
455
|
const GET_LEARNING_CONTENT_PLATFORM_RELATED_LIST_PATH = new RegExp(`${LEARNING_CONTENT_PLATFORM_BASE_URI}/featured-item/list/related$`, 'i');
|
|
455
456
|
const GET_LEARNING_CONTENT_PLATFORM_RECOMMENDED_LIST_PATH = new RegExp(`${LEARNING_CONTENT_PLATFORM_BASE_URI}/featured-item/list/recommended$`, 'i');
|
|
@@ -1058,6 +1059,7 @@ const commerce_extension = [
|
|
|
1058
1059
|
generateAdapter('put', COMMERCE_EXTENSION_BASE_URI, GET_MAPPING_PATH, 'CommerceExtensionFamilyController.remapExtension', 'mappingInputRepresentation'),
|
|
1059
1060
|
generateAdapter('delete', COMMERCE_EXTENSION_BASE_URI, GET_MAPPING_PATH, 'CommerceExtensionFamilyController.unmapExtension'),
|
|
1060
1061
|
generateAdapter('get', COMMERCE_EXTENSION_BASE_URI, GET_PROVIDERS_PATH, 'CommerceExtensionFamilyController.getProviders'),
|
|
1062
|
+
generateAdapter('get', COMMERCE_EXTENSION_BASE_URI, GET_PROVIDER_PATH, 'CommerceExtensionFamilyController.getProvider'),
|
|
1061
1063
|
];
|
|
1062
1064
|
const scalecenter = [
|
|
1063
1065
|
{
|
|
@@ -3293,4 +3295,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3293
3295
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3294
3296
|
|
|
3295
3297
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3296
|
-
// version: 1.
|
|
3298
|
+
// version: 1.211.0-a37f2b789
|