@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/esm/index.js
CHANGED
|
@@ -2356,7 +2356,7 @@ const fetchFencePresignedURL = async ({ guid, method = 'GET', onAbort = ()=>null
|
|
|
2356
2356
|
}
|
|
2357
2357
|
throw new HTTPError(response.status, errorMessage, errorData);
|
|
2358
2358
|
}
|
|
2359
|
-
return await response.json();
|
|
2359
|
+
return (await response.json())['url'];
|
|
2360
2360
|
} catch (error) {
|
|
2361
2361
|
if (error instanceof Error) {
|
|
2362
2362
|
if (error.name === 'AbortError') {
|