@poe-platform/safe-js 0.1.2 → 0.1.3

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 (66) hide show
  1. package/README.md +1 -1
  2. package/dist/compat/fs-core.d.ts +1 -0
  3. package/dist/compat/fs-core.js +1 -0
  4. package/dist/compat/fs-node.d.ts +1 -0
  5. package/dist/compat/fs-node.js +1 -0
  6. package/dist/compat/fs.d.ts +1 -0
  7. package/dist/compat/fs.js +1 -0
  8. package/dist/safe-js/chunks/{chunk-DC5B3GYM.js → chunk-4HHBSGDR.js} +12 -12
  9. package/dist/safe-js/chunks/{chunk-DC5B3GYM.js.map → chunk-4HHBSGDR.js.map} +1 -1
  10. package/dist/safe-js/cli.js +1 -3
  11. package/dist/safe-js/cli.js.map +1 -1
  12. package/dist/safe-js/index.js +1 -3
  13. package/dist/safe-js/index.js.map +1 -1
  14. package/dist/safe-js/modules/fs-config.d.ts +1 -1
  15. package/dist/safe-js/modules/fs.d.ts +1 -1
  16. package/package.json +15 -34
  17. package/dist/safe-fs/bridge/filesystem.d.ts +0 -88
  18. package/dist/safe-fs/bridge/index.d.ts +0 -6
  19. package/dist/safe-fs/bridge/types.d.ts +0 -75
  20. package/dist/safe-fs/config.d.ts +0 -15
  21. package/dist/safe-fs/config.node.d.ts +0 -2
  22. package/dist/safe-fs/contracts/errors.d.ts +0 -50
  23. package/dist/safe-fs/contracts/filesystem.d.ts +0 -96
  24. package/dist/safe-fs/contracts/index.d.ts +0 -4
  25. package/dist/safe-fs/contracts/io.d.ts +0 -8
  26. package/dist/safe-fs/contracts/path.d.ts +0 -8
  27. package/dist/safe-fs/contracts/portable-path.d.ts +0 -13
  28. package/dist/safe-fs/contracts/virtual-path.d.ts +0 -7
  29. package/dist/safe-fs/core.d.ts +0 -12
  30. package/dist/safe-fs/fs/memory/index.d.ts +0 -58
  31. package/dist/safe-fs/fs/mount/comparison.d.ts +0 -19
  32. package/dist/safe-fs/fs/mount/index.d.ts +0 -44
  33. package/dist/safe-fs/fs/overlay/index.d.ts +0 -73
  34. package/dist/safe-fs/fs/readonly/index.d.ts +0 -31
  35. package/dist/safe-fs/fs/real/index.d.ts +0 -76
  36. package/dist/safe-fs/fs/s3/filesystem.d.ts +0 -93
  37. package/dist/safe-fs/fs/s3/http/index.d.ts +0 -2
  38. package/dist/safe-fs/fs/s3/http/transport.d.ts +0 -3
  39. package/dist/safe-fs/fs/s3/http/types.d.ts +0 -30
  40. package/dist/safe-fs/fs/s3/index.d.ts +0 -6
  41. package/dist/safe-fs/fs/s3/mock.d.ts +0 -48
  42. package/dist/safe-fs/fs/s3/transport.d.ts +0 -103
  43. package/dist/safe-fs/fs/webdav/index.d.ts +0 -2
  44. package/dist/safe-fs/fs/webdav/webdav.d.ts +0 -101
  45. package/dist/safe-fs/index.d.ts +0 -14
  46. package/dist/safe-fs/node/filesystem.d.ts +0 -11
  47. package/dist/safe-fs/node/index.d.ts +0 -2
  48. package/dist/safe-fs/node-host.d.ts +0 -1
  49. package/dist/safe-fs/platform/browser.d.ts +0 -12
  50. package/dist/safe-fs/platform/node.d.ts +0 -13
  51. package/dist/safe-js/browser/chunks/chunk-QGN6DKT5.js +0 -4335
  52. package/dist/safe-js/browser/chunks/chunk-QGN6DKT5.js.map +0 -7
  53. package/dist/safe-js/browser/safe-fs-core.js +0 -67
  54. package/dist/safe-js/browser/safe-fs-core.js.map +0 -7
  55. package/dist/safe-js/browser/safe-fs.js +0 -67
  56. package/dist/safe-js/browser/safe-fs.js.map +0 -7
  57. package/dist/safe-js/chunks/chunk-2QRYPKQQ.js +0 -4315
  58. package/dist/safe-js/chunks/chunk-2QRYPKQQ.js.map +0 -7
  59. package/dist/safe-js/chunks/chunk-7M2SJPSZ.js +0 -2613
  60. package/dist/safe-js/chunks/chunk-7M2SJPSZ.js.map +0 -7
  61. package/dist/safe-js/safe-fs-core.js +0 -130
  62. package/dist/safe-js/safe-fs-core.js.map +0 -7
  63. package/dist/safe-js/safe-fs-node.js +0 -94
  64. package/dist/safe-js/safe-fs-node.js.map +0 -7
  65. package/dist/safe-js/safe-fs.js +0 -94
  66. package/dist/safe-js/safe-fs.js.map +0 -7
