npm package diff
Package: @forge/api
Versions: 3.9.2-next.0 - 3.9.2-next.0-experimental-f20602a
File: package/out/api/fetch.d.ts
Index: package/out/api/fetch.d.ts
===================================================================
--- package/out/api/fetch.d.ts
+++ package/out/api/fetch.d.ts
@@ -1,8 +1,8 @@
import { RequestInit, Response } from 'node-fetch';
import { FetchAPI, FetchMethod } from '..';
export declare type AuthProvider = 'app' | 'user' | 'none';
-declare type RemoteAPI = 'jira' | 'confluence' | 'stargate' | 'bitbucket';
+declare type RemoteAPI = 'jira' | 'confluence' | 'stargate' | 'bitbucket' | 'sql';
declare type ExternalAuthProvider = string;
declare type ExternalAuthRemote = string;
declare type FetchArgs = {
provider: AuthProvider;
@@ -12,9 +12,9 @@
provider: ExternalAuthProvider;
remote: ExternalAuthRemote;
account: string;
};
-export declare function fetchProduct(args: FetchArgs): FetchMethod;
+export declare function __fetchProduct(args: FetchArgs): FetchMethod;
export declare function fetchRemote(args: ExternalAuthFetchArgs): FetchMethod;
export declare function createRemoteUrlWithPath(baseUrl: string, path: string): URL;
export declare const getForgeProxyError: (response: Response) => string | null;
export declare const handleProxyResponseErrors: (response: Response) => void;