npm package diff

Package: @forge/api

Versions: 5.1.0-next.5-experimental-edac07a - 5.1.0-next.6

File: package/out/api/polyfill-response.js

Index: package/out/api/polyfill-response.js
===================================================================
--- package/out/api/polyfill-response.js
+++ package/out/api/polyfill-response.js
@@ -1,12 +1,12 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
 exports.transformResponse = void 0;
-const headers_utils_1 = require("headers-utils");
+const node_fetch_1 = require("node-fetch");
 const transformResponse = (fetchApi) => async (url, init) => {
     const response = await fetchApi(url, init);
     return {
         ...response,
-        headers: new headers_utils_1.Headers(response.headers)
+        headers: new node_fetch_1.Headers(response.headers)
     };
 };
 exports.transformResponse = transformResponse;