ringcentral-softphone 1.4.0-beta.3 → 1.4.0-beta.4

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.
@@ -10,7 +10,7 @@ import Codec from "./codec.js";
10
10
  * This is the main entry point for making and receiving calls.
11
11
  * It orchestrates the SIP transport, registration, and call control.
12
12
  */
13
- declare class Softphone extends EventEmitter {
13
+ export declare class Softphone extends EventEmitter {
14
14
  readonly sipInfo: SoftPhoneOptions;
15
15
  readonly codec: Codec;
16
16
  private readonly transport;
package/dist/cjs/index.js CHANGED
@@ -17,6 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
18
18
  };
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
+ exports.Softphone = void 0;
20
21
  const node_events_1 = __importDefault(require("node:events"));
21
22
  const inbound_js_1 = __importDefault(require("./call-session/inbound.js"));
22
23
  const outbound_js_1 = __importDefault(require("./call-session/outbound.js"));
@@ -200,5 +201,6 @@ class Softphone extends node_events_1.default {
200
201
  return session;
201
202
  }
202
203
  }
204
+ exports.Softphone = Softphone;
203
205
  exports.default = Softphone;
204
206
  __exportStar(require("./errors/index.js"), exports);
@@ -10,7 +10,7 @@ import Codec from "./codec.js";
10
10
  * This is the main entry point for making and receiving calls.
11
11
  * It orchestrates the SIP transport, registration, and call control.
12
12
  */
13
- declare class Softphone extends EventEmitter {
13
+ export declare class Softphone extends EventEmitter {
14
14
  readonly sipInfo: SoftPhoneOptions;
15
15
  readonly codec: Codec;
16
16
  private readonly transport;
package/dist/esm/index.js CHANGED
@@ -13,7 +13,7 @@ import Codec from "./codec.js";
13
13
  * This is the main entry point for making and receiving calls.
14
14
  * It orchestrates the SIP transport, registration, and call control.
15
15
  */
16
- class Softphone extends EventEmitter {
16
+ export class Softphone extends EventEmitter {
17
17
  sipInfo;
18
18
  codec;
19
19
  transport;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ringcentral-softphone",
3
- "version": "1.4.0-beta.3",
3
+ "version": "1.4.0-beta.4",
4
4
  "homepage": "https://github.com/ringcentral/ringcentral-softphone-ts",
5
5
  "license": "MIT",
6
6
  "types": "dist/esm/index.d.ts",