Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@enclave-vm/core

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enclave-vm/core - npm Package Compare versions

Comparing version
2.12.0
to
2.13.0
+3
-3
package.json
{
"name": "@enclave-vm/core",
"version": "2.12.0",
"version": "2.13.0",
"description": "Sandbox runtime for secure JavaScript code execution",

@@ -41,4 +41,4 @@ "author": "AgentFront <info@agentfront.dev>",

"@babel/standalone": "^7.29.0",
"@enclave-vm/types": "2.12.0",
"@enclave-vm/ast": "2.12.0",
"@enclave-vm/types": "2.13.0",
"@enclave-vm/ast": "2.13.0",
"acorn": "8.15.0",

@@ -45,0 +45,0 @@ "acorn-walk": "8.3.4",

@@ -8,3 +8,3 @@ /**

*/
import type { SessionId, StreamEvent, SessionInitEvent, StdoutEvent, LogEvent, ToolCallEvent, ToolResultAppliedEvent, FinalEvent, HeartbeatEvent, ErrorEvent, EncryptionConfig, SessionStats, CallId, LogPayload, ErrorInfo } from '@enclave-vm/types';
import type { SessionId, StreamEvent, SessionInitEvent, StdoutEvent, LogEvent, ToolCallEvent, ToolResultAppliedEvent, FinalEvent, HeartbeatEvent, ErrorEvent, EncryptionConfig, SessionStats, CallId, LogPayload, ErrorInfo, ErrorPayload } from '@enclave-vm/types';
import type { SessionEventEmitter } from '../session-types';

@@ -57,2 +57,6 @@ /**

/**
* Advance and return the next sequence number.
*/
nextSeq(): number;
/**
* Emit a stream event

@@ -92,7 +96,7 @@ */

*/
emitFinalSuccess(result: unknown, stats: SessionStats): FinalEvent;
emitFinalSuccess(result: unknown, stats: SessionStats, errors?: ErrorPayload[]): FinalEvent;
/**
* Create and emit a final event (failure)
*/
emitFinalError(error: ErrorInfo, stats: SessionStats): FinalEvent;
emitFinalError(error: ErrorInfo, stats: SessionStats, errors?: ErrorPayload[]): FinalEvent;
/**

@@ -99,0 +103,0 @@ * Create and emit a heartbeat event

{
"name": "@enclave-vm/core",
"version": "2.12.0",
"version": "2.13.0",
"description": "Sandbox runtime for secure JavaScript code execution",

@@ -42,4 +42,4 @@ "author": "AgentFront <info@agentfront.dev>",

"@babel/standalone": "^7.29.0",
"@enclave-vm/types": "2.12.0",
"@enclave-vm/ast": "2.12.0",
"@enclave-vm/types": "2.13.0",
"@enclave-vm/ast": "2.13.0",
"acorn": "8.15.0",

@@ -46,0 +46,0 @@ "acorn-walk": "8.3.4",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display