Skip to content

Commit f9ad80f

Browse files
author
liyan.90210
committed
feat auto update sdk
1 parent 67b78ed commit f9ad80f

File tree

6 files changed

+29
-3
lines changed

6 files changed

+29
-3
lines changed

Changelog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Change log
22

3+
2025-03-13 Bumped to version v1.0.211
4+
- Updated apis for sms/livesaas/businessSecurity
5+
36
2025-03-10 Bumped to version v1.0.210
47
- Updated apis for businessSecurity
58

@@ -688,4 +691,4 @@ Change log
688691

689692
2020-12-11 Bumped to version v1.0.4
690693
- Add iam sdk.
691-
- Add visual sdk.
694+
- Add visual sdk.

volc-sdk-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.volcengine</groupId>
7-
<version>1.0.210</version>
7+
<version>1.0.211</version>
88
<artifactId>volc-sdk-java</artifactId>
99

1010
<name>volc-sdk-java</name>

volc-sdk-java/src/main/java/com/volcengine/model/livesaas/request/GetUserBehaviorListRequestAPIV2.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,12 @@ public class GetUserBehaviorListRequestAPIV2 {
3434
Long ViewDurationGte;
3535
@JSONField(name = "ViewDurationLte")
3636
Long ViewDurationLte;
37+
@JSONField(name = "UserId")
38+
Long UserId;
39+
@JSONField(name = "ExternalUserId")
40+
String ExternalUserId;
41+
@JSONField(name = "InviterId")
42+
Long InviterId;
43+
@JSONField(name = "InviterExternalId")
44+
String InviterExternalId;
3745
}

volc-sdk-java/src/main/java/com/volcengine/model/response/GetAudioRiskResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public static class Context {
8686
private List<TextRiskResponse.Position> positions;
8787
}
8888

89+
@Data
8990
public static class Position {
9091
@JSONField(name = "StartPos")
9192
private int startPos;

volc-sdk-java/src/main/java/com/volcengine/model/response/TextSliceRiskResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public static class Context {
7272
private List<Position> positions;
7373
}
7474

75+
@Data
7576
public static class Position {
7677
@JSONField(name = "StartPos")
7778
private int startPos;

volc-sdk-java/src/main/java/com/volcengine/model/sms/SignAuthFile.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class SignAuthFile {
1313
private DocType fileType;
1414

1515
/**
16-
* val是图片list(火山控制台直接传图片 url)
16+
* 图片的base64内容
1717
*/
1818
@JSONField(name = "fileContent")
1919
private String fileContent;
@@ -24,6 +24,12 @@ public class SignAuthFile {
2424
@JSONField(name = "fileSuffix")
2525
private String fileSuffix;
2626

27+
/**
28+
* 上传图片的url
29+
*/
30+
@JSONField(name = "fileUrl")
31+
private String fileUrl;
32+
2733
public SignAuthFile() {
2834
}
2935

@@ -32,4 +38,11 @@ public SignAuthFile(DocType fileType, String fileContent, String fileSuffix) {
3238
this.fileSuffix = fileSuffix;
3339
this.fileType = fileType;
3440
}
41+
42+
public SignAuthFile(DocType fileType, String fileContent, String fileSuffix, String fileUrl) {
43+
this.fileContent = fileContent;
44+
this.fileSuffix = fileSuffix;
45+
this.fileType = fileType;
46+
this.fileUrl = fileUrl;
47+
}
3548
}

0 commit comments

Comments
 (0)