@stacks/storage 6.15.0 → 6.15.1-beta.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/umd/index.js.map +1 -1
- package/package.json +6 -6
- package/src/storage.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacks/storage",
|
|
3
|
-
"version": "6.15.0",
|
|
3
|
+
"version": "6.15.1-beta.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.15.0",
|
|
24
|
-
"@stacks/common": "^6.
|
|
25
|
-
"@stacks/encryption": "^6.15.0",
|
|
26
|
-
"@stacks/network": "^6.
|
|
23
|
+
"@stacks/auth": "^6.15.1-beta.0",
|
|
24
|
+
"@stacks/common": "^6.15.1-beta.0",
|
|
25
|
+
"@stacks/encryption": "^6.15.1-beta.0",
|
|
26
|
+
"@stacks/network": "^6.15.1-beta.0",
|
|
27
27
|
"base64-js": "^1.5.1",
|
|
28
28
|
"jsontokens": "^4.0.1"
|
|
29
29
|
},
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"bugs": {
|
|
56
56
|
"url": "https://github.com/blockstack/blockstack.js/issues"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "1d92cb89535c0e3301f077be3a12d57b7c957795"
|
|
59
59
|
}
|
package/src/storage.ts
CHANGED
|
@@ -443,7 +443,7 @@ export class Storage {
|
|
|
443
443
|
}
|
|
444
444
|
|
|
445
445
|
/**
|
|
446
|
-
* Stores the data provided in the app's data store to
|
|
446
|
+
* Stores the data provided in the app's data store to the file specified.
|
|
447
447
|
* @param {String} path - the path to store the data in
|
|
448
448
|
* @param {String|Uint8Array} content - the data to store in the file
|
|
449
449
|
* @param options a [[PutFileOptions]] object
|