@salesforce/lds-runtime-aura 1.449.0 → 1.450.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.
- package/dist/ldsEngineCreator.js +104 -42
- package/dist/types/main.d.ts +5 -0
- package/package.json +43 -43
package/dist/ldsEngineCreator.js
CHANGED
|
@@ -40,11 +40,10 @@ import lightningConnectEnabled from '@salesforce/gate/ui.services.LightningConne
|
|
|
40
40
|
import bypassAppRestrictionEnabled from '@salesforce/gate/ui.services.LightningConnect.BypassAppRestriction.enabled';
|
|
41
41
|
import csrfValidationEnabled from '@salesforce/gate/ui.services.LightningConnect.CsrfValidation.enabled';
|
|
42
42
|
import sessionApiEnabled from '@salesforce/gate/ui.uisdk.session.api.enabled';
|
|
43
|
+
import useHttpUiapiLex from '@salesforce/gate/lds.usehttpuiapilex';
|
|
44
|
+
import useHttpUiapiOneRuntime from '@salesforce/gate/lds.useHttpUiapiOneRuntime';
|
|
45
|
+
import useHttpUiapiAuraSites from '@salesforce/gate/lds.usehttpuiapiaurasites';
|
|
43
46
|
import auraBasedRequestsEnabled from '@salesforce/gate/ui.services.auraBasedRequests.enabled';
|
|
44
|
-
import useHttpUiapiOneAppPublic from '@salesforce/gate/lds.useHttpUiapiOneAppPublic';
|
|
45
|
-
import useHttpUiapiOneAppPrivate from '@salesforce/gate/lds.useHttpUiapiOneAppPrivate';
|
|
46
|
-
import useHttpUiapiOneRuntimePublic from '@salesforce/gate/lds.useHttpUiapiOneRuntimePublic';
|
|
47
|
-
import useHttpUiapiOneRuntimePrivate from '@salesforce/gate/lds.useHttpUiapiOneRuntimePrivate';
|
|
48
47
|
import disableCreateContentDocumentAndVersionHTTPLexRuntime from '@salesforce/gate/lds.lex.http.disableCreateContentDocumentAndVersion';
|
|
49
48
|
import useHotspotLimit from '@salesforce/gate/lds.pdl.useHotspotLimit';
|
|
50
49
|
import { createStorage, clearStorages } from 'force/ldsDurableStorage';
|
|
@@ -2591,7 +2590,7 @@ function buildServiceDescriptor$d(luvio) {
|
|
|
2591
2590
|
},
|
|
2592
2591
|
};
|
|
2593
2592
|
}
|
|
2594
|
-
// version: 1.
|
|
2593
|
+
// version: 1.450.0-163071957b
|
|
2595
2594
|
|
|
2596
2595
|
class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheControlCommand {
|
|
2597
2596
|
constructor(config, documentRootType, services) {
|
|
@@ -2930,7 +2929,7 @@ function buildServiceDescriptor$9(notifyRecordUpdateAvailable, getNormalizedLuvi
|
|
|
2930
2929
|
},
|
|
2931
2930
|
};
|
|
2932
2931
|
}
|
|
2933
|
-
// version: 1.
|
|
2932
|
+
// version: 1.450.0-163071957b
|
|
2934
2933
|
|
|
2935
2934
|
class RetryService {
|
|
2936
2935
|
constructor(defaultRetryPolicy) {
|
|
@@ -3143,6 +3142,15 @@ function buildUserlandError(error) {
|
|
|
3143
3142
|
}
|
|
3144
3143
|
return new Error("Internal error in Lightning Data Service adapter occurred.");
|
|
3145
3144
|
}
|
|
3145
|
+
function unwrapUserlandError(error) {
|
|
3146
|
+
if (isUserVisibleError(error)) {
|
|
3147
|
+
return error.data;
|
|
3148
|
+
}
|
|
3149
|
+
return toError(error);
|
|
3150
|
+
}
|
|
3151
|
+
function throwUnwrappedUserlandError(error) {
|
|
3152
|
+
throw unwrapUserlandError(error);
|
|
3153
|
+
}
|
|
3146
3154
|
function logError(error) {
|
|
3147
3155
|
if (isUserVisibleError(error)) {
|
|
3148
3156
|
return;
|
|
@@ -3206,7 +3214,9 @@ class DefaultImperativeBindingsService {
|
|
|
3206
3214
|
deepFreeze(result.value);
|
|
3207
3215
|
return isSubscribableResult(result) ? result.value.data : result.value;
|
|
3208
3216
|
}
|
|
3209
|
-
|
|
3217
|
+
throwUnwrappedUserlandError(
|
|
3218
|
+
isSubscribableResult(result) ? result.error.failure : result.error
|
|
3219
|
+
);
|
|
3210
3220
|
});
|
|
3211
3221
|
}
|
|
3212
3222
|
}
|
|
@@ -3224,7 +3234,9 @@ class QueryImperativeBindingsService {
|
|
|
3224
3234
|
deepFreeze(result.value);
|
|
3225
3235
|
return isSubscribableResult(result) ? { data: result.value.data } : { data: result.value };
|
|
3226
3236
|
}
|
|
3227
|
-
|
|
3237
|
+
throwUnwrappedUserlandError(
|
|
3238
|
+
isSubscribableResult(result) ? result.error.failure : result.error
|
|
3239
|
+
);
|
|
3228
3240
|
});
|
|
3229
3241
|
}
|
|
3230
3242
|
}
|
|
@@ -3256,7 +3268,10 @@ class SubscribableImperativeBindingsService {
|
|
|
3256
3268
|
subscribe: (cb) => {
|
|
3257
3269
|
return result.value.subscribe((result2) => {
|
|
3258
3270
|
if (result2.isErr()) {
|
|
3259
|
-
return cb({
|
|
3271
|
+
return cb({
|
|
3272
|
+
data: void 0,
|
|
3273
|
+
error: unwrapUserlandError(result2.error)
|
|
3274
|
+
});
|
|
3260
3275
|
}
|
|
3261
3276
|
return cb({ data: result2.value, error: void 0 });
|
|
3262
3277
|
});
|
|
@@ -3278,7 +3293,7 @@ class SubscribableImperativeBindingsService {
|
|
|
3278
3293
|
return api;
|
|
3279
3294
|
}
|
|
3280
3295
|
} else {
|
|
3281
|
-
|
|
3296
|
+
throwUnwrappedUserlandError(result.error.failure);
|
|
3282
3297
|
}
|
|
3283
3298
|
}
|
|
3284
3299
|
}
|
|
@@ -3300,7 +3315,7 @@ class LegacyImperativeBindingsService {
|
|
|
3300
3315
|
deepFreeze(result.value);
|
|
3301
3316
|
callback({ data: result.value.data, error: void 0 });
|
|
3302
3317
|
} else {
|
|
3303
|
-
callback({ data: void 0, error:
|
|
3318
|
+
callback({ data: void 0, error: unwrapUserlandError(result.error.failure) });
|
|
3304
3319
|
}
|
|
3305
3320
|
} catch (error) {
|
|
3306
3321
|
emitError(callback, error);
|
|
@@ -3315,14 +3330,20 @@ class LegacyImperativeBindingsService {
|
|
|
3315
3330
|
command.execute(overrides).then(
|
|
3316
3331
|
(result) => {
|
|
3317
3332
|
if (!result.isOk()) {
|
|
3318
|
-
callback({
|
|
3333
|
+
callback({
|
|
3334
|
+
data: void 0,
|
|
3335
|
+
error: unwrapUserlandError(result.error.failure)
|
|
3336
|
+
});
|
|
3319
3337
|
return;
|
|
3320
3338
|
}
|
|
3321
3339
|
unsubscribe = result.value.subscribe((res) => {
|
|
3322
3340
|
if (res.isOk()) {
|
|
3323
3341
|
callback({ data: res.value, error: void 0 });
|
|
3324
3342
|
} else {
|
|
3325
|
-
callback({
|
|
3343
|
+
callback({
|
|
3344
|
+
data: void 0,
|
|
3345
|
+
error: unwrapUserlandError(res.error)
|
|
3346
|
+
});
|
|
3326
3347
|
}
|
|
3327
3348
|
});
|
|
3328
3349
|
callback({ data: result.value.data, error: void 0 });
|
|
@@ -5822,7 +5843,7 @@ function getEnvironmentSetting(name) {
|
|
|
5822
5843
|
}
|
|
5823
5844
|
return undefined;
|
|
5824
5845
|
}
|
|
5825
|
-
// version: 1.
|
|
5846
|
+
// version: 1.450.0-b7557fd74b
|
|
5826
5847
|
|
|
5827
5848
|
/**
|
|
5828
5849
|
* Helpers for reaching the Aura framework from the LDS Aura runtime.
|
|
@@ -6431,21 +6452,16 @@ async function getCsrfToken() {
|
|
|
6431
6452
|
}
|
|
6432
6453
|
}
|
|
6433
6454
|
/**
|
|
6434
|
-
* Checks if all
|
|
6435
|
-
* open. These mirror the gates core evaluates when accepting a SID-based
|
|
6436
|
-
* (first-party) Connect request; the CSRF token is only attached when all are
|
|
6437
|
-
* open. All are required OPEN — `auraBasedRequests` expands the set of
|
|
6438
|
-
* Connect resources reachable over HTTP, it is not an aura-vs-http toggle.
|
|
6455
|
+
* Checks if all required gates are enabled for CSRF token interceptor.
|
|
6439
6456
|
*
|
|
6440
6457
|
* @returns true if all gates are enabled, false otherwise
|
|
6441
6458
|
*/
|
|
6442
|
-
function
|
|
6459
|
+
function areCsrfGatesEnabled() {
|
|
6443
6460
|
try {
|
|
6444
6461
|
return (lightningConnectEnabled.isOpen({ fallback: false }) &&
|
|
6445
6462
|
bypassAppRestrictionEnabled.isOpen({ fallback: false }) &&
|
|
6446
6463
|
csrfValidationEnabled.isOpen({ fallback: false }) &&
|
|
6447
|
-
sessionApiEnabled.isOpen({ fallback: false })
|
|
6448
|
-
auraBasedRequestsEnabled.isOpen({ fallback: false }));
|
|
6464
|
+
sessionApiEnabled.isOpen({ fallback: false }));
|
|
6449
6465
|
}
|
|
6450
6466
|
catch (error) {
|
|
6451
6467
|
// If any gate check fails, disable CSRF interceptor
|
|
@@ -6479,7 +6495,7 @@ function isCsrfMethod(method) {
|
|
|
6479
6495
|
function buildCsrfTokenInterceptor() {
|
|
6480
6496
|
return async (fetchArgs) => {
|
|
6481
6497
|
// Check if all required gates are enabled before running
|
|
6482
|
-
if (!
|
|
6498
|
+
if (!areCsrfGatesEnabled()) {
|
|
6483
6499
|
return resolvedPromiseLike$2(fetchArgs);
|
|
6484
6500
|
}
|
|
6485
6501
|
const [urlOrRequest, options] = fetchArgs;
|
|
@@ -6512,7 +6528,7 @@ function buildCsrfTokenInterceptor() {
|
|
|
6512
6528
|
function buildLuvioCsrfTokenInterceptor() {
|
|
6513
6529
|
return async (resourceRequest) => {
|
|
6514
6530
|
// Check if all required gates are enabled before running
|
|
6515
|
-
if (!
|
|
6531
|
+
if (!areCsrfGatesEnabled()) {
|
|
6516
6532
|
return resolvedPromiseLike$2(resourceRequest);
|
|
6517
6533
|
}
|
|
6518
6534
|
// Ensure headers object exists
|
|
@@ -7273,41 +7289,67 @@ const CONTENT_DOCUMENTS_VERSIONS_PATH = '/ui-api/records/content-documents/conte
|
|
|
7273
7289
|
* paths: ['/ui-api/some-endpoint/{id}'],
|
|
7274
7290
|
* }
|
|
7275
7291
|
*/
|
|
7292
|
+
// Each runtime uses a SINGLE LDS gate that enables both the public and
|
|
7293
|
+
// private path lists. The public/private split is preserved as two separate
|
|
7294
|
+
// arrays because the PRIVATE paths carry an extra condition: the server-side
|
|
7295
|
+
// `auraBasedRequests` UiSdk gate. If UiSdk turns that gate off, private
|
|
7296
|
+
// (UiTier-restricted) Connect resources can no longer be served over HTTP and
|
|
7297
|
+
// must fall back to Aura, whereas public/allowlisted paths are unaffected.
|
|
7298
|
+
//
|
|
7299
|
+
// Runtimes are mutually exclusive: One Runtime (globalThis.LWR), Aura Sites
|
|
7300
|
+
// ($Site present), and LEX/one.app (everything else). Each has its own gate.
|
|
7276
7301
|
const PREDICATE_PATH_SETS = [
|
|
7277
7302
|
// One Runtime — public UIAPI endpoints
|
|
7278
7303
|
{
|
|
7279
|
-
predicate: () => isOneRuntime() &&
|
|
7304
|
+
predicate: () => isOneRuntime() && useHttpUiapiOneRuntime.isOpen({ fallback: false }),
|
|
7280
7305
|
paths: UIAPI_PUBLIC_PATHS,
|
|
7281
7306
|
},
|
|
7282
|
-
// One Runtime — private UIAPI endpoints
|
|
7307
|
+
// One Runtime — private UIAPI endpoints (also require the UiSdk gate)
|
|
7283
7308
|
{
|
|
7284
|
-
predicate: () => isOneRuntime() &&
|
|
7309
|
+
predicate: () => isOneRuntime() &&
|
|
7310
|
+
useHttpUiapiOneRuntime.isOpen({ fallback: false }) &&
|
|
7311
|
+
auraBasedRequestsEnabled.isOpen({ fallback: false }),
|
|
7285
7312
|
paths: UIAPI_PRIVATE_PATHS,
|
|
7286
7313
|
},
|
|
7287
|
-
//
|
|
7314
|
+
// Aura Sites — public UIAPI endpoints.
|
|
7315
|
+
// Gate defaults closed, which keeps HTTP UIAPI OFF on Aura/Experience sites:
|
|
7316
|
+
// the HTTP transport's CSRF handling is broken there (W-23092947), so until
|
|
7317
|
+
// that is fixed this gate must not be opened. Wiring it as a normal gated
|
|
7318
|
+
// predicate (rather than a hard block) lets it be flipped on once CSRF works.
|
|
7288
7319
|
{
|
|
7289
|
-
predicate: () =>
|
|
7320
|
+
predicate: () => isAuraSite() && useHttpUiapiAuraSites.isOpen({ fallback: false }),
|
|
7290
7321
|
paths: UIAPI_PUBLIC_PATHS,
|
|
7291
7322
|
},
|
|
7292
|
-
//
|
|
7323
|
+
// Aura Sites — private UIAPI endpoints (also require the UiSdk gate)
|
|
7293
7324
|
{
|
|
7294
|
-
predicate: () =>
|
|
7325
|
+
predicate: () => isAuraSite() &&
|
|
7326
|
+
useHttpUiapiAuraSites.isOpen({ fallback: false }) &&
|
|
7327
|
+
auraBasedRequestsEnabled.isOpen({ fallback: false }),
|
|
7295
7328
|
paths: UIAPI_PRIVATE_PATHS,
|
|
7296
7329
|
},
|
|
7297
|
-
//
|
|
7330
|
+
// LEX (one.app) — public UIAPI endpoints
|
|
7298
7331
|
{
|
|
7299
|
-
predicate: () => !
|
|
7332
|
+
predicate: () => !isOneRuntime() && !isAuraSite() && useHttpUiapiLex.isOpen({ fallback: false }),
|
|
7333
|
+
paths: UIAPI_PUBLIC_PATHS,
|
|
7334
|
+
},
|
|
7335
|
+
// LEX (one.app) — private UIAPI endpoints (also require the UiSdk gate)
|
|
7336
|
+
{
|
|
7337
|
+
predicate: () => !isOneRuntime() &&
|
|
7338
|
+
!isAuraSite() &&
|
|
7339
|
+
useHttpUiapiLex.isOpen({ fallback: false }) &&
|
|
7340
|
+
auraBasedRequestsEnabled.isOpen({ fallback: false }),
|
|
7341
|
+
paths: UIAPI_PRIVATE_PATHS,
|
|
7342
|
+
},
|
|
7343
|
+
// disableCreateContentDocumentAndVersionHTTPLexRuntime killswitch.
|
|
7344
|
+
// Excluded on Aura Sites for the same broken-CSRF reason as the UIAPI paths
|
|
7345
|
+
// (W-23092947); LEX / One Runtime are unaffected.
|
|
7346
|
+
{
|
|
7347
|
+
predicate: () => !isAuraSite() &&
|
|
7348
|
+
!disableCreateContentDocumentAndVersionHTTPLexRuntime.isOpen({ fallback: false }),
|
|
7300
7349
|
paths: [CONTENT_DOCUMENTS_VERSIONS_PATH],
|
|
7301
7350
|
},
|
|
7302
7351
|
];
|
|
7303
7352
|
function getEnabledPaths() {
|
|
7304
|
-
// On Aura/Experience sites the HTTP UIAPI transport's CSRF handling is
|
|
7305
|
-
// broken (W-23092947), so disable every HTTP UIAPI path here and let LDS
|
|
7306
|
-
// fall back to the Aura transport. LEX (one.app / OneRuntime) is
|
|
7307
|
-
// unaffected. This guards all current and future predicates in one place.
|
|
7308
|
-
if (isAuraSite()) {
|
|
7309
|
-
return [];
|
|
7310
|
-
}
|
|
7311
7353
|
const enabled = new Set();
|
|
7312
7354
|
for (const { predicate, paths } of PREDICATE_PATH_SETS) {
|
|
7313
7355
|
if (predicate()) {
|
|
@@ -7712,6 +7754,12 @@ function buildJwtAuthorizedData360FetchServiceDescriptor(logger) {
|
|
|
7712
7754
|
request: [
|
|
7713
7755
|
buildThirdPartyTrackerRegisterInterceptor(),
|
|
7714
7756
|
buildData360HostRewriteInterceptor(logger),
|
|
7757
|
+
// Compression runs LAST, after the host-rewrite interceptor has minted,
|
|
7758
|
+
// attached the Bearer token, and rewritten the URL — so it only ever sees
|
|
7759
|
+
// the final request body. It is a strict pass-through: bodies that are
|
|
7760
|
+
// missing, non-string, or under the 1KB threshold flow through untouched,
|
|
7761
|
+
// preserving the tuple (URL + Authorization header) the rewrite produced.
|
|
7762
|
+
buildCompressionInterceptor({ algorithm: 'gzip' }),
|
|
7715
7763
|
],
|
|
7716
7764
|
finally: [buildThirdPartyTrackerFinishInterceptor()],
|
|
7717
7765
|
});
|
|
@@ -7874,6 +7922,7 @@ function buildData360HostRewriteInterceptor(logger) {
|
|
|
7874
7922
|
// to `string` for the `.replace` below.
|
|
7875
7923
|
if (typeof cdpUrl !== 'string' || cdpUrl.length === 0) {
|
|
7876
7924
|
logger.warn(`Data360 fetch service: minted JWT has no usable "${CDP_URL_CLAIM}" claim. The org may not be Data Cloud provisioned.`);
|
|
7925
|
+
// eslint-disable-next-line @salesforce/lds/no-error-in-production
|
|
7877
7926
|
throw new Error(`Data360 fetch service: minted JWT has no usable "${CDP_URL_CLAIM}" claim; cannot route the request to a Data Cloud tenant endpoint.`);
|
|
7878
7927
|
}
|
|
7879
7928
|
// `cdp_url` is a bare host (no scheme); prepend https so `new URL`
|
|
@@ -11163,6 +11212,9 @@ function buildAuraDurableCacheInclusionPolicyService(config) {
|
|
|
11163
11212
|
};
|
|
11164
11213
|
}
|
|
11165
11214
|
|
|
11215
|
+
// Registration published on the force/ldsEngine bus so shared (cross-runtime) laf
|
|
11216
|
+
// loaders can read buildPredictorForContext without importing a bootstrap bundle.
|
|
11217
|
+
const PDL_ENGINE_REGISTRATION_ID = '@salesforce/lds-pdl-engine';
|
|
11166
11218
|
// This code *should* be in lds-network-adapter, but when combined with the Aura
|
|
11167
11219
|
// component test workaround in lds-default-luvio it creates a circular dependecy
|
|
11168
11220
|
// between lds-default-luvio and lds-network-adapter. We do the register on behalf
|
|
@@ -11171,6 +11223,16 @@ register({
|
|
|
11171
11223
|
id: '@salesforce/lds-network-adapter',
|
|
11172
11224
|
instrument: ldsNetworkAdapterInstrument,
|
|
11173
11225
|
});
|
|
11226
|
+
// Publish buildPredictorForContext on the force/ldsEngine registration bus so that
|
|
11227
|
+
// shared laf loaders can obtain it without a dynamic import("force/ldsEngineCreator"),
|
|
11228
|
+
// which would evaluate this whole bootstrap a second time. See ADR
|
|
11229
|
+
// 2026-07-10-pdl-service-provisioner-decoupling. buildPredictorForContext is a hoisted
|
|
11230
|
+
// function declaration and internally no-ops (returns undefined) when the PDL gate is
|
|
11231
|
+
// off, so registering it unconditionally is safe.
|
|
11232
|
+
register({
|
|
11233
|
+
id: PDL_ENGINE_REGISTRATION_ID,
|
|
11234
|
+
buildPredictorForContext,
|
|
11235
|
+
});
|
|
11174
11236
|
function setTrackedFieldsConfig() {
|
|
11175
11237
|
configuration.setTrackedFieldDepthOnCacheMiss(1);
|
|
11176
11238
|
configuration.setTrackedFieldDepthOnCacheMergeConflict(1);
|
|
@@ -11483,5 +11545,5 @@ function ldsEngineCreator() {
|
|
|
11483
11545
|
return { name: 'ldsEngineCreator' };
|
|
11484
11546
|
}
|
|
11485
11547
|
|
|
11486
|
-
export { LexRequestStrategy, PdlPrefetcherEventType, PdlRequestPriority, buildPredictorForContext, configService, ldsEngineCreator as default, initializeLDS, initializeOneStore, notifyUpdateAvailableFactory, registerRequestStrategy, saveRequestAsPrediction, subscribeToPrefetcherEvents, unregisterRequestStrategy, whenPredictionsReady };
|
|
11487
|
-
// version: 1.
|
|
11548
|
+
export { LexRequestStrategy, PDL_ENGINE_REGISTRATION_ID, PdlPrefetcherEventType, PdlRequestPriority, buildPredictorForContext, configService, ldsEngineCreator as default, initializeLDS, initializeOneStore, notifyUpdateAvailableFactory, registerRequestStrategy, saveRequestAsPrediction, subscribeToPrefetcherEvents, unregisterRequestStrategy, whenPredictionsReady };
|
|
11549
|
+
// version: 1.450.0-163071957b
|
package/dist/types/main.d.ts
CHANGED
|
@@ -7,6 +7,11 @@ import { type LexRequest } from './predictive-loading/lex';
|
|
|
7
7
|
export { PdlRequestPriority, PdlPrefetcherEventType } from './predictive-loading';
|
|
8
8
|
export { LexRequestStrategy } from './predictive-loading/request-strategy/lex-request-strategy';
|
|
9
9
|
export { configService } from './config-service-util';
|
|
10
|
+
export declare const PDL_ENGINE_REGISTRATION_ID = "@salesforce/lds-pdl-engine";
|
|
11
|
+
export type PdlEngineRegistration = {
|
|
12
|
+
id: typeof PDL_ENGINE_REGISTRATION_ID;
|
|
13
|
+
buildPredictorForContext: typeof buildPredictorForContext;
|
|
14
|
+
};
|
|
10
15
|
/**
|
|
11
16
|
* Registers a request strategy to be utilized by PDL.
|
|
12
17
|
* @param requestStrategy - {@link LexRequestStrategy} The request strategy/strategies to register.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.450.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS engine for Aura runtime.",
|
|
6
6
|
"main": "dist/ldsEngineCreator.js",
|
|
@@ -34,61 +34,61 @@
|
|
|
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.
|
|
38
|
-
"@conduit-client/tools-core": "3.
|
|
39
|
-
"@salesforce/lds-adapters-apex": "^1.
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-ads-bridge": "^1.
|
|
42
|
-
"@salesforce/lds-aura-storage": "^1.
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
-
"@salesforce/lds-instrumentation": "^1.
|
|
45
|
-
"@salesforce/lds-network-adapter": "^1.
|
|
46
|
-
"@salesforce/lds-network-aura": "^1.
|
|
47
|
-
"@salesforce/lds-network-fetch": "^1.
|
|
37
|
+
"@conduit-client/service-provisioner": "3.26.0",
|
|
38
|
+
"@conduit-client/tools-core": "3.26.0",
|
|
39
|
+
"@salesforce/lds-adapters-apex": "^1.450.0",
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.450.0",
|
|
41
|
+
"@salesforce/lds-ads-bridge": "^1.450.0",
|
|
42
|
+
"@salesforce/lds-aura-storage": "^1.450.0",
|
|
43
|
+
"@salesforce/lds-bindings": "^1.450.0",
|
|
44
|
+
"@salesforce/lds-instrumentation": "^1.450.0",
|
|
45
|
+
"@salesforce/lds-network-adapter": "^1.450.0",
|
|
46
|
+
"@salesforce/lds-network-aura": "^1.450.0",
|
|
47
|
+
"@salesforce/lds-network-fetch": "^1.450.0",
|
|
48
48
|
"jwt-encode": "1.0.1"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@conduit-client/command-aura-graphql-normalized-cache-control": "3.
|
|
52
|
-
"@conduit-client/command-aura-network": "3.
|
|
53
|
-
"@conduit-client/command-aura-normalized-cache-control": "3.
|
|
54
|
-
"@conduit-client/command-fetch-network": "3.
|
|
55
|
-
"@conduit-client/command-http-graphql-normalized-cache-control": "3.
|
|
56
|
-
"@conduit-client/command-http-normalized-cache-control": "3.
|
|
57
|
-
"@conduit-client/command-ndjson": "3.
|
|
58
|
-
"@conduit-client/command-network": "3.
|
|
59
|
-
"@conduit-client/command-sse": "3.
|
|
60
|
-
"@conduit-client/command-streaming": "3.
|
|
61
|
-
"@conduit-client/jwt-manager": "3.
|
|
62
|
-
"@conduit-client/service-aura-network": "3.
|
|
63
|
-
"@conduit-client/service-bindings-imperative": "3.
|
|
64
|
-
"@conduit-client/service-bindings-lwc": "3.
|
|
65
|
-
"@conduit-client/service-cache": "3.
|
|
66
|
-
"@conduit-client/service-cache-control": "3.
|
|
67
|
-
"@conduit-client/service-cache-inclusion-policy": "3.
|
|
68
|
-
"@conduit-client/service-config": "3.
|
|
69
|
-
"@conduit-client/service-feature-flags": "3.
|
|
70
|
-
"@conduit-client/service-fetch-network": "3.
|
|
71
|
-
"@conduit-client/service-instrument-command": "3.
|
|
72
|
-
"@conduit-client/service-pubsub": "3.
|
|
73
|
-
"@conduit-client/service-renewable-resource-manager": "3.
|
|
74
|
-
"@conduit-client/service-store": "3.
|
|
75
|
-
"@conduit-client/utils": "3.
|
|
51
|
+
"@conduit-client/command-aura-graphql-normalized-cache-control": "3.26.0",
|
|
52
|
+
"@conduit-client/command-aura-network": "3.26.0",
|
|
53
|
+
"@conduit-client/command-aura-normalized-cache-control": "3.26.0",
|
|
54
|
+
"@conduit-client/command-fetch-network": "3.26.0",
|
|
55
|
+
"@conduit-client/command-http-graphql-normalized-cache-control": "3.26.0",
|
|
56
|
+
"@conduit-client/command-http-normalized-cache-control": "3.26.0",
|
|
57
|
+
"@conduit-client/command-ndjson": "3.26.0",
|
|
58
|
+
"@conduit-client/command-network": "3.26.0",
|
|
59
|
+
"@conduit-client/command-sse": "3.26.0",
|
|
60
|
+
"@conduit-client/command-streaming": "3.26.0",
|
|
61
|
+
"@conduit-client/jwt-manager": "3.26.0",
|
|
62
|
+
"@conduit-client/service-aura-network": "3.26.0",
|
|
63
|
+
"@conduit-client/service-bindings-imperative": "3.26.0",
|
|
64
|
+
"@conduit-client/service-bindings-lwc": "3.26.0",
|
|
65
|
+
"@conduit-client/service-cache": "3.26.0",
|
|
66
|
+
"@conduit-client/service-cache-control": "3.26.0",
|
|
67
|
+
"@conduit-client/service-cache-inclusion-policy": "3.26.0",
|
|
68
|
+
"@conduit-client/service-config": "3.26.0",
|
|
69
|
+
"@conduit-client/service-feature-flags": "3.26.0",
|
|
70
|
+
"@conduit-client/service-fetch-network": "3.26.0",
|
|
71
|
+
"@conduit-client/service-instrument-command": "3.26.0",
|
|
72
|
+
"@conduit-client/service-pubsub": "3.26.0",
|
|
73
|
+
"@conduit-client/service-renewable-resource-manager": "3.26.0",
|
|
74
|
+
"@conduit-client/service-store": "3.26.0",
|
|
75
|
+
"@conduit-client/utils": "3.26.0",
|
|
76
76
|
"@luvio/network-adapter-composable": "0.161.0",
|
|
77
77
|
"@luvio/network-adapter-fetch": "0.161.0",
|
|
78
78
|
"@lwc/state": "^0.29.0",
|
|
79
|
-
"@salesforce/lds-adapters-onestore-graphql": "^1.
|
|
79
|
+
"@salesforce/lds-adapters-onestore-graphql": "^1.450.0",
|
|
80
80
|
"@salesforce/lds-adapters-uiapi-lex": "^1.415.0",
|
|
81
|
-
"@salesforce/lds-durable-storage": "^1.
|
|
82
|
-
"@salesforce/lds-luvio-service": "^1.
|
|
83
|
-
"@salesforce/lds-luvio-uiapi-records-service": "^1.
|
|
81
|
+
"@salesforce/lds-durable-storage": "^1.450.0",
|
|
82
|
+
"@salesforce/lds-luvio-service": "^1.450.0",
|
|
83
|
+
"@salesforce/lds-luvio-uiapi-records-service": "^1.450.0"
|
|
84
84
|
},
|
|
85
85
|
"luvioBundlesize": [
|
|
86
86
|
{
|
|
87
87
|
"path": "./dist/ldsEngineCreator.js",
|
|
88
88
|
"maxSize": {
|
|
89
|
-
"none": "
|
|
89
|
+
"none": "415 kB",
|
|
90
90
|
"min": "190 kB",
|
|
91
|
-
"compressed": "
|
|
91
|
+
"compressed": "73 kB"
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
],
|