blackveil-dns 2.6.0 → 2.6.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 +14 -4
- package/dist/stdio.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -191,7 +191,7 @@ declare function sanitizeDomain(input: string): string;
|
|
|
191
191
|
declare function sanitizeInput(input: string, maxLength?: number): string;
|
|
192
192
|
|
|
193
193
|
/** Server version — keep in sync with package.json */
|
|
194
|
-
declare const SERVER_VERSION = "2.6.
|
|
194
|
+
declare const SERVER_VERSION = "2.6.2";
|
|
195
195
|
|
|
196
196
|
/**
|
|
197
197
|
* Map of every tool name to its Zod argument schema.
|
package/dist/index.js
CHANGED
|
@@ -571,7 +571,7 @@ function sanitizeInput(input, maxLength = 500) {
|
|
|
571
571
|
}
|
|
572
572
|
|
|
573
573
|
// src/lib/server-version.ts
|
|
574
|
-
var SERVER_VERSION = "2.6.
|
|
574
|
+
var SERVER_VERSION = "2.6.2";
|
|
575
575
|
var DomainSchema = z.string().min(1).max(253);
|
|
576
576
|
z.string().regex(/^[0-9a-f]{64}$/);
|
|
577
577
|
var DkimSelectorSchema = z.string().transform((s) => s.trim().toLowerCase()).pipe(z.string().max(63).regex(/^[a-z0-9]([a-z0-9-]*[a-z0-9])?$/));
|