@salesforce/lds-network-aura 1.355.0 → 1.357.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.
@@ -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/v64.0';
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/v64.0';
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';
@@ -1025,7 +1025,7 @@ const EPC_GET_RELATED_RECORDS_PATH = new RegExp(`${EPC_BASE_URI}/relatedRecords/
1025
1025
  const EPC_CATALOG_UPDATE = new RegExp(`${EPC_BASE_URI}/actions/catalog-update`, 'i');
1026
1026
  const EPC_RUNTIME_CATALOG_GET_INDEX_ERROR_PATH = new RegExp(`${EPC_BASE_URI}/index/error`, 'i');
1027
1027
  const GET_ERI_DIGEST_PATH = new RegExp(`${ERI_BASE_URI}/digest`, 'i');
1028
- const SERVICE_AUTOMATION_OMNISCRIPT_GENERATION_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/intake-form/generate-intake-omni`, 'i');
1028
+ const SERVICE_AUTOMATION_OMNISCRIPT_GENERATION_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/intake-form/generate-intake-omniscript`, 'i');
1029
1029
  const SERVICE_AUTOMATION_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/query`, 'i');
1030
1030
  const SA_CATEGORY_BY_CATALOG_ID_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/catalog/([A-Z0-9]){15,18}$/categories`, 'i');
1031
1031
  const SA_SERVICE_REQUEST_BY_ID = new RegExp(`${CONNECT_BASE_URI}/service-automation/service-request/service-catalog-request/([A-Za-z0-9_]){1,255}(\\?.*)?$`, 'i');
@@ -1563,6 +1563,7 @@ const PAYMENT_METHOD_SET_PATH = new RegExp(`${PAYMENTS_BASE_URI}/payment-method-
1563
1563
  const UNIFIED_ANALYTICS_LIBRARY_ASSETS_PATH = new RegExp(`${UNIFIED_ANALYTICS_BASE_URI}/library/assets/query$`, 'i');
1564
1564
  const UNIFIED_ANALYTICS_MARKETPLACE_PATH = new RegExp(`${UNIFIED_ANALYTICS_BASE_URI}/marketplace/listings/([A-Za-z0-9_]+){3,50}/install$`, 'i');
1565
1565
  const UNIFIED_ANALYTICS_MARKETPLACE_INSTALLATION_PROGRESS_PATH = new RegExp(`${UNIFIED_ANALYTICS_BASE_URI}/marketplace/installations/([A-Za-z0-9_]+){3,50}$`, 'i');
1566
+ const UNIFIED_ANALYTICS_MARKETPLACE_TEMPLATE_CREATION_PATH = new RegExp(`${UNIFIED_ANALYTICS_BASE_URI}/marketplace/templates$`, 'i');
1566
1567
  const PAYMNET_INTENT_PATH = new RegExp(`${PAYMENTS_BASE_URI}/payment-intents$`, 'i');
1567
1568
  const PAYMNET_INTENT_TIMELINE_PATH = new RegExp(`${PAYMENTS_BASE_URI}/payment-intents/([A-Z0-9]){15,18}/timeline$`, 'i');
1568
1569
  const COMMERCE_PAYMENTS_SETTINGS_PATH = new RegExp(`${COMMERCE_CHANNEL_MANAGEMENT_BASE_URI}/([A-Z0-9]){15,18}/payment/settings$`, 'i');
@@ -1662,6 +1663,7 @@ const unifiedAnalytics = [
1662
1663
  generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_LIBRARY_ASSETS_PATH, 'AnalyticsController.fetchAssets', 'libraryAssetsQueryInput'),
1663
1664
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_MARKETPLACE_PATH, 'AnalyticsController.initiateMarketplaceListingInstallation'),
1664
1665
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_MARKETPLACE_INSTALLATION_PROGRESS_PATH, 'AnalyticsController.getMarketplaceListingInstallationProgress'),
1666
+ generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_MARKETPLACE_TEMPLATE_CREATION_PATH, 'AnalyticsController.createTemplate', 'templateInput'),
1665
1667
  generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_PUBLISH_MONITORING_EVENTS_PATH, 'AnalyticsController.publish', 'events'),
