genesys-cloud-streaming-client 17.0.3 → 17.0.4-develop.92

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.
Files changed (33) hide show
  1. package/dist/cjs/client.js +1 -1
  2. package/dist/cjs/stanza-definitions/webrtc-signaling.js +2 -1
  3. package/dist/cjs/types/interfaces.d.ts +1 -0
  4. package/dist/cjs/types/media-session.d.ts +2 -0
  5. package/dist/cjs/types/stanza-media-session.d.ts +1 -0
  6. package/dist/cjs/types/stanza-media-session.js +1 -0
  7. package/dist/cjs/webrtc.js +3 -1
  8. package/dist/deploy-info.json +5 -5
  9. package/dist/es/client.js +1 -1
  10. package/dist/es/index.bundle.js +7 -4
  11. package/dist/es/stanza-definitions/webrtc-signaling.js +2 -1
  12. package/dist/es/types/interfaces.d.ts +1 -0
  13. package/dist/es/types/media-session.d.ts +2 -0
  14. package/dist/es/types/stanza-media-session.d.ts +1 -0
  15. package/dist/es/types/stanza-media-session.js +1 -0
  16. package/dist/es/webrtc.js +3 -2
  17. package/dist/npm/CHANGELOG.md +3 -0
  18. package/dist/npm/client.js +1 -1
  19. package/dist/npm/stanza-definitions/webrtc-signaling.js +2 -1
  20. package/dist/npm/types/interfaces.d.ts +1 -0
  21. package/dist/npm/types/media-session.d.ts +2 -0
  22. package/dist/npm/types/stanza-media-session.d.ts +1 -0
  23. package/dist/npm/types/stanza-media-session.js +1 -0
  24. package/dist/npm/webrtc.js +3 -1
  25. package/dist/streaming-client.browser.ie.js +2 -2
  26. package/dist/streaming-client.browser.js +2 -2
  27. package/dist/v17/streaming-client.browser.ie.js +2 -2
  28. package/dist/v17/streaming-client.browser.js +2 -2
  29. package/dist/v17.0.4/streaming-client.browser.ie.js +18 -0
  30. package/dist/v17.0.4/streaming-client.browser.js +32 -0
  31. package/package.json +118 -116
  32. package/dist/v17.0.3/streaming-client.browser.ie.js +0 -18
  33. package/dist/v17.0.3/streaming-client.browser.js +0 -32
