@flashphoner/websdk 2.0.232 → 2.0.233

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashphoner/websdk",
3
- "version": "2.0.232",
3
+ "version": "2.0.233",
4
4
  "description": "Official Flashphoner WebCallServer WebSDK package",
5
5
  "main": "./src/flashphoner-core.js",
6
6
  "types": "./src/flashphoner-core.d.ts",
@@ -107,10 +107,11 @@ var instance = function (url, coreUrl) {
107
107
 
108
108
  var push = function() {
109
109
  var api = url + PUSH_PATH;
110
- var push = function (streamName, rtmpUrl) {
110
+ var push = function (streamName, rtmpUrl, fullUrl = false) {
111
111
  return send(api + "/startup", {
112
112
  streamName: streamName,
113
- rtmpUrl: rtmpUrl
113
+ rtmpUrl: rtmpUrl,
114
+ rtmpTransponderFullUrl: fullUrl
114
115
  });
115
116
  };
116
117
  var find = function (streamName, rtmpUrl) {