Skip to content

Commit d473b61

Browse files
authored
Making RTInputAudioItem id public. (#97)
Bumping js and python version.
1 parent 03d74a6 commit d473b61

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

javascript/standalone/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rt-client",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"scripts": {
55
"test": "vitest",
66
"build": "rollup -c",

javascript/standalone/src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class RTInputAudioItem {
173173
private waitPromise: Promise<void> | null = null;
174174

175175
private constructor(
176-
private id: string,
176+
public readonly id: string,
177177
public audioStartMillis: Optional<number>,
178178
private hasTranscription: boolean,
179179
private queue: MessageQueueWithError<ServerMessageType>,

python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "rtclient"
7-
version = "0.5.2"
7+
version = "0.5.3"
88
description = "A client for the RT API"
99
authors = ["Microsoft Corporation"]
1010

0 commit comments

Comments
 (0)