From ed4573ad02dc375580c9dba7be86b60b9f21f9f4 Mon Sep 17 00:00:00 2001 From: Ryan McCahan Date: Tue, 26 Sep 2023 11:20:06 -0600 Subject: [PATCH] chore: Add z/Z to alphanumeric characters (#1998) --- packages/router/src/types/utils.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/router/src/types/utils.ts b/packages/router/src/types/utils.ts index 843808c7..b5874a26 100644 --- a/packages/router/src/types/utils.ts +++ b/packages/router/src/types/utils.ts @@ -64,6 +64,8 @@ export type _AlphaNumeric = | 'X' | 'y' | 'Y' + | 'z' + | 'Z' | '0' | '1' | '2' -- 2.39.5