@salesforce/lds-runtime-aura 1.404.0-dev4 → 1.404.0-dev6

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.
@@ -22,8 +22,9 @@ import useCmpDefPredictions from '@salesforce/gate/lds.pdl.useCmpDefPredictions'
22
22
  import applyPredictionRequestLimit from '@salesforce/gate/lds.pdl.applyRequestLimit';
23
23
  import useLocalStorage from '@salesforce/gate/lds.pdl.useLocalStorage';
24
24
  import useOneStoreGraphql from '@salesforce/gate/lds.oneStoreGraphqlEnabled.ltng';
25
+ import canCombineRecordLayoutRequests from '@salesforce/gate/lds.pdl.canCombineRecordLayoutRequests';
25
26
  import { GetApexWireAdapterFactory, registerPrefetcher as registerPrefetcher$1 } from 'force/ldsAdaptersApex';
26
- import { instrument, getRecordAvatarsAdapterFactory, getRecordAdapterFactory, coerceFieldIdArray, getRecordsAdapterFactory, getRecordActionsAdapterFactory, getObjectInfosAdapterFactory, coerceObjectIdArray, getObjectInfoAdapterFactory, coerceObjectId, getRelatedListsActionsAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByObjectNameAdapterFactory, getListRecordsByNameAdapterFactory, getListObjectInfoAdapterFactory, getRelatedListsInfoAdapterFactory, getRelatedListActionsAdapterFactory, getRecordId18Array, buildRecordRepKeyFromId, configuration, InMemoryRecordRepresentationQueryEvaluator, UiApiNamespace, RecordRepresentationRepresentationType, registerPrefetcher, RecordRepresentationVersion } from 'force/ldsAdaptersUiapi';
27
+ import { instrument, getRecordAvatarsAdapterFactory, getRecordAdapterFactory, coerceFieldIdArray, coerceLayoutTypeArray, coerceLayoutModeArray, getRecordsAdapterFactory, getRecordActionsAdapterFactory, getObjectInfosAdapterFactory, coerceObjectIdArray, getObjectInfoAdapterFactory, coerceObjectId, getRelatedListsActionsAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByObjectNameAdapterFactory, getListRecordsByNameAdapterFactory, getListObjectInfoAdapterFactory, getRelatedListsInfoAdapterFactory, getRelatedListActionsAdapterFactory, getRecordId18Array, buildRecordRepKeyFromId, configuration, InMemoryRecordRepresentationQueryEvaluator, UiApiNamespace, RecordRepresentationRepresentationType, registerPrefetcher, RecordRepresentationVersion } from 'force/ldsAdaptersUiapi';
27
28
  import { getInstrumentation } from 'o11y/client';
28
29
  import { findExecutableOperation, buildGraphQLInputExtension, addTypenameToDocument } from 'force/luvioGraphqlNormalization';
29
30
  import { print, wrapConfigAndVerify, resolveAst, validateGraphQLOperations } from 'force/luvioOnestoreGraphqlParser';
@@ -470,7 +471,12 @@ class AuraNetworkCommand extends NetworkCommand$1 {
470
471
  this.coerceAuraErrors
471
472
  );
472
473
  } else if (this.shouldUseFetch()) {
473
- return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
474
+ const params = this.fetchParams;
475
+ try {
476
+ return this.convertFetchResponseToData(this.services.fetch(...params));
477
+ } catch (reason) {
478
+ return resolvedPromiseLike$2(err$1(toError(reason)));
479
+ }
474
480
  }
475
481
  return resolvedPromiseLike$2(err$1(toError("Aura/Fetch network services not found")));
476
482
  }
@@ -1068,7 +1074,12 @@ let AuraCacheControlCommand$1 = class AuraCacheControlCommand extends CacheContr
1068
1074
  (errs) => this.coerceAuraErrors(errs)
1069
1075
  );
1070
1076
  } else if (this.shouldUseFetch()) {
1071
- return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
1077
+ const params = this.fetchParams;
1078
+ try {
1079
+ return this.convertFetchResponseToData(this.services.fetch(...params));
1080
+ } catch (reason) {
1081
+ return resolvedPromiseLike$2(err$1(toError(reason)));
1082
+ }
1072
1083
  }
