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

vscode-zap

Package Overview
Dependencies
Maintainers
4
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-zap - npm Package Compare versions

Comparing version 0.0.67 to 0.0.68

3

out/src/controller.js

@@ -173,3 +173,4 @@ "use strict";

showRefSelectMenu() {
return vscode.window.showQuickPick(this.client.sendRequest(protocol_1.RefListRequest.type, void 0).then((refs) => {
const params = { repo: this.environment.repo };
return vscode.window.showQuickPick(this.client.sendRequest(protocol_1.RefListRequest.type, params).then((refs) => {
const items = [];

@@ -176,0 +177,0 @@ let canClobberRemote = false;

@@ -5,3 +5,3 @@ import * as vscode from "vscode";

import { IEnvironment } from "./environment";
export declare const outputChannel: vscode.OutputChannel;
export declare const outputChannel: any;
export declare let itemForE2ETestOnly: vscode.StatusBarItem;

@@ -8,0 +8,0 @@ export declare enum Status {

import * as vscode from "vscode";
export declare function activate(context: vscode.ExtensionContext): void;
export declare function openInBrowser(uri: vscode.Uri, sel: vscode.Selection | null, trackingEventName: "OpenFile" | "OpenAtCursor"): Promise<boolean>;
export declare function openWorkspaceInBrowser(): Promise<void>;
export declare function openInBrowser(uri: vscode.Uri, sel: vscode.Selection | null, trackingEventName: "OpenFile" | "OpenAtCursor"): Promise<any>;
export declare function openWorkspaceInBrowser(): Promise<any>;

@@ -5,3 +5,3 @@ {

"description": "Real-time code synchronization",
"version": "0.0.67",
"version": "0.0.68",
"publisher": "sqs",

@@ -42,3 +42,3 @@ "preview": true,

"dependencies": {
"libzap": "^0.0.67",
"libzap": "^0.0.68",
"open": "^0.0.5",

@@ -45,0 +45,0 @@ "vscode-jsonrpc": "3.0.1-alpha.7"

import * as vscode from "vscode";
import { Client, ClientOptions, ServerOptions, State, StateChangeEvent } from "libzap/lib/remote/client";
import { Handler, MergeStrategy } from "libzap/lib/remote/handler";
import { RefIdentifier, RefListRequest, RefInfo, RefInfoResult, RefInfoRequest, RepoInfoResult, RepoInfoRequest, WorkspaceAddRequest } from "libzap/lib/remote/protocol";
import { RefIdentifier, RefListRequest, RefListParams, RefInfo, RefInfoResult, RefInfoRequest, RepoInfoResult, RepoInfoRequest, WorkspaceAddRequest } from "libzap/lib/remote/protocol";
import { IEnvironment } from "./environment";

@@ -173,3 +173,4 @@ import { Workspace } from "./workspace";

public showRefSelectMenu(): Thenable<void> {
return vscode.window.showQuickPick(this.client.sendRequest(RefListRequest.type, void 0).then((refs: RefInfo[]) => {
const params: RefListParams = { repo: this.environment.repo };
return vscode.window.showQuickPick(this.client.sendRequest(RefListRequest.type, params).then((refs: RefInfo[]) => {
const items: (vscode.QuickPickItem & { onSelect: Function })[] = [];

@@ -176,0 +177,0 @@ let canClobberRemote: boolean = false;

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