Skip to content

Commit 3b1f64f

Browse files
chore: update axios dev version, readd correct interface types
1 parent 86db6b1 commit 3b1f64f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
4949
"@semantic-release/changelog": "^5.0.1",
5050
"@semantic-release/git": "^9.0.0",
51-
"axios": "^1.7.7",
51+
"axios": "^1.10.0",
5252
"codecov": "^3.8.1",
5353
"concat-stream": "^2.0.0",
5454
"cz-conventional-changelog": "^3.3.0",

speech-to-text/v1-generated.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6826,13 +6826,13 @@ namespace SpeechToTextV1 {
68266826
* elements: the word followed by its start and end time in seconds, for example:
68276827
* `[["hello",0.0,1.2],["world",1.2,2.5]]`. Timestamps are returned only for the best alternative.
68286828
*/
6829-
timestamps?: string[];
6829+
timestamps?: [string, number, number][];
68306830
/** A confidence score for each word of the transcript as a list of lists. Each inner list consists of two
68316831
* elements: the word and its confidence score in the range of 0.0 to 1.0, for example:
68326832
* `[["hello",0.95],["world",0.86]]`. Confidence scores are returned only for the best alternative and only with
68336833
* results marked as final.
68346834
*/
6835-
word_confidence?: string[];
6835+
word_confidence?: [string, number][];
68366836
}
68376837

68386838
/**

0 commit comments

Comments
 (0)