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.93.0
v3.93.1
5 changes: 2 additions & 3 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.93.0</version>
<version>3.93.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
implementation "ai.reveng:sdk:3.93.0"
implementation "ai.reveng:sdk:3.93.1"
}
```

Expand Down Expand Up @@ -534,7 +534,6 @@ Class | Method | HTTP request | Description
- [NameConfidence](docs/NameConfidence.md)
- [NameSourceType](docs/NameSourceType.md)
- [NetworkActivity](docs/NetworkActivity.md)
- [NumericAddr](docs/NumericAddr.md)
- [Order](docs/Order.md)
- [PDBDebugModel](docs/PDBDebugModel.md)
- [PEModel](docs/PEModel.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.93.0'
version = '3.93.1'



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

coordinates("ai.reveng", "sdk", "3.93.0")
coordinates("ai.reveng", "sdk", "3.93.1")

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.93.0",
version := "3.93.1",
scalaVersion := "2.11.12",
scalacOptions ++= Seq("-feature"),
compile / javacOptions ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion docs/AIDecompInverseFunctionMapItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**addr** | **NumericAddr** | | |
|**addr** | **Long** | | |
|**isExternal** | **Boolean** | | |
|**name** | **String** | | |

Expand Down
2 changes: 1 addition & 1 deletion docs/AIDecompInverseStringMapItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**addr** | **NumericAddr** | | |
|**addr** | **Long** | | |
|**string** | **String** | | |


Expand Down
13 changes: 0 additions & 13 deletions docs/NumericAddr.md

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>sdk</artifactId>
<packaging>jar</packaging>
<name>sdk</name>
<version>3.93.0</version>
<version>3.93.1</version>
<url>https://github.com/RevEngAI/sdk-java</url>
<description>Java SDK for the RevEng.AI API</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ai/reveng/invoker/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ protected void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/3.93.0/java");
setUserAgent("OpenAPI-Generator/3.93.1/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ai/reveng/invoker/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "3.93.0";
public static final String VERSION = "3.93.1";

private static final AtomicReference<ApiClient> defaultApiClient = new AtomicReference<>();
private static volatile Supplier<ApiClient> apiClientFactory = ApiClient::new;
Expand Down
1 change: 0 additions & 1 deletion src/main/java/ai/reveng/invoker/JSON.java
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,6 @@ private static Class getClassByDiscriminator(Map classByDiscriminatorValue, Stri
gsonBuilder.registerTypeAdapterFactory(new ai.reveng.model.NameConfidence.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(new ai.reveng.model.NameSourceType.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(new ai.reveng.model.NetworkActivity.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(new ai.reveng.model.NumericAddr.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(new ai.reveng.model.PDBDebugModel.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(new ai.reveng.model.PEModel.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(new ai.reveng.model.PaginationModel.CustomTypeAdapterFactory());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import java.util.Objects;
import java.util.Locale;
import ai.reveng.model.NumericAddr;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
Expand Down Expand Up @@ -54,8 +53,8 @@
public class AIDecompInverseFunctionMapItem {
public static final String SERIALIZED_NAME_ADDR = "addr";
@SerializedName(SERIALIZED_NAME_ADDR)
@javax.annotation.Nonnull
private NumericAddr addr;
@javax.annotation.Nullable
private Long addr;

public static final String SERIALIZED_NAME_IS_EXTERNAL = "is_external";
@SerializedName(SERIALIZED_NAME_IS_EXTERNAL)
Expand All @@ -70,7 +69,7 @@ public class AIDecompInverseFunctionMapItem {
public AIDecompInverseFunctionMapItem() {
}

public AIDecompInverseFunctionMapItem addr(@javax.annotation.Nonnull NumericAddr addr) {
public AIDecompInverseFunctionMapItem addr(@javax.annotation.Nullable Long addr) {
this.addr = addr;
return this;
}
Expand All @@ -79,12 +78,12 @@ public AIDecompInverseFunctionMapItem addr(@javax.annotation.Nonnull NumericAddr
* Get addr
* @return addr
*/
@javax.annotation.Nonnull
public NumericAddr getAddr() {
@javax.annotation.Nullable
public Long getAddr() {
return addr;
}

public void setAddr(@javax.annotation.Nonnull NumericAddr addr) {
public void setAddr(@javax.annotation.Nullable Long addr) {
this.addr = addr;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import java.util.Objects;
import java.util.Locale;
import ai.reveng.model.NumericAddr;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
Expand Down Expand Up @@ -54,8 +53,8 @@
public class AIDecompInverseStringMapItem {
public static final String SERIALIZED_NAME_ADDR = "addr";
@SerializedName(SERIALIZED_NAME_ADDR)
@javax.annotation.Nonnull
private NumericAddr addr;
@javax.annotation.Nullable
private Long addr;

public static final String SERIALIZED_NAME_STRING = "string";
@SerializedName(SERIALIZED_NAME_STRING)
Expand All @@ -65,7 +64,7 @@ public class AIDecompInverseStringMapItem {
public AIDecompInverseStringMapItem() {
}

public AIDecompInverseStringMapItem addr(@javax.annotation.Nonnull NumericAddr addr) {
public AIDecompInverseStringMapItem addr(@javax.annotation.Nullable Long addr) {
this.addr = addr;
return this;
}
Expand All @@ -74,12 +73,12 @@ public AIDecompInverseStringMapItem addr(@javax.annotation.Nonnull NumericAddr a
* Get addr
* @return addr
*/
@javax.annotation.Nonnull
public NumericAddr getAddr() {
@javax.annotation.Nullable
public Long getAddr() {
return addr;
}

public void setAddr(@javax.annotation.Nonnull NumericAddr addr) {
public void setAddr(@javax.annotation.Nullable Long addr) {
this.addr = addr;
}

Expand Down
Loading