@salesforce/lds-network-aura 1.356.0 → 1.358.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
|
@@ -21,7 +21,7 @@ import { getEnvironmentSetting, EnvironmentSettings } from 'force/ldsEnvironment
|
|
|
21
21
|
const { create, entries: entries$1, keys: keys$1 } = Object;
|
|
22
22
|
const { parse: parse$1, stringify: stringify$1 } = JSON;
|
|
23
23
|
|
|
24
|
-
const BASE_URI = '/services/data/
|
|
24
|
+
const BASE_URI = '/services/data/v65.0';
|
|
25
25
|
const CONNECT_BASE_URI = `${BASE_URI}/connect`;
|
|
26
26
|
const ASSET_MANAGEMENT_BASE_URI = `${BASE_URI}/asset-management`;
|
|
27
27
|
const COMMERCE_BASE_URI = `${BASE_URI}/commerce`;
|
|
@@ -464,7 +464,7 @@ router.post((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs`), buildDataG
|
|
|
464
464
|
router.put((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs/retry`), buildDataGraphAction('CdpDataGraphController.retryDataGraph'));
|
|
465
465
|
router.put((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs`), buildDataGraphAction('CdpDataGraphController.editDataGraph'));
|
|
466
466
|
|
|
467
|
-
const LWR_APEX_BASE_URI = '/lwr/apex/
|
|
467
|
+
const LWR_APEX_BASE_URI = '/lwr/apex/v65.0';
|
|
468
468
|
const ApexController = 'ApexActionController.execute';
|
|
469
469
|
const CACHE_CONTROL = 'Cache-Control';
|
|
470
470
|
const X_SFDC_ALLOW_CONTINUATION = 'X-SFDC-Allow-Continuation';
|
|
@@ -1288,8 +1288,8 @@ const CDP_DATA_TRANSFORM_GET = new RegExp(`${CDP_BASE_URI}/data-transforms/{data
|
|
|
1288
1288
|
const CDP_QUERY_ANSI_SQL = new RegExp(`${CDP_BASE_URI}/query`, 'i');
|
|
1289
1289
|
// CDP Document Processing Endpoint
|
|
1290
1290
|
const CDP_DOCUMENT_PROCESSING_GLOBAL_CONFIG = new RegExp(`${CDP_DOCUMENT_PROCESSING}/global-config`, 'i');
|
|
1291
|
-
const CDP_DOCUMENT_PROCESSING_CONFIGURATIONS = new RegExp(`${CDP_DOCUMENT_PROCESSING}/configurations
|
|
1292
|
-
const CDP_DOCUMENT_PROCESSING_CONFIGURATION_DETAILS = new RegExp(`${CDP_DOCUMENT_PROCESSING}/configurations/([
|
|
1291
|
+
const CDP_DOCUMENT_PROCESSING_CONFIGURATIONS = new RegExp(`${CDP_DOCUMENT_PROCESSING}/configurations$`, 'i');
|
|
1292
|
+
const CDP_DOCUMENT_PROCESSING_CONFIGURATION_DETAILS = new RegExp(`${CDP_DOCUMENT_PROCESSING}/configurations/([a-zA-Z0-9]){1,20}$`, 'i');
|
|
1293
1293
|
const CDP_DOCUMENT_PROCESSING_CONFIGURATION_EXTRACT = new RegExp(`${CDP_DOCUMENT_PROCESSING}/actions/extract-data`, 'i');
|
|
1294
1294
|
const KNOWLEDGE_ARTICLE_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/network-data-category/9cn([a-zA-Z0-9]){12,15}/knowledge-article`, 'i');
|
|
1295
1295
|
const CATALOG_ITEM_FOR_COMMUNITY_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/network-data-category/9cn([a-zA-Z0-9]){12,15}/catalog-item`, 'i');
|
|
@@ -3506,6 +3506,8 @@ const SLACK_BRIDGE_RECORD_CHANNELS = new RegExp(`${SLACK_BRIDGE_RECORD_CHANNELS_
|
|
|
3506
3506
|
const SLACK_BRIDGE_RECORD_CHANNELS_MEMBER = new RegExp(`${SLACK_BRIDGE_RECORD_CHANNELS_URI}/([a-zA-Z0-9]{15}|[a-zA-Z0-9]{18})`, 'i');
|
|
3507
3507
|
const SLACK_BRIDGE_TEAM_BASE_URI = `${SLACK_BRIDGE_BASE_URI}/team/([A-Za-z0-9_]+){3,50}`;
|
|
3508
3508
|
const SLACK_BRIDGE_TEAM_CHANNEL_BASE_URI = `${SLACK_BRIDGE_TEAM_BASE_URI}/channel/([A-Za-z0-9_]+){3,50}`;
|
|
3509
|
+
const SLACK_BRIDGE_TEAM_CHANNEL_INFOS = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/channels$`, 'i');
|
|
3510
|
+
const SLACK_BRIDGE_TEAM_CHANNEL_INFO = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/channels/([A-Za-z0-9_]+){3,50}$`, 'i');
|
|
3509
3511
|
const SLACK_BRIDGE_SEARCH_CONVERSATION = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/search/conversations$`, 'i');
|
|
3510
3512
|
const SLACK_BRIDGE_SEARCH_EMOJI = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/search/emojis$`, 'i');
|
|
3511
3513
|
const SLACK_BRIDGE_SEARCH_USER = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/search/users$`, 'i');
|
|
@@ -3522,6 +3524,8 @@ const SLACK_BRIDGE_SLACK_RELATED_THREADS_PATH = new RegExp(`${SLACK_BRIDGE_BASE_
|
|
|
3522
3524
|
const slackBridge = [
|
|
3523
3525
|
generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_CONVERSATION_MESSAGES, 'SlackBridgeController.getSlackConversation'),
|
|
3524
3526
|
generateAdapter('post', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_CONVERSATION_MESSAGES, 'SlackBridgeController.postSlackConversation', 'slackMessagePostRequest'),
|
|
3527
|
+
generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_TEAM_CHANNEL_INFO, 'SlackBridgeController.getSlackConversationInfo'),
|
|
3528
|
+
generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_TEAM_CHANNEL_INFOS, 'SlackBridgeController.getSlackConversationInfos'),
|
|
3525
3529
|
generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_SEARCH_CONVERSATION, 'SlackBridgeController.searchSlackConversation'),
|
|
3526
3530
|
generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_SEARCH_EMOJI, 'SlackBridgeController.searchSlackEmoji'),
|
|
3527
3531
|
generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_SEARCH_USER, 'SlackBridgeController.searchSlackUser'),
|
|
@@ -5071,7 +5075,7 @@ const { join, push, unshift } = Array.prototype;
|
|
|
5071
5075
|
const { isArray } = Array;
|
|
5072
5076
|
const { entries, keys } = Object;
|
|
5073
5077
|
|
|
5074
|
-
const UI_API_BASE_URI = '/services/data/
|
|
5078
|
+
const UI_API_BASE_URI = '/services/data/v65.0/ui-api';
|
|
5075
5079
|
|
|
5076
5080
|
let instrumentation = {
|
|
5077
5081
|
aggregateUiChunkCount: (_cb) => { },
|
|
@@ -5576,4 +5580,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
5576
5580
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
5577
5581
|
|
|
5578
5582
|
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 };
|
|
5579
|
-
// version: 1.
|
|
5583
|
+
// version: 1.358.0-d83368bac0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const LWR_APEX_BASE_URI = "/lwr/apex/
|
|
1
|
+
export declare const LWR_APEX_BASE_URI = "/lwr/apex/v65.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.358.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.7"
|
|
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.358.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.358.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.358.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.358.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.358.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|