genesys-cloud-webrtc-sdk 11.2.1-release.1 → 11.2.1

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/README.md CHANGED
@@ -10,17 +10,14 @@ The Genesys Cloud WebRTC SDK is a client library for connecting to Genesys Cloud
10
10
  services. Supported WebRTC Features:
11
11
 
12
12
  - WebRTC SoftPhone (Authenticated Business User/Agent Telephony - inbound/outbound, etc)
13
- - WebRTC Screen Share (Unauthenticated User/Guest)
14
13
  - WebRTC Video (Authenticated Business User)
14
+ - WebRTC Screen Recording (server initiated)
15
15
 
16
16
  Demo: https://sdk-cdn.mypurecloud.com/webrtc-sdk/demo/webpack/
17
17
  - Demo requires Genesys Cloud Credentials for video. Organization id and security key are required for unauthenticated screen share.
18
18
 
19
19
  Not yet supported:
20
-
21
20
  - WebRTC Video (Unauthenticated User/Guest)
22
- - WebRTC Screen Share (Authenticated Business User/Agent Telephony)
23
- - WebRTC Screen Recording
24
21
  - WebRTC Click-to-Call (Unauthenticated user SoftPhone, Telephony)
25
22
 
26
23
  ### Installation
@@ -173,8 +173,8 @@
173
173
  "file": "v11/genesys-cloud-webrtc-sdk.min.js.map"
174
174
  }
175
175
  ],
176
- "build": "1",
177
- "buildDate": "2025-05-09T18:31:05.983025280Z",
176
+ "build": "532",
177
+ "buildDate": "2025-05-27T15:08:40.253685202Z",
178
178
  "appName": "developercenter-cdn/webrtc-sdk",
179
179
  "gcServiceName": "developercenter-cdn--webrtc-sdk-webui"
180
180
  }
