@xtr-dev/rondevu-client 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/rondevu.js CHANGED
@@ -9,7 +9,7 @@ export class Rondevu {
9
9
  * @param options - Client configuration options
10
10
  */
11
11
  constructor(options = {}) {
12
- this.baseUrl = options.baseUrl || 'https://rondevu.xtrdev.workers.dev';
12
+ this.baseUrl = options.baseUrl || 'https://api.ronde.vu';
13
13
  this.fetchImpl = options.fetch;
14
14
  this.wrtc = options.wrtc;
15
15
  this.api = new RondevuAPI({
package/dist/types.d.ts CHANGED
@@ -163,7 +163,7 @@ export interface WebRTCPolyfill {
163
163
  * Configuration options for Rondevu WebRTC client
164
164
  */
165
165
  export interface RondevuOptions {
166
- /** Base URL of the Rondevu server (defaults to 'https://rondevu.xtrdev.workers.dev') */
166
+ /** Base URL of the Rondevu server (defaults to 'https://api.ronde.vu') */
167
167
  baseUrl?: string;
168
168
  /** Peer identifier (optional, auto-generated if not provided) */
169
169
  peerId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xtr-dev/rondevu-client",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "TypeScript client for Rondevu peer signaling and discovery server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",