@salesforce/lds-runtime-aura 1.328.0 → 1.329.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.
@@ -33,6 +33,7 @@ import { REFRESH_ADAPTER_EVENT, ADAPTER_UNFULFILLED_ERROR, instrument as instrum
33
33
  import { counter, registerCacheStats, perfStart, perfEnd, registerPeriodicLogger, interaction, timer } from 'instrumentation/service';
34
34
  import { instrument as instrument$4 } from 'force/adsBridge';
35
35
  import { withRegistration, register, setDefaultLuvio } from 'force/ldsEngine';
36
+ import useHotspotLimit from '@salesforce/gate/lds.pdl.useHotspotLimit';
36
37
  import { createStorage, clearStorages } from 'force/ldsStorage';
37
38
  import useHttpInsteadAuraTransport from '@salesforce/gate/lds.useHttpInsteadAuraTransport';
38
39
  import { ThirdPartyTracker } from 'instrumentation:beaconLib';
@@ -2170,11 +2171,20 @@ class LuvioAdapterRequestStrategy extends LexRequestStrategy {
2170
2171
  super();
2171
2172
  this.luvio = luvio;
2172
2173
  }
2173
- execute(config, requestContext) {
2174
- return this.adapterFactory(this.luvio)(config, {
2174
+ execute(config, options = {}) {
2175
+ return this.adapterFactory(this.luvio)(config, this.createAdapterContext(options));
2176
+ }
2177
+ createAdapterContext(options) {
2178
+ return {
2175
2179
  ...DEFAULT_RESOURCE_CONTEXT,
2176
- ...requestContext,
2177
- });
2180
+ sourceContext: {
2181
+ ...DEFAULT_RESOURCE_CONTEXT.sourceContext,
2182
+ actionConfig: {
2183
+ ...DEFAULT_RESOURCE_CONTEXT.sourceContext.actionConfig,
2184
+ hotspot: !options.disableHotspot,
2185
+ },
2186
+ },
2187
+ };
2178
2188
  }
2179
2189
  }
2180
2190
 
@@ -3020,8 +3030,11 @@ class GetApexRequestStrategy extends LuvioAdapterRequestStrategy {
3020
3030
  buildConcreteRequest(similarRequest) {
3021
3031
  return similarRequest;
3022
3032
  }
3023
- execute(config, _requestContext) {
3024
- return super.execute(config, APEX_RESOURCE_CONTEXT);
3033
+ createAdapterContext(_options) {
3034
+ return APEX_RESOURCE_CONTEXT;
3035
+ }
3036
+ getRequestPriority(_request, _context) {
3037
+ return 0 /* RequestPriority.LOW */;
3025
3038
  }
3026
3039
  }
3027
3040
 
@@ -4029,6 +4042,27 @@ async function runRequestsWithLimit(requests, runner, concurrentRequestsLimit, p
4029
4042
  // Wait for all initial requests to complete
4030
4043
  await Promise.all(promises);
4031
4044
  }
4045
+ /**
4046
+ * Runs entire list of LEX requests, applying hotspot up to the specified limit and disabling for all remaining
4047
+ *
4048
+ * @param {RequestEntry<LexRequest>[]} requests - An array of request entries to be processed in the array order.
4049
+ * @param {RequestRunner<LexRequest, LexRequestOptions>} runner - The runner instance responsible for executing the requests.
4050
+ * @param {number} hotspotLimit - The number of hotspot requests allowed.
4051
+ * @returns {Promise<void>} A promise that resolves when all requests have been processed.
4052
+ *
4053
+ * This function processes a queue of pending requests, enabling hotspot for the first N requests,
4054
+ * as specified by the hotspotLimit argument. The remaining requests have hotspot disabled.
4055
+ */
4056
+ async function runRequestsWithHotspotLimit(requests, runner, hotspotLimit) {
4057
+ const promises = requests.map((request, index) => {
4058
+ // determine if hotspot needs to be disabled or not
4059
+ const disableHotspot = index >= hotspotLimit;
4060
+ // run request with hotspot setting
4061
+ return runner.runRequest(request.request, { disableHotspot });
4062
+ });
4063
+ // promise for all requests
4064
+ await Promise.all(promises);
4065
+ }
4032
4066
  /**
4033
4067
  * Compares two request entries based on their priority and, if the priorities are the same, their request times.
4034
4068
  * This function is typically used for sorting requests where priority takes precedence, and timing is used
@@ -4062,6 +4096,16 @@ function compareByPriorityThenTime({ request: requestA, requestMetadata: request
4062
4096
  return bPriority - aPriority;
4063
4097
  }
4064
4098
  }
4099
+ /**
4100
+ * Returns the value of the gate that controls whether to use the hotspot limit. Value is cached after the initial call
4101
+ *
4102
+ * @returns {boolean} true if the gate is open, false otherwise.
4103
+ */
4104
+ let useHotspotLimitOpen;
4105
+ function isUseHotspotLimitOpen() {
4106
+ useHotspotLimitOpen = useHotspotLimitOpen ?? useHotspotLimit.isOpen({ fallback: false });
4107
+ return useHotspotLimitOpen;
4108
+ }
4065
4109
 
4066
4110
  function isBoxcarableRequest({ request: { adapterName } }, requestStrategyManager) {
4067
4111
  const strategy = requestStrategyManager.get(adapterName);
@@ -4072,6 +4116,7 @@ function predictNonBoxcarableRequest(nonBoxcaredPredictions, requestRunner) {
4072
4116
  reducedPredictions.map((request) => requestRunner.runRequest(request.request));
4073
4117
  }
4074
4118
  const DEFAULT_RECORD_TYPE_ID = '012000000000000AAA';
4119
+ const AURA_BOXCAR_THREADS_THRESHOLD = 3;
4075
4120
  class LexPredictivePrefetcher extends ApplicationPredictivePrefetcher {
4076
4121
  constructor(context, repository, requestRunner,
4077
4122
  // These strategies need to be in sync with the "predictiveDataLoadCapable" list
@@ -4107,7 +4152,7 @@ class LexPredictivePrefetcher extends ApplicationPredictivePrefetcher {
4107
4152
  const similarPageRequests = this.getSimilarPageRequests();
4108
4153
  return [...exactPageRequests, ...similarPageRequests];
4109
4154
  }
4110
- async predict() {
4155
+ getPredictedRequestsOrderedByPriority() {
4111
4156
  // perf: caching access, to avoid this.prop in loops.
4112
4157
  const { requestStrategyManager, context } = this;
4113
4158
  const alwaysRequests = this.page.getAlwaysRunRequests();
@@ -4130,16 +4175,26 @@ class LexPredictivePrefetcher extends ApplicationPredictivePrefetcher {
4130
4175
  // Sorting in order requested
4131
4176
  reducedPredictions.sort((a, b) => compareByPriorityThenTime(a, b, requestStrategyManager, context));
4132
4177
  // When available, alwaysRequestEntries are prioritized.
4133
- const predictedRequestsWithLimit = this.page.shouldExecuteAlwaysRequestByThemself()
4178
+ return this.page.shouldExecuteAlwaysRequestByThemself()
4134
4179
  ? [...alwaysRequestEntries, ...reducedPredictions]
4135
4180
  : reducedPredictions;
4136
- this.totalRequestCount = predictedRequestsWithLimit.length;
4137
- await runRequestsWithLimit(predictedRequestsWithLimit, this.requestRunner, this.options.inflightRequestLimit,
4138
- // `this.repository.pageStartTime` would be the correct here,
4139
- // but when doing predict+watch, it could be (set in watch)
4140
- // repository.startTime is not set yet, Date.now() is a better alternative,
4141
- // that is correct, and works on both cases.
4142
- Date.now());
4181
+ }
4182
+ async predict() {
4183
+ const requests = this.getPredictedRequestsOrderedByPriority();
4184
+ this.totalRequestCount = requests.length;
4185
+ if (isUseHotspotLimitOpen()) {
4186
+ await runRequestsWithHotspotLimit(requests, this.requestRunner, Math.floor(this.options.inflightRequestLimit / 2));
4187
+ }
4188
+ else {
4189
+ await runRequestsWithLimit(requests, this.requestRunner,
4190
+ // don't get available thread count below threshold else Aura will boxcar
4191
+ this.options.inflightRequestLimit - AURA_BOXCAR_THREADS_THRESHOLD,
4192
+ // `this.repository.pageStartTime` would be the correct here,
4193
+ // but when doing predict+watch, it could be (set in watch)
4194
+ // repository.startTime is not set yet, Date.now() is a better alternative,
4195
+ // that is correct, and works on both cases.
4196
+ Date.now());
4197
+ }
4143
4198
  }
4144
4199
  }
4145
4200
 
@@ -4154,10 +4209,10 @@ class LexRequestRunner {
4154
4209
  .map((strategy) => strategy.reduce(requests))
4155
4210
  .flat();
4156
4211
  }
4157
- runRequest(request) {
4212
+ runRequest(request, options = {}) {
4158
4213
  const strategy = this.requestStrategyManager.get(request.adapterName);
4159
4214
  if (strategy) {
4160
- return Promise.resolve(strategy.execute(request.config)).then();
4215
+ return Promise.resolve(strategy.execute(request.config, options)).then();
4161
4216
  }
4162
4217
  return Promise.resolve(undefined);
4163
4218
  }
@@ -4290,7 +4345,7 @@ function getEnvironmentSetting(name) {
4290
4345
  }
4291
4346
  return undefined;
4292
4347
  }
4293
- // version: 1.328.0-e51e28f7fc
4348
+ // version: 1.329.0-beac2bb064
4294
4349
 
4295
4350
  const forceRecordTransactionsDisabled = getEnvironmentSetting(EnvironmentSettings.ForceRecordTransactionsDisabled);
4296
4351
  //TODO: Some duplication here that can be most likely moved to a util class
@@ -4738,7 +4793,7 @@ let __lexPrefetcher;
4738
4793
  const HARDCODED_REQUEST_LIMIT = 9;
4739
4794
  function getInflightRequestLimit() {
4740
4795
  try {
4741
- return window['$A'].clientService.maxAllowedParallelXHRCounts() - 3;
4796
+ return window['$A'].clientService.maxAllowedParallelXHRCounts();
4742
4797
  }
4743
4798
  catch (e) {
4744
4799
  return HARDCODED_REQUEST_LIMIT;
@@ -4989,4 +5044,4 @@ function ldsEngineCreator() {
4989
5044
  }
4990
5045
 
4991
5046
  export { LexRequestStrategy, PdlRequestPriority, buildPredictorForContext, ldsEngineCreator as default, initializeLDS, initializeOneStore, registerRequestStrategy, saveRequestAsPrediction, unregisterRequestStrategy, whenPredictionsReady };
4992
- // version: 1.328.0-f3d79bc783
5047
+ // version: 1.329.0-9b52e8059d
@@ -11,4 +11,7 @@ export type LexPrefetcherOptions = {
11
11
  };
12
12
  export { PredictionsReadyManager } from './predictions-ready-manager';
13
13
  export type LexRequest<Config = unknown> = BaseAdapterRequest<Config>;
14
+ export type LexRequestOptions = {
15
+ disableHotspot?: boolean;
16
+ };
14
17
  export type LexContext = RecordHomePageContext | ObjectHomePageContext | DefaultPageContext;
@@ -12,5 +12,6 @@ export declare class LexPredictivePrefetcher extends ApplicationPredictivePrefet
12
12
  constructor(context: LexContext, repository: PrefetchRepository<LexRequest>, requestRunner: RequestRunner<LexRequest>, requestStrategyManager: RequestStrategyManager, options: LexPrefetcherOptions);
13
13
  getPage(): LexDefaultPage<LexRequest, LexContext>;
14
14
  getAllPageRequests(): RequestEntry<LexRequest>[];
15
+ getPredictedRequestsOrderedByPriority(): RequestEntry<LexRequest>[];
15
16
  predict(): Promise<void>;
16
17
  }
@@ -1,6 +1,6 @@
1
1
  import type { RequestRunner } from '../request-runner';
2
2
  import type { RequestEntry } from '../common';
3
- import type { LexRequest } from '../lex';
3
+ import type { LexRequest, LexRequestOptions } from '../lex';
4
4
  import type { RequestStrategyManager } from '../request-strategy-manager/request-strategy-manager';
5
5
  import type { DefaultPageContext } from '../pages';
6
6
  /**
@@ -17,6 +17,18 @@ import type { DefaultPageContext } from '../pages';
17
17
  * Requests are only processed if their `requestTime` is less than the time elapsed since `pageStartTime`.
18
18
  */
19
19
  export declare function runRequestsWithLimit<Request>(requests: RequestEntry<Request>[], runner: RequestRunner<Request>, concurrentRequestsLimit: number, pageStartTime: number): Promise<void>;
20
+ /**
21
+ * Runs entire list of LEX requests, applying hotspot up to the specified limit and disabling for all remaining
22
+ *
23
+ * @param {RequestEntry<LexRequest>[]} requests - An array of request entries to be processed in the array order.
24
+ * @param {RequestRunner<LexRequest, LexRequestOptions>} runner - The runner instance responsible for executing the requests.
25
+ * @param {number} hotspotLimit - The number of hotspot requests allowed.
26
+ * @returns {Promise<void>} A promise that resolves when all requests have been processed.
27
+ *
28
+ * This function processes a queue of pending requests, enabling hotspot for the first N requests,
29
+ * as specified by the hotspotLimit argument. The remaining requests have hotspot disabled.
30
+ */
31
+ export declare function runRequestsWithHotspotLimit(requests: RequestEntry<LexRequest>[], runner: RequestRunner<LexRequest, LexRequestOptions>, hotspotLimit: number): Promise<void>;
20
32
  /**
21
33
  * Compares two request entries based on their priority and, if the priorities are the same, their request times.
22
34
  * This function is typically used for sorting requests where priority takes precedence, and timing is used
@@ -37,3 +49,4 @@ export declare function runRequestsWithLimit<Request>(requests: RequestEntry<Req
37
49
  * the priority defaults to `RequestPriority.LOW`.
38
50
  */
39
51
  export declare function compareByPriorityThenTime<Context extends DefaultPageContext = DefaultPageContext>({ request: requestA, requestMetadata: requestMetadataA }: RequestEntry<LexRequest>, { request: requestB, requestMetadata: requestMetadataB }: RequestEntry<LexRequest>, requestStrategyManager: RequestStrategyManager, context: Context): number;
52
+ export declare function isUseHotspotLimitOpen(): boolean;
@@ -1,10 +1,10 @@
1
1
  import type { RequestRunner } from './request-runner';
2
2
  import type { RequestEntry } from '../common';
3
- import type { LexRequest } from '../lex';
3
+ import type { LexRequest, LexRequestOptions } from '../lex';
4
4
  import type { RequestStrategyManager } from '../request-strategy-manager/request-strategy-manager';
5
- export declare class LexRequestRunner implements RequestRunner<LexRequest> {
5
+ export declare class LexRequestRunner implements RequestRunner<LexRequest, LexRequestOptions> {
6
6
  private requestStrategyManager;
7
7
  constructor(requestStrategyManager: RequestStrategyManager);
8
8
  reduceRequests(requests: RequestEntry<LexRequest>[]): RequestEntry<LexRequest>[];
9
- runRequest(request: LexRequest): Promise<void>;
9
+ runRequest(request: LexRequest, options?: LexRequestOptions): Promise<void>;
10
10
  }
@@ -1,5 +1,5 @@
1
1
  import type { RequestEntry } from '../common';
2
- export type RequestRunner<Request> = {
3
- runRequest(request: Request): Promise<void>;
2
+ export type RequestRunner<Request, Options = Record<string, any>> = {
3
+ runRequest(request: Request, options?: Options): Promise<void>;
4
4
  reduceRequests(requests: RequestEntry<Request>[]): RequestEntry<Request>[];
5
5
  };
@@ -1,6 +1,8 @@
1
1
  import type { ApexInvokerParams } from '@salesforce/lds-adapters-apex';
2
- import type { AdapterRequestContext, Luvio, Snapshot } from '@luvio/engine';
2
+ import type { AdapterRequestContext, Luvio } from '@luvio/engine';
3
3
  import { LuvioAdapterRequestStrategy } from './luvio-adapter-request-strategy';
4
+ import { RequestPriority } from './request-strategy';
5
+ import type { LexRequestOptions } from '../lex';
4
6
  export type GetApexConfig = {
5
7
  name: string;
6
8
  invokerParams: ApexInvokerParams;
@@ -10,13 +12,19 @@ export type GetApexRequest = {
10
12
  adapterName: 'getApex';
11
13
  config: GetApexConfig;
12
14
  };
13
- export declare function getApexPdlFactory(luvio: Luvio): ({ invokerParams, config }: GetApexConfig, requestContext?: AdapterRequestContext) => Snapshot<any> | Promise<Snapshot<any>> | null;
15
+ export declare function getApexPdlFactory(luvio: Luvio): ({ invokerParams, config }: GetApexConfig, requestContext?: AdapterRequestContext) => import("@luvio/engine").Snapshot<any> | Promise<import("@luvio/engine").Snapshot<any>> | null;
14
16
  type GetApexContext = Record<string, unknown>;
15
17
  export declare const GET_APEX_ADAPTER_NAME = "getApex";
16
18
  export declare class GetApexRequestStrategy extends LuvioAdapterRequestStrategy<GetApexConfig, GetApexRequest, GetApexContext> {
17
19
  adapterName: string;
18
20
  adapterFactory: typeof getApexPdlFactory;
19
21
  buildConcreteRequest(similarRequest: GetApexRequest): GetApexRequest;
20
- execute(config: GetApexConfig, _requestContext?: AdapterRequestContext | undefined): Snapshot<any> | Promise<Snapshot<any>> | null;
22
+ protected createAdapterContext(_options: LexRequestOptions): {
23
+ sourceContext: {
24
+ actionConfig: undefined;
25
+ tagName: string;
26
+ };
27
+ };
28
+ getRequestPriority(_request: GetApexRequest, _context: GetApexContext): RequestPriority;
21
29
  }
22
30
  export {};
@@ -1,7 +1,7 @@
1
1
  import { RequestStrategy } from './request-strategy';
2
- import type { LexContext, LexRequest } from '../lex';
2
+ import type { LexContext, LexRequest, LexRequestOptions } from '../lex';
3
3
  import type { DefaultPageContext } from '../pages';
4
- export declare abstract class LexRequestStrategy<Config = unknown, Request extends LexRequest<Config> = LexRequest<Config>, Context extends LexContext = DefaultPageContext> extends RequestStrategy<Config, Request, Context> {
4
+ export declare abstract class LexRequestStrategy<Config = unknown, Request extends LexRequest<Config> = LexRequest<Config>, Context extends LexContext = DefaultPageContext> extends RequestStrategy<Config, Request, Context, LexRequestOptions> {
5
5
  /**
6
6
  * Whether or not requests from this strategies can be boxcarred by Aura.
7
7
  * If they are, the lex prefetcher will run predictions of this strategy with a limit,
@@ -1,6 +1,6 @@
1
- import type { AdapterFactory, AdapterRequestContext, Luvio, Snapshot } from '@luvio/engine';
1
+ import type { AdapterFactory, Luvio, Snapshot } from '@luvio/engine';
2
2
  import { LexRequestStrategy } from './lex-request-strategy';
3
- import type { LexContext, LexRequest } from '../lex';
3
+ import type { LexContext, LexRequest, LexRequestOptions } from '../lex';
4
4
  export declare const DEFAULT_RESOURCE_CONTEXT: {
5
5
  sourceContext: {
6
6
  tagName: string;
@@ -22,5 +22,6 @@ export declare abstract class LuvioAdapterRequestStrategy<AdapterConfig, Request
22
22
  * Factory for the adapter used in this strategy.
23
23
  */
24
24
  abstract adapterFactory: AdapterFactory<AdapterConfig, any>;
25
- execute(config: AdapterConfig, requestContext?: AdapterRequestContext): Snapshot<any> | Promise<Snapshot<any>> | null;
25
+ execute(config: AdapterConfig, options?: LexRequestOptions): Snapshot<any> | Promise<Snapshot<any>> | null;
26
+ protected createAdapterContext(options: LexRequestOptions): any;
26
27
  }
@@ -13,12 +13,12 @@ export declare enum PdlRequestPriority {
13
13
  NORMAL = 1,
14
14
  HIGH = 2
15
15
  }
16
- export declare abstract class RequestStrategy<Config, Request extends BaseAdapterRequest<Config>, Context> {
16
+ export declare abstract class RequestStrategy<Config, Request extends BaseAdapterRequest<Config>, Context, Options extends Record<string, any>> {
17
17
  /**
18
18
  * Name of the adapter used in this strategy.
19
19
  */
20
20
  abstract adapterName: string;
21
- abstract execute(config: Config): any;
21
+ abstract execute(config: Config, options?: Options): any;
22
22
  abstract buildConcreteRequest(similarRequest: Request, context: Context): Request;
23
23
  getRequestPriority(_request: Request, _context: Context): RequestPriority;
24
24
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-runtime-aura",
3
- "version": "1.328.0",
3
+ "version": "1.329.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS engine for Aura runtime",
6
6
  "main": "dist/ldsEngineCreator.js",
@@ -34,42 +34,42 @@
34
34
  "release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-aura"
35
35
  },
36
36
  "devDependencies": {
37
- "@luvio/service-provisioner": "5.17.0",
38
- "@salesforce/lds-adapters-apex": "^1.328.0",
39
- "@salesforce/lds-adapters-uiapi": "^1.328.0",
37
+ "@luvio/service-provisioner": "5.21.0",
38
+ "@salesforce/lds-adapters-apex": "^1.329.0",
39
+ "@salesforce/lds-adapters-uiapi": "^1.329.0",
40
40
  "@salesforce/lds-adapters-uiapi-lex": "^1.302.0",
41
- "@salesforce/lds-ads-bridge": "^1.328.0",
42
- "@salesforce/lds-aura-storage": "^1.328.0",
43
- "@salesforce/lds-bindings": "^1.328.0",
44
- "@salesforce/lds-instrumentation": "^1.328.0",
45
- "@salesforce/lds-network-aura": "^1.328.0",
46
- "@salesforce/lds-network-fetch-with-jwt": "^1.328.0",
41
+ "@salesforce/lds-ads-bridge": "^1.329.0",
42
+ "@salesforce/lds-aura-storage": "^1.329.0",
43
+ "@salesforce/lds-bindings": "^1.329.0",
44
+ "@salesforce/lds-instrumentation": "^1.329.0",
45
+ "@salesforce/lds-network-aura": "^1.329.0",
46
+ "@salesforce/lds-network-fetch-with-jwt": "^1.329.0",
47
47
  "jwt-encode": "1.0.1"
48
48
  },
49
49
  "dependencies": {
50
- "@luvio/command-aura-network": "5.17.0",
51
- "@luvio/command-aura-resource-cache-control": "5.17.0",
52
- "@luvio/command-fetch-network": "5.17.0",
53
- "@luvio/command-network": "5.17.0",
54
- "@luvio/command-sse": "5.17.0",
55
- "@luvio/command-streaming": "5.17.0",
50
+ "@luvio/command-aura-network": "5.21.0",
51
+ "@luvio/command-aura-resource-cache-control": "5.21.0",
52
+ "@luvio/command-fetch-network": "5.21.0",
53
+ "@luvio/command-network": "5.21.0",
54
+ "@luvio/command-sse": "5.21.0",
55
+ "@luvio/command-streaming": "5.21.0",
56
56
  "@luvio/network-adapter-composable": "0.156.5",
57
57
  "@luvio/network-adapter-fetch": "0.156.5",
58
- "@luvio/service-aura-network": "5.17.0",
59
- "@luvio/service-cache": "5.17.0",
60
- "@luvio/service-cache-control": "5.17.0",
61
- "@luvio/service-fetch-network": "5.17.0",
62
- "@luvio/service-instrument-command": "5.17.0",
63
- "@luvio/service-store": "5.17.0",
64
- "@luvio/utils": "5.17.0",
65
- "@salesforce/lds-adapters-uiapi-lex": "^1.328.0"
58
+ "@luvio/service-aura-network": "5.21.0",
59
+ "@luvio/service-cache": "5.21.0",
60
+ "@luvio/service-cache-control": "5.21.0",
61
+ "@luvio/service-fetch-network": "5.21.0",
62
+ "@luvio/service-instrument-command": "5.21.0",
63
+ "@luvio/service-store": "5.21.0",
64
+ "@luvio/utils": "5.21.0",
65
+ "@salesforce/lds-adapters-uiapi-lex": "^1.329.0"
66
66
  },
67
67
  "luvioBundlesize": [
68
68
  {
69
69
  "path": "./dist/ldsEngineCreator.js",
70
70
  "maxSize": {
71
- "none": "187 kB",
72
- "min": "78 kB",
71
+ "none": "189 kB",
72
+ "min": "78.5 kB",
73
73
  "compressed": "34 kB"
74
74
  }
75
75
  }