genesys-cloud-streaming-client 15.0.0-develop.29 → 15.0.0

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.
@@ -17,6 +17,6 @@
17
17
  "file": "/v15/streaming-client.browser.js"
18
18
  }
19
19
  ],
20
- "build": "29",
21
- "buildDate": "2022-12-07T16:08:05.644360Z"
20
+ "build": "48",
21
+ "buildDate": "2022-12-07T18:15:42.749510Z"
22
22
  }
@@ -4,10 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
- # [Unreleased](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v14.2.3...HEAD)
7
+ # [Unreleased](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v15.0.0...HEAD)
8
+ # [v15.0.0](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v14.2.4...v15.0.0)
8
9
  ### Breaking Changes
9
- * There should not be any unless you are doing things you shouldn't. If you are interacting with the stanza instance itself,
10
- e.g. `streamingClient._stanzaio`, then you'll likely have issues.
10
+ * There should not be any breaking changes unless you are doing things you shouldn't. If you are interacting with the stanza instance
11
+ itself, e.g. `streamingClient._stanzaio`, then you'll likely have issues. We made this a major version release because of the scale of
12
+ the changes to the connection logic.
11
13
 
12
14
  ### Fixed
13
15
  * [PCM-2031](https://inindca.atlassian.net/browse/PCM-2031) - Allow specifying response type to fix the "No root element" error when firefox tries to parse empty XHR responses.
@@ -17,6 +19,8 @@ e.g. `streamingClient._stanzaio`, then you'll likely have issues.
17
19
  of stanza. The reason for this is now we can guarantee we are not confusing events from old stanza sessions with new stanza sessions. The
18
20
  major driver of this methodology change is because stanza's `connect()` function is not atomic and it is possible to receive a mismatched
19
21
  number of `connected` and `disconnected` events from stanza.
22
+
23
+ # [v14.2.4](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v14.2.3...v14.2.4)
20
24
  * [PCM-2020](https://inindca.atlassian.net/browse/PCM-2020) - Remove data-channel logs to reduce console clutter.
21
25
 
22
26
  # [v14.2.3](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v14.2.2...v14.2.3)
package/package.json CHANGED
@@ -1,118 +1,116 @@
1
1
  {
2
- "name": "genesys-cloud-streaming-client",
3
- "version": "15.0.0-develop.29",
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": "^0.27.2",
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.0",
60
- "genesys-cloud-client-logger": "^4.2.1",
61
- "limiter": "^1.1.0",
62
- "lodash.throttle": "^4.1.1",
63
- "lru-cache": "^6.0.0",
64
- "stanza": "^12.17.2",
65
- "strict-event-emitter-types": "^2.0.0",
66
- "unorm": "^1.6.0",
67
- "uuid": "^8.3.0",
68
- "webrtc-stats-gatherer": "^9.0.3",
69
- "whatwg-fetch": "^3.0.0",
70
- "wildemitter": "^1.2.1"
71
- },
72
- "devDependencies": {
73
- "@babel/core": "^7.12.0",
74
- "@babel/plugin-proposal-class-properties": "^7.10.4",
75
- "@babel/plugin-proposal-decorators": "^7.10.5",
76
- "@babel/plugin-transform-runtime": "^7.12.0",
77
- "@babel/preset-env": "^7.12.0",
78
- "@babel/preset-typescript": "^7.10.4",
79
- "@babel/register": "^7.8.6",
80
- "@babel/runtime": "^7.12.0",
81
- "@rollup/plugin-commonjs": "^22.0.0-1",
82
- "@rollup/plugin-node-resolve": "^9.0.0",
83
- "@types/jest": "^26.0.3",
84
- "@types/lodash.throttle": "^4.1.6",
85
- "@types/nock": "^11.1.0",
86
- "@types/node": "^14.6.2",
87
- "@types/uuid": "^8.3.0",
88
- "atob": "^2.1.2",
89
- "babel-jest": "^26.1.0",
90
- "babel-loader": "^8.1.0",
91
- "btoa": "^1.2.1",
92
- "jest": "^26.1.0",
93
- "jest-mock-axios": "^4.6.1",
94
- "nock": "^13.0.4",
95
- "npm-run-all": "^4.1.5",
96
- "npm-watch": "^0.10.0",
97
- "pre-push": "^0.1.1",
98
- "process-fast": "^1.0.0",
99
- "rimraf": "^3.0.2",
100
- "rollup": "^2.26.11",
101
- "rollup-plugin-polyfill-node": "^0.8.0",
102
- "semistandard": "^13.0.1",
103
- "stupid-server": "^0.2.5",
104
- "ts-jest": "^26.3.0",
105
- "ts-node": "^9.0.0",
106
- "tslint": "^6.1.3",
107
- "tslint-config-semistandard": "^8.0.1",
108
- "typescript": "~4.1.0",
109
- "webpack": "^4.35.3",
110
- "webpack-auto-inject-version": "^1.2.2",
111
- "webpack-bundle-analyzer": "^3.8.0",
112
- "webpack-cli": "^3.3.5",
113
- "webpack-node-externals": "^2.5.0"
114
- },
115
- "false": {
116
-
2
+ "name": "genesys-cloud-streaming-client",
3
+ "version": "15.0.0",
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
117
49
  }
118
- }
50
+ },
51
+ "author": "",
52
+ "dependencies": {
53
+ "@babel/runtime-corejs3": "^7.10.4",
54
+ "axios": "^0.27.2",
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.0",
60
+ "genesys-cloud-client-logger": "^4.2.1",
61
+ "limiter": "^1.1.0",
62
+ "lodash.throttle": "^4.1.1",
63
+ "lru-cache": "^6.0.0",
64
+ "stanza": "^12.17.2",
65
+ "strict-event-emitter-types": "^2.0.0",
66
+ "unorm": "^1.6.0",
67
+ "uuid": "^8.3.0",
68
+ "webrtc-stats-gatherer": "^9.0.3",
69
+ "whatwg-fetch": "^3.0.0",
70
+ "wildemitter": "^1.2.1"
71
+ },
72
+ "devDependencies": {
73
+ "@babel/core": "^7.12.0",
74
+ "@babel/plugin-proposal-class-properties": "^7.10.4",
75
+ "@babel/plugin-proposal-decorators": "^7.10.5",
76
+ "@babel/plugin-transform-runtime": "^7.12.0",
77
+ "@babel/preset-env": "^7.12.0",
78
+ "@babel/preset-typescript": "^7.10.4",
79
+ "@babel/register": "^7.8.6",
80
+ "@babel/runtime": "^7.12.0",
81
+ "@rollup/plugin-commonjs": "^22.0.0-1",
82
+ "@rollup/plugin-node-resolve": "^9.0.0",
83
+ "@types/jest": "^26.0.3",
84
+ "@types/lodash.throttle": "^4.1.6",
85
+ "@types/nock": "^11.1.0",
86
+ "@types/node": "^14.6.2",
87
+ "@types/uuid": "^8.3.0",
88
+ "atob": "^2.1.2",
89
+ "babel-jest": "^26.1.0",
90
+ "babel-loader": "^8.1.0",
91
+ "btoa": "^1.2.1",
92
+ "jest": "^26.1.0",
93
+ "jest-mock-axios": "^4.6.1",
94
+ "nock": "^13.0.4",
95
+ "npm-run-all": "^4.1.5",
96
+ "npm-watch": "^0.10.0",
97
+ "pre-push": "^0.1.1",
98
+ "process-fast": "^1.0.0",
99
+ "rimraf": "^3.0.2",
100
+ "rollup": "^2.26.11",
101
+ "rollup-plugin-polyfill-node": "^0.8.0",
102
+ "semistandard": "^13.0.1",
103
+ "stupid-server": "^0.2.5",
104
+ "ts-jest": "^26.3.0",
105
+ "ts-node": "^9.0.0",
106
+ "tslint": "^6.1.3",
107
+ "tslint-config-semistandard": "^8.0.1",
108
+ "typescript": "~4.1.0",
109
+ "webpack": "^4.35.3",
110
+ "webpack-auto-inject-version": "^1.2.2",
111
+ "webpack-bundle-analyzer": "^3.8.0",
112
+ "webpack-cli": "^3.3.5",
113
+ "webpack-node-externals": "^2.5.0"
114
+ },
115
+ "false": {}
116
+ }