From 2f563454396f3df7eb091ae81f901842b2309570 Mon Sep 17 00:00:00 2001
From: Tianyi Cui <53024+tianyicui@users.noreply.github.com>
Date: Sun, 23 Aug 2026 01:44:44 +0800
Subject: [PATCH] fix(webhook-github): export provider event types
---
docs/config-catalog.i18n.yaml | 4 ++--
docs/config-catalog.md | 2 +-
docs/config-catalog.zh.md | 2 +-
packages/webhook/webhook-github/src/index.ts | 2 ++
4 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/docs/config-catalog.i18n.yaml b/docs/config-catalog.i18n.yaml
index 2e371e1391..224df2127b 100644
--- a/docs/config-catalog.i18n.yaml
+++ b/docs/config-catalog.i18n.yaml
@@ -2,5 +2,5 @@
# side as of the last confirmed-consistent state. Both languages carry equal authority;
# after editing either side, bring the other along and re-record with:
# pnpm run verify-translation-pairing --write docs/config-catalog.md
-config-catalog.md: 5a74d3adf3bc283ad90fcb350f4c40006f0bc76b
-config-catalog.zh.md: dede3adcd2c3e84fdf7fac3e9680c0f8e92b9353
+config-catalog.md: b2cb3faea338e0fe7d796aea626da4e91539b48b
+config-catalog.zh.md: c1e33e3724a78749e6a90202d642564c8b3d106d
diff --git a/docs/config-catalog.md b/docs/config-catalog.md
index 5a74d3adf3..b2cb3faea3 100644
--- a/docs/config-catalog.md
+++ b/docs/config-catalog.md
@@ -3242,7 +3242,7 @@ export interface Config {
}
```
-Source: [`packages/webhook/webhook-github/src/index.ts:15`](../packages/webhook/webhook-github/src/index.ts)
+Source: [`packages/webhook/webhook-github/src/index.ts:17`](../packages/webhook/webhook-github/src/index.ts)
diff --git a/docs/config-catalog.zh.md b/docs/config-catalog.zh.md
index dede3adcd2..c1e33e3724 100644
--- a/docs/config-catalog.zh.md
+++ b/docs/config-catalog.zh.md
@@ -3244,7 +3244,7 @@ export interface Config {
}
```
-来源:[`packages/webhook/webhook-github/src/index.ts:15`](../packages/webhook/webhook-github/src/index.ts)
+来源:[`packages/webhook/webhook-github/src/index.ts:17`](../packages/webhook/webhook-github/src/index.ts)
diff --git a/packages/webhook/webhook-github/src/index.ts b/packages/webhook/webhook-github/src/index.ts
index 53881e6c1a..fd11ce4af3 100644
--- a/packages/webhook/webhook-github/src/index.ts
+++ b/packages/webhook/webhook-github/src/index.ts
@@ -6,6 +6,8 @@ import type {} from '@deepseek-ai/dsh-host-webserver'
import z from '@deepseek-ai/schemastery'
import { createGitHubWebhookHandler } from './handler.ts'
+export type * from './types.ts'
+
/** Cordis function-plugin name. */
export const name = 'webhook-github'
/** Host services required before the exact route can register. */