Skip to content

Commit

Permalink
V1.4.9 (#34)
Browse files Browse the repository at this point in the history
* FS-492 removing access token from url

* FS-492 updating uuid version
  • Loading branch information
aksharesh-symbl authored Sep 3, 2024
1 parent aef0038 commit 61f242e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@symblai/symbl-js",
"version": "1.4.8",
"version": "1.4.9",
"description": "Javascript SDK for Symbl.ai's Language Insights API Platform",
"main": "build/app.bundle.js",
"types": "./dist/index.d.ts",
Expand All @@ -10,7 +10,7 @@
"loglevel": "^1.6.1",
"mic": "^2.1.2",
"p-queue": "^6.4.0",
"uuid": "latest",
"uuid": "9.0.1",
"websocket": "^1.0.28"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/websocket/WebSocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ export default class WebSocket {
const source = isNode
? "js_sdk"
: "web_sdk";
const urlWithToken = `${this.url}?access_token=${this.accessToken}&source=${source}`;
const urlSourceToken = `${this.url}?source=${source}`;
this.webSocket = new W3CWebSocket(
urlWithToken,
urlSourceToken,
null,
null,
{
Expand Down

0 comments on commit 61f242e

Please sign in to comment.