diff --git a/.sdk-version b/.sdk-version index ab0941c..b23a73a 100644 --- a/.sdk-version +++ b/.sdk-version @@ -1 +1 @@ -v3.119.0 +v3.120.1 diff --git a/models/AnalysisFunctionEntry.ts b/models/AnalysisFunctionEntry.ts index cd5b635..c6002cc 100644 --- a/models/AnalysisFunctionEntry.ts +++ b/models/AnalysisFunctionEntry.ts @@ -19,7 +19,15 @@ export class AnalysisFunctionEntry { 'functionSize': number; 'functionVaddr': number; 'mangledName'?: string | null; + /** + * ID of the analysis the source function belongs to, if any + */ + 'sourceAnalysisId'?: number; 'sourceBinaryId'?: number; + /** + * ID of the source function this name was transferred from, if any + */ + 'sourceFunctionId'?: number; 'sourceType': string; static readonly discriminator: string | undefined = undefined; @@ -69,12 +77,24 @@ export class AnalysisFunctionEntry { "type": "string", "format": "" }, + { + "name": "sourceAnalysisId", + "baseName": "source_analysis_id", + "type": "number", + "format": "int64" + }, { "name": "sourceBinaryId", "baseName": "source_binary_id", "type": "number", "format": "int64" }, + { + "name": "sourceFunctionId", + "baseName": "source_function_id", + "type": "number", + "format": "int64" + }, { "name": "sourceType", "baseName": "source_type", diff --git a/models/HistoryEntry.ts b/models/HistoryEntry.ts index b5c1d66..6147487 100644 --- a/models/HistoryEntry.ts +++ b/models/HistoryEntry.ts @@ -37,6 +37,10 @@ export class HistoryEntry { */ 'mangledName'?: string; /** + * ID of the source function this name was transferred from, if any + */ + 'sourceFunctionId'?: number; + /** * Source of the rename (USER, SYSTEM, AI_UNSTRIP, etc.) */ 'sourceType': string; @@ -82,6 +86,12 @@ export class HistoryEntry { "type": "string", "format": "" }, + { + "name": "sourceFunctionId", + "baseName": "source_function_id", + "type": "number", + "format": "int64" + }, { "name": "sourceType", "baseName": "source_type", diff --git a/package.json b/package.json index c9cd904..15730c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@revengai/sdk", - "version": "3.119.0", + "version": "3.120.1", "description": "TypeScript SDK for the RevEng.AI API", "author": "RevEng.AI", "repository": {