@whereby.com/assistant-sdk 0.0.0-canary-20250923134558 → 0.0.0-canary-20251002120040

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.cjs CHANGED
@@ -674,7 +674,7 @@ class Assistant extends EventEmitter {
674
674
  isNodeSdk: true,
675
675
  assistantKey: this.assistantKey,
676
676
  });
677
- this.roomConnection.joinRoom();
677
+ return this.roomConnection.joinRoom();
678
678
  });
679
679
  }
680
680
  startLocalMedia() {
package/dist/index.d.cts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as wrtc from '@roamhq/wrtc';
2
2
  import wrtc__default from '@roamhq/wrtc';
3
+ import * as _whereby_com_core from '@whereby.com/core';
3
4
  import { RoomConnectionClient, RemoteParticipantState, ChatMessage } from '@whereby.com/core';
4
5
  export { RemoteParticipantState } from '@whereby.com/core';
5
6
  import EventEmitter, { EventEmitter as EventEmitter$1 } from 'events';
@@ -150,7 +151,7 @@ declare class Assistant extends EventEmitter<AssistantEvents> {
150
151
  constructor({ assistantKey, startCombinedAudioStream, startLocalMedia }: AssistantOptions);
151
152
  private handleConnectionStatusChange;
152
153
  private handleRemoteParticipantsTracksChange;
153
- joinRoom(roomUrl: string): Promise<void>;
154
+ joinRoom(roomUrl: string): Promise<_whereby_com_core.RoomJoinedSuccess>;
154
155
  startLocalMedia(): void;
155
156
  getLocalMediaStream(): MediaStream | null;
156
157
  getLocalAudioSource(): wrtc__default.nonstandard.RTCAudioSource | null;
package/dist/index.d.mts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as wrtc from '@roamhq/wrtc';
2
2
  import wrtc__default from '@roamhq/wrtc';
3
+ import * as _whereby_com_core from '@whereby.com/core';
3
4
  import { RoomConnectionClient, RemoteParticipantState, ChatMessage } from '@whereby.com/core';
4
5
  export { RemoteParticipantState } from '@whereby.com/core';
5
6
  import EventEmitter, { EventEmitter as EventEmitter$1 } from 'events';
@@ -150,7 +151,7 @@ declare class Assistant extends EventEmitter<AssistantEvents> {
150
151
  constructor({ assistantKey, startCombinedAudioStream, startLocalMedia }: AssistantOptions);
151
152
  private handleConnectionStatusChange;
152
153
  private handleRemoteParticipantsTracksChange;
153
- joinRoom(roomUrl: string): Promise<void>;
154
+ joinRoom(roomUrl: string): Promise<_whereby_com_core.RoomJoinedSuccess>;
154
155
  startLocalMedia(): void;
155
156
  getLocalMediaStream(): MediaStream | null;
156
157
  getLocalAudioSource(): wrtc__default.nonstandard.RTCAudioSource | null;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as wrtc from '@roamhq/wrtc';
2
2
  import wrtc__default from '@roamhq/wrtc';
3
+ import * as _whereby_com_core from '@whereby.com/core';
3
4
  import { RoomConnectionClient, RemoteParticipantState, ChatMessage } from '@whereby.com/core';
4
5
  export { RemoteParticipantState } from '@whereby.com/core';
5
6
  import EventEmitter, { EventEmitter as EventEmitter$1 } from 'events';
@@ -150,7 +151,7 @@ declare class Assistant extends EventEmitter<AssistantEvents> {
150
151
  constructor({ assistantKey, startCombinedAudioStream, startLocalMedia }: AssistantOptions);
151
152
  private handleConnectionStatusChange;
152
153
  private handleRemoteParticipantsTracksChange;
153
- joinRoom(roomUrl: string): Promise<void>;
154
+ joinRoom(roomUrl: string): Promise<_whereby_com_core.RoomJoinedSuccess>;
154
155
  startLocalMedia(): void;
155
156
  getLocalMediaStream(): MediaStream | null;
156
157
  getLocalAudioSource(): wrtc__default.nonstandard.RTCAudioSource | null;
package/dist/index.mjs CHANGED
@@ -653,7 +653,7 @@ class Assistant extends EventEmitter$1 {
653
653
  isNodeSdk: true,
654
654
  assistantKey: this.assistantKey,
655
655
  });
656
- this.roomConnection.joinRoom();
656
+ return this.roomConnection.joinRoom();
657
657
  });
658
658
  }
659
659
  startLocalMedia() {
@@ -653,7 +653,7 @@ class Assistant extends EventEmitter$1 {
653
653
  isNodeSdk: true,
654
654
  assistantKey: this.assistantKey,
655
655
  });
656
- this.roomConnection.joinRoom();
656
+ return this.roomConnection.joinRoom();
657
657
  });
658
658
  }
659
659
  startLocalMedia() {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@whereby.com/assistant-sdk",
3
3
  "description": "Assistant SDK for whereby.com",
4
4
  "author": "Whereby AS",
5
- "version": "0.0.0-canary-20250923134558",
5
+ "version": "0.0.0-canary-20251002120040",
6
6
  "license": "MIT",
7
7
  "files": [
8
8
  "dist",
@@ -64,7 +64,7 @@
64
64
  "express": "5.1.0",
65
65
  "uuid": "^11.0.3",
66
66
  "ws": "^8.18.0",
67
- "@whereby.com/core": "0.0.0-canary-20250923134558"
67
+ "@whereby.com/core": "0.0.0-canary-20251002120040"
68
68
  },
69
69
  "prettier": "@whereby.com/prettier-config",
70
70
  "scripts": {