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

libzap

Package Overview
Dependencies
Maintainers
4
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libzap - npm Package Compare versions

Comparing version 0.0.67 to 0.0.68

8

lib/remote/protocol.d.ts

@@ -125,5 +125,11 @@ import { NotificationType, NotificationType0, RequestType, RequestType0 } from "vscode-jsonrpc";

}
export interface RefListParams {
repo: string;
}
export declare namespace RefListRequest {
const type: RequestType<void, RefInfo[], void, void>;
const type: RequestType<RefListParams, RefInfo[], void, void>;
}
export declare namespace RepoListRequest {
const type: RequestType<void, string[], void, void>;
}
export interface RepoRemoteConfiguration {

@@ -130,0 +136,0 @@ endpoint: string;

@@ -79,2 +79,6 @@ "use strict";

})(RefListRequest = exports.RefListRequest || (exports.RefListRequest = {}));
var RepoListRequest;
(function (RepoListRequest) {
RepoListRequest.type = new vscode_jsonrpc_1.RequestType("repo/list");
})(RepoListRequest = exports.RepoListRequest || (exports.RepoListRequest = {}));
var RepoInfoRequest;

@@ -81,0 +85,0 @@ (function (RepoInfoRequest) {

2

package.json
{
"name": "libzap",
"version": "0.0.67",
"version": "0.0.68",
"description": "JavaScript library for Zap",

@@ -5,0 +5,0 @@ "license": "none",

@@ -302,6 +302,14 @@ import { NotificationType, NotificationType0, RequestType, RequestType0 } from "vscode-jsonrpc";

export interface RefListParams {
repo: string;
}
export namespace RefListRequest {
export const type = new RequestType<void, RefInfo[], void, void>("ref/list");
export const type = new RequestType<RefListParams, RefInfo[], void, void>("ref/list");
}
export namespace RepoListRequest {
export const type = new RequestType<void, string[], void, void>("repo/list");
}
export interface RepoRemoteConfiguration {

@@ -308,0 +316,0 @@ endpoint: string;

Sorry, the diff of this file is not supported yet

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