@gen3/core 0.10.66 → 0.10.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -2376,7 +2376,7 @@ const fetchFencePresignedURL = async ({ guid, method = 'GET', onAbort = ()=>null
|
|
|
2376
2376
|
}
|
|
2377
2377
|
throw new HTTPError(response.status, errorMessage, errorData);
|
|
2378
2378
|
}
|
|
2379
|
-
return await response.json();
|
|
2379
|
+
return (await response.json())['url'];
|
|
2380
2380
|
} catch (error) {
|
|
2381
2381
|
if (error instanceof Error) {
|
|
2382
2382
|
if (error.name === 'AbortError') {
|