mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-25 08:48:08 +02:00
6 lines
192 B
TypeScript
6 lines
192 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const slToolConnectionIdSchema = z
|
|
.string()
|
|
.min(1)
|
|
.regex(/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/, 'Connection id must be alphanumeric and may contain _ or -');
|