Socket
Socket
Sign inDemoInstall

builder-util-runtime

Package Overview
Dependencies
Maintainers
2
Versions
102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

builder-util-runtime - npm Package Compare versions

Comparing version 8.9.2 to 9.0.0-alpha.0

2

out/index.d.ts
export { CancellationToken, CancellationError } from "./CancellationToken";
export { HttpError, createHttpError, HttpExecutor, DownloadOptions, DigestTransform, RequestHeaders, safeGetHeader, configureRequestOptions, configureRequestOptionsFromUrl, safeStringifyJson, parseJson, configureRequestUrl, } from "./httpExecutor";
export { BintrayOptions, CustomPublishOptions, GenericServerOptions, GithubOptions, KeygenOptions, BitbucketOptions, SnapStoreOptions, PublishConfiguration, S3Options, SpacesOptions, BaseS3Options, getS3LikeProviderBaseUrl, githubUrl, PublishProvider, AllPublishOptions, } from "./publishOptions";
export { CustomPublishOptions, GenericServerOptions, GithubOptions, KeygenOptions, BitbucketOptions, SnapStoreOptions, PublishConfiguration, S3Options, SpacesOptions, BaseS3Options, getS3LikeProviderBaseUrl, githubUrl, PublishProvider, AllPublishOptions, } from "./publishOptions";
export { UpdateInfo, UpdateFileInfo, WindowsUpdateInfo, BlockMapDataHolder, PackageFileInfo, ReleaseNoteInfo } from "./updateInfo";

@@ -5,0 +5,0 @@ export { parseDn } from "./rfc2253Parser";

/// <reference types="node" />
import { OutgoingHttpHeaders } from "http";
export declare type PublishProvider = "github" | "bintray" | "s3" | "spaces" | "generic" | "custom" | "snapStore" | "keygen" | "bitbucket";
export declare type AllPublishOptions = string | GithubOptions | S3Options | SpacesOptions | GenericServerOptions | BintrayOptions | CustomPublishOptions | KeygenOptions | SnapStoreOptions | BitbucketOptions;
export declare type PublishProvider = "github" | "s3" | "spaces" | "generic" | "custom" | "snapStore" | "keygen" | "bitbucket";
export declare type AllPublishOptions = string | GithubOptions | S3Options | SpacesOptions | GenericServerOptions | CustomPublishOptions | KeygenOptions | SnapStoreOptions | BitbucketOptions;
export interface PublishConfiguration {

@@ -89,2 +89,7 @@ /**

/**
* The channel.
* @default latest
*/
readonly channel?: string | null;
/**
* The type of release. By default `draft` release will be created.

@@ -300,38 +305,1 @@ *

export declare function getS3LikeProviderBaseUrl(configuration: PublishConfiguration): string;
/**
* [Bintray](https://bintray.com/) options. Requires an API key. An API key can be obtained from the user [profile](https://bintray.com/profile/edit) page ("Edit Your Profile" -> API Key).
* Define `BT_TOKEN` environment variable.
*/
export interface BintrayOptions extends PublishConfiguration {
/**
* The provider. Must be `bintray`.
*/
readonly provider: "bintray";
/**
* The Bintray package name.
*/
readonly package?: string | null;
/**
* The Bintray repository name.
* @default generic
*/
readonly repo?: string | null;
/**
* The owner.
*/
readonly owner?: string | null;
/**
* The Bintray component (Debian only).
*/
readonly component?: string | null;
/**
* The Bintray distribution (Debian only).
* @default stable
*/
readonly distribution?: string | null;
/**
* The Bintray user account. Used in cases where the owner is an organization.
*/
readonly user?: string | null;
readonly token?: string | null;
}
{
"name": "builder-util-runtime",
"version": "8.9.2",
"version": "9.0.0-alpha.0",
"main": "out/index.js",

@@ -28,3 +28,4 @@ "author": "Vladimir Krivosheev",

},
"types": "./out/index.d.ts"
}
"types": "./out/index.d.ts",
"readme": "# builder-util-runtime\n\nHTTP utilities. Used by [electron-builder](https://github.com/electron-userland/electron-builder)."
}

Sorry, the diff of this file is not supported yet

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