@xandeum/web3.js 0.4.0 → 0.5.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.
Files changed (53) hide show
  1. package/dist/bigbang.d.ts +1 -2
  2. package/dist/bigbang.js +1 -7
  3. package/dist/index.d.ts +1 -0
  4. package/dist/index.js +1 -0
  5. package/docs/html/assets/navigation.js +1 -1
  6. package/docs/html/assets/search.js +1 -1
  7. package/docs/html/functions/armageddon.html +2 -2
  8. package/docs/html/functions/assignCoowner.html +8 -0
  9. package/docs/html/functions/bigbang.html +3 -4
  10. package/docs/html/functions/copyPath.html +2 -2
  11. package/docs/html/functions/createDirectory.html +2 -2
  12. package/docs/html/functions/createFile.html +2 -2
  13. package/docs/html/functions/exists.html +2 -2
  14. package/docs/html/functions/getMetadata.html +2 -2
  15. package/docs/html/functions/getXandeumResult.html +2 -2
  16. package/docs/html/functions/listDirectoryEntry.html +2 -2
  17. package/docs/html/functions/move.html +2 -2
  18. package/docs/html/functions/peek.html +2 -2
  19. package/docs/html/functions/poke.html +2 -2
  20. package/docs/html/functions/removeDirectory.html +2 -2
  21. package/docs/html/functions/removeFile.html +2 -2
  22. package/docs/html/functions/renamePath.html +2 -2
  23. package/docs/html/functions/subscribeResult.html +2 -2
  24. package/docs/html/functions/unsubscribeResult.html +2 -2
  25. package/docs/html/hierarchy.html +1 -1
  26. package/docs/html/index.html +2 -2
  27. package/docs/html/modules.html +1 -1
  28. package/docs/markdown/README.md +1 -1
  29. package/docs/markdown/functions/armageddon.md +2 -2
  30. package/docs/markdown/functions/assignCoowner.md +46 -0
  31. package/docs/markdown/functions/bigbang.md +2 -2
  32. package/docs/markdown/functions/copyPath.md +2 -2
  33. package/docs/markdown/functions/createDirectory.md +2 -2
  34. package/docs/markdown/functions/createFile.md +2 -2
  35. package/docs/markdown/functions/exists.md +2 -2
  36. package/docs/markdown/functions/getMetadata.md +2 -2
  37. package/docs/markdown/functions/getXandeumResult.md +2 -2
  38. package/docs/markdown/functions/listDirectoryEntry.md +2 -2
  39. package/docs/markdown/functions/move.md +2 -2
  40. package/docs/markdown/functions/peek.md +2 -2
  41. package/docs/markdown/functions/poke.md +2 -2
  42. package/docs/markdown/functions/removeDirectory.md +2 -2
  43. package/docs/markdown/functions/removeFile.md +2 -2
  44. package/docs/markdown/functions/renamePath.md +2 -2
  45. package/docs/markdown/functions/subscribeResult.md +2 -2
  46. package/docs/markdown/functions/unsubscribeResult.md +2 -2
  47. package/docs/markdown/globals.md +3 -2
  48. package/package.json +1 -1
  49. package/src/assignCoowner.ts +42 -0
  50. package/src/bigbang.ts +1 -4
  51. package/src/index.ts +1 -0
  52. package/typedoc.json +1 -1
  53. package/docs/markdown/summary.md +0 -44
package/src/index.ts CHANGED
@@ -11,6 +11,7 @@ export * from "./removeDirectory";
11
11
  export * from "./copyPath";
12
12
  export * from "./move";
13
13
  export * from "./getXandeumResult";
14
+ export * from "./assignCoowner";
14
15
  export {exists } from "./exists";
15
16
  export {listDirectoryEntry} from "./listDirectoryEntery";
16
17
  export {getMetadata} from "./getMetadata";
package/typedoc.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "excludeInternal": true,
16
16
  "excludeNotDocumented": false,
17
17
  "gitRemote": "origin",
18
- "gitRevision": "master",
18
+ "gitRevision": "ingolstadt",
19
19
  "sourceLinkTemplate": "https://github.com/Xandeum/xandeum-web3.js/blob/{gitRevision}/{path}#L{line}",
20
20
  "visibilityFilters": {
21
21
  "protected": false,
@@ -1,44 +0,0 @@
1
- # Summary
2
-
3
- ## Getting Started
4
-
5
- * [Introduction](README.md)
6
- * [Globals](globals.md)
7
-
8
- ## Core Functions
9
-
10
- ### File System Management
11
-
12
- * [bigbang](functions/bigbang.md)
13
- * [armageddon](functions/armageddon.md)
14
-
15
- ### File Operations
16
-
17
- * [createFile](functions/createFile.md)
18
- * [removeFile](functions/removeFile.md)
19
- * [copyPath](functions/copyPath.md)
20
- * [renamePath](functions/renamePath.md)
21
- * [move](functions/move.md)
22
-
23
- ### Directory Operations
24
-
25
- * [createDirectory](functions/createDirectory.md)
26
- * [removeDirectory](functions/removeDirectory.md)
27
- * [listDirectoryEntry](functions/listDirectoryEntry.md)
28
-
29
- ### File Content Operations
30
-
31
- * [peek](functions/peek.md)
32
- * [poke](functions/poke.md)
33
-
34
- ### Metadata & Utilities
35
-
36
- * [exists](functions/exists.md)
37
- * [getMetadata](functions/getMetadata.md)
38
- * [getXandeumResult](functions/getXandeumResult.md)
39
-
40
- ### WebSocket Functions
41
-
42
- * [subscribeResult](functions/subscribeResult.md)
43
- * [unsubscribeResult](functions/unsubscribeResult.md)
44
-