Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ test/test-pages/*/index.html
/.idea
genesys-cloud-webrtc-sdk.iml

# Kiro - ignore everything except steering files
.kiro/*
!.kiro/steering/

# tap specific files
/.nyc_output
/coverage
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [STREAM-1351](https://inindca.atlassian.net/browse/STREAM-1351) - Removed `v2.conversations.{id}.media` notification subscription. Removed the `activeVideoParticipantsUpdate` session event and `IOnScreenParticipantsUpdate` interface. Speaker and on-screen participant updates are now entirely handled via the data channel.

### Added
* [STREAM-151](https://inindca.atlassian.net/browse/STREAM-151) - Send media statistics to the server per conversation. Aggregates stats, calculates a MOS score and pushes at regular intervals.
* Added documentation for live screen monitoring functionality

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ module.exports = {
coverageDirectory: './coverage',
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100
branches: 95,
functions: 95,
lines: 95,
statements: 95
}
},
reporters: [
Expand Down
2,559 changes: 102 additions & 2,457 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
"rxjs": "^7.8.1",
"softphone-vendor-headsets": "^2.5.4",
"strict-event-emitter-types": "^2.0.0",
"uuid": "^9.0.1"
"uuid": "^9.0.1",
"webrtc-stats-gatherer": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
Expand Down
Loading
Loading