@salesforce/lds-instrumentation 1.207.0 → 1.208.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/ldsInstrumentation.js +10 -2
- package/package.json +1 -1
|
@@ -91,7 +91,15 @@ var FragmentReadResultState;
|
|
|
91
91
|
({
|
|
92
92
|
state: FragmentReadResultState.Missing,
|
|
93
93
|
});
|
|
94
|
-
|
|
94
|
+
|
|
95
|
+
var ScalarTypes;
|
|
96
|
+
(function (ScalarTypes) {
|
|
97
|
+
ScalarTypes[ScalarTypes["String"] = 0] = "String";
|
|
98
|
+
ScalarTypes[ScalarTypes["Boolean"] = 1] = "Boolean";
|
|
99
|
+
ScalarTypes[ScalarTypes["Number"] = 2] = "Number";
|
|
100
|
+
ScalarTypes[ScalarTypes["Integer"] = 3] = "Integer";
|
|
101
|
+
})(ScalarTypes || (ScalarTypes = {}));
|
|
102
|
+
// engine version: 0.144.2-0928b9a8
|
|
95
103
|
|
|
96
104
|
const DurableEnvironmentEventDiscriminator = 'durable';
|
|
97
105
|
function isDurableEnvironmentEvent(event) {
|
|
@@ -1458,4 +1466,4 @@ function setStoreEventObservers(store) {
|
|
|
1458
1466
|
const instrumentation = new Instrumentation();
|
|
1459
1467
|
|
|
1460
1468
|
export { Instrumentation, LRUCache, metricKeys as METRIC_KEYS, handleIngestedNewData, handleOnDataOutOfTtlDurationUpdate, incrementCounterMetric, incrementGetRecordNormalInvokeCount, incrementGetRecordNotifyChangeAllowCount, incrementGetRecordNotifyChangeDropCount, incrementNotifyRecordUpdateAvailableAllowCount, incrementNotifyRecordUpdateAvailableDropCount, instrumentAdapter, instrumentLuvio, instrumentMethods, instrumentStoreMethods, instrumentation, logObjectInfoChanged, setInstrumentationHooks, setLdsAdaptersUiapiInstrumentation, setLdsNetworkAdapterInstrumentation, setStoreEventObservers, setupInstrumentation, startAdapterActivity, updatePercentileHistogramMetric };
|
|
1461
|
-
// version: 1.
|
|
1469
|
+
// version: 1.208.0-75bd0667c
|
package/package.json
CHANGED