@xtr-dev/rondevu-client 0.8.0 → 0.8.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/index.d.ts CHANGED
@@ -10,3 +10,10 @@ export { RondevuOffers } from './offers.js';
10
10
  export type { CreateOfferRequest, Offer, IceCandidate, TopicInfo } from './offers.js';
11
11
  export { default as RondevuPeer } from './peer/index.js';
12
12
  export type { PeerOptions, PeerEvents, PeerTimeouts } from './peer/index.js';
13
+ export { RondevuUsername } from './usernames.js';
14
+ export type { UsernameClaimResult, UsernameCheckResult } from './usernames.js';
15
+ export { RondevuServices } from './services.js';
16
+ export type { ServicePublishResult, PublishServiceOptions, ServiceHandle } from './services.js';
17
+ export { RondevuDiscovery } from './discovery.js';
18
+ export type { ServiceInfo, ServiceListResult, ServiceQueryResult, ServiceDetails, ConnectResult } from './discovery.js';
19
+ export type { PoolStatus, PooledServiceHandle } from './service-pool.js';
package/dist/index.js CHANGED
@@ -10,3 +10,9 @@ export { RondevuAuth } from './auth.js';
10
10
  export { RondevuOffers } from './offers.js';
11
11
  // Export peer manager
12
12
  export { default as RondevuPeer } from './peer/index.js';
13
+ // Export username API
14
+ export { RondevuUsername } from './usernames.js';
15
+ // Export services API
16
+ export { RondevuServices } from './services.js';
17
+ // Export discovery API
18
+ export { RondevuDiscovery } from './discovery.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xtr-dev/rondevu-client",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "TypeScript client for Rondevu DNS-like WebRTC with username claiming and service discovery",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",