New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@rwx-research/abq

Package Overview
Dependencies
Maintainers
4
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rwx-research/abq - npm Package Compare versions

Comparing version 0.1.0-alpha.9 to 0.1.0-alpha.10

5

build/socket.d.ts

@@ -1,5 +0,4 @@

/// <reference types="node" />
import { Socket } from 'net';
import { AbqConfiguration } from './configuration';
import { SpawnedMessageInterface } from './protocol';
export declare function connect(abqConfig: AbqConfiguration, { adapterName, adapterVersion, testFramework, testFrameworkVersion }: SpawnedMessageInterface): Promise<Socket>;
import type { Connection } from './types';
export declare function connect(abqConfig: AbqConfiguration, { adapterName, adapterVersion, testFramework, testFrameworkVersion }: SpawnedMessageInterface): Promise<Connection>;

14

build/types.d.ts

@@ -0,1 +1,4 @@

/// <reference types="node" />
import type * as net from 'net';
export type Connection = net.Socket;
export interface Test {

@@ -84,3 +87,3 @@ type: 'test';

}
export type TestResultMessage = SingleTestResultMessage | MultipleTestResultsMessage;
export type TestResultMessage = SingleTestResultMessage | MultipleTestResultsMessage | IncrementalTestResultMessage;
export interface SingleTestResultMessage {

@@ -92,2 +95,11 @@ test_result: TestResult;

}
export type IncrementalTestResultMessage = IncrementalTestResultStep | IncrementalTestResultDone;
export interface IncrementalTestResultStep {
type: 'incremental_result';
one_test_result: TestResult;
}
export interface IncrementalTestResultDone {
type: 'incremental_result_done';
last_test_result?: TestResult;
}
export interface NativeRunnerSpecification {

@@ -94,0 +106,0 @@ type: 'abq_native_runner_specification';

{
"name": "@rwx-research/abq",
"version": "0.1.0-alpha.9",
"version": "0.1.0-alpha.10",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc