@stacks/storage 6.7.1-pr.cc0268d.0 → 6.7.2-pr.1e10e1b.0
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/esm/hub.js.map +1 -1
- package/dist/hub.js.map +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/index.js.map +1 -1
- package/package.json +6 -9
- package/src/hub.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacks/storage",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.2-pr.1e10e1b.0",
|
|
4
4
|
"description": "Stacks storage library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Hiro Systems PBC (https://hiro.so)",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"typecheck:watch": "npm run typecheck -- --watch"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@stacks/auth": "^6.7.
|
|
24
|
-
"@stacks/common": "^6.7.
|
|
25
|
-
"@stacks/encryption": "^6.7.
|
|
26
|
-
"@stacks/network": "^6.7.
|
|
23
|
+
"@stacks/auth": "^6.7.2-pr.1e10e1b.0",
|
|
24
|
+
"@stacks/common": "^6.7.2-pr.1e10e1b.0",
|
|
25
|
+
"@stacks/encryption": "^6.7.2-pr.1e10e1b.0",
|
|
26
|
+
"@stacks/network": "^6.7.2-pr.1e10e1b.0",
|
|
27
27
|
"base64-js": "^1.5.1",
|
|
28
28
|
"jsontokens": "^4.0.1"
|
|
29
29
|
},
|
|
@@ -55,8 +55,5 @@
|
|
|
55
55
|
"bugs": {
|
|
56
56
|
"url": "https://github.com/blockstack/blockstack.js/issues"
|
|
57
57
|
},
|
|
58
|
-
"
|
|
59
|
-
"entryPoint": "./src/index.ts"
|
|
60
|
-
},
|
|
61
|
-
"gitHead": "cc0268d57426aa7d9da10cf7f493704f4a6fb885"
|
|
58
|
+
"gitHead": "1e10e1b7282b9ad45f624881728cd9df1b5bfb00"
|
|
62
59
|
}
|
package/src/hub.ts
CHANGED
|
@@ -248,7 +248,7 @@ export async function getBucketUrl(
|
|
|
248
248
|
|
|
249
249
|
async function getGaiaErrorResponse(response: Response): Promise<GaiaHubErrorResponse> {
|
|
250
250
|
let responseMsg = '';
|
|
251
|
-
let responseJson: any
|
|
251
|
+
let responseJson: any;
|
|
252
252
|
try {
|
|
253
253
|
responseMsg = await response.text();
|
|
254
254
|
try {
|