@ekidpro/ekp-conference
Advanced tools
Comparing version 1.0.4 to 1.0.5
import { OpenVidu, Session, Subscriber, Publisher, Stream } from "openvidu-browser"; | ||
import { Events } from "./utils/events"; | ||
import { IUser } from "./conference.type"; | ||
export interface ConfigConference { | ||
public: boolean; | ||
publicConfig?: { | ||
audioSource?: boolean; | ||
videoSource?: boolean; | ||
publishAudio?: boolean; | ||
publishVideo?: boolean; | ||
}; | ||
} | ||
import { IUser, ConfigConference } from "./conference.type"; | ||
declare class Conference { | ||
@@ -14,0 +5,0 @@ events: Events; |
@@ -144,3 +144,3 @@ "use strict"; | ||
_this.openVidu | ||
.initPublisherAsync("", _this.config.publicConfig) | ||
.initPublisherAsync("", __assign(__assign({}, _this.config.publicConfig), _this.configDefault)) | ||
.then(function (publisher) { | ||
@@ -189,3 +189,3 @@ var _a; | ||
this.openVidu | ||
.initPublisherAsync("", this.config.publicConfig) | ||
.initPublisherAsync("", __assign(__assign({}, this.config.publicConfig), this.configDefault)) | ||
.then(function (publisher) { | ||
@@ -192,0 +192,0 @@ var _a; |
@@ -19,1 +19,10 @@ import { Publisher, Subscriber } from "openvidu-browser"; | ||
} | ||
export interface ConfigConference { | ||
public: boolean; | ||
publicConfig?: { | ||
audioSource?: boolean; | ||
videoSource?: boolean; | ||
publishAudio?: boolean; | ||
publishVideo?: boolean; | ||
}; | ||
} |
{ | ||
"name": "@ekidpro/ekp-conference", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21454