@salesforce/lds-network-aura 1.431.0 → 1.433.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/v67.0';
24
+ const BASE_URI = '/services/data/v68.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`;
@@ -472,7 +472,7 @@ router.post((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs`), buildDataG
472
472
  router.put((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs/retry`), buildDataGraphAction('CdpDataGraphController.retryDataGraph'));
473
473
  router.put((path) => path.startsWith(`${CDP_BASE_URI}/data-graphs`), buildDataGraphAction('CdpDataGraphController.editDataGraph'));
474
474
 
475
- const LWR_APEX_BASE_URI = '/lwr/apex/v67.0';
475
+ const LWR_APEX_BASE_URI = '/lwr/apex/v68.0';
476
476
  const ApexController = 'ApexActionController.execute';
477
477
  const CACHE_CONTROL = 'Cache-Control';
478
478
  const X_SFDC_ALLOW_CONTINUATION = 'X-SFDC-Allow-Continuation';
@@ -1553,6 +1553,7 @@ const INSURANCE_CLAIM_CALCULATE_ADJUSTMENTS = new RegExp(`${INSURANCE_CLAIM_BASE
1553
1553
  const INSURANCE_CLAIM_CALCULATE_STANDINGS = new RegExp(`${INSURANCE_BASE_URI}/policy-limit/calculate-standings`, 'i');
1554
1554
  const INSURANCE_CLAIM_PAY_EX_GRATIA_CCPD = new RegExp(`${INSURANCE_CLAIM_BASE_URI}/([A-Za-z0-9_]){15,18}/coverages/([A-Za-z0-9_]){15,18}/payment-details/([A-Za-z0-9_]){15,18}/pay-ex-gratia`, 'i');
1555
1555
  const INSURANCE_CLAIM_PAY_CCPD = new RegExp(`${INSURANCE_CLAIM_BASE_URI}/([A-Za-z0-9_]){15,18}/coverages/([A-Za-z0-9_]){15,18}/payment-details/([A-Za-z0-9_]){15,18}/pay`, 'i');
1556
+ const INSURANCE_CLAIM_BULK_PAY_CCPD = new RegExp(`${INSURANCE_CLAIM_BASE_URI}/claims/coverages/payment-details/bulk-pay`, 'i');
1556
1557
  const insuranceClaim = [
1557
1558
  // eslint-disable-next-line @salesforce/lds/oas-body-name-required
1558
1559
  generateAdapter('post', INSURANCE_CLAIM_BASE_URI, INSURANCE_CLAIM_DELETE_CCPD, 'InsuranceClaimFamilyController.DeleteClaimCoveragePaymentDetail'),
@@ -1565,6 +1566,7 @@ const insuranceClaim = [
1565
1566
  generateAdapter('post', INSURANCE_CLAIM_BASE_URI, INSURANCE_CLAIM_CREATE_CCPD, 'InsuranceClaimFamilyController.CreateClaimCoveragePaymentDetail', 'CreateClaimCoveragePaymentDetailInput'),
1566
1567
  generateAdapter('post', INSURANCE_CLAIM_BASE_URI, INSURANCE_CLAIM_CALCULATE_ADJUSTMENTS, 'InsuranceClaimFamilyController.CalculateAdjustments', 'CalculateAdjustmentsInput'),
1567
1568
  generateAdapter('post', INSURANCE_BASE_URI, INSURANCE_CLAIM_CALCULATE_STANDINGS, 'InsuranceClaimFamilyController.PolicyLimitStandingCalculation', 'InsurancePolicyLimitStandingCalculationInput'),
1569
+ generateAdapter('post', INSURANCE_CLAIM_BASE_URI, INSURANCE_CLAIM_BULK_PAY_CCPD, 'InsuranceClaimFamilyController.BulkPayClaimCoveragePaymentDetail', 'BulkPayClaimCoveragePaymentDetailInput'),
1568
1570
  ];
1569
1571
  const UPDATE_CLAIM = new RegExp(`${CLAIM_BASE_URI}/([A-Za-z0-9_]){15,18}$`, 'i');
1570
1572
  const CLAIM_CREATE_CLAIM_COVERAGE = new RegExp(`${CLAIM_BASE_URI}/([A-Za-z0-9_]){15,18}/coverages`, 'i');
@@ -5369,7 +5371,7 @@ const { join, push, unshift } = Array.prototype;
5369
5371
  const { isArray } = Array;
5370
5372
  const { entries, keys } = Object;
5371
5373
 
5372
- const UI_API_BASE_URI = '/services/data/v67.0/ui-api';
5374
+ const UI_API_BASE_URI = '/services/data/v68.0/ui-api';
5373
5375
 
5374
5376
  let instrumentation = {
5375
5377
  aggregateUiChunkCount: (_cb) => { },
@@ -5874,4 +5876,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
5874
5876
  var main = platformNetworkAdapter(auraNetworkAdapter);
5875
5877
 
5876
5878
  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 };
5877
- // version: 1.431.0-0cb7677555
5879
+ // version: 1.433.0-8a15a98f24
@@ -1 +1 @@
1
- export declare const LWR_APEX_BASE_URI = "/lwr/apex/v67.0";
1
+ export declare const LWR_APEX_BASE_URI = "/lwr/apex/v68.0";
@@ -1,4 +1,4 @@
1
- export declare const BASE_URI = "/services/data/v67.0";
1
+ export declare const BASE_URI = "/services/data/v68.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.431.0",
3
+ "version": "1.433.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.160.4"
38
38
  },
39
39
  "devDependencies": {
40
- "@salesforce/lds-adapters-uiapi": "^1.431.0",
41
- "@salesforce/lds-durable-storage": "^1.431.0",
42
- "@salesforce/lds-environment-settings": "^1.431.0",
43
- "@salesforce/lds-instrumentation": "^1.431.0",
44
- "@salesforce/lds-network-adapter": "^1.431.0"
40
+ "@salesforce/lds-adapters-uiapi": "^1.433.0",
41
+ "@salesforce/lds-durable-storage": "^1.433.0",
42
+ "@salesforce/lds-environment-settings": "^1.433.0",
43
+ "@salesforce/lds-instrumentation": "^1.433.0",
44
+ "@salesforce/lds-network-adapter": "^1.433.0"
45
45
  },
46
46
  "volta": {
47
47
  "extends": "../../package.json"