@salesforce/lds-runtime-aura 1.451.0-dev1 → 1.451.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 +16 -5
- package/package.json +15 -15
package/dist/ldsEngineCreator.js
CHANGED
|
@@ -2590,7 +2590,7 @@ function buildServiceDescriptor$d(luvio) {
|
|
|
2590
2590
|
},
|
|
2591
2591
|
};
|
|
2592
2592
|
}
|
|
2593
|
-
// version: 1.451.0-
|
|
2593
|
+
// version: 1.451.0-b776d3eb45
|
|
2594
2594
|
|
|
2595
2595
|
class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheControlCommand {
|
|
2596
2596
|
constructor(config, documentRootType, services) {
|
|
@@ -2929,7 +2929,7 @@ function buildServiceDescriptor$9(notifyRecordUpdateAvailable, getNormalizedLuvi
|
|
|
2929
2929
|
},
|
|
2930
2930
|
};
|
|
2931
2931
|
}
|
|
2932
|
-
// version: 1.451.0-
|
|
2932
|
+
// version: 1.451.0-b776d3eb45
|
|
2933
2933
|
|
|
2934
2934
|
class RetryService {
|
|
2935
2935
|
constructor(defaultRetryPolicy) {
|
|
@@ -5927,7 +5927,7 @@ function getEnvironmentSetting(name) {
|
|
|
5927
5927
|
}
|
|
5928
5928
|
return undefined;
|
|
5929
5929
|
}
|
|
5930
|
-
// version: 1.451.0-
|
|
5930
|
+
// version: 1.451.0-231643dd9a
|
|
5931
5931
|
|
|
5932
5932
|
const auraClientService = getAuraClientService();
|
|
5933
5933
|
const defaultConfig = {
|
|
@@ -6650,7 +6650,11 @@ function createTransportStartMark(requestId) {
|
|
|
6650
6650
|
startMark.context = {
|
|
6651
6651
|
auraXHRId: requestId,
|
|
6652
6652
|
background: false,
|
|
6653
|
-
|
|
6653
|
+
// The Perf App waterfall fabricates a zero-width stub action row per actionDefs
|
|
6654
|
+
// entry and merges it with the real action mark only when their ids match. The
|
|
6655
|
+
// action mark's id is the requestId, so actionDefs must carry the requestId (not a
|
|
6656
|
+
// constant tag) for that merge to happen and the real duration to render.
|
|
6657
|
+
actionDefs: [requestId],
|
|
6654
6658
|
requestId,
|
|
6655
6659
|
requestLength: -1, // not known
|
|
6656
6660
|
};
|
|
@@ -6661,6 +6665,13 @@ function createActionStartMark(context) {
|
|
|
6661
6665
|
id: context.instrumentationId,
|
|
6662
6666
|
cmp: context.cmp || 'none',
|
|
6663
6667
|
source: 'lds-fetch',
|
|
6668
|
+
// These fields don't semantically apply to an HTTP fetch (there's no Aura action
|
|
6669
|
+
// to abort or store), but the Perf App waterfall keys on them: getType() classifies
|
|
6670
|
+
// a mark as an action only when `abortable` is present, and it appends an "(interim)"
|
|
6671
|
+
// label when `storable` is null. `false` is accurate (these requests are neither
|
|
6672
|
+
// abortable nor Aura-storable) and lets the waterfall render the mark at full width.
|
|
6673
|
+
abortable: false,
|
|
6674
|
+
storable: false,
|
|
6664
6675
|
};
|
|
6665
6676
|
mark('actions', 'sendQueued', startMark.context);
|
|
6666
6677
|
mark('actions', 'sendStart', startMark.context);
|
|
@@ -11587,4 +11598,4 @@ function ldsEngineCreator() {
|
|
|
11587
11598
|
}
|
|
11588
11599
|
|
|
11589
11600
|
export { LexRequestStrategy, PDL_ENGINE_REGISTRATION_ID, PdlPrefetcherEventType, PdlRequestPriority, buildPredictorForContext, configService, ldsEngineCreator as default, initializeLDS, initializeOneStore, notifyUpdateAvailableFactory, registerRequestStrategy, saveRequestAsPrediction, subscribeToPrefetcherEvents, unregisterRequestStrategy, whenPredictionsReady };
|
|
11590
|
-
// version: 1.451.0-
|
|
11601
|
+
// version: 1.451.0-b776d3eb45
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-aura",
|
|
3
|
-
"version": "1.451.0
|
|
3
|
+
"version": "1.451.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS engine for Aura runtime.",
|
|
6
6
|
"main": "dist/ldsEngineCreator.js",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@conduit-client/service-provisioner": "3.26.0",
|
|
38
38
|
"@conduit-client/tools-core": "3.26.0",
|
|
39
|
-
"@salesforce/lds-adapters-apex": "^1.451.0
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.451.0
|
|
41
|
-
"@salesforce/lds-ads-bridge": "^1.451.0
|
|
42
|
-
"@salesforce/lds-aura-storage": "^1.451.0
|
|
43
|
-
"@salesforce/lds-bindings": "^1.451.0
|
|
44
|
-
"@salesforce/lds-instrumentation": "^1.451.0
|
|
45
|
-
"@salesforce/lds-network-adapter": "^1.451.0
|
|
46
|
-
"@salesforce/lds-network-aura": "^1.451.0
|
|
47
|
-
"@salesforce/lds-network-fetch": "^1.451.0
|
|
39
|
+
"@salesforce/lds-adapters-apex": "^1.451.0",
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.451.0",
|
|
41
|
+
"@salesforce/lds-ads-bridge": "^1.451.0",
|
|
42
|
+
"@salesforce/lds-aura-storage": "^1.451.0",
|
|
43
|
+
"@salesforce/lds-bindings": "^1.451.0",
|
|
44
|
+
"@salesforce/lds-instrumentation": "^1.451.0",
|
|
45
|
+
"@salesforce/lds-network-adapter": "^1.451.0",
|
|
46
|
+
"@salesforce/lds-network-aura": "^1.451.0",
|
|
47
|
+
"@salesforce/lds-network-fetch": "^1.451.0",
|
|
48
48
|
"jwt-encode": "1.0.1"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
@@ -76,11 +76,11 @@
|
|
|
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.451.0
|
|
79
|
+
"@salesforce/lds-adapters-onestore-graphql": "^1.451.0",
|
|
80
80
|
"@salesforce/lds-adapters-uiapi-lex": "^1.415.0",
|
|
81
|
-
"@salesforce/lds-durable-storage": "^1.451.0
|
|
82
|
-
"@salesforce/lds-luvio-service": "^1.451.0
|
|
83
|
-
"@salesforce/lds-luvio-uiapi-records-service": "^1.451.0
|
|
81
|
+
"@salesforce/lds-durable-storage": "^1.451.0",
|
|
82
|
+
"@salesforce/lds-luvio-service": "^1.451.0",
|
|
83
|
+
"@salesforce/lds-luvio-uiapi-records-service": "^1.451.0"
|
|
84
84
|
},
|
|
85
85
|
"luvioBundlesize": [
|
|
86
86
|
{
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"maxSize": {
|
|
89
89
|
"none": "418 kB",
|
|
90
90
|
"min": "190 kB",
|
|
91
|
-
"compressed": "
|
|
91
|
+
"compressed": "74 kB"
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
],
|