@nsshunt/stsobservability 1.0.40 → 1.0.41
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.
|
@@ -415,10 +415,10 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
415
415
|
}
|
|
416
416
|
}
|
|
417
417
|
ProcessTelemetry(telemetry) {
|
|
418
|
-
if (telemetry.Inc) {
|
|
418
|
+
if (telemetry.Inc !== void 0) {
|
|
419
419
|
this.Inc(telemetry.Inc);
|
|
420
420
|
}
|
|
421
|
-
if (telemetry.val) {
|
|
421
|
+
if (telemetry.val !== void 0) {
|
|
422
422
|
this.val = telemetry.val;
|
|
423
423
|
}
|
|
424
424
|
}
|
|
@@ -813,7 +813,7 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
813
813
|
}
|
|
814
814
|
}
|
|
815
815
|
ProcessTelemetry(telemetry) {
|
|
816
|
-
if (telemetry.val) {
|
|
816
|
+
if (telemetry.val !== void 0) {
|
|
817
817
|
this.val = telemetry.val;
|
|
818
818
|
}
|
|
819
819
|
}
|
|
@@ -1025,16 +1025,16 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
1025
1025
|
__privateSet(this, _readPos, 0);
|
|
1026
1026
|
}
|
|
1027
1027
|
ProcessTelemetry(telemetry) {
|
|
1028
|
-
if (telemetry.val) {
|
|
1028
|
+
if (telemetry.val !== void 0) {
|
|
1029
1029
|
this.val = telemetry.val;
|
|
1030
1030
|
}
|
|
1031
|
-
if (telemetry.Append) {
|
|
1031
|
+
if (telemetry.Append !== void 0) {
|
|
1032
1032
|
this.Append(telemetry.Append);
|
|
1033
1033
|
}
|
|
1034
|
-
if (telemetry.LogMessage) {
|
|
1034
|
+
if (telemetry.LogMessage !== void 0) {
|
|
1035
1035
|
this.LogMessage(telemetry.LogMessage);
|
|
1036
1036
|
}
|
|
1037
|
-
if (telemetry.ResetLog) {
|
|
1037
|
+
if (telemetry.ResetLog !== void 0 && telemetry.ResetLog === true) {
|
|
1038
1038
|
this.ResetLog();
|
|
1039
1039
|
}
|
|
1040
1040
|
}
|
|
@@ -1160,16 +1160,16 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
1160
1160
|
}
|
|
1161
1161
|
*/
|
|
1162
1162
|
ProcessTelemetry(telemetry) {
|
|
1163
|
-
if (telemetry.val) {
|
|
1163
|
+
if (telemetry.val !== void 0) {
|
|
1164
1164
|
this.val = telemetry.val;
|
|
1165
1165
|
}
|
|
1166
|
-
if (telemetry.Pause) {
|
|
1166
|
+
if (telemetry.Pause !== void 0 && telemetry.Pause === true) {
|
|
1167
1167
|
this.Pause();
|
|
1168
1168
|
}
|
|
1169
|
-
if (telemetry.Resume) {
|
|
1169
|
+
if (telemetry.Resume !== void 0 && telemetry.Resume === true) {
|
|
1170
1170
|
this.Resume();
|
|
1171
1171
|
}
|
|
1172
|
-
if (telemetry.Reset) {
|
|
1172
|
+
if (telemetry.Reset !== void 0 && telemetry.Reset === true) {
|
|
1173
1173
|
this.Reset();
|
|
1174
1174
|
}
|
|
1175
1175
|
}
|
|
@@ -2040,13 +2040,13 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
2040
2040
|
__privateMethod(this, _InstrumentGauge_instances, SetVal_fn5).call(this, __privateGet(this, _val3) - decVal);
|
|
2041
2041
|
}
|
|
2042
2042
|
ProcessTelemetry(telemetry) {
|
|
2043
|
-
if (telemetry.Inc) {
|
|
2043
|
+
if (telemetry.Inc !== void 0) {
|
|
2044
2044
|
this.Inc(telemetry.Inc);
|
|
2045
2045
|
}
|
|
2046
|
-
if (telemetry.Dec) {
|
|
2046
|
+
if (telemetry.Dec !== void 0) {
|
|
2047
2047
|
this.Dec(telemetry.Dec);
|
|
2048
2048
|
}
|
|
2049
|
-
if (telemetry.val) {
|
|
2049
|
+
if (telemetry.val !== void 0) {
|
|
2050
2050
|
this.val = telemetry.val;
|
|
2051
2051
|
}
|
|
2052
2052
|
}
|
|
@@ -2194,7 +2194,7 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
2194
2194
|
return this;
|
|
2195
2195
|
}
|
|
2196
2196
|
ProcessTelemetry(telemetry) {
|
|
2197
|
-
if (telemetry.val) {
|
|
2197
|
+
if (telemetry.val !== void 0) {
|
|
2198
2198
|
this.val = telemetry.val;
|
|
2199
2199
|
}
|
|
2200
2200
|
}
|