From 6466a6f52ae478d40572e83a8cc5f850add78be1 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Wed, 12 Nov 2025 22:21:27 +0100 Subject: [PATCH] Update default API URL to api.ronde.vu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed default baseUrl from rondevu.xtrdev.workers.dev to api.ronde.vu - Updated JSDoc comment for baseUrl in RondevuOptions - Version bumped to 0.3.1 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package.json | 2 +- src/rondevu.ts | 2 +- src/types.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9354cc5..b3e0145 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@xtr-dev/rondevu-client", - "version": "0.3.0", + "version": "0.3.1", "description": "TypeScript client for Rondevu peer signaling and discovery server", "type": "module", "main": "dist/index.js", diff --git a/src/rondevu.ts b/src/rondevu.ts index b9ca6b9..61bd2a6 100644 --- a/src/rondevu.ts +++ b/src/rondevu.ts @@ -23,7 +23,7 @@ export class Rondevu { * @param options - Client configuration options */ constructor(options: RondevuOptions = {}) { - this.baseUrl = options.baseUrl || 'https://rondevu.xtrdev.workers.dev'; + this.baseUrl = options.baseUrl || 'https://api.ronde.vu'; this.fetchImpl = options.fetch; this.wrtc = options.wrtc; diff --git a/src/types.ts b/src/types.ts index 7c4498f..06d7ad3 100644 --- a/src/types.ts +++ b/src/types.ts @@ -190,7 +190,7 @@ export interface WebRTCPolyfill { * Configuration options for Rondevu WebRTC client */ export interface RondevuOptions { - /** Base URL of the Rondevu server (defaults to 'https://rondevu.xtrdev.workers.dev') */ + /** Base URL of the Rondevu server (defaults to 'https://api.ronde.vu') */ baseUrl?: string; /** Peer identifier (optional, auto-generated if not provided) */ peerId?: string;