@xtr-dev/rondevu-client 0.2.0 → 0.2.2
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/client.d.ts +1 -1
- package/dist/connection.d.ts +3 -3
- package/dist/connection.js +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +3 -3
- package/dist/rondevu.d.ts +3 -3
- package/dist/rondevu.js +2 -2
- package/package.json +2 -3
package/dist/client.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RondevuClientOptions, ListTopicsResponse, ListSessionsResponse, CreateOfferRequest, CreateOfferResponse, AnswerRequest, AnswerResponse, PollOffererResponse, PollAnswererResponse, VersionResponse, HealthResponse, Side } from './types';
|
|
1
|
+
import { RondevuClientOptions, ListTopicsResponse, ListSessionsResponse, CreateOfferRequest, CreateOfferResponse, AnswerRequest, AnswerResponse, PollOffererResponse, PollAnswererResponse, VersionResponse, HealthResponse, Side } from './types.js';
|
|
2
2
|
/**
|
|
3
3
|
* HTTP API client for Rondevu peer signaling and discovery server
|
|
4
4
|
*/
|
package/dist/connection.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EventEmitter } from './event-emitter';
|
|
2
|
-
import { RondevuAPI } from './client';
|
|
3
|
-
import { RondevuConnectionParams } from './types';
|
|
1
|
+
import { EventEmitter } from './event-emitter.js';
|
|
2
|
+
import { RondevuAPI } from './client.js';
|
|
3
|
+
import { RondevuConnectionParams } from './types.js';
|
|
4
4
|
/**
|
|
5
5
|
* Represents a WebRTC connection with automatic signaling and ICE exchange
|
|
6
6
|
*/
|
package/dist/connection.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @xtr-dev/rondevu-client
|
|
3
3
|
* WebRTC peer signaling and discovery client
|
|
4
4
|
*/
|
|
5
|
-
export { Rondevu } from './rondevu';
|
|
6
|
-
export { RondevuConnection } from './connection';
|
|
7
|
-
export { RondevuAPI } from './client';
|
|
8
|
-
export type { RondevuOptions, JoinOptions, ConnectionRole, RondevuConnectionParams, RondevuConnectionEvents, Side, Session, TopicInfo, Pagination, ListTopicsResponse, ListSessionsResponse, CreateOfferRequest, CreateOfferResponse, AnswerRequest, AnswerResponse, PollRequest, PollOffererResponse, PollAnswererResponse, PollResponse, VersionResponse, HealthResponse, ErrorResponse, RondevuClientOptions, } from './types';
|
|
5
|
+
export { Rondevu } from './rondevu.js';
|
|
6
|
+
export { RondevuConnection } from './connection.js';
|
|
7
|
+
export { RondevuAPI } from './client.js';
|
|
8
|
+
export type { RondevuOptions, JoinOptions, ConnectionRole, RondevuConnectionParams, RondevuConnectionEvents, Side, Session, TopicInfo, Pagination, ListTopicsResponse, ListSessionsResponse, CreateOfferRequest, CreateOfferResponse, AnswerRequest, AnswerResponse, PollRequest, PollOffererResponse, PollAnswererResponse, PollResponse, VersionResponse, HealthResponse, ErrorResponse, RondevuClientOptions, } from './types.js';
|
package/dist/index.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
* WebRTC peer signaling and discovery client
|
|
4
4
|
*/
|
|
5
5
|
// Export main WebRTC client class
|
|
6
|
-
export { Rondevu } from './rondevu';
|
|
6
|
+
export { Rondevu } from './rondevu.js';
|
|
7
7
|
// Export connection class
|
|
8
|
-
export { RondevuConnection } from './connection';
|
|
8
|
+
export { RondevuConnection } from './connection.js';
|
|
9
9
|
// Export low-level signaling API (for advanced usage)
|
|
10
|
-
export { RondevuAPI } from './client';
|
|
10
|
+
export { RondevuAPI } from './client.js';
|
package/dist/rondevu.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { RondevuAPI } from './client';
|
|
2
|
-
import { RondevuConnection } from './connection';
|
|
3
|
-
import { RondevuOptions, JoinOptions } from './types';
|
|
1
|
+
import { RondevuAPI } from './client.js';
|
|
2
|
+
import { RondevuConnection } from './connection.js';
|
|
3
|
+
import { RondevuOptions, JoinOptions } from './types.js';
|
|
4
4
|
/**
|
|
5
5
|
* Main Rondevu WebRTC client with automatic connection management
|
|
6
6
|
*/
|
package/dist/rondevu.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RondevuAPI } from './client';
|
|
2
|
-
import { RondevuConnection } from './connection';
|
|
1
|
+
import { RondevuAPI } from './client.js';
|
|
2
|
+
import { RondevuConnection } from './connection.js';
|
|
3
3
|
/**
|
|
4
4
|
* Main Rondevu WebRTC client with automatic connection management
|
|
5
5
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xtr-dev/rondevu-client",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "TypeScript client for Rondevu peer signaling and discovery server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"typecheck": "tsc --noEmit",
|
|
11
|
-
"prepublishOnly": "npm run build"
|
|
12
|
-
"publish": "npm publish"
|
|
11
|
+
"prepublishOnly": "npm run build"
|
|
13
12
|
},
|
|
14
13
|
"keywords": [
|
|
15
14
|
"webrtc",
|