@@ -1,67 +0,0 @@
1
- import {
2
- ACCESS_MODES,
3
- FsError,
4
- MemoryFileSystem,
5
- MountFileSystem,
6
- OverlayFileSystem,
7
- ReadOnlyFileSystem,
8
- WebDavFileSystem,
9
- assertPathWithin,
10
- basename,
11
- collectBytes,
12
- compareEntries,
13
- createFsBridge,
14
- createMemoryFileSystem,
15
- createMountFileSystem,
16
- createOverlayFileSystem,
17
- createReadOnlyFileSystem,
18
- dirname,
19
- extname,
20
- isAbsolutePath,
21
- isErrnoCode,
22
- isFsError,
23
- isPathWithin,
24
- joinPath,
25
- normalizePath,
26
- posixPath,
27
- readBytes,
28
- relativePath,
29
- resolvePath,
30
- toByteSource,
31
- toFsError,
32
- validatePath
33
- } from "./chunks/chunk-QGN6DKT5.js";
34
- export {
35
- ACCESS_MODES,
36
- FsError,
37
- MemoryFileSystem,
38
- MountFileSystem,
39
- OverlayFileSystem,
40
- ReadOnlyFileSystem,
41
- WebDavFileSystem,
42
- assertPathWithin,
43
- basename,
44
- collectBytes,
45
- compareEntries,
46
- createFsBridge,
47
- createMemoryFileSystem,
48
- createMountFileSystem,
49
- createOverlayFileSystem,
50
- createReadOnlyFileSystem,
51
- dirname,
52
- extname,
53
- isAbsolutePath,
54
- isErrnoCode,
55
- isFsError,
56
- isPathWithin,
57
- joinPath,
58
- normalizePath,
59
- posixPath,
60
- readBytes,
61
- relativePath,
62
- resolvePath,
63
- toByteSource,
64
- toFsError,
65
- validatePath
66
- };
67
- //# sourceMappingURL=safe-fs-core.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": [],
4
- "sourcesContent": [],
5
- "mappings": "",
6
- "names": []
7
- }
@@ -1,67 +0,0 @@
1
- import {
2
- ACCESS_MODES,
3
- FsError,
4
- MemoryFileSystem,
5
- MountFileSystem,
6
- OverlayFileSystem,
7
- ReadOnlyFileSystem,
8
- WebDavFileSystem,
9
- assertPathWithin,
10
- basename,
11
- collectBytes,
12
- compareEntries,
13
- createFsBridge,
14
- createMemoryFileSystem,
15
- createMountFileSystem,
16
- createOverlayFileSystem,
17
- createReadOnlyFileSystem,
18
- dirname,
19
- extname,
20
- isAbsolutePath,
21
- isErrnoCode,
22
- isFsError,
23
- isPathWithin,
24
- joinPath,
25
- normalizePath,
26
- posixPath,
27
- readBytes,
28
- relativePath,
29
- resolvePath,
30
- toByteSource,
31
- toFsError,
32
- validatePath
33
- } from "./chunks/chunk-QGN6DKT5.js";
34
- export {
35
- ACCESS_MODES,
36
- FsError,
37
- MemoryFileSystem,
38
- MountFileSystem,
39
- OverlayFileSystem,
40
- ReadOnlyFileSystem,
41
- WebDavFileSystem,
42
- assertPathWithin,
43
- basename,
44
- collectBytes,
45
- compareEntries,
46
- createFsBridge,
47
- createMemoryFileSystem,
48
- createMountFileSystem,
49
- createOverlayFileSystem,
50
- createReadOnlyFileSystem,
51
- dirname,
52
- extname,
53
- isAbsolutePath,
54
- isErrnoCode,
55
- isFsError,
56
- isPathWithin,
57
- joinPath,
58
- normalizePath,
59
- posixPath,
60
- readBytes,
61
- relativePath,
62
- resolvePath,
63
- toByteSource,
64
- toFsError,
65
- validatePath
66
- };
67
- //# sourceMappingURL=safe-fs.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": [],
4
- "sourcesContent": [],
5
- "mappings": "",
6
- "names": []
7
- }