@probelabs/visor 0.1.104 → 0.1.105
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/index.js +80 -24
- package/dist/providers/http-check-provider.d.ts.map +1 -1
- package/dist/providers/http-client-provider.d.ts.map +1 -1
- package/dist/providers/mcp-check-provider.d.ts.map +1 -1
- package/dist/sdk/check-execution-engine-2YYKUUSH.mjs +11 -0
- package/dist/sdk/check-execution-engine-2YYKUUSH.mjs.map +1 -0
- package/dist/sdk/chunk-KWZW23FG.mjs +14129 -0
- package/dist/sdk/chunk-KWZW23FG.mjs.map +1 -0
- package/dist/sdk/sdk.js +44 -4
- package/dist/sdk/sdk.js.map +1 -1
- package/dist/sdk/sdk.mjs +1 -1
- package/dist/utils/env-resolver.d.ts +10 -0
- package/dist/utils/env-resolver.d.ts.map +1 -1
- package/package.json +1 -1
- /package/dist/output/traces/{run-2025-10-22T15-22-56-929Z.ndjson → run-2025-10-22T17-14-47-726Z.ndjson} +0 -0
- /package/dist/traces/{run-2025-10-22T15-22-56-929Z.ndjson → run-2025-10-22T17-14-47-726Z.ndjson} +0 -0
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.105';
|
|
3
3
|
process.env.PROBE_VERSION = '0.6.0-rc154';
|
|
4
4
|
/******/ (() => { // webpackBootstrap
|
|
5
5
|
/******/ var __webpack_modules__ = ({
|
|
@@ -132576,26 +132576,44 @@ async function markCheckAsFailed(checkService, owner, repo, checkRunId, checkNam
|
|
|
132576
132576
|
if (process.env.VISOR_E2E_FORCE_RUN === 'true' ||
|
|
132577
132577
|
(process.env.NODE_ENV !== 'test' && process.env.JEST_WORKER_ID === undefined)) {
|
|
132578
132578
|
(async () => {
|
|
132579
|
-
//
|
|
132580
|
-
//
|
|
132581
|
-
|
|
132582
|
-
|
|
132583
|
-
|
|
132584
|
-
|
|
132585
|
-
|
|
132586
|
-
|
|
132587
|
-
|
|
132579
|
+
// Minimal, yesterday-like behavior with a small exception:
|
|
132580
|
+
// - Default to Action mode under GITHUB_ACTIONS
|
|
132581
|
+
// - But if user explicitly invokes CLI help/version/validate or --mode cli, honor CLI even in Actions
|
|
132582
|
+
const inGithub = process.env.GITHUB_ACTIONS === 'true' || !!process.env.GITHUB_ACTIONS;
|
|
132583
|
+
const forceE2E = process.env.VISOR_E2E_FORCE_RUN === 'true';
|
|
132584
|
+
const argv = process.argv.slice(2);
|
|
132585
|
+
const explicitCliMode = (() => {
|
|
132586
|
+
if (argv.includes('--cli'))
|
|
132587
|
+
return true;
|
|
132588
|
+
const modeEq = argv.find(a => a.startsWith('--mode='));
|
|
132589
|
+
if (modeEq && modeEq.split('=')[1]?.toLowerCase() === 'cli')
|
|
132590
|
+
return true;
|
|
132591
|
+
const modeIdx = argv.indexOf('--mode');
|
|
132592
|
+
if (modeIdx >= 0 && argv[modeIdx + 1]?.toLowerCase() === 'cli')
|
|
132593
|
+
return true;
|
|
132594
|
+
return false;
|
|
132595
|
+
})();
|
|
132596
|
+
const wantsCliHelp = argv.includes('--help') ||
|
|
132597
|
+
argv.includes('-h') ||
|
|
132598
|
+
argv.includes('--version') ||
|
|
132599
|
+
argv.includes('-V') ||
|
|
132600
|
+
argv.includes('validate');
|
|
132601
|
+
const wantsCliJsonSarif = (() => {
|
|
132602
|
+
const outEq = argv.find(a => a.startsWith('--output='));
|
|
132603
|
+
if (outEq) {
|
|
132604
|
+
const v = outEq.split('=')[1]?.toLowerCase();
|
|
132605
|
+
if (v === 'json' || v === 'sarif')
|
|
132606
|
+
return true;
|
|
132588
132607
|
}
|
|
132589
|
-
|
|
132590
|
-
|
|
132591
|
-
|
|
132608
|
+
const outIdx = argv.indexOf('--output');
|
|
132609
|
+
if (outIdx >= 0) {
|
|
132610
|
+
const v = argv[outIdx + 1]?.toLowerCase();
|
|
132611
|
+
if (v === 'json' || v === 'sarif')
|
|
132612
|
+
return true;
|
|
132592
132613
|
}
|
|
132593
|
-
|
|
132594
|
-
|
|
132595
|
-
|
|
132596
|
-
.toLowerCase();
|
|
132597
|
-
const isGitHubMode = mode === 'github-actions' || mode === 'github';
|
|
132598
|
-
if (isGitHubMode) {
|
|
132614
|
+
return false;
|
|
132615
|
+
})();
|
|
132616
|
+
if (inGithub && !explicitCliMode && !wantsCliHelp && !forceE2E && !wantsCliJsonSarif) {
|
|
132599
132617
|
// Run in GitHub Action mode explicitly and await completion to avoid early exit
|
|
132600
132618
|
try {
|
|
132601
132619
|
await run();
|
|
@@ -137682,6 +137700,7 @@ const issue_filter_1 = __nccwpck_require__(36879);
|
|
|
137682
137700
|
const liquid_extensions_1 = __nccwpck_require__(33042);
|
|
137683
137701
|
const lazy_otel_1 = __nccwpck_require__(21084);
|
|
137684
137702
|
const state_capture_1 = __nccwpck_require__(78013);
|
|
137703
|
+
const env_resolver_1 = __nccwpck_require__(58749);
|
|
137685
137704
|
/**
|
|
137686
137705
|
* Check provider that sends data to an HTTP endpoint, typically used as an output/notification provider
|
|
137687
137706
|
*/
|
|
@@ -137778,8 +137797,10 @@ class HttpCheckProvider extends check_provider_interface_1.CheckProvider {
|
|
|
137778
137797
|
return this.createErrorResult(url, new Error(`Template rendering failed: ${error instanceof Error ? error.message : 'Unknown error'}`));
|
|
137779
137798
|
}
|
|
137780
137799
|
try {
|
|
137800
|
+
// Resolve environment variables in headers
|
|
137801
|
+
const resolvedHeaders = env_resolver_1.EnvironmentResolver.resolveHeaders(headers);
|
|
137781
137802
|
// Send webhook request
|
|
137782
|
-
const response = await this.sendWebhookRequest(url, method,
|
|
137803
|
+
const response = await this.sendWebhookRequest(url, method, resolvedHeaders, payload, timeout);
|
|
137783
137804
|
// Parse webhook response
|
|
137784
137805
|
const result = this.parseWebhookResponse(response, url);
|
|
137785
137806
|
// Apply issue suppression filtering
|
|
@@ -137794,9 +137815,12 @@ class HttpCheckProvider extends check_provider_interface_1.CheckProvider {
|
|
|
137794
137815
|
try {
|
|
137795
137816
|
const span = lazy_otel_1.trace.getSpan(lazy_otel_1.context.active());
|
|
137796
137817
|
if (span) {
|
|
137818
|
+
// Sanitize headers for telemetry to avoid exposing sensitive data
|
|
137819
|
+
const sanitizedHeaders = env_resolver_1.EnvironmentResolver.sanitizeHeaders(resolvedHeaders);
|
|
137797
137820
|
(0, state_capture_1.captureProviderCall)(span, 'http', {
|
|
137798
137821
|
url,
|
|
137799
137822
|
method,
|
|
137823
|
+
headers: sanitizedHeaders,
|
|
137800
137824
|
body: JSON.stringify(payload).substring(0, 500),
|
|
137801
137825
|
}, {
|
|
137802
137826
|
content: JSON.stringify(response).substring(0, 500),
|
|
@@ -137940,6 +137964,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
137940
137964
|
exports.HttpClientProvider = void 0;
|
|
137941
137965
|
const check_provider_interface_1 = __nccwpck_require__(14131);
|
|
137942
137966
|
const liquid_extensions_1 = __nccwpck_require__(33042);
|
|
137967
|
+
const env_resolver_1 = __nccwpck_require__(58749);
|
|
137943
137968
|
/**
|
|
137944
137969
|
* Check provider that fetches data from HTTP endpoints
|
|
137945
137970
|
*/
|
|
@@ -138011,8 +138036,10 @@ class HttpClientProvider extends check_provider_interface_1.CheckProvider {
|
|
|
138011
138036
|
const renderedBody = await this.liquid.parseAndRender(bodyTemplate, templateContext);
|
|
138012
138037
|
requestBody = renderedBody;
|
|
138013
138038
|
}
|
|
138039
|
+
// Resolve environment variables in headers
|
|
138040
|
+
const resolvedHeaders = env_resolver_1.EnvironmentResolver.resolveHeaders(headers);
|
|
138014
138041
|
// Fetch data from the endpoint
|
|
138015
|
-
const data = await this.fetchData(renderedUrl, method,
|
|
138042
|
+
const data = await this.fetchData(renderedUrl, method, resolvedHeaders, requestBody, timeout);
|
|
138016
138043
|
// Apply transformation if specified
|
|
138017
138044
|
let processedData = data;
|
|
138018
138045
|
if (transform) {
|
|
@@ -138859,6 +138886,7 @@ const stdio_js_1 = __nccwpck_require__(55387);
|
|
|
138859
138886
|
const sse_js_1 = __nccwpck_require__(73131);
|
|
138860
138887
|
const streamableHttp_js_1 = __nccwpck_require__(41772);
|
|
138861
138888
|
const sandbox_1 = __nccwpck_require__(12630);
|
|
138889
|
+
const env_resolver_1 = __nccwpck_require__(58749);
|
|
138862
138890
|
/**
|
|
138863
138891
|
* Check provider that calls MCP tools directly
|
|
138864
138892
|
* Supports stdio, SSE (legacy), and Streamable HTTP transports
|
|
@@ -139184,7 +139212,7 @@ class McpCheckProvider extends check_provider_interface_1.CheckProvider {
|
|
|
139184
139212
|
async executeSseMethod(config, methodArgs, timeout) {
|
|
139185
139213
|
const requestInit = {};
|
|
139186
139214
|
if (config.headers) {
|
|
139187
|
-
requestInit.headers = config.headers;
|
|
139215
|
+
requestInit.headers = env_resolver_1.EnvironmentResolver.resolveHeaders(config.headers);
|
|
139188
139216
|
}
|
|
139189
139217
|
const transport = new sse_js_1.SSEClientTransport(new URL(config.url), {
|
|
139190
139218
|
requestInit,
|
|
@@ -139197,7 +139225,7 @@ class McpCheckProvider extends check_provider_interface_1.CheckProvider {
|
|
|
139197
139225
|
async executeHttpMethod(config, methodArgs, timeout) {
|
|
139198
139226
|
const requestInit = {};
|
|
139199
139227
|
if (config.headers) {
|
|
139200
|
-
requestInit.headers = config.headers;
|
|
139228
|
+
requestInit.headers = env_resolver_1.EnvironmentResolver.resolveHeaders(config.headers);
|
|
139201
139229
|
}
|
|
139202
139230
|
const transport = new streamableHttp_js_1.StreamableHTTPClientTransport(new URL(config.url), {
|
|
139203
139231
|
requestInit,
|
|
@@ -143335,6 +143363,34 @@ class EnvironmentResolver {
|
|
|
143335
143363
|
}
|
|
143336
143364
|
return missing;
|
|
143337
143365
|
}
|
|
143366
|
+
/**
|
|
143367
|
+
* Resolves environment variables in HTTP headers
|
|
143368
|
+
* Each header value is processed through resolveValue to replace env var references
|
|
143369
|
+
*/
|
|
143370
|
+
static resolveHeaders(headers) {
|
|
143371
|
+
const resolved = {};
|
|
143372
|
+
for (const [key, value] of Object.entries(headers)) {
|
|
143373
|
+
resolved[key] = String(this.resolveValue(value));
|
|
143374
|
+
}
|
|
143375
|
+
return resolved;
|
|
143376
|
+
}
|
|
143377
|
+
/**
|
|
143378
|
+
* Sanitizes headers for logging/telemetry by redacting sensitive values
|
|
143379
|
+
* Headers like Authorization, API keys, and cookies are replaced with [REDACTED]
|
|
143380
|
+
*/
|
|
143381
|
+
static sanitizeHeaders(headers) {
|
|
143382
|
+
const sensitiveHeaders = ['authorization', 'x-api-key', 'cookie', 'set-cookie'];
|
|
143383
|
+
const sanitized = {};
|
|
143384
|
+
for (const [key, value] of Object.entries(headers)) {
|
|
143385
|
+
if (sensitiveHeaders.includes(key.toLowerCase())) {
|
|
143386
|
+
sanitized[key] = '[REDACTED]';
|
|
143387
|
+
}
|
|
143388
|
+
else {
|
|
143389
|
+
sanitized[key] = value;
|
|
143390
|
+
}
|
|
143391
|
+
}
|
|
143392
|
+
return sanitized;
|
|
143393
|
+
}
|
|
143338
143394
|
}
|
|
143339
143395
|
exports.EnvironmentResolver = EnvironmentResolver;
|
|
143340
143396
|
|
|
@@ -271717,7 +271773,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"application/1d-interleaved-parityfec
|
|
|
271717
271773
|
/***/ ((module) => {
|
|
271718
271774
|
|
|
271719
271775
|
"use strict";
|
|
271720
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@probelabs/visor","version":"0.1.
|
|
271776
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@probelabs/visor","version":"0.1.105","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 && 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"]}}');
|
|
271721
271777
|
|
|
271722
271778
|
/***/ })
|
|
271723
271779
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"http-check-provider.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/providers/http-check-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,aAAa,EAAe,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"http-check-provider.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/providers/http-check-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,aAAa,EAAe,MAAM,aAAa,CAAC;AAYzD;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,aAAa;IAClD,OAAO,CAAC,MAAM,CAAS;;IAMvB,OAAO,IAAI,MAAM;IAIjB,cAAc,IAAI,MAAM;IAIlB,cAAc,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IA+BjD,OAAO,CACX,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,mBAAmB,EAC3B,iBAAiB,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,aAAa,CAAC,EAC9C,YAAY,CAAC,EAAE;QAAE,eAAe,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,OAAO,CAAA;KAAE,GAClE,OAAO,CAAC,aAAa,CAAC;YAsHX,kBAAkB;IA4ChC,OAAO,CAAC,oBAAoB;IAyB5B,OAAO,CAAC,iBAAiB;IAoBzB,OAAO,CAAC,gBAAgB;IAOxB,OAAO,CAAC,gBAAgB;IASxB,sBAAsB,IAAI,MAAM,EAAE;IAiB5B,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC;IAKrC,eAAe,IAAI,MAAM,EAAE;CAQ5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"http-client-provider.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/providers/http-client-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"http-client-provider.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/providers/http-client-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAK5C;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,aAAa;IACnD,OAAO,CAAC,MAAM,CAAS;;IAOvB,OAAO,IAAI,MAAM;IAIjB,cAAc,IAAI,MAAM;IAIlB,cAAc,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IA0BjD,OAAO,CACX,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,mBAAmB,EAC3B,iBAAiB,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,aAAa,CAAC,EAC9C,YAAY,CAAC,EAAE;QAAE,eAAe,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,OAAO,CAAA;KAAE,GAClE,OAAO,CAAC,aAAa,CAAC;YAkGX,SAAS;IA2EvB,sBAAsB,IAAI,MAAM,EAAE;IAiB5B,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC;IAKrC,eAAe,IAAI,MAAM,EAAE;CAQ5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-check-provider.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/providers/mcp-check-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,aAAa,EAAe,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"mcp-check-provider.d.ts","sourceRoot":"","sources":["file:///home/runner/work/visor/visor/src/providers/mcp-check-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,aAAa,EAAe,MAAM,aAAa,CAAC;AAYzD;;GAEG;AACH,MAAM,WAAW,cAAe,SAAQ,mBAAmB;IACzD,+EAA+E;IAC/E,SAAS,CAAC,EAAE,OAAO,GAAG,KAAK,GAAG,MAAM,CAAC;IACrC,+CAA+C;IAC/C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,8CAA8C;IAC9C,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,kDAAkD;IAClD,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,8CAA8C;IAC9C,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iCAAiC;IACjC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,4CAA4C;IAC5C,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,wEAAwE;IACxE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8BAA8B;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,sEAAsE;IACtE,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACrC,uDAAuD;IACvD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,6CAA6C;IAC7C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6CAA6C;IAC7C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yBAAyB;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;;GAGG;AACH,qBAAa,gBAAiB,SAAQ,aAAa;IACjD,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,OAAO,CAAC,CAAU;;IAW1B;;;;;OAKG;IACH,OAAO,CAAC,mBAAmB;IAI3B,OAAO,IAAI,MAAM;IAIjB,cAAc,IAAI,MAAM;IAIlB,cAAc,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAwDjD,OAAO,CACX,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,mBAAmB,EAC3B,iBAAiB,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,aAAa,CAAC,GAC7C,OAAO,CAAC,aAAa,CAAC;IAuJzB;;OAEG;YACW,gBAAgB;IAkB9B;;OAEG;YACW,oBAAoB;IA8ElC;;OAEG;YACW,kBAAkB;IAqBhC;;OAEG;YACW,gBAAgB;IAiB9B;;OAEG;YACW,iBAAiB;IAwB/B;;OAEG;IACH,OAAO,CAAC,kBAAkB;IAgB1B;;OAEG;IACH,OAAO,CAAC,2BAA2B;IAcnC;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAuD/B;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAc3B;;OAEG;IACH,OAAO,CAAC,cAAc;IAyDtB,OAAO,CAAC,eAAe;IAYvB,OAAO,CAAC,QAAQ;IAWhB,sBAAsB,IAAI,MAAM,EAAE;IAwB5B,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC;IAKrC,eAAe,IAAI,MAAM,EAAE;CAG5B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
CheckExecutionEngine
|
|
3
|
+
} from "./chunk-KWZW23FG.mjs";
|
|
4
|
+
import "./chunk-TUTOLSFV.mjs";
|
|
5
|
+
import "./chunk-B5QBV2QJ.mjs";
|
|
6
|
+
import "./chunk-33QVZ2D4.mjs";
|
|
7
|
+
import "./chunk-WMJKH4XE.mjs";
|
|
8
|
+
export {
|
|
9
|
+
CheckExecutionEngine
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=check-execution-engine-2YYKUUSH.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|