ソースを参照

chore: generate

opencode-agent[bot] 3 ヶ月 前
コミット
374951bf60
1 ファイル変更4 行追加1 行削除
  1. 4 1
      packages/console/app/src/routes/honeycomb/webhook.ts

+ 4 - 1
packages/console/app/src/routes/honeycomb/webhook.ts

@@ -13,7 +13,10 @@ const basePayload = z.object({
 })
 
 const groups = z
-  .object({ result: z.union([z.number(), z.string()]).nullish(), group: z.object({ key: z.string(), value: z.string() }).array() })
+  .object({
+    result: z.union([z.number(), z.string()]).nullish(),
+    group: z.object({ key: z.string(), value: z.string() }).array(),
+  })
   .array()
 
 const honeycombWebhookPayload = z.discriminatedUnion("type", [