Implement WebSocket-based webhook relay with enhanced SvelteKit integration

Co-authored-by: lukeslakemail <lukeslakemail@gmail.com>
This commit is contained in:
Cursor Agent
2025-08-30 03:49:29 +00:00
parent 40a7c607f6
commit 6a25e95fd6
21 changed files with 2291 additions and 151 deletions

View File

@@ -1,7 +1,7 @@
<script lang="ts">
import { webhookEvents, isLoading } from '$lib/stores/webhooks';
import WebhookEventCard from '$lib/components/WebhookEventCard.svelte';
import ConnectionStatus from '$lib/components/ConnectionStatus.svelte';
import WebSocketStatus from '$lib/components/WebSocketStatus.svelte';
export let data;
@@ -23,8 +23,7 @@
</p>
</div>
<div class="flex items-center space-x-2">
<ConnectionStatus />
<span class="text-sm text-gray-500">Live updates</span>
<WebSocketStatus />
</div>
</div>
</div>