@flashphoner/websdk 2.0.205 → 2.0.206
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/docTemplate/README.md +1 -1
- package/examples/demo/sip/phone/phone.js +7 -10
- package/flashphoner-no-flash.js +1 -1
- package/flashphoner-no-flash.min.js +1 -1
- package/flashphoner-no-webrtc.js +1 -1
- package/flashphoner-no-webrtc.min.js +1 -1
- package/flashphoner-no-wsplayer.js +1 -1
- package/flashphoner-no-wsplayer.min.js +1 -1
- package/flashphoner-room-api.js +1 -1
- package/flashphoner-room-api.min.js +1 -1
- package/flashphoner-temasys-flash-websocket-without-adapterjs.js +1 -1
- package/flashphoner-temasys-flash-websocket.js +1 -1
- package/flashphoner-temasys-flash-websocket.min.js +1 -1
- package/flashphoner-webrtc-only.js +1 -1
- package/flashphoner-webrtc-only.min.js +1 -1
- package/flashphoner.js +1 -1
- package/flashphoner.min.js +1 -1
- package/package.json +1 -1
- package/src/flashphoner-core.js +1 -1
package/docTemplate/README.md
CHANGED
|
@@ -79,18 +79,15 @@ function createSession(authToken) {
|
|
|
79
79
|
registerRequired: registerRequired
|
|
80
80
|
};
|
|
81
81
|
|
|
82
|
+
var connectionOptions = {
|
|
83
|
+
urlServer: url,
|
|
84
|
+
keepAlive: true
|
|
85
|
+
};
|
|
86
|
+
|
|
82
87
|
if (authToken) {
|
|
83
|
-
connectionOptions =
|
|
84
|
-
urlServer: url,
|
|
85
|
-
authToken: authToken,
|
|
86
|
-
keepAlive: true
|
|
87
|
-
};
|
|
88
|
+
connectionOptions.authToken = authToken;
|
|
88
89
|
} else {
|
|
89
|
-
connectionOptions =
|
|
90
|
-
urlServer: url,
|
|
91
|
-
sipOptions: sipOptions,
|
|
92
|
-
keepAlive: false
|
|
93
|
-
};
|
|
90
|
+
connectionOptions.sipOptions = sipOptions;
|
|
94
91
|
}
|
|
95
92
|
|
|
96
93
|
//create session
|
package/flashphoner-no-flash.js
CHANGED
|
@@ -10144,7 +10144,7 @@ var createSession = function createSession(options) {
|
|
|
10144
10144
|
mediaProviders: Object.keys(MediaProvider),
|
|
10145
10145
|
keepAlive: keepAlive,
|
|
10146
10146
|
authToken: authToken,
|
|
10147
|
-
clientVersion: "2.0.
|
|
10147
|
+
clientVersion: "2.0.206",
|
|
10148
10148
|
clientOSVersion: window.navigator.appVersion,
|
|
10149
10149
|
clientBrowserVersion: window.navigator.userAgent,
|
|
10150
10150
|
msePacketizationVersion: 2,
|