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