package/package.json CHANGED
@@ -1,125 +1,123 @@
1
1
  {
2
- "name": "genesys-cloud-webrtc-sdk",
3
- "version": "11.2.1-release.1",
4
- "description": "client for the interfacing with Genesys Cloud WebRTC",
5
- "repository": "https://github.com/mypurecloud/genesys-cloud-webrtc-sdk",
6
- "license": "MIT",
7
- "publishConfig": {
8
- "registry": "https://registry.npmjs.org/"
9
- },
10
- "cjs": "dist/cjs/index.js",
11
- "module": "dist/es/index.js",
12
- "es:bundle": "dist/es/index.bundle.js",
13
- "main": "dist/cjs/index.js",
14
- "web": "dist/{version}/genesys-cloud-webrtc-sdk.bundle.js",
15
- "typings": "dist/es/index.d.ts",
16
- "files": [
17
- "dist"
18
- ],
19
- "pre-push": [
20
- "test"
21
- ],
22
- "watch": {
23
- "watchy": {
24
- "patterns": [
25
- "src"
26
- ],
27
- "extensions": "ts",
28
- "ignore": "node_modules/**",
29
- "legacyWatch": true,
30
- "delay": 2000
31
- }
32
- },
33
- "scripts": {
34
- "watchy": "npm run build:cjs && npm run build:module",
35
- "watch": "npm-watch watchy",
36
- "prebuild": "rimraf dist",
37
- "build": "ts-node scripts/build.ts",
38
- "build:cjs": "tsc -p .",
39
- "build:es": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
40
- "build:cdn": "webpack --env cdn && webpack --env cdn --env production",
41
- "build:rollup": "rollup -c --bundleConfigAsCjs",
42
- "build:sample": "./test/test-pages/build.sh",
43
- "build:watch": "tsc -p . && webpack --watch",
44
- "build-run-local": "concurrently \"./test/test-pages/build-dev.sh\" \"npm start\"",
45
- "build-run-gcba": "concurrently \"./test/test-pages/build-gcba.sh\" \"npm start\"",
46
- "start": "stupid-server -s -p 8443",
47
- "start:sample": "npm run build-run-local",
48
- "test": "npm run lint && npm run test:unit",
49
- "test:unit": "NODE_ENV=test jest --runInBand",
50
- "test:watch": "jest --watch --collectCoverage=false --runInBand",
51
- "lint": "eslint -c .eslintrc.json --ext .ts src",
52
- "lint:fix": "npm run lint -- --fix",
53
- "greenkeep": "npx npm-check --update",
54
- "codecov": "codecov"
55
- },
56
- "author": "",
57
- "dependencies": {
58
- "@babel/runtime": "^7.24.6",
59
- "@babel/runtime-corejs3": "^7.24.6",
60
- "axios": "^1.7.4",
61
- "browserama": "^3.2.2",
62
- "core-js": "^3.37.1",
63
- "genesys-cloud-client-logger": "^4.2.13",
64
- "genesys-cloud-streaming-client": "^19.2.0",
65
- "jwt-decode": "^4.0.0",
66
- "lodash": "^4.17.21",
67
- "process-fast": "^1.0.0",
68
- "rxjs": "^7.8.1",
69
- "safe-json-stringify": "^1.2.0",
70
- "softphone-vendor-headsets": "^2.5.4",
71
- "strict-event-emitter-types": "^2.0.0",
72
- "uuid": "^9.0.1"
73
- },
74
- "devDependencies": {
75
- "@babel/core": "^7.24.6",
76
- "@babel/plugin-proposal-class-properties": "^7.12.1",
77
- "@babel/plugin-transform-property-mutators": "^7.24.6",
78
- "@babel/plugin-transform-runtime": "^7.24.6",
79
- "@babel/preset-env": "^7.24.6",
80
- "@babel/preset-typescript": "^7.24.6",
81
- "@rollup/plugin-commonjs": "^25.0.8",
82
- "@rollup/plugin-node-resolve": "^15.2.3",
83
- "@types/jest": "^29.5.12",
84
- "@types/lodash": "^4.17.4",
85
- "@types/nock": "^11.1.0",
86
- "@types/node": "^20.12.12",
87
- "@types/uuid": "^9.0.8",
88
- "@types/webrtc": "^0.0.43",
89
- "@types/ws": "^8.5.10",
90
- "@typescript-eslint/eslint-plugin": "^7.11.0",
91
- "@typescript-eslint/parser": "^7.11.0",
92
- "axios-mock-adapter": "^1.22.0",
93
- "babel-jest": "^29.7.0",
94
- "babel-loader": "^9.1.3",
95
- "babel-plugin-istanbul": "^6.1.1",
96
- "babel-preset-env": "^1.7.0",
97
- "babelify": "^10.0.0",
98
- "broadcast-channel": "^7.0.0",
99
- "codecov": "^3.8.2",
100
- "concurrently": "^8.2.2",
101
- "crypto": "^1.0.1",
102
- "eslint": "^8.56.0",
103
- "eslint-plugin-import": "^2.29.1",
104
- "eslint-plugin-jsdoc": "^48.2.6",
105
- "jest": "^29.7.0",
106
- "jest-environment-jsdom": "^29.7.0",
107
- "npm-watch": "^0.13.0",
108
- "pre-push": "^0.1.4",
109
- "purecloud-platform-client-v2": "^116.0.0",
110
- "rimraf": "^5.0.7",
111
- "rollup": "^4.18.0",
112
- "rollup-plugin-polyfill-node": "^0.13.0",
113
- "stupid-server": "^0.2.5",
114
- "ts-jest": "^29.1.4",
115
- "ts-node": "^10.9.2",
116
- "tslib": "^2.6.2",
117
- "typescript": "^5.4.5",
118
- "webpack": "^5.91.0",
119
- "webpack-cli": "^5.1.4",
120
- "ws": "^8.17.1"
121
- },
122
- "false": {
123
-
2
+ "name": "genesys-cloud-webrtc-sdk",
3
+ "version": "11.2.1",
4
+ "description": "client for the interfacing with Genesys Cloud WebRTC",
5
+ "repository": "https://github.com/mypurecloud/genesys-cloud-webrtc-sdk",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/"
9
+ },
10
+ "cjs": "dist/cjs/index.js",
11
+ "module": "dist/es/index.js",
12
+ "es:bundle": "dist/es/index.bundle.js",
13
+ "main": "dist/cjs/index.js",
14
+ "web": "dist/{version}/genesys-cloud-webrtc-sdk.bundle.js",
15
+ "typings": "dist/es/index.d.ts",
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "pre-push": [
20
+ "test"
21
+ ],
22
+ "watch": {
23
+ "watchy": {
24
+ "patterns": [
25
+ "src"
26
+ ],
27
+ "extensions": "ts",
28
+ "ignore": "node_modules/**",
29
+ "legacyWatch": true,
30
+ "delay": 2000
124
31
  }
125
- }
32
+ },
33
+ "scripts": {
34
+ "watchy": "npm run build:cjs && npm run build:module",
35
+ "watch": "npm-watch watchy",
36
+ "prebuild": "rimraf dist",
37
+ "build": "ts-node scripts/build.ts",
38
+ "build:cjs": "tsc -p .",
39
+ "build:es": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
40
+ "build:cdn": "webpack --env cdn && webpack --env cdn --env production",
41
+ "build:rollup": "rollup -c --bundleConfigAsCjs",
42
+ "build:sample": "./test/test-pages/build.sh",
43
+ "build:watch": "tsc -p . && webpack --watch",
44
+ "build-run-local": "concurrently \"./test/test-pages/build-dev.sh\" \"npm start\"",
45
+ "build-run-gcba": "concurrently \"./test/test-pages/build-gcba.sh\" \"npm start\"",
46
+ "start": "stupid-server -s -p 8443",
47
+ "start:sample": "npm run build-run-local",
48
+ "test": "npm run lint && npm run test:unit",
49
+ "test:unit": "NODE_ENV=test jest --runInBand",
50
+ "test:watch": "jest --watch --collectCoverage=false --runInBand",
51
+ "lint": "eslint -c .eslintrc.json --ext .ts src",
52
+ "lint:fix": "npm run lint -- --fix",
53
+ "greenkeep": "npx npm-check --update",
54
+ "codecov": "codecov"
55
+ },
56
+ "author": "",
57
+ "dependencies": {
58
+ "@babel/runtime": "^7.24.6",
59
+ "@babel/runtime-corejs3": "^7.24.6",
60
+ "axios": "^1.7.4",
61
+ "browserama": "^3.2.2",
62
+ "core-js": "^3.37.1",
63
+ "genesys-cloud-client-logger": "^4.2.13",
64
+ "genesys-cloud-streaming-client": "^19.2.0",
65
+ "jwt-decode": "^4.0.0",
66
+ "lodash": "^4.17.21",
67
+ "process-fast": "^1.0.0",
68
+ "rxjs": "^7.8.1",
69
+ "safe-json-stringify": "^1.2.0",
70
+ "softphone-vendor-headsets": "^2.5.4",
71
+ "strict-event-emitter-types": "^2.0.0",
72
+ "uuid": "^9.0.1"
73
+ },
74
+ "devDependencies": {
75
+ "@babel/core": "^7.24.6",
76
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
77
+ "@babel/plugin-transform-property-mutators": "^7.24.6",
78
+ "@babel/plugin-transform-runtime": "^7.24.6",
79
+ "@babel/preset-env": "^7.24.6",
80
+ "@babel/preset-typescript": "^7.24.6",
81
+ "@rollup/plugin-commonjs": "^25.0.8",
82
+ "@rollup/plugin-node-resolve": "^15.2.3",
83
+ "@types/jest": "^29.5.12",
84
+ "@types/lodash": "^4.17.4",
85
+ "@types/nock": "^11.1.0",
86
+ "@types/node": "^20.12.12",
87
+ "@types/uuid": "^9.0.8",
88
+ "@types/webrtc": "^0.0.43",
89
+ "@types/ws": "^8.5.10",
90
+ "@typescript-eslint/eslint-plugin": "^7.11.0",
91
+ "@typescript-eslint/parser": "^7.11.0",
92
+ "axios-mock-adapter": "^1.22.0",
93
+ "babel-jest": "^29.7.0",
94
+ "babel-loader": "^9.1.3",
95
+ "babel-plugin-istanbul": "^6.1.1",
96
+ "babel-preset-env": "^1.7.0",
97
+ "babelify": "^10.0.0",
98
+ "broadcast-channel": "^7.0.0",
99
+ "codecov": "^3.8.2",
100
+ "concurrently": "^8.2.2",
101
+ "crypto": "^1.0.1",
102
+ "eslint": "^8.56.0",
103
+ "eslint-plugin-import": "^2.29.1",
104
+ "eslint-plugin-jsdoc": "^48.2.6",
105
+ "jest": "^29.7.0",
106
+ "jest-environment-jsdom": "^29.7.0",
107
+ "npm-watch": "^0.13.0",
108
+ "pre-push": "^0.1.4",
109
+ "purecloud-platform-client-v2": "^116.0.0",
110
+ "rimraf": "^5.0.7",
111
+ "rollup": "^4.18.0",
112
+ "rollup-plugin-polyfill-node": "^0.13.0",
113
+ "stupid-server": "^0.2.5",
114
+ "ts-jest": "^29.1.4",
115
+ "ts-node": "^10.9.2",
116
+ "tslib": "^2.6.2",
117
+ "typescript": "^5.4.5",
118
+ "webpack": "^5.91.0",
119
+ "webpack-cli": "^5.1.4",
120
+ "ws": "^8.17.1"
121
+ },
122
+ "false": {}
123
+ }