sliftutils 1.7.66 → 1.7.68

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 (70) hide show
  1. package/CLAUDE.md +1 -0
  2. package/dist/test.ts.cache +187 -36
  3. package/dist/treeSummary.ts.cache +359 -0
  4. package/index.d.ts +67 -18
  5. package/misc/dist/environment.ts.cache +2 -2
  6. package/misc/dist/getSecret.ts.cache +2 -2
  7. package/misc/dist/strings.ts.cache +2 -2
  8. package/misc/dist/zip.ts.cache +2 -2
  9. package/misc/https/dist/certs.ts.cache +2 -2
  10. package/misc/https/dist/persistentLocalStorage.ts.cache +2 -2
  11. package/package.json +1 -1
  12. package/render-utils/dist/observer.tsx.cache +2 -2
  13. package/storage/ArchivesDisk.d.ts +2 -2
  14. package/storage/ArchivesDisk.ts +3 -2
  15. package/storage/BulkDatabase2/dist/BulkDatabaseBase.ts.cache +2 -2
  16. package/storage/BulkDatabase2/dist/BulkDatabaseFormat.ts.cache +2 -2
  17. package/storage/BulkDatabase2/dist/BulkDatabaseMerge.ts.cache +2 -2
  18. package/storage/BulkDatabase2/dist/BulkDatabaseReader.ts.cache +2 -2
  19. package/storage/BulkDatabase2/dist/LoadedIndex.ts.cache +2 -2
  20. package/storage/BulkDatabase2/dist/WriteOverlay.ts.cache +2 -2
  21. package/storage/BulkDatabase2/dist/blockCache.ts.cache +2 -2
  22. package/storage/BulkDatabase2/dist/mergeLock.ts.cache +2 -2
  23. package/storage/BulkDatabase2/dist/mergeMarkers.ts.cache +2 -2
  24. package/storage/BulkDatabase2/dist/streamLog.ts.cache +2 -2
  25. package/storage/BulkDatabase2/dist/syncClient.ts.cache +2 -2
  26. package/storage/IArchives.d.ts +14 -2
  27. package/storage/IArchives.ts +15 -2
  28. package/storage/backblaze.d.ts +2 -2
  29. package/storage/backblaze.ts +5 -4
  30. package/storage/dist/ArchivesDisk.ts.cache +5 -3
  31. package/storage/dist/FileFolderAPI.tsx.cache +2 -2
  32. package/storage/dist/IArchives.ts.cache +2 -2
  33. package/storage/dist/IndexedDBFileFolderAPI.ts.cache +2 -2
  34. package/storage/dist/JSONStorage.ts.cache +2 -2
  35. package/storage/dist/PendingManager.tsx.cache +2 -2
  36. package/storage/dist/TransactionStorage.ts.cache +2 -2
  37. package/storage/dist/backblaze.ts.cache +6 -5
  38. package/storage/dist/fileSystemPointer.ts.cache +2 -2
  39. package/storage/dist/remoteFileStorage.ts.cache +2 -2
  40. package/storage/remoteStorage/ArchivesRemote.d.ts +2 -2
  41. package/storage/remoteStorage/ArchivesRemote.ts +3 -3
  42. package/storage/remoteStorage/ArchivesUrl.d.ts +2 -2
  43. package/storage/remoteStorage/ArchivesUrl.ts +8 -6
  44. package/storage/remoteStorage/accessStats.d.ts +25 -0
  45. package/storage/remoteStorage/accessStats.ts +86 -0
  46. package/storage/remoteStorage/blobStore.d.ts +3 -3
  47. package/storage/remoteStorage/blobStore.ts +9 -5
  48. package/storage/remoteStorage/createArchives.d.ts +2 -2
  49. package/storage/remoteStorage/createArchives.ts +3 -3
  50. package/storage/remoteStorage/dist/ArchivesRemote.ts.cache +4 -4
  51. package/storage/remoteStorage/dist/ArchivesUrl.ts.cache +11 -7
  52. package/storage/remoteStorage/dist/blobStore.ts.cache +11 -5
  53. package/storage/remoteStorage/dist/cliArgs.ts.cache +2 -2
  54. package/storage/remoteStorage/dist/createArchives.ts.cache +4 -4
  55. package/storage/remoteStorage/dist/deployTakeover.ts.cache +2 -2
  56. package/storage/remoteStorage/dist/intermediateSources.ts.cache +2 -2
  57. package/storage/remoteStorage/dist/remoteConfig.ts.cache +2 -2
  58. package/storage/remoteStorage/dist/sourceWrapper.ts.cache +2 -2
  59. package/storage/remoteStorage/dist/sourcesList.ts.cache +2 -2
  60. package/storage/remoteStorage/dist/storageClientController.ts.cache +2 -2
  61. package/storage/remoteStorage/dist/storageController.ts.cache +52 -15
  62. package/storage/remoteStorage/dist/storageServerState.ts.cache +26 -75
  63. package/storage/remoteStorage/storageController.d.ts +9 -1
  64. package/storage/remoteStorage/storageController.ts +49 -11
  65. package/storage/remoteStorage/storageServerState.d.ts +2 -2
  66. package/storage/remoteStorage/storageServerState.ts +24 -71
  67. package/test-files-cache.json +1 -0
  68. package/test.ts +127 -10
  69. package/treeSummary.d.ts +31 -0
  70. package/treeSummary.ts +331 -54
