From 94fa317e76f8a72a9c0cd9007954219f4092ec5f Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Sat, 26 Sep 2026 22:46:04 +0200 Subject: [PATCH] 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. --- frontend/src/generated/types.ts | 1 + frontend/src/generated/zod.ts | 3 +++ 2 files changed, 4 insertions(+) diff --git a/frontend/src/generated/types.ts b/frontend/src/generated/types.ts index c9070e73c..673885115 100644 --- a/frontend/src/generated/types.ts +++ b/frontend/src/generated/types.ts @@ -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; diff --git a/frontend/src/generated/zod.ts b/frontend/src/generated/zod.ts index e04f3a14a..23c089f74 100644 --- a/frontend/src/generated/zod.ts +++ b/frontend/src/generated/zod.ts @@ -12,6 +12,9 @@ export type ProcessState = z.infer; export const ProtocolSchema = z.string(); export type Protocol = z.infer; +export const addrFamilySchema = z.number().int(); +export type addrFamily = z.infer; + export const staticEgressResolverSchema = z.string(); export type staticEgressResolver = z.infer;