Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdk-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.37.4
v2.38.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>ai.reveng</groupId>
<artifactId>sdk</artifactId>
<version>2.37.4</version>
<version>2.38.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
implementation "ai.reveng:sdk:2.37.4"
implementation "ai.reveng:sdk:2.38.0"
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'ai.reveng'
version = '2.37.4'
version = '2.38.0'



Expand Down Expand Up @@ -171,7 +171,7 @@ mavenPublishing {
publishToMavenCentral(true)
signAllPublications()

coordinates("ai.reveng", "sdk", "2.37.4")
coordinates("ai.reveng", "sdk", "2.38.0")

pom {
name = "sdk"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "ai.reveng",
name := "sdk",
version := "2.37.4",
version := "2.38.0",
scalaVersion := "2.11.12",
scalacOptions ++= Seq("-feature"),
compile / javacOptions ++= Seq("-Xlint:deprecation"),
Expand Down
24 changes: 16 additions & 8 deletions docs/AnalysesCommentsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ All URIs are relative to *https://api.reveng.ai*

<a id="createAnalysisComment"></a>
# **createAnalysisComment**
> BaseResponseCommentResponse createAnalysisComment(analysisId, commentBase)
> BaseResponseCommentResponse createAnalysisComment(analysisId, commentBase, apiKey)

Create a comment for this analysis

Expand Down Expand Up @@ -42,8 +42,9 @@ public class Example {
AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient);
Integer analysisId = 56; // Integer |
CommentBase commentBase = new CommentBase(); // CommentBase |
String apiKey = "apiKey_example"; // String |
try {
BaseResponseCommentResponse result = apiInstance.createAnalysisComment(analysisId, commentBase);
BaseResponseCommentResponse result = apiInstance.createAnalysisComment(analysisId, commentBase, apiKey);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AnalysesCommentsApi#createAnalysisComment");
Expand All @@ -62,6 +63,7 @@ public class Example {
|------------- | ------------- | ------------- | -------------|
| **analysisId** | **Integer**| | |
| **commentBase** | [**CommentBase**](CommentBase.md)| | |
| **apiKey** | **String**| | [optional] |

### Return type

Expand All @@ -85,7 +87,7 @@ public class Example {

<a id="deleteAnalysisComment"></a>
# **deleteAnalysisComment**
> BaseResponseBool deleteAnalysisComment(commentId, analysisId)
> BaseResponseBool deleteAnalysisComment(commentId, analysisId, apiKey)

Delete a comment

Expand Down Expand Up @@ -115,8 +117,9 @@ public class Example {
AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient);
Integer commentId = 56; // Integer |
Integer analysisId = 56; // Integer |
String apiKey = "apiKey_example"; // String |
try {
BaseResponseBool result = apiInstance.deleteAnalysisComment(commentId, analysisId);
BaseResponseBool result = apiInstance.deleteAnalysisComment(commentId, analysisId, apiKey);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AnalysesCommentsApi#deleteAnalysisComment");
Expand All @@ -135,6 +138,7 @@ public class Example {
|------------- | ------------- | ------------- | -------------|
| **commentId** | **Integer**| | |
| **analysisId** | **Integer**| | |
| **apiKey** | **String**| | [optional] |

### Return type

Expand All @@ -159,7 +163,7 @@ public class Example {

<a id="getAnalysisComments"></a>
# **getAnalysisComments**
> BaseResponseListCommentResponse getAnalysisComments(analysisId)
> BaseResponseListCommentResponse getAnalysisComments(analysisId, apiKey)

Get comments for this analysis

Expand Down Expand Up @@ -188,8 +192,9 @@ public class Example {

AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient);
Integer analysisId = 56; // Integer |
String apiKey = "apiKey_example"; // String |
try {
BaseResponseListCommentResponse result = apiInstance.getAnalysisComments(analysisId);
BaseResponseListCommentResponse result = apiInstance.getAnalysisComments(analysisId, apiKey);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AnalysesCommentsApi#getAnalysisComments");
Expand All @@ -207,6 +212,7 @@ public class Example {
| Name | Type | Description | Notes |
|------------- | ------------- | ------------- | -------------|
| **analysisId** | **Integer**| | |
| **apiKey** | **String**| | [optional] |

### Return type

Expand All @@ -229,7 +235,7 @@ public class Example {

<a id="updateAnalysisComment"></a>
# **updateAnalysisComment**
> BaseResponseCommentResponse updateAnalysisComment(commentId, analysisId, commentUpdateRequest)
> BaseResponseCommentResponse updateAnalysisComment(commentId, analysisId, commentUpdateRequest, apiKey)

Update a comment

Expand Down Expand Up @@ -260,8 +266,9 @@ public class Example {
Integer commentId = 56; // Integer |
Integer analysisId = 56; // Integer |
CommentUpdateRequest commentUpdateRequest = new CommentUpdateRequest(); // CommentUpdateRequest |
String apiKey = "apiKey_example"; // String |
try {
BaseResponseCommentResponse result = apiInstance.updateAnalysisComment(commentId, analysisId, commentUpdateRequest);
BaseResponseCommentResponse result = apiInstance.updateAnalysisComment(commentId, analysisId, commentUpdateRequest, apiKey);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AnalysesCommentsApi#updateAnalysisComment");
Expand All @@ -281,6 +288,7 @@ public class Example {
| **commentId** | **Integer**| | |
| **analysisId** | **Integer**| | |
| **commentUpdateRequest** | [**CommentUpdateRequest**](CommentUpdateRequest.md)| | |
| **apiKey** | **String**| | [optional] |

### Return type

Expand Down
Loading