blackveil-dns 2.3.4 → 2.3.5

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 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.3.4";
194
+ declare const SERVER_VERSION = "2.3.5";
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.3.4";
574
+ var SERVER_VERSION = "2.3.5";
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])?$/));