revengai 1.78.1__py3-none-any.whl → 1.80.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of revengai might be problematic. Click here for more details.
- revengai/__init__.py +1 -9
- revengai/api/__init__.py +0 -1
- revengai/api/analyses_core_api.py +141 -147
- revengai/api/functions_core_api.py +12 -12
- revengai/api/functions_data_types_api.py +12 -12
- revengai/api_client.py +1 -1
- revengai/configuration.py +2 -2
- revengai/models/__init__.py +0 -3
- revengai/models/ann_function.py +2 -2
- revengai/models/basic.py +10 -3
- revengai/models/function_mapping.py +5 -3
- {revengai-1.78.1.dist-info → revengai-1.80.0.dist-info}/METADATA +2 -6
- {revengai-1.78.1.dist-info → revengai-1.80.0.dist-info}/RECORD +14 -18
- revengai/api/default_api.py +0 -317
- revengai/models/base_response_symbols_info.py +0 -125
- revengai/models/boundary.py +0 -90
- revengai/models/symbols_info.py +0 -102
- {revengai-1.78.1.dist-info → revengai-1.80.0.dist-info}/WHEEL +0 -0
revengai/__init__.py
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
""" # noqa: E501
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
__version__ = "v1.
|
|
16
|
+
__version__ = "v1.80.0"
|
|
17
17
|
|
|
18
18
|
# Define package exports
|
|
19
19
|
__all__ = [
|
|
@@ -37,7 +37,6 @@ __all__ = [
|
|
|
37
37
|
"FunctionsThreatScoreApi",
|
|
38
38
|
"ModelsApi",
|
|
39
39
|
"SearchApi",
|
|
40
|
-
"DefaultApi",
|
|
41
40
|
"ApiResponse",
|
|
42
41
|
"ApiClient",
|
|
43
42
|
"Configuration",
|
|
@@ -151,7 +150,6 @@ __all__ = [
|
|
|
151
150
|
"BaseResponseSecurityChecksResponse",
|
|
152
151
|
"BaseResponseStatus",
|
|
153
152
|
"BaseResponseStr",
|
|
154
|
-
"BaseResponseSymbolsInfo",
|
|
155
153
|
"BaseResponseTTPS",
|
|
156
154
|
"BaseResponseTagSearchResponse",
|
|
157
155
|
"BaseResponseTaskResponse",
|
|
@@ -170,7 +168,6 @@ __all__ = [
|
|
|
170
168
|
"BinaryTaskStatus",
|
|
171
169
|
"Block",
|
|
172
170
|
"BlockCommentsGenerationForFunctionResponse",
|
|
173
|
-
"Boundary",
|
|
174
171
|
"BoxPlotConfidence",
|
|
175
172
|
"CalleeFunctionInfo",
|
|
176
173
|
"CalleesCallerFunctionsResponse",
|
|
@@ -329,7 +326,6 @@ __all__ = [
|
|
|
329
326
|
"Structure",
|
|
330
327
|
"StructureMember",
|
|
331
328
|
"Symbols",
|
|
332
|
-
"SymbolsInfo",
|
|
333
329
|
"TTPS",
|
|
334
330
|
"TTPSAttack",
|
|
335
331
|
"TTPSData",
|
|
@@ -380,7 +376,6 @@ from revengai.api.functions_renaming_history_api import FunctionsRenamingHistory
|
|
|
380
376
|
from revengai.api.functions_threat_score_api import FunctionsThreatScoreApi as FunctionsThreatScoreApi
|
|
381
377
|
from revengai.api.models_api import ModelsApi as ModelsApi
|
|
382
378
|
from revengai.api.search_api import SearchApi as SearchApi
|
|
383
|
-
from revengai.api.default_api import DefaultApi as DefaultApi
|
|
384
379
|
|
|
385
380
|
# import ApiClient
|
|
386
381
|
from revengai.api_response import ApiResponse as ApiResponse
|
|
@@ -498,7 +493,6 @@ from revengai.models.base_response_recent import BaseResponseRecent as BaseRespo
|
|
|
498
493
|
from revengai.models.base_response_security_checks_response import BaseResponseSecurityChecksResponse as BaseResponseSecurityChecksResponse
|
|
499
494
|
from revengai.models.base_response_status import BaseResponseStatus as BaseResponseStatus
|
|
500
495
|
from revengai.models.base_response_str import BaseResponseStr as BaseResponseStr
|
|
501
|
-
from revengai.models.base_response_symbols_info import BaseResponseSymbolsInfo as BaseResponseSymbolsInfo
|
|
502
496
|
from revengai.models.base_response_ttps import BaseResponseTTPS as BaseResponseTTPS
|
|
503
497
|
from revengai.models.base_response_tag_search_response import BaseResponseTagSearchResponse as BaseResponseTagSearchResponse
|
|
504
498
|
from revengai.models.base_response_task_response import BaseResponseTaskResponse as BaseResponseTaskResponse
|
|
@@ -517,7 +511,6 @@ from revengai.models.binary_search_result import BinarySearchResult as BinarySea
|
|
|
517
511
|
from revengai.models.binary_task_status import BinaryTaskStatus as BinaryTaskStatus
|
|
518
512
|
from revengai.models.block import Block as Block
|
|
519
513
|
from revengai.models.block_comments_generation_for_function_response import BlockCommentsGenerationForFunctionResponse as BlockCommentsGenerationForFunctionResponse
|
|
520
|
-
from revengai.models.boundary import Boundary as Boundary
|
|
521
514
|
from revengai.models.box_plot_confidence import BoxPlotConfidence as BoxPlotConfidence
|
|
522
515
|
from revengai.models.callee_function_info import CalleeFunctionInfo as CalleeFunctionInfo
|
|
523
516
|
from revengai.models.callees_caller_functions_response import CalleesCallerFunctionsResponse as CalleesCallerFunctionsResponse
|
|
@@ -676,7 +669,6 @@ from revengai.models.string_functions import StringFunctions as StringFunctions
|
|
|
676
669
|
from revengai.models.structure import Structure as Structure
|
|
677
670
|
from revengai.models.structure_member import StructureMember as StructureMember
|
|
678
671
|
from revengai.models.symbols import Symbols as Symbols
|
|
679
|
-
from revengai.models.symbols_info import SymbolsInfo as SymbolsInfo
|
|
680
672
|
from revengai.models.ttps import TTPS as TTPS
|
|
681
673
|
from revengai.models.ttps_attack import TTPSAttack as TTPSAttack
|
|
682
674
|
from revengai.models.ttps_data import TTPSData as TTPSData
|
revengai/api/__init__.py
CHANGED
|
@@ -21,5 +21,4 @@ from revengai.api.functions_renaming_history_api import FunctionsRenamingHistory
|
|
|
21
21
|
from revengai.api.functions_threat_score_api import FunctionsThreatScoreApi
|
|
22
22
|
from revengai.api.models_api import ModelsApi
|
|
23
23
|
from revengai.api.search_api import SearchApi
|
|
24
|
-
from revengai.api.default_api import DefaultApi
|
|
25
24
|
|