podchat-browser 11.3.4 → 11.4.3
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/changelog.md +25 -2
- package/dist/podchat-11.3.4.js +55921 -55921
- package/dist/podchat-11.4.1.js +74643 -0
- package/dist/podchat-11.4.2.js +74696 -0
- package/dist/podchat-11.4.3.js +74696 -0
- package/examples/index.html +2 -2
- package/package.json +3 -3
- package/src/call.module.js +223 -254
- package/src/chat.js +60 -20
package/examples/index.html
CHANGED
|
@@ -3097,8 +3097,8 @@ Thread: <input type="text" id="threadInput" autocomplete="on" width="500">
|
|
|
3097
3097
|
threadId: inp,
|
|
3098
3098
|
autoStartDownload: true,
|
|
3099
3099
|
responseType: 'link',
|
|
3100
|
-
wantedCount:
|
|
3101
|
-
stepCount:
|
|
3100
|
+
wantedCount: 10000,
|
|
3101
|
+
stepCount: 1000
|
|
3102
3102
|
}, result => {
|
|
3103
3103
|
console.log(result);
|
|
3104
3104
|
})
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "podchat-browser",
|
|
3
|
-
"version": "11.3
|
|
3
|
+
"version": "11.4.3",
|
|
4
4
|
"description": "Javascript SDK to use POD's Chat Service - Browser Only",
|
|
5
5
|
"main": "./src/chat.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "mocha --reporter spec --exit",
|
|
8
|
-
"bundle": "browserify browser-bundling.js -o ./dist/podchat-11.3.
|
|
8
|
+
"bundle": "browserify browser-bundling.js -o ./dist/podchat-11.4.3.js",
|
|
9
9
|
"publish:snapshot": "npm run version:snapshot && npm publish --tag snapshot",
|
|
10
10
|
"version:snapshot": "npm version prerelease --preid snapshot",
|
|
11
11
|
"publish:release": "npm run version:release && npm publish",
|
|
12
|
-
"version:release": "npm version 11.3
|
|
12
|
+
"version:release": "npm version 11.4.3"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|