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.101.0
v3.102.0
4 changes: 3 additions & 1 deletion docs/FunctionsCoreApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1543,7 +1543,9 @@ const apiInstance = new FunctionsCoreApi(configuration);

const request: FunctionsCoreApiStartFunctionsMatchingRequest = {

startMatchingForFunctionsInputBody: ,
startMatchingForFunctionsInputBody:
key: null,
,
};

const data = await apiInstance.startFunctionsMatching(request);
Expand Down
2 changes: 1 addition & 1 deletion models/AnalysisBasicInfoOutputBody.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class AnalysisBasicInfoOutputBody {
/**
* UUID of the binary, omitted when not set
*/
'binaryUuid'?: string;
'binaryUuid': string;
/**
* When the binary was uploaded
*/
Expand Down
10 changes: 10 additions & 0 deletions models/DataTypesEntry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ import { HttpFile } from '../http/http';

export class DataTypesEntry {
'dataTypes'?: FunctionInfo;
/**
* Current version of the function data types. Pass this back on the next write to satisfy the CAS check.
*/
'dataTypesVersion': number;
'functionId': number;

static readonly discriminator: string | undefined = undefined;
Expand All @@ -27,6 +31,12 @@ export class DataTypesEntry {
"type": "FunctionInfo",
"format": ""
},
{
"name": "dataTypesVersion",
"baseName": "data_types_version",
"type": "number",
"format": "int64"
},
{
"name": "functionId",
"baseName": "function_id",
Expand Down
7 changes: 7 additions & 0 deletions models/FunctionDetailsOutputBody.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import { HttpFile } from '../http/http';

export class FunctionDetailsOutputBody {
'analysisId': number;
'binaryId': number;
'creation': Date;
'debug': boolean;
Expand All @@ -27,6 +28,12 @@ export class FunctionDetailsOutputBody {
static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "analysisId",
"baseName": "analysis_id",
"type": "number",
"format": "int64"
},
{
"name": "binaryId",
"baseName": "binary_id",
Expand Down
10 changes: 10 additions & 0 deletions models/StartMatchingForFunctionsInputBody.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ export class StartMatchingForFunctionsInputBody {
* Max matches returned per source function. Defaults to 1.
*/
'resultsPerFunction'?: number;
/**
* Collapse near-duplicate candidate names into canonical buckets and return per-name confidences (the response \'confidences\' array). Adds a canonicalisation step; defaults to false.
*/
'useCanonicalNames'?: boolean;

static readonly discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -58,6 +62,12 @@ export class StartMatchingForFunctionsInputBody {
"baseName": "results_per_function",
"type": "number",
"format": "int64"
},
{
"name": "useCanonicalNames",
"baseName": "use_canonical_names",
"type": "boolean",
"format": ""
} ];

static getAttributeTypeMap() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@revengai/sdk",
"version": "v3.101.0",
"version": "v3.102.0",
"description": "TypeScript SDK for the RevEng.AI API",
"author": "RevEng.AI",
"repository": {
Expand Down