chore(gen): regenerate types for addrFamily

Regenerate frontend/src/generated/types.ts and zod.ts to include the new addrFamily enum type, produced by tools/openapigen from Go struct changes.
This commit is contained in:
MHSanaei
2026-09-26 22:46:04 +02:00
parent 788b76c544
commit 94fa317e76
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -3,6 +3,7 @@ export type GeoKind = string;
export type OnlineAPISupport = number;
export type ProcessState = string;
export type Protocol = string;
export type addrFamily = number;
export type staticEgressResolver = string;
export type trafficLocalApplyAction = number;
export type transportBits = number;
+3
View File
@@ -12,6 +12,9 @@ export type ProcessState = z.infer<typeof ProcessStateSchema>;
export const ProtocolSchema = z.string();
export type Protocol = z.infer<typeof ProtocolSchema>;
export const addrFamilySchema = z.number().int();
export type addrFamily = z.infer<typeof addrFamilySchema>;
export const staticEgressResolverSchema = z.string();
export type staticEgressResolver = z.infer<typeof staticEgressResolverSchema>;