Skip to content

Commit 7d6532f

Browse files
authored
Merge pull request #186 from RevEngAI/sdk-update-v3.101.0
🤖 Update SDK to version v3.101.0
2 parents f29201e + dc37b8e commit 7d6532f

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

.sdk-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.100.0
1+
v3.101.0

revengai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
""" # noqa: E501
1414

1515

16-
__version__ = "v3.100.0"
16+
__version__ = "v3.101.0"
1717

1818
# Define package exports
1919
__all__ = [

revengai/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/v3.100.0/python'
93+
self.user_agent = 'OpenAPI-Generator/v3.101.0/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

revengai/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,8 +541,8 @@ def to_debug_report(self) -> str:
541541
return "Python SDK Debug Report:\n"\
542542
"OS: {env}\n"\
543543
"Python Version: {pyversion}\n"\
544-
"Version of the API: v3.100.0\n"\
545-
"SDK Package Version: v3.100.0".\
544+
"Version of the API: v3.101.0\n"\
545+
"SDK Package Version: v3.101.0".\
546546
format(env=sys.platform, pyversion=sys.version)
547547

548548
def get_host_settings(self) -> List[HostSetting]:

revengai/models/add_callee_input_body.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AddCalleeInputBody(BaseModel):
2727
AddCalleeInputBody
2828
""" # noqa: E501
2929
callee_function_id: Optional[Annotated[int, Field(strict=True, ge=0)]] = Field(default=None, description="Internal callee function ID; 0 means not provided")
30-
callee_name: Optional[Annotated[str, Field(strict=True, max_length=1024)]] = Field(default=None, description="Callee name (for external calls)")
30+
callee_name: Optional[Annotated[str, Field(strict=True, max_length=2048)]] = Field(default=None, description="Callee name (for external calls)")
3131
callee_vaddr: StrictInt = Field(description="Virtual address of the callee")
3232
is_external: StrictBool = Field(description="Whether the callee is outside the binary")
3333
thunked_vaddr: Optional[Annotated[int, Field(strict=True, ge=0)]] = Field(default=None, description="Thunked virtual address")

revengai/models/batch_rename_item.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class BatchRenameItem(BaseModel):
2727
BatchRenameItem
2828
""" # noqa: E501
2929
function_id: Annotated[int, Field(strict=True, ge=1)] = Field(description="Function ID to rename")
30-
new_mangled_name: Optional[Annotated[str, Field(strict=True, max_length=1024)]] = Field(default=None, description="New mangled function name")
31-
new_name: Annotated[str, Field(min_length=1, strict=True, max_length=1024)] = Field(description="New function name")
30+
new_mangled_name: Optional[Annotated[str, Field(strict=True, max_length=2048)]] = Field(default=None, description="New mangled function name")
31+
new_name: Annotated[str, Field(min_length=1, strict=True, max_length=2048)] = Field(description="New function name")
3232
additional_properties: Dict[str, Any] = {}
3333
__properties: ClassVar[List[str]] = ["function_id", "new_mangled_name", "new_name"]
3434

revengai/models/rename_input_body.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class RenameInputBody(BaseModel):
2626
"""
2727
RenameInputBody
2828
""" # noqa: E501
29-
new_mangled_name: Optional[Annotated[str, Field(strict=True, max_length=1024)]] = Field(default=None, description="New mangled function name")
30-
new_name: Annotated[str, Field(min_length=1, strict=True, max_length=1024)] = Field(description="New function name")
29+
new_mangled_name: Optional[Annotated[str, Field(strict=True, max_length=2048)]] = Field(default=None, description="New mangled function name")
30+
new_name: Annotated[str, Field(min_length=1, strict=True, max_length=2048)] = Field(description="New function name")
3131
preserve_ai_decompilation: Optional[StrictBool] = Field(default=None, description="Keep the cached AI decompilation, summary and inline comments. Set when the new name comes from the model's own prediction (e.g. Transfer Name) so existing AI output is not discarded and regenerated.")
3232
additional_properties: Dict[str, Any] = {}
3333
__properties: ClassVar[List[str]] = ["new_mangled_name", "new_name", "preserve_ai_decompilation"]

0 commit comments

Comments
 (0)