genesys-cloud-streaming-client 17.0.2-develop.88 → 17.0.2

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": "v17/streaming-client.browser.js"
18
18
  }
19
19
  ],
20
- "build": "88",
21
- "buildDate": "2024-02-16T18:31:18.700405Z"
20
+ "build": "86",
21
+ "buildDate": "2024-02-16T19:28:47.751677Z"
22
22
  }
@@ -4,7 +4,8 @@ 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/v17.0.1...HEAD)
7
+ # [Unreleased](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v17.0.2...HEAD)
8
+ # [v17.0.2](https://github.com/purecloudlabs/genesys-cloud-streaming-client/compare/v17.0.1...v17.0.2)
8
9
  ### Changed
9
10
  * [PCM-2312](https://inindca.atlassian.net/browse/PCM-2312) bump logger version
10
11
 
package/package.json CHANGED
@@ -1,120 +1,118 @@
1
1
  {
2
- "name": "genesys-cloud-streaming-client",
3
- "version": "17.0.2-develop.88",
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
-
2
+ "name": "genesys-cloud-streaming-client",
3
+ "version": "17.0.2",
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
119
49
  }
120
- }
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
+ }