@salesforce/lds-network-aura 1.412.1 → 1.414.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/v66.0';
24
+ const BASE_URI = '/services/data/v67.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`;
@@ -81,7 +81,6 @@ const FUNDRAISING_BASE_URI = `${CONNECT_BASE_URI}/fundraising`;
81
81
  const CDP_BASE_URI = `${BASE_URI}/ssot`;
82
82
  const CDP_SALES_EXCELLENCE_BASE_URI = `${CONNECT_BASE_URI}/sales-excellence/cust-data-pfrm`;
83
83
  const CDP_MACHINE_LEARNING_BASE_URI = `${CDP_BASE_URI}/machine-learning`;
84
- const CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI = `${CDP_BASE_URI}/data-transforms-experience`;
85
84
  const CDP_COMMUNICATION_CAPPING_BASE_URI = `${CDP_BASE_URI}/communication-cappings`;
86
85
  const CDP_BYOC_BASE_URI = `${CDP_BASE_URI}/data-custom-code`;
87
86
  const CDP_DOCUMENT_PROCESSING = `${CDP_BASE_URI}/document-processing`;
@@ -473,7 +472,7 @@ router.post((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs`), buildDataG
473
472
  router.put((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs/retry`), buildDataGraphAction('CdpDataGraphController.retryDataGraph'));
