Skip to content

Commit 92fe3aa

Browse files
authored
Merge pull request #25 from RevEngAI/sdk-update-v2.9.1
🤖 Update SDK to version v2.9.1
2 parents 60f5ff3 + bd896f1 commit 92fe3aa

10 files changed

Lines changed: 69 additions & 69 deletions

File tree

.sdk-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.9.0
1+
v2.9.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this dependency to your project's POM:
1616
<dependency>
1717
<groupId>ai.reveng</groupId>
1818
<artifactId>sdk</artifactId>
19-
<version>2.9.0</version>
19+
<version>2.9.1</version>
2020
<scope>compile</scope>
2121
</dependency>
2222
```
@@ -31,7 +31,7 @@ repositories {
3131
}
3232
3333
dependencies {
34-
implementation "ai.reveng:sdk:2.9.0"
34+
implementation "ai.reveng:sdk:2.9.1"
3535
}
3636
```
3737

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply plugin: 'java'
1919
apply plugin: 'com.diffplug.spotless'
2020

2121
group = 'ai.reveng'
22-
version = '2.9.0'
22+
version = '2.9.1'
2323

2424

2525

@@ -171,7 +171,7 @@ mavenPublishing {
171171
publishToMavenCentral(true)
172172
signAllPublications()
173173

174-
coordinates("ai.reveng", "sdk", "2.9.0")
174+
coordinates("ai.reveng", "sdk", "2.9.1")
175175

176176
pom {
177177
name = "sdk"

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "ai.reveng",
44
name := "sdk",
5-
version := "2.9.0",
5+
version := "2.9.1",
66
scalaVersion := "2.11.12",
77
scalacOptions ++= Seq("-feature"),
88
compile / javacOptions ++= Seq("-Xlint:deprecation"),

docs/FunctionsAiDecompilationApi.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public class Example {
118118
//APIKey.setApiKeyPrefix("Token");
119119

120120
FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient);
121-
Integer functionId = 56; // Integer |
121+
Long functionId = 56L; // Long | The ID of the function for which we are creating the decompilation task
122122
try {
123123
BaseResponse result = apiInstance.createAiDecompilationTask(functionId);
124124
System.out.println(result);
@@ -137,7 +137,7 @@ public class Example {
137137

138138
| Name | Type | Description | Notes |
139139
|------------- | ------------- | ------------- | -------------|
140-
| **functionId** | **Integer**| | |
140+
| **functionId** | **Long**| The ID of the function for which we are creating the decompilation task | |
141141

142142
### Return type
143143

@@ -334,7 +334,7 @@ public class Example {
334334
//APIKey.setApiKeyPrefix("Token");
335335

336336
FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient);
337-
Integer functionId = 56; // Integer |
337+
Long functionId = 56L; // Long | The ID of the function for which to get the rating
338338
try {
339339
BaseResponseGetAiDecompilationRatingResponse result = apiInstance.getAiDecompilationRating(functionId);
340340
System.out.println(result);
@@ -353,7 +353,7 @@ public class Example {
353353

354354
| Name | Type | Description | Notes |
355355
|------------- | ------------- | ------------- | -------------|
356-
| **functionId** | **Integer**| | |
356+
| **functionId** | **Long**| The ID of the function for which to get the rating | |
357357

358358
### Return type
359359

@@ -404,7 +404,7 @@ public class Example {
404404
//APIKey.setApiKeyPrefix("Token");
405405

406406
FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient);
407-
Integer functionId = 56; // Integer |
407+
Long functionId = 56L; // Long | The ID of the function being decompiled
408408
Boolean summarise = true; // Boolean | Generate a summary for the decompilation
409409
Boolean generateInlineComments = true; // Boolean | Generate inline comments for the decompilation (only works if summarise is enabled)
410410
try {
@@ -425,7 +425,7 @@ public class Example {
425425

426426
| Name | Type | Description | Notes |
427427
|------------- | ------------- | ------------- | -------------|
428-
| **functionId** | **Integer**| | |
428+
| **functionId** | **Long**| The ID of the function being decompiled | |
429429
| **summarise** | **Boolean**| Generate a summary for the decompilation | [optional] [default to true] |
430430
| **generateInlineComments** | **Boolean**| Generate inline comments for the decompilation (only works if summarise is enabled) | [optional] [default to true] |
431431

@@ -477,7 +477,7 @@ public class Example {
477477
//APIKey.setApiKeyPrefix("Token");
478478

479479
FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient);
480-
Integer functionId = 56; // Integer |
480+
Long functionId = 56L; // Long | The ID of the function being checked
481481
try {
482482
BaseResponseFunctionTaskResponse result = apiInstance.getAiDecompilationTaskStatus(functionId);
483483
System.out.println(result);
@@ -496,7 +496,7 @@ public class Example {
496496

497497
| Name | Type | Description | Notes |
498498
|------------- | ------------- | ------------- | -------------|
499-
| **functionId** | **Integer**| | |
499+
| **functionId** | **Long**| The ID of the function being checked | |
500500

501501
### Return type
502502

@@ -621,7 +621,7 @@ public class Example {
621621
//APIKey.setApiKeyPrefix("Token");
622622

623623
FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient);
624-
Integer functionId = 56; // Integer |
624+
Long functionId = 56L; // Long | The ID of the function being rated
625625
UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest = new UpsertAiDecomplationRatingRequest(); // UpsertAiDecomplationRatingRequest |
626626
try {
627627
BaseResponse result = apiInstance.upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest);
@@ -641,7 +641,7 @@ public class Example {
641641

642642
| Name | Type | Description | Notes |
643643
|------------- | ------------- | ------------- | -------------|
644-
| **functionId** | **Integer**| | |
644+
| **functionId** | **Long**| The ID of the function being rated | |
645645
| **upsertAiDecomplationRatingRequest** | [**UpsertAiDecomplationRatingRequest**](UpsertAiDecomplationRatingRequest.md)| | |
646646

647647
### Return type

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>sdk</name>
8-
<version>2.9.0</version>
8+
<version>2.9.1</version>
99
<url>https://github.com/RevEngAI/sdk-java</url>
1010
<description>Java SDK for the RevEng.AI API</description>
1111
<scm>

0 commit comments

Comments
 (0)