@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 +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
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://
|
|
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://
|
|
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;
|