@salesforce/lds-network-aura 1.307.0 → 1.308.0-dev2

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.
@@ -111,6 +111,7 @@ const GDF_BASE_URI = `${CONNECT_BASE_URI}/gdf`;
111
111
  const GDF_DISCOVERY_FRAMEWORK_BASE_URI = `${CONNECT_BASE_URI}/discovery-framework`;
112
112
  const SERVICE_PLAN_BASE_URI = `${CONNECT_BASE_URI}/service-plan`;
113
113
  const MILESTONES_BASE_URI = `${CONNECT_BASE_URI}/milestones`;
114
+ const ENGMNT_CONFIG_BASE_URI = `${BASE_URI}/engagementsignal`;
114
115
  const CONTENT_LINK_BASE_URI = `${CONNECT_BASE_URI}/content-link`;
115
116
  const LEARNING_ITEM_BASE_URI = `${CONNECT_BASE_URI}/learning-platform`;
116
117
  const APP_FRAMEWORK_BASE_URI = `${BASE_URI}/app-framework`;
@@ -419,7 +420,11 @@ router.post((path) => path.startsWith(`${WAVE_BASE_URI}/soql`), executeSoqlQuery
419
420
  function buildDataGraphAction(actionName, bodyWrapper = 'input') {
420
421
  return (resourceRequest, resourceRequestContext) => {
421
422
  const { body } = resourceRequest;
422
- const buildParameters = {};
423
+ let buildParameters = {};
424
+ // eslint-disable-next-line @salesforce/lds/no-optional-chaining
425
+ if (resourceRequest.method === 'put' && resourceRequest.queryParams) {
426
+ buildParameters = resourceRequest.queryParams;
427
+ }
423
428
  buildParameters[bodyWrapper] = body;
424
429
  const params = buildUiApiParams(buildParameters, resourceRequest);
425
430
  const enrichedConfig = enrichWithSourceContext(resourceRequestContext);
@@ -1200,8 +1205,8 @@ const COMMERCE_CATALOG_MANAGEMENT_COMPOSITE_PRODUCT_UPDATE_PATH = new RegExp(`${
1200
1205
  const COMMERCE_CATALOG_MANAGEMENT_COMPOSITE_VARIATION_CREATE_PATH = new RegExp(`${COMMERCE_CATALOG_MANAGEMENT_BASE_URI}/([A-Z0-9]){15,18}/composite-variations`, 'i');
1201
1206
  const COMMERCE_CATALOG_MANAGEMENT_PRODUCT_ATTRIBUTE_SEARCH_PATH = new RegExp(`${COMMERCE_CATALOG_MANAGEMENT_URI}/search/product-variation-attributes`, 'i');
1202
1207
  const COMMERCE_CHANNELS_PATH = new RegExp(`${COMMERCE_CHANNEL_MANAGEMENT_BASE_URI}/0ZE[A-Za-z0-9]{12,15}`, 'i');
1203
- const SERVICE_PLAN_PATH = new RegExp(`${SERVICE_PLAN_BASE_URI}/execute/1FH([a-zA-Z0-9]){12,15}`, 'i');
1204
- const SERVICE_PLAN_POST_PATH = new RegExp(`${SERVICE_PLAN_BASE_URI}/generateSync/500([a-zA-Z0-9]){12,15}$`, 'i');
1208
+ const SERVICE_PLAN_PATH = new RegExp(`${SERVICE_PLAN_BASE_URI}/execute/([a-zA-Z0-9]){12,15}`, 'i');
1209
+ const SERVICE_PLAN_POST_PATH = new RegExp(`${SERVICE_PLAN_BASE_URI}/generationRequests`, 'i');
1205
1210
  const REMINDER_PATH = new RegExp(`${REMINDER_BASE_URI}`, 'i');
1206
1211
  const PATHASSISTANT_GET_PATH = new RegExp(`${PATHASSISTANT_BASE_URI}/([A-Z0-9]){15,18}$`, 'i');
1207
1212
  const PATHASSISTANT_DAYS_IN_STAGE_PATH = new RegExp(`${PATHASSISTANT_BASE_URI}/([A-Z0-9]){15,18}/daysInStage$`, 'i');
@@ -1235,6 +1240,7 @@ const INSURANCE_ISSUE = new RegExp(`${INSURANCE_BASE_URI}/policies`, 'i');
1235
1240
  const INSURANCE_GET_POLICY = new RegExp(`${INSURANCE_BASE_URI}/policies/([A-Za-z0-9_]){15,18}$`, 'i');
1236
1241
  const INSURANCE_GET_POLICY_LINEITEM = new RegExp(`${INSURANCE_BASE_URI}/policies/([A-Za-z0-9_]){15,18}/policyLineItems/([A-Za-z0-9_]){15,18}$`, 'i');
1237
1242
  const INSURANCE_SEARCH_PRODUCER_SPLIT_ARNG = new RegExp(`${INSURANCE_BASE_URI}/producer-split-arrangements`, 'i');
1243
+ const CREATE_ENGAGEMENT_SIGNAL = new RegExp(`${ENGMNT_CONFIG_BASE_URI}/engagement-signals`, 'i');
1238
1244
  const INSURANCE_COST_CALCULATION_COVERAGE = new RegExp(`${INSURANCE_BASE_URI}/plan-management/coverages/([A-Za-z0-9_]){15,18}/cost`, 'i');
1239
1245
  const INSURANCE_COST_CALCULATION_POLICY = new RegExp(`${INSURANCE_BASE_URI}/plan-management/policies/([A-Za-z0-9_]){15,18}/cost`, 'i');
1240
1246
  const INSURANCE_COST_CALCULATION_RATE_PLAN_LINE_ITEM = new RegExp(`${INSURANCE_BASE_URI}/plan-management/ratePlanLineItems/([A-Za-z0-9_]){15,18}/cost`, 'i');
@@ -1242,6 +1248,8 @@ const INSURANCE_COST_CALCULATION_RATE_PLAN = new RegExp(`${INSURANCE_BASE_URI}/p
1242
1248
  const PRICE_PROTECTION_CLAIM_PATH = new RegExp(`${CONNECT_BASE_URI}/price-protection-claim-execution`, 'i');
1243
1249
  const INSURANCE_PRODUCER_SPLIT_ASSG_VALIDATE = new RegExp(`${INSURANCE_BASE_URI}/split-assignment/validate`, 'i');
1244
1250
  const INSURANCE_PRODUCER_SPLIT_ASSG_SAVE = new RegExp(`${INSURANCE_BASE_URI}/split-assignment/create`, 'i');
1251
+ const INDUSTRIES_CONSTRAINTS_GET_CML_PATH = new RegExp(`${INDUSTRIES_BASE_URI}/constraint/actions/([A-Za-z0-9_]){15,18}/view`, 'i');
1252
+ const INDUSTRIES_CONSTRAINTS_UPDATE_CML_PATH = new RegExp(`${INDUSTRIES_BASE_URI}/constraint/actions/([A-Za-z0-9_]){15,18}/update`, 'i');
1245
1253
  const insurance = [
1246
1254
  generateAdapter('post', INSURANCE_BASE_URI, INSURANCE_RATING, 'InsuranceFoundationFamilyController.insuranceProductRatingPost', 'ProductRatingPostInput'),
1247
1255
  generateAdapter('patch', INSURANCE_BASE_URI, INSURANCE_RATING, 'InsuranceFoundationFamilyController.insuranceProductRatingPatch', 'productRatingPatchInput'),
@@ -1313,10 +1321,12 @@ const OMNI_DESIGNER_GET_DESIGNER_CUSTOMIZATIONS_WARNING = new RegExp(`${OMNI_DES
1313
1321
  const OMNI_DESIGNER_OS_BUILD_BP_DATA_JSON_RESOURCE = new RegExp(`${OMNI_DESIGNER_BASE_URI}/os/build-business-process-data-json`, 'i');
1314
1322
  const OMNI_DESIGNER_UPLOAD_DOCUMENT = new RegExp(`${OMNI_DESIGNER_BASE_URI}/os/document`, 'i');
1315
1323
  const OMNI_DESIGNER_PATCH_EXECUTION_IP = new RegExp(`${OMNI_DESIGNER_BASE_URI}/execute-ip`, 'i');
1324
+ const UNIFIED_ANALYTICS_PUBLISH_MONITORING_EVENTS_PATH = new RegExp(`${BASE_URI}/unified-analytics/admin/monitoring/events$`, 'i');
1316
1325
  const UNIFIED_ANALYTICS_DASHBOARD_COLLECTION_PATH = new RegExp(`${BASE_URI}/unified-analytics/dashboards$`, 'i');
1317
1326
  const UNIFIED_ANALYTICS_FLOW_COLLECTION_PATH = new RegExp(`${BASE_URI}/unified-analytics/flows$`, 'i');
1318
1327
  const UNIFIED_ANALYTICS_FLOW_BY_NAME = new RegExp(`${BASE_URI}/unified-analytics/flows/([A-Za-z0-9_]+){3,50}`, 'i');
1319
1328
  const UNIFIED_ANALYTICS_DASHBOARD_BY_NAME = new RegExp(`${BASE_URI}/unified-analytics/dashboards/([A-Za-z0-9_]+){3,50}$`, 'i');
1329
+ const UNIFIED_ANALYTICS_LOGLINES_BY_NAME = new RegExp(`${BASE_URI}/unified-analytics/loglines$`, 'i');
1320
1330
  const UNIFIED_ANALYTICS_WORKSPACE_COLLECTION_PATH = new RegExp(`${BASE_URI}/unified-analytics/workspaces$`, 'i');
1321
1331
  const UNIFIED_ANALYTICS_WORKSPACE_BY_NAME = new RegExp(`${BASE_URI}/unified-analytics/workspaces/([A-Za-z0-9_]+){3,50}$`, 'i');
1322
1332
  const UNIFIED_ANALYTICS_WORKSPACE_ASSETS = new RegExp(`${BASE_URI}/unified-analytics/workspaces/([A-Za-z0-9_]+){3,50}/assets$`, 'i');
@@ -1348,6 +1358,8 @@ const APP_FRAMEWORK_APPS_POST = APP_FRAMEWORK_APPS_GET;
1348
1358
  const APP_FRAMEWORK_APP_GET = new RegExp(`${APP_FRAMEWORK_BASE_URI}/apps/([^/]+)$`, 'i');
1349
1359
  const APP_FRAMEWORK_APP_DELETE = APP_FRAMEWORK_APP_GET;
1350
1360
  const APP_FRAMEWORK_APP_ASSETS_GET = new RegExp(`${APP_FRAMEWORK_BASE_URI}/apps/([^/]+)/assets$`, 'i');
1361
+ const APP_FRAMEWORK_APP_ACTIVITIES_GET = new RegExp(`${APP_FRAMEWORK_BASE_URI}/apps/([^/]+)/activities$`, 'i');
1362
+ const APP_FRAMEWORK_APP_ACTIVITY_GET = new RegExp(`${APP_FRAMEWORK_BASE_URI}/apps/([^/]+)/activities/([^/])+$`, 'i');
1351
1363
  const APP_FRAMEWORK_TEMPLATES_GET = new RegExp(`${APP_FRAMEWORK_BASE_URI}/templates$`, 'i');
1352
1364
  const APP_FRAMEWORK_TEMPLATE_GET = new RegExp(`${APP_FRAMEWORK_BASE_URI}/templates/([^/]+)$`, 'i');
1353
1365
  const APP_FRAMEWORK_TEMPLATE_CONFIG_GET = new RegExp(`${APP_FRAMEWORK_BASE_URI}/templates/([^/]+)/configuration$`, 'i');
@@ -1367,6 +1379,7 @@ const unifiedAnalytics = [
1367
1379
  generateAdapter('delete', BASE_URI, UNIFIED_ANALYTICS_DELTE_WORKSPACE_ASSET, 'AnalyticsController.deleteWorkspaceAsset', 'deleteWorkspaceAsset'),
1368
1380
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_COLLECTION_PATH, 'AnalyticsController.getDashboards'),
1369
1381
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_BY_NAME, 'AnalyticsController.getDashboard'),
1382
+ generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_LOGLINES_BY_NAME, 'AnalyticsController.createLoglines', 'loglines'),
1370
1383
  generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_COLLECTION_PATH, 'AnalyticsController.createDashboard', 'dashboard'),
1371
1384
  generateAdapter('patch', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_BY_NAME, 'AnalyticsController.updateDashboard', 'dashboard'),
1372
1385
  generateAdapter('delete', BASE_URI, UNIFIED_ANALYTICS_DASHBOARD_BY_NAME, 'AnalyticsController.deleteDashboard'),
@@ -1385,6 +1398,7 @@ const unifiedAnalytics = [
1385
1398
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_FLOW_COLLECTION_PATH, 'AnalyticsController.getFlows'),
1386
1399
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_FLOW_BY_NAME, 'AnalyticsController.getFlowByName'),
1387
1400
  generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_LIBRARY_ASSETS_PATH, 'AnalyticsController.fetchAssets', 'libraryAssetsQueryInput'),
1401
+ generateAdapter('post', BASE_URI, UNIFIED_ANALYTICS_PUBLISH_MONITORING_EVENTS_PATH, 'AnalyticsController.publish', 'events'),
1388
1402
  generateAdapter('get', BASE_URI, UNIFIED_ANALYTICS_SUBSCRIPTIONS_DIGEST_GET, 'AnalyticsController.getSubscriptionDigestConfig'),
1389
1403
  generateAdapter('patch', BASE_URI, UNIFIED_ANALYTICS_SUBSCRIPTIONS_DIGEST_PATCH, 'AnalyticsController.updateSubscriptionDigestConfig', 'digestConfig'),
1390
1404
  ];
@@ -2656,8 +2670,8 @@ const commerceCatalogManagement = [
2656
2670
  generateAdapter('get', COMMERCE_CATALOG_MANAGEMENT_URI, COMMERCE_CATALOG_MANAGEMENT_PRODUCT_ATTRIBUTE_SEARCH_PATH, 'CommerceCatalogManagementController.getProductAttributesAndProductAttributeSets'),
2657
2671
  ];
2658
2672
  const servicePlan = [
2659
- generateAdapter('put', SERVICE_PLAN_BASE_URI, SERVICE_PLAN_PATH, 'ServicePlanController.executeServicePlan', 'servicePlanInputRepresentation'),
2660
- generateAdapter('post', SERVICE_PLAN_BASE_URI, SERVICE_PLAN_POST_PATH, 'ServicePlanController.generateSync', 'ServicePlanPostInput'),
2673
+ generateAdapter('put', SERVICE_PLAN_BASE_URI, SERVICE_PLAN_PATH, 'ServicePlanController.executeServicePlan', 'servicePlanExecutionInputRepresentation'),
2674
+ generateAdapter('post', SERVICE_PLAN_BASE_URI, SERVICE_PLAN_POST_PATH, 'ServicePlanController.generateSync', 'servicePlanGenerationRequest'),
2661
2675
  ];
2662
2676
  const commerceChannelsManagement = [
2663
2677
  generateAdapter('get', COMMERCE_BASE_URI, GET_MANAGEMENT_CHANNELS_PATH, 'ICommerceChannelManagementController.getChannels'),
@@ -2858,6 +2872,7 @@ const SEMANTIC_AUTHORING_METRIC_BY_NAME_PATH = new RegExp(`${SEMANTIC_AUTHORING_
2858
2872
  const SEMANTIC_AUTHORING_SUB_METRICS_BY_MODEL_NAME_PATH = new RegExp(`${SEMANTIC_AUTHORING_BASE_URI}/models/([A-Za-z0-9_-]+)/sub-metrics$`, 'i');
2859
2873
  const SEMANTIC_AUTHORING_SUB_METRIC_BY_NAME_PATH = new RegExp(`${SEMANTIC_AUTHORING_BASE_URI}/models/([A-Za-z0-9_-]+)/sub-metrics/([A-Za-z0-9_-]+)$`, 'i');
2860
2874
  const SEMANTIC_AUTHORING_SUB_METRICS_BY_METRICS_NAME_PATH = new RegExp(`${SEMANTIC_AUTHORING_BASE_URI}/models/([A-Za-z0-9_-]+)/metric-api-names/(([a-zA-Z0-9_-]+,)*[a-zA-Z0-9_-]+)/sub-metrics$`, 'i');
2875
+ const SEMANTIC_AUTHORING_SUB_METRICS_BY_ID_NAME_PATH = new RegExp(`${SEMANTIC_AUTHORING_BASE_URI}/sub-metrics/(([a-zA-Z0-9_-]+,)*[a-zA-Z0-9_-]+)$`, 'i');
2861
2876
  const SEMANTIC_AUTHORING_POST_SUB_METRIC_PATH = new RegExp(`${SEMANTIC_AUTHORING_BASE_URI}/models/([A-Za-z0-9_-]+)/sub-metrics$`, 'i');
2862
2877
  const SEMANTIC_AUTHORING_DELETE_SUB_METRIC_PATH = new RegExp(`${SEMANTIC_AUTHORING_BASE_URI}/models/([A-Za-z0-9_-]+)/sub-metrics/([A-Za-z0-9_-]+)$`, 'i');
2863
2878
  const semanticAuthoring = [
@@ -2868,6 +2883,7 @@ const semanticAuthoring = [
2868
2883
  generateAdapter('get', SEMANTIC_AUTHORING_BASE_URI, SEMANTIC_AUTHORING_SUB_METRIC_BY_NAME_PATH, 'SemanticSubMetricController.getSemanticSubMetric'),
2869
2884
  generateAdapter('get', SEMANTIC_AUTHORING_BASE_URI, SEMANTIC_AUTHORING_SUB_METRICS_BY_MODEL_NAME_PATH, 'SemanticSubMetricController.getSemanticSubMetrics'),
2870
2885
  generateAdapter('get', SEMANTIC_AUTHORING_BASE_URI, SEMANTIC_AUTHORING_SUB_METRICS_BY_METRICS_NAME_PATH, 'SemanticSubMetricController.getSemanticMetricsToSubMetrics'),
2886
+ generateAdapter('get', SEMANTIC_AUTHORING_BASE_URI, SEMANTIC_AUTHORING_SUB_METRICS_BY_ID_NAME_PATH, 'SemanticSubMetricController.getSemanticSubMetricsById'),
2871
2887
  generateAdapter('post', SEMANTIC_AUTHORING_BASE_URI, SEMANTIC_AUTHORING_POST_SUB_METRIC_PATH, 'SemanticSubMetricController.createSemanticSubMetric', 'input'),
2872
2888
  generateAdapter('delete', SEMANTIC_AUTHORING_BASE_URI, SEMANTIC_AUTHORING_DELETE_SUB_METRIC_PATH, 'SemanticSubMetricController.deleteSemanticSubMetric'),
2873
2889
  ];
@@ -2901,10 +2917,23 @@ const appFramework = [
2901
2917
  generateAdapter('get', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_APP_GET, 'AppFrameworkController.getApp'),
2902
2918
  generateAdapter('delete', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_APP_DELETE, 'AppFrameworkController.deleteApp'),
2903
2919
  generateAdapter('get', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_APP_ASSETS_GET, 'AppFrameworkController.getAppAssets'),
2920
+ generateAdapter('get', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_APP_ACTIVITIES_GET, 'AppFrameworkController.getAppActivities'),
2921
+ generateAdapter('get', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_APP_ACTIVITY_GET, 'AppFrameworkController.getAppActivity'),
2904
2922
  generateAdapter('get', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_TEMPLATES_GET, 'AppFrameworkController.getTemplates'),
2905
2923
  generateAdapter('get', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_TEMPLATE_GET, 'AppFrameworkController.getTemplate'),
2906
2924
  generateAdapter('get', APP_FRAMEWORK_BASE_URI, APP_FRAMEWORK_TEMPLATE_CONFIG_GET, 'AppFrameworkController.getTemplateConfig'),
2907
2925
  ];
2926
+ const engagement = [
2927
+ generateAdapter('post', ENGMNT_CONFIG_BASE_URI, CREATE_ENGAGEMENT_SIGNAL, 'EngagementSignalServiceController.createEngagementSignal', 'input'),
2928
+ ];
2929
+ const constraints = [
2930
+ generateAdapter('get', INDUSTRIES_BASE_URI, INDUSTRIES_CONSTRAINTS_GET_CML_PATH, 'IConstraintServiceResourceFamilyController.view'),
2931
+ generateAdapter('patch', INDUSTRIES_BASE_URI, INDUSTRIES_CONSTRAINTS_UPDATE_CML_PATH, 'IConstraintServiceResourceFamilyController.update', 'input'),
2932
+ ];
2933
+ const SF_DRIVE_GET_CREDENTIALS_PATH = new RegExp(`${CDP_BASE_URI}/sf-drive/actions/generate-credential$`, 'i');
2934
+ const sfDrive = [
2935
+ generateAdapter('post', CDP_BASE_URI, SF_DRIVE_GET_CREDENTIALS_PATH, 'SfDriveController.generateSFDriveCredentials', 'generateSFDriveCredentialsInput'),
2936
+ ];
2908
2937
  registerApiFamilyRoutes(homeHealth);
2909
2938
  registerApiFamilyRoutes(providerNetworkManagement);
2910
2939
  registerApiFamilyRoutes(decisiontable);
@@ -3023,12 +3052,15 @@ registerApiFamilyRoutes(semanticAuthoring);
3023
3052
  registerApiFamilyRoutes(payments);
3024
3053
  registerApiFamilyRoutes(gdfDch);
3025
3054
  registerApiFamilyRoutes(milestones);
3055
+ registerApiFamilyRoutes(engagement);
3026
3056
  registerApiFamilyRoutes(serviceEmployee);
3027
3057
  registerApiFamilyRoutes(channelRevenueManagement);
3028
3058
  registerApiFamilyRoutes(learning);
3029
3059
  registerApiFamilyRoutes(appFramework);
3030
3060
  registerApiFamilyRoutes(salesTransactionContexts);
3031
3061
  registerApiFamilyRoutes(amendRenewCancelAssets);
3062
+ registerApiFamilyRoutes(constraints);
3063
+ registerApiFamilyRoutes(sfDrive);
3032
3064
 
3033
3065
  const UI_API_BASE_URI$1 = `${BASE_URI}/ui-api`;
3034
3066
  const ACTION_CONFIG = {
@@ -4874,4 +4906,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
4874
4906
  var main = platformNetworkAdapter(auraNetworkAdapter);
4875
4907
 
4876
4908
  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 };
4877
- // version: 1.307.0-1e74878a83
4909
+ // version: 1.308.0-dev2-25744af9b6
@@ -92,6 +92,7 @@ export declare const UNIFIED_ANALYTICS_URI: string;
92
92
  export declare const GDF_DISCOVERY_FRAMEWORK_BASE_URI: string;
93
93
  export declare const SERVICE_PLAN_BASE_URI: string;
94
94
  export declare const MILESTONES_BASE_URI: string;
95
+ export declare const ENGMNT_CONFIG_BASE_URI: string;
95
96
  export declare const CONTENT_LINK_BASE_URI: string;
96
97
  export declare const LEARNING_ITEM_BASE_URI: string;
97
98
  export declare const APP_FRAMEWORK_BASE_URI: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.307.0",
3
+ "version": "1.308.0-dev2",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",
@@ -34,14 +34,14 @@
34
34
  "release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-network-aura"
35
35
  },
36
36
  "dependencies": {
37
- "@luvio/engine": "0.156.3"
37
+ "@luvio/engine": "0.156.4-dev1"
38
38
  },
39
39
  "devDependencies": {
40
- "@salesforce/lds-adapters-uiapi": "^1.307.0",
41
- "@salesforce/lds-aura-storage": "^1.307.0",
42
- "@salesforce/lds-environment-settings": "^1.307.0",
43
- "@salesforce/lds-instrumentation": "^1.307.0",
44
- "@salesforce/lds-network-adapter": "^1.307.0"
40
+ "@salesforce/lds-adapters-uiapi": "^1.308.0-dev2",
41
+ "@salesforce/lds-aura-storage": "^1.308.0-dev2",
42
+ "@salesforce/lds-environment-settings": "^1.308.0-dev2",
43
+ "@salesforce/lds-instrumentation": "^1.308.0-dev2",
44
+ "@salesforce/lds-network-adapter": "^1.308.0-dev2"
45
45
  },
46
46
  "volta": {
47
47
  "extends": "../../package.json"