@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.
- package/dist/bigbang.d.ts +1 -2
- package/dist/bigbang.js +1 -7
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/docs/html/assets/navigation.js +1 -1
- package/docs/html/assets/search.js +1 -1
- package/docs/html/functions/armageddon.html +2 -2
- package/docs/html/functions/assignCoowner.html +8 -0
- package/docs/html/functions/bigbang.html +3 -4
- package/docs/html/functions/copyPath.html +2 -2
- package/docs/html/functions/createDirectory.html +2 -2
- package/docs/html/functions/createFile.html +2 -2
- package/docs/html/functions/exists.html +2 -2
- package/docs/html/functions/getMetadata.html +2 -2
- package/docs/html/functions/getXandeumResult.html +2 -2
- package/docs/html/functions/listDirectoryEntry.html +2 -2
- package/docs/html/functions/move.html +2 -2
- package/docs/html/functions/peek.html +2 -2
- package/docs/html/functions/poke.html +2 -2
- package/docs/html/functions/removeDirectory.html +2 -2
- package/docs/html/functions/removeFile.html +2 -2
- package/docs/html/functions/renamePath.html +2 -2
- package/docs/html/functions/subscribeResult.html +2 -2
- package/docs/html/functions/unsubscribeResult.html +2 -2
- package/docs/html/hierarchy.html +1 -1
- package/docs/html/index.html +2 -2
- package/docs/html/modules.html +1 -1
- package/docs/markdown/README.md +1 -1
- package/docs/markdown/functions/armageddon.md +2 -2
- package/docs/markdown/functions/assignCoowner.md +46 -0
- package/docs/markdown/functions/bigbang.md +2 -2
- package/docs/markdown/functions/copyPath.md +2 -2
- package/docs/markdown/functions/createDirectory.md +2 -2
- package/docs/markdown/functions/createFile.md +2 -2
- package/docs/markdown/functions/exists.md +2 -2
- package/docs/markdown/functions/getMetadata.md +2 -2
- package/docs/markdown/functions/getXandeumResult.md +2 -2
- package/docs/markdown/functions/listDirectoryEntry.md +2 -2
- package/docs/markdown/functions/move.md +2 -2
- package/docs/markdown/functions/peek.md +2 -2
- package/docs/markdown/functions/poke.md +2 -2
- package/docs/markdown/functions/removeDirectory.md +2 -2
- package/docs/markdown/functions/removeFile.md +2 -2
- package/docs/markdown/functions/renamePath.md +2 -2
- package/docs/markdown/functions/subscribeResult.md +2 -2
- package/docs/markdown/functions/unsubscribeResult.md +2 -2
- package/docs/markdown/globals.md +3 -2
- package/package.json +1 -1
- package/src/assignCoowner.ts +42 -0
- package/src/bigbang.ts +1 -4
- package/src/index.ts +1 -0
- package/typedoc.json +1 -1
- 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": "
|
|
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,
|
package/docs/markdown/summary.md
DELETED
|
@@ -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
|
-
|