slnodejs 6.1.754 → 6.1.760
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/browser-agent/dist/browser-agent-all.js +42 -5
- package/browser-agent/dist/browser-agent-all.min.js +2 -2
- package/browser-agent/package.json +1 -1
- package/package.json +1 -1
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +4 -3
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
- package/tsOutputs/cli-parse/contracts.d.ts +2 -0
- package/tsOutputs/cli-parse/contracts.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-executor.js +2 -0
- package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
|
@@ -1300,13 +1300,19 @@ var ValueType;
|
|
|
1300
1300
|
* limitations under the License.
|
|
1301
1301
|
*/
|
|
1302
1302
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1303
|
-
exports.createNoopMeter = exports.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC = exports.NOOP_OBSERVABLE_GAUGE_METRIC = exports.NOOP_OBSERVABLE_COUNTER_METRIC = exports.NOOP_UP_DOWN_COUNTER_METRIC = exports.NOOP_HISTOGRAM_METRIC = exports.NOOP_COUNTER_METRIC = exports.NOOP_METER = exports.NoopObservableUpDownCounterMetric = exports.NoopObservableGaugeMetric = exports.NoopObservableCounterMetric = exports.NoopObservableMetric = exports.NoopHistogramMetric = exports.NoopUpDownCounterMetric = exports.NoopCounterMetric = exports.NoopMetric = exports.NoopMeter = void 0;
|
|
1303
|
+
exports.createNoopMeter = exports.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC = exports.NOOP_OBSERVABLE_GAUGE_METRIC = exports.NOOP_OBSERVABLE_COUNTER_METRIC = exports.NOOP_UP_DOWN_COUNTER_METRIC = exports.NOOP_HISTOGRAM_METRIC = exports.NOOP_GAUGE_METRIC = exports.NOOP_COUNTER_METRIC = exports.NOOP_METER = exports.NoopObservableUpDownCounterMetric = exports.NoopObservableGaugeMetric = exports.NoopObservableCounterMetric = exports.NoopObservableMetric = exports.NoopHistogramMetric = exports.NoopGaugeMetric = exports.NoopUpDownCounterMetric = exports.NoopCounterMetric = exports.NoopMetric = exports.NoopMeter = void 0;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* NoopMeter is a noop implementation of the {@link Meter} interface. It reuses
|
|
1306
1306
|
* constant NoopMetrics for all of its methods.
|
|
1307
1307
|
*/
|
|
1308
1308
|
class NoopMeter {
|
|
1309
1309
|
constructor() { }
|
|
1310
|
+
/**
|
|
1311
|
+
* @see {@link Meter.createGauge}
|
|
1312
|
+
*/
|
|
1313
|
+
createGauge(_name, _options) {
|
|
1314
|
+
return exports.NOOP_GAUGE_METRIC;
|
|
1315
|
+
}
|
|
1310
1316
|
/**
|
|
1311
1317
|
* @see {@link Meter.createHistogram}
|
|
1312
1318
|
*/
|
|
@@ -1364,6 +1370,10 @@ class NoopUpDownCounterMetric extends NoopMetric {
|
|
|
1364
1370
|
add(_value, _attributes) { }
|
|
1365
1371
|
}
|
|
1366
1372
|
exports.NoopUpDownCounterMetric = NoopUpDownCounterMetric;
|
|
1373
|
+
class NoopGaugeMetric extends NoopMetric {
|
|
1374
|
+
record(_value, _attributes) { }
|
|
1375
|
+
}
|
|
1376
|
+
exports.NoopGaugeMetric = NoopGaugeMetric;
|
|
1367
1377
|
class NoopHistogramMetric extends NoopMetric {
|
|
1368
1378
|
record(_value, _attributes) { }
|
|
1369
1379
|
}
|
|
@@ -1385,6 +1395,7 @@ exports.NoopObservableUpDownCounterMetric = NoopObservableUpDownCounterMetric;
|
|
|
1385
1395
|
exports.NOOP_METER = new NoopMeter();
|
|
1386
1396
|
// Synchronous instruments
|
|
1387
1397
|
exports.NOOP_COUNTER_METRIC = new NoopCounterMetric();
|
|
1398
|
+
exports.NOOP_GAUGE_METRIC = new NoopGaugeMetric();
|
|
1388
1399
|
exports.NOOP_HISTOGRAM_METRIC = new NoopHistogramMetric();
|
|
1389
1400
|
exports.NOOP_UP_DOWN_COUNTER_METRIC = new NoopUpDownCounterMetric();
|
|
1390
1401
|
// Asynchronous instruments
|
|
@@ -1674,6 +1685,12 @@ class NonRecordingSpan {
|
|
|
1674
1685
|
addEvent(_name, _attributes) {
|
|
1675
1686
|
return this;
|
|
1676
1687
|
}
|
|
1688
|
+
addLink(_link) {
|
|
1689
|
+
return this;
|
|
1690
|
+
}
|
|
1691
|
+
addLinks(_links) {
|
|
1692
|
+
return this;
|
|
1693
|
+
}
|
|
1677
1694
|
// By default does nothing
|
|
1678
1695
|
setStatus(_status) {
|
|
1679
1696
|
return this;
|
|
@@ -2411,7 +2428,7 @@ var TraceFlags;
|
|
|
2411
2428
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2412
2429
|
exports.VERSION = void 0;
|
|
2413
2430
|
// this is autogenerated file, see scripts/version-update.js
|
|
2414
|
-
exports.VERSION = '1.
|
|
2431
|
+
exports.VERSION = '1.9.0';
|
|
2415
2432
|
|
|
2416
2433
|
},{}],47:[function(require,module,exports){
|
|
2417
2434
|
"use strict";
|
|
@@ -4784,8 +4801,28 @@ function isWrapped(func) {
|
|
|
4784
4801
|
exports.isWrapped = isWrapped;
|
|
4785
4802
|
|
|
4786
4803
|
},{}],86:[function(require,module,exports){
|
|
4787
|
-
|
|
4788
|
-
|
|
4804
|
+
"use strict";
|
|
4805
|
+
/*
|
|
4806
|
+
* Copyright The OpenTelemetry Authors
|
|
4807
|
+
*
|
|
4808
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4809
|
+
* you may not use this file except in compliance with the License.
|
|
4810
|
+
* You may obtain a copy of the License at
|
|
4811
|
+
*
|
|
4812
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
4813
|
+
*
|
|
4814
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4815
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4816
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4817
|
+
* See the License for the specific language governing permissions and
|
|
4818
|
+
* limitations under the License.
|
|
4819
|
+
*/
|
|
4820
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4821
|
+
exports.VERSION = void 0;
|
|
4822
|
+
// this is autogenerated file, see scripts/version-update.js
|
|
4823
|
+
exports.VERSION = '1.8.0';
|
|
4824
|
+
|
|
4825
|
+
},{}],87:[function(require,module,exports){
|
|
4789
4826
|
"use strict";
|
|
4790
4827
|
/*
|
|
4791
4828
|
* Copyright The OpenTelemetry Authors
|
|
@@ -57095,7 +57132,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
57095
57132
|
"use strict";
|
|
57096
57133
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57097
57134
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
57098
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
57135
|
+
exports.SL_AGENT_VERSION = '6.1.760';
|
|
57099
57136
|
exports.SL_AGENT_TYPE = 'browser';
|
|
57100
57137
|
});
|
|
57101
57138
|
|