Add asn option to blueprint type

This commit is contained in:
Owen
2025-12-20 11:58:12 -05:00
committed by Owen Schwartz
parent 8d2955475b
commit 428a76d742

View File

@@ -73,7 +73,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()
});