@salesforce/lds-network-aura 1.338.0 → 1.340.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
|
@@ -133,6 +133,7 @@ const PLATFORM_LIGHTNING_TYPES_BASE_URI = `${CONNECT_BASE_URI}/lightning-types`;
|
|
|
133
133
|
const INVOICING_BASE_URI = `${COMMERCE_BASE_URI}/invoicing`;
|
|
134
134
|
const SLACK_BRIDGE_BASE_URI = `${CONNECT_BASE_URI}/slackbridge`;
|
|
135
135
|
const MARKETING_BASE_URI = `${CONNECT_BASE_URI}/marketing`;
|
|
136
|
+
const EXPLORER_VIEW_BASE_URI = `${CONNECT_BASE_URI}/explorer-view`;
|
|
136
137
|
|
|
137
138
|
function getStatusText(status) {
|
|
138
139
|
switch (status) {
|
|
@@ -1110,6 +1111,7 @@ const SALESFORCE_JOURNEY_INITIATIVE_USER_PREFERENCE_PATH = new RegExp(`${SALESFO
|
|
|
1110
1111
|
const SALESFORCE_JOURNEY_JOURNEY_MAP_METADATA_PATH = new RegExp(`${SALESFORCE_JOURNEY_BASE_URI}/([A-Z0-9]){1,18}/journey-map/metadata`, 'i');
|
|
1111
1112
|
const SALESFORCE_JOURNEY_INITIATIVE_PATH = new RegExp(`${SALESFORCE_JOURNEY_BASE_URI}/([A-Z0-9]){1,18}/journey-map/initiatives`, 'i');
|
|
1112
1113
|
const CREATE_INVOICE_BILLING_PATH = new RegExp(`${BASE_URI}/commerce/invoicing/invoices/collection/actions/generate`, 'i');
|
|
1114
|
+
const EXPLORER_VIEW_PATH = new RegExp(`${EXPLORER_VIEW_BASE_URI}/([a-zA-Z0-9_]){1,80}$`, 'i');
|
|
1113
1115
|
function generateAdapter(method, baseUri, pathRegex, controller, bodyParamName) {
|
|
1114
1116
|
return {
|
|
1115
1117
|
method,
|
|
@@ -1917,6 +1919,7 @@ const connect = [
|
|
|
1917
1919
|
// eslint-disable-next-line @salesforce/lds/oas-body-name-required
|
|
1918
1920
|
generateAdapter('post', PROGRAM_MGMT_BASE_URI, POST_TRIGGER_BENEFIT_SESSION_GENERATION_BASE_URI, 'ProgramManagementController.postTriggerBenefitSessionGeneration'),
|
|
1919
1921
|
generateAdapter('get', CMS_BASE_URI, CMS_SPACE_CHANNELS_PATH, 'ManagedContentSpacesController.getManagedContentSpaceChannels'),
|
|
1922
|
+
generateAdapter('get', EXPLORER_VIEW_BASE_URI, EXPLORER_VIEW_PATH, 'ExplorerViewConnectController.getExplorerView'),
|
|
1920
1923
|
];
|
|
1921
1924
|
const commerce = [
|
|
1922
1925
|
generateAdapter('get', COMMERCE_BASE_URI, GET_PRODUCT_PATH, 'CommerceCatalogController.getProduct'),
|
|
@@ -5294,4 +5297,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
5294
5297
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
5295
5298
|
|
|
5296
5299
|
export { CrudEventState, CrudEventType, UIAPI_GET_LAYOUT, UIAPI_GET_LAYOUT_USER_STATE, UIAPI_OBJECT_INFO_BATCH_PATH, UIAPI_OBJECT_INFO_PATH, UIAPI_RECORDS_PATH$1 as UIAPI_RECORDS_PATH, UIAPI_RELATED_LIST_RECORDS_BATCH_PATH, UIAPI_RELATED_LIST_RECORDS_PATH, createOkResponse$1 as createOkResponse, main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, getTransactionKey, instrument$1 as instrument, layoutStorage, layoutStorageStatsLogger, layoutUserStateStorage, layoutUserStateStorageStatsLogger, instrument as ldsNetworkAdapterInstrument, objectInfoStorage, objectInfoStorageStatsLogger, shouldForceRefresh };
|
|
5297
|
-
// version: 1.
|
|
5300
|
+
// version: 1.340.0-6f2e2f8197
|
|
@@ -114,3 +114,4 @@ export declare const PLATFORM_LIGHTNING_TYPES_BASE_URI: string;
|
|
|
114
114
|
export declare const INVOICING_BASE_URI: string;
|
|
115
115
|
export declare const SLACK_BRIDGE_BASE_URI: string;
|
|
116
116
|
export declare const MARKETING_BASE_URI: string;
|
|
117
|
+
export declare const EXPLORER_VIEW_BASE_URI: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.340.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"@luvio/engine": "0.156.5"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-aura-storage": "^1.
|
|
42
|
-
"@salesforce/lds-environment-settings": "^1.
|
|
43
|
-
"@salesforce/lds-instrumentation": "^1.
|
|
44
|
-
"@salesforce/lds-network-adapter": "^1.
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.340.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.340.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.340.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.340.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.340.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|