@salesforce/lds-instrumentation 1.214.2 → 1.216.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 +17 -9
- package/package.json +1 -1
|
@@ -92,14 +92,22 @@ var FragmentReadResultState;
|
|
|
92
92
|
state: FragmentReadResultState.Missing,
|
|
93
93
|
});
|
|
94
94
|
|
|
95
|
-
var
|
|
96
|
-
(function (
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
})(
|
|
102
|
-
|
|
95
|
+
var ResourceParamType;
|
|
96
|
+
(function (ResourceParamType) {
|
|
97
|
+
ResourceParamType[ResourceParamType["UrlParameter"] = 0] = "UrlParameter";
|
|
98
|
+
ResourceParamType[ResourceParamType["QueryParameter"] = 1] = "QueryParameter";
|
|
99
|
+
ResourceParamType[ResourceParamType["Body"] = 2] = "Body";
|
|
100
|
+
ResourceParamType[ResourceParamType["Header"] = 3] = "Header";
|
|
101
|
+
})(ResourceParamType || (ResourceParamType = {}));
|
|
102
|
+
var TypeCheckShapes;
|
|
103
|
+
(function (TypeCheckShapes) {
|
|
104
|
+
TypeCheckShapes[TypeCheckShapes["String"] = 0] = "String";
|
|
105
|
+
TypeCheckShapes[TypeCheckShapes["Boolean"] = 1] = "Boolean";
|
|
106
|
+
TypeCheckShapes[TypeCheckShapes["Number"] = 2] = "Number";
|
|
107
|
+
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
108
|
+
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
109
|
+
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
110
|
+
// engine version: 0.144.8-6b791a2d
|
|
103
111
|
|
|
104
112
|
const DurableEnvironmentEventDiscriminator = 'durable';
|
|
105
113
|
function isDurableEnvironmentEvent(event) {
|
|
@@ -1488,4 +1496,4 @@ function setStoreEventObservers(store) {
|
|
|
1488
1496
|
const instrumentation = new Instrumentation();
|
|
1489
1497
|
|
|
1490
1498
|
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 };
|
|
1491
|
-
// version: 1.
|
|
1499
|
+
// version: 1.216.0-439ed6d37
|
package/package.json
CHANGED