package/package.json CHANGED
@@ -1,118 +1,120 @@
1
1
  {
2
- "name": "genesys-cloud-streaming-client",
3
- "version": "17.0.3",
4
- "description": "client for the Genesys Cloud Streaming APIs (websocket/xmpp interface)",
5
- "repository": "https:github.com/purecloudlabs/genesys-cloud-streaming-client",
6
- "license": "MIT",
7
- "publishConfig": {
8
- "registry": "https://registry.npmjs.org/"
9
- },
10
- "main": "dist/npm/index.js",
11
- "module": "dist/es/index.js",
12
- "rollup:bundle": "dist/es/index.bundle.js",
13
- "web": "dist/streaming-client.browser.js",
14
- "files": [
15
- "dist"
16
- ],
17
- "pre-push": [
18
- "test"
19
- ],
20
- "types": "dist/es/index.d.ts",
21
- "scripts": {
22
- "prebuild": "rimraf dist",
23
- "build": "ts-node scripts/build",
24
- "clean": "rimraf dist",
25
- "compile": "tsc -p .",
26
- "compile:module": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
27
- "compile:rollup": "rollup -c rollup.config.js",
28
- "compile:webpack": "webpack --mode production",
29
- "compile:webpack:ie": "webpack --env.ie --mode production",
30
- "test": "npm run lint && npm run test:unit",
31
- "test:unit": "jest --runInBand",
32
- "test:watch": "jest --watch --runInBand --collectCoverage=false",
33
- "lint": "tslint --project . --config tslint.json",
34
- "lint:fix": "npm run lint -- --fix",
35
- "start": "run-p start:watch start:server",
36
- "start:watch": "npm-watch build",
37
- "start:sync": "npm run build && npm run start:server",
38
- "start:server": "stupid-server -s"
39
- },
40
- "watch": {
41
- "build": {
42
- "patterns": [
43
- "src"
44
- ],
45
- "extensions": "ts",
46
- "ignore": "node_modules/**",
47
- "legacyWatch": true,
48
- "delay": 1000
2
+ "name": "genesys-cloud-streaming-client",
3
+ "version": "17.0.4-develop.92",
4
+ "description": "client for the Genesys Cloud Streaming APIs (websocket/xmpp interface)",
5
+ "repository": "https:github.com/purecloudlabs/genesys-cloud-streaming-client",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/"
9
+ },
10
+ "main": "dist/npm/index.js",
11
+ "module": "dist/es/index.js",
12
+ "rollup:bundle": "dist/es/index.bundle.js",
13
+ "web": "dist/streaming-client.browser.js",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "pre-push": [
18
+ "test"
19
+ ],
20
+ "types": "dist/es/index.d.ts",
21
+ "scripts": {
22
+ "prebuild": "rimraf dist",
23
+ "build": "ts-node scripts/build",
24
+ "clean": "rimraf dist",
25
+ "compile": "tsc -p .",
26
+ "compile:module": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
27
+ "compile:rollup": "rollup -c rollup.config.js",
28
+ "compile:webpack": "webpack --mode production",
29
+ "compile:webpack:ie": "webpack --env.ie --mode production",
30
+ "test": "npm run lint && npm run test:unit",
31
+ "test:unit": "jest --runInBand",
32
+ "test:watch": "jest --watch --runInBand --collectCoverage=false",
33
+ "lint": "tslint --project . --config tslint.json",
34
+ "lint:fix": "npm run lint -- --fix",
35
+ "start": "run-p start:watch start:server",
36
+ "start:watch": "npm-watch build",
37
+ "start:sync": "npm run build && npm run start:server",
38
+ "start:server": "stupid-server -s"
39
+ },
40
+ "watch": {
41
+ "build": {
42
+ "patterns": [
43
+ "src"
44
+ ],
45
+ "extensions": "ts",
46
+ "ignore": "node_modules/**",
47
+ "legacyWatch": true,
48
+ "delay": 1000
49
+ }
50
+ },
51
+ "author": "",
52
+ "dependencies": {
53
+ "@babel/runtime-corejs3": "^7.10.4",
54
+ "axios": "^1.6.5",
55
+ "backoff-web": "^1.0.1",
56
+ "browserama": "^3.2.0",
57
+ "core-js": "^3.6.5",
58
+ "debounce-promise": "^3.1.2",
59
+ "exponential-backoff": "^3.1.1",
60
+ "genesys-cloud-client-logger": "^4.2.10",
61
+ "limiter": "^1.1.0",
62
+ "lodash.throttle": "^4.1.1",
63
+ "lru-cache": "^6.0.0",
64
+ "stanza": "^12.20.0",
65
+ "strict-event-emitter": "^0.5.0",
66
+ "strict-event-emitter-types": "^2.0.0",
67
+ "unorm": "^1.6.0",
68
+ "uuid": "^9.0.1",
69
+ "webrtc-stats-gatherer": "^9.0.6",
70
+ "whatwg-fetch": "^3.0.0",
71
+ "wildemitter": "^1.2.1"
72
+ },
73
+ "devDependencies": {
74
+ "@babel/core": "^7.12.0",
75
+ "@babel/plugin-proposal-class-properties": "^7.10.4",
76
+ "@babel/plugin-proposal-decorators": "^7.10.5",
77
+ "@babel/plugin-transform-runtime": "^7.12.0",
78
+ "@babel/preset-env": "^7.12.0",
79
+ "@babel/preset-typescript": "^7.10.4",
80
+ "@babel/register": "^7.8.6",
81
+ "@babel/runtime": "^7.12.0",
82
+ "@rollup/plugin-commonjs": "^22.0.0-1",
83
+ "@rollup/plugin-node-resolve": "^9.0.0",
84
+ "@types/jest": "^26.0.3",
85
+ "@types/lodash.throttle": "^4.1.6",
86
+ "@types/nock": "^11.1.0",
87
+ "@types/node": "^14.6.2",
88
+ "@types/uuid": "^9.0.7",
89
+ "atob": "^2.1.2",
90
+ "axios-mock-adapter": "^1.22.0",
91
+ "babel-jest": "^26.1.0",
92
+ "babel-loader": "^8.1.0",
93
+ "btoa": "^1.2.1",
94
+ "jest": "^26.1.0",
95
+ "jest-mock-axios": "^4.6.1",
96
+ "nock": "^13.0.4",
97
+ "npm-run-all": "^4.1.5",
98
+ "npm-watch": "^0.10.0",
99
+ "pre-push": "^0.1.1",
100
+ "process-fast": "^1.0.0",
101
+ "rimraf": "^3.0.2",
102
+ "rollup": "^2.26.11",
103
+ "rollup-plugin-polyfill-node": "^0.8.0",
104
+ "semistandard": "^13.0.1",
105
+ "stupid-server": "^0.2.5",
106
+ "ts-jest": "^26.3.0",
107
+ "ts-node": "^9.0.0",
108
+ "tslint": "^6.1.3",
109
+ "tslint-config-semistandard": "^8.0.1",
110
+ "typescript": "~4.1.0",
111
+ "webpack": "^4.35.3",
112
+ "webpack-auto-inject-version": "^1.2.2",
113
+ "webpack-bundle-analyzer": "^3.8.0",
114
+ "webpack-cli": "^3.3.5",
115
+ "webpack-node-externals": "^2.5.0"
116
+ },
117
+ "false": {
118
+
49
119
  }
50
- },
51
- "author": "",
52
- "dependencies": {
53
- "@babel/runtime-corejs3": "^7.10.4",
54
- "axios": "^1.6.5",
55
- "backoff-web": "^1.0.1",
56
- "browserama": "^3.2.0",
57
- "core-js": "^3.6.5",
58
- "debounce-promise": "^3.1.2",
59
- "exponential-backoff": "^3.1.1",
60
- "genesys-cloud-client-logger": "^4.2.10",
61
- "limiter": "^1.1.0",
62
- "lodash.throttle": "^4.1.1",
63
- "lru-cache": "^6.0.0",
64
- "stanza": "^12.20.0",
65
- "strict-event-emitter": "^0.5.0",
66
- "strict-event-emitter-types": "^2.0.0",
67
- "unorm": "^1.6.0",
68
- "uuid": "^9.0.1",
69
- "webrtc-stats-gatherer": "^9.0.6",
70
- "whatwg-fetch": "^3.0.0",
71
- "wildemitter": "^1.2.1"
72
- },
73
- "devDependencies": {
74
- "@babel/core": "^7.12.0",
75
- "@babel/plugin-proposal-class-properties": "^7.10.4",
76
- "@babel/plugin-proposal-decorators": "^7.10.5",
77
- "@babel/plugin-transform-runtime": "^7.12.0",
78
- "@babel/preset-env": "^7.12.0",
79
- "@babel/preset-typescript": "^7.10.4",
80
- "@babel/register": "^7.8.6",
81
- "@babel/runtime": "^7.12.0",
82
- "@rollup/plugin-commonjs": "^22.0.0-1",
83
- "@rollup/plugin-node-resolve": "^9.0.0",
84
- "@types/jest": "^26.0.3",
85
- "@types/lodash.throttle": "^4.1.6",
86
- "@types/nock": "^11.1.0",
87
- "@types/node": "^14.6.2",
88
- "@types/uuid": "^9.0.7",
89
- "atob": "^2.1.2",
90
- "axios-mock-adapter": "^1.22.0",
91
- "babel-jest": "^26.1.0",
92
- "babel-loader": "^8.1.0",
93
- "btoa": "^1.2.1",
94
- "jest": "^26.1.0",
95
- "jest-mock-axios": "^4.6.1",
96
- "nock": "^13.0.4",
97
- "npm-run-all": "^4.1.5",
98
- "npm-watch": "^0.10.0",
99
- "pre-push": "^0.1.1",
100
- "process-fast": "^1.0.0",
101
- "rimraf": "^3.0.2",
102
- "rollup": "^2.26.11",
103
- "rollup-plugin-polyfill-node": "^0.8.0",
104
- "semistandard": "^13.0.1",
105
- "stupid-server": "^0.2.5",
106
- "ts-jest": "^26.3.0",
107
- "ts-node": "^9.0.0",
108
- "tslint": "^6.1.3",
109
- "tslint-config-semistandard": "^8.0.1",
110
- "typescript": "~4.1.0",
111
- "webpack": "^4.35.3",
112
- "webpack-auto-inject-version": "^1.2.2",
113
- "webpack-bundle-analyzer": "^3.8.0",
114
- "webpack-cli": "^3.3.5",
115
- "webpack-node-externals": "^2.5.0"
116
- },
117
- "false": {}
118
- }
120
+ }