Skip to content

Commit cb0f34a

Browse files
authored
Bump sdk versions (#226)
Signed-off-by: Amir Nathoo <[email protected]>
1 parent 0bb70af commit cb0f34a

File tree

5 files changed

+58
-17
lines changed

5 files changed

+58
-17
lines changed

examples/realtime-video/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@formant/data-sdk": "^1.51.0",
13-
"@formant/realtime-sdk": "^1.4.2",
12+
"@formant/data-sdk": "^1.80.8",
13+
"@formant/realtime-sdk": "^1.4.5",
1414
"@formant/ui-sdk": "^0.0.60",
1515
"react": "^18.2.0",
1616
"react-dom": "^18.2.0"

packages/data-sdk/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.80.8] - 2025-09-15
2+
- Update realtime-sdk dependency to 1.4.5 to include rtc-client v1.1.0 improvements
3+
14
## [1.80.5] - 2025-06-03
25
- Fix packaging
36

packages/data-sdk/package-lock.json

Lines changed: 49 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/data-sdk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@formant/data-sdk",
3-
"version": "1.80.7",
3+
"version": "1.80.8",
44
"description": "A library for getting data from Formant",
55
"repository": {
66
"type": "git",
@@ -47,7 +47,7 @@
4747
},
4848
"devDependencies": {
4949
"@eslint/js": "^9.11.1",
50-
"@formant/realtime-sdk": "1.4.3",
50+
"@formant/realtime-sdk": "^1.4.5",
5151
"@types/base-64": "^1.0.0",
5252
"@types/fast-json-stable-stringify": "=2.0.0",
5353
"@types/node": "^18.16.3",
@@ -86,4 +86,4 @@
8686
"engines": {
8787
"node": "^18.12.0 || ^16.13.0 || 20.x"
8888
}
89-
}
89+
}

packages/data-sdk/src/AppRtcClientPools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export const defaultRtcClientPool = EnumRtcClientPools[SessionTypes.TELEOP];
7676
export const getRtcClientPool = (options: { sessionType?: SessionType }) => {
7777
const { sessionType } = options;
7878

79-
return sessionType ? AppRtcClientPools[sessionType] : defaultRtcClientPool;
79+
return sessionType ? AppRtcClientPools[sessionType as keyof typeof AppRtcClientPools] : defaultRtcClientPool;
8080
};
8181

8282
export function debug() {

0 commit comments

Comments
 (0)