@salesforce/lds-network-aura 1.204.0 → 1.205.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
CHANGED
|
@@ -70,6 +70,7 @@ const CDP_SALES_EXCELLENCE_BASE_URI = `${CONNECT_BASE_URI}/sales-excellence/cust
|
|
|
70
70
|
const DOCGEN_BASE_URI = `${CONNECT_BASE_URI}/docgen`;
|
|
71
71
|
const MATERIALITY_ASSESSMENT_BASE_URI = `${CONNECT_BASE_URI}/materialityassessment`;
|
|
72
72
|
const INDUSTRIES_BASE_URI = `${BASE_URI}/industries`;
|
|
73
|
+
const MEDIA_ADSALES_BASE_URI = `${BASE_URI}/api`;
|
|
73
74
|
const EINSTEIN_BASE_URI = `${BASE_URI}/einstein`;
|
|
74
75
|
const ECI_CONVERSATION_BASE_URI = `${BASE_URI}/conversation/summary`;
|
|
75
76
|
|
|
@@ -866,6 +867,10 @@ const PUT_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/ret
|
|
|
866
867
|
const AUTOMOTIVE_INV_MGMT_PATH = new RegExp(`${CONNECT_BASE_URI}/inventory-visibility/actions`, 'i');
|
|
867
868
|
const DOCGEN_BATCH_DOCGEN_PERFORM_ACTION_PATH = new RegExp(`${DOCGEN_BASE_URI}/doc-generation-batch-process/([A-Z0-9]){1,18}/([a-zA-Z0-9_]){0,80}$`, 'i');
|
|
868
869
|
const CPQ_INSTANT_PRICING_PATH = new RegExp(`${INDUSTRIES_BASE_URI}/cpq/quotes/actions/get-instant-price`, 'i');
|
|
870
|
+
const GET_AVAILS_CALENDAR_METADATA = new RegExp(`${MEDIA_ADSALES_BASE_URI}/availsCalendar/metadata`, 'i');
|
|
871
|
+
const POST_AVAILS_CALENDAR_FORECASTS = new RegExp(`${MEDIA_ADSALES_BASE_URI}/availsCalendar/forecasts`, 'i');
|
|
872
|
+
const POST_AVAILS_CALENDAR_CONTENDING = new RegExp(`${MEDIA_ADSALES_BASE_URI}/availsCalendar/contending`, 'i');
|
|
873
|
+
const GET_AVAILS_CALENDAR_CONFIGS = new RegExp(`${MEDIA_ADSALES_BASE_URI}/availsCalendar/runtimeConfig`, 'i');
|
|
869
874
|
const EINSTEIN_LLM_GENERATIONS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/prompt/generations`, 'i');
|
|
870
875
|
const EINSTEIN_PROMPT_TEMPLATE_GENERATIONS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/generations`, 'i');
|
|
871
876
|
const connect = [
|
|
@@ -1034,6 +1039,10 @@ const connect = [
|
|
|
1034
1039
|
generateAdapter('post', GROUP_BASE_URI, SPLIT_GROUP_PATH, 'GroupFamilyController.splitGroup'),
|
|
1035
1040
|
generateAdapter('post', DATA_PROVIDER_BASE_URI, DATA_PROVIDER_OUTPUT_SCHEMA_PATH, 'DataProviderController.getDataProviderSchema'),
|
|
1036
1041
|
generateAdapter('get', CONNECT_BASE_URI, LIGHTNING_CARDS_ACTIVATION_PATH, 'LightningCardsActivationController.getCardActivation'),
|
|
1042
|
+
generateAdapter('get', MEDIA_ADSALES_BASE_URI, GET_AVAILS_CALENDAR_METADATA, 'AvailsCalendarConnectFamilyController.getMetadata'),
|
|
1043
|
+
generateAdapter('post', MEDIA_ADSALES_BASE_URI, POST_AVAILS_CALENDAR_FORECASTS, 'AvailsCalendarConnectFamilyController.getForecasts'),
|
|
1044
|
+
generateAdapter('post', MEDIA_ADSALES_BASE_URI, POST_AVAILS_CALENDAR_CONTENDING, 'AvailsCalendarConnectFamilyController.getContendingLineItems'),
|
|
1045
|
+
generateAdapter('get', MEDIA_ADSALES_BASE_URI, GET_AVAILS_CALENDAR_CONFIGS, 'AvailsCalendarConnectFamilyController.getRuntimeConfigs'),
|
|
1037
1046
|
];
|
|
1038
1047
|
const commerce = [
|
|
1039
1048
|
generateAdapter('get', COMMERCE_BASE_URI, GET_PRODUCT_PATH, 'CommerceCatalogController.getProduct'),
|
|
@@ -3284,4 +3293,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3284
3293
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3285
3294
|
|
|
3286
3295
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3287
|
-
// version: 1.
|
|
3296
|
+
// version: 1.205.0-8c6377405
|
|
@@ -49,5 +49,6 @@ export declare const CDP_SALES_EXCELLENCE_BASE_URI: string;
|
|
|
49
49
|
export declare const DOCGEN_BASE_URI: string;
|
|
50
50
|
export declare const MATERIALITY_ASSESSMENT_BASE_URI: string;
|
|
51
51
|
export declare const INDUSTRIES_BASE_URI: string;
|
|
52
|
+
export declare const MEDIA_ADSALES_BASE_URI: string;
|
|
52
53
|
export declare const EINSTEIN_BASE_URI: string;
|
|
53
54
|
export declare const ECI_CONVERSATION_BASE_URI: string;
|