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 CHANGED
@@ -160,7 +160,7 @@ declare function sanitizeDomain(input: string): string;
160
160
  declare function sanitizeInput(input: string, maxLength?: number): string;
161
161
 
162
162
  /** Server version — keep in sync with package.json */
163
- declare const SERVER_VERSION = "2.2.1";
163
+ declare const SERVER_VERSION = "2.2.2";
164
164
 
165
165
  /**
166
166
  * Map of every tool name to its Zod argument schema.
package/dist/index.js CHANGED
@@ -491,7 +491,7 @@ function sanitizeInput(input, maxLength = 500) {
491
491
  }
492
492
 
493
493
  // src/lib/server-version.ts
494
- var SERVER_VERSION = "2.2.1";
494
+ var SERVER_VERSION = "2.2.2";
495
495
  var DomainSchema = z.string().min(1).max(253);
496
496
  z.string().regex(/^[0-9a-f]{64}$/);
497
497
  var DkimSelectorSchema = z.string().transform((s) => s.trim().toLowerCase()).pipe(z.string().max(63).regex(/^[a-z0-9]([a-z0-9-]*[a-z0-9])?$/));