1666
1668
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_SUBSCRIPTIONS_DIGEST_GET, 'AnalyticsController.getSubscriptionDigestConfig'),
1667
1669
  generateAdapter('patch', BASE_URI, UNIFIED_ANALYTICS_SUBSCRIPTIONS_DIGEST_PATCH, 'AnalyticsController.updateSubscriptionDigestConfig', 'digestConfig'),
@@ -3504,6 +3506,8 @@ const SLACK_BRIDGE_RECORD_CHANNELS = new RegExp(`${SLACK_BRIDGE_RECORD_CHANNELS_
3504
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');
3505
3507
  const SLACK_BRIDGE_TEAM_BASE_URI = `${SLACK_BRIDGE_BASE_URI}/team/([A-Za-z0-9_]+){3,50}`;
3506
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');
3507
3511
  const SLACK_BRIDGE_SEARCH_CONVERSATION = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/search/conversations$`, 'i');
3508
3512
  const SLACK_BRIDGE_SEARCH_EMOJI = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/search/emojis$`, 'i');
3509
3513
  const SLACK_BRIDGE_SEARCH_USER = new RegExp(`${SLACK_BRIDGE_TEAM_BASE_URI}/search/users$`, 'i');
@@ -3520,6 +3524,8 @@ const SLACK_BRIDGE_SLACK_RELATED_THREADS_PATH = new RegExp(`${SLACK_BRIDGE_BASE_
3520
3524
  const slackBridge = [
3521
3525
  generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_CONVERSATION_MESSAGES, 'SlackBridgeController.getSlackConversation'),
3522
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'),
3523
3529
  generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_SEARCH_CONVERSATION, 'SlackBridgeController.searchSlackConversation'),
3524
3530
  generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_SEARCH_EMOJI, 'SlackBridgeController.searchSlackEmoji'),
3525
3531
  generateAdapter('get', SLACK_BRIDGE_BASE_URI, SLACK_BRIDGE_SEARCH_USER, 'SlackBridgeController.searchSlackUser'),
@@ -5069,7 +5075,7 @@ const { join, push, unshift } = Array.prototype;
5069
5075
  const { isArray } = Array;
5070
5076
  const { entries, keys } = Object;
5071
5077
 
5072
- const UI_API_BASE_URI = '/services/data/v64.0/ui-api';
5078
+ const UI_API_BASE_URI = '/services/data/v65.0/ui-api';
5073
5079
 
5074
5080
  let instrumentation = {
5075
5081
  aggregateUiChunkCount: (_cb) => { },
@@ -5574,4 +5580,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
5574
5580
  var main = platformNetworkAdapter(auraNetworkAdapter);
5575
5581
 
5576
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 };
5577
- // version: 1.355.0-4ae8017b1b
5583
+ // version: 1.357.0-aac41a57a8
@@ -1 +1 @@
1
- export declare const LWR_APEX_BASE_URI = "/lwr/apex/v64.0";
1
+ export declare const LWR_APEX_BASE_URI = "/lwr/apex/v65.0";
@@ -1,4 +1,4 @@
1
- export declare const BASE_URI = "/services/data/v64.0";
1
+ export declare const BASE_URI = "/services/data/v65.0";
2
2
  export declare const CONNECT_BASE_URI: string;
3
3
  export declare const ASSET_MANAGEMENT_BASE_URI: string;
4
4
  export declare const COMMERCE_BASE_URI: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.355.0",
3
+ "version": "1.357.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.355.0",
41
- "@salesforce/lds-aura-storage": "^1.355.0",
42
- "@salesforce/lds-environment-settings": "^1.355.0",
43
- "@salesforce/lds-instrumentation": "^1.355.0",
44
- "@salesforce/lds-network-adapter": "^1.355.0"
40
+ "@salesforce/lds-adapters-uiapi": "^1.357.0",
41
+ "@salesforce/lds-aura-storage": "^1.357.0",
42
+ "@salesforce/lds-environment-settings": "^1.357.0",
43
+ "@salesforce/lds-instrumentation": "^1.357.0",
44
+ "@salesforce/lds-network-adapter": "^1.357.0"
45
45
  },
46
46
  "volta": {
47
47
  "extends": "../../package.json"