@probelabs/visor 0.1.101 → 0.1.102
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/debug-visualizer/debug-span-exporter.d.ts.map +1 -1
- package/dist/index.js +78 -100
- package/dist/telemetry/file-span-exporter.d.ts.map +1 -1
- package/dist/telemetry/opentelemetry.d.ts.map +1 -1
- package/dist/telemetry/trace-report-exporter.d.ts.map +1 -1
- package/package.json +1 -1
- /package/dist/output/traces/{run-2025-10-22T12-56-09-586Z.ndjson → run-2025-10-22T13-28-22-633Z.ndjson} +0 -0
- /package/dist/traces/{run-2025-10-22T12-56-09-586Z.ndjson → run-2025-10-22T13-28-22-633Z.ndjson} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"debug-span-exporter.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/debug-visualizer/debug-span-exporter.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,qBAAqB,EAAiB,MAAM,aAAa,CAAC;AAInE,KAAK,YAAY,GAAG,GAAG,CAAC;AAExB,KAAK,YAAY,GAAG,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"debug-span-exporter.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/debug-visualizer/debug-span-exporter.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,qBAAqB,EAAiB,MAAM,aAAa,CAAC;AAInE,KAAK,YAAY,GAAG,GAAG,CAAC;AAExB,KAAK,YAAY,GAAG,GAAG,CAAC;AAexB;;GAEG;AACH,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,MAAM,CAAwB;gBAE1B,MAAM,EAAE,qBAAqB;IAIzC;;OAEG;IACH,MAAM,CAAC,KAAK,EAAE,YAAY,EAAE,EAAE,cAAc,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,GAAG,IAAI;IAqBnF;;OAEG;IACG,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAK/B;;OAEG;IACG,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAIjC;;OAEG;IACH,OAAO,CAAC,WAAW;IA4CnB;;OAEG;IACH,OAAO,CAAC,aAAa;IAIrB;;OAEG;IACH,OAAO,CAAC,cAAc;CAGvB;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,qBAAqB,GAAG,iBAAiB,CAExF"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
process.env.VISOR_VERSION = '0.1.
|
|
2
|
+
process.env.VISOR_VERSION = '0.1.102';
|
|
3
3
|
process.env.PROBE_VERSION = '0.6.0-rc154';
|
|
4
4
|
/******/ (() => { // webpackBootstrap
|
|
5
5
|
/******/ var __webpack_modules__ = ({
|
|
@@ -124432,7 +124432,9 @@ exports.createDebugSpanExporter = createDebugSpanExporter;
|
|
|
124432
124432
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
124433
124433
|
let otelCore;
|
|
124434
124434
|
try {
|
|
124435
|
-
otelCore =
|
|
124435
|
+
otelCore = (function (name) {
|
|
124436
|
+
return __nccwpck_require__(39022)(name);
|
|
124437
|
+
})('@opentelemetry/core');
|
|
124436
124438
|
}
|
|
124437
124439
|
catch {
|
|
124438
124440
|
// OpenTelemetry not installed - this file won't be used
|
|
@@ -137976,7 +137978,9 @@ const path = __importStar(__nccwpck_require__(16928));
|
|
|
137976
137978
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
137977
137979
|
let otelCore;
|
|
137978
137980
|
try {
|
|
137979
|
-
otelCore =
|
|
137981
|
+
otelCore = (function (name) {
|
|
137982
|
+
return require(name);
|
|
137983
|
+
})('@opentelemetry/core');
|
|
137980
137984
|
}
|
|
137981
137985
|
catch {
|
|
137982
137986
|
// OpenTelemetry not installed - this file won't be used
|
|
@@ -138448,17 +138452,29 @@ async function initTelemetry(opts = {}) {
|
|
|
138448
138452
|
try {
|
|
138449
138453
|
// IMPORTANT: Set up AsyncHooksContextManager as the global context manager FIRST
|
|
138450
138454
|
// This must happen before any OpenTelemetry operations
|
|
138451
|
-
const otelApi =
|
|
138452
|
-
|
|
138455
|
+
const otelApi = (function (name) {
|
|
138456
|
+
return require(name);
|
|
138457
|
+
})('@opentelemetry/api');
|
|
138458
|
+
const { AsyncHooksContextManager } = (function (name) {
|
|
138459
|
+
return require(name);
|
|
138460
|
+
})('@opentelemetry/context-async-hooks');
|
|
138453
138461
|
const contextManager = new AsyncHooksContextManager();
|
|
138454
138462
|
contextManager.enable();
|
|
138455
138463
|
otelApi.context.setGlobalContextManager(contextManager);
|
|
138456
138464
|
// console.debug('[telemetry] AsyncHooksContextManager enabled and set as global');
|
|
138457
|
-
const { NodeSDK } =
|
|
138465
|
+
const { NodeSDK } = (function (name) {
|
|
138466
|
+
return require(name);
|
|
138467
|
+
})('@opentelemetry/sdk-node');
|
|
138458
138468
|
// Support both OpenTelemetry v1 and v2 APIs
|
|
138459
|
-
const resourcesModule =
|
|
138460
|
-
|
|
138461
|
-
|
|
138469
|
+
const resourcesModule = (function (name) {
|
|
138470
|
+
return require(name);
|
|
138471
|
+
})('@opentelemetry/resources');
|
|
138472
|
+
const semanticConventions = (function (name) {
|
|
138473
|
+
return require(name);
|
|
138474
|
+
})('@opentelemetry/semantic-conventions');
|
|
138475
|
+
const { BatchSpanProcessor, ConsoleSpanExporter } = (function (name) {
|
|
138476
|
+
return require(name);
|
|
138477
|
+
})('@opentelemetry/sdk-trace-base');
|
|
138462
138478
|
const sink = (opts.sink || process.env.VISOR_TELEMETRY_SINK || 'file');
|
|
138463
138479
|
const processors = [];
|
|
138464
138480
|
// Prepare a single fallback NDJSON file per run when using file sink
|
|
@@ -138478,7 +138494,9 @@ async function initTelemetry(opts = {}) {
|
|
|
138478
138494
|
if (sink === 'otlp') {
|
|
138479
138495
|
const protocol = opts.otlp?.protocol || 'http';
|
|
138480
138496
|
if (protocol === 'http') {
|
|
138481
|
-
const { OTLPTraceExporter } =
|
|
138497
|
+
const { OTLPTraceExporter } = (function (name) {
|
|
138498
|
+
return require(name);
|
|
138499
|
+
})('@opentelemetry/exporter-trace-otlp-http');
|
|
138482
138500
|
const exporter = new OTLPTraceExporter({
|
|
138483
138501
|
url: opts.otlp?.endpoint ||
|
|
138484
138502
|
process.env.OTEL_EXPORTER_OTLP_TRACES_ENDPOINT ||
|
|
@@ -138489,7 +138507,9 @@ async function initTelemetry(opts = {}) {
|
|
|
138489
138507
|
}
|
|
138490
138508
|
else {
|
|
138491
138509
|
try {
|
|
138492
|
-
const { OTLPTraceExporter: GrpcExporter
|
|
138510
|
+
const { OTLPTraceExporter: GrpcExporter } = (function (name) {
|
|
138511
|
+
return require(name);
|
|
138512
|
+
})('@opentelemetry/exporter-trace-otlp-grpc');
|
|
138493
138513
|
processors.push(new BatchSpanProcessor(new GrpcExporter({}), batchParams()));
|
|
138494
138514
|
}
|
|
138495
138515
|
catch {
|
|
@@ -138533,8 +138553,12 @@ async function initTelemetry(opts = {}) {
|
|
|
138533
138553
|
let metricReader;
|
|
138534
138554
|
if (sink === 'otlp') {
|
|
138535
138555
|
try {
|
|
138536
|
-
const { OTLPMetricExporter } =
|
|
138537
|
-
|
|
138556
|
+
const { OTLPMetricExporter } = (function (name) {
|
|
138557
|
+
return require(name);
|
|
138558
|
+
})('@opentelemetry/exporter-metrics-otlp-http');
|
|
138559
|
+
const { PeriodicExportingMetricReader } = (function (name) {
|
|
138560
|
+
return require(name);
|
|
138561
|
+
})('@opentelemetry/sdk-metrics');
|
|
138538
138562
|
const mExporter = new OTLPMetricExporter({
|
|
138539
138563
|
url: process.env.OTEL_EXPORTER_OTLP_METRICS_ENDPOINT ||
|
|
138540
138564
|
process.env.OTEL_EXPORTER_OTLP_ENDPOINT,
|
|
@@ -138555,7 +138579,9 @@ async function initTelemetry(opts = {}) {
|
|
|
138555
138579
|
const autoInstr = opts.autoInstrument === true || process.env.VISOR_TELEMETRY_AUTO_INSTRUMENTATIONS === 'true';
|
|
138556
138580
|
if (autoInstr) {
|
|
138557
138581
|
try {
|
|
138558
|
-
const { getNodeAutoInstrumentations
|
|
138582
|
+
const { getNodeAutoInstrumentations } = (function (name) {
|
|
138583
|
+
return require(name);
|
|
138584
|
+
})('@opentelemetry/auto-instrumentations-node');
|
|
138559
138585
|
instrumentations = [getNodeAutoInstrumentations()];
|
|
138560
138586
|
}
|
|
138561
138587
|
catch {
|
|
@@ -138566,7 +138592,9 @@ async function initTelemetry(opts = {}) {
|
|
|
138566
138592
|
if (opts.traceReport === true || process.env.VISOR_TRACE_REPORT === 'true') {
|
|
138567
138593
|
try {
|
|
138568
138594
|
const { TraceReportExporter } = __nccwpck_require__(78419);
|
|
138569
|
-
const { BatchSpanProcessor } =
|
|
138595
|
+
const { BatchSpanProcessor } = (function (name) {
|
|
138596
|
+
return require(name);
|
|
138597
|
+
})('@opentelemetry/sdk-trace-base');
|
|
138570
138598
|
processors.push(new BatchSpanProcessor(new TraceReportExporter({
|
|
138571
138599
|
dir: opts.file?.dir || process.env.VISOR_TRACE_DIR,
|
|
138572
138600
|
runId: opts.file?.runId,
|
|
@@ -138581,7 +138609,9 @@ async function initTelemetry(opts = {}) {
|
|
|
138581
138609
|
// Debug span exporter streams live spans to the visualizer server
|
|
138582
138610
|
try {
|
|
138583
138611
|
const { DebugSpanExporter } = __nccwpck_require__(1730);
|
|
138584
|
-
const { SimpleSpanProcessor } =
|
|
138612
|
+
const { SimpleSpanProcessor } = (function (name) {
|
|
138613
|
+
return require(name);
|
|
138614
|
+
})('@opentelemetry/sdk-trace-base');
|
|
138585
138615
|
const debugExporter = new DebugSpanExporter(opts.debugServer);
|
|
138586
138616
|
processors.push(new SimpleSpanProcessor(debugExporter));
|
|
138587
138617
|
// console.debug('[telemetry] Debug span exporter added successfully, total processors:', processors.length);
|
|
@@ -138620,7 +138650,9 @@ async function initTelemetry(opts = {}) {
|
|
|
138620
138650
|
// Context manager is already set globally above
|
|
138621
138651
|
// Auto-instrumentations can be added later when desired
|
|
138622
138652
|
});
|
|
138623
|
-
const otelApiForDiag =
|
|
138653
|
+
const otelApiForDiag = (function (name) {
|
|
138654
|
+
return require(name);
|
|
138655
|
+
})('@opentelemetry/api');
|
|
138624
138656
|
const DiagConsoleLoggerClass = otelApiForDiag.DiagConsoleLogger;
|
|
138625
138657
|
const diagLogLevel = otelApiForDiag.DiagLogLevel;
|
|
138626
138658
|
otelApiForDiag.diag.setLogger(new DiagConsoleLoggerClass(), diagLogLevel.ERROR);
|
|
@@ -138689,7 +138721,9 @@ function patchConsole() {
|
|
|
138689
138721
|
if (patched)
|
|
138690
138722
|
return;
|
|
138691
138723
|
try {
|
|
138692
|
-
const { context, trace } =
|
|
138724
|
+
const { context, trace } = (function (name) {
|
|
138725
|
+
return require(name);
|
|
138726
|
+
})('@opentelemetry/api');
|
|
138693
138727
|
const methods = ['log', 'info', 'warn', 'error'];
|
|
138694
138728
|
const c = globalThis.console;
|
|
138695
138729
|
for (const m of methods) {
|
|
@@ -139151,7 +139185,9 @@ const path = __importStar(__nccwpck_require__(16928));
|
|
|
139151
139185
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
139152
139186
|
let otelCore;
|
|
139153
139187
|
try {
|
|
139154
|
-
otelCore =
|
|
139188
|
+
otelCore = (function (name) {
|
|
139189
|
+
return __nccwpck_require__(81925)(name);
|
|
139190
|
+
})('@opentelemetry/core');
|
|
139155
139191
|
}
|
|
139156
139192
|
catch {
|
|
139157
139193
|
// OpenTelemetry not installed - this file won't be used
|
|
@@ -141526,99 +141562,41 @@ function deriveExecutedCheckNames(groupedResults) {
|
|
|
141526
141562
|
|
|
141527
141563
|
/***/ }),
|
|
141528
141564
|
|
|
141529
|
-
/***/
|
|
141530
|
-
/***/ ((module) => {
|
|
141531
|
-
|
|
141532
|
-
"use strict";
|
|
141533
|
-
module.exports = require("@opentelemetry/api");
|
|
141534
|
-
|
|
141535
|
-
/***/ }),
|
|
141536
|
-
|
|
141537
|
-
/***/ 81009:
|
|
141538
|
-
/***/ ((module) => {
|
|
141539
|
-
|
|
141540
|
-
"use strict";
|
|
141541
|
-
module.exports = require("@opentelemetry/auto-instrumentations-node");
|
|
141542
|
-
|
|
141543
|
-
/***/ }),
|
|
141544
|
-
|
|
141545
|
-
/***/ 55688:
|
|
141546
|
-
/***/ ((module) => {
|
|
141547
|
-
|
|
141548
|
-
"use strict";
|
|
141549
|
-
module.exports = require("@opentelemetry/context-async-hooks");
|
|
141550
|
-
|
|
141551
|
-
/***/ }),
|
|
141552
|
-
|
|
141553
|
-
/***/ 75942:
|
|
141554
|
-
/***/ ((module) => {
|
|
141555
|
-
|
|
141556
|
-
"use strict";
|
|
141557
|
-
module.exports = require("@opentelemetry/core");
|
|
141558
|
-
|
|
141559
|
-
/***/ }),
|
|
141560
|
-
|
|
141561
|
-
/***/ 67655:
|
|
141562
|
-
/***/ ((module) => {
|
|
141563
|
-
|
|
141564
|
-
"use strict";
|
|
141565
|
-
module.exports = require("@opentelemetry/exporter-metrics-otlp-http");
|
|
141566
|
-
|
|
141567
|
-
/***/ }),
|
|
141568
|
-
|
|
141569
|
-
/***/ 24919:
|
|
141570
|
-
/***/ ((module) => {
|
|
141571
|
-
|
|
141572
|
-
"use strict";
|
|
141573
|
-
module.exports = require("@opentelemetry/exporter-trace-otlp-grpc");
|
|
141574
|
-
|
|
141575
|
-
/***/ }),
|
|
141576
|
-
|
|
141577
|
-
/***/ 15015:
|
|
141565
|
+
/***/ 39022:
|
|
141578
141566
|
/***/ ((module) => {
|
|
141579
141567
|
|
|
141580
|
-
|
|
141581
|
-
|
|
141582
|
-
|
|
141583
|
-
|
|
141584
|
-
|
|
141585
|
-
|
|
141586
|
-
|
|
141587
|
-
|
|
141588
|
-
|
|
141589
|
-
module.exports = require("@opentelemetry/resources");
|
|
141590
|
-
|
|
141591
|
-
/***/ }),
|
|
141592
|
-
|
|
141593
|
-
/***/ 30915:
|
|
141594
|
-
/***/ ((module) => {
|
|
141595
|
-
|
|
141596
|
-
"use strict";
|
|
141597
|
-
module.exports = require("@opentelemetry/sdk-metrics");
|
|
141598
|
-
|
|
141599
|
-
/***/ }),
|
|
141600
|
-
|
|
141601
|
-
/***/ 16306:
|
|
141602
|
-
/***/ ((module) => {
|
|
141603
|
-
|
|
141604
|
-
"use strict";
|
|
141605
|
-
module.exports = require("@opentelemetry/sdk-node");
|
|
141568
|
+
function webpackEmptyContext(req) {
|
|
141569
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
141570
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
141571
|
+
throw e;
|
|
141572
|
+
}
|
|
141573
|
+
webpackEmptyContext.keys = () => ([]);
|
|
141574
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
141575
|
+
webpackEmptyContext.id = 39022;
|
|
141576
|
+
module.exports = webpackEmptyContext;
|
|
141606
141577
|
|
|
141607
141578
|
/***/ }),
|
|
141608
141579
|
|
|
141609
|
-
/***/
|
|
141580
|
+
/***/ 81925:
|
|
141610
141581
|
/***/ ((module) => {
|
|
141611
141582
|
|
|
141612
|
-
|
|
141613
|
-
|
|
141583
|
+
function webpackEmptyContext(req) {
|
|
141584
|
+
var e = new Error("Cannot find module '" + req + "'");
|
|
141585
|
+
e.code = 'MODULE_NOT_FOUND';
|
|
141586
|
+
throw e;
|
|
141587
|
+
}
|
|
141588
|
+
webpackEmptyContext.keys = () => ([]);
|
|
141589
|
+
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
141590
|
+
webpackEmptyContext.id = 81925;
|
|
141591
|
+
module.exports = webpackEmptyContext;
|
|
141614
141592
|
|
|
141615
141593
|
/***/ }),
|
|
141616
141594
|
|
|
141617
|
-
/***/
|
|
141595
|
+
/***/ 2239:
|
|
141618
141596
|
/***/ ((module) => {
|
|
141619
141597
|
|
|
141620
141598
|
"use strict";
|
|
141621
|
-
module.exports = require("@opentelemetry/
|
|
141599
|
+
module.exports = require("@opentelemetry/api");
|
|
141622
141600
|
|
|
141623
141601
|
/***/ }),
|
|
141624
141602
|
|
|
@@ -269011,7 +268989,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"application/1d-interleaved-parityfec
|
|
|
269011
268989
|
/***/ ((module) => {
|
|
269012
268990
|
|
|
269013
268991
|
"use strict";
|
|
269014
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@probelabs/visor","version":"0.1.
|
|
268992
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@probelabs/visor","version":"0.1.102","main":"dist/index.js","bin":{"visor":"./dist/index.js"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.js"},"./sdk":{"types":"./dist/sdk/sdk.d.ts","import":"./dist/sdk/sdk.mjs","require":"./dist/sdk/sdk.js"},"./cli":{"require":"./dist/index.js"}},"files":["dist/","defaults/","action.yml","README.md","LICENSE"],"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"},"scripts":{"build:cli":"ncc build src/index.ts -o dist --external @opentelemetry/api --external @opentelemetry/core --external @opentelemetry/exporter-trace-otlp-grpc --external @opentelemetry/exporter-trace-otlp-http --external @opentelemetry/instrumentation --external @opentelemetry/resources --external @opentelemetry/sdk-metrics --external @opentelemetry/sdk-node --external @opentelemetry/sdk-trace-base --external @opentelemetry/semantic-conventions --external @opentelemetry/context-async-hooks --external @opentelemetry/exporter-metrics-otlp-http --external @opentelemetry/auto-instrumentations-node && cp -r defaults dist/ && cp -r output dist/ && cp -r src/debug-visualizer/ui dist/debug-visualizer/ && node scripts/inject-version.js && echo \'#!/usr/bin/env node\' | cat - dist/index.js > temp && mv temp dist/index.js && chmod +x dist/index.js","build:sdk":"tsup src/sdk.ts --dts --sourcemap --format esm,cjs --out-dir dist/sdk","build":"npm run build:cli && npm run build:sdk","test":"jest","prepublishOnly":"npm run build","test:watch":"jest --watch","test:coverage":"jest --coverage","lint":"eslint src tests --ext .ts","lint:fix":"eslint src tests --ext .ts --fix","format":"prettier --write src tests","format:check":"prettier --check src tests","clean":"","prebuild":"npm run clean && node scripts/generate-config-schema.js","pretest":"node scripts/generate-config-schema.js && npm run build:cli","prepare":"husky","pre-commit":"lint-staged","deploy:site":"cd site && npx wrangler pages deploy . --project-name=visor-site --commit-dirty=true","deploy:worker":"npx wrangler deploy","deploy":"npm run deploy:site && npm run deploy:worker","release":"./scripts/release.sh","release:patch":"./scripts/release.sh patch","release:minor":"./scripts/release.sh minor","release:major":"./scripts/release.sh major","release:prerelease":"./scripts/release.sh prerelease","docs:validate":"node scripts/validate-readme-links.js","workshop:setup":"npm install -D reveal-md@6.1.2","workshop:serve":"cd workshop && reveal-md slides.md -w","workshop:export":"reveal-md workshop/slides.md --static workshop/build","workshop:pdf":"reveal-md workshop/slides.md --print workshop/Visor-Workshop.pdf --print-size letter","workshop:pdf:ci":"reveal-md workshop/slides.md --print workshop/Visor-Workshop.pdf --print-size letter --puppeteer-launch-args=\\"--no-sandbox --disable-dev-shm-usage\\"","workshop:pdf:a4":"reveal-md workshop/slides.md --print workshop/Visor-Workshop-A4.pdf --print-size A4","workshop:build":"npm run workshop:export && npm run workshop:pdf"},"keywords":["code-review","ai","github-action","cli","pr-review","visor"],"author":"Probe Labs","license":"MIT","description":"AI-powered code review tool for GitHub Pull Requests - CLI and GitHub Action","repository":{"type":"git","url":"git+https://github.com/probelabs/visor.git"},"bugs":{"url":"https://github.com/probelabs/visor/issues"},"homepage":"https://github.com/probelabs/visor#readme","dependencies":{"@actions/core":"^1.11.1","@modelcontextprotocol/sdk":"^1.20.1","@nyariv/sandboxjs":"^0.8.25","@octokit/action":"^8.0.2","@octokit/auth-app":"^8.1.0","@octokit/core":"^7.0.3","@octokit/rest":"^22.0.0","@probelabs/probe":"^0.6.0-rc154","@types/commander":"^2.12.0","@types/uuid":"^10.0.0","ajv":"^8.17.1","ajv-formats":"^3.0.1","cli-table3":"^0.6.5","commander":"^14.0.0","dotenv":"^17.2.3","ignore":"^7.0.5","js-yaml":"^4.1.0","liquidjs":"^10.21.1","node-cron":"^3.0.3","open":"^9.1.0","simple-git":"^3.28.0","uuid":"^11.1.0","ws":"^8.18.3"},"optionalDependencies":{"@opentelemetry/api":"^1.9.0","@opentelemetry/core":"^1.30.1","@opentelemetry/exporter-trace-otlp-grpc":"^0.203.0","@opentelemetry/exporter-trace-otlp-http":"^0.203.0","@opentelemetry/instrumentation":"^0.203.0","@opentelemetry/resources":"^1.30.1","@opentelemetry/sdk-metrics":"^1.30.1","@opentelemetry/sdk-node":"^0.203.0","@opentelemetry/sdk-trace-base":"^1.30.1","@opentelemetry/semantic-conventions":"^1.30.1"},"devDependencies":{"@eslint/js":"^9.34.0","@kie/act-js":"^2.6.2","@kie/mock-github":"^2.0.1","@types/jest":"^30.0.0","@types/js-yaml":"^4.0.9","@types/node":"^24.3.0","@types/node-cron":"^3.0.11","@types/ws":"^8.18.1","@typescript-eslint/eslint-plugin":"^8.42.0","@typescript-eslint/parser":"^8.42.0","@vercel/ncc":"^0.38.4","eslint":"^9.34.0","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.4","husky":"^9.1.7","jest":"^30.1.3","lint-staged":"^16.1.6","prettier":"^3.6.2","reveal-md":"^6.1.2","ts-jest":"^29.4.1","ts-json-schema-generator":"^1.5.1","ts-node":"^10.9.2","tsup":"^8.5.0","typescript":"^5.9.2","wrangler":"^3.0.0"},"peerDependencies":{"@anthropic/claude-code-sdk":"^1.0.0"},"peerDependenciesMeta":{"@anthropic/claude-code-sdk":{"optional":true}},"directories":{"test":"tests"},"lint-staged":{"src/**/*.{ts,js}":["eslint --fix","prettier --write"],"tests/**/*.{ts,js}":["eslint --fix","prettier --write"],"*.{json,md,yml,yaml}":["prettier --write"]}}');
|
|
269015
268993
|
|
|
269016
268994
|
/***/ })
|
|
269017
268995
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-span-exporter.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/telemetry/file-span-exporter.ts"],"names":[],"mappings":"AAOA,KAAK,YAAY,GAAG,GAAG,CAAC;AAExB,KAAK,YAAY,GAAG,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"file-span-exporter.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/telemetry/file-span-exporter.ts"],"names":[],"mappings":"AAOA,KAAK,YAAY,GAAG,GAAG,CAAC;AAExB,KAAK,YAAY,GAAG,GAAG,CAAC;AAexB,MAAM,WAAW,uBAAuB;IACtC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,MAAM,CAA0C;IACxD,OAAO,CAAC,MAAM,CAAU;gBAEZ,IAAI,GAAE,uBAA4B;IAiB9C,MAAM,CAAC,KAAK,EAAE,YAAY,EAAE,EAAE,cAAc,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,GAAG,IAAI;IAiBnF,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAezB,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;CAI5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"opentelemetry.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/telemetry/opentelemetry.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAQ3E,MAAM,WAAW,oBAAoB;IACnC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;IACnC,IAAI,CAAC,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC3E,IAAI,CAAC,EAAE;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC1D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,CAAC,EAAE,qBAAqB,CAAC;CACrC;AAKD;;;GAGG;AACH,wBAAgB,wBAAwB,IAAI,IAAI,CAG/C;AAED,wBAAsB,aAAa,CAAC,IAAI,GAAE,oBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"opentelemetry.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/telemetry/opentelemetry.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAQ3E,MAAM,WAAW,oBAAoB;IACnC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;IACnC,IAAI,CAAC,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC3E,IAAI,CAAC,EAAE;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC1D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,CAAC,EAAE,qBAAqB,CAAC;CACrC;AAKD;;;GAGG;AACH,wBAAgB,wBAAwB,IAAI,IAAI,CAG/C;AAED,wBAAsB,aAAa,CAAC,IAAI,GAAE,oBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CAgPlF;AAED,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,CAgCvD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"trace-report-exporter.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/telemetry/trace-report-exporter.ts"],"names":[],"mappings":"AAOA,KAAK,YAAY,GAAG,GAAG,CAAC;AAExB,KAAK,YAAY,GAAG,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"trace-report-exporter.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/telemetry/trace-report-exporter.ts"],"names":[],"mappings":"AAOA,KAAK,YAAY,GAAG,GAAG,CAAC;AAExB,KAAK,YAAY,GAAG,GAAG,CAAC;AAoBxB,MAAM,WAAW,0BAA0B;IACzC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,KAAK,CAAsB;IACnC,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,KAAK,CAAC,CAAS;gBAEX,IAAI,GAAE,0BAA+B;IAMjD,MAAM,CAAC,KAAK,EAAE,YAAY,EAAE,EAAE,cAAc,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,GAAG,IAAI;IAU7E,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IA4I/B,OAAO,CAAC,UAAU;IA6EZ,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;CAGlC"}
|
package/package.json
CHANGED
|
File without changes
|
/package/dist/traces/{run-2025-10-22T12-56-09-586Z.ndjson → run-2025-10-22T13-28-22-633Z.ndjson}
RENAMED
|
File without changes
|