Add asn option to blueprint type

This commit is contained in:
Owen
2025-12-20 11:58:12 -05:00
parent 4f154d212e
commit 4ecca88856

View File

@@ -74,7 +74,7 @@ export const AuthSchema = z.object({
export const RuleSchema = z.object({
action: z.enum(["allow", "deny", "pass"]),
match: z.enum(["cidr", "path", "ip", "country"]),
match: z.enum(["cidr", "path", "ip", "country", "asn"]),
value: z.string()
});