@hubspot/local-dev-lib
Advanced tools
Comparing version 0.1.0-experimental.1 to 0.1.0-experimental.2
@@ -9,4 +9,4 @@ /// <reference types="node" /> | ||
export declare function fetchRepoAsZip(zipUrl: string): HubSpotPromise<Buffer>; | ||
export declare function fetchRepoFile(repoPath: RepoPath, filePath: string, ref: string): HubSpotPromise<Buffer>; | ||
export declare function fetchRepoFile<T = Buffer>(repoPath: RepoPath, filePath: string, ref: string): HubSpotPromise<T>; | ||
export declare function fetchRepoFileByDownloadUrl(downloadUrl: string): HubSpotPromise<Buffer>; | ||
export declare function fetchRepoContents(repoPath: RepoPath, path: string, ref?: string): HubSpotPromise<Array<GithubRepoFile>>; |
/// <reference types="node" /> | ||
import { GithubReleaseData, GithubRepoFile, RepoPath, CloneGithubRepoOptions } from '../types/Github'; | ||
export declare function fetchFileFromRepository(repoPath: RepoPath, filePath: string, ref: string): Promise<Buffer>; | ||
export declare function fetchFileFromRepository<T = Buffer>(repoPath: RepoPath, filePath: string, ref: string): Promise<T>; | ||
export declare function fetchReleaseData(repoPath: RepoPath, tag?: string): Promise<GithubReleaseData>; | ||
@@ -5,0 +5,0 @@ export declare function cloneGithubRepo(repoPath: RepoPath, dest: string, options?: CloneGithubRepoOptions): Promise<boolean>; |
{ | ||
"name": "@hubspot/local-dev-lib", | ||
"version": "0.1.0-experimental.1", | ||
"version": "0.1.0-experimental.2", | ||
"description": "Provides library functionality for HubSpot local development tooling, including the HubSpot CLI", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -16,2 +16,3 @@ import { ValueOf } from './Utils'; | ||
id: string; | ||
visible: boolean; | ||
}; | ||
@@ -18,0 +19,0 @@ export type Build = { |
@@ -17,2 +17,3 @@ import { ValueOf } from './Utils'; | ||
id: string; | ||
visible: boolean; | ||
}; | ||
@@ -19,0 +20,0 @@ export type Deploy = { |
@@ -8,2 +8,3 @@ export type DeveloperTestAccount = { | ||
status: string; | ||
id: number; | ||
}; | ||
@@ -10,0 +11,0 @@ export type FetchDeveloperTestAccountsResponse = { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
399974
10069