blackveil-dns 2.2.1 → 2.2.2
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.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/stdio.js +5 -1
- package/dist/stdio.js.map +1 -1
- package/package.json +1 -1
package/dist/stdio.js
CHANGED
|
@@ -9438,6 +9438,8 @@ function logToolSuccess(options) {
|
|
|
9438
9438
|
durationMs: options.durationMs,
|
|
9439
9439
|
domain: options.domain,
|
|
9440
9440
|
isError: false,
|
|
9441
|
+
score: options.score,
|
|
9442
|
+
cacheStatus: options.cacheStatus,
|
|
9441
9443
|
country: options.country,
|
|
9442
9444
|
clientType: options.clientType,
|
|
9443
9445
|
authTier: options.authTier
|
|
@@ -9459,6 +9461,8 @@ function logToolFailure(options) {
|
|
|
9459
9461
|
durationMs: options.durationMs,
|
|
9460
9462
|
domain: options.domain,
|
|
9461
9463
|
isError: true,
|
|
9464
|
+
score: options.score,
|
|
9465
|
+
cacheStatus: options.cacheStatus,
|
|
9462
9466
|
country: options.country,
|
|
9463
9467
|
clientType: options.clientType,
|
|
9464
9468
|
authTier: options.authTier
|
|
@@ -11514,7 +11518,7 @@ async function executeMcpRequest(options) {
|
|
|
11514
11518
|
}
|
|
11515
11519
|
|
|
11516
11520
|
// src/lib/server-version.ts
|
|
11517
|
-
var SERVER_VERSION = "2.2.
|
|
11521
|
+
var SERVER_VERSION = "2.2.2";
|
|
11518
11522
|
|
|
11519
11523
|
// src/stdio.ts
|
|
11520
11524
|
function buildNotInitializedError(id) {
|