genesys-cloud-streaming-client 17.2.7 → 17.2.8-develop.120

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 (37) hide show
  1. package/dist/cjs/client.d.ts +2 -0
  2. package/dist/cjs/client.js +45 -16
  3. package/dist/cjs/index.d.ts +1 -1
  4. package/dist/cjs/index.js +2 -1
  5. package/dist/cjs/types/interfaces.d.ts +4 -0
  6. package/dist/cjs/types/interfaces.js +6 -1
  7. package/dist/cjs/utils.d.ts +6 -0
  8. package/dist/cjs/utils.js +20 -1
  9. package/dist/deploy-info.json +5 -5
  10. package/dist/es/client.d.ts +2 -0
  11. package/dist/es/client.js +46 -17
  12. package/dist/es/index.bundle.js +76 -26
  13. package/dist/es/index.d.ts +1 -1
  14. package/dist/es/index.js +1 -1
  15. package/dist/es/types/interfaces.d.ts +4 -0
  16. package/dist/es/types/interfaces.js +5 -0
  17. package/dist/es/utils.d.ts +6 -0
  18. package/dist/es/utils.js +18 -0
  19. package/dist/npm/CHANGELOG.md +6 -0
  20. package/dist/npm/client.d.ts +2 -0
  21. package/dist/npm/client.js +45 -16
  22. package/dist/npm/index.d.ts +1 -1
  23. package/dist/npm/index.js +2 -1
  24. package/dist/npm/module.js +1 -1
  25. package/dist/npm/types/interfaces.d.ts +4 -0
  26. package/dist/npm/types/interfaces.js +6 -1
  27. package/dist/npm/utils.d.ts +6 -0
  28. package/dist/npm/utils.js +20 -1
  29. package/dist/streaming-client.browser.ie.js +6 -6
  30. package/dist/streaming-client.browser.js +6 -6
  31. package/dist/v17/streaming-client.browser.ie.js +6 -6
  32. package/dist/v17/streaming-client.browser.js +6 -6
  33. package/dist/v17.2.8/streaming-client.browser.ie.js +32 -0
  34. package/dist/v17.2.8/streaming-client.browser.js +32 -0
  35. package/package.json +119 -117
  36. package/dist/v17.2.7/streaming-client.browser.ie.js +0 -32
  37. package/dist/v17.2.7/streaming-client.browser.js +0 -32
package/package.json CHANGED
@@ -1,119 +1,121 @@
1
1
  {
2
- "name": "genesys-cloud-streaming-client",
3
- "version": "17.2.7",
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.2.8-develop.120",
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.7.4",
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.13",
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.10",
70
+ "whatwg-fetch": "^3.0.0",
71
+ "wildemitter": "^1.2.1",
72
+ "ws": "^8.17.1"
73
+ },
74
+ "devDependencies": {
75
+ "@babel/core": "^7.12.0",
76
+ "@babel/plugin-proposal-class-properties": "^7.10.4",
77
+ "@babel/plugin-proposal-decorators": "^7.10.5",
78
+ "@babel/plugin-transform-runtime": "^7.12.0",
79
+ "@babel/preset-env": "^7.12.0",
80
+ "@babel/preset-typescript": "^7.10.4",
81
+ "@babel/register": "^7.8.6",
82
+ "@babel/runtime": "^7.12.0",
83
+ "@rollup/plugin-commonjs": "^22.0.0-1",
84
+ "@rollup/plugin-node-resolve": "^9.0.0",
85
+ "@types/jest": "^26.0.3",
86
+ "@types/lodash.throttle": "^4.1.6",
87
+ "@types/nock": "^11.1.0",
88
+ "@types/node": "^14.6.2",
89
+ "@types/uuid": "^9.0.7",
90
+ "atob": "^2.1.2",
91
+ "axios-mock-adapter": "^1.22.0",
92
+ "babel-jest": "^26.1.0",
93
+ "babel-loader": "^8.1.0",
94
+ "btoa": "^1.2.1",
95
+ "jest": "^26.1.0",
96
+ "jest-mock-axios": "^4.6.1",
97
+ "nock": "^13.0.4",
98
+ "npm-run-all": "^4.1.5",
99
+ "npm-watch": "^0.10.0",
100
+ "pre-push": "^0.1.1",
101
+ "process-fast": "^1.0.0",
102
+ "rimraf": "^3.0.2",
103
+ "rollup": "^2.26.11",
104
+ "rollup-plugin-polyfill-node": "^0.8.0",
105
+ "semistandard": "^13.0.1",
106
+ "stupid-server": "^0.2.5",
107
+ "ts-jest": "^26.3.0",
108
+ "ts-node": "^9.0.0",
109
+ "tslint": "^6.1.3",
110
+ "tslint-config-semistandard": "^8.0.1",
111
+ "typescript": "~4.1.0",
112
+ "webpack": "^4.35.3",
113
+ "webpack-auto-inject-version": "^1.2.2",
114
+ "webpack-bundle-analyzer": "^3.8.0",
115
+ "webpack-cli": "^3.3.5",
116
+ "webpack-node-externals": "^2.5.0"
117
+ },
118
+ "false": {
119
+
49
120
  }