1073
1084
  return resolvedPromiseLike$2(err$1(toError("Aura/Fetch network services not found")));
1074
1085
  }
@@ -1211,7 +1222,12 @@ class AuraCacheControlCommand extends CacheControlCommand {
1211
1222
  (errs) => this.coerceAuraErrors(errs)
1212
1223
  );
1213
1224
  } else if (this.shouldUseFetch()) {
1214
- return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
1225
+ const params = this.fetchParams;
1226
+ try {
1227
+ return this.convertFetchResponseToData(this.services.fetch(...params));
1228
+ } catch (reason) {
1229
+ return resolvedPromiseLike$2(err$1(toError(reason)));
1230
+ }
1215
1231
  }
1216
1232
  return resolvedPromiseLike$2(err$1(toError("Aura/Fetch network services not found")));
1217
1233
  }
@@ -1329,7 +1345,11 @@ class HttpCacheControlCommand extends CacheControlCommand {
1329
1345
  return this.fetch();
1330
1346
  }
1331
1347
  fetch() {
1332
- return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
1348
+ try {
1349
+ return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
1350
+ } catch (reason) {
1351
+ return resolvedPromiseLike$2(err$1(toError(reason)));
1352
+ }
1333
1353
  }
1334
1354
  async coerceError(errorResponse) {
1335
1355
  return toError(errorResponse.statusText);
@@ -1532,7 +1552,11 @@ const _FetchNetworkCommand = class _FetchNetworkCommand extends NetworkCommand {
1532
1552
  this.services = services;
1533
1553
  }
1534
1554
  fetch() {
1535
- return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
1555
+ try {
1556
+ return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
1557
+ } catch (reason) {
1558
+ return resolvedPromiseLike$2(err$1(toError(reason)));
1559
+ }
1536
1560
  }
1537
1561
  async coerceError(errorResponse) {
1538
1562
  return toError(errorResponse.statusText);
@@ -1588,7 +1612,11 @@ class StreamingCommand extends BaseCommand {
1588
1612
  this.services = services;
1589
1613
  }
1590
1614
  execute() {
1591
- return this.convertFetchStreamResponseToData(this.services.fetch(...this.fetchParams));
1615
+ try {
1616
+ return this.convertFetchStreamResponseToData(this.services.fetch(...this.fetchParams));
1617
+ } catch (reason) {
1618
+ return resolvedPromiseLike$2(err$1(toError(reason)));
1619
+ }
1592
1620
  }
1593
1621
  convertFetchStreamResponseToData(response) {
1594
1622
  return response.then(
@@ -2424,9 +2452,13 @@ class OnlyIfCachedCacheControlStrategy extends CacheControlStrategy {
2424
2452
  }
2425
2453
  get expiredChecks() {
2426
2454
  return [
2427
- (cacheControlMetadata) => cacheControlMetadata.type === "no-store"
2455
+ ...super.expiredChecks,
2456
+ (cacheControlMetadata) => cacheControlMetadata.type === "no-cache"
2428
2457
  ];
2429
2458
  }
2459
+ // Note: If we add support for `stale-while-revalidate` in the future, we may
2460
+ // need to further override expiredChecks to allow stale entries that are within the
2461
+ // stale-while-revalidate window to be returned for only-if-cached requests.
2430
2462
  collectCacheHitInstrumentation(startTime, instrumentationAttributes) {
2431
2463
  if (this.services.instrumentation) {
2432
2464
  const meter = this.services.instrumentation.metrics.getMeter("onestore");
@@ -2666,7 +2698,7 @@ function buildServiceDescriptor$d(luvio) {
2666
2698
  },
2667
2699
  };
2668
2700
  }
2669
- // version: 1.404.0-dev4-42147f9daa
2701
+ // version: 1.404.0-dev6-7d450dc392
2670
2702
 
2671
2703
  /*!
2672
2704
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -2782,11 +2814,26 @@ class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheContro
2782
2814
  return buildSubscribableResult$1(result, this.buildSubscribe(), () => this.refresh());
2783
2815
  });
2784
2816
  } else if (this.shouldUseFetch()) {
2785
- return this.convertFetchResponseToData(
2786
- this.services.fetch(...this.originalFetchParams)
2787
- ).then((result) => {
2788
- return buildSubscribableResult$1(result, this.buildSubscribe(), () => this.refresh());
2789
- });
2817
+ const params = this.originalFetchParams;
2818
+ try {
2819
+ return this.convertFetchResponseToData(this.services.fetch(...params)).then(
2820
+ (result) => {
2821
+ return buildSubscribableResult$1(
2822
+ result,
2823
+ this.buildSubscribe(),
2824
+ () => this.refresh()
2825
+ );
2826
+ }
2827
+ );
2828
+ } catch (reason) {
2829
+ return resolvedPromiseLike$2(
2830
+ buildSubscribableResult$1(
2831
+ err$1(toError(reason)),
2832
+ this.buildSubscribe(),
2833
+ () => this.refresh()
2834
+ )
2835
+ );
2836
+ }
2790
2837
  }
2791
2838
  return resolvedPromiseLike$2(
2792
2839
  buildSubscribableResult$1(
@@ -3004,7 +3051,7 @@ function buildServiceDescriptor$9(notifyRecordUpdateAvailable, getNormalizedLuvi
3004
3051
  },
3005
3052
  };
3006
3053
  }
3007
- // version: 1.404.0-dev4-42147f9daa
3054
+ // version: 1.404.0-dev6-7d450dc392
3008
3055
 
3009
3056
  /*!
3010
3057
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -4707,7 +4754,7 @@ function getEnvironmentSetting(name) {
4707
4754
  }
4708
4755
  return undefined;
4709
4756
  }
4710
- // version: 1.404.0-dev4-42147f9daa
4757
+ // version: 1.404.0-dev6-7d450dc392
4711
4758
 
4712
4759
  /**
4713
4760
  * Observability / Critical Availability Program (230+)
@@ -6775,9 +6822,31 @@ function isFieldsRequest(config) {
6775
6822
  config.modes === undefined &&
6776
6823
  (config.fields !== undefined || config.optionalFields !== undefined));
6777
6824
  }
6825
+ function isCombinableLayoutRequest(config) {
6826
+ // We will only consider a layout request combinable if it is a single layout type request
6827
+ // and the only request parameters are:
6828
+ // - layoutTypes
6829
+ // - optionalFields
6830
+ // - modes
6831
+ const hasExtraParams = config.childRelationships !== undefined ||
6832
+ config.pageSize !== undefined ||
6833
+ config.updateMru !== undefined;
6834
+ return config.layoutTypes !== undefined && !hasExtraParams;
6835
+ }
6836
+ function areCombinableLayoutRequests(reqA, reqB) {
6837
+ const normilizedLayoutTypesA = coerceLayoutTypeArray(reqA.layoutTypes) || [];
6838
+ const normilizedLayoutTypesB = coerceLayoutTypeArray(reqB.layoutTypes) || [];
6839
+ // Let's only combine when the layoutTypes are the same
6840
+ return (isCombinableLayoutRequest(reqA) &&
6841
+ isCombinableLayoutRequest(reqB) &&
6842
+ reqA.recordId === reqB.recordId &&
6843
+ normilizedLayoutTypesA.length === normilizedLayoutTypesB.length &&
6844
+ normilizedLayoutTypesA.every((type, index) => type === normilizedLayoutTypesB[index]));
6845
+ }
6778
6846
  class GetRecordRequestStrategy extends LuvioAdapterRequestStrategy {
6779
- constructor() {
6780
- super(...arguments);
6847
+ constructor(luvio, canCombineRecordLayoutRequests = false) {
6848
+ super(luvio);
6849
+ this.canCombineRecordLayoutRequests = canCombineRecordLayoutRequests;
6781
6850
  this.adapterName = GET_RECORD_ADAPTER_NAME;
6782
6851
  this.adapterFactory = getRecordAdapterFactory;
6783
6852
  }
@@ -6806,10 +6875,41 @@ class GetRecordRequestStrategy extends LuvioAdapterRequestStrategy {
6806
6875
  };
6807
6876
  }
6808
6877
  canCombine(reqA, reqB) {
6809
- // must be same record and
6810
- return reqA.recordId === reqB.recordId && isFieldsRequest(reqA) && isFieldsRequest(reqB);
6878
+ // must be same record and either both are fields requests or both are combinable layout requests
6879
+ return (reqA.recordId === reqB.recordId &&
6880
+ ((isFieldsRequest(reqA) && isFieldsRequest(reqB)) ||
6881
+ (this.canCombineRecordLayoutRequests && areCombinableLayoutRequests(reqA, reqB))));
6811
6882
  }
6812
6883
  combineRequests(reqA, reqB) {
6884
+ if (isFieldsRequest(reqA)) {
6885
+ return this.combineFieldsRequests(reqA, reqB);
6886
+ }
6887
+ else {
6888
+ return this.combineLayoutRequests(reqA, reqB);
6889
+ }
6890
+ }
6891
+ combineLayoutRequests(reqA, reqB) {
6892
+ const combined = {
6893
+ recordId: reqA.recordId,
6894
+ layoutTypes: coerceLayoutTypeArray(reqA.layoutTypes),
6895
+ };
6896
+ // combine Modes.
6897
+ // Note: the || ['View'] is important; it is to cover the case in which it needs to
6898
+ // combine mode: undefined (defaults to View) with mode: ['something else than View']
6899
+ const modeA = coerceLayoutModeArray(reqA.modes) || ['View'];
6900
+ const modeB = coerceLayoutModeArray(reqB.modes) || ['View'];
6901
+ if (reqA.modes !== undefined || reqB.modes !== undefined) {
6902
+ combined.modes = Array.from(new Set([...modeA, ...modeB]));
6903
+ }
6904
+ // combine Optional Fields.
6905
+ const optionalFieldsA = coerceFieldIdArray(reqA.optionalFields, COERCE_FIELD_ID_ARRAY_OPTIONS) || [];
6906
+ const optionalFieldsB = coerceFieldIdArray(reqB.optionalFields, COERCE_FIELD_ID_ARRAY_OPTIONS) || [];
6907
+ if (optionalFieldsA !== undefined || optionalFieldsB !== undefined) {
6908
+ combined.optionalFields = Array.from(new Set([...optionalFieldsA, ...optionalFieldsB]));
6909
+ }
6910
+ return combined;
6911
+ }
6912
+ combineFieldsRequests(reqA, reqB) {
6813
6913
  const fields = new Set();
6814
6914
  const optionalFields = new Set();
6815
6915
  if (reqA.fields !== undefined) {
@@ -9495,7 +9595,7 @@ function whenPredictionsReady(callback) {
9495
9595
  }
9496
9596
  function setupPredictivePrefetcher(luvio) {
9497
9597
  const allStrategies = [
9498
- new GetRecordRequestStrategy(luvio),
9598
+ new GetRecordRequestStrategy(luvio, canCombineRecordLayoutRequests.isOpen({ fallback: false })),
9499
9599
  new GetRecordsRequestStrategy(luvio),
9500
9600
  new GetRecordActionsRequestStrategy(luvio),
9501
9601
  new GetRecordAvatarsRequestStrategy(luvio),
@@ -9788,4 +9888,4 @@ function ldsEngineCreator() {
9788
9888
  }
9789
9889
 
9790
9890
  export { LexRequestStrategy, PdlRequestPriority, buildPredictorForContext, ldsEngineCreator as default, initializeLDS, initializeOneStore, notifyUpdateAvailableFactory, registerRequestStrategy, saveRequestAsPrediction, unregisterRequestStrategy, whenPredictionsReady };
9791
- // version: 1.404.0-dev4-e7390885d6
9891
+ // version: 1.404.0-dev6-37e463b2dc
@@ -1,3 +1,4 @@
1
+ import type { Luvio } from '@luvio/engine';
1
2
  import type { GetRecordConfig } from '@salesforce/lds-adapters-uiapi';
2
3
  import { LuvioAdapterRequestStrategy } from './luvio-adapter-request-strategy';
3
4
  export type GetRecordRequest = {
@@ -9,12 +10,16 @@ type GetRecordContext = {
9
10
  };
10
11
  export declare const GET_RECORD_ADAPTER_NAME = "getRecord";
11
12
  export declare class GetRecordRequestStrategy extends LuvioAdapterRequestStrategy<GetRecordConfig, GetRecordRequest, GetRecordContext> {
13
+ private readonly canCombineRecordLayoutRequests;
12
14
  adapterName: string;
13
15
  adapterFactory: import("@luvio/engine").AdapterFactory<GetRecordConfig, import("@salesforce/lds-adapters-uiapi").RecordRepresentation>;
16
+ constructor(luvio: Luvio, canCombineRecordLayoutRequests?: boolean);
14
17
  buildConcreteRequest(similarRequest: GetRecordRequest, context: GetRecordContext): GetRecordRequest;
15
18
  transformForSave(request: GetRecordRequest): GetRecordRequest;
16
19
  canCombine(reqA: GetRecordConfig, reqB: GetRecordConfig): boolean;
17
20
  combineRequests(reqA: GetRecordConfig, reqB: GetRecordConfig): GetRecordConfig;
21
+ combineLayoutRequests(reqA: GetRecordConfig, reqB: GetRecordConfig): GetRecordConfig;
22
+ combineFieldsRequests(reqA: GetRecordConfig, reqB: GetRecordConfig): GetRecordConfig;
18
23
  isContextDependent(context: GetRecordContext, request: GetRecordRequest): boolean;
19
24
  transformForSaveSimilarRequest(request: GetRecordRequest): GetRecordRequest;
20
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-runtime-aura",
3
- "version": "1.404.0-dev4",
3
+ "version": "1.404.0-dev6",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS engine for Aura runtime",
6
6
  "main": "dist/ldsEngineCreator.js",
@@ -34,49 +34,49 @@
34
34
  "release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-aura"
35
35
  },
36
36
  "devDependencies": {
37
- "@conduit-client/service-provisioner": "3.2.0",
38
- "@conduit-client/tools-core": "3.2.0",
39
- "@salesforce/lds-adapters-apex": "^1.404.0-dev4",
40
- "@salesforce/lds-adapters-uiapi": "^1.404.0-dev4",
41
- "@salesforce/lds-ads-bridge": "^1.404.0-dev4",
42
- "@salesforce/lds-aura-storage": "^1.404.0-dev4",
43
- "@salesforce/lds-bindings": "^1.404.0-dev4",
44
- "@salesforce/lds-instrumentation": "^1.404.0-dev4",
45
- "@salesforce/lds-network-aura": "^1.404.0-dev4",
46
- "@salesforce/lds-network-fetch": "^1.404.0-dev4",
37
+ "@conduit-client/service-provisioner": "3.7.0-dev1",
38
+ "@conduit-client/tools-core": "3.7.0-dev1",
39
+ "@salesforce/lds-adapters-apex": "^1.404.0-dev6",
40
+ "@salesforce/lds-adapters-uiapi": "^1.404.0-dev6",
41
+ "@salesforce/lds-ads-bridge": "^1.404.0-dev6",
42
+ "@salesforce/lds-aura-storage": "^1.404.0-dev6",
43
+ "@salesforce/lds-bindings": "^1.404.0-dev6",
44
+ "@salesforce/lds-instrumentation": "^1.404.0-dev6",
45
+ "@salesforce/lds-network-aura": "^1.404.0-dev6",
46
+ "@salesforce/lds-network-fetch": "^1.404.0-dev6",
47
47
  "jwt-encode": "1.0.1"
48
48
  },
49
49
  "dependencies": {
50
- "@conduit-client/command-aura-graphql-normalized-cache-control": "3.2.0",
51
- "@conduit-client/command-aura-network": "3.2.0",
52
- "@conduit-client/command-aura-normalized-cache-control": "3.2.0",
53
- "@conduit-client/command-aura-resource-cache-control": "3.2.0",
54
- "@conduit-client/command-fetch-network": "3.2.0",
55
- "@conduit-client/command-http-graphql-normalized-cache-control": "3.2.0",
56
- "@conduit-client/command-http-normalized-cache-control": "3.2.0",
57
- "@conduit-client/command-ndjson": "3.2.0",
58
- "@conduit-client/command-network": "3.2.0",
59
- "@conduit-client/command-sse": "3.2.0",
60
- "@conduit-client/command-streaming": "3.2.0",
61
- "@conduit-client/service-aura-network": "3.2.0",
62
- "@conduit-client/service-bindings-imperative": "3.2.0",
63
- "@conduit-client/service-bindings-lwc": "3.2.0",
64
- "@conduit-client/service-cache": "3.2.0",
65
- "@conduit-client/service-cache-control": "3.2.0",
66
- "@conduit-client/service-cache-inclusion-policy": "3.2.0",
67
- "@conduit-client/service-feature-flags": "3.2.0",
68
- "@conduit-client/service-fetch-network": "3.2.0",
69
- "@conduit-client/service-instrument-command": "3.2.0",
70
- "@conduit-client/service-pubsub": "3.2.0",
71
- "@conduit-client/service-store": "3.2.0",
72
- "@conduit-client/utils": "3.2.0",
50
+ "@conduit-client/command-aura-graphql-normalized-cache-control": "3.7.0-dev1",
51
+ "@conduit-client/command-aura-network": "3.7.0-dev1",
52
+ "@conduit-client/command-aura-normalized-cache-control": "3.7.0-dev1",
53
+ "@conduit-client/command-aura-resource-cache-control": "3.7.0-dev1",
54
+ "@conduit-client/command-fetch-network": "3.7.0-dev1",
55
+ "@conduit-client/command-http-graphql-normalized-cache-control": "3.7.0-dev1",
56
+ "@conduit-client/command-http-normalized-cache-control": "3.7.0-dev1",
57
+ "@conduit-client/command-ndjson": "3.7.0-dev1",
58
+ "@conduit-client/command-network": "3.7.0-dev1",
59
+ "@conduit-client/command-sse": "3.7.0-dev1",
60
+ "@conduit-client/command-streaming": "3.7.0-dev1",
61
+ "@conduit-client/service-aura-network": "3.7.0-dev1",
62
+ "@conduit-client/service-bindings-imperative": "3.7.0-dev1",
63
+ "@conduit-client/service-bindings-lwc": "3.7.0-dev1",
64
+ "@conduit-client/service-cache": "3.7.0-dev1",
65
+ "@conduit-client/service-cache-control": "3.7.0-dev1",
66
+ "@conduit-client/service-cache-inclusion-policy": "3.7.0-dev1",
67
+ "@conduit-client/service-feature-flags": "3.7.0-dev1",
68
+ "@conduit-client/service-fetch-network": "3.7.0-dev1",
69
+ "@conduit-client/service-instrument-command": "3.7.0-dev1",
70
+ "@conduit-client/service-pubsub": "3.7.0-dev1",
71
+ "@conduit-client/service-store": "3.7.0-dev1",
72
+ "@conduit-client/utils": "3.7.0-dev1",
73
73
  "@luvio/network-adapter-composable": "0.158.7",
74
74
  "@luvio/network-adapter-fetch": "0.158.7",
75
75
  "@lwc/state": "^0.23.0",
76
- "@salesforce/lds-adapters-onestore-graphql": "^1.404.0-dev4",
77
- "@salesforce/lds-adapters-uiapi-lex": "^1.404.0-dev4",
78
- "@salesforce/lds-luvio-service": "^1.404.0-dev4",
79
- "@salesforce/lds-luvio-uiapi-records-service": "^1.404.0-dev4"
76
+ "@salesforce/lds-adapters-onestore-graphql": "^1.404.0-dev6",
77
+ "@salesforce/lds-adapters-uiapi-lex": "^1.404.0-dev6",
78
+ "@salesforce/lds-luvio-service": "^1.404.0-dev6",
79
+ "@salesforce/lds-luvio-uiapi-records-service": "^1.404.0-dev6"
80
80
  },
81
81
  "luvioBundlesize": [
82
82
  {
@@ -84,7 +84,7 @@
84
84
  "maxSize": {
85
85
  "none": "350 kB",
86
86
  "min": "190 kB",
87
- "compressed": "56 kB"
87
+ "compressed": "57 kB"
88
88
  }
89
89
  }
90
90
  ],