vscode-zap
Advanced tools
Comparing version 0.0.67 to 0.0.68
@@ -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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
427708
72
6422
+ Addedlibzap@0.0.68(transitive)
- Removedlibzap@0.0.67(transitive)
Updatedlibzap@^0.0.68