@@ -1,4 +1,4 @@
1
- "use strict"; var console = (function shimConsole() { let baseConsole = globalThis.console; if (typeof window !== "undefined") return baseConsole; let name = __filename.replaceAll("\\", "/").split("/").pop(); let dirName = __dirname.replaceAll("\\", "/").split("/").pop(); let context = { __FILE__: __filename, __DIR__: __dirname, __NAME__: name, __DIRNAME__: dirName }; let newConsole = { ...baseConsole }; for (let shim of ["log", "info", "warn", "error"]) { newConsole[shim] = (...args) => { args.push(context); baseConsole[shim](...args); }; } newConsole.__context = context; return newConsole; })(); "use strict";
1
+ "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true , configurable: true});
3
3
  //exports.getArg = void 0;
4
4
  function getArg(name) {
@@ -13,4 +13,4 @@ function getArg(name) {
13
13
  }
14
14
  exports.getArg = getArg;
15
15
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpQXJncy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImNsaUFyZ3MudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsU0FBZ0IsTUFBTSxDQUFDLElBQVk7SUFDL0IsSUFBSSxLQUFLLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsS0FBSyxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQzlDLElBQUksS0FBSyxHQUFHLENBQUM7UUFBRSxPQUFPLFNBQVMsQ0FBQztJQUNoQyxJQUFJLEtBQUssR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQztJQUNwQyxJQUFJLENBQUMsS0FBSyxJQUFJLEtBQUssQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQztRQUNuQyxNQUFNLElBQUksS0FBSyxDQUFDLHVCQUF1QixJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ25ELENBQUM7SUFDRCxPQUFPLEtBQUssQ0FBQztBQUNqQixDQUFDO0FBUkQsd0JBUUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZnVuY3Rpb24gZ2V0QXJnKG5hbWU6IHN0cmluZyk6IHN0cmluZyB8IHVuZGVmaW5lZCB7XG4gICAgbGV0IGluZGV4ID0gcHJvY2Vzcy5hcmd2LmluZGV4T2YoYC0tJHtuYW1lfWApO1xuICAgIGlmIChpbmRleCA8IDApIHJldHVybiB1bmRlZmluZWQ7XG4gICAgbGV0IHZhbHVlID0gcHJvY2Vzcy5hcmd2W2luZGV4ICsgMV07XG4gICAgaWYgKCF2YWx1ZSB8fCB2YWx1ZS5zdGFydHNXaXRoKFwiLS1cIikpIHtcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBNaXNzaW5nIHZhbHVlIGZvciAtLSR7bmFtZX1gKTtcbiAgICB9XG4gICAgcmV0dXJuIHZhbHVlO1xufVxuIl19
16
- /* _JS_SOURCE_HASH = "de33da9cd966df87811f252b5da4ee2bbdddfeeda654332e2df219470b1c54b5"; */
16
+ /* _JS_SOURCE_HASH = "2fb99e82c6bd77c34cdd980906b23b0c3f643bfc07d3973fdb4bc8f917781717"; */