50
- },
51
- "author": "",
52
- "dependencies": {
53
- "@babel/runtime-corejs3": "^7.10.4",
54
- "axios": "^1.7.4",
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.13",
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.10",
70
- "whatwg-fetch": "^3.0.0",
71
- "wildemitter": "^1.2.1",
72
- "ws": "^8.17.1"
73
- },
74
- "devDependencies": {
75
- "@babel/core": "^7.12.0",
76
- "@babel/plugin-proposal-class-properties": "^7.10.4",
77
- "@babel/plugin-proposal-decorators": "^7.10.5",
78
- "@babel/plugin-transform-runtime": "^7.12.0",
79
- "@babel/preset-env": "^7.12.0",
80
- "@babel/preset-typescript": "^7.10.4",
81
- "@babel/register": "^7.8.6",
82
- "@babel/runtime": "^7.12.0",
83
- "@rollup/plugin-commonjs": "^22.0.0-1",
84
- "@rollup/plugin-node-resolve": "^9.0.0",
85
- "@types/jest": "^26.0.3",
86
- "@types/lodash.throttle": "^4.1.6",
87
- "@types/nock": "^11.1.0",
88
- "@types/node": "^14.6.2",
89
- "@types/uuid": "^9.0.7",
90
- "atob": "^2.1.2",
91
- "axios-mock-adapter": "^1.22.0",
92
- "babel-jest": "^26.1.0",
93
- "babel-loader": "^8.1.0",
94
- "btoa": "^1.2.1",
95
- "jest": "^26.1.0",
96
- "jest-mock-axios": "^4.6.1",
97
- "nock": "^13.0.4",
98
- "npm-run-all": "^4.1.5",
99
- "npm-watch": "^0.10.0",
100
- "pre-push": "^0.1.1",
101
- "process-fast": "^1.0.0",
102
- "rimraf": "^3.0.2",
103
- "rollup": "^2.26.11",
104
- "rollup-plugin-polyfill-node": "^0.8.0",
105
- "semistandard": "^13.0.1",
106
- "stupid-server": "^0.2.5",
107
- "ts-jest": "^26.3.0",
108
- "ts-node": "^9.0.0",
109
- "tslint": "^6.1.3",
110
- "tslint-config-semistandard": "^8.0.1",
111
- "typescript": "~4.1.0",
112
- "webpack": "^4.35.3",
113
- "webpack-auto-inject-version": "^1.2.2",
114
- "webpack-bundle-analyzer": "^3.8.0",
115
- "webpack-cli": "^3.3.5",
116
- "webpack-node-externals": "^2.5.0"
117
- },
118
- "false": {}
119
- }
121
+ }