Socket
Socket
Sign inDemoInstall

electron-builder-http

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-builder-http - npm Package Compare versions

Comparing version 18.7.0 to 18.8.0

5

out/bintray.js

@@ -31,2 +31,5 @@ "use strict";

}
setRequestHeaders(value) {
this.requestHeaders = value;
}
bintrayRequest(path, auth) {

@@ -37,3 +40,3 @@ let data = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;

return this.httpExecutor.request((0, (_httpExecutor || _load_httpExecutor()).configureRequestOptions)({ hostname: "api.bintray.com", path: path }, auth, method), cancellationToken, data);
return this.httpExecutor.request((0, (_httpExecutor || _load_httpExecutor()).configureRequestOptions)({ hostname: "api.bintray.com", path: path, headers: this.requestHeaders || undefined }, auth, method), cancellationToken, data);
}

@@ -40,0 +43,0 @@ getVersion(version) {

4

out/electron-builder-http.d.ts

@@ -292,3 +292,3 @@ declare module "electron-builder-http/out/CancellationToken" {

import { CancellationToken } from "electron-builder-http/out/CancellationToken"
import { HttpExecutor } from "electron-builder-http"
import { HttpExecutor, RequestHeaders } from "electron-builder-http"
import { BintrayOptions } from "electron-builder-http/out/publishOptions"

@@ -317,2 +317,4 @@

readonly packageName: string
private requestHeaders
setRequestHeaders(value: RequestHeaders | null): void
constructor(options: BintrayOptions, httpExecutor: HttpExecutor<any>, cancellationToken: CancellationToken, apiKey?: string | null)

@@ -319,0 +321,0 @@ private bintrayRequest<T>(path, auth, data, cancellationToken, method?)

{
"name": "electron-builder-http",
"version": "18.7.0",
"version": "18.8.0",
"main": "out/httpExecutor.js",

@@ -5,0 +5,0 @@ "author": "Vladimir Krivosheev",

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