Skip to content
Merged
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 @@
v3.99.0
v3.100.0
14 changes: 10 additions & 4 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>3.99.0</version>
<version>3.100.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
implementation "ai.reveng:sdk:3.99.0"
implementation "ai.reveng:sdk:3.100.0"
}
```

Expand Down Expand Up @@ -209,12 +209,12 @@ Class | Method | HTTP request | Description
*FunctionsDataTypesApi* | [**batchUpdateFunctionDataTypes**](docs/FunctionsDataTypesApi.md#batchUpdateFunctionDataTypes) | **PUT** /v3/analyses/{analysis_id}/functions/data-types | Batch update function data types
*FunctionsDataTypesApi* | [**generateFunctionDataTypesForAnalysis**](docs/FunctionsDataTypesApi.md#generateFunctionDataTypesForAnalysis) | **POST** /v2/analyses/{analysis_id}/functions/data_types | Generate Function Data Types
*FunctionsDataTypesApi* | [**generateFunctionDataTypesForFunctions**](docs/FunctionsDataTypesApi.md#generateFunctionDataTypesForFunctions) | **POST** /v2/functions/data_types | Generate Function Data Types for an arbitrary list of functions
*FunctionsDataTypesApi* | [**getFunctionDataTypes**](docs/FunctionsDataTypesApi.md#getFunctionDataTypes) | **GET** /v2/analyses/{analysis_id}/functions/{function_id}/data_types | Get Function Data Types
*FunctionsDataTypesApi* | [**getFunctionDataTypes_0**](docs/FunctionsDataTypesApi.md#getFunctionDataTypes_0) | **GET** /v3/analyses/{analysis_id}/functions/{function_id}/data-types | Get data types for a single function
*FunctionsDataTypesApi* | [**getFunctionDataTypes**](docs/FunctionsDataTypesApi.md#getFunctionDataTypes) | **GET** /v3/analyses/{analysis_id}/functions/{function_id}/data-types | Get data types for a single function
*FunctionsDataTypesApi* | [**listAnalysisFunctionsDataTypes**](docs/FunctionsDataTypesApi.md#listAnalysisFunctionsDataTypes) | **GET** /v3/analyses/{analysis_id}/functions/data-types | List data types for all functions in an analysis
*FunctionsDataTypesApi* | [**listFunctionDataTypesForAnalysis**](docs/FunctionsDataTypesApi.md#listFunctionDataTypesForAnalysis) | **GET** /v2/analyses/{analysis_id}/functions/data_types | List Function Data Types
*FunctionsDataTypesApi* | [**listFunctionDataTypesForFunctions**](docs/FunctionsDataTypesApi.md#listFunctionDataTypesForFunctions) | **GET** /v2/functions/data_types | List Function Data Types
*FunctionsDataTypesApi* | [**listFunctionsDataTypes**](docs/FunctionsDataTypesApi.md#listFunctionsDataTypes) | **GET** /v3/functions/data-types | Get data types for many functions
*FunctionsDataTypesApi* | [**updateFunctionDataTypes**](docs/FunctionsDataTypesApi.md#updateFunctionDataTypes) | **PUT** /v2/analyses/{analysis_id}/functions/{function_id}/data_types | Update function data types
*FunctionsRenamingHistoryApi* | [**batchRenameFunction**](docs/FunctionsRenamingHistoryApi.md#batchRenameFunction) | **POST** /v2/functions/rename/batch | Batch Rename Functions
*FunctionsRenamingHistoryApi* | [**batchRenameFunctions**](docs/FunctionsRenamingHistoryApi.md#batchRenameFunctions) | **POST** /v3/functions/rename | Batch rename functions
*FunctionsRenamingHistoryApi* | [**getFunctionHistory**](docs/FunctionsRenamingHistoryApi.md#getFunctionHistory) | **GET** /v3/functions/{function_id}/history | Get function name history
Expand Down Expand Up @@ -723,6 +723,12 @@ Class | Method | HTTP request | Description
- [UserCredits](docs/UserCredits.md)
- [UserIdentity](docs/UserIdentity.md)
- [UserProfile](docs/UserProfile.md)
- [V2FunctionHeader](docs/V2FunctionHeader.md)
- [V2FunctionInfo](docs/V2FunctionInfo.md)
- [V2FunctionMatch](docs/V2FunctionMatch.md)
- [V2FunctionType](docs/V2FunctionType.md)
- [V2MatchedFunction](docs/V2MatchedFunction.md)
- [V2NameConfidence](docs/V2NameConfidence.md)
- [Vulnerabilities](docs/Vulnerabilities.md)
- [Vulnerability](docs/Vulnerability.md)
- [WarningEvent](docs/WarningEvent.md)
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 = '3.99.0'
version = '3.100.0'



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

coordinates("ai.reveng", "sdk", "3.99.0")
coordinates("ai.reveng", "sdk", "3.100.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 := "3.99.0",
version := "3.100.0",
scalaVersion := "2.11.12",
scalacOptions ++= Seq("-feature"),
compile / javacOptions ++= Seq("-Xlint:deprecation"),
Expand Down
54 changes: 45 additions & 9 deletions docs/AgentApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -70,7 +74,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -110,6 +114,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -138,7 +146,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -178,6 +186,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -206,7 +218,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -246,6 +258,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -274,7 +290,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -314,6 +330,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -342,7 +362,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -383,6 +403,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -411,7 +435,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -451,6 +475,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -479,7 +507,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -521,6 +549,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -549,7 +581,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -589,6 +621,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AgentApi apiInstance = new AgentApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -617,7 +653,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down
12 changes: 10 additions & 2 deletions docs/AnalysesBulkActionsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AnalysesBulkActionsApi apiInstance = new AnalysesBulkActionsApi(defaultClient);
AnalysisBulkAddTagsRequest analysisBulkAddTagsRequest = new AnalysisBulkAddTagsRequest(); // AnalysisBulkAddTagsRequest |
try {
Expand Down Expand Up @@ -65,7 +69,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -107,6 +111,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AnalysesBulkActionsApi apiInstance = new AnalysesBulkActionsApi(defaultClient);
BulkDeleteAnalysesRequest bulkDeleteAnalysesRequest = new BulkDeleteAnalysesRequest(); // BulkDeleteAnalysesRequest |
try {
Expand Down Expand Up @@ -135,7 +143,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down
24 changes: 20 additions & 4 deletions docs/AnalysesCommentsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient);
Integer analysisId = 56; // Integer |
CommentBase commentBase = new CommentBase(); // CommentBase |
Expand Down Expand Up @@ -69,7 +73,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -112,6 +116,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient);
Integer commentId = 56; // Integer |
Integer analysisId = 56; // Integer |
Expand Down Expand Up @@ -142,7 +150,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -186,6 +194,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient);
Integer analysisId = 56; // Integer |
try {
Expand Down Expand Up @@ -214,7 +226,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down Expand Up @@ -256,6 +268,10 @@ public class Example {
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKey.setApiKeyPrefix("Token");

// Configure HTTP bearer authorization: bearerAuth
HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
bearerAuth.setBearerToken("BEARER TOKEN");

AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient);
Integer commentId = 56; // Integer |
Integer analysisId = 56; // Integer |
Expand Down Expand Up @@ -288,7 +304,7 @@ public class Example {

### Authorization

[APIKey](../README.md#APIKey)
[APIKey](../README.md#APIKey), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

Expand Down
Loading