474
473
  router.put((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs`), buildDataGraphAction('CdpDataGraphController.editDataGraph'));
475
474
 
476
- const LWR_APEX_BASE_URI = '/lwr/apex/v66.0';
475
+ const LWR_APEX_BASE_URI = '/lwr/apex/v67.0';
477
476
  const ApexController = 'ApexActionController.execute';
478
477
  const CACHE_CONTROL = 'Cache-Control';
479
478
  const X_SFDC_ALLOW_CONTINUATION = 'X-SFDC-Allow-Continuation';
@@ -1328,7 +1327,6 @@ const CDP_CONFIGURED_MODEL_COLLECTION = new RegExp(`${CDP_MACHINE_LEARNING_BASE_
1328
1327
  const CDP_PREDICTION_COLLECTION = new RegExp(`${CDP_MACHINE_LEARNING_BASE_URI}/predict`, 'i');
1329
1328
  // can be 15-18 char Id or developerName which max length is 255
1330
1329
  const CDP_CONFIGURED_MODEL = new RegExp(`${CDP_MACHINE_LEARNING_BASE_URI}/configured-models/([A-Za-z0-9_]){1,255}`, 'i');
1331
- const CDP_DATA_TRANSFORM_EXPERIENCE_CONFIGURATIONS = new RegExp(`${CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI}/configurations`, 'i');
1332
1330
  const CDP_COMMUNICATION_CAPPING_CONFIGURATION = new RegExp(`${CDP_COMMUNICATION_CAPPING_BASE_URI}/([A-Za-z0-9_]){1,80}$`, 'i');
1333
1331
  const CDP_COMMUNICATION_CAPPING_STATUS_RETRY = new RegExp(`${CDP_COMMUNICATION_CAPPING_BASE_URI}/([A-Za-z0-9_]){1,80}/actions/retry`, 'i');
1334
1332
  // CDP Data Transform Endpoints
@@ -1376,6 +1374,7 @@ const EINSTEIN_PROMPT_TEMPLATE_TYPE_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prom
1376
1374
  const EINSTEIN_PROMPT_TEMPLATE_OUTPUT_LANG_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-template/(?!.*__)[A-Za-z0-9](?:[A-Za-z0-9_]{0,253}[A-Za-z0-9])?/output-languages$`, 'i');
1377
1375
  const EINSTEIN_LLM_FEEDBACK_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/feedback`, 'i');
1378
1376
  const EINSTEIN_LLM_EMBEDDINGS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/embeddings`, 'i');
1377
+ const EINSTEIN_PROMPT_TEMPLATE_STATUS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/status(\\?.*)?$`, 'i');
1379
1378
  const EINSTEIN_PROMPT_TEMPLATE_VERSION_STATUS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/versions/([A-Za-z0-9_]){1,255}/status(\\?.*)?$`, 'i');
1380
1379
  const DOCUMENT_MATRIX_FETCH_RESULTS = new RegExp(`${CONNECT_BASE_URI}/document-matrix/document-decision/([A-Za-z0-9]){1,18}$`, 'i');
1381
1380
  const NEXTGENSALESAGREEMENTPRICE_PATH = new RegExp(`${CONNECT_BASE_URI}/sales-agreements/([A-Za-z0-9]){1,255}/price`, 'i');
@@ -1688,6 +1687,10 @@ const MILESTONES_MILESTONE_COMPLETED_PATH = new RegExp(`${MILESTONES_BASE_URI}/m
1688
1687
  const GET_APPEXCHANGE_LISTING_PATH = new RegExp(`${APPEXCHANGE_BASE_URI}/search-listings`, 'i');
1689
1688
  const GET_APPEXCHANGE_USER_EVENTS_PATH = new RegExp(`${APPEXCHANGE_BASE_URI}/user-events`, 'i');
1690
1689
  const GET_APPEXCHANGE_LISTING_DETAILS_PATH = new RegExp(`${APPEXCHANGE_BASE_URI}/listings/(a0N[A-Za-z0-9]{15}|[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})$`, 'i');
1690
+ const GET_APPEXCHANGE_ACTION_DETAILS_PATH = new RegExp(`${APPEXCHANGE_BASE_URI}/assets/listings/(a0N[A-Za-z0-9]{15}|[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})/actions/(.*)$`, 'i');
1691
+ const GET_APPEXCHANGE_TOPIC_DETAILS_PATH = new RegExp(`${APPEXCHANGE_BASE_URI}/assets/listings/(a0N[A-Za-z0-9]{15}|[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})/topics/(.*)$`, 'i');
1692
+ const GET_APPEXCHANGE_ASSET_TOPICS_PATH = new RegExp(`${APPEXCHANGE_BASE_URI}/assets/topics(\\?.*)?$`, 'i');
1693
+ const GET_APPEXCHANGE_ASSET_ACTIONS_PATH = new RegExp(`${APPEXCHANGE_BASE_URI}/assets/actions(\\?.*)?$`, 'i');
1691
1694
  const MILESTONES_MILESTONES_DATA_MANAGER_PATH = new RegExp(`${MILESTONES_BASE_URI}/milestones-data-manager/([A-Za-z0-9]){15,18}$`, 'i');
1692
1695
  const UNIFIED_ANALYTICS_SUBSCRIPTIONS_DIGEST_GET = new RegExp(`${UNIFIED_ANALYTICS_BASE_URI}/subscriptions/digest/([A-Za-z0-9_]+){3,50}$`, 'i');
1693
1696
  const UNIFIED_ANALYTICS_SUBSCRIPTIONS_DIGEST_PATCH = new RegExp(`${UNIFIED_ANALYTICS_BASE_URI}/subscriptions/digest/([A-Za-z0-9_]+){3,50}$`, 'i');
@@ -3166,9 +3169,6 @@ const cdpMachineLearning = [
3166
3169
  generateAdapter('get', CDP_MACHINE_LEARNING_BASE_URI, CDP_CONFIGURED_MODEL_COLLECTION, 'CdpMachineLearningController.getConfiguredModels'),
3167
3170
  generateAdapter('post', CDP_MACHINE_LEARNING_BASE_URI, CDP_PREDICTION_COLLECTION, 'CdpMachineLearningController.makePrediction', 'CdpMlPredictInputRepresentation'),
3168
3171
  ];
3169
- const cdpDataTransformExperience = [
3170
- generateAdapter('get', CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI, CDP_DATA_TRANSFORM_EXPERIENCE_CONFIGURATIONS, 'CdpDataTransformExperienceController.getDataTransformsExperienceConfiguration'),
3171
- ];
3172
3172
  const cdpCommunicationCapping = [
3173
3173
  generateAdapter('get', CDP_COMMUNICATION_CAPPING_BASE_URI, CDP_COMMUNICATION_CAPPING_CONFIGURATION, 'CdpCommunicationCappingController.getCommunicationCappingRepresentation'),
3174
3174
  // eslint-disable-next-line @salesforce/lds/oas-body-name-required
@@ -3245,6 +3245,7 @@ const einstein = [
3245
3245
  generateAdapter('post', EINSTEIN_BASE_URI, EINSTEIN_DATA_PROVIDER_INSTANCE_CONFIG_PATH, 'EinsteinLLMController.getDataProviderInstanceConfig', 'dataProviderInstanceConfigInput'),
3246
3246
  // eslint-disable-next-line @salesforce/lds/oas-body-name-required
3247
3247
  generateAdapter('put', EINSTEIN_BASE_URI, EINSTEIN_PROMPT_TEMPLATE_VERSION_STATUS_PATH, 'EinsteinLLMController.putEinsteinPromptTemplateVersionStatus'),
3248
+ generateAdapter('put', EINSTEIN_BASE_URI, EINSTEIN_PROMPT_TEMPLATE_STATUS_PATH, 'EinsteinLLMController.putEinsteinPromptTemplateStatus'),
3248
3249
  generateAdapter('get', EINSTEIN_BASE_URI, EINSTEIN_DATA_PROVIDER_TYPE_CONFIG_PATH, 'EinsteinLLMController.getDataProviderTypeConfigs'),
3249
3250
  ];
3250
3251
  const nextGenSalesAgreementPrice = [
@@ -3638,7 +3639,11 @@ const appFramework = [
3638
3639
  const appexchange = [
3639
3640
  generateAdapter('post', APPEXCHANGE_BASE_URI, GET_APPEXCHANGE_LISTING_PATH, 'AppExchangeInternalController.searchListings', 'input'),
3640
3641
  generateAdapter('get', APPEXCHANGE_BASE_URI, GET_APPEXCHANGE_LISTING_DETAILS_PATH, 'AppExchangeInternalController.getListingDetails'),
3642
+ generateAdapter('get', APPEXCHANGE_BASE_URI, GET_APPEXCHANGE_ASSET_TOPICS_PATH, 'AppExchangeInternalController.getAssetTopics'),
3643
+ generateAdapter('get', APPEXCHANGE_BASE_URI, GET_APPEXCHANGE_ASSET_ACTIONS_PATH, 'AppExchangeInternalController.getAssetActions'),
3641
3644
  generateAdapter('post', APPEXCHANGE_BASE_URI, GET_APPEXCHANGE_USER_EVENTS_PATH, 'AppExchangeInternalController.postAnalytics', 'input'),
3645
+ generateAdapter('get', APPEXCHANGE_BASE_URI, GET_APPEXCHANGE_ACTION_DETAILS_PATH, 'AppExchangeInternalController.getActionDetails'),
3646
+ generateAdapter('get', APPEXCHANGE_BASE_URI, GET_APPEXCHANGE_TOPIC_DETAILS_PATH, 'AppExchangeInternalController.getTopicDetails'),
3642
3647
  ];
3643
3648
  const engagement = [
3644
3649
  generateAdapter('post', PERSONALIZATION_SERVICE_BASE_URI, ENGAGEMENT_SIGNAL_POST, 'EngagementSignalController.createEngagementSignal', 'input'),
@@ -3914,7 +3919,6 @@ registerApiFamilyRoutes(cdpMetadata);
3914
3919
  registerApiFamilyRoutes(cdpQuery);
3915
3920
  registerApiFamilyRoutes(cdpCalculatedInsights);
3916
3921
  registerApiFamilyRoutes(cdpMachineLearning);
3917
- registerApiFamilyRoutes(cdpDataTransformExperience);
3918
3922
  registerApiFamilyRoutes(cdpCommunicationCapping);
3919
3923
  registerApiFamilyRoutes(insurance);
3920
3924
  registerApiFamilyRoutes(cdpSalesExcellence);
@@ -5342,7 +5346,7 @@ const { join, push, unshift } = Array.prototype;
5342
5346
  const { isArray } = Array;
5343
5347
  const { entries, keys } = Object;
5344
5348
 
5345
- const UI_API_BASE_URI = '/services/data/v66.0/ui-api';
5349
+ const UI_API_BASE_URI = '/services/data/v67.0/ui-api';
5346
5350
 
5347
5351
  let instrumentation = {
5348
5352
  aggregateUiChunkCount: (_cb) => { },
@@ -5847,4 +5851,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
5847
5851
  var main = platformNetworkAdapter(auraNetworkAdapter);
5848
5852
 
5849
5853
  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 };
5850
- // version: 1.412.1-054d9a1111
5854
+ // version: 1.414.0-ff06871479
@@ -1 +1 @@
1
- export declare const LWR_APEX_BASE_URI = "/lwr/apex/v66.0";
1
+ export declare const LWR_APEX_BASE_URI = "/lwr/apex/v67.0";
@@ -1,4 +1,4 @@
1
- export declare const BASE_URI = "/services/data/v66.0";
1
+ export declare const BASE_URI = "/services/data/v67.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;
@@ -61,7 +61,6 @@ export declare const FUNDRAISING_BASE_URI: string;
61
61
  export declare const CDP_BASE_URI: string;
62
62
  export declare const CDP_SALES_EXCELLENCE_BASE_URI: string;
63
63
  export declare const CDP_MACHINE_LEARNING_BASE_URI: string;
64
- export declare const CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI: string;
65
64
  export declare const CDP_COMMUNICATION_CAPPING_BASE_URI: string;
66
65
  export declare const CDP_BYOC_BASE_URI: string;
67
66
  export declare const CDP_DOCUMENT_PROCESSING: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.412.1",
3
+ "version": "1.414.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.158.7"
38
38
  },
39
39
  "devDependencies": {
40
- "@salesforce/lds-adapters-uiapi": "^1.412.1",
41
- "@salesforce/lds-aura-storage": "^1.412.1",
42
- "@salesforce/lds-environment-settings": "^1.412.1",
43
- "@salesforce/lds-instrumentation": "^1.412.1",
44
- "@salesforce/lds-network-adapter": "^1.412.1"
40
+ "@salesforce/lds-adapters-uiapi": "^1.414.0",
41
+ "@salesforce/lds-aura-storage": "^1.414.0",
42
+ "@salesforce/lds-environment-settings": "^1.414.0",
43
+ "@salesforce/lds-instrumentation": "^1.414.0",
44
+ "@salesforce/lds-network-adapter": "^1.414.0"
45
45
  },
46
46
  "volta": {
47
47
  "extends": "../../package.json"