npm package diff
Package: @forge/api
Versions: 5.1.0-next.6 - 5.1.0-next.7
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
@@ -5,17 +5,17 @@
declare type ExternalAuthRemote = string;
declare type FetchArgs = {
provider: AuthProvider;
remote: RemoteAPI;
+ type: 'fpp' | 'sql' | 'os';
};
declare type ExternalAuthFetchArgs = {
provider: ExternalAuthProvider;
remote: ExternalAuthRemote;
account: string;
};
-export declare function __fetchProduct(args: FetchArgs, useUndici?: boolean): 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;
export declare const addMagicAgent: (init?: RequestInit, agentOverride?: string) => RequestInit;
export declare function getNodeRuntimeAPI(): FetchAPI;