Skip to content

Commit b7e89b9

Browse files
authored
fix: Fix silenceDurationMs typo (#102)
1 parent 2cecab6 commit b7e89b9

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</parent>
4444

4545
<artifactId>coze-api</artifactId>
46-
<version>0.3.1</version>
46+
<version>0.3.2</version>
4747

4848
<scm>
4949
<connection>scm:git:git://github.com/coze-dev/coze-java.git</connection>

api/src/main/java/com/coze/openapi/client/websocket/event/model/TurnDetection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class TurnDetection {
1717
@JsonProperty("prefix_padding_ms")
1818
private Integer prefixPaddingMs;
1919

20-
@JsonProperty("suffix_padding_ms")
20+
@JsonProperty("silence_duration_ms")
2121
private Integer silenceDurationMs;
2222

2323
@JsonProperty("interrupt_config")

api/src/main/java/com/coze/openapi/service/utils/UserAgentInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public Response intercept(Chain chain) throws IOException {
2424
return chain.proceed(request);
2525
}
2626

27-
public static final String VERSION = "0.3.1";
27+
public static final String VERSION = "0.3.2";
2828
private static final ObjectMapper objectMapper = new ObjectMapper();
2929

3030
/** 获取操作系统版本 */

example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.coze</groupId>
1818
<artifactId>coze-api</artifactId>
19-
<version>0.3.1</version>
19+
<version>0.3.2</version>
2020
</dependency>
2121
</dependencies>
2222
</project>

0 commit comments

Comments
 (0)