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.105.0
v3.107.0
3 changes: 3 additions & 0 deletions docs/AnalysesCoreApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ const request: AnalysesCoreApiCreateAnalysisRequest = {
commandLineArgs: "",
startMethod: "standard_user_process",
timeout: 120,
archiveSha256Hash: "archiveSha256Hash_example",
archiveEntryPath: "archiveEntryPath_example",
archivePassword: "archivePassword_example",
},
},
binaryConfig: {
Expand Down
4 changes: 2 additions & 2 deletions models/ObjectSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ import { SBOM } from '../models/SBOM';
import { SBOMPackage } from '../models/SBOMPackage';
import { SSOProvider } from '../models/SSOProvider';
import { SSOProvidersOutputBody } from '../models/SSOProvidersOutputBody';
import { SandboxOptions } from '../models/SandboxOptions';
import { SandboxOptions } from '../models/SandboxOptions';
import { SandboxStartMethod } from '../models/SandboxStartMethod';
import { SandboxTimeout } from '../models/SandboxTimeout';
import { ScheduledTaskEntry } from '../models/ScheduledTaskEntry';
Expand Down Expand Up @@ -975,7 +975,7 @@ import { UpdateUserCreditsInputBody } from '../models/UpdateUserCreditsInputBody
import { UpdateUserInputBody , UpdateUserInputBodyRoleEnum , UpdateUserInputBodyTierEnum } from '../models/UpdateUserInputBody';
import { UpdateUserPasswordInputBody } from '../models/UpdateUserPasswordInputBody';
import { UploadFileType } from '../models/UploadFileType';
import { UploadResponse } from '../models/UploadResponse';
import { UploadResponse } from '../models/UploadResponse';
import { UpsertAiDecomplationRatingRequest } from '../models/UpsertAiDecomplationRatingRequest';
import { UpsertOverridesData } from '../models/UpsertOverridesData';
import { UpsertOverridesInputBody } from '../models/UpsertOverridesInputBody';
Expand Down
21 changes: 21 additions & 0 deletions models/SandboxOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ export class SandboxOptions {
* Maximum execution time for the sandbox run, in seconds. Allowed values: 120 (2m), 180 (3m), 300 (5m), 600 (10m).
*/
'timeout'?: SandboxTimeout;
'archiveSha256Hash'?: string | null;
'archiveEntryPath'?: string | null;
'archivePassword'?: string | null;

static readonly discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -53,6 +56,24 @@ export class SandboxOptions {
"baseName": "timeout",
"type": "SandboxTimeout",
"format": ""
},
{
"name": "archiveSha256Hash",
"baseName": "archive_sha_256_hash",
"type": "string",
"format": ""
},
{
"name": "archiveEntryPath",
"baseName": "archive_entry_path",
"type": "string",
"format": ""
},
{
"name": "archivePassword",
"baseName": "archive_password",
"type": "string",
"format": ""
} ];

static getAttributeTypeMap() {
Expand Down
28 changes: 28 additions & 0 deletions models/UploadResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ export class UploadResponse {
'sha256Hash': string;
'fileType': UploadFileType;
'filename': string;
'mime': string;
'isArchive': boolean;
'canSandbox': boolean;
'canExtract': boolean;

static readonly discriminator: string | undefined = undefined;

Expand All @@ -39,6 +43,30 @@ export class UploadResponse {
"baseName": "filename",
"type": "string",
"format": ""
},
{
"name": "mime",
"baseName": "mime",
"type": "string",
"format": ""
},
{
"name": "isArchive",
"baseName": "is_archive",
"type": "boolean",
"format": ""
},
{
"name": "canSandbox",
"baseName": "can_sandbox",
"type": "boolean",
"format": ""
},
{
"name": "canExtract",
"baseName": "can_extract",
"type": "boolean",
"format": ""
} ];

static getAttributeTypeMap() {
Expand Down
2 changes: 1 addition & 1 deletion models/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { UserProfile } from '../models/UserProfile';
import { HttpFile } from '../http/http';

export class User {
'createdAt'?: Date;
'createdAt': Date;
'email': string;
'profile': UserProfile;
'role': UserRoleEnum;
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.105.0",
"version": "v3.107.0",
"description": "TypeScript SDK for the RevEng.AI API",
"author": "RevEng.AI",
"repository": {
Expand Down