@helia/unixfs 2.0.1 → 3.0.0-3283a5c

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 (76) hide show
  1. package/README.md +1 -1
  2. package/dist/index.min.js +1 -1
  3. package/dist/src/commands/add.d.ts +6 -6
  4. package/dist/src/commands/add.d.ts.map +1 -1
  5. package/dist/src/commands/add.js.map +1 -1
  6. package/dist/src/commands/cat.d.ts +2 -2
  7. package/dist/src/commands/cat.d.ts.map +1 -1
  8. package/dist/src/commands/cat.js.map +1 -1
  9. package/dist/src/commands/chmod.d.ts +2 -2
  10. package/dist/src/commands/chmod.d.ts.map +1 -1
  11. package/dist/src/commands/chmod.js.map +1 -1
  12. package/dist/src/commands/cp.d.ts +2 -2
  13. package/dist/src/commands/cp.d.ts.map +1 -1
  14. package/dist/src/commands/cp.js.map +1 -1
  15. package/dist/src/commands/ls.d.ts +2 -2
  16. package/dist/src/commands/ls.d.ts.map +1 -1
  17. package/dist/src/commands/ls.js.map +1 -1
  18. package/dist/src/commands/mkdir.d.ts +2 -2
  19. package/dist/src/commands/mkdir.d.ts.map +1 -1
  20. package/dist/src/commands/mkdir.js.map +1 -1
  21. package/dist/src/commands/rm.d.ts +2 -2
  22. package/dist/src/commands/rm.d.ts.map +1 -1
  23. package/dist/src/commands/rm.js.map +1 -1
  24. package/dist/src/commands/stat.d.ts +2 -2
  25. package/dist/src/commands/stat.d.ts.map +1 -1
  26. package/dist/src/commands/stat.js.map +1 -1
  27. package/dist/src/commands/touch.d.ts +2 -2
  28. package/dist/src/commands/touch.d.ts.map +1 -1
  29. package/dist/src/commands/touch.js.map +1 -1
  30. package/dist/src/commands/utils/add-link.d.ts +2 -2
  31. package/dist/src/commands/utils/add-link.d.ts.map +1 -1
  32. package/dist/src/commands/utils/add-link.js.map +1 -1
  33. package/dist/src/commands/utils/cid-to-directory.d.ts +2 -2
  34. package/dist/src/commands/utils/cid-to-directory.d.ts.map +1 -1
  35. package/dist/src/commands/utils/cid-to-directory.js.map +1 -1
  36. package/dist/src/commands/utils/cid-to-pblink.d.ts +2 -2
  37. package/dist/src/commands/utils/cid-to-pblink.d.ts.map +1 -1
  38. package/dist/src/commands/utils/cid-to-pblink.js.map +1 -1
  39. package/dist/src/commands/utils/dir-sharded.d.ts +3 -3
  40. package/dist/src/commands/utils/dir-sharded.d.ts.map +1 -1
  41. package/dist/src/commands/utils/dir-sharded.js.map +1 -1
  42. package/dist/src/commands/utils/hamt-utils.d.ts +4 -4
  43. package/dist/src/commands/utils/hamt-utils.d.ts.map +1 -1
  44. package/dist/src/commands/utils/hamt-utils.js.map +1 -1
  45. package/dist/src/commands/utils/is-over-shard-threshold.d.ts +2 -2
  46. package/dist/src/commands/utils/is-over-shard-threshold.d.ts.map +1 -1
  47. package/dist/src/commands/utils/is-over-shard-threshold.js.map +1 -1
  48. package/dist/src/commands/utils/remove-link.d.ts +2 -2
  49. package/dist/src/commands/utils/remove-link.d.ts.map +1 -1
  50. package/dist/src/commands/utils/remove-link.js.map +1 -1
  51. package/dist/src/commands/utils/resolve.d.ts +3 -3
  52. package/dist/src/commands/utils/resolve.d.ts.map +1 -1
  53. package/dist/src/commands/utils/resolve.js.map +1 -1
  54. package/dist/src/index.d.ts +4 -3
  55. package/dist/src/index.d.ts.map +1 -1
  56. package/dist/src/index.js.map +1 -1
  57. package/package.json +17 -17
  58. package/src/commands/add.ts +6 -6
  59. package/src/commands/cat.ts +2 -2
  60. package/src/commands/chmod.ts +2 -2
  61. package/src/commands/cp.ts +2 -2
  62. package/src/commands/ls.ts +2 -2
  63. package/src/commands/mkdir.ts +2 -2
  64. package/src/commands/rm.ts +2 -2
  65. package/src/commands/stat.ts +3 -3
  66. package/src/commands/touch.ts +2 -2
  67. package/src/commands/utils/add-link.ts +5 -5
  68. package/src/commands/utils/cid-to-directory.ts +2 -2
  69. package/src/commands/utils/cid-to-pblink.ts +2 -2
  70. package/src/commands/utils/dir-sharded.ts +4 -4
  71. package/src/commands/utils/hamt-utils.ts +4 -4
  72. package/src/commands/utils/is-over-shard-threshold.ts +3 -3
  73. package/src/commands/utils/remove-link.ts +5 -5
  74. package/src/commands/utils/resolve.ts +3 -3
  75. package/src/index.ts +4 -3
  76. package/dist/typedoc-urls.json +0 -54
package/README.md CHANGED
@@ -17,7 +17,7 @@
17
17
 
18
18
  `@helia/unixfs` is an implementation of a filesystem compatible with Helia.
19
19
 
20
- See the interface for all available operations.
20
+ See the [API docs](https://ipfs.github.io/helia/modules/_helia_unixfs.html) for all available operations.
21
21
 
22
22
  ## Example - Creating files and directories
23
23