conductor-oss 0.6.3 → 0.7.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 (3563) hide show
  1. package/README.md +156 -248
  2. package/dist/commands/attach.d.ts.map +1 -1
  3. package/dist/commands/attach.js +31 -15
  4. package/dist/commands/attach.js.map +1 -1
  5. package/dist/commands/dashboard.d.ts.map +1 -1
  6. package/dist/commands/dashboard.js +117 -18
  7. package/dist/commands/dashboard.js.map +1 -1
  8. package/dist/commands/feedback.d.ts.map +1 -1
  9. package/dist/commands/feedback.js +4 -5
  10. package/dist/commands/feedback.js.map +1 -1
  11. package/dist/commands/start.js +11 -14
  12. package/dist/commands/start.js.map +1 -1
  13. package/dist/rust-cli.d.ts.map +1 -1
  14. package/dist/rust-cli.js +48 -0
  15. package/dist/rust-cli.js.map +1 -1
  16. package/node_modules/@conductor-oss/core/dist/index.d.ts +1 -26
  17. package/node_modules/@conductor-oss/core/dist/index.d.ts.map +1 -1
  18. package/node_modules/@conductor-oss/core/dist/index.js +2 -31
  19. package/node_modules/@conductor-oss/core/dist/index.js.map +1 -1
  20. package/package.json +7 -44
  21. package/web/.next/standalone/packages/web/.next/BUILD_ID +1 -1
  22. package/web/.next/standalone/packages/web/.next/build-manifest.json +2 -2
  23. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/CLI.js +338 -0
  24. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/Cache.js +208 -0
  25. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/DefaultProvider.js +35 -0
  26. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/DefaultProvider.spec.js +75 -0
  27. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/browser-data.js +235 -0
  28. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chrome-headless-shell.js +47 -0
  29. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chrome.js +296 -0
  30. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chromedriver.js +43 -0
  31. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chromium.js +63 -0
  32. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/firefox.js +374 -0
  33. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/types.js +63 -0
  34. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/debug.js +8 -0
  35. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/detectPlatform.js +47 -0
  36. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/fileUtil.js +156 -0
  37. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/httpUtil.js +132 -0
  38. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/install.js +351 -0
  39. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/launch.js +426 -0
  40. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/main-cli.js +9 -0
  41. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/main.js +15 -0
  42. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/provider.js +13 -0
  43. package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/package.json +125 -0
  44. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/package.json +1 -0
  45. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Browser.js +204 -0
  46. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/BrowserContext.js +182 -0
  47. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/CDPSession.js +68 -0
  48. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/DeviceRequestPrompt.js +34 -0
  49. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Dialog.js +90 -0
  50. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/ElementHandle.js +1406 -0
  51. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/ElementHandleSymbol.js +10 -0
  52. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Frame.js +904 -0
  53. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/HTTPRequest.js +461 -0
  54. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/HTTPResponse.js +56 -0
  55. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Input.js +211 -0
  56. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/JSHandle.js +227 -0
  57. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Page.js +1511 -0
  58. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Realm.js +44 -0
  59. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Target.js +49 -0
  60. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/WebWorker.js +106 -0
  61. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/api.js +22 -0
  62. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/locators/locators.js +769 -0
  63. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/bidi/BrowserConnector.js +83 -0
  64. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Accessibility.js +591 -0
  65. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Binding.js +162 -0
  66. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BluetoothEmulation.js +26 -0
  67. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Browser.js +321 -0
  68. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BrowserConnector.js +26 -0
  69. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BrowserContext.js +192 -0
  70. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/CdpPreloadScript.js +39 -0
  71. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/CdpSession.js +129 -0
  72. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Connection.js +244 -0
  73. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Coverage.js +372 -0
  74. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +151 -0
  75. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Dialog.js +23 -0
  76. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ElementHandle.js +206 -0
  77. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/EmulationManager.js +458 -0
  78. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ExecutionContext.js +457 -0
  79. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ExtensionTransport.js +175 -0
  80. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Frame.js +358 -0
  81. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameManager.js +455 -0
  82. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameManagerEvents.js +24 -0
  83. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameTree.js +91 -0
  84. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/HTTPRequest.js +195 -0
  85. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/HTTPResponse.js +126 -0
  86. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Input.js +499 -0
  87. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/IsolatedWorld.js +157 -0
  88. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/IsolatedWorlds.js +20 -0
  89. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/JSHandle.js +101 -0
  90. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/LifecycleWatcher.js +174 -0
  91. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/NetworkEventManager.js +162 -0
  92. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/NetworkManager.js +601 -0
  93. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Page.js +1006 -0
  94. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js +69 -0
  95. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Target.js +243 -0
  96. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/TargetManageEvents.js +7 -0
  97. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/TargetManager.js +320 -0
  98. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Tracing.js +110 -0
  99. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/WebWorker.js +73 -0
  100. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/cdp.js +43 -0
  101. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/utils.js +216 -0
  102. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/AriaQueryHandler.js +54 -0
  103. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/BrowserConnector.js +129 -0
  104. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +39 -0
  105. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CSSQueryHandler.js +18 -0
  106. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CallbackRegistry.js +133 -0
  107. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/ConsoleMessage.js +78 -0
  108. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CustomQueryHandler.js +114 -0
  109. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Debug.js +109 -0
  110. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Device.js +1604 -0
  111. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Errors.js +94 -0
  112. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/EventEmitter.js +128 -0
  113. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/FileChooser.js +75 -0
  114. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/GetQueryHandler.js +70 -0
  115. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/HandleIterator.js +142 -0
  116. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/LazyArg.js +23 -0
  117. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/NetworkManagerEvents.js +21 -0
  118. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PDFOptions.js +58 -0
  119. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PQueryHandler.js +18 -0
  120. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PSelectorParser.js +100 -0
  121. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PierceQueryHandler.js +18 -0
  122. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Puppeteer.js +98 -0
  123. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/QueryHandler.js +225 -0
  124. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/ScriptInjector.js +51 -0
  125. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/SecurityDetails.js +69 -0
  126. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TaskQueue.js +24 -0
  127. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TextQueryHandler.js +15 -0
  128. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TimeoutSettings.js +39 -0
  129. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/USKeyboardLayout.js +394 -0
  130. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/WaitTask.js +197 -0
  131. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/XPathQueryHandler.js +21 -0
  132. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/common.js +35 -0
  133. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/util.js +375 -0
  134. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/environment.js +24 -0
  135. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/generated/injected.js +9 -0
  136. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/index-browser.js +11 -0
  137. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/index.js +8 -0
  138. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/BrowserLauncher.js +312 -0
  139. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/ChromeLauncher.js +258 -0
  140. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/FirefoxLauncher.js +166 -0
  141. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/LaunchOptions.js +22 -0
  142. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/NodeWebSocketTransport.js +55 -0
  143. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/PipeTransport.js +72 -0
  144. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/PuppeteerNode.js +281 -0
  145. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/ScreenRecorder.js +279 -0
  146. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/node.js +12 -0
  147. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/util/fs.js +24 -0
  148. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/puppeteer-core.js +41 -0
  149. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/revisions.js +14 -0
  150. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/AsyncIterableUtil.js +29 -0
  151. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Deferred.js +105 -0
  152. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/ErrorLike.js +41 -0
  153. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Function.js +70 -0
  154. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Mutex.js +46 -0
  155. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/assert.js +18 -0
  156. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/decorators.js +232 -0
  157. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/disposable.js +342 -0
  158. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/encoding.js +63 -0
  159. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/incremental-id-generator.js +18 -0
  160. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/util.js +13 -0
  161. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/version.js +10 -0
  162. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/mitt/mitt.js +44 -0
  163. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/parsel-js/parsel-js.js +196 -0
  164. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/rxjs/rxjs.js +2887 -0
  165. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/package.json +169 -0
  166. package/web/.next/standalone/packages/web/.next/prerender-manifest.json +3 -3
  167. package/web/.next/standalone/packages/web/.next/required-server-files.json +3 -17
  168. package/web/.next/standalone/packages/web/.next/server/app/_global-error.html +2 -2
  169. package/web/.next/standalone/packages/web/.next/server/app/_global-error.rsc +1 -1
  170. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  171. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  172. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  173. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  174. package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  175. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page/server-reference-manifest.json +7 -7
  176. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  177. package/web/.next/standalone/packages/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  178. package/web/.next/standalone/packages/web/.next/server/app/_not-found.html +1 -1
  179. package/web/.next/standalone/packages/web/.next/server/app/_not-found.rsc +4 -4
  180. package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_full.segment.rsc +4 -4
  181. package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  182. package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_index.segment.rsc +4 -4
  183. package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  184. package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  185. package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
  186. package/web/.next/standalone/packages/web/.next/server/app/api/access/route.js +1 -1
  187. package/web/.next/standalone/packages/web/.next/server/app/api/access/route.js.nft.json +1 -1
  188. package/web/.next/standalone/packages/web/.next/server/app/api/agents/route.js +1 -1
  189. package/web/.next/standalone/packages/web/.next/server/app/api/agents/route.js.nft.json +1 -1
  190. package/web/.next/standalone/packages/web/.next/server/app/api/app-update/route.js +1 -1
  191. package/web/.next/standalone/packages/web/.next/server/app/api/app-update/route.js.nft.json +1 -1
  192. package/web/.next/standalone/packages/web/.next/server/app/api/attachments/route.js +1 -1
  193. package/web/.next/standalone/packages/web/.next/server/app/api/attachments/route.js.nft.json +1 -1
  194. package/web/.next/standalone/packages/web/.next/server/app/api/auth/session/route.js +1 -1
  195. package/web/.next/standalone/packages/web/.next/server/app/api/auth/session/route.js.nft.json +1 -1
  196. package/web/.next/standalone/packages/web/.next/server/app/api/boards/comments/route.js +1 -1
  197. package/web/.next/standalone/packages/web/.next/server/app/api/boards/comments/route.js.nft.json +1 -1
  198. package/web/.next/standalone/packages/web/.next/server/app/api/boards/route.js +1 -1
  199. package/web/.next/standalone/packages/web/.next/server/app/api/boards/route.js.nft.json +1 -1
  200. package/web/.next/standalone/packages/web/.next/server/app/api/config/route.js +1 -1
  201. package/web/.next/standalone/packages/web/.next/server/app/api/config/route.js.nft.json +1 -1
  202. package/web/.next/standalone/packages/web/.next/server/app/api/context-files/open/route.js +1 -1
  203. package/web/.next/standalone/packages/web/.next/server/app/api/context-files/open/route.js.nft.json +1 -1
  204. package/web/.next/standalone/packages/web/.next/server/app/api/context-files/route.js +1 -1
  205. package/web/.next/standalone/packages/web/.next/server/app/api/context-files/route.js.nft.json +1 -1
  206. package/web/.next/standalone/packages/web/.next/server/app/api/events/route.js +1 -1
  207. package/web/.next/standalone/packages/web/.next/server/app/api/events/route.js.nft.json +1 -1
  208. package/web/.next/standalone/packages/web/.next/server/app/api/executor/health/route.js +1 -1
  209. package/web/.next/standalone/packages/web/.next/server/app/api/executor/health/route.js.nft.json +1 -1
  210. package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/directory/route.js +1 -1
  211. package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/directory/route.js.nft.json +1 -1
  212. package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/pick-directory/route.js +1 -1
  213. package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/pick-directory/route.js.nft.json +1 -1
  214. package/web/.next/standalone/packages/web/.next/server/app/api/github/repos/route.js +1 -1
  215. package/web/.next/standalone/packages/web/.next/server/app/api/github/repos/route.js.nft.json +1 -1
  216. package/web/.next/standalone/packages/web/.next/server/app/api/github/webhook/route.js +1 -1
  217. package/web/.next/standalone/packages/web/.next/server/app/api/github/webhook/route.js.nft.json +1 -1
  218. package/web/.next/standalone/packages/web/.next/server/app/api/health/boards/route.js +1 -1
  219. package/web/.next/standalone/packages/web/.next/server/app/api/health/boards/route.js.nft.json +1 -1
  220. package/web/.next/standalone/packages/web/.next/server/app/api/health/sessions/route.js +1 -1
  221. package/web/.next/standalone/packages/web/.next/server/app/api/health/sessions/route.js.nft.json +1 -1
  222. package/web/.next/standalone/packages/web/.next/server/app/api/notifications/route.js +1 -1
  223. package/web/.next/standalone/packages/web/.next/server/app/api/notifications/route.js.nft.json +1 -1
  224. package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js +1 -1
  225. package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js.nft.json +1 -1
  226. package/web/.next/standalone/packages/web/.next/server/app/api/remote-access/route.js +2 -2
  227. package/web/.next/standalone/packages/web/.next/server/app/api/remote-access/route.js.nft.json +1 -1
  228. package/web/.next/standalone/packages/web/.next/server/app/api/repositories/[id]/route.js +1 -1
  229. package/web/.next/standalone/packages/web/.next/server/app/api/repositories/[id]/route.js.nft.json +1 -1
  230. package/web/.next/standalone/packages/web/.next/server/app/api/repositories/route.js +1 -1
  231. package/web/.next/standalone/packages/web/.next/server/app/api/repositories/route.js.nft.json +1 -1
  232. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/actions/route.js +1 -1
  233. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/actions/route.js.nft.json +1 -1
  234. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/archive/route.js +1 -1
  235. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/archive/route.js.nft.json +1 -1
  236. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/checks/route.js +1 -1
  237. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/checks/route.js.nft.json +1 -1
  238. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/diff/route.js +1 -1
  239. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/diff/route.js.nft.json +1 -1
  240. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/route.js +1 -1
  241. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/route.js.nft.json +1 -1
  242. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/stream/route.js +1 -1
  243. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/stream/route.js.nft.json +1 -1
  244. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feedback/route.js +1 -1
  245. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feedback/route.js.nft.json +1 -1
  246. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/files/route.js +1 -1
  247. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/files/route.js.nft.json +1 -1
  248. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/interrupt/route.js +1 -1
  249. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/interrupt/route.js.nft.json +1 -1
  250. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/keys/route.js +1 -1
  251. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/keys/route.js.nft.json +1 -1
  252. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/kill/route.js +1 -1
  253. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/kill/route.js.nft.json +1 -1
  254. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/route.js +1 -1
  255. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/route.js.nft.json +1 -1
  256. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/stream/route.js +1 -1
  257. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/stream/route.js.nft.json +1 -1
  258. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js +5 -4
  259. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js.nft.json +1 -1
  260. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js +5 -4
  261. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js.nft.json +1 -1
  262. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js +5 -4
  263. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js.nft.json +1 -1
  264. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/restore/route.js +1 -1
  265. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/restore/route.js.nft.json +1 -1
  266. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/route.js +1 -1
  267. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/route.js.nft.json +1 -1
  268. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/send/route.js +1 -1
  269. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/send/route.js.nft.json +1 -1
  270. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/route.js +1 -1
  271. package/web/.next/standalone/packages/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  272. package/web/.next/standalone/packages/web/.next/server/app/api/spawn/route.js +1 -1
  273. package/web/.next/standalone/packages/web/.next/server/app/api/spawn/route.js.nft.json +1 -1
  274. package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/branches/route.js +1 -1
  275. package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/branches/route.js.nft.json +1 -1
  276. package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/route.js +1 -1
  277. package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/route.js.nft.json +1 -1
  278. package/web/.next/standalone/packages/web/.next/server/app/page/react-loadable-manifest.json +1 -1
  279. package/web/.next/standalone/packages/web/.next/server/app/page/server-reference-manifest.json +7 -7
  280. package/web/.next/standalone/packages/web/.next/server/app/page.js +1 -1
  281. package/web/.next/standalone/packages/web/.next/server/app/page.js.nft.json +1 -1
  282. package/web/.next/standalone/packages/web/.next/server/app/page_client-reference-manifest.js +1 -1
  283. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page/server-reference-manifest.json +7 -7
  284. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js +1 -1
  285. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js.nft.json +1 -1
  286. package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page_client-reference-manifest.js +1 -1
  287. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page/server-reference-manifest.json +7 -7
  288. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js.nft.json +1 -1
  289. package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page_client-reference-manifest.js +1 -1
  290. package/web/.next/standalone/packages/web/.next/server/app/unlock/page/server-reference-manifest.json +7 -7
  291. package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js.nft.json +1 -1
  292. package/web/.next/standalone/packages/web/.next/server/app/unlock/page_client-reference-manifest.js +1 -1
  293. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__04942c76._.js +3 -0
  294. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06a0a55c._.js +3 -0
  295. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0bc13f9b._.js +3 -0
  296. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0e3fd2bf._.js +3 -0
  297. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__17d710ef._.js +3 -0
  298. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1898a844._.js +3 -0
  299. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1e50c065._.js +3 -0
  300. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__262e987e._.js +3 -0
  301. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2fd3bf3f._.js +3 -0
  302. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30c9c531._.js +3 -0
  303. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__31053ac2._.js +3 -0
  304. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__312cf7cb._.js +3 -0
  305. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3318d8a1._.js +3 -0
  306. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__33494588._.js +3 -0
  307. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__34e636e5._.js +3 -0
  308. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3937a996._.js +3 -0
  309. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3dc4c761._.js +3 -0
  310. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3e507276._.js +3 -0
  311. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3e68741b._.js +3 -0
  312. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__446cb0c6._.js +3 -0
  313. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4bcfaef6._.js +3 -0
  314. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4c5f7cab._.js +3 -0
  315. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4da18faf._.js +3 -0
  316. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4f2c5fc8._.js +3 -0
  317. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__520aa408._.js +3 -0
  318. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__53daf5c6._.js +3 -0
  319. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__540ebc7f._.js +3 -0
  320. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__543bc377._.js +3 -0
  321. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5612b82a._.js +3 -0
  322. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__59635ca5._.js +3 -0
  323. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5d35c5e5._.js +3 -0
  324. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5df70a62._.js +3 -0
  325. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__624bcdc9._.js +3 -0
  326. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__70929198._.js +3 -0
  327. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__70b5c7bd._.js +3 -0
  328. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__732fc06e._.js +3 -0
  329. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__747e6415._.js +3 -0
  330. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__797db2d6._.js +3 -0
  331. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7c87a52f._.js +3 -0
  332. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__82e86bb6._.js +3 -0
  333. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ace49d1._.js +3 -0
  334. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8c576b6a._.js +3 -0
  335. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ee7749b._.js +3 -0
  336. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ef73e8c._.js +3 -0
  337. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__93cc1947._.js +3 -0
  338. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__93e83d5a._.js +3 -0
  339. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9576223c._.js +3 -0
  340. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__95af98eb._.js +3 -0
  341. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__98f4a7bd._.js +3 -0
  342. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9940de77._.js +3 -0
  343. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9a7c9a83._.js +3 -0
  344. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9bf61231._.js +3 -0
  345. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a03769bc._.js +3 -0
  346. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a4b1a94c._.js +3 -0
  347. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a4b8bc9a._.js +3 -0
  348. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a59d62a8._.js +3 -0
  349. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ad47dd9e._.js +3 -0
  350. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ae73aa49._.js +3 -0
  351. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b00db558._.js +3 -0
  352. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b26505fd._.js +3 -0
  353. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b4039db5._.js +3 -0
  354. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b53b70e7._.js +3 -0
  355. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b716459f._.js +3 -0
  356. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b78e1a05._.js +3 -0
  357. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ba70a88e._.js +3 -0
  358. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bb2675cd._.js +3 -0
  359. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bc658430._.js +3 -0
  360. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bcd0c846._.js +3 -0
  361. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__be233a9f._.js +3 -0
  362. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c0e99d28._.js +3 -0
  363. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c33e4f89._.js +3 -0
  364. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c455995a._.js +3 -0
  365. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c999a476._.js +3 -0
  366. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__cedfefb8._.js +3 -0
  367. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d4acf424._.js +3 -0
  368. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d91a7563._.js +3 -0
  369. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__db8dccdf._.js +3 -0
  370. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__dda8199c._.js +3 -0
  371. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e385846c._.js +3 -0
  372. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6115e56._.js +3 -0
  373. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6cfd1ae._.js +3 -0
  374. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7aaee2d._.js +3 -0
  375. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7c11007._.js +3 -0
  376. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e908dd2b._.js +3 -0
  377. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eae97345._.js +3 -0
  378. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eb6e6bb9._.js +3 -0
  379. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ed51a16d._.js +3 -0
  380. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f0ec1021._.js +3 -0
  381. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f111812f._.js +3 -0
  382. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fbbf4d14._.js +3 -0
  383. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fd0a681b._.js +3 -0
  384. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fe4c1384._.js +3 -0
  385. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ff344935._.js +3 -0
  386. package/web/.next/standalone/packages/web/.next/server/chunks/_2c837d66._.js +2 -2
  387. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__000b8c99._.js +1 -1
  388. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__29d8d063._.js +1 -1
  389. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__7829c78d._.js +3 -0
  390. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__99387ae7._.js +3 -0
  391. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__b388693f._.js +1 -1
  392. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__bc9ab6c6._.js +3 -0
  393. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_0e1412de._.js +1 -1
  394. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_230c0c14._.js +2 -2
  395. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_367680b9._.js +3 -0
  396. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_69e05fca._.js +1 -1
  397. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_6cfd06c2._.js +1 -1
  398. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_80efe193._.js +1 -1
  399. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_b214b154._.js +1 -1
  400. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_b6d31783._.js +1 -1
  401. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_c0f0e227._.js +1 -1
  402. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_f36ddaa9._.js +1 -1
  403. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_3c8da5a6._.js +3 -0
  404. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_af0671be._.js +3 -0
  405. package/web/.next/standalone/packages/web/.next/server/pages/404.html +1 -1
  406. package/web/.next/standalone/packages/web/.next/server/pages/500.html +2 -2
  407. package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.js +1 -1
  408. package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.json +8 -8
  409. package/web/.next/standalone/packages/web/.next/static/chunks/2bc11b604b131190.js +1 -0
  410. package/web/.next/standalone/packages/web/.next/static/chunks/5f2995585c1ac66a.js +1 -0
  411. package/web/.next/standalone/packages/web/.next/static/chunks/64f0033534ca1ad3.css +3 -0
  412. package/web/.next/standalone/packages/web/.next/static/chunks/7daf09cc7388f426.js +1 -0
  413. package/web/.next/standalone/packages/web/.next/static/chunks/a28bcda8dd6b68ee.js +1 -0
  414. package/web/.next/standalone/packages/web/.next/static/chunks/b31c8692e1da69ef.js +6 -0
  415. package/web/.next/standalone/packages/web/.next/static/chunks/b6069d0eb07a978f.js +1 -0
  416. package/web/.next/standalone/packages/web/.next/static/chunks/c2caa064748bb0b5.js +1 -0
  417. package/web/.next/standalone/packages/web/.next/static/chunks/c5f8e486166298c2.js +1 -0
  418. package/web/.next/standalone/packages/web/next.config.ts +3 -17
  419. package/web/.next/standalone/packages/web/package.json +1 -18
  420. package/web/.next/standalone/packages/web/server.js +1 -1
  421. package/web/.next/standalone/packages/web/src/components/layout/Sidebar.tsx +153 -28
  422. package/web/.next/standalone/packages/web/src/components/sessions/SessionPreview.tsx +77 -2
  423. package/web/.next/standalone/packages/web/src/components/sessions/SessionRuntimeStatusBar.tsx +75 -19
  424. package/web/.next/standalone/packages/web/src/lib/devPreviewBrowser.ts +245 -9
  425. package/web/.next/standalone/packages/web/src/lib/previewSession.test.ts +2 -2
  426. package/web/.next/standalone/packages/web/src/lib/previewSession.ts +15 -4
  427. package/web/.next/standalone/packages/web/src/lib/previewTypes.ts +2 -0
  428. package/web/.next/standalone/packages/web/src/lib/projectConfigSync.ts +38 -74
  429. package/web/.next/static/chunks/2bc11b604b131190.js +1 -0
  430. package/web/.next/static/chunks/5f2995585c1ac66a.js +1 -0
  431. package/web/.next/static/chunks/64f0033534ca1ad3.css +3 -0
  432. package/web/.next/static/chunks/7daf09cc7388f426.js +1 -0
  433. package/web/.next/static/chunks/a28bcda8dd6b68ee.js +1 -0
  434. package/web/.next/static/chunks/b31c8692e1da69ef.js +6 -0
  435. package/web/.next/static/chunks/b6069d0eb07a978f.js +1 -0
  436. package/web/.next/static/chunks/c2caa064748bb0b5.js +1 -0
  437. package/web/.next/static/chunks/c5f8e486166298c2.js +1 -0
  438. package/dist/services.d.ts +0 -33
  439. package/dist/services.d.ts.map +0 -1
  440. package/dist/services.js +0 -111
  441. package/dist/services.js.map +0 -1
  442. package/node_modules/@conductor-oss/core/dist/agent-names.d.ts +0 -4
  443. package/node_modules/@conductor-oss/core/dist/agent-names.d.ts.map +0 -1
  444. package/node_modules/@conductor-oss/core/dist/agent-names.js +0 -108
  445. package/node_modules/@conductor-oss/core/dist/agent-names.js.map +0 -1
  446. package/node_modules/@conductor-oss/core/dist/board-diagnostics.d.ts +0 -37
  447. package/node_modules/@conductor-oss/core/dist/board-diagnostics.d.ts.map +0 -1
  448. package/node_modules/@conductor-oss/core/dist/board-diagnostics.js +0 -212
  449. package/node_modules/@conductor-oss/core/dist/board-diagnostics.js.map +0 -1
  450. package/node_modules/@conductor-oss/core/dist/board-parser.d.ts +0 -49
  451. package/node_modules/@conductor-oss/core/dist/board-parser.d.ts.map +0 -1
  452. package/node_modules/@conductor-oss/core/dist/board-parser.js +0 -241
  453. package/node_modules/@conductor-oss/core/dist/board-parser.js.map +0 -1
  454. package/node_modules/@conductor-oss/core/dist/board-watcher.d.ts +0 -62
  455. package/node_modules/@conductor-oss/core/dist/board-watcher.d.ts.map +0 -1
  456. package/node_modules/@conductor-oss/core/dist/board-watcher.js +0 -2162
  457. package/node_modules/@conductor-oss/core/dist/board-watcher.js.map +0 -1
  458. package/node_modules/@conductor-oss/core/dist/config-sync.d.ts +0 -42
  459. package/node_modules/@conductor-oss/core/dist/config-sync.d.ts.map +0 -1
  460. package/node_modules/@conductor-oss/core/dist/config-sync.js +0 -241
  461. package/node_modules/@conductor-oss/core/dist/config-sync.js.map +0 -1
  462. package/node_modules/@conductor-oss/core/dist/event-bus.d.ts +0 -49
  463. package/node_modules/@conductor-oss/core/dist/event-bus.d.ts.map +0 -1
  464. package/node_modules/@conductor-oss/core/dist/event-bus.js +0 -93
  465. package/node_modules/@conductor-oss/core/dist/event-bus.js.map +0 -1
  466. package/node_modules/@conductor-oss/core/dist/lifecycle-manager.d.ts +0 -24
  467. package/node_modules/@conductor-oss/core/dist/lifecycle-manager.d.ts.map +0 -1
  468. package/node_modules/@conductor-oss/core/dist/lifecycle-manager.js +0 -787
  469. package/node_modules/@conductor-oss/core/dist/lifecycle-manager.js.map +0 -1
  470. package/node_modules/@conductor-oss/core/dist/metadata.d.ts +0 -59
  471. package/node_modules/@conductor-oss/core/dist/metadata.d.ts.map +0 -1
  472. package/node_modules/@conductor-oss/core/dist/metadata.js +0 -385
  473. package/node_modules/@conductor-oss/core/dist/metadata.js.map +0 -1
  474. package/node_modules/@conductor-oss/core/dist/plugin-registry.d.ts +0 -11
  475. package/node_modules/@conductor-oss/core/dist/plugin-registry.d.ts.map +0 -1
  476. package/node_modules/@conductor-oss/core/dist/plugin-registry.js +0 -94
  477. package/node_modules/@conductor-oss/core/dist/plugin-registry.js.map +0 -1
  478. package/node_modules/@conductor-oss/core/dist/prompt-builder.d.ts +0 -37
  479. package/node_modules/@conductor-oss/core/dist/prompt-builder.d.ts.map +0 -1
  480. package/node_modules/@conductor-oss/core/dist/prompt-builder.js +0 -189
  481. package/node_modules/@conductor-oss/core/dist/prompt-builder.js.map +0 -1
  482. package/node_modules/@conductor-oss/core/dist/scaffold.d.ts +0 -77
  483. package/node_modules/@conductor-oss/core/dist/scaffold.d.ts.map +0 -1
  484. package/node_modules/@conductor-oss/core/dist/scaffold.js +0 -173
  485. package/node_modules/@conductor-oss/core/dist/scaffold.js.map +0 -1
  486. package/node_modules/@conductor-oss/core/dist/session-manager.d.ts +0 -21
  487. package/node_modules/@conductor-oss/core/dist/session-manager.d.ts.map +0 -1
  488. package/node_modules/@conductor-oss/core/dist/session-manager.js +0 -1714
  489. package/node_modules/@conductor-oss/core/dist/session-manager.js.map +0 -1
  490. package/node_modules/@conductor-oss/core/dist/spawn-limiter.d.ts +0 -38
  491. package/node_modules/@conductor-oss/core/dist/spawn-limiter.d.ts.map +0 -1
  492. package/node_modules/@conductor-oss/core/dist/spawn-limiter.js +0 -89
  493. package/node_modules/@conductor-oss/core/dist/spawn-limiter.js.map +0 -1
  494. package/node_modules/@conductor-oss/core/dist/webhook-emitter.d.ts +0 -39
  495. package/node_modules/@conductor-oss/core/dist/webhook-emitter.d.ts.map +0 -1
  496. package/node_modules/@conductor-oss/core/dist/webhook-emitter.js +0 -89
  497. package/node_modules/@conductor-oss/core/dist/webhook-emitter.js.map +0 -1
  498. package/node_modules/@conductor-oss/plugin-agent-amp/dist/index.d.ts +0 -21
  499. package/node_modules/@conductor-oss/plugin-agent-amp/dist/index.js +0 -198
  500. package/node_modules/@conductor-oss/plugin-agent-amp/package.json +0 -11
  501. package/node_modules/@conductor-oss/plugin-agent-ccr/dist/index.d.ts +0 -21
  502. package/node_modules/@conductor-oss/plugin-agent-ccr/dist/index.js +0 -198
  503. package/node_modules/@conductor-oss/plugin-agent-ccr/package.json +0 -11
  504. package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.d.ts +0 -37
  505. package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.d.ts.map +0 -1
  506. package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.js +0 -737
  507. package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.js.map +0 -1
  508. package/node_modules/@conductor-oss/plugin-agent-claude-code/package.json +0 -11
  509. package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.d.ts +0 -30
  510. package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.d.ts.map +0 -1
  511. package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.js +0 -709
  512. package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.js.map +0 -1
  513. package/node_modules/@conductor-oss/plugin-agent-codex/package.json +0 -11
  514. package/node_modules/@conductor-oss/plugin-agent-cursor-cli/dist/index.d.ts +0 -21
  515. package/node_modules/@conductor-oss/plugin-agent-cursor-cli/dist/index.js +0 -198
  516. package/node_modules/@conductor-oss/plugin-agent-cursor-cli/package.json +0 -11
  517. package/node_modules/@conductor-oss/plugin-agent-droid/dist/index.d.ts +0 -21
  518. package/node_modules/@conductor-oss/plugin-agent-droid/dist/index.js +0 -198
  519. package/node_modules/@conductor-oss/plugin-agent-droid/package.json +0 -11
  520. package/node_modules/@conductor-oss/plugin-agent-gemini/dist/index.d.ts +0 -71
  521. package/node_modules/@conductor-oss/plugin-agent-gemini/dist/index.js +0 -526
  522. package/node_modules/@conductor-oss/plugin-agent-gemini/package.json +0 -10
  523. package/node_modules/@conductor-oss/plugin-agent-github-copilot/dist/index.d.ts +0 -21
  524. package/node_modules/@conductor-oss/plugin-agent-github-copilot/dist/index.js +0 -198
  525. package/node_modules/@conductor-oss/plugin-agent-github-copilot/package.json +0 -11
  526. package/node_modules/@conductor-oss/plugin-agent-opencode/dist/index.d.ts +0 -21
  527. package/node_modules/@conductor-oss/plugin-agent-opencode/dist/index.js +0 -198
  528. package/node_modules/@conductor-oss/plugin-agent-opencode/package.json +0 -11
  529. package/node_modules/@conductor-oss/plugin-agent-qwen-code/dist/index.d.ts +0 -21
  530. package/node_modules/@conductor-oss/plugin-agent-qwen-code/dist/index.js +0 -202
  531. package/node_modules/@conductor-oss/plugin-agent-qwen-code/package.json +0 -11
  532. package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.d.ts +0 -22
  533. package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.d.ts.map +0 -1
  534. package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.js +0 -341
  535. package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.js.map +0 -1
  536. package/node_modules/@conductor-oss/plugin-mcp-server/package.json +0 -13
  537. package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.d.ts +0 -29
  538. package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.d.ts.map +0 -1
  539. package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.js +0 -105
  540. package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.js.map +0 -1
  541. package/node_modules/@conductor-oss/plugin-notifier-desktop/package.json +0 -11
  542. package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.d.ts +0 -26
  543. package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.d.ts.map +0 -1
  544. package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.js +0 -171
  545. package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.js.map +0 -1
  546. package/node_modules/@conductor-oss/plugin-notifier-discord/package.json +0 -11
  547. package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.d.ts +0 -24
  548. package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.d.ts.map +0 -1
  549. package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.js +0 -187
  550. package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.js.map +0 -1
  551. package/node_modules/@conductor-oss/plugin-runtime-tmux/package.json +0 -11
  552. package/node_modules/@conductor-oss/plugin-scm-github/dist/index.d.ts +0 -24
  553. package/node_modules/@conductor-oss/plugin-scm-github/dist/index.d.ts.map +0 -1
  554. package/node_modules/@conductor-oss/plugin-scm-github/dist/index.js +0 -362
  555. package/node_modules/@conductor-oss/plugin-scm-github/dist/index.js.map +0 -1
  556. package/node_modules/@conductor-oss/plugin-scm-github/package.json +0 -11
  557. package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.d.ts +0 -25
  558. package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.d.ts.map +0 -1
  559. package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.js +0 -59
  560. package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.js.map +0 -1
  561. package/node_modules/@conductor-oss/plugin-terminal-web/package.json +0 -11
  562. package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.d.ts +0 -24
  563. package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.d.ts.map +0 -1
  564. package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.js +0 -136
  565. package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.js.map +0 -1
  566. package/node_modules/@conductor-oss/plugin-tracker-github/package.json +0 -11
  567. package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.d.ts +0 -28
  568. package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.d.ts.map +0 -1
  569. package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.js +0 -605
  570. package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.js.map +0 -1
  571. package/node_modules/@conductor-oss/plugin-workspace-worktree/package.json +0 -11
  572. package/node_modules/@hono/node-server/LICENSE +0 -21
  573. package/node_modules/@hono/node-server/README.md +0 -358
  574. package/node_modules/@hono/node-server/dist/conninfo.d.mts +0 -10
  575. package/node_modules/@hono/node-server/dist/conninfo.d.ts +0 -10
  576. package/node_modules/@hono/node-server/dist/conninfo.js +0 -42
  577. package/node_modules/@hono/node-server/dist/conninfo.mjs +0 -17
  578. package/node_modules/@hono/node-server/dist/globals.d.mts +0 -2
  579. package/node_modules/@hono/node-server/dist/globals.d.ts +0 -2
  580. package/node_modules/@hono/node-server/dist/globals.js +0 -29
  581. package/node_modules/@hono/node-server/dist/globals.mjs +0 -5
  582. package/node_modules/@hono/node-server/dist/index.d.mts +0 -8
  583. package/node_modules/@hono/node-server/dist/index.d.ts +0 -8
  584. package/node_modules/@hono/node-server/dist/index.js +0 -632
  585. package/node_modules/@hono/node-server/dist/index.mjs +0 -592
  586. package/node_modules/@hono/node-server/dist/listener.d.mts +0 -13
  587. package/node_modules/@hono/node-server/dist/listener.d.ts +0 -13
  588. package/node_modules/@hono/node-server/dist/listener.js +0 -600
  589. package/node_modules/@hono/node-server/dist/listener.mjs +0 -565
  590. package/node_modules/@hono/node-server/dist/request.d.mts +0 -25
  591. package/node_modules/@hono/node-server/dist/request.d.ts +0 -25
  592. package/node_modules/@hono/node-server/dist/request.js +0 -227
  593. package/node_modules/@hono/node-server/dist/request.mjs +0 -195
  594. package/node_modules/@hono/node-server/dist/response.d.mts +0 -26
  595. package/node_modules/@hono/node-server/dist/response.d.ts +0 -26
  596. package/node_modules/@hono/node-server/dist/response.js +0 -101
  597. package/node_modules/@hono/node-server/dist/response.mjs +0 -74
  598. package/node_modules/@hono/node-server/dist/serve-static.d.mts +0 -17
  599. package/node_modules/@hono/node-server/dist/serve-static.d.ts +0 -17
  600. package/node_modules/@hono/node-server/dist/serve-static.js +0 -177
  601. package/node_modules/@hono/node-server/dist/serve-static.mjs +0 -152
  602. package/node_modules/@hono/node-server/dist/server.d.mts +0 -10
  603. package/node_modules/@hono/node-server/dist/server.d.ts +0 -10
  604. package/node_modules/@hono/node-server/dist/server.js +0 -626
  605. package/node_modules/@hono/node-server/dist/server.mjs +0 -590
  606. package/node_modules/@hono/node-server/dist/types.d.mts +0 -44
  607. package/node_modules/@hono/node-server/dist/types.d.ts +0 -44
  608. package/node_modules/@hono/node-server/dist/types.js +0 -18
  609. package/node_modules/@hono/node-server/dist/types.mjs +0 -0
  610. package/node_modules/@hono/node-server/dist/utils/response/constants.d.mts +0 -3
  611. package/node_modules/@hono/node-server/dist/utils/response/constants.d.ts +0 -3
  612. package/node_modules/@hono/node-server/dist/utils/response/constants.js +0 -30
  613. package/node_modules/@hono/node-server/dist/utils/response/constants.mjs +0 -5
  614. package/node_modules/@hono/node-server/dist/utils/response.d.mts +0 -3
  615. package/node_modules/@hono/node-server/dist/utils/response.d.ts +0 -3
  616. package/node_modules/@hono/node-server/dist/utils/response.js +0 -37
  617. package/node_modules/@hono/node-server/dist/utils/response.mjs +0 -10
  618. package/node_modules/@hono/node-server/dist/utils.d.mts +0 -9
  619. package/node_modules/@hono/node-server/dist/utils.d.ts +0 -9
  620. package/node_modules/@hono/node-server/dist/utils.js +0 -99
  621. package/node_modules/@hono/node-server/dist/utils.mjs +0 -71
  622. package/node_modules/@hono/node-server/dist/vercel.d.mts +0 -7
  623. package/node_modules/@hono/node-server/dist/vercel.d.ts +0 -7
  624. package/node_modules/@hono/node-server/dist/vercel.js +0 -607
  625. package/node_modules/@hono/node-server/dist/vercel.mjs +0 -570
  626. package/node_modules/@hono/node-server/package.json +0 -103
  627. package/node_modules/@modelcontextprotocol/sdk/LICENSE +0 -21
  628. package/node_modules/@modelcontextprotocol/sdk/README.md +0 -170
  629. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts +0 -190
  630. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts.map +0 -1
  631. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js +0 -299
  632. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js.map +0 -1
  633. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts +0 -446
  634. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts.map +0 -1
  635. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js +0 -925
  636. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js.map +0 -1
  637. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts +0 -588
  638. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts.map +0 -1
  639. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js +0 -629
  640. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js.map +0 -1
  641. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts +0 -169
  642. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts.map +0 -1
  643. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js +0 -252
  644. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js.map +0 -1
  645. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts +0 -81
  646. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts.map +0 -1
  647. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js +0 -211
  648. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js.map +0 -1
  649. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts +0 -77
  650. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts.map +0 -1
  651. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js +0 -199
  652. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js.map +0 -1
  653. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts +0 -171
  654. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts.map +0 -1
  655. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js +0 -482
  656. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js.map +0 -1
  657. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts +0 -17
  658. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts.map +0 -1
  659. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js +0 -58
  660. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js.map +0 -1
  661. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts +0 -2
  662. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts.map +0 -1
  663. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js +0 -680
  664. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js.map +0 -1
  665. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts +0 -2
  666. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts.map +0 -1
  667. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js +0 -134
  668. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js.map +0 -1
  669. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts +0 -2
  670. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts.map +0 -1
  671. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js +0 -176
  672. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js.map +0 -1
  673. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts +0 -20
  674. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts.map +0 -1
  675. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js +0 -70
  676. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js.map +0 -1
  677. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts +0 -3
  678. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts.map +0 -1
  679. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js +0 -397
  680. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js.map +0 -1
  681. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts +0 -26
  682. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts.map +0 -1
  683. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js +0 -51
  684. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js.map +0 -1
  685. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts +0 -2
  686. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts.map +0 -1
  687. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js +0 -857
  688. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js.map +0 -1
  689. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts +0 -10
  690. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts.map +0 -1
  691. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js +0 -157
  692. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js.map +0 -1
  693. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts +0 -2
  694. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts.map +0 -1
  695. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js +0 -95
  696. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js.map +0 -1
  697. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts +0 -2
  698. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +0 -1
  699. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js +0 -168
  700. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js.map +0 -1
  701. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts +0 -78
  702. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts.map +0 -1
  703. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js +0 -205
  704. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js.map +0 -1
  705. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts +0 -2
  706. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts.map +0 -1
  707. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js +0 -460
  708. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js.map +0 -1
  709. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts +0 -2
  710. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts.map +0 -1
  711. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js +0 -656
  712. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js.map +0 -1
  713. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts +0 -10
  714. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts.map +0 -1
  715. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js +0 -85
  716. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js.map +0 -1
  717. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts +0 -2
  718. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts.map +0 -1
  719. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js +0 -171
  720. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js.map +0 -1
  721. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts +0 -7
  722. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts.map +0 -1
  723. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js +0 -95
  724. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js.map +0 -1
  725. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts +0 -12
  726. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts.map +0 -1
  727. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js +0 -49
  728. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js.map +0 -1
  729. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts +0 -2
  730. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts.map +0 -1
  731. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js +0 -168
  732. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js.map +0 -1
  733. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts +0 -2
  734. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts.map +0 -1
  735. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js +0 -166
  736. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js.map +0 -1
  737. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts +0 -2
  738. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts.map +0 -1
  739. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js +0 -750
  740. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js.map +0 -1
  741. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts +0 -12
  742. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts.map +0 -1
  743. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js +0 -600
  744. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js.map +0 -1
  745. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +0 -2
  746. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +0 -1
  747. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js +0 -256
  748. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js.map +0 -1
  749. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts +0 -2
  750. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts.map +0 -1
  751. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js +0 -107
  752. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js.map +0 -1
  753. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts +0 -2
  754. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +0 -1
  755. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js +0 -124
  756. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js.map +0 -1
  757. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts +0 -2
  758. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts.map +0 -1
  759. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js +0 -73
  760. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js.map +0 -1
  761. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts +0 -31
  762. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts.map +0 -1
  763. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js +0 -69
  764. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js.map +0 -1
  765. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts +0 -13
  766. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts.map +0 -1
  767. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js +0 -29
  768. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js.map +0 -1
  769. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts +0 -121
  770. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts.map +0 -1
  771. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js +0 -188
  772. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js.map +0 -1
  773. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts +0 -47
  774. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts.map +0 -1
  775. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js +0 -68
  776. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js.map +0 -1
  777. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts +0 -16
  778. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts.map +0 -1
  779. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js +0 -39
  780. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js.map +0 -1
  781. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts +0 -232
  782. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts.map +0 -1
  783. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js +0 -19
  784. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js.map +0 -1
  785. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts +0 -77
  786. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts.map +0 -1
  787. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js +0 -36
  788. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js.map +0 -1
  789. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts +0 -170
  790. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts.map +0 -1
  791. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js +0 -250
  792. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js.map +0 -1
  793. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts +0 -94
  794. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts.map +0 -1
  795. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js +0 -251
  796. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js.map +0 -1
  797. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts +0 -10
  798. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts.map +0 -1
  799. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js +0 -28
  800. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js.map +0 -1
  801. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts +0 -31
  802. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts.map +0 -1
  803. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js +0 -51
  804. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js.map +0 -1
  805. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/package.json +0 -1
  806. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts +0 -19
  807. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts.map +0 -1
  808. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js +0 -3
  809. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js.map +0 -1
  810. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts +0 -148
  811. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts.map +0 -1
  812. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js +0 -202
  813. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js.map +0 -1
  814. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts +0 -13
  815. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts.map +0 -1
  816. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js +0 -167
  817. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js.map +0 -1
  818. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts +0 -4
  819. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts.map +0 -1
  820. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js +0 -21
  821. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js.map +0 -1
  822. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts +0 -29
  823. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts.map +0 -1
  824. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js +0 -77
  825. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js.map +0 -1
  826. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts +0 -13
  827. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts.map +0 -1
  828. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js +0 -65
  829. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js.map +0 -1
  830. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts +0 -13
  831. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts.map +0 -1
  832. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js +0 -136
  833. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js.map +0 -1
  834. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts +0 -9
  835. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts.map +0 -1
  836. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js +0 -21
  837. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js.map +0 -1
  838. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts +0 -35
  839. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts.map +0 -1
  840. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js +0 -75
  841. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js.map +0 -1
  842. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts +0 -19
  843. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts.map +0 -1
  844. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js +0 -71
  845. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js.map +0 -1
  846. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts +0 -68
  847. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts.map +0 -1
  848. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js +0 -3
  849. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js.map +0 -1
  850. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts +0 -49
  851. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts.map +0 -1
  852. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js +0 -159
  853. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js.map +0 -1
  854. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts +0 -101
  855. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts.map +0 -1
  856. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js +0 -128
  857. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js.map +0 -1
  858. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts +0 -32
  859. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts.map +0 -1
  860. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js +0 -3
  861. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js.map +0 -1
  862. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts +0 -38
  863. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts.map +0 -1
  864. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js +0 -48
  865. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js.map +0 -1
  866. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts +0 -45
  867. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts.map +0 -1
  868. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js +0 -56
  869. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js.map +0 -1
  870. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts +0 -196
  871. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts.map +0 -1
  872. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js +0 -444
  873. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js.map +0 -1
  874. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts +0 -364
  875. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts.map +0 -1
  876. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js +0 -918
  877. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js.map +0 -1
  878. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts +0 -32
  879. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts.map +0 -1
  880. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js +0 -80
  881. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js.map +0 -1
  882. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts +0 -82
  883. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts.map +0 -1
  884. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js +0 -172
  885. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js.map +0 -1
  886. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts +0 -28
  887. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts.map +0 -1
  888. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js +0 -82
  889. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js.map +0 -1
  890. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts +0 -122
  891. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts.map +0 -1
  892. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js +0 -165
  893. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js.map +0 -1
  894. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts +0 -268
  895. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts.map +0 -1
  896. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js +0 -755
  897. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js.map +0 -1
  898. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts +0 -84
  899. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts.map +0 -1
  900. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js +0 -244
  901. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js.map +0 -1
  902. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts +0 -12
  903. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts.map +0 -1
  904. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js +0 -79
  905. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js.map +0 -1
  906. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts +0 -23
  907. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts.map +0 -1
  908. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js +0 -48
  909. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js.map +0 -1
  910. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts +0 -240
  911. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts.map +0 -1
  912. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js +0 -224
  913. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js.map +0 -1
  914. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts +0 -16
  915. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts.map +0 -1
  916. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js +0 -25
  917. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js.map +0 -1
  918. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts +0 -443
  919. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts.map +0 -1
  920. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js +0 -1104
  921. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js.map +0 -1
  922. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts +0 -45
  923. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts.map +0 -1
  924. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js +0 -23
  925. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js.map +0 -1
  926. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts +0 -13
  927. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts.map +0 -1
  928. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js +0 -37
  929. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js.map +0 -1
  930. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts +0 -31
  931. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts.map +0 -1
  932. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js +0 -97
  933. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js.map +0 -1
  934. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts +0 -89
  935. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts.map +0 -1
  936. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js +0 -43
  937. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js.map +0 -1
  938. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts +0 -25
  939. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts.map +0 -1
  940. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js +0 -243
  941. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js.map +0 -1
  942. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts +0 -2299
  943. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts.map +0 -1
  944. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js +0 -27
  945. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js.map +0 -1
  946. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts +0 -8137
  947. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts.map +0 -1
  948. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js +0 -2092
  949. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js.map +0 -1
  950. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts +0 -53
  951. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts.map +0 -1
  952. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js +0 -94
  953. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js.map +0 -1
  954. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts +0 -51
  955. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts.map +0 -1
  956. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js +0 -69
  957. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js.map +0 -1
  958. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts +0 -29
  959. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts.map +0 -1
  960. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js +0 -30
  961. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js.map +0 -1
  962. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts +0 -65
  963. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts.map +0 -1
  964. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js +0 -3
  965. package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js.map +0 -1
  966. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts +0 -190
  967. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts.map +0 -1
  968. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js +0 -269
  969. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js.map +0 -1
  970. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts +0 -446
  971. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts.map +0 -1
  972. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js +0 -900
  973. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js.map +0 -1
  974. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts +0 -588
  975. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts.map +0 -1
  976. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js +0 -624
  977. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js.map +0 -1
  978. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts +0 -169
  979. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts.map +0 -1
  980. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js +0 -245
  981. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js.map +0 -1
  982. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts +0 -81
  983. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts.map +0 -1
  984. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js +0 -206
  985. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js.map +0 -1
  986. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts +0 -77
  987. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts.map +0 -1
  988. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js +0 -191
  989. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js.map +0 -1
  990. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts +0 -171
  991. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts.map +0 -1
  992. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js +0 -477
  993. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js.map +0 -1
  994. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts +0 -17
  995. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts.map +0 -1
  996. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js +0 -54
  997. package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js.map +0 -1
  998. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts +0 -2
  999. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts.map +0 -1
  1000. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js +0 -678
  1001. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js.map +0 -1
  1002. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts +0 -2
  1003. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts.map +0 -1
  1004. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js +0 -132
  1005. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js.map +0 -1
  1006. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts +0 -2
  1007. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts.map +0 -1
  1008. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js +0 -174
  1009. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js.map +0 -1
  1010. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts +0 -20
  1011. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts.map +0 -1
  1012. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js +0 -68
  1013. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js.map +0 -1
  1014. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts +0 -3
  1015. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts.map +0 -1
  1016. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js +0 -395
  1017. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js.map +0 -1
  1018. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts +0 -26
  1019. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts.map +0 -1
  1020. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js +0 -47
  1021. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js.map +0 -1
  1022. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts +0 -2
  1023. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts.map +0 -1
  1024. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js +0 -855
  1025. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js.map +0 -1
  1026. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts +0 -10
  1027. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts.map +0 -1
  1028. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js +0 -155
  1029. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js.map +0 -1
  1030. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts +0 -2
  1031. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts.map +0 -1
  1032. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js +0 -93
  1033. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js.map +0 -1
  1034. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts +0 -2
  1035. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +0 -1
  1036. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js +0 -166
  1037. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js.map +0 -1
  1038. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts +0 -78
  1039. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts.map +0 -1
  1040. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js +0 -196
  1041. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js.map +0 -1
  1042. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts +0 -2
  1043. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts.map +0 -1
  1044. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js +0 -458
  1045. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js.map +0 -1
  1046. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts +0 -2
  1047. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts.map +0 -1
  1048. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js +0 -651
  1049. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js.map +0 -1
  1050. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts +0 -10
  1051. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts.map +0 -1
  1052. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js +0 -60
  1053. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js.map +0 -1
  1054. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts +0 -2
  1055. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts.map +0 -1
  1056. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js +0 -146
  1057. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js.map +0 -1
  1058. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts +0 -7
  1059. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts.map +0 -1
  1060. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js +0 -70
  1061. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js.map +0 -1
  1062. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts +0 -12
  1063. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts.map +0 -1
  1064. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js +0 -47
  1065. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js.map +0 -1
  1066. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts +0 -2
  1067. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts.map +0 -1
  1068. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js +0 -143
  1069. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js.map +0 -1
  1070. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts +0 -2
  1071. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts.map +0 -1
  1072. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js +0 -141
  1073. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js.map +0 -1
  1074. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts +0 -2
  1075. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts.map +0 -1
  1076. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js +0 -725
  1077. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js.map +0 -1
  1078. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts +0 -12
  1079. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts.map +0 -1
  1080. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js +0 -598
  1081. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js.map +0 -1
  1082. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +0 -2
  1083. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +0 -1
  1084. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js +0 -231
  1085. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js.map +0 -1
  1086. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts +0 -2
  1087. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts.map +0 -1
  1088. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js +0 -102
  1089. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js.map +0 -1
  1090. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts +0 -2
  1091. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +0 -1
  1092. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js +0 -122
  1093. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js.map +0 -1
  1094. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts +0 -2
  1095. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts.map +0 -1
  1096. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js +0 -48
  1097. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js.map +0 -1
  1098. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts +0 -31
  1099. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts.map +0 -1
  1100. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js +0 -65
  1101. package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js.map +0 -1
  1102. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts +0 -13
  1103. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts.map +0 -1
  1104. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js +0 -13
  1105. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js.map +0 -1
  1106. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts +0 -121
  1107. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts.map +0 -1
  1108. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js +0 -184
  1109. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js.map +0 -1
  1110. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts +0 -47
  1111. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts.map +0 -1
  1112. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js +0 -64
  1113. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js.map +0 -1
  1114. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts +0 -16
  1115. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts.map +0 -1
  1116. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js +0 -20
  1117. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js.map +0 -1
  1118. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts +0 -232
  1119. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts.map +0 -1
  1120. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js +0 -16
  1121. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js.map +0 -1
  1122. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts +0 -77
  1123. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts.map +0 -1
  1124. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js +0 -32
  1125. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js.map +0 -1
  1126. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts +0 -170
  1127. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts.map +0 -1
  1128. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js +0 -246
  1129. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js.map +0 -1
  1130. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts +0 -94
  1131. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts.map +0 -1
  1132. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js +0 -246
  1133. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js.map +0 -1
  1134. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts +0 -10
  1135. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts.map +0 -1
  1136. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js +0 -10
  1137. package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js.map +0 -1
  1138. package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts +0 -31
  1139. package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts.map +0 -1
  1140. package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js +0 -47
  1141. package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js.map +0 -1
  1142. package/node_modules/@modelcontextprotocol/sdk/dist/esm/package.json +0 -1
  1143. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts +0 -19
  1144. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts.map +0 -1
  1145. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js +0 -2
  1146. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js.map +0 -1
  1147. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts +0 -148
  1148. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts.map +0 -1
  1149. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js +0 -180
  1150. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js.map +0 -1
  1151. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts +0 -13
  1152. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts.map +0 -1
  1153. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js +0 -138
  1154. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js.map +0 -1
  1155. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts +0 -4
  1156. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts.map +0 -1
  1157. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js +0 -15
  1158. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js.map +0 -1
  1159. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts +0 -29
  1160. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts.map +0 -1
  1161. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js +0 -71
  1162. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js.map +0 -1
  1163. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts +0 -13
  1164. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts.map +0 -1
  1165. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js +0 -59
  1166. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js.map +0 -1
  1167. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts +0 -13
  1168. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts.map +0 -1
  1169. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js +0 -107
  1170. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js.map +0 -1
  1171. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts +0 -9
  1172. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts.map +0 -1
  1173. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js +0 -18
  1174. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js.map +0 -1
  1175. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts +0 -35
  1176. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts.map +0 -1
  1177. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js +0 -72
  1178. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js.map +0 -1
  1179. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts +0 -19
  1180. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts.map +0 -1
  1181. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js +0 -45
  1182. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js.map +0 -1
  1183. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts +0 -68
  1184. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts.map +0 -1
  1185. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js +0 -2
  1186. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js.map +0 -1
  1187. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts +0 -49
  1188. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts.map +0 -1
  1189. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js +0 -155
  1190. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js.map +0 -1
  1191. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts +0 -101
  1192. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts.map +0 -1
  1193. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js +0 -118
  1194. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js.map +0 -1
  1195. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts +0 -32
  1196. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts.map +0 -1
  1197. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js +0 -2
  1198. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js.map +0 -1
  1199. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts +0 -38
  1200. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts.map +0 -1
  1201. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js +0 -41
  1202. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js.map +0 -1
  1203. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts +0 -45
  1204. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts.map +0 -1
  1205. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js +0 -50
  1206. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js.map +0 -1
  1207. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts +0 -196
  1208. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts.map +0 -1
  1209. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js +0 -440
  1210. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js.map +0 -1
  1211. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts +0 -364
  1212. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts.map +0 -1
  1213. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js +0 -913
  1214. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js.map +0 -1
  1215. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts +0 -32
  1216. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts.map +0 -1
  1217. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js +0 -76
  1218. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js.map +0 -1
  1219. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts +0 -82
  1220. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts.map +0 -1
  1221. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js +0 -165
  1222. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js.map +0 -1
  1223. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts +0 -28
  1224. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts.map +0 -1
  1225. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js +0 -75
  1226. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js.map +0 -1
  1227. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts +0 -122
  1228. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts.map +0 -1
  1229. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js +0 -161
  1230. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js.map +0 -1
  1231. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts +0 -268
  1232. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts.map +0 -1
  1233. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js +0 -751
  1234. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js.map +0 -1
  1235. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts +0 -84
  1236. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts.map +0 -1
  1237. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js +0 -209
  1238. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js.map +0 -1
  1239. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts +0 -12
  1240. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts.map +0 -1
  1241. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js +0 -51
  1242. package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js.map +0 -1
  1243. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts +0 -23
  1244. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts.map +0 -1
  1245. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js +0 -44
  1246. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js.map +0 -1
  1247. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts +0 -240
  1248. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts.map +0 -1
  1249. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js +0 -198
  1250. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js.map +0 -1
  1251. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts +0 -16
  1252. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts.map +0 -1
  1253. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js +0 -22
  1254. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js.map +0 -1
  1255. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts +0 -443
  1256. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts.map +0 -1
  1257. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js +0 -1099
  1258. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js.map +0 -1
  1259. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts +0 -45
  1260. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts.map +0 -1
  1261. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js +0 -19
  1262. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js.map +0 -1
  1263. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts +0 -13
  1264. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts.map +0 -1
  1265. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js +0 -31
  1266. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js.map +0 -1
  1267. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts +0 -31
  1268. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts.map +0 -1
  1269. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js +0 -92
  1270. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js.map +0 -1
  1271. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts +0 -89
  1272. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts.map +0 -1
  1273. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js +0 -39
  1274. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js.map +0 -1
  1275. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts +0 -25
  1276. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts.map +0 -1
  1277. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js +0 -239
  1278. package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map +0 -1
  1279. package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts +0 -2299
  1280. package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map +0 -1
  1281. package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js +0 -24
  1282. package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map +0 -1
  1283. package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts +0 -8137
  1284. package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map +0 -1
  1285. package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js +0 -2052
  1286. package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map +0 -1
  1287. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts +0 -53
  1288. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map +0 -1
  1289. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js +0 -87
  1290. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map +0 -1
  1291. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts +0 -51
  1292. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map +0 -1
  1293. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js +0 -65
  1294. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map +0 -1
  1295. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts +0 -29
  1296. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map +0 -1
  1297. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js +0 -29
  1298. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map +0 -1
  1299. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts +0 -65
  1300. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map +0 -1
  1301. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js +0 -2
  1302. package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map +0 -1
  1303. package/node_modules/@modelcontextprotocol/sdk/package.json +0 -155
  1304. package/node_modules/accepts/HISTORY.md +0 -250
  1305. package/node_modules/accepts/LICENSE +0 -23
  1306. package/node_modules/accepts/README.md +0 -140
  1307. package/node_modules/accepts/index.js +0 -238
  1308. package/node_modules/accepts/package.json +0 -47
  1309. package/node_modules/ajv/.runkit_example.js +0 -23
  1310. package/node_modules/ajv/LICENSE +0 -22
  1311. package/node_modules/ajv/README.md +0 -207
  1312. package/node_modules/ajv/dist/2019.d.ts +0 -19
  1313. package/node_modules/ajv/dist/2019.js +0 -61
  1314. package/node_modules/ajv/dist/2019.js.map +0 -1
  1315. package/node_modules/ajv/dist/2020.d.ts +0 -19
  1316. package/node_modules/ajv/dist/2020.js +0 -55
  1317. package/node_modules/ajv/dist/2020.js.map +0 -1
  1318. package/node_modules/ajv/dist/ajv.d.ts +0 -18
  1319. package/node_modules/ajv/dist/ajv.js +0 -50
  1320. package/node_modules/ajv/dist/ajv.js.map +0 -1
  1321. package/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
  1322. package/node_modules/ajv/dist/compile/codegen/code.js +0 -156
  1323. package/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
  1324. package/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
  1325. package/node_modules/ajv/dist/compile/codegen/index.js +0 -697
  1326. package/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
  1327. package/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
  1328. package/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
  1329. package/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
  1330. package/node_modules/ajv/dist/compile/errors.d.ts +0 -13
  1331. package/node_modules/ajv/dist/compile/errors.js +0 -123
  1332. package/node_modules/ajv/dist/compile/errors.js.map +0 -1
  1333. package/node_modules/ajv/dist/compile/index.d.ts +0 -80
  1334. package/node_modules/ajv/dist/compile/index.js +0 -242
  1335. package/node_modules/ajv/dist/compile/index.js.map +0 -1
  1336. package/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
  1337. package/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
  1338. package/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
  1339. package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
  1340. package/node_modules/ajv/dist/compile/jtd/serialize.js +0 -236
  1341. package/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
  1342. package/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
  1343. package/node_modules/ajv/dist/compile/jtd/types.js +0 -14
  1344. package/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
  1345. package/node_modules/ajv/dist/compile/names.d.ts +0 -20
  1346. package/node_modules/ajv/dist/compile/names.js +0 -28
  1347. package/node_modules/ajv/dist/compile/names.js.map +0 -1
  1348. package/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
  1349. package/node_modules/ajv/dist/compile/ref_error.js +0 -12
  1350. package/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
  1351. package/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
  1352. package/node_modules/ajv/dist/compile/resolve.js +0 -155
  1353. package/node_modules/ajv/dist/compile/resolve.js.map +0 -1
  1354. package/node_modules/ajv/dist/compile/rules.d.ts +0 -28
  1355. package/node_modules/ajv/dist/compile/rules.js +0 -26
  1356. package/node_modules/ajv/dist/compile/rules.js.map +0 -1
  1357. package/node_modules/ajv/dist/compile/util.d.ts +0 -40
  1358. package/node_modules/ajv/dist/compile/util.js +0 -178
  1359. package/node_modules/ajv/dist/compile/util.js.map +0 -1
  1360. package/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
  1361. package/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
  1362. package/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
  1363. package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
  1364. package/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
  1365. package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
  1366. package/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
  1367. package/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
  1368. package/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
  1369. package/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
  1370. package/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
  1371. package/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
  1372. package/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
  1373. package/node_modules/ajv/dist/compile/validate/index.js +0 -520
  1374. package/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
  1375. package/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
  1376. package/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
  1377. package/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
  1378. package/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
  1379. package/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
  1380. package/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
  1381. package/node_modules/ajv/dist/core.d.ts +0 -174
  1382. package/node_modules/ajv/dist/core.js +0 -618
  1383. package/node_modules/ajv/dist/core.js.map +0 -1
  1384. package/node_modules/ajv/dist/jtd.d.ts +0 -47
  1385. package/node_modules/ajv/dist/jtd.js +0 -72
  1386. package/node_modules/ajv/dist/jtd.js.map +0 -1
  1387. package/node_modules/ajv/dist/refs/data.json +0 -13
  1388. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
  1389. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
  1390. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
  1391. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
  1392. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
  1393. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
  1394. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
  1395. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
  1396. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
  1397. package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
  1398. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
  1399. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
  1400. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
  1401. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
  1402. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
  1403. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
  1404. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
  1405. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
  1406. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
  1407. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
  1408. package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
  1409. package/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
  1410. package/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
  1411. package/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
  1412. package/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
  1413. package/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
  1414. package/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
  1415. package/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
  1416. package/node_modules/ajv/dist/runtime/equal.js +0 -7
  1417. package/node_modules/ajv/dist/runtime/equal.js.map +0 -1
  1418. package/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
  1419. package/node_modules/ajv/dist/runtime/parseJson.js +0 -185
  1420. package/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
  1421. package/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
  1422. package/node_modules/ajv/dist/runtime/quote.js +0 -30
  1423. package/node_modules/ajv/dist/runtime/quote.js.map +0 -1
  1424. package/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
  1425. package/node_modules/ajv/dist/runtime/re2.js +0 -6
  1426. package/node_modules/ajv/dist/runtime/re2.js.map +0 -1
  1427. package/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
  1428. package/node_modules/ajv/dist/runtime/timestamp.js +0 -42
  1429. package/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
  1430. package/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
  1431. package/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
  1432. package/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
  1433. package/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
  1434. package/node_modules/ajv/dist/runtime/uri.js +0 -6
  1435. package/node_modules/ajv/dist/runtime/uri.js.map +0 -1
  1436. package/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
  1437. package/node_modules/ajv/dist/runtime/validation_error.js +0 -11
  1438. package/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
  1439. package/node_modules/ajv/dist/standalone/index.d.ts +0 -6
  1440. package/node_modules/ajv/dist/standalone/index.js +0 -90
  1441. package/node_modules/ajv/dist/standalone/index.js.map +0 -1
  1442. package/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
  1443. package/node_modules/ajv/dist/standalone/instance.js +0 -35
  1444. package/node_modules/ajv/dist/standalone/instance.js.map +0 -1
  1445. package/node_modules/ajv/dist/types/index.d.ts +0 -183
  1446. package/node_modules/ajv/dist/types/index.js +0 -3
  1447. package/node_modules/ajv/dist/types/index.js.map +0 -1
  1448. package/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
  1449. package/node_modules/ajv/dist/types/json-schema.js +0 -3
  1450. package/node_modules/ajv/dist/types/json-schema.js.map +0 -1
  1451. package/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
  1452. package/node_modules/ajv/dist/types/jtd-schema.js +0 -3
  1453. package/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
  1454. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
  1455. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
  1456. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
  1457. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
  1458. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
  1459. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
  1460. package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
  1461. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
  1462. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
  1463. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
  1464. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
  1465. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
  1466. package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
  1467. package/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
  1468. package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
  1469. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
  1470. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
  1471. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
  1472. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
  1473. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
  1474. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
  1475. package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
  1476. package/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
  1477. package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
  1478. package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
  1479. package/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
  1480. package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
  1481. package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
  1482. package/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
  1483. package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
  1484. package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
  1485. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
  1486. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
  1487. package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
  1488. package/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
  1489. package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
  1490. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
  1491. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
  1492. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
  1493. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
  1494. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
  1495. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
  1496. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
  1497. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
  1498. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
  1499. package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
  1500. package/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
  1501. package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
  1502. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
  1503. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
  1504. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
  1505. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
  1506. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
  1507. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
  1508. package/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
  1509. package/node_modules/ajv/dist/vocabularies/code.js +0 -131
  1510. package/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
  1511. package/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
  1512. package/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
  1513. package/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
  1514. package/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
  1515. package/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
  1516. package/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
  1517. package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
  1518. package/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
  1519. package/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
  1520. package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
  1521. package/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
  1522. package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
  1523. package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
  1524. package/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
  1525. package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
  1526. package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
  1527. package/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
  1528. package/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
  1529. package/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
  1530. package/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
  1531. package/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
  1532. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
  1533. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
  1534. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
  1535. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
  1536. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
  1537. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
  1538. package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
  1539. package/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
  1540. package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
  1541. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
  1542. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
  1543. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
  1544. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
  1545. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
  1546. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
  1547. package/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
  1548. package/node_modules/ajv/dist/vocabularies/errors.js +0 -3
  1549. package/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
  1550. package/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
  1551. package/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
  1552. package/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
  1553. package/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
  1554. package/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
  1555. package/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
  1556. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
  1557. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
  1558. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
  1559. package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
  1560. package/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
  1561. package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
  1562. package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
  1563. package/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
  1564. package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
  1565. package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
  1566. package/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
  1567. package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
  1568. package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
  1569. package/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
  1570. package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
  1571. package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
  1572. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
  1573. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
  1574. package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
  1575. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
  1576. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
  1577. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
  1578. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
  1579. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
  1580. package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
  1581. package/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
  1582. package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
  1583. package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
  1584. package/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
  1585. package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
  1586. package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
  1587. package/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
  1588. package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
  1589. package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
  1590. package/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
  1591. package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
  1592. package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
  1593. package/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
  1594. package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
  1595. package/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
  1596. package/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
  1597. package/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
  1598. package/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
  1599. package/node_modules/ajv/dist/vocabularies/next.js +0 -8
  1600. package/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
  1601. package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
  1602. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
  1603. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
  1604. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
  1605. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
  1606. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
  1607. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
  1608. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
  1609. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
  1610. package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
  1611. package/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
  1612. package/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
  1613. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
  1614. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
  1615. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
  1616. package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
  1617. package/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
  1618. package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
  1619. package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
  1620. package/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
  1621. package/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
  1622. package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
  1623. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
  1624. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
  1625. package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
  1626. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
  1627. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
  1628. package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
  1629. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
  1630. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
  1631. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
  1632. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
  1633. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
  1634. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
  1635. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
  1636. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
  1637. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
  1638. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
  1639. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
  1640. package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
  1641. package/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -33
  1642. package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
  1643. package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
  1644. package/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
  1645. package/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
  1646. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
  1647. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
  1648. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
  1649. package/node_modules/ajv/lib/2019.ts +0 -81
  1650. package/node_modules/ajv/lib/2020.ts +0 -75
  1651. package/node_modules/ajv/lib/ajv.ts +0 -70
  1652. package/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
  1653. package/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
  1654. package/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
  1655. package/node_modules/ajv/lib/compile/errors.ts +0 -184
  1656. package/node_modules/ajv/lib/compile/index.ts +0 -324
  1657. package/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
  1658. package/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -277
  1659. package/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
  1660. package/node_modules/ajv/lib/compile/names.ts +0 -27
  1661. package/node_modules/ajv/lib/compile/ref_error.ts +0 -13
  1662. package/node_modules/ajv/lib/compile/resolve.ts +0 -149
  1663. package/node_modules/ajv/lib/compile/rules.ts +0 -50
  1664. package/node_modules/ajv/lib/compile/util.ts +0 -213
  1665. package/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
  1666. package/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
  1667. package/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
  1668. package/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
  1669. package/node_modules/ajv/lib/compile/validate/index.ts +0 -582
  1670. package/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
  1671. package/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
  1672. package/node_modules/ajv/lib/core.ts +0 -892
  1673. package/node_modules/ajv/lib/jtd.ts +0 -132
  1674. package/node_modules/ajv/lib/refs/data.json +0 -13
  1675. package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
  1676. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
  1677. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
  1678. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
  1679. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
  1680. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
  1681. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
  1682. package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
  1683. package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
  1684. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
  1685. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
  1686. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
  1687. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
  1688. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
  1689. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
  1690. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
  1691. package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
  1692. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
  1693. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
  1694. package/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
  1695. package/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
  1696. package/node_modules/ajv/lib/runtime/equal.ts +0 -7
  1697. package/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
  1698. package/node_modules/ajv/lib/runtime/quote.ts +0 -31
  1699. package/node_modules/ajv/lib/runtime/re2.ts +0 -6
  1700. package/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
  1701. package/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
  1702. package/node_modules/ajv/lib/runtime/uri.ts +0 -6
  1703. package/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
  1704. package/node_modules/ajv/lib/standalone/index.ts +0 -100
  1705. package/node_modules/ajv/lib/standalone/instance.ts +0 -36
  1706. package/node_modules/ajv/lib/types/index.ts +0 -244
  1707. package/node_modules/ajv/lib/types/json-schema.ts +0 -187
  1708. package/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
  1709. package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
  1710. package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
  1711. package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
  1712. package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
  1713. package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
  1714. package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
  1715. package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
  1716. package/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
  1717. package/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
  1718. package/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
  1719. package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
  1720. package/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
  1721. package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
  1722. package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
  1723. package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
  1724. package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
  1725. package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
  1726. package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
  1727. package/node_modules/ajv/lib/vocabularies/code.ts +0 -168
  1728. package/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
  1729. package/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
  1730. package/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
  1731. package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
  1732. package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
  1733. package/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
  1734. package/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
  1735. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
  1736. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
  1737. package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
  1738. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
  1739. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
  1740. package/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
  1741. package/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
  1742. package/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
  1743. package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
  1744. package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
  1745. package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
  1746. package/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
  1747. package/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
  1748. package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
  1749. package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
  1750. package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
  1751. package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
  1752. package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
  1753. package/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
  1754. package/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
  1755. package/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
  1756. package/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
  1757. package/node_modules/ajv/lib/vocabularies/next.ts +0 -8
  1758. package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
  1759. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
  1760. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
  1761. package/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
  1762. package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
  1763. package/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
  1764. package/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
  1765. package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
  1766. package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
  1767. package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
  1768. package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
  1769. package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
  1770. package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
  1771. package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -39
  1772. package/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
  1773. package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
  1774. package/node_modules/ajv/package.json +0 -127
  1775. package/node_modules/ajv-formats/LICENSE +0 -21
  1776. package/node_modules/ajv-formats/README.md +0 -125
  1777. package/node_modules/ajv-formats/dist/formats.d.ts +0 -9
  1778. package/node_modules/ajv-formats/dist/formats.js +0 -208
  1779. package/node_modules/ajv-formats/dist/formats.js.map +0 -1
  1780. package/node_modules/ajv-formats/dist/index.d.ts +0 -15
  1781. package/node_modules/ajv-formats/dist/index.js +0 -37
  1782. package/node_modules/ajv-formats/dist/index.js.map +0 -1
  1783. package/node_modules/ajv-formats/dist/limit.d.ts +0 -10
  1784. package/node_modules/ajv-formats/dist/limit.js +0 -69
  1785. package/node_modules/ajv-formats/dist/limit.js.map +0 -1
  1786. package/node_modules/ajv-formats/package.json +0 -74
  1787. package/node_modules/ajv-formats/src/formats.ts +0 -269
  1788. package/node_modules/ajv-formats/src/index.ts +0 -62
  1789. package/node_modules/ajv-formats/src/limit.ts +0 -99
  1790. package/node_modules/body-parser/LICENSE +0 -23
  1791. package/node_modules/body-parser/README.md +0 -494
  1792. package/node_modules/body-parser/index.js +0 -71
  1793. package/node_modules/body-parser/lib/read.js +0 -247
  1794. package/node_modules/body-parser/lib/types/json.js +0 -158
  1795. package/node_modules/body-parser/lib/types/raw.js +0 -42
  1796. package/node_modules/body-parser/lib/types/text.js +0 -36
  1797. package/node_modules/body-parser/lib/types/urlencoded.js +0 -142
  1798. package/node_modules/body-parser/lib/utils.js +0 -98
  1799. package/node_modules/body-parser/package.json +0 -52
  1800. package/node_modules/bytes/History.md +0 -97
  1801. package/node_modules/bytes/LICENSE +0 -23
  1802. package/node_modules/bytes/Readme.md +0 -152
  1803. package/node_modules/bytes/index.js +0 -170
  1804. package/node_modules/bytes/package.json +0 -42
  1805. package/node_modules/call-bind-apply-helpers/.eslintrc +0 -17
  1806. package/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +0 -12
  1807. package/node_modules/call-bind-apply-helpers/.nycrc +0 -9
  1808. package/node_modules/call-bind-apply-helpers/CHANGELOG.md +0 -30
  1809. package/node_modules/call-bind-apply-helpers/LICENSE +0 -21
  1810. package/node_modules/call-bind-apply-helpers/README.md +0 -62
  1811. package/node_modules/call-bind-apply-helpers/actualApply.d.ts +0 -1
  1812. package/node_modules/call-bind-apply-helpers/actualApply.js +0 -10
  1813. package/node_modules/call-bind-apply-helpers/applyBind.d.ts +0 -19
  1814. package/node_modules/call-bind-apply-helpers/applyBind.js +0 -10
  1815. package/node_modules/call-bind-apply-helpers/functionApply.d.ts +0 -1
  1816. package/node_modules/call-bind-apply-helpers/functionApply.js +0 -4
  1817. package/node_modules/call-bind-apply-helpers/functionCall.d.ts +0 -1
  1818. package/node_modules/call-bind-apply-helpers/functionCall.js +0 -4
  1819. package/node_modules/call-bind-apply-helpers/index.d.ts +0 -64
  1820. package/node_modules/call-bind-apply-helpers/index.js +0 -15
  1821. package/node_modules/call-bind-apply-helpers/package.json +0 -85
  1822. package/node_modules/call-bind-apply-helpers/reflectApply.d.ts +0 -3
  1823. package/node_modules/call-bind-apply-helpers/reflectApply.js +0 -4
  1824. package/node_modules/call-bind-apply-helpers/test/index.js +0 -63
  1825. package/node_modules/call-bind-apply-helpers/tsconfig.json +0 -9
  1826. package/node_modules/call-bound/.eslintrc +0 -13
  1827. package/node_modules/call-bound/.github/FUNDING.yml +0 -12
  1828. package/node_modules/call-bound/.nycrc +0 -9
  1829. package/node_modules/call-bound/CHANGELOG.md +0 -42
  1830. package/node_modules/call-bound/LICENSE +0 -21
  1831. package/node_modules/call-bound/README.md +0 -53
  1832. package/node_modules/call-bound/index.d.ts +0 -94
  1833. package/node_modules/call-bound/index.js +0 -19
  1834. package/node_modules/call-bound/package.json +0 -99
  1835. package/node_modules/call-bound/test/index.js +0 -61
  1836. package/node_modules/call-bound/tsconfig.json +0 -10
  1837. package/node_modules/content-disposition/HISTORY.md +0 -72
  1838. package/node_modules/content-disposition/LICENSE +0 -22
  1839. package/node_modules/content-disposition/README.md +0 -142
  1840. package/node_modules/content-disposition/index.js +0 -458
  1841. package/node_modules/content-disposition/package.json +0 -43
  1842. package/node_modules/content-type/HISTORY.md +0 -29
  1843. package/node_modules/content-type/LICENSE +0 -22
  1844. package/node_modules/content-type/README.md +0 -94
  1845. package/node_modules/content-type/index.js +0 -225
  1846. package/node_modules/content-type/package.json +0 -42
  1847. package/node_modules/cookie/LICENSE +0 -24
  1848. package/node_modules/cookie/README.md +0 -317
  1849. package/node_modules/cookie/SECURITY.md +0 -25
  1850. package/node_modules/cookie/index.js +0 -335
  1851. package/node_modules/cookie/package.json +0 -44
  1852. package/node_modules/cookie-signature/History.md +0 -70
  1853. package/node_modules/cookie-signature/LICENSE +0 -22
  1854. package/node_modules/cookie-signature/Readme.md +0 -23
  1855. package/node_modules/cookie-signature/index.js +0 -47
  1856. package/node_modules/cookie-signature/package.json +0 -24
  1857. package/node_modules/cors/LICENSE +0 -22
  1858. package/node_modules/cors/README.md +0 -277
  1859. package/node_modules/cors/lib/index.js +0 -238
  1860. package/node_modules/cors/package.json +0 -42
  1861. package/node_modules/cross-spawn/LICENSE +0 -21
  1862. package/node_modules/cross-spawn/README.md +0 -89
  1863. package/node_modules/cross-spawn/index.js +0 -39
  1864. package/node_modules/cross-spawn/lib/enoent.js +0 -59
  1865. package/node_modules/cross-spawn/lib/parse.js +0 -91
  1866. package/node_modules/cross-spawn/lib/util/escape.js +0 -47
  1867. package/node_modules/cross-spawn/lib/util/readShebang.js +0 -23
  1868. package/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -52
  1869. package/node_modules/cross-spawn/package.json +0 -73
  1870. package/node_modules/debug/LICENSE +0 -20
  1871. package/node_modules/debug/README.md +0 -481
  1872. package/node_modules/debug/package.json +0 -64
  1873. package/node_modules/debug/src/browser.js +0 -272
  1874. package/node_modules/debug/src/common.js +0 -292
  1875. package/node_modules/debug/src/index.js +0 -10
  1876. package/node_modules/debug/src/node.js +0 -263
  1877. package/node_modules/depd/History.md +0 -103
  1878. package/node_modules/depd/LICENSE +0 -22
  1879. package/node_modules/depd/Readme.md +0 -280
  1880. package/node_modules/depd/index.js +0 -538
  1881. package/node_modules/depd/lib/browser/index.js +0 -77
  1882. package/node_modules/depd/package.json +0 -45
  1883. package/node_modules/dunder-proto/.eslintrc +0 -5
  1884. package/node_modules/dunder-proto/.github/FUNDING.yml +0 -12
  1885. package/node_modules/dunder-proto/.nycrc +0 -13
  1886. package/node_modules/dunder-proto/CHANGELOG.md +0 -24
  1887. package/node_modules/dunder-proto/LICENSE +0 -21
  1888. package/node_modules/dunder-proto/README.md +0 -54
  1889. package/node_modules/dunder-proto/get.d.ts +0 -5
  1890. package/node_modules/dunder-proto/get.js +0 -30
  1891. package/node_modules/dunder-proto/package.json +0 -76
  1892. package/node_modules/dunder-proto/set.d.ts +0 -5
  1893. package/node_modules/dunder-proto/set.js +0 -35
  1894. package/node_modules/dunder-proto/test/get.js +0 -34
  1895. package/node_modules/dunder-proto/test/index.js +0 -4
  1896. package/node_modules/dunder-proto/test/set.js +0 -50
  1897. package/node_modules/dunder-proto/tsconfig.json +0 -9
  1898. package/node_modules/ee-first/LICENSE +0 -22
  1899. package/node_modules/ee-first/README.md +0 -80
  1900. package/node_modules/ee-first/index.js +0 -95
  1901. package/node_modules/ee-first/package.json +0 -29
  1902. package/node_modules/encodeurl/LICENSE +0 -22
  1903. package/node_modules/encodeurl/README.md +0 -109
  1904. package/node_modules/encodeurl/index.js +0 -60
  1905. package/node_modules/encodeurl/package.json +0 -40
  1906. package/node_modules/es-define-property/.eslintrc +0 -13
  1907. package/node_modules/es-define-property/.github/FUNDING.yml +0 -12
  1908. package/node_modules/es-define-property/.nycrc +0 -9
  1909. package/node_modules/es-define-property/CHANGELOG.md +0 -29
  1910. package/node_modules/es-define-property/LICENSE +0 -21
  1911. package/node_modules/es-define-property/README.md +0 -49
  1912. package/node_modules/es-define-property/index.d.ts +0 -3
  1913. package/node_modules/es-define-property/index.js +0 -14
  1914. package/node_modules/es-define-property/package.json +0 -81
  1915. package/node_modules/es-define-property/test/index.js +0 -56
  1916. package/node_modules/es-define-property/tsconfig.json +0 -10
  1917. package/node_modules/es-errors/.eslintrc +0 -5
  1918. package/node_modules/es-errors/.github/FUNDING.yml +0 -12
  1919. package/node_modules/es-errors/CHANGELOG.md +0 -40
  1920. package/node_modules/es-errors/LICENSE +0 -21
  1921. package/node_modules/es-errors/README.md +0 -55
  1922. package/node_modules/es-errors/eval.d.ts +0 -3
  1923. package/node_modules/es-errors/eval.js +0 -4
  1924. package/node_modules/es-errors/index.d.ts +0 -3
  1925. package/node_modules/es-errors/index.js +0 -4
  1926. package/node_modules/es-errors/package.json +0 -80
  1927. package/node_modules/es-errors/range.d.ts +0 -3
  1928. package/node_modules/es-errors/range.js +0 -4
  1929. package/node_modules/es-errors/ref.d.ts +0 -3
  1930. package/node_modules/es-errors/ref.js +0 -4
  1931. package/node_modules/es-errors/syntax.d.ts +0 -3
  1932. package/node_modules/es-errors/syntax.js +0 -4
  1933. package/node_modules/es-errors/test/index.js +0 -19
  1934. package/node_modules/es-errors/tsconfig.json +0 -49
  1935. package/node_modules/es-errors/type.d.ts +0 -3
  1936. package/node_modules/es-errors/type.js +0 -4
  1937. package/node_modules/es-errors/uri.d.ts +0 -3
  1938. package/node_modules/es-errors/uri.js +0 -4
  1939. package/node_modules/es-object-atoms/.eslintrc +0 -16
  1940. package/node_modules/es-object-atoms/.github/FUNDING.yml +0 -12
  1941. package/node_modules/es-object-atoms/CHANGELOG.md +0 -37
  1942. package/node_modules/es-object-atoms/LICENSE +0 -21
  1943. package/node_modules/es-object-atoms/README.md +0 -63
  1944. package/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +0 -3
  1945. package/node_modules/es-object-atoms/RequireObjectCoercible.js +0 -11
  1946. package/node_modules/es-object-atoms/ToObject.d.ts +0 -7
  1947. package/node_modules/es-object-atoms/ToObject.js +0 -10
  1948. package/node_modules/es-object-atoms/index.d.ts +0 -3
  1949. package/node_modules/es-object-atoms/index.js +0 -4
  1950. package/node_modules/es-object-atoms/isObject.d.ts +0 -3
  1951. package/node_modules/es-object-atoms/isObject.js +0 -6
  1952. package/node_modules/es-object-atoms/package.json +0 -80
  1953. package/node_modules/es-object-atoms/test/index.js +0 -38
  1954. package/node_modules/es-object-atoms/tsconfig.json +0 -6
  1955. package/node_modules/escape-html/LICENSE +0 -24
  1956. package/node_modules/escape-html/Readme.md +0 -43
  1957. package/node_modules/escape-html/index.js +0 -78
  1958. package/node_modules/escape-html/package.json +0 -24
  1959. package/node_modules/etag/HISTORY.md +0 -83
  1960. package/node_modules/etag/LICENSE +0 -22
  1961. package/node_modules/etag/README.md +0 -159
  1962. package/node_modules/etag/index.js +0 -131
  1963. package/node_modules/etag/package.json +0 -47
  1964. package/node_modules/eventsource/LICENSE +0 -22
  1965. package/node_modules/eventsource/README.md +0 -167
  1966. package/node_modules/eventsource/dist/index.cjs +0 -273
  1967. package/node_modules/eventsource/dist/index.cjs.map +0 -1
  1968. package/node_modules/eventsource/dist/index.d.cts +0 -332
  1969. package/node_modules/eventsource/dist/index.d.ts +0 -332
  1970. package/node_modules/eventsource/dist/index.js +0 -273
  1971. package/node_modules/eventsource/dist/index.js.map +0 -1
  1972. package/node_modules/eventsource/package.json +0 -130
  1973. package/node_modules/eventsource/src/EventSource.ts +0 -596
  1974. package/node_modules/eventsource/src/errors.ts +0 -141
  1975. package/node_modules/eventsource/src/index.ts +0 -3
  1976. package/node_modules/eventsource/src/types.ts +0 -152
  1977. package/node_modules/eventsource-parser/LICENSE +0 -21
  1978. package/node_modules/eventsource-parser/README.md +0 -126
  1979. package/node_modules/eventsource-parser/dist/index.cjs +0 -106
  1980. package/node_modules/eventsource-parser/dist/index.cjs.map +0 -1
  1981. package/node_modules/eventsource-parser/dist/index.d.cts +0 -144
  1982. package/node_modules/eventsource-parser/dist/index.d.ts +0 -144
  1983. package/node_modules/eventsource-parser/dist/index.js +0 -106
  1984. package/node_modules/eventsource-parser/dist/index.js.map +0 -1
  1985. package/node_modules/eventsource-parser/dist/stream.cjs +0 -28
  1986. package/node_modules/eventsource-parser/dist/stream.cjs.map +0 -1
  1987. package/node_modules/eventsource-parser/dist/stream.d.cts +0 -118
  1988. package/node_modules/eventsource-parser/dist/stream.d.ts +0 -118
  1989. package/node_modules/eventsource-parser/dist/stream.js +0 -29
  1990. package/node_modules/eventsource-parser/dist/stream.js.map +0 -1
  1991. package/node_modules/eventsource-parser/package.json +0 -115
  1992. package/node_modules/eventsource-parser/src/errors.ts +0 -44
  1993. package/node_modules/eventsource-parser/src/index.ts +0 -3
  1994. package/node_modules/eventsource-parser/src/parse.ts +0 -232
  1995. package/node_modules/eventsource-parser/src/stream.ts +0 -88
  1996. package/node_modules/eventsource-parser/src/types.ts +0 -97
  1997. package/node_modules/eventsource-parser/stream.js +0 -2
  1998. package/node_modules/express/LICENSE +0 -24
  1999. package/node_modules/express/Readme.md +0 -276
  2000. package/node_modules/express/index.js +0 -11
  2001. package/node_modules/express/lib/application.js +0 -631
  2002. package/node_modules/express/lib/express.js +0 -81
  2003. package/node_modules/express/lib/request.js +0 -514
  2004. package/node_modules/express/lib/response.js +0 -1053
  2005. package/node_modules/express/lib/utils.js +0 -271
  2006. package/node_modules/express/lib/view.js +0 -205
  2007. package/node_modules/express/package.json +0 -99
  2008. package/node_modules/express-rate-limit/dist/index.cjs +0 -964
  2009. package/node_modules/express-rate-limit/dist/index.d.cts +0 -642
  2010. package/node_modules/express-rate-limit/dist/index.d.mts +0 -642
  2011. package/node_modules/express-rate-limit/dist/index.d.ts +0 -642
  2012. package/node_modules/express-rate-limit/dist/index.mjs +0 -934
  2013. package/node_modules/express-rate-limit/license.md +0 -20
  2014. package/node_modules/express-rate-limit/package.json +0 -112
  2015. package/node_modules/express-rate-limit/readme.md +0 -151
  2016. package/node_modules/express-rate-limit/tsconfig.json +0 -8
  2017. package/node_modules/fast-deep-equal/LICENSE +0 -21
  2018. package/node_modules/fast-deep-equal/README.md +0 -96
  2019. package/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
  2020. package/node_modules/fast-deep-equal/es6/index.js +0 -72
  2021. package/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
  2022. package/node_modules/fast-deep-equal/es6/react.js +0 -79
  2023. package/node_modules/fast-deep-equal/index.d.ts +0 -4
  2024. package/node_modules/fast-deep-equal/index.js +0 -46
  2025. package/node_modules/fast-deep-equal/package.json +0 -61
  2026. package/node_modules/fast-deep-equal/react.d.ts +0 -2
  2027. package/node_modules/fast-deep-equal/react.js +0 -53
  2028. package/node_modules/fast-uri/.gitattributes +0 -2
  2029. package/node_modules/fast-uri/.github/.stale.yml +0 -21
  2030. package/node_modules/fast-uri/.github/dependabot.yml +0 -13
  2031. package/node_modules/fast-uri/.github/tests_checker.yml +0 -8
  2032. package/node_modules/fast-uri/.github/workflows/ci.yml +0 -101
  2033. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +0 -24
  2034. package/node_modules/fast-uri/LICENSE +0 -32
  2035. package/node_modules/fast-uri/README.md +0 -143
  2036. package/node_modules/fast-uri/benchmark/benchmark.mjs +0 -159
  2037. package/node_modules/fast-uri/benchmark/equal.mjs +0 -51
  2038. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +0 -22
  2039. package/node_modules/fast-uri/benchmark/package.json +0 -17
  2040. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +0 -24
  2041. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +0 -65
  2042. package/node_modules/fast-uri/eslint.config.js +0 -6
  2043. package/node_modules/fast-uri/index.js +0 -340
  2044. package/node_modules/fast-uri/lib/schemes.js +0 -267
  2045. package/node_modules/fast-uri/lib/utils.js +0 -336
  2046. package/node_modules/fast-uri/package.json +0 -69
  2047. package/node_modules/fast-uri/test/ajv.test.js +0 -43
  2048. package/node_modules/fast-uri/test/equal.test.js +0 -108
  2049. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +0 -501
  2050. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +0 -120
  2051. package/node_modules/fast-uri/test/parse.test.js +0 -318
  2052. package/node_modules/fast-uri/test/resolve.test.js +0 -78
  2053. package/node_modules/fast-uri/test/rfc-3986.test.js +0 -90
  2054. package/node_modules/fast-uri/test/serialize.test.js +0 -151
  2055. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +0 -33
  2056. package/node_modules/fast-uri/test/uri-js.test.js +0 -912
  2057. package/node_modules/fast-uri/test/util.test.js +0 -38
  2058. package/node_modules/fast-uri/tsconfig.json +0 -9
  2059. package/node_modules/fast-uri/types/index.d.ts +0 -60
  2060. package/node_modules/fast-uri/types/index.test-d.ts +0 -17
  2061. package/node_modules/finalhandler/HISTORY.md +0 -239
  2062. package/node_modules/finalhandler/LICENSE +0 -22
  2063. package/node_modules/finalhandler/README.md +0 -150
  2064. package/node_modules/finalhandler/index.js +0 -293
  2065. package/node_modules/finalhandler/package.json +0 -47
  2066. package/node_modules/forwarded/HISTORY.md +0 -21
  2067. package/node_modules/forwarded/LICENSE +0 -22
  2068. package/node_modules/forwarded/README.md +0 -57
  2069. package/node_modules/forwarded/index.js +0 -90
  2070. package/node_modules/forwarded/package.json +0 -45
  2071. package/node_modules/fresh/HISTORY.md +0 -80
  2072. package/node_modules/fresh/LICENSE +0 -23
  2073. package/node_modules/fresh/README.md +0 -117
  2074. package/node_modules/fresh/index.js +0 -136
  2075. package/node_modules/fresh/package.json +0 -46
  2076. package/node_modules/function-bind/.eslintrc +0 -21
  2077. package/node_modules/function-bind/.github/FUNDING.yml +0 -12
  2078. package/node_modules/function-bind/.github/SECURITY.md +0 -3
  2079. package/node_modules/function-bind/.nycrc +0 -13
  2080. package/node_modules/function-bind/CHANGELOG.md +0 -136
  2081. package/node_modules/function-bind/LICENSE +0 -20
  2082. package/node_modules/function-bind/README.md +0 -46
  2083. package/node_modules/function-bind/implementation.js +0 -84
  2084. package/node_modules/function-bind/index.js +0 -5
  2085. package/node_modules/function-bind/package.json +0 -87
  2086. package/node_modules/function-bind/test/.eslintrc +0 -9
  2087. package/node_modules/function-bind/test/index.js +0 -252
  2088. package/node_modules/get-intrinsic/.eslintrc +0 -42
  2089. package/node_modules/get-intrinsic/.github/FUNDING.yml +0 -12
  2090. package/node_modules/get-intrinsic/.nycrc +0 -9
  2091. package/node_modules/get-intrinsic/CHANGELOG.md +0 -186
  2092. package/node_modules/get-intrinsic/LICENSE +0 -21
  2093. package/node_modules/get-intrinsic/README.md +0 -71
  2094. package/node_modules/get-intrinsic/index.js +0 -378
  2095. package/node_modules/get-intrinsic/package.json +0 -97
  2096. package/node_modules/get-intrinsic/test/GetIntrinsic.js +0 -274
  2097. package/node_modules/get-proto/.eslintrc +0 -10
  2098. package/node_modules/get-proto/.github/FUNDING.yml +0 -12
  2099. package/node_modules/get-proto/.nycrc +0 -9
  2100. package/node_modules/get-proto/CHANGELOG.md +0 -21
  2101. package/node_modules/get-proto/LICENSE +0 -21
  2102. package/node_modules/get-proto/Object.getPrototypeOf.d.ts +0 -5
  2103. package/node_modules/get-proto/Object.getPrototypeOf.js +0 -6
  2104. package/node_modules/get-proto/README.md +0 -50
  2105. package/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +0 -3
  2106. package/node_modules/get-proto/Reflect.getPrototypeOf.js +0 -4
  2107. package/node_modules/get-proto/index.d.ts +0 -5
  2108. package/node_modules/get-proto/index.js +0 -27
  2109. package/node_modules/get-proto/package.json +0 -81
  2110. package/node_modules/get-proto/test/index.js +0 -68
  2111. package/node_modules/get-proto/tsconfig.json +0 -9
  2112. package/node_modules/gopd/.eslintrc +0 -16
  2113. package/node_modules/gopd/.github/FUNDING.yml +0 -12
  2114. package/node_modules/gopd/CHANGELOG.md +0 -45
  2115. package/node_modules/gopd/LICENSE +0 -21
  2116. package/node_modules/gopd/README.md +0 -40
  2117. package/node_modules/gopd/gOPD.d.ts +0 -1
  2118. package/node_modules/gopd/gOPD.js +0 -4
  2119. package/node_modules/gopd/index.d.ts +0 -5
  2120. package/node_modules/gopd/index.js +0 -15
  2121. package/node_modules/gopd/package.json +0 -77
  2122. package/node_modules/gopd/test/index.js +0 -36
  2123. package/node_modules/gopd/tsconfig.json +0 -9
  2124. package/node_modules/has-symbols/.eslintrc +0 -11
  2125. package/node_modules/has-symbols/.github/FUNDING.yml +0 -12
  2126. package/node_modules/has-symbols/.nycrc +0 -9
  2127. package/node_modules/has-symbols/CHANGELOG.md +0 -91
  2128. package/node_modules/has-symbols/LICENSE +0 -21
  2129. package/node_modules/has-symbols/README.md +0 -46
  2130. package/node_modules/has-symbols/index.d.ts +0 -3
  2131. package/node_modules/has-symbols/index.js +0 -14
  2132. package/node_modules/has-symbols/package.json +0 -111
  2133. package/node_modules/has-symbols/shams.d.ts +0 -3
  2134. package/node_modules/has-symbols/shams.js +0 -45
  2135. package/node_modules/has-symbols/test/index.js +0 -22
  2136. package/node_modules/has-symbols/test/shams/core-js.js +0 -29
  2137. package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +0 -29
  2138. package/node_modules/has-symbols/test/tests.js +0 -58
  2139. package/node_modules/has-symbols/tsconfig.json +0 -10
  2140. package/node_modules/hasown/.eslintrc +0 -5
  2141. package/node_modules/hasown/.github/FUNDING.yml +0 -12
  2142. package/node_modules/hasown/.nycrc +0 -13
  2143. package/node_modules/hasown/CHANGELOG.md +0 -40
  2144. package/node_modules/hasown/LICENSE +0 -21
  2145. package/node_modules/hasown/README.md +0 -40
  2146. package/node_modules/hasown/index.d.ts +0 -3
  2147. package/node_modules/hasown/index.js +0 -8
  2148. package/node_modules/hasown/package.json +0 -92
  2149. package/node_modules/hasown/tsconfig.json +0 -6
  2150. package/node_modules/hono/LICENSE +0 -21
  2151. package/node_modules/hono/README.md +0 -85
  2152. package/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +0 -24
  2153. package/node_modules/hono/dist/adapter/aws-lambda/handler.js +0 -366
  2154. package/node_modules/hono/dist/adapter/aws-lambda/index.js +0 -9
  2155. package/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
  2156. package/node_modules/hono/dist/adapter/bun/conninfo.js +0 -27
  2157. package/node_modules/hono/dist/adapter/bun/index.js +0 -16
  2158. package/node_modules/hono/dist/adapter/bun/serve-static.js +0 -30
  2159. package/node_modules/hono/dist/adapter/bun/server.js +0 -5
  2160. package/node_modules/hono/dist/adapter/bun/ssg.js +0 -17
  2161. package/node_modules/hono/dist/adapter/bun/websocket.js +0 -71
  2162. package/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +0 -9
  2163. package/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +0 -67
  2164. package/node_modules/hono/dist/adapter/cloudflare-pages/index.js +0 -9
  2165. package/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +0 -9
  2166. package/node_modules/hono/dist/adapter/cloudflare-workers/index.js +0 -9
  2167. package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +0 -8
  2168. package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +0 -22
  2169. package/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +0 -35
  2170. package/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +0 -41
  2171. package/node_modules/hono/dist/adapter/deno/conninfo.js +0 -14
  2172. package/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
  2173. package/node_modules/hono/dist/adapter/deno/index.js +0 -12
  2174. package/node_modules/hono/dist/adapter/deno/serve-static.js +0 -40
  2175. package/node_modules/hono/dist/adapter/deno/ssg.js +0 -18
  2176. package/node_modules/hono/dist/adapter/deno/websocket.js +0 -28
  2177. package/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +0 -9
  2178. package/node_modules/hono/dist/adapter/lambda-edge/handler.js +0 -79
  2179. package/node_modules/hono/dist/adapter/lambda-edge/index.js +0 -7
  2180. package/node_modules/hono/dist/adapter/netlify/conninfo.js +0 -9
  2181. package/node_modules/hono/dist/adapter/netlify/handler.js +0 -9
  2182. package/node_modules/hono/dist/adapter/netlify/index.js +0 -2
  2183. package/node_modules/hono/dist/adapter/netlify/mod.js +0 -7
  2184. package/node_modules/hono/dist/adapter/service-worker/handler.js +0 -20
  2185. package/node_modules/hono/dist/adapter/service-worker/index.js +0 -11
  2186. package/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
  2187. package/node_modules/hono/dist/adapter/vercel/conninfo.js +0 -10
  2188. package/node_modules/hono/dist/adapter/vercel/handler.js +0 -7
  2189. package/node_modules/hono/dist/adapter/vercel/index.js +0 -7
  2190. package/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +0 -47
  2191. package/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +0 -398
  2192. package/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +0 -35
  2193. package/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +0 -16
  2194. package/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +0 -50
  2195. package/node_modules/hono/dist/cjs/adapter/bun/index.js +0 -46
  2196. package/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +0 -53
  2197. package/node_modules/hono/dist/cjs/adapter/bun/server.js +0 -28
  2198. package/node_modules/hono/dist/cjs/adapter/bun/ssg.js +0 -41
  2199. package/node_modules/hono/dist/cjs/adapter/bun/websocket.js +0 -97
  2200. package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +0 -32
  2201. package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +0 -92
  2202. package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +0 -35
  2203. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +0 -32
  2204. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +0 -34
  2205. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +0 -31
  2206. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +0 -45
  2207. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +0 -58
  2208. package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +0 -64
  2209. package/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +0 -37
  2210. package/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -1
  2211. package/node_modules/hono/dist/cjs/adapter/deno/index.js +0 -39
  2212. package/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +0 -63
  2213. package/node_modules/hono/dist/cjs/adapter/deno/ssg.js +0 -42
  2214. package/node_modules/hono/dist/cjs/adapter/deno/websocket.js +0 -51
  2215. package/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +0 -32
  2216. package/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +0 -114
  2217. package/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +0 -31
  2218. package/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +0 -32
  2219. package/node_modules/hono/dist/cjs/adapter/netlify/handler.js +0 -32
  2220. package/node_modules/hono/dist/cjs/adapter/netlify/index.js +0 -22
  2221. package/node_modules/hono/dist/cjs/adapter/netlify/mod.js +0 -31
  2222. package/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +0 -43
  2223. package/node_modules/hono/dist/cjs/adapter/service-worker/index.js +0 -35
  2224. package/node_modules/hono/dist/cjs/adapter/service-worker/types.js +0 -16
  2225. package/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +0 -33
  2226. package/node_modules/hono/dist/cjs/adapter/vercel/handler.js +0 -30
  2227. package/node_modules/hono/dist/cjs/adapter/vercel/index.js +0 -31
  2228. package/node_modules/hono/dist/cjs/client/client.js +0 -196
  2229. package/node_modules/hono/dist/cjs/client/fetch-result-please.js +0 -86
  2230. package/node_modules/hono/dist/cjs/client/index.js +0 -33
  2231. package/node_modules/hono/dist/cjs/client/types.js +0 -16
  2232. package/node_modules/hono/dist/cjs/client/utils.js +0 -106
  2233. package/node_modules/hono/dist/cjs/compose.js +0 -69
  2234. package/node_modules/hono/dist/cjs/context.js +0 -436
  2235. package/node_modules/hono/dist/cjs/helper/accepts/accepts.js +0 -44
  2236. package/node_modules/hono/dist/cjs/helper/accepts/index.js +0 -28
  2237. package/node_modules/hono/dist/cjs/helper/adapter/index.js +0 -82
  2238. package/node_modules/hono/dist/cjs/helper/conninfo/index.js +0 -16
  2239. package/node_modules/hono/dist/cjs/helper/conninfo/types.js +0 -16
  2240. package/node_modules/hono/dist/cjs/helper/cookie/index.js +0 -131
  2241. package/node_modules/hono/dist/cjs/helper/css/common.js +0 -223
  2242. package/node_modules/hono/dist/cjs/helper/css/index.js +0 -143
  2243. package/node_modules/hono/dist/cjs/helper/dev/index.js +0 -80
  2244. package/node_modules/hono/dist/cjs/helper/factory/index.js +0 -55
  2245. package/node_modules/hono/dist/cjs/helper/html/index.js +0 -65
  2246. package/node_modules/hono/dist/cjs/helper/proxy/index.js +0 -112
  2247. package/node_modules/hono/dist/cjs/helper/route/index.js +0 -72
  2248. package/node_modules/hono/dist/cjs/helper/ssg/index.js +0 -44
  2249. package/node_modules/hono/dist/cjs/helper/ssg/middleware.js +0 -74
  2250. package/node_modules/hono/dist/cjs/helper/ssg/plugins.js +0 -71
  2251. package/node_modules/hono/dist/cjs/helper/ssg/ssg.js +0 -317
  2252. package/node_modules/hono/dist/cjs/helper/ssg/utils.js +0 -85
  2253. package/node_modules/hono/dist/cjs/helper/streaming/index.js +0 -36
  2254. package/node_modules/hono/dist/cjs/helper/streaming/sse.js +0 -91
  2255. package/node_modules/hono/dist/cjs/helper/streaming/stream.js +0 -57
  2256. package/node_modules/hono/dist/cjs/helper/streaming/text.js +0 -35
  2257. package/node_modules/hono/dist/cjs/helper/streaming/utils.js +0 -36
  2258. package/node_modules/hono/dist/cjs/helper/testing/index.js +0 -34
  2259. package/node_modules/hono/dist/cjs/helper/websocket/index.js +0 -82
  2260. package/node_modules/hono/dist/cjs/hono-base.js +0 -401
  2261. package/node_modules/hono/dist/cjs/hono.js +0 -44
  2262. package/node_modules/hono/dist/cjs/http-exception.js +0 -58
  2263. package/node_modules/hono/dist/cjs/index.js +0 -28
  2264. package/node_modules/hono/dist/cjs/jsx/base.js +0 -375
  2265. package/node_modules/hono/dist/cjs/jsx/children.js +0 -45
  2266. package/node_modules/hono/dist/cjs/jsx/components.js +0 -202
  2267. package/node_modules/hono/dist/cjs/jsx/constants.js +0 -43
  2268. package/node_modules/hono/dist/cjs/jsx/context.js +0 -63
  2269. package/node_modules/hono/dist/cjs/jsx/dom/client.js +0 -77
  2270. package/node_modules/hono/dist/cjs/jsx/dom/components.js +0 -56
  2271. package/node_modules/hono/dist/cjs/jsx/dom/context.js +0 -72
  2272. package/node_modules/hono/dist/cjs/jsx/dom/css.js +0 -162
  2273. package/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +0 -75
  2274. package/node_modules/hono/dist/cjs/jsx/dom/index.js +0 -182
  2275. package/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +0 -369
  2276. package/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +0 -53
  2277. package/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +0 -33
  2278. package/node_modules/hono/dist/cjs/jsx/dom/render.js +0 -620
  2279. package/node_modules/hono/dist/cjs/jsx/dom/server.js +0 -68
  2280. package/node_modules/hono/dist/cjs/jsx/dom/utils.js +0 -33
  2281. package/node_modules/hono/dist/cjs/jsx/hooks/index.js +0 -371
  2282. package/node_modules/hono/dist/cjs/jsx/index.js +0 -139
  2283. package/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +0 -40
  2284. package/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +0 -183
  2285. package/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +0 -16
  2286. package/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +0 -42
  2287. package/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +0 -69
  2288. package/node_modules/hono/dist/cjs/jsx/streaming.js +0 -178
  2289. package/node_modules/hono/dist/cjs/jsx/types.js +0 -16
  2290. package/node_modules/hono/dist/cjs/jsx/utils.js +0 -51
  2291. package/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +0 -89
  2292. package/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +0 -106
  2293. package/node_modules/hono/dist/cjs/middleware/body-limit/index.js +0 -85
  2294. package/node_modules/hono/dist/cjs/middleware/cache/index.js +0 -112
  2295. package/node_modules/hono/dist/cjs/middleware/combine/index.js +0 -102
  2296. package/node_modules/hono/dist/cjs/middleware/compress/index.js +0 -62
  2297. package/node_modules/hono/dist/cjs/middleware/context-storage/index.js +0 -48
  2298. package/node_modules/hono/dist/cjs/middleware/cors/index.js +0 -110
  2299. package/node_modules/hono/dist/cjs/middleware/csrf/index.js +0 -78
  2300. package/node_modules/hono/dist/cjs/middleware/etag/digest.js +0 -56
  2301. package/node_modules/hono/dist/cjs/middleware/etag/index.js +0 -96
  2302. package/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +0 -125
  2303. package/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +0 -82
  2304. package/node_modules/hono/dist/cjs/middleware/jwk/index.js +0 -28
  2305. package/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +0 -135
  2306. package/node_modules/hono/dist/cjs/middleware/jwt/index.js +0 -39
  2307. package/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +0 -141
  2308. package/node_modules/hono/dist/cjs/middleware/language/index.js +0 -36
  2309. package/node_modules/hono/dist/cjs/middleware/language/language.js +0 -222
  2310. package/node_modules/hono/dist/cjs/middleware/logger/index.js +0 -73
  2311. package/node_modules/hono/dist/cjs/middleware/method-override/index.js +0 -105
  2312. package/node_modules/hono/dist/cjs/middleware/powered-by/index.js +0 -33
  2313. package/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +0 -38
  2314. package/node_modules/hono/dist/cjs/middleware/request-id/index.js +0 -28
  2315. package/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +0 -44
  2316. package/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +0 -30
  2317. package/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +0 -16
  2318. package/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +0 -190
  2319. package/node_modules/hono/dist/cjs/middleware/serve-static/index.js +0 -100
  2320. package/node_modules/hono/dist/cjs/middleware/serve-static/path.js +0 -41
  2321. package/node_modules/hono/dist/cjs/middleware/timeout/index.js +0 -48
  2322. package/node_modules/hono/dist/cjs/middleware/timing/index.js +0 -36
  2323. package/node_modules/hono/dist/cjs/middleware/timing/timing.js +0 -129
  2324. package/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +0 -63
  2325. package/node_modules/hono/dist/cjs/package.json +0 -3
  2326. package/node_modules/hono/dist/cjs/preset/quick.js +0 -39
  2327. package/node_modules/hono/dist/cjs/preset/tiny.js +0 -35
  2328. package/node_modules/hono/dist/cjs/request/constants.js +0 -28
  2329. package/node_modules/hono/dist/cjs/request.js +0 -325
  2330. package/node_modules/hono/dist/cjs/router/linear-router/index.js +0 -28
  2331. package/node_modules/hono/dist/cjs/router/linear-router/router.js +0 -141
  2332. package/node_modules/hono/dist/cjs/router/pattern-router/index.js +0 -28
  2333. package/node_modules/hono/dist/cjs/router/pattern-router/router.js +0 -71
  2334. package/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +0 -35
  2335. package/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +0 -49
  2336. package/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +0 -135
  2337. package/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +0 -167
  2338. package/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +0 -209
  2339. package/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +0 -82
  2340. package/node_modules/hono/dist/cjs/router/smart-router/index.js +0 -28
  2341. package/node_modules/hono/dist/cjs/router/smart-router/router.js +0 -81
  2342. package/node_modules/hono/dist/cjs/router/trie-router/index.js +0 -28
  2343. package/node_modules/hono/dist/cjs/router/trie-router/node.js +0 -202
  2344. package/node_modules/hono/dist/cjs/router/trie-router/router.js +0 -49
  2345. package/node_modules/hono/dist/cjs/router.js +0 -41
  2346. package/node_modules/hono/dist/cjs/types.js +0 -29
  2347. package/node_modules/hono/dist/cjs/utils/accept.js +0 -86
  2348. package/node_modules/hono/dist/cjs/utils/basic-auth.js +0 -46
  2349. package/node_modules/hono/dist/cjs/utils/body.js +0 -95
  2350. package/node_modules/hono/dist/cjs/utils/buffer.js +0 -103
  2351. package/node_modules/hono/dist/cjs/utils/color.js +0 -49
  2352. package/node_modules/hono/dist/cjs/utils/compress.js +0 -28
  2353. package/node_modules/hono/dist/cjs/utils/concurrent.js +0 -62
  2354. package/node_modules/hono/dist/cjs/utils/constants.js +0 -28
  2355. package/node_modules/hono/dist/cjs/utils/cookie.js +0 -178
  2356. package/node_modules/hono/dist/cjs/utils/crypto.js +0 -70
  2357. package/node_modules/hono/dist/cjs/utils/encode.js +0 -55
  2358. package/node_modules/hono/dist/cjs/utils/filepath.js +0 -59
  2359. package/node_modules/hono/dist/cjs/utils/handler.js +0 -37
  2360. package/node_modules/hono/dist/cjs/utils/headers.js +0 -16
  2361. package/node_modules/hono/dist/cjs/utils/html.js +0 -151
  2362. package/node_modules/hono/dist/cjs/utils/http-status.js +0 -16
  2363. package/node_modules/hono/dist/cjs/utils/ipaddr.js +0 -130
  2364. package/node_modules/hono/dist/cjs/utils/jwt/index.js +0 -29
  2365. package/node_modules/hono/dist/cjs/utils/jwt/jwa.js +0 -43
  2366. package/node_modules/hono/dist/cjs/utils/jwt/jws.js +0 -216
  2367. package/node_modules/hono/dist/cjs/utils/jwt/jwt.js +0 -214
  2368. package/node_modules/hono/dist/cjs/utils/jwt/types.js +0 -162
  2369. package/node_modules/hono/dist/cjs/utils/jwt/utf8.js +0 -31
  2370. package/node_modules/hono/dist/cjs/utils/mime.js +0 -109
  2371. package/node_modules/hono/dist/cjs/utils/stream.js +0 -102
  2372. package/node_modules/hono/dist/cjs/utils/types.js +0 -16
  2373. package/node_modules/hono/dist/cjs/utils/url.js +0 -257
  2374. package/node_modules/hono/dist/cjs/validator/index.js +0 -28
  2375. package/node_modules/hono/dist/cjs/validator/utils.js +0 -16
  2376. package/node_modules/hono/dist/cjs/validator/validator.js +0 -109
  2377. package/node_modules/hono/dist/client/client.js +0 -180
  2378. package/node_modules/hono/dist/client/fetch-result-please.js +0 -62
  2379. package/node_modules/hono/dist/client/index.js +0 -8
  2380. package/node_modules/hono/dist/client/types.js +0 -0
  2381. package/node_modules/hono/dist/client/utils.js +0 -76
  2382. package/node_modules/hono/dist/compose.js +0 -46
  2383. package/node_modules/hono/dist/context.js +0 -412
  2384. package/node_modules/hono/dist/helper/accepts/accepts.js +0 -20
  2385. package/node_modules/hono/dist/helper/accepts/index.js +0 -5
  2386. package/node_modules/hono/dist/helper/adapter/index.js +0 -56
  2387. package/node_modules/hono/dist/helper/conninfo/index.js +0 -0
  2388. package/node_modules/hono/dist/helper/conninfo/types.js +0 -0
  2389. package/node_modules/hono/dist/helper/cookie/index.js +0 -102
  2390. package/node_modules/hono/dist/helper/css/common.js +0 -185
  2391. package/node_modules/hono/dist/helper/css/index.js +0 -125
  2392. package/node_modules/hono/dist/helper/dev/index.js +0 -55
  2393. package/node_modules/hono/dist/helper/factory/index.js +0 -30
  2394. package/node_modules/hono/dist/helper/html/index.js +0 -41
  2395. package/node_modules/hono/dist/helper/proxy/index.js +0 -89
  2396. package/node_modules/hono/dist/helper/route/index.js +0 -46
  2397. package/node_modules/hono/dist/helper/ssg/index.js +0 -19
  2398. package/node_modules/hono/dist/helper/ssg/middleware.js +0 -45
  2399. package/node_modules/hono/dist/helper/ssg/plugins.js +0 -47
  2400. package/node_modules/hono/dist/helper/ssg/ssg.js +0 -287
  2401. package/node_modules/hono/dist/helper/ssg/utils.js +0 -59
  2402. package/node_modules/hono/dist/helper/streaming/index.js +0 -10
  2403. package/node_modules/hono/dist/helper/streaming/sse.js +0 -67
  2404. package/node_modules/hono/dist/helper/streaming/stream.js +0 -34
  2405. package/node_modules/hono/dist/helper/streaming/text.js +0 -12
  2406. package/node_modules/hono/dist/helper/streaming/utils.js +0 -13
  2407. package/node_modules/hono/dist/helper/testing/index.js +0 -11
  2408. package/node_modules/hono/dist/helper/websocket/index.js +0 -57
  2409. package/node_modules/hono/dist/hono-base.js +0 -378
  2410. package/node_modules/hono/dist/hono.js +0 -21
  2411. package/node_modules/hono/dist/http-exception.js +0 -35
  2412. package/node_modules/hono/dist/index.js +0 -5
  2413. package/node_modules/hono/dist/jsx/base.js +0 -331
  2414. package/node_modules/hono/dist/jsx/children.js +0 -21
  2415. package/node_modules/hono/dist/jsx/components.js +0 -178
  2416. package/node_modules/hono/dist/jsx/constants.js +0 -15
  2417. package/node_modules/hono/dist/jsx/context.js +0 -38
  2418. package/node_modules/hono/dist/jsx/dom/client.js +0 -53
  2419. package/node_modules/hono/dist/jsx/dom/components.js +0 -32
  2420. package/node_modules/hono/dist/jsx/dom/context.js +0 -48
  2421. package/node_modules/hono/dist/jsx/dom/css.js +0 -143
  2422. package/node_modules/hono/dist/jsx/dom/hooks/index.js +0 -48
  2423. package/node_modules/hono/dist/jsx/dom/index.js +0 -142
  2424. package/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +0 -337
  2425. package/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +0 -19
  2426. package/node_modules/hono/dist/jsx/dom/jsx-runtime.js +0 -8
  2427. package/node_modules/hono/dist/jsx/dom/render.js +0 -595
  2428. package/node_modules/hono/dist/jsx/dom/server.js +0 -33
  2429. package/node_modules/hono/dist/jsx/dom/utils.js +0 -10
  2430. package/node_modules/hono/dist/jsx/hooks/index.js +0 -328
  2431. package/node_modules/hono/dist/jsx/index.js +0 -103
  2432. package/node_modules/hono/dist/jsx/intrinsic-element/common.js +0 -15
  2433. package/node_modules/hono/dist/jsx/intrinsic-element/components.js +0 -153
  2434. package/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
  2435. package/node_modules/hono/dist/jsx/jsx-dev-runtime.js +0 -18
  2436. package/node_modules/hono/dist/jsx/jsx-runtime.js +0 -41
  2437. package/node_modules/hono/dist/jsx/streaming.js +0 -153
  2438. package/node_modules/hono/dist/jsx/types.js +0 -0
  2439. package/node_modules/hono/dist/jsx/utils.js +0 -27
  2440. package/node_modules/hono/dist/middleware/basic-auth/index.js +0 -66
  2441. package/node_modules/hono/dist/middleware/bearer-auth/index.js +0 -83
  2442. package/node_modules/hono/dist/middleware/body-limit/index.js +0 -62
  2443. package/node_modules/hono/dist/middleware/cache/index.js +0 -89
  2444. package/node_modules/hono/dist/middleware/combine/index.js +0 -77
  2445. package/node_modules/hono/dist/middleware/compress/index.js +0 -39
  2446. package/node_modules/hono/dist/middleware/context-storage/index.js +0 -23
  2447. package/node_modules/hono/dist/middleware/cors/index.js +0 -87
  2448. package/node_modules/hono/dist/middleware/csrf/index.js +0 -55
  2449. package/node_modules/hono/dist/middleware/etag/digest.js +0 -33
  2450. package/node_modules/hono/dist/middleware/etag/index.js +0 -72
  2451. package/node_modules/hono/dist/middleware/ip-restriction/index.js +0 -107
  2452. package/node_modules/hono/dist/middleware/jsx-renderer/index.js +0 -57
  2453. package/node_modules/hono/dist/middleware/jwk/index.js +0 -5
  2454. package/node_modules/hono/dist/middleware/jwk/jwk.js +0 -112
  2455. package/node_modules/hono/dist/middleware/jwt/index.js +0 -11
  2456. package/node_modules/hono/dist/middleware/jwt/jwt.js +0 -114
  2457. package/node_modules/hono/dist/middleware/language/index.js +0 -15
  2458. package/node_modules/hono/dist/middleware/language/language.js +0 -190
  2459. package/node_modules/hono/dist/middleware/logger/index.js +0 -44
  2460. package/node_modules/hono/dist/middleware/method-override/index.js +0 -82
  2461. package/node_modules/hono/dist/middleware/powered-by/index.js +0 -10
  2462. package/node_modules/hono/dist/middleware/pretty-json/index.js +0 -15
  2463. package/node_modules/hono/dist/middleware/request-id/index.js +0 -5
  2464. package/node_modules/hono/dist/middleware/request-id/request-id.js +0 -21
  2465. package/node_modules/hono/dist/middleware/secure-headers/index.js +0 -6
  2466. package/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
  2467. package/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +0 -166
  2468. package/node_modules/hono/dist/middleware/serve-static/index.js +0 -77
  2469. package/node_modules/hono/dist/middleware/serve-static/path.js +0 -18
  2470. package/node_modules/hono/dist/middleware/timeout/index.js +0 -25
  2471. package/node_modules/hono/dist/middleware/timing/index.js +0 -9
  2472. package/node_modules/hono/dist/middleware/timing/timing.js +0 -102
  2473. package/node_modules/hono/dist/middleware/trailing-slash/index.js +0 -39
  2474. package/node_modules/hono/dist/preset/quick.js +0 -16
  2475. package/node_modules/hono/dist/preset/tiny.js +0 -12
  2476. package/node_modules/hono/dist/request/constants.js +0 -5
  2477. package/node_modules/hono/dist/request.js +0 -301
  2478. package/node_modules/hono/dist/router/linear-router/index.js +0 -5
  2479. package/node_modules/hono/dist/router/linear-router/router.js +0 -118
  2480. package/node_modules/hono/dist/router/pattern-router/index.js +0 -5
  2481. package/node_modules/hono/dist/router/pattern-router/router.js +0 -48
  2482. package/node_modules/hono/dist/router/reg-exp-router/index.js +0 -9
  2483. package/node_modules/hono/dist/router/reg-exp-router/matcher.js +0 -25
  2484. package/node_modules/hono/dist/router/reg-exp-router/node.js +0 -111
  2485. package/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +0 -142
  2486. package/node_modules/hono/dist/router/reg-exp-router/router.js +0 -190
  2487. package/node_modules/hono/dist/router/reg-exp-router/trie.js +0 -59
  2488. package/node_modules/hono/dist/router/smart-router/index.js +0 -5
  2489. package/node_modules/hono/dist/router/smart-router/router.js +0 -58
  2490. package/node_modules/hono/dist/router/trie-router/index.js +0 -5
  2491. package/node_modules/hono/dist/router/trie-router/node.js +0 -179
  2492. package/node_modules/hono/dist/router/trie-router/router.js +0 -26
  2493. package/node_modules/hono/dist/router.js +0 -14
  2494. package/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +0 -27
  2495. package/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +0 -184
  2496. package/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +0 -8
  2497. package/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +0 -144
  2498. package/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +0 -7
  2499. package/node_modules/hono/dist/types/adapter/bun/index.d.ts +0 -10
  2500. package/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +0 -3
  2501. package/node_modules/hono/dist/types/adapter/bun/server.d.ts +0 -12
  2502. package/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +0 -13
  2503. package/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +0 -39
  2504. package/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +0 -21
  2505. package/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +0 -33
  2506. package/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +0 -7
  2507. package/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +0 -2
  2508. package/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +0 -7
  2509. package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +0 -4
  2510. package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +0 -16
  2511. package/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +0 -5
  2512. package/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +0 -2
  2513. package/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +0 -7
  2514. package/node_modules/hono/dist/types/adapter/deno/index.d.ts +0 -8
  2515. package/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +0 -3
  2516. package/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +0 -13
  2517. package/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +0 -2
  2518. package/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +0 -2
  2519. package/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +0 -87
  2520. package/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +0 -7
  2521. package/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +0 -21
  2522. package/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +0 -2
  2523. package/node_modules/hono/dist/types/adapter/netlify/index.d.ts +0 -5
  2524. package/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +0 -2
  2525. package/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +0 -16
  2526. package/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +0 -28
  2527. package/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +0 -12
  2528. package/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +0 -2
  2529. package/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +0 -2
  2530. package/node_modules/hono/dist/types/adapter/vercel/index.d.ts +0 -6
  2531. package/node_modules/hono/dist/types/client/client.d.ts +0 -4
  2532. package/node_modules/hono/dist/types/client/fetch-result-please.d.ts +0 -35
  2533. package/node_modules/hono/dist/types/client/index.d.ts +0 -7
  2534. package/node_modules/hono/dist/types/client/types.d.ts +0 -209
  2535. package/node_modules/hono/dist/types/client/utils.d.ts +0 -18
  2536. package/node_modules/hono/dist/types/compose.d.ts +0 -14
  2537. package/node_modules/hono/dist/types/context.d.ts +0 -455
  2538. package/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +0 -30
  2539. package/node_modules/hono/dist/types/helper/accepts/index.d.ts +0 -5
  2540. package/node_modules/hono/dist/types/helper/adapter/index.d.ts +0 -12
  2541. package/node_modules/hono/dist/types/helper/conninfo/index.d.ts +0 -5
  2542. package/node_modules/hono/dist/types/helper/conninfo/types.d.ts +0 -36
  2543. package/node_modules/hono/dist/types/helper/cookie/index.d.ts +0 -24
  2544. package/node_modules/hono/dist/types/helper/css/common.d.ts +0 -42
  2545. package/node_modules/hono/dist/types/helper/css/index.d.ts +0 -73
  2546. package/node_modules/hono/dist/types/helper/dev/index.d.ts +0 -20
  2547. package/node_modules/hono/dist/types/helper/factory/index.d.ts +0 -82
  2548. package/node_modules/hono/dist/types/helper/html/index.d.ts +0 -8
  2549. package/node_modules/hono/dist/types/helper/proxy/index.d.ts +0 -72
  2550. package/node_modules/hono/dist/types/helper/route/index.d.ts +0 -75
  2551. package/node_modules/hono/dist/types/helper/ssg/index.d.ts +0 -7
  2552. package/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +0 -44
  2553. package/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +0 -27
  2554. package/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +0 -91
  2555. package/node_modules/hono/dist/types/helper/ssg/utils.d.ts +0 -15
  2556. package/node_modules/hono/dist/types/helper/streaming/index.d.ts +0 -8
  2557. package/node_modules/hono/dist/types/helper/streaming/sse.d.ts +0 -13
  2558. package/node_modules/hono/dist/types/helper/streaming/stream.d.ts +0 -3
  2559. package/node_modules/hono/dist/types/helper/streaming/text.d.ts +0 -3
  2560. package/node_modules/hono/dist/types/helper/streaming/utils.d.ts +0 -1
  2561. package/node_modules/hono/dist/types/helper/testing/index.d.ts +0 -12
  2562. package/node_modules/hono/dist/types/helper/websocket/index.d.ts +0 -69
  2563. package/node_modules/hono/dist/types/hono-base.d.ts +0 -220
  2564. package/node_modules/hono/dist/types/hono.d.ts +0 -19
  2565. package/node_modules/hono/dist/types/http-exception.d.ts +0 -59
  2566. package/node_modules/hono/dist/types/index.d.ts +0 -36
  2567. package/node_modules/hono/dist/types/jsx/base.d.ts +0 -58
  2568. package/node_modules/hono/dist/types/jsx/children.d.ts +0 -9
  2569. package/node_modules/hono/dist/types/jsx/components.d.ts +0 -15
  2570. package/node_modules/hono/dist/types/jsx/constants.d.ts +0 -6
  2571. package/node_modules/hono/dist/types/jsx/context.d.ts +0 -12
  2572. package/node_modules/hono/dist/types/jsx/dom/client.d.ts +0 -31
  2573. package/node_modules/hono/dist/types/jsx/dom/components.d.ts +0 -10
  2574. package/node_modules/hono/dist/types/jsx/dom/context.d.ts +0 -3
  2575. package/node_modules/hono/dist/types/jsx/dom/css.d.ts +0 -77
  2576. package/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +0 -39
  2577. package/node_modules/hono/dist/types/jsx/dom/index.d.ts +0 -88
  2578. package/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +0 -16
  2579. package/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +0 -8
  2580. package/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +0 -7
  2581. package/node_modules/hono/dist/types/jsx/dom/render.d.ts +0 -73
  2582. package/node_modules/hono/dist/types/jsx/dom/server.d.ts +0 -106
  2583. package/node_modules/hono/dist/types/jsx/dom/utils.d.ts +0 -1
  2584. package/node_modules/hono/dist/types/jsx/hooks/index.d.ts +0 -45
  2585. package/node_modules/hono/dist/types/jsx/index.d.ts +0 -75
  2586. package/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +0 -3
  2587. package/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +0 -13
  2588. package/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +0 -722
  2589. package/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +0 -8
  2590. package/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +0 -12
  2591. package/node_modules/hono/dist/types/jsx/streaming.d.ts +0 -36
  2592. package/node_modules/hono/dist/types/jsx/types.d.ts +0 -35
  2593. package/node_modules/hono/dist/types/jsx/utils.d.ts +0 -2
  2594. package/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +0 -75
  2595. package/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +0 -91
  2596. package/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +0 -45
  2597. package/node_modules/hono/dist/types/middleware/cache/index.d.ts +0 -41
  2598. package/node_modules/hono/dist/types/middleware/combine/index.d.ts +0 -85
  2599. package/node_modules/hono/dist/types/middleware/compress/index.d.ts +0 -29
  2600. package/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +0 -40
  2601. package/node_modules/hono/dist/types/middleware/cors/index.d.ts +0 -55
  2602. package/node_modules/hono/dist/types/middleware/csrf/index.d.ts +0 -78
  2603. package/node_modules/hono/dist/types/middleware/etag/digest.d.ts +0 -1
  2604. package/node_modules/hono/dist/types/middleware/etag/index.d.ts +0 -42
  2605. package/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +0 -31
  2606. package/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +0 -77
  2607. package/node_modules/hono/dist/types/middleware/jwk/index.d.ts +0 -1
  2608. package/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +0 -54
  2609. package/node_modules/hono/dist/types/middleware/jwt/index.d.ts +0 -8
  2610. package/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +0 -67
  2611. package/node_modules/hono/dist/types/middleware/language/index.d.ts +0 -7
  2612. package/node_modules/hono/dist/types/middleware/language/language.d.ts +0 -102
  2613. package/node_modules/hono/dist/types/middleware/logger/index.d.ts +0 -24
  2614. package/node_modules/hono/dist/types/middleware/method-override/index.d.ts +0 -48
  2615. package/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +0 -29
  2616. package/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +0 -42
  2617. package/node_modules/hono/dist/types/middleware/request-id/index.d.ts +0 -7
  2618. package/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +0 -37
  2619. package/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +0 -8
  2620. package/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +0 -14
  2621. package/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +0 -109
  2622. package/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +0 -31
  2623. package/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +0 -5
  2624. package/node_modules/hono/dist/types/middleware/timeout/index.d.ts +0 -31
  2625. package/node_modules/hono/dist/types/middleware/timing/index.d.ts +0 -7
  2626. package/node_modules/hono/dist/types/middleware/timing/timing.d.ts +0 -129
  2627. package/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +0 -78
  2628. package/node_modules/hono/dist/types/package.json +0 -3
  2629. package/node_modules/hono/dist/types/preset/quick.d.ts +0 -10
  2630. package/node_modules/hono/dist/types/preset/tiny.d.ts +0 -10
  2631. package/node_modules/hono/dist/types/request/constants.d.ts +0 -1
  2632. package/node_modules/hono/dist/types/request.d.ts +0 -313
  2633. package/node_modules/hono/dist/types/router/linear-router/index.d.ts +0 -5
  2634. package/node_modules/hono/dist/types/router/linear-router/router.d.ts +0 -7
  2635. package/node_modules/hono/dist/types/router/pattern-router/index.d.ts +0 -5
  2636. package/node_modules/hono/dist/types/router/pattern-router/router.d.ts +0 -7
  2637. package/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +0 -6
  2638. package/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +0 -7
  2639. package/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +0 -10
  2640. package/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +0 -17
  2641. package/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +0 -11
  2642. package/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +0 -7
  2643. package/node_modules/hono/dist/types/router/smart-router/index.d.ts +0 -5
  2644. package/node_modules/hono/dist/types/router/smart-router/router.d.ts +0 -11
  2645. package/node_modules/hono/dist/types/router/trie-router/index.d.ts +0 -5
  2646. package/node_modules/hono/dist/types/router/trie-router/node.d.ts +0 -7
  2647. package/node_modules/hono/dist/types/router/trie-router/router.d.ts +0 -8
  2648. package/node_modules/hono/dist/types/router.d.ts +0 -97
  2649. package/node_modules/hono/dist/types/types.d.ts +0 -573
  2650. package/node_modules/hono/dist/types/utils/accept.d.ts +0 -11
  2651. package/node_modules/hono/dist/types/utils/basic-auth.d.ts +0 -5
  2652. package/node_modules/hono/dist/types/utils/body.d.ts +0 -79
  2653. package/node_modules/hono/dist/types/utils/buffer.d.ts +0 -17
  2654. package/node_modules/hono/dist/types/utils/color.d.ts +0 -21
  2655. package/node_modules/hono/dist/types/utils/compress.d.ts +0 -8
  2656. package/node_modules/hono/dist/types/utils/concurrent.d.ts +0 -11
  2657. package/node_modules/hono/dist/types/utils/constants.d.ts +0 -4
  2658. package/node_modules/hono/dist/types/utils/cookie.d.ts +0 -40
  2659. package/node_modules/hono/dist/types/utils/crypto.d.ts +0 -15
  2660. package/node_modules/hono/dist/types/utils/encode.d.ts +0 -8
  2661. package/node_modules/hono/dist/types/utils/filepath.d.ts +0 -12
  2662. package/node_modules/hono/dist/types/utils/handler.d.ts +0 -6
  2663. package/node_modules/hono/dist/types/utils/headers.d.ts +0 -8
  2664. package/node_modules/hono/dist/types/utils/html.d.ts +0 -44
  2665. package/node_modules/hono/dist/types/utils/http-status.d.ts +0 -32
  2666. package/node_modules/hono/dist/types/utils/ipaddr.d.ts +0 -40
  2667. package/node_modules/hono/dist/types/utils/jwt/index.d.ts +0 -18
  2668. package/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +0 -23
  2669. package/node_modules/hono/dist/types/utils/jwt/jws.d.ts +0 -12
  2670. package/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +0 -43
  2671. package/node_modules/hono/dist/types/utils/jwt/types.d.ts +0 -86
  2672. package/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +0 -6
  2673. package/node_modules/hono/dist/types/utils/mime.d.ts +0 -70
  2674. package/node_modules/hono/dist/types/utils/stream.d.ts +0 -31
  2675. package/node_modules/hono/dist/types/utils/types.d.ts +0 -74
  2676. package/node_modules/hono/dist/types/utils/url.d.ts +0 -39
  2677. package/node_modules/hono/dist/types/validator/index.d.ts +0 -7
  2678. package/node_modules/hono/dist/types/validator/utils.d.ts +0 -29
  2679. package/node_modules/hono/dist/types/validator/validator.d.ts +0 -16
  2680. package/node_modules/hono/dist/types.js +0 -6
  2681. package/node_modules/hono/dist/utils/accept.js +0 -63
  2682. package/node_modules/hono/dist/utils/basic-auth.js +0 -23
  2683. package/node_modules/hono/dist/utils/body.js +0 -72
  2684. package/node_modules/hono/dist/utils/buffer.js +0 -77
  2685. package/node_modules/hono/dist/utils/color.js +0 -25
  2686. package/node_modules/hono/dist/utils/compress.js +0 -5
  2687. package/node_modules/hono/dist/utils/concurrent.js +0 -39
  2688. package/node_modules/hono/dist/utils/constants.js +0 -5
  2689. package/node_modules/hono/dist/utils/cookie.js +0 -152
  2690. package/node_modules/hono/dist/utils/crypto.js +0 -44
  2691. package/node_modules/hono/dist/utils/encode.js +0 -29
  2692. package/node_modules/hono/dist/utils/filepath.js +0 -35
  2693. package/node_modules/hono/dist/utils/handler.js +0 -13
  2694. package/node_modules/hono/dist/utils/headers.js +0 -0
  2695. package/node_modules/hono/dist/utils/html.js +0 -123
  2696. package/node_modules/hono/dist/utils/http-status.js +0 -0
  2697. package/node_modules/hono/dist/utils/ipaddr.js +0 -102
  2698. package/node_modules/hono/dist/utils/jwt/index.js +0 -6
  2699. package/node_modules/hono/dist/utils/jwt/jwa.js +0 -20
  2700. package/node_modules/hono/dist/utils/jwt/jws.js +0 -192
  2701. package/node_modules/hono/dist/utils/jwt/jwt.js +0 -201
  2702. package/node_modules/hono/dist/utils/jwt/types.js +0 -124
  2703. package/node_modules/hono/dist/utils/jwt/utf8.js +0 -7
  2704. package/node_modules/hono/dist/utils/mime.js +0 -84
  2705. package/node_modules/hono/dist/utils/stream.js +0 -79
  2706. package/node_modules/hono/dist/utils/types.js +0 -0
  2707. package/node_modules/hono/dist/utils/url.js +0 -222
  2708. package/node_modules/hono/dist/validator/index.js +0 -5
  2709. package/node_modules/hono/dist/validator/utils.js +0 -0
  2710. package/node_modules/hono/dist/validator/validator.js +0 -86
  2711. package/node_modules/hono/package.json +0 -691
  2712. package/node_modules/http-errors/HISTORY.md +0 -186
  2713. package/node_modules/http-errors/LICENSE +0 -23
  2714. package/node_modules/http-errors/README.md +0 -169
  2715. package/node_modules/http-errors/index.js +0 -290
  2716. package/node_modules/http-errors/package.json +0 -54
  2717. package/node_modules/iconv-lite/LICENSE +0 -21
  2718. package/node_modules/iconv-lite/README.md +0 -138
  2719. package/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -532
  2720. package/node_modules/iconv-lite/encodings/dbcs-data.js +0 -185
  2721. package/node_modules/iconv-lite/encodings/index.js +0 -23
  2722. package/node_modules/iconv-lite/encodings/internal.js +0 -218
  2723. package/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -75
  2724. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
  2725. package/node_modules/iconv-lite/encodings/sbcs-data.js +0 -178
  2726. package/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
  2727. package/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
  2728. package/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
  2729. package/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
  2730. package/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
  2731. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
  2732. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
  2733. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
  2734. package/node_modules/iconv-lite/encodings/utf16.js +0 -187
  2735. package/node_modules/iconv-lite/encodings/utf32.js +0 -307
  2736. package/node_modules/iconv-lite/encodings/utf7.js +0 -283
  2737. package/node_modules/iconv-lite/lib/bom-handling.js +0 -48
  2738. package/node_modules/iconv-lite/lib/helpers/merge-exports.js +0 -13
  2739. package/node_modules/iconv-lite/lib/index.d.ts +0 -129
  2740. package/node_modules/iconv-lite/lib/index.js +0 -182
  2741. package/node_modules/iconv-lite/lib/streams.js +0 -105
  2742. package/node_modules/iconv-lite/package.json +0 -70
  2743. package/node_modules/iconv-lite/types/encodings.d.ts +0 -423
  2744. package/node_modules/inherits/LICENSE +0 -16
  2745. package/node_modules/inherits/README.md +0 -42
  2746. package/node_modules/inherits/inherits.js +0 -9
  2747. package/node_modules/inherits/inherits_browser.js +0 -27
  2748. package/node_modules/inherits/package.json +0 -29
  2749. package/node_modules/ip-address/LICENSE +0 -19
  2750. package/node_modules/ip-address/README.md +0 -105
  2751. package/node_modules/ip-address/dist/address-error.d.ts +0 -5
  2752. package/node_modules/ip-address/dist/address-error.d.ts.map +0 -1
  2753. package/node_modules/ip-address/dist/address-error.js +0 -12
  2754. package/node_modules/ip-address/dist/address-error.js.map +0 -1
  2755. package/node_modules/ip-address/dist/common.d.ts +0 -15
  2756. package/node_modules/ip-address/dist/common.d.ts.map +0 -1
  2757. package/node_modules/ip-address/dist/common.js +0 -46
  2758. package/node_modules/ip-address/dist/common.js.map +0 -1
  2759. package/node_modules/ip-address/dist/ip-address.d.ts +0 -8
  2760. package/node_modules/ip-address/dist/ip-address.d.ts.map +0 -1
  2761. package/node_modules/ip-address/dist/ip-address.js +0 -35
  2762. package/node_modules/ip-address/dist/ip-address.js.map +0 -1
  2763. package/node_modules/ip-address/dist/ipv4.d.ts +0 -209
  2764. package/node_modules/ip-address/dist/ipv4.d.ts.map +0 -1
  2765. package/node_modules/ip-address/dist/ipv4.js +0 -360
  2766. package/node_modules/ip-address/dist/ipv4.js.map +0 -1
  2767. package/node_modules/ip-address/dist/ipv6.d.ts +0 -428
  2768. package/node_modules/ip-address/dist/ipv6.d.ts.map +0 -1
  2769. package/node_modules/ip-address/dist/ipv6.js +0 -1003
  2770. package/node_modules/ip-address/dist/ipv6.js.map +0 -1
  2771. package/node_modules/ip-address/dist/v4/constants.d.ts +0 -5
  2772. package/node_modules/ip-address/dist/v4/constants.d.ts.map +0 -1
  2773. package/node_modules/ip-address/dist/v4/constants.js +0 -8
  2774. package/node_modules/ip-address/dist/v4/constants.js.map +0 -1
  2775. package/node_modules/ip-address/dist/v6/constants.d.ts +0 -45
  2776. package/node_modules/ip-address/dist/v6/constants.d.ts.map +0 -1
  2777. package/node_modules/ip-address/dist/v6/constants.js +0 -76
  2778. package/node_modules/ip-address/dist/v6/constants.js.map +0 -1
  2779. package/node_modules/ip-address/dist/v6/helpers.d.ts +0 -18
  2780. package/node_modules/ip-address/dist/v6/helpers.d.ts.map +0 -1
  2781. package/node_modules/ip-address/dist/v6/helpers.js +0 -45
  2782. package/node_modules/ip-address/dist/v6/helpers.js.map +0 -1
  2783. package/node_modules/ip-address/dist/v6/regular-expressions.d.ts +0 -6
  2784. package/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +0 -1
  2785. package/node_modules/ip-address/dist/v6/regular-expressions.js +0 -95
  2786. package/node_modules/ip-address/dist/v6/regular-expressions.js.map +0 -1
  2787. package/node_modules/ip-address/package.json +0 -78
  2788. package/node_modules/ip-address/src/address-error.ts +0 -11
  2789. package/node_modules/ip-address/src/common.ts +0 -55
  2790. package/node_modules/ip-address/src/ip-address.ts +0 -7
  2791. package/node_modules/ip-address/src/ipv4.ts +0 -394
  2792. package/node_modules/ip-address/src/ipv6.ts +0 -1212
  2793. package/node_modules/ip-address/src/v4/constants.ts +0 -7
  2794. package/node_modules/ip-address/src/v6/constants.ts +0 -79
  2795. package/node_modules/ip-address/src/v6/helpers.ts +0 -48
  2796. package/node_modules/ip-address/src/v6/regular-expressions.ts +0 -94
  2797. package/node_modules/ipaddr.js/LICENSE +0 -19
  2798. package/node_modules/ipaddr.js/README.md +0 -233
  2799. package/node_modules/ipaddr.js/ipaddr.min.js +0 -1
  2800. package/node_modules/ipaddr.js/lib/ipaddr.js +0 -673
  2801. package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +0 -68
  2802. package/node_modules/ipaddr.js/package.json +0 -35
  2803. package/node_modules/is-promise/LICENSE +0 -19
  2804. package/node_modules/is-promise/index.d.ts +0 -2
  2805. package/node_modules/is-promise/index.js +0 -6
  2806. package/node_modules/is-promise/index.mjs +0 -3
  2807. package/node_modules/is-promise/package.json +0 -30
  2808. package/node_modules/is-promise/readme.md +0 -33
  2809. package/node_modules/isexe/.npmignore +0 -2
  2810. package/node_modules/isexe/LICENSE +0 -15
  2811. package/node_modules/isexe/README.md +0 -51
  2812. package/node_modules/isexe/index.js +0 -57
  2813. package/node_modules/isexe/mode.js +0 -41
  2814. package/node_modules/isexe/package.json +0 -31
  2815. package/node_modules/isexe/test/basic.js +0 -221
  2816. package/node_modules/isexe/windows.js +0 -42
  2817. package/node_modules/jose/LICENSE.md +0 -21
  2818. package/node_modules/jose/README.md +0 -153
  2819. package/node_modules/jose/dist/types/index.d.ts +0 -55
  2820. package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +0 -31
  2821. package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +0 -65
  2822. package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +0 -31
  2823. package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +0 -83
  2824. package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +0 -38
  2825. package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +0 -74
  2826. package/node_modules/jose/dist/types/jwk/embedded.d.ts +0 -17
  2827. package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +0 -32
  2828. package/node_modules/jose/dist/types/jwks/local.d.ts +0 -29
  2829. package/node_modules/jose/dist/types/jwks/remote.d.ts +0 -237
  2830. package/node_modules/jose/dist/types/jws/compact/sign.d.ts +0 -36
  2831. package/node_modules/jose/dist/types/jws/compact/verify.d.ts +0 -33
  2832. package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +0 -42
  2833. package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +0 -33
  2834. package/node_modules/jose/dist/types/jws/general/sign.d.ts +0 -53
  2835. package/node_modules/jose/dist/types/jws/general/verify.d.ts +0 -41
  2836. package/node_modules/jose/dist/types/jwt/decrypt.d.ts +0 -35
  2837. package/node_modules/jose/dist/types/jwt/encrypt.d.ts +0 -91
  2838. package/node_modules/jose/dist/types/jwt/sign.d.ts +0 -43
  2839. package/node_modules/jose/dist/types/jwt/unsecured.d.ts +0 -43
  2840. package/node_modules/jose/dist/types/jwt/verify.d.ts +0 -37
  2841. package/node_modules/jose/dist/types/key/export.d.ts +0 -33
  2842. package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +0 -47
  2843. package/node_modules/jose/dist/types/key/generate_secret.d.ts +0 -35
  2844. package/node_modules/jose/dist/types/key/import.d.ts +0 -83
  2845. package/node_modules/jose/dist/types/types.d.ts +0 -852
  2846. package/node_modules/jose/dist/types/util/base64url.d.ts +0 -9
  2847. package/node_modules/jose/dist/types/util/decode_jwt.d.ts +0 -18
  2848. package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +0 -17
  2849. package/node_modules/jose/dist/types/util/errors.d.ts +0 -213
  2850. package/node_modules/jose/dist/webapi/index.js +0 -32
  2851. package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +0 -27
  2852. package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +0 -27
  2853. package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +0 -155
  2854. package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +0 -165
  2855. package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +0 -31
  2856. package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +0 -182
  2857. package/node_modules/jose/dist/webapi/jwk/embedded.js +0 -17
  2858. package/node_modules/jose/dist/webapi/jwk/thumbprint.js +0 -68
  2859. package/node_modules/jose/dist/webapi/jwks/local.js +0 -119
  2860. package/node_modules/jose/dist/webapi/jwks/remote.js +0 -179
  2861. package/node_modules/jose/dist/webapi/jws/compact/sign.js +0 -18
  2862. package/node_modules/jose/dist/webapi/jws/compact/verify.js +0 -21
  2863. package/node_modules/jose/dist/webapi/jws/flattened/sign.js +0 -89
  2864. package/node_modules/jose/dist/webapi/jws/flattened/verify.js +0 -110
  2865. package/node_modules/jose/dist/webapi/jws/general/sign.js +0 -70
  2866. package/node_modules/jose/dist/webapi/jws/general/verify.js +0 -24
  2867. package/node_modules/jose/dist/webapi/jwt/decrypt.js +0 -23
  2868. package/node_modules/jose/dist/webapi/jwt/encrypt.js +0 -101
  2869. package/node_modules/jose/dist/webapi/jwt/sign.js +0 -52
  2870. package/node_modules/jose/dist/webapi/jwt/unsecured.js +0 -63
  2871. package/node_modules/jose/dist/webapi/jwt/verify.js +0 -15
  2872. package/node_modules/jose/dist/webapi/key/export.js +0 -11
  2873. package/node_modules/jose/dist/webapi/key/generate_key_pair.js +0 -97
  2874. package/node_modules/jose/dist/webapi/key/generate_secret.js +0 -40
  2875. package/node_modules/jose/dist/webapi/key/import.js +0 -57
  2876. package/node_modules/jose/dist/webapi/lib/aesgcmkw.js +0 -15
  2877. package/node_modules/jose/dist/webapi/lib/aeskw.js +0 -25
  2878. package/node_modules/jose/dist/webapi/lib/asn1.js +0 -243
  2879. package/node_modules/jose/dist/webapi/lib/base64.js +0 -22
  2880. package/node_modules/jose/dist/webapi/lib/buffer_utils.js +0 -43
  2881. package/node_modules/jose/dist/webapi/lib/check_key_type.js +0 -122
  2882. package/node_modules/jose/dist/webapi/lib/content_encryption.js +0 -217
  2883. package/node_modules/jose/dist/webapi/lib/crypto_key.js +0 -136
  2884. package/node_modules/jose/dist/webapi/lib/deflate.js +0 -44
  2885. package/node_modules/jose/dist/webapi/lib/ecdhes.js +0 -52
  2886. package/node_modules/jose/dist/webapi/lib/helpers.js +0 -19
  2887. package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +0 -27
  2888. package/node_modules/jose/dist/webapi/lib/is_key_like.js +0 -17
  2889. package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +0 -107
  2890. package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +0 -238
  2891. package/node_modules/jose/dist/webapi/lib/key_management.js +0 -186
  2892. package/node_modules/jose/dist/webapi/lib/key_to_jwk.js +0 -31
  2893. package/node_modules/jose/dist/webapi/lib/normalize_key.js +0 -166
  2894. package/node_modules/jose/dist/webapi/lib/pbes2kw.js +0 -39
  2895. package/node_modules/jose/dist/webapi/lib/rsaes.js +0 -24
  2896. package/node_modules/jose/dist/webapi/lib/signing.js +0 -68
  2897. package/node_modules/jose/dist/webapi/lib/type_checks.js +0 -40
  2898. package/node_modules/jose/dist/webapi/lib/validate_algorithms.js +0 -10
  2899. package/node_modules/jose/dist/webapi/lib/validate_crit.js +0 -33
  2900. package/node_modules/jose/dist/webapi/util/base64url.js +0 -30
  2901. package/node_modules/jose/dist/webapi/util/decode_jwt.js +0 -32
  2902. package/node_modules/jose/dist/webapi/util/decode_protected_header.js +0 -34
  2903. package/node_modules/jose/dist/webapi/util/errors.js +0 -99
  2904. package/node_modules/jose/package.json +0 -200
  2905. package/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
  2906. package/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
  2907. package/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
  2908. package/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
  2909. package/node_modules/json-schema-traverse/LICENSE +0 -21
  2910. package/node_modules/json-schema-traverse/README.md +0 -95
  2911. package/node_modules/json-schema-traverse/index.d.ts +0 -40
  2912. package/node_modules/json-schema-traverse/index.js +0 -93
  2913. package/node_modules/json-schema-traverse/package.json +0 -43
  2914. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
  2915. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
  2916. package/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
  2917. package/node_modules/json-schema-typed/LICENSE.md +0 -57
  2918. package/node_modules/json-schema-typed/README.md +0 -108
  2919. package/node_modules/json-schema-typed/draft_07.d.ts +0 -882
  2920. package/node_modules/json-schema-typed/draft_07.js +0 -328
  2921. package/node_modules/json-schema-typed/draft_2019_09.d.ts +0 -1247
  2922. package/node_modules/json-schema-typed/draft_2019_09.js +0 -349
  2923. package/node_modules/json-schema-typed/draft_2020_12.d.ts +0 -1239
  2924. package/node_modules/json-schema-typed/draft_2020_12.js +0 -352
  2925. package/node_modules/json-schema-typed/package.json +0 -44
  2926. package/node_modules/math-intrinsics/.eslintrc +0 -16
  2927. package/node_modules/math-intrinsics/.github/FUNDING.yml +0 -12
  2928. package/node_modules/math-intrinsics/CHANGELOG.md +0 -24
  2929. package/node_modules/math-intrinsics/LICENSE +0 -21
  2930. package/node_modules/math-intrinsics/README.md +0 -50
  2931. package/node_modules/math-intrinsics/abs.d.ts +0 -1
  2932. package/node_modules/math-intrinsics/abs.js +0 -4
  2933. package/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +0 -3
  2934. package/node_modules/math-intrinsics/constants/maxArrayLength.js +0 -4
  2935. package/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +0 -3
  2936. package/node_modules/math-intrinsics/constants/maxSafeInteger.js +0 -5
  2937. package/node_modules/math-intrinsics/constants/maxValue.d.ts +0 -3
  2938. package/node_modules/math-intrinsics/constants/maxValue.js +0 -5
  2939. package/node_modules/math-intrinsics/floor.d.ts +0 -1
  2940. package/node_modules/math-intrinsics/floor.js +0 -4
  2941. package/node_modules/math-intrinsics/isFinite.d.ts +0 -3
  2942. package/node_modules/math-intrinsics/isFinite.js +0 -12
  2943. package/node_modules/math-intrinsics/isInteger.d.ts +0 -3
  2944. package/node_modules/math-intrinsics/isInteger.js +0 -16
  2945. package/node_modules/math-intrinsics/isNaN.d.ts +0 -1
  2946. package/node_modules/math-intrinsics/isNaN.js +0 -6
  2947. package/node_modules/math-intrinsics/isNegativeZero.d.ts +0 -3
  2948. package/node_modules/math-intrinsics/isNegativeZero.js +0 -6
  2949. package/node_modules/math-intrinsics/max.d.ts +0 -1
  2950. package/node_modules/math-intrinsics/max.js +0 -4
  2951. package/node_modules/math-intrinsics/min.d.ts +0 -1
  2952. package/node_modules/math-intrinsics/min.js +0 -4
  2953. package/node_modules/math-intrinsics/mod.d.ts +0 -3
  2954. package/node_modules/math-intrinsics/mod.js +0 -9
  2955. package/node_modules/math-intrinsics/package.json +0 -86
  2956. package/node_modules/math-intrinsics/pow.d.ts +0 -1
  2957. package/node_modules/math-intrinsics/pow.js +0 -4
  2958. package/node_modules/math-intrinsics/round.d.ts +0 -1
  2959. package/node_modules/math-intrinsics/round.js +0 -4
  2960. package/node_modules/math-intrinsics/sign.d.ts +0 -3
  2961. package/node_modules/math-intrinsics/sign.js +0 -11
  2962. package/node_modules/math-intrinsics/test/index.js +0 -192
  2963. package/node_modules/math-intrinsics/tsconfig.json +0 -3
  2964. package/node_modules/media-typer/HISTORY.md +0 -50
  2965. package/node_modules/media-typer/LICENSE +0 -22
  2966. package/node_modules/media-typer/README.md +0 -93
  2967. package/node_modules/media-typer/index.js +0 -143
  2968. package/node_modules/media-typer/package.json +0 -33
  2969. package/node_modules/merge-descriptors/index.d.ts +0 -11
  2970. package/node_modules/merge-descriptors/index.js +0 -26
  2971. package/node_modules/merge-descriptors/license +0 -11
  2972. package/node_modules/merge-descriptors/package.json +0 -50
  2973. package/node_modules/merge-descriptors/readme.md +0 -55
  2974. package/node_modules/mime-db/HISTORY.md +0 -541
  2975. package/node_modules/mime-db/LICENSE +0 -23
  2976. package/node_modules/mime-db/README.md +0 -109
  2977. package/node_modules/mime-db/db.json +0 -9342
  2978. package/node_modules/mime-db/index.js +0 -12
  2979. package/node_modules/mime-db/package.json +0 -56
  2980. package/node_modules/mime-types/HISTORY.md +0 -428
  2981. package/node_modules/mime-types/LICENSE +0 -23
  2982. package/node_modules/mime-types/README.md +0 -126
  2983. package/node_modules/mime-types/index.js +0 -211
  2984. package/node_modules/mime-types/mimeScore.js +0 -57
  2985. package/node_modules/mime-types/package.json +0 -49
  2986. package/node_modules/ms/index.js +0 -162
  2987. package/node_modules/ms/license.md +0 -21
  2988. package/node_modules/ms/package.json +0 -38
  2989. package/node_modules/ms/readme.md +0 -59
  2990. package/node_modules/negotiator/HISTORY.md +0 -114
  2991. package/node_modules/negotiator/LICENSE +0 -24
  2992. package/node_modules/negotiator/README.md +0 -212
  2993. package/node_modules/negotiator/index.js +0 -83
  2994. package/node_modules/negotiator/lib/charset.js +0 -169
  2995. package/node_modules/negotiator/lib/encoding.js +0 -205
  2996. package/node_modules/negotiator/lib/language.js +0 -179
  2997. package/node_modules/negotiator/lib/mediaType.js +0 -294
  2998. package/node_modules/negotiator/package.json +0 -43
  2999. package/node_modules/object-assign/index.js +0 -90
  3000. package/node_modules/object-assign/license +0 -21
  3001. package/node_modules/object-assign/package.json +0 -42
  3002. package/node_modules/object-assign/readme.md +0 -61
  3003. package/node_modules/object-inspect/.eslintrc +0 -53
  3004. package/node_modules/object-inspect/.github/FUNDING.yml +0 -12
  3005. package/node_modules/object-inspect/.nycrc +0 -13
  3006. package/node_modules/object-inspect/CHANGELOG.md +0 -424
  3007. package/node_modules/object-inspect/LICENSE +0 -21
  3008. package/node_modules/object-inspect/example/all.js +0 -23
  3009. package/node_modules/object-inspect/example/circular.js +0 -6
  3010. package/node_modules/object-inspect/example/fn.js +0 -5
  3011. package/node_modules/object-inspect/example/inspect.js +0 -10
  3012. package/node_modules/object-inspect/index.js +0 -544
  3013. package/node_modules/object-inspect/package-support.json +0 -20
  3014. package/node_modules/object-inspect/package.json +0 -105
  3015. package/node_modules/object-inspect/readme.markdown +0 -84
  3016. package/node_modules/object-inspect/test/bigint.js +0 -58
  3017. package/node_modules/object-inspect/test/browser/dom.js +0 -15
  3018. package/node_modules/object-inspect/test/circular.js +0 -16
  3019. package/node_modules/object-inspect/test/deep.js +0 -12
  3020. package/node_modules/object-inspect/test/element.js +0 -53
  3021. package/node_modules/object-inspect/test/err.js +0 -48
  3022. package/node_modules/object-inspect/test/fakes.js +0 -29
  3023. package/node_modules/object-inspect/test/fn.js +0 -76
  3024. package/node_modules/object-inspect/test/global.js +0 -17
  3025. package/node_modules/object-inspect/test/has.js +0 -15
  3026. package/node_modules/object-inspect/test/holes.js +0 -15
  3027. package/node_modules/object-inspect/test/indent-option.js +0 -271
  3028. package/node_modules/object-inspect/test/inspect.js +0 -139
  3029. package/node_modules/object-inspect/test/lowbyte.js +0 -12
  3030. package/node_modules/object-inspect/test/number.js +0 -58
  3031. package/node_modules/object-inspect/test/quoteStyle.js +0 -26
  3032. package/node_modules/object-inspect/test/toStringTag.js +0 -40
  3033. package/node_modules/object-inspect/test/undef.js +0 -12
  3034. package/node_modules/object-inspect/test/values.js +0 -261
  3035. package/node_modules/object-inspect/test-core-js.js +0 -26
  3036. package/node_modules/object-inspect/util.inspect.js +0 -1
  3037. package/node_modules/on-finished/HISTORY.md +0 -98
  3038. package/node_modules/on-finished/LICENSE +0 -23
  3039. package/node_modules/on-finished/README.md +0 -162
  3040. package/node_modules/on-finished/index.js +0 -234
  3041. package/node_modules/on-finished/package.json +0 -39
  3042. package/node_modules/once/LICENSE +0 -15
  3043. package/node_modules/once/README.md +0 -79
  3044. package/node_modules/once/once.js +0 -42
  3045. package/node_modules/once/package.json +0 -33
  3046. package/node_modules/parseurl/HISTORY.md +0 -58
  3047. package/node_modules/parseurl/LICENSE +0 -24
  3048. package/node_modules/parseurl/README.md +0 -133
  3049. package/node_modules/parseurl/index.js +0 -158
  3050. package/node_modules/parseurl/package.json +0 -40
  3051. package/node_modules/path-key/index.d.ts +0 -40
  3052. package/node_modules/path-key/index.js +0 -16
  3053. package/node_modules/path-key/license +0 -9
  3054. package/node_modules/path-key/package.json +0 -39
  3055. package/node_modules/path-key/readme.md +0 -61
  3056. package/node_modules/path-to-regexp/LICENSE +0 -21
  3057. package/node_modules/path-to-regexp/Readme.md +0 -224
  3058. package/node_modules/path-to-regexp/dist/index.d.ts +0 -144
  3059. package/node_modules/path-to-regexp/dist/index.js +0 -409
  3060. package/node_modules/path-to-regexp/dist/index.js.map +0 -1
  3061. package/node_modules/path-to-regexp/package.json +0 -64
  3062. package/node_modules/pkce-challenge/CHANGELOG.md +0 -114
  3063. package/node_modules/pkce-challenge/LICENSE +0 -21
  3064. package/node_modules/pkce-challenge/README.md +0 -55
  3065. package/node_modules/pkce-challenge/dist/index.browser.d.ts +0 -19
  3066. package/node_modules/pkce-challenge/dist/index.browser.js +0 -75
  3067. package/node_modules/pkce-challenge/dist/index.node.cjs +0 -83
  3068. package/node_modules/pkce-challenge/dist/index.node.d.cts +0 -19
  3069. package/node_modules/pkce-challenge/dist/index.node.d.ts +0 -19
  3070. package/node_modules/pkce-challenge/dist/index.node.js +0 -78
  3071. package/node_modules/pkce-challenge/package.json +0 -59
  3072. package/node_modules/proxy-addr/HISTORY.md +0 -161
  3073. package/node_modules/proxy-addr/LICENSE +0 -22
  3074. package/node_modules/proxy-addr/README.md +0 -139
  3075. package/node_modules/proxy-addr/index.js +0 -327
  3076. package/node_modules/proxy-addr/package.json +0 -47
  3077. package/node_modules/qs/.editorconfig +0 -46
  3078. package/node_modules/qs/.github/FUNDING.yml +0 -12
  3079. package/node_modules/qs/.github/SECURITY.md +0 -11
  3080. package/node_modules/qs/.github/THREAT_MODEL.md +0 -78
  3081. package/node_modules/qs/.nycrc +0 -13
  3082. package/node_modules/qs/CHANGELOG.md +0 -806
  3083. package/node_modules/qs/LICENSE.md +0 -29
  3084. package/node_modules/qs/README.md +0 -758
  3085. package/node_modules/qs/dist/qs.js +0 -141
  3086. package/node_modules/qs/eslint.config.mjs +0 -56
  3087. package/node_modules/qs/lib/formats.js +0 -23
  3088. package/node_modules/qs/lib/index.js +0 -11
  3089. package/node_modules/qs/lib/parse.js +0 -373
  3090. package/node_modules/qs/lib/stringify.js +0 -356
  3091. package/node_modules/qs/lib/utils.js +0 -342
  3092. package/node_modules/qs/package.json +0 -94
  3093. package/node_modules/qs/test/empty-keys-cases.js +0 -267
  3094. package/node_modules/qs/test/parse.js +0 -1568
  3095. package/node_modules/qs/test/stringify.js +0 -1310
  3096. package/node_modules/qs/test/utils.js +0 -404
  3097. package/node_modules/range-parser/HISTORY.md +0 -56
  3098. package/node_modules/range-parser/LICENSE +0 -23
  3099. package/node_modules/range-parser/README.md +0 -84
  3100. package/node_modules/range-parser/index.js +0 -162
  3101. package/node_modules/range-parser/package.json +0 -44
  3102. package/node_modules/raw-body/LICENSE +0 -22
  3103. package/node_modules/raw-body/README.md +0 -223
  3104. package/node_modules/raw-body/index.d.ts +0 -85
  3105. package/node_modules/raw-body/index.js +0 -336
  3106. package/node_modules/raw-body/package.json +0 -46
  3107. package/node_modules/require-from-string/index.js +0 -34
  3108. package/node_modules/require-from-string/license +0 -21
  3109. package/node_modules/require-from-string/package.json +0 -28
  3110. package/node_modules/require-from-string/readme.md +0 -56
  3111. package/node_modules/router/HISTORY.md +0 -228
  3112. package/node_modules/router/LICENSE +0 -23
  3113. package/node_modules/router/README.md +0 -416
  3114. package/node_modules/router/index.js +0 -748
  3115. package/node_modules/router/lib/layer.js +0 -247
  3116. package/node_modules/router/lib/route.js +0 -242
  3117. package/node_modules/router/package.json +0 -44
  3118. package/node_modules/safer-buffer/LICENSE +0 -21
  3119. package/node_modules/safer-buffer/Porting-Buffer.md +0 -268
  3120. package/node_modules/safer-buffer/Readme.md +0 -156
  3121. package/node_modules/safer-buffer/dangerous.js +0 -58
  3122. package/node_modules/safer-buffer/package.json +0 -34
  3123. package/node_modules/safer-buffer/safer.js +0 -77
  3124. package/node_modules/safer-buffer/tests.js +0 -406
  3125. package/node_modules/send/LICENSE +0 -23
  3126. package/node_modules/send/README.md +0 -317
  3127. package/node_modules/send/index.js +0 -997
  3128. package/node_modules/send/package.json +0 -63
  3129. package/node_modules/serve-static/LICENSE +0 -25
  3130. package/node_modules/serve-static/README.md +0 -253
  3131. package/node_modules/serve-static/index.js +0 -208
  3132. package/node_modules/serve-static/package.json +0 -44
  3133. package/node_modules/setprototypeof/LICENSE +0 -13
  3134. package/node_modules/setprototypeof/README.md +0 -31
  3135. package/node_modules/setprototypeof/index.d.ts +0 -2
  3136. package/node_modules/setprototypeof/index.js +0 -17
  3137. package/node_modules/setprototypeof/package.json +0 -38
  3138. package/node_modules/setprototypeof/test/index.js +0 -24
  3139. package/node_modules/shebang-command/index.js +0 -19
  3140. package/node_modules/shebang-command/license +0 -9
  3141. package/node_modules/shebang-command/package.json +0 -34
  3142. package/node_modules/shebang-command/readme.md +0 -34
  3143. package/node_modules/shebang-regex/index.d.ts +0 -22
  3144. package/node_modules/shebang-regex/index.js +0 -2
  3145. package/node_modules/shebang-regex/license +0 -9
  3146. package/node_modules/shebang-regex/package.json +0 -35
  3147. package/node_modules/shebang-regex/readme.md +0 -33
  3148. package/node_modules/side-channel/.editorconfig +0 -9
  3149. package/node_modules/side-channel/.eslintrc +0 -12
  3150. package/node_modules/side-channel/.github/FUNDING.yml +0 -12
  3151. package/node_modules/side-channel/.nycrc +0 -13
  3152. package/node_modules/side-channel/CHANGELOG.md +0 -110
  3153. package/node_modules/side-channel/LICENSE +0 -21
  3154. package/node_modules/side-channel/README.md +0 -61
  3155. package/node_modules/side-channel/index.d.ts +0 -14
  3156. package/node_modules/side-channel/index.js +0 -43
  3157. package/node_modules/side-channel/package.json +0 -85
  3158. package/node_modules/side-channel/test/index.js +0 -104
  3159. package/node_modules/side-channel/tsconfig.json +0 -9
  3160. package/node_modules/side-channel-list/.editorconfig +0 -9
  3161. package/node_modules/side-channel-list/.eslintrc +0 -11
  3162. package/node_modules/side-channel-list/.github/FUNDING.yml +0 -12
  3163. package/node_modules/side-channel-list/.nycrc +0 -13
  3164. package/node_modules/side-channel-list/CHANGELOG.md +0 -15
  3165. package/node_modules/side-channel-list/LICENSE +0 -21
  3166. package/node_modules/side-channel-list/README.md +0 -62
  3167. package/node_modules/side-channel-list/index.d.ts +0 -13
  3168. package/node_modules/side-channel-list/index.js +0 -113
  3169. package/node_modules/side-channel-list/list.d.ts +0 -14
  3170. package/node_modules/side-channel-list/package.json +0 -77
  3171. package/node_modules/side-channel-list/test/index.js +0 -104
  3172. package/node_modules/side-channel-list/tsconfig.json +0 -9
  3173. package/node_modules/side-channel-map/.editorconfig +0 -9
  3174. package/node_modules/side-channel-map/.eslintrc +0 -11
  3175. package/node_modules/side-channel-map/.github/FUNDING.yml +0 -12
  3176. package/node_modules/side-channel-map/.nycrc +0 -13
  3177. package/node_modules/side-channel-map/CHANGELOG.md +0 -22
  3178. package/node_modules/side-channel-map/LICENSE +0 -21
  3179. package/node_modules/side-channel-map/README.md +0 -62
  3180. package/node_modules/side-channel-map/index.d.ts +0 -15
  3181. package/node_modules/side-channel-map/index.js +0 -68
  3182. package/node_modules/side-channel-map/package.json +0 -80
  3183. package/node_modules/side-channel-map/test/index.js +0 -114
  3184. package/node_modules/side-channel-map/tsconfig.json +0 -9
  3185. package/node_modules/side-channel-weakmap/.editorconfig +0 -9
  3186. package/node_modules/side-channel-weakmap/.eslintrc +0 -12
  3187. package/node_modules/side-channel-weakmap/.github/FUNDING.yml +0 -12
  3188. package/node_modules/side-channel-weakmap/.nycrc +0 -13
  3189. package/node_modules/side-channel-weakmap/CHANGELOG.md +0 -28
  3190. package/node_modules/side-channel-weakmap/LICENSE +0 -21
  3191. package/node_modules/side-channel-weakmap/README.md +0 -62
  3192. package/node_modules/side-channel-weakmap/index.d.ts +0 -15
  3193. package/node_modules/side-channel-weakmap/index.js +0 -84
  3194. package/node_modules/side-channel-weakmap/package.json +0 -87
  3195. package/node_modules/side-channel-weakmap/test/index.js +0 -114
  3196. package/node_modules/side-channel-weakmap/tsconfig.json +0 -9
  3197. package/node_modules/statuses/HISTORY.md +0 -87
  3198. package/node_modules/statuses/LICENSE +0 -23
  3199. package/node_modules/statuses/README.md +0 -139
  3200. package/node_modules/statuses/codes.json +0 -65
  3201. package/node_modules/statuses/index.js +0 -146
  3202. package/node_modules/statuses/package.json +0 -49
  3203. package/node_modules/toidentifier/HISTORY.md +0 -9
  3204. package/node_modules/toidentifier/LICENSE +0 -21
  3205. package/node_modules/toidentifier/README.md +0 -61
  3206. package/node_modules/toidentifier/index.js +0 -32
  3207. package/node_modules/toidentifier/package.json +0 -38
  3208. package/node_modules/type-is/HISTORY.md +0 -292
  3209. package/node_modules/type-is/LICENSE +0 -23
  3210. package/node_modules/type-is/README.md +0 -198
  3211. package/node_modules/type-is/index.js +0 -250
  3212. package/node_modules/type-is/package.json +0 -47
  3213. package/node_modules/unpipe/HISTORY.md +0 -4
  3214. package/node_modules/unpipe/LICENSE +0 -22
  3215. package/node_modules/unpipe/README.md +0 -43
  3216. package/node_modules/unpipe/index.js +0 -69
  3217. package/node_modules/unpipe/package.json +0 -27
  3218. package/node_modules/vary/HISTORY.md +0 -39
  3219. package/node_modules/vary/LICENSE +0 -22
  3220. package/node_modules/vary/README.md +0 -101
  3221. package/node_modules/vary/index.js +0 -149
  3222. package/node_modules/vary/package.json +0 -43
  3223. package/node_modules/which/LICENSE +0 -15
  3224. package/node_modules/which/README.md +0 -54
  3225. package/node_modules/which/bin/node-which +0 -52
  3226. package/node_modules/which/package.json +0 -43
  3227. package/node_modules/which/which.js +0 -125
  3228. package/node_modules/wrappy/LICENSE +0 -15
  3229. package/node_modules/wrappy/README.md +0 -36
  3230. package/node_modules/wrappy/package.json +0 -29
  3231. package/node_modules/wrappy/wrappy.js +0 -33
  3232. package/node_modules/zod-to-json-schema/.github/CR_logotype-full-color.png +0 -0
  3233. package/node_modules/zod-to-json-schema/.github/FUNDING.yml +0 -1
  3234. package/node_modules/zod-to-json-schema/.prettierrc.json +0 -1
  3235. package/node_modules/zod-to-json-schema/LICENSE +0 -15
  3236. package/node_modules/zod-to-json-schema/README.md +0 -390
  3237. package/node_modules/zod-to-json-schema/changelog.md +0 -82
  3238. package/node_modules/zod-to-json-schema/contributing.md +0 -9
  3239. package/node_modules/zod-to-json-schema/createIndex.ts +0 -32
  3240. package/node_modules/zod-to-json-schema/dist/cjs/Options.js +0 -51
  3241. package/node_modules/zod-to-json-schema/dist/cjs/Refs.js +0 -26
  3242. package/node_modules/zod-to-json-schema/dist/cjs/errorMessages.js +0 -19
  3243. package/node_modules/zod-to-json-schema/dist/cjs/getRelativePath.js +0 -12
  3244. package/node_modules/zod-to-json-schema/dist/cjs/index.js +0 -56
  3245. package/node_modules/zod-to-json-schema/dist/cjs/package.json +0 -1
  3246. package/node_modules/zod-to-json-schema/dist/cjs/parseDef.js +0 -66
  3247. package/node_modules/zod-to-json-schema/dist/cjs/parseTypes.js +0 -2
  3248. package/node_modules/zod-to-json-schema/dist/cjs/parsers/any.js +0 -21
  3249. package/node_modules/zod-to-json-schema/dist/cjs/parsers/array.js +0 -30
  3250. package/node_modules/zod-to-json-schema/dist/cjs/parsers/bigint.js +0 -53
  3251. package/node_modules/zod-to-json-schema/dist/cjs/parsers/boolean.js +0 -9
  3252. package/node_modules/zod-to-json-schema/dist/cjs/parsers/branded.js +0 -8
  3253. package/node_modules/zod-to-json-schema/dist/cjs/parsers/catch.js +0 -8
  3254. package/node_modules/zod-to-json-schema/dist/cjs/parsers/date.js +0 -50
  3255. package/node_modules/zod-to-json-schema/dist/cjs/parsers/default.js +0 -11
  3256. package/node_modules/zod-to-json-schema/dist/cjs/parsers/effects.js +0 -11
  3257. package/node_modules/zod-to-json-schema/dist/cjs/parsers/enum.js +0 -10
  3258. package/node_modules/zod-to-json-schema/dist/cjs/parsers/intersection.js +0 -56
  3259. package/node_modules/zod-to-json-schema/dist/cjs/parsers/literal.js +0 -25
  3260. package/node_modules/zod-to-json-schema/dist/cjs/parsers/map.js +0 -30
  3261. package/node_modules/zod-to-json-schema/dist/cjs/parsers/nativeEnum.js +0 -20
  3262. package/node_modules/zod-to-json-schema/dist/cjs/parsers/never.js +0 -15
  3263. package/node_modules/zod-to-json-schema/dist/cjs/parsers/null.js +0 -14
  3264. package/node_modules/zod-to-json-schema/dist/cjs/parsers/nullable.js +0 -37
  3265. package/node_modules/zod-to-json-schema/dist/cjs/parsers/number.js +0 -56
  3266. package/node_modules/zod-to-json-schema/dist/cjs/parsers/object.js +0 -76
  3267. package/node_modules/zod-to-json-schema/dist/cjs/parsers/optional.js +0 -25
  3268. package/node_modules/zod-to-json-schema/dist/cjs/parsers/pipeline.js +0 -24
  3269. package/node_modules/zod-to-json-schema/dist/cjs/parsers/promise.js +0 -8
  3270. package/node_modules/zod-to-json-schema/dist/cjs/parsers/readonly.js +0 -8
  3271. package/node_modules/zod-to-json-schema/dist/cjs/parsers/record.js +0 -65
  3272. package/node_modules/zod-to-json-schema/dist/cjs/parsers/set.js +0 -24
  3273. package/node_modules/zod-to-json-schema/dist/cjs/parsers/string.js +0 -356
  3274. package/node_modules/zod-to-json-schema/dist/cjs/parsers/tuple.js +0 -36
  3275. package/node_modules/zod-to-json-schema/dist/cjs/parsers/undefined.js +0 -10
  3276. package/node_modules/zod-to-json-schema/dist/cjs/parsers/union.js +0 -84
  3277. package/node_modules/zod-to-json-schema/dist/cjs/parsers/unknown.js +0 -8
  3278. package/node_modules/zod-to-json-schema/dist/cjs/selectParser.js +0 -109
  3279. package/node_modules/zod-to-json-schema/dist/cjs/zodToJsonSchema.js +0 -90
  3280. package/node_modules/zod-to-json-schema/dist/esm/Options.js +0 -46
  3281. package/node_modules/zod-to-json-schema/dist/esm/Refs.js +0 -22
  3282. package/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +0 -14
  3283. package/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +0 -8
  3284. package/node_modules/zod-to-json-schema/dist/esm/index.js +0 -40
  3285. package/node_modules/zod-to-json-schema/dist/esm/package.json +0 -1
  3286. package/node_modules/zod-to-json-schema/dist/esm/parseDef.js +0 -62
  3287. package/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +0 -1
  3288. package/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +0 -17
  3289. package/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +0 -26
  3290. package/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +0 -49
  3291. package/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +0 -5
  3292. package/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +0 -4
  3293. package/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +0 -4
  3294. package/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +0 -46
  3295. package/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +0 -7
  3296. package/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +0 -7
  3297. package/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +0 -6
  3298. package/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +0 -52
  3299. package/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +0 -21
  3300. package/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +0 -26
  3301. package/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +0 -16
  3302. package/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +0 -11
  3303. package/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +0 -10
  3304. package/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +0 -33
  3305. package/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +0 -52
  3306. package/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +0 -72
  3307. package/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +0 -21
  3308. package/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +0 -20
  3309. package/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +0 -4
  3310. package/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +0 -4
  3311. package/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +0 -61
  3312. package/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +0 -20
  3313. package/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +0 -352
  3314. package/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +0 -32
  3315. package/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +0 -6
  3316. package/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +0 -80
  3317. package/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +0 -4
  3318. package/node_modules/zod-to-json-schema/dist/esm/selectParser.js +0 -105
  3319. package/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +0 -87
  3320. package/node_modules/zod-to-json-schema/dist/types/Options.d.ts +0 -37
  3321. package/node_modules/zod-to-json-schema/dist/types/Refs.d.ts +0 -17
  3322. package/node_modules/zod-to-json-schema/dist/types/errorMessages.d.ts +0 -15
  3323. package/node_modules/zod-to-json-schema/dist/types/getRelativePath.d.ts +0 -1
  3324. package/node_modules/zod-to-json-schema/dist/types/index.d.ts +0 -40
  3325. package/node_modules/zod-to-json-schema/dist/types/parseDef.d.ts +0 -4
  3326. package/node_modules/zod-to-json-schema/dist/types/parseTypes.d.ts +0 -34
  3327. package/node_modules/zod-to-json-schema/dist/types/parsers/any.d.ts +0 -5
  3328. package/node_modules/zod-to-json-schema/dist/types/parsers/array.d.ts +0 -12
  3329. package/node_modules/zod-to-json-schema/dist/types/parsers/bigint.d.ts +0 -14
  3330. package/node_modules/zod-to-json-schema/dist/types/parsers/boolean.d.ts +0 -4
  3331. package/node_modules/zod-to-json-schema/dist/types/parsers/branded.d.ts +0 -3
  3332. package/node_modules/zod-to-json-schema/dist/types/parsers/catch.d.ts +0 -3
  3333. package/node_modules/zod-to-json-schema/dist/types/parsers/date.d.ts +0 -15
  3334. package/node_modules/zod-to-json-schema/dist/types/parsers/default.d.ts +0 -6
  3335. package/node_modules/zod-to-json-schema/dist/types/parsers/effects.d.ts +0 -4
  3336. package/node_modules/zod-to-json-schema/dist/types/parsers/enum.d.ts +0 -6
  3337. package/node_modules/zod-to-json-schema/dist/types/parsers/intersection.d.ts +0 -8
  3338. package/node_modules/zod-to-json-schema/dist/types/parsers/literal.d.ts +0 -9
  3339. package/node_modules/zod-to-json-schema/dist/types/parsers/map.d.ts +0 -15
  3340. package/node_modules/zod-to-json-schema/dist/types/parsers/nativeEnum.d.ts +0 -6
  3341. package/node_modules/zod-to-json-schema/dist/types/parsers/never.d.ts +0 -6
  3342. package/node_modules/zod-to-json-schema/dist/types/parsers/null.d.ts +0 -5
  3343. package/node_modules/zod-to-json-schema/dist/types/parsers/nullable.d.ts +0 -10
  3344. package/node_modules/zod-to-json-schema/dist/types/parsers/number.d.ts +0 -13
  3345. package/node_modules/zod-to-json-schema/dist/types/parsers/object.d.ts +0 -10
  3346. package/node_modules/zod-to-json-schema/dist/types/parsers/optional.d.ts +0 -4
  3347. package/node_modules/zod-to-json-schema/dist/types/parsers/pipeline.d.ts +0 -5
  3348. package/node_modules/zod-to-json-schema/dist/types/parsers/promise.d.ts +0 -4
  3349. package/node_modules/zod-to-json-schema/dist/types/parsers/readonly.d.ts +0 -3
  3350. package/node_modules/zod-to-json-schema/dist/types/parsers/record.d.ts +0 -13
  3351. package/node_modules/zod-to-json-schema/dist/types/parsers/set.d.ts +0 -13
  3352. package/node_modules/zod-to-json-schema/dist/types/parsers/string.d.ts +0 -73
  3353. package/node_modules/zod-to-json-schema/dist/types/parsers/tuple.d.ts +0 -13
  3354. package/node_modules/zod-to-json-schema/dist/types/parsers/undefined.d.ts +0 -6
  3355. package/node_modules/zod-to-json-schema/dist/types/parsers/union.d.ts +0 -23
  3356. package/node_modules/zod-to-json-schema/dist/types/parsers/unknown.d.ts +0 -4
  3357. package/node_modules/zod-to-json-schema/dist/types/selectParser.d.ts +0 -5
  3358. package/node_modules/zod-to-json-schema/dist/types/zodToJsonSchema.d.ts +0 -10
  3359. package/node_modules/zod-to-json-schema/package.json +0 -78
  3360. package/node_modules/zod-to-json-schema/postcjs.ts +0 -3
  3361. package/node_modules/zod-to-json-schema/postesm.ts +0 -3
  3362. package/web/.next/standalone/node_modules/@babel/code-frame/lib/index.js +0 -217
  3363. package/web/.next/standalone/node_modules/@babel/code-frame/package.json +0 -32
  3364. package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/identifier.js +0 -70
  3365. package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/index.js +0 -57
  3366. package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/keyword.js +0 -35
  3367. package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/package.json +0 -31
  3368. package/web/.next/standalone/node_modules/callsites/index.js +0 -13
  3369. package/web/.next/standalone/node_modules/callsites/package.json +0 -39
  3370. package/web/.next/standalone/node_modules/cosmiconfig/dist/Explorer.js +0 -170
  3371. package/web/.next/standalone/node_modules/cosmiconfig/dist/ExplorerBase.js +0 -126
  3372. package/web/.next/standalone/node_modules/cosmiconfig/dist/ExplorerSync.js +0 -184
  3373. package/web/.next/standalone/node_modules/cosmiconfig/dist/cacheWrapper.js +0 -32
  3374. package/web/.next/standalone/node_modules/cosmiconfig/dist/canUseDynamicImport.js +0 -23
  3375. package/web/.next/standalone/node_modules/cosmiconfig/dist/defaults.js +0 -105
  3376. package/web/.next/standalone/node_modules/cosmiconfig/dist/getDirectory.js +0 -38
  3377. package/web/.next/standalone/node_modules/cosmiconfig/dist/getPropertyByPath.js +0 -28
  3378. package/web/.next/standalone/node_modules/cosmiconfig/dist/index.js +0 -148
  3379. package/web/.next/standalone/node_modules/cosmiconfig/dist/loaders.js +0 -150
  3380. package/web/.next/standalone/node_modules/cosmiconfig/dist/merge.js +0 -40
  3381. package/web/.next/standalone/node_modules/cosmiconfig/dist/readFile.js +0 -56
  3382. package/web/.next/standalone/node_modules/cosmiconfig/dist/types.js +0 -3
  3383. package/web/.next/standalone/node_modules/cosmiconfig/dist/util.js +0 -99
  3384. package/web/.next/standalone/node_modules/cosmiconfig/package.json +0 -103
  3385. package/web/.next/standalone/node_modules/env-paths/index.js +0 -74
  3386. package/web/.next/standalone/node_modules/env-paths/license +0 -9
  3387. package/web/.next/standalone/node_modules/env-paths/package.json +0 -45
  3388. package/web/.next/standalone/node_modules/env-paths/readme.md +0 -115
  3389. package/web/.next/standalone/node_modules/error-ex/index.js +0 -141
  3390. package/web/.next/standalone/node_modules/error-ex/package.json +0 -46
  3391. package/web/.next/standalone/node_modules/import-fresh/index.js +0 -34
  3392. package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/index.js +0 -47
  3393. package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/license +0 -9
  3394. package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/package.json +0 -34
  3395. package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/readme.md +0 -72
  3396. package/web/.next/standalone/node_modules/import-fresh/package.json +0 -48
  3397. package/web/.next/standalone/node_modules/is-arrayish/index.js +0 -10
  3398. package/web/.next/standalone/node_modules/is-arrayish/package.json +0 -34
  3399. package/web/.next/standalone/node_modules/js-tokens/index.js +0 -23
  3400. package/web/.next/standalone/node_modules/js-tokens/package.json +0 -30
  3401. package/web/.next/standalone/node_modules/js-yaml/index.js +0 -47
  3402. package/web/.next/standalone/node_modules/js-yaml/lib/common.js +0 -59
  3403. package/web/.next/standalone/node_modules/js-yaml/lib/dumper.js +0 -965
  3404. package/web/.next/standalone/node_modules/js-yaml/lib/exception.js +0 -55
  3405. package/web/.next/standalone/node_modules/js-yaml/lib/loader.js +0 -1733
  3406. package/web/.next/standalone/node_modules/js-yaml/lib/schema/core.js +0 -11
  3407. package/web/.next/standalone/node_modules/js-yaml/lib/schema/default.js +0 -22
  3408. package/web/.next/standalone/node_modules/js-yaml/lib/schema/failsafe.js +0 -17
  3409. package/web/.next/standalone/node_modules/js-yaml/lib/schema/json.js +0 -19
  3410. package/web/.next/standalone/node_modules/js-yaml/lib/schema.js +0 -121
  3411. package/web/.next/standalone/node_modules/js-yaml/lib/snippet.js +0 -101
  3412. package/web/.next/standalone/node_modules/js-yaml/lib/type/binary.js +0 -125
  3413. package/web/.next/standalone/node_modules/js-yaml/lib/type/bool.js +0 -35
  3414. package/web/.next/standalone/node_modules/js-yaml/lib/type/float.js +0 -97
  3415. package/web/.next/standalone/node_modules/js-yaml/lib/type/int.js +0 -156
  3416. package/web/.next/standalone/node_modules/js-yaml/lib/type/map.js +0 -8
  3417. package/web/.next/standalone/node_modules/js-yaml/lib/type/merge.js +0 -12
  3418. package/web/.next/standalone/node_modules/js-yaml/lib/type/null.js +0 -35
  3419. package/web/.next/standalone/node_modules/js-yaml/lib/type/omap.js +0 -44
  3420. package/web/.next/standalone/node_modules/js-yaml/lib/type/pairs.js +0 -53
  3421. package/web/.next/standalone/node_modules/js-yaml/lib/type/seq.js +0 -8
  3422. package/web/.next/standalone/node_modules/js-yaml/lib/type/set.js +0 -29
  3423. package/web/.next/standalone/node_modules/js-yaml/lib/type/str.js +0 -8
  3424. package/web/.next/standalone/node_modules/js-yaml/lib/type/timestamp.js +0 -88
  3425. package/web/.next/standalone/node_modules/js-yaml/lib/type.js +0 -66
  3426. package/web/.next/standalone/node_modules/js-yaml/package.json +0 -66
  3427. package/web/.next/standalone/node_modules/json-parse-even-better-errors/index.js +0 -121
  3428. package/web/.next/standalone/node_modules/json-parse-even-better-errors/package.json +0 -33
  3429. package/web/.next/standalone/node_modules/lines-and-columns/build/index.js +0 -62
  3430. package/web/.next/standalone/node_modules/lines-and-columns/package.json +0 -49
  3431. package/web/.next/standalone/node_modules/parent-module/index.js +0 -37
  3432. package/web/.next/standalone/node_modules/parent-module/package.json +0 -46
  3433. package/web/.next/standalone/node_modules/parse-json/index.js +0 -54
  3434. package/web/.next/standalone/node_modules/parse-json/package.json +0 -45
  3435. package/web/.next/standalone/node_modules/picocolors/package.json +0 -25
  3436. package/web/.next/standalone/node_modules/picocolors/picocolors.js +0 -75
  3437. package/web/.next/standalone/node_modules/puppeteer/lib/esm/puppeteer/getConfiguration.js +0 -122
  3438. package/web/.next/standalone/node_modules/puppeteer/lib/esm/puppeteer/puppeteer.js +0 -40
  3439. package/web/.next/standalone/node_modules/puppeteer/package.json +0 -145
  3440. package/web/.next/standalone/packages/web/.env.example +0 -16
  3441. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/package.json +0 -1
  3442. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/puppeteer/getConfiguration.js +0 -122
  3443. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/puppeteer/puppeteer.js +0 -40
  3444. package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/package.json +0 -145
  3445. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__02aa69a2._.js +0 -3
  3446. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__03277e82._.js +0 -3
  3447. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__03d02e36._.js +0 -3
  3448. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06b6b4e9._.js +0 -3
  3449. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06d0fa23._.js +0 -3
  3450. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__09d81126._.js +0 -3
  3451. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0a4bdecd._.js +0 -3
  3452. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0cdc32e7._.js +0 -3
  3453. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0f87f848._.js +0 -3
  3454. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__105e4f26._.js +0 -3
  3455. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__119c6b92._.js +0 -3
  3456. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__120e7cdf._.js +0 -3
  3457. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__137fab33._.js +0 -3
  3458. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__15c7d025._.js +0 -3
  3459. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1b995ded._.js +0 -3
  3460. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1be57288._.js +0 -3
  3461. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1d2f280d._.js +0 -3
  3462. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1e450a04._.js +0 -3
  3463. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__228603ec._.js +0 -3
  3464. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__256d4deb._.js +0 -3
  3465. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2a02fc49._.js +0 -3
  3466. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2d6ad93c._.js +0 -3
  3467. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30055cf3._.js +0 -3
  3468. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__308f1548._.js +0 -3
  3469. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30e803d7._.js +0 -3
  3470. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3cfb9abc._.js +0 -3
  3471. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3d4382ac._.js +0 -3
  3472. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__412dec17._.js +0 -3
  3473. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__41e0efdc._.js +0 -3
  3474. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__42e88695._.js +0 -3
  3475. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__446f586e._.js +0 -3
  3476. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__45147dc5._.js +0 -3
  3477. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__46573554._.js +0 -3
  3478. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__46ba5636._.js +0 -3
  3479. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__47b9cd43._.js +0 -3
  3480. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4a3e9ddd._.js +0 -3
  3481. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4c56df8f._.js +0 -3
  3482. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4d8a3fa3._.js +0 -3
  3483. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5064824d._.js +0 -3
  3484. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__57113ab2._.js +0 -3
  3485. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5b1a6733._.js +0 -3
  3486. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__64061a84._.js +0 -3
  3487. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__668ff2cd._.js +0 -3
  3488. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__6a1b89e2._.js +0 -3
  3489. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__73601621._.js +0 -3
  3490. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__747ac51a._.js +0 -3
  3491. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7ddba7a1._.js +0 -3
  3492. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7e929085._.js +0 -3
  3493. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__80fb443b._.js +0 -3
  3494. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__85538066._.js +0 -3
  3495. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__865615a6._.js +0 -3
  3496. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__87674bea._.js +0 -3
  3497. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__893cfe3c._.js +0 -3
  3498. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__89cafbb6._.js +0 -3
  3499. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8baf1991._.js +0 -3
  3500. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__925bed49._.js +0 -3
  3501. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__92efd41b._.js +0 -3
  3502. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__97b2fe24._.js +0 -3
  3503. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9b2f424f._.js +0 -3
  3504. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9ca51739._.js +0 -3
  3505. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a2cdc6d9._.js +0 -3
  3506. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a80a6abe._.js +0 -3
  3507. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ac588927._.js +0 -3
  3508. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b03e9dba._.js +0 -3
  3509. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b0bc3324._.js +0 -3
  3510. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b39c66d6._.js +0 -3
  3511. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c207ffb8._.js +0 -3
  3512. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c24a825f._.js +0 -3
  3513. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c27d443a._.js +0 -3
  3514. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c624410f._.js +0 -3
  3515. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c6ecf2e6._.js +0 -3
  3516. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c9b787f4._.js +0 -3
  3517. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__cb29be7d._.js +0 -3
  3518. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d0fc233f._.js +0 -3
  3519. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d35c3ac2._.js +0 -3
  3520. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d3d0e4a1._.js +0 -3
  3521. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d62bf196._.js +0 -3
  3522. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d8cd86c9._.js +0 -3
  3523. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__de098ee1._.js +0 -3
  3524. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e2d46590._.js +0 -3
  3525. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6181b22._.js +0 -3
  3526. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e633102f._.js +0 -3
  3527. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7aa992a._.js +0 -3
  3528. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eb0c88b2._.js +0 -3
  3529. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ec231481._.js +0 -3
  3530. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ed83cdf3._.js +0 -3
  3531. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ef43f682._.js +0 -3
  3532. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__efbfac9f._.js +0 -3
  3533. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f12a3bd3._.js +0 -3
  3534. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f134e517._.js +0 -3
  3535. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f4786ce9._.js +0 -3
  3536. package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f7e5d8de._.js +0 -3
  3537. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__009ce29c._.js +0 -3
  3538. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__30a57eb0._.js +0 -3
  3539. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__a3c8291e._.js +0 -3
  3540. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_2ee69b1e._.js +0 -3
  3541. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_dcb0f8d0._.js +0 -3
  3542. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_e90d3b83._.js +0 -3
  3543. package/web/.next/standalone/packages/web/.next/static/chunks/10453b6dfd2f4ff3.js +0 -1
  3544. package/web/.next/standalone/packages/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
  3545. package/web/.next/standalone/packages/web/.next/static/chunks/43f325366a300277.js +0 -6
  3546. package/web/.next/standalone/packages/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
  3547. package/web/.next/standalone/packages/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
  3548. package/web/.next/standalone/packages/web/.next/static/chunks/829b7c763bed7249.js +0 -1
  3549. package/web/.next/standalone/packages/web/.next/static/chunks/bf82908a598c6de5.css +0 -3
  3550. package/web/.next/static/chunks/10453b6dfd2f4ff3.js +0 -1
  3551. package/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
  3552. package/web/.next/static/chunks/43f325366a300277.js +0 -6
  3553. package/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
  3554. package/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
  3555. package/web/.next/static/chunks/829b7c763bed7249.js +0 -1
  3556. package/web/.next/static/chunks/bf82908a598c6de5.css +0 -3
  3557. /package/web/.next/standalone/{node_modules/puppeteer → packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460}/lib/esm/package.json +0 -0
  3558. /package/web/.next/standalone/packages/web/.next/static/{cITMyy2Kt1oANVURclXqm → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
  3559. /package/web/.next/standalone/packages/web/.next/static/{cITMyy2Kt1oANVURclXqm → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
  3560. /package/web/.next/standalone/packages/web/.next/static/{cITMyy2Kt1oANVURclXqm → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
  3561. /package/web/.next/static/{cITMyy2Kt1oANVURclXqm → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
  3562. /package/web/.next/static/{cITMyy2Kt1oANVURclXqm → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
  3563. /package/web/.next/static/{cITMyy2Kt1oANVURclXqm → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
@@ -1,1714 +0,0 @@
1
- /**
2
- * Session Manager -- CRUD for agent sessions.
3
- *
4
- * Orchestrates Runtime, Agent, and Workspace plugins to:
5
- * - Spawn new sessions (create workspace -> create runtime -> launch agent)
6
- * - List sessions (from metadata + live runtime checks)
7
- * - Kill sessions (agent -> runtime -> workspace cleanup)
8
- * - Cleanup completed sessions (PR merged / issue closed)
9
- * - Send messages to running sessions
10
- * - Restore dead sessions
11
- *
12
- * Enforces max 5 sessions per project.
13
- */
14
- import { statSync, existsSync, rmSync, mkdirSync, createWriteStream } from "node:fs";
15
- import { join, basename, dirname } from "node:path";
16
- import { execFile, spawn as spawnProcess } from "node:child_process";
17
- import { promisify } from "node:util";
18
- import { homedir } from "node:os";
19
- import { isIssueNotFoundError, isRestorable, NON_RESTORABLE_STATUSES, SessionNotRestorableError, WorkspaceMissingError, PR_STATE, } from "./types.js";
20
- import { appendConversationEntry, readMetadataRaw, readArchivedMetadataRaw, readArchivedConversationEntries, readConversationEntries, writeMetadata, updateMetadata, deleteMetadata, listMetadata, reserveSessionId, } from "./metadata.js";
21
- import { buildPrompt } from "./prompt-builder.js";
22
- import { getSessionsDir, generateTmuxName, validateAndStoreOrigin, } from "./paths.js";
23
- import { normalizeAgentName } from "./agent-names.js";
24
- const execFileP = promisify(execFile);
25
- /** Direct worktree cleanup fallback when workspace plugin isn't loaded. */
26
- async function directWorktreeCleanup(worktreePath, project, sessionId) {
27
- // Resolve the main repo path
28
- let repoPath = null;
29
- if (project) {
30
- const p = project.path.startsWith("~/")
31
- ? join(homedir(), project.path.slice(2))
32
- : project.path;
33
- if (existsSync(join(p, ".git")))
34
- repoPath = p;
35
- }
36
- if (!repoPath) {
37
- // Infer from worktree path: ~/.worktrees/{projectId}/{sessionId}
38
- const projectId = basename(dirname(worktreePath));
39
- const inferred = join(homedir(), ".conductor", "projects", projectId);
40
- if (existsSync(join(inferred, ".git")))
41
- repoPath = inferred;
42
- }
43
- if (repoPath) {
44
- try {
45
- await execFileP("git", ["worktree", "remove", "--force", worktreePath], {
46
- cwd: repoPath,
47
- timeout: 15_000,
48
- });
49
- }
50
- catch {
51
- if (existsSync(worktreePath)) {
52
- rmSync(worktreePath, { recursive: true, force: true });
53
- }
54
- }
55
- try {
56
- await execFileP("git", ["worktree", "prune"], { cwd: repoPath, timeout: 10_000 });
57
- }
58
- catch { /* best effort */ }
59
- // Delete session branch
60
- const branchName = `session/${sessionId}`;
61
- try {
62
- await execFileP("git", ["branch", "-D", branchName], { cwd: repoPath, timeout: 10_000 });
63
- }
64
- catch { /* branch may not exist */ }
65
- }
66
- else {
67
- // No repo found — just nuke the directory
68
- if (existsSync(worktreePath)) {
69
- rmSync(worktreePath, { recursive: true, force: true });
70
- }
71
- }
72
- }
73
- /** Best-effort branch checkout when running directly in the project repo (no worktree plugin). */
74
- async function checkoutBranchForDirectWorkspace(workspacePath, branch) {
75
- const targetBranch = branch.trim();
76
- if (!targetBranch)
77
- return;
78
- if (!existsSync(join(workspacePath, ".git")))
79
- return;
80
- try {
81
- await execFileP("git", ["fetch", "origin", "--quiet"], {
82
- cwd: workspacePath,
83
- timeout: 20_000,
84
- });
85
- }
86
- catch {
87
- // Offline or no origin remote -- continue.
88
- }
89
- try {
90
- await execFileP("git", ["checkout", targetBranch], {
91
- cwd: workspacePath,
92
- timeout: 20_000,
93
- });
94
- return;
95
- }
96
- catch {
97
- // Try creating a local tracking branch next.
98
- }
99
- try {
100
- await execFileP("git", ["checkout", "--track", "-b", targetBranch, `origin/${targetBranch}`], {
101
- cwd: workspacePath,
102
- timeout: 20_000,
103
- });
104
- return;
105
- }
106
- catch {
107
- // Try creating a plain local branch from current HEAD next.
108
- }
109
- await execFileP("git", ["checkout", "-b", targetBranch], {
110
- cwd: workspacePath,
111
- timeout: 20_000,
112
- });
113
- }
114
- function sanitizeRelativeSubdir(value) {
115
- const trimmed = value.trim();
116
- if (!trimmed || trimmed === ".")
117
- return null;
118
- const normalized = trimmed.replace(/\\/g, "/").replace(/\/+$/g, "");
119
- if (!normalized || normalized === ".")
120
- return null;
121
- if (normalized.startsWith("/") || normalized.includes("..")) {
122
- throw new Error(`Invalid defaultWorkingDirectory "${value}": use a relative path inside the repository`);
123
- }
124
- return normalized.replace(/^\.?\//, "");
125
- }
126
- function resolveAgentWorkspacePath(workspacePath, project) {
127
- const rel = typeof project.defaultWorkingDirectory === "string"
128
- ? sanitizeRelativeSubdir(project.defaultWorkingDirectory)
129
- : null;
130
- if (!rel)
131
- return workspacePath;
132
- const resolved = join(workspacePath, rel);
133
- const stats = statSync(resolved, { throwIfNoEntry: false });
134
- if (!stats || !stats.isDirectory()) {
135
- throw new Error(`defaultWorkingDirectory "${project.defaultWorkingDirectory}" does not exist in workspace "${workspacePath}"`);
136
- }
137
- return resolved;
138
- }
139
- async function workspaceHasGitChanges(workspacePath) {
140
- if (!existsSync(join(workspacePath, ".git")))
141
- return false;
142
- try {
143
- const { stdout } = await execFileP("git", ["status", "--porcelain"], {
144
- cwd: workspacePath,
145
- timeout: 20_000,
146
- });
147
- return stdout.trim().length > 0;
148
- }
149
- catch {
150
- return false;
151
- }
152
- }
153
- async function runWorkspaceCommands(commands, workspacePath, label) {
154
- if (!commands || commands.length === 0)
155
- return;
156
- for (const command of commands) {
157
- const script = command.trim();
158
- if (!script)
159
- continue;
160
- try {
161
- await execFileP("sh", ["-c", script], { cwd: workspacePath, timeout: 300_000 });
162
- }
163
- catch (err) {
164
- const message = err instanceof Error ? err.message : String(err);
165
- console.warn(`[session-manager] ${label} command failed in ${workspacePath}: ${message}`);
166
- }
167
- }
168
- }
169
- /** Max sessions per project -- hard limit enforced at spawn time. */
170
- const MAX_SESSIONS_PER_PROJECT = 5;
171
- /** Escape regex metacharacters in a string. */
172
- function escapeRegex(str) {
173
- return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
174
- }
175
- /** Common stop words to skip when slugifying prompts. */
176
- const STOP_WORDS = new Set([
177
- "a", "an", "the", "and", "or", "but", "in", "on", "at", "to", "for",
178
- "of", "with", "by", "from", "is", "are", "was", "were", "be", "been",
179
- "it", "its", "this", "that", "using", "use", "via", "into", "as",
180
- ]);
181
- /**
182
- * Generate a short kebab-case slug from a prompt.
183
- * Extracts 2-4 meaningful words, lowercase, max 30 chars total.
184
- */
185
- function slugifyPrompt(prompt) {
186
- const words = prompt
187
- .toLowerCase()
188
- .replace(/[^a-z0-9\s]/g, "")
189
- .split(/\s+/)
190
- .filter((w) => w.length > 1 && !STOP_WORDS.has(w));
191
- // Take first 3-4 meaningful words, max 30 chars
192
- const parts = [];
193
- let len = 0;
194
- for (const w of words) {
195
- if (parts.length >= 4)
196
- break;
197
- if (len + w.length + 1 > 30)
198
- break;
199
- parts.push(w);
200
- len += w.length + 1;
201
- }
202
- return parts.join("-") || "task";
203
- }
204
- /** Get the next session number for a project. Matches {prefix}-{anything}-{num} or {prefix}-{num}. */
205
- function getNextSessionNumber(existingSessions, prefix) {
206
- let max = 0;
207
- // Match both old format (pp-3) and new format (pp-netlify-env-3)
208
- const pattern = new RegExp(`^${escapeRegex(prefix)}-(?:.*?-)??(\\d+)$`);
209
- for (const name of existingSessions) {
210
- const match = name.match(pattern);
211
- if (match) {
212
- const num = parseInt(match[1], 10);
213
- if (num > max)
214
- max = num;
215
- }
216
- }
217
- return max + 1;
218
- }
219
- /** Safely parse JSON, returning null on failure. */
220
- function safeJsonParse(str) {
221
- try {
222
- return JSON.parse(str);
223
- }
224
- catch {
225
- return null;
226
- }
227
- }
228
- /** Valid session statuses for validation. */
229
- const VALID_STATUSES = new Set([
230
- "spawning", "working", "pr_open", "ci_failed", "review_pending",
231
- "changes_requested", "approved", "mergeable", "merged", "cleanup",
232
- "needs_input", "stuck", "errored", "killed", "done", "terminated",
233
- ]);
234
- /** Validate and normalize a status string. */
235
- function validateStatus(raw) {
236
- if (raw === "starting")
237
- return "working";
238
- if (raw && VALID_STATUSES.has(raw))
239
- return raw;
240
- return "spawning";
241
- }
242
- /** Reconstruct a Session object from raw metadata key=value pairs. */
243
- function metadataToSession(sessionId, meta, createdAt, modifiedAt, fallbackProjectId) {
244
- return {
245
- id: sessionId,
246
- projectId: meta["project"] ?? fallbackProjectId ?? "",
247
- status: validateStatus(meta["status"]),
248
- activity: null,
249
- branch: meta["branch"] || null,
250
- issueId: meta["issue"] || null,
251
- pr: meta["pr"]
252
- ? (() => {
253
- const prUrl = meta["pr"];
254
- const ghMatch = prUrl.match(/github\.com\/([^/]+)\/([^/]+)\/pull\/(\d+)/);
255
- return {
256
- number: ghMatch
257
- ? parseInt(ghMatch[3], 10)
258
- : parseInt(prUrl.match(/\/(\d+)$/)?.[1] ?? "0", 10),
259
- url: prUrl,
260
- title: meta["prTitle"] ?? "",
261
- owner: ghMatch?.[1] ?? "",
262
- repo: ghMatch?.[2] ?? "",
263
- branch: meta["prHeadRef"] ?? meta["branch"] ?? "",
264
- baseBranch: meta["prBaseRef"] ?? "",
265
- isDraft: meta["prDraft"] === "1" || meta["prDraft"] === "true",
266
- };
267
- })()
268
- : null,
269
- workspacePath: meta["worktree"] || null,
270
- runtimeHandle: meta["runtimeHandle"]
271
- ? safeJsonParse(meta["runtimeHandle"])
272
- : null,
273
- agentInfo: meta["summary"] || meta["cost"]
274
- ? {
275
- summary: meta["summary"] ?? null,
276
- agentSessionId: null,
277
- ...(meta["cost"] ? { cost: safeJsonParse(meta["cost"]) ?? undefined } : {}),
278
- }
279
- : null,
280
- createdAt: meta["createdAt"] ? new Date(meta["createdAt"]) : (createdAt ?? new Date()),
281
- lastActivityAt: modifiedAt ?? new Date(),
282
- metadata: meta,
283
- };
284
- }
285
- /** Create a SessionManager instance. */
286
- export function createSessionManager(deps) {
287
- const { config, registry } = deps;
288
- /** Effective max sessions from config or hardcoded default. */
289
- const maxSessions = config.maxSessionsPerProject ?? MAX_SESSIONS_PER_PROJECT;
290
- /** Get the sessions directory for a project. */
291
- function getProjectSessionsDir(project) {
292
- return getSessionsDir(config.configPath, project.path);
293
- }
294
- /**
295
- * List all session files across all projects (or filtered by projectId).
296
- * Scans project-specific directories under ~/.conductor/{hash}-{projectId}/sessions/
297
- */
298
- function listAllSessions(projectIdFilter) {
299
- const results = [];
300
- for (const [projectKey, project] of Object.entries(config.projects)) {
301
- const projectId = projectKey;
302
- if (projectIdFilter && projectId !== projectIdFilter)
303
- continue;
304
- const sessionsDir = getSessionsDir(config.configPath, project.path);
305
- if (!existsSync(sessionsDir))
306
- continue;
307
- const sessionNames = listMetadata(sessionsDir);
308
- for (const name of sessionNames) {
309
- results.push({ sessionName: name, projectId });
310
- }
311
- }
312
- return results;
313
- }
314
- function findSessionLocation(sessionId) {
315
- for (const [projectId, project] of Object.entries(config.projects)) {
316
- const sessionsDir = getProjectSessionsDir(project);
317
- const raw = readMetadataRaw(sessionsDir, sessionId);
318
- if (!raw)
319
- continue;
320
- return { sessionId, projectId, project, sessionsDir, raw };
321
- }
322
- return null;
323
- }
324
- function listSessionLocations(projectIdFilter) {
325
- const out = [];
326
- for (const [projectId, project] of Object.entries(config.projects)) {
327
- if (projectIdFilter && projectId !== projectIdFilter)
328
- continue;
329
- const sessionsDir = getProjectSessionsDir(project);
330
- if (!existsSync(sessionsDir))
331
- continue;
332
- for (const sessionName of listMetadata(sessionsDir)) {
333
- const raw = readMetadataRaw(sessionsDir, sessionName);
334
- if (!raw)
335
- continue;
336
- out.push({ sessionId: sessionName, projectId, project, sessionsDir, raw });
337
- }
338
- }
339
- return out;
340
- }
341
- function generateAttemptId() {
342
- return `a-${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 8)}`;
343
- }
344
- function appendSessionConversationEntry(sessionsDir, sessionId, entry) {
345
- try {
346
- appendConversationEntry(sessionsDir, sessionId, {
347
- id: `${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 10)}`,
348
- sessionId,
349
- createdAt: new Date().toISOString(),
350
- ...entry,
351
- });
352
- }
353
- catch (err) {
354
- const message = err instanceof Error ? err.message : String(err);
355
- console.warn(`[session-manager] failed to append conversation entry for ${sessionId}: ${message}`);
356
- }
357
- }
358
- function buildLaunchSummary(agentName, model, reasoningEffort) {
359
- const parts = [agentName];
360
- if (model?.trim())
361
- parts.push(model.trim());
362
- if (reasoningEffort?.trim())
363
- parts.push(`reasoning ${reasoningEffort.trim().toLowerCase()}`);
364
- return `Session launched with ${parts.join(" · ")}.`;
365
- }
366
- function resolveParentBaseBranch(projectId, parentTaskId) {
367
- const locations = listSessionLocations(projectId)
368
- .filter((loc) => loc.raw["taskId"] === parentTaskId && !!loc.raw["branch"])
369
- .sort((a, b) => {
370
- const aTs = Date.parse(a.raw["createdAt"] ?? "") || 0;
371
- const bTs = Date.parse(b.raw["createdAt"] ?? "") || 0;
372
- return bTs - aTs;
373
- });
374
- return locations[0]?.raw["branch"];
375
- }
376
- function resolveProfile(project, spawnConfig) {
377
- const profileName = spawnConfig.profile ?? project.defaultProfile;
378
- const profile = profileName ? project.agentProfiles?.[profileName] : undefined;
379
- const agentName = normalizeAgentName(spawnConfig.agent ?? profile?.agent ?? project.agent ?? config.defaults.agent);
380
- const projectDefaultAgent = normalizeAgentName(project.agent ?? config.defaults.agent);
381
- const usesProjectAgentDefaults = agentName === projectDefaultAgent;
382
- const model = spawnConfig.model
383
- ?? (!spawnConfig.agent ? profile?.model : undefined)
384
- ?? (usesProjectAgentDefaults ? project.agentConfig?.model : undefined);
385
- const reasoningEffort = spawnConfig.reasoningEffort
386
- ?? (!spawnConfig.agent ? profile?.reasoningEffort : undefined)
387
- ?? (usesProjectAgentDefaults ? project.agentConfig?.reasoningEffort : undefined);
388
- const permissions = profile?.permissions
389
- ?? (usesProjectAgentDefaults ? project.agentConfig?.permissions : undefined)
390
- ?? "skip";
391
- return { profileName, agentName, model, reasoningEffort, permissions };
392
- }
393
- function trimToNull(value) {
394
- const trimmed = value?.trim();
395
- return trimmed ? trimmed : null;
396
- }
397
- function normalizeDevServerHost(value) {
398
- const trimmed = trimToNull(value);
399
- if (!trimmed || trimmed === "0.0.0.0") {
400
- return "127.0.0.1";
401
- }
402
- return trimmed;
403
- }
404
- function normalizeDevServerPath(value) {
405
- const trimmed = trimToNull(value);
406
- if (!trimmed)
407
- return "";
408
- return trimmed.startsWith("/") ? trimmed : `/${trimmed}`;
409
- }
410
- function resolveDevServerUrl(project) {
411
- const dev = project.devServer;
412
- if (!dev)
413
- return null;
414
- const explicit = trimToNull(dev.url);
415
- if (explicit) {
416
- try {
417
- const parsed = new URL(explicit);
418
- if (parsed.hostname === "0.0.0.0") {
419
- parsed.hostname = "127.0.0.1";
420
- }
421
- return parsed.toString();
422
- }
423
- catch {
424
- return explicit;
425
- }
426
- }
427
- if (!dev.port)
428
- return null;
429
- const scheme = dev.https ? "https" : "http";
430
- return `${scheme}://${normalizeDevServerHost(dev.host)}:${dev.port}${normalizeDevServerPath(dev.path)}`;
431
- }
432
- function resolveDevServerCwd(project) {
433
- const cwd = trimToNull(project.devServer?.cwd);
434
- if (!cwd)
435
- return project.path;
436
- if (cwd.startsWith("~/")) {
437
- return join(homedir(), cwd.slice(2));
438
- }
439
- if (cwd.startsWith("/")) {
440
- return cwd;
441
- }
442
- return join(project.path, cwd);
443
- }
444
- const devServerByProject = new Map();
445
- function ensureDevServer(projectId, project) {
446
- const dev = project.devServer;
447
- const previewUrl = resolveDevServerUrl(project);
448
- const previewPort = typeof dev?.port === "number" ? String(dev.port) : null;
449
- const command = trimToNull(dev?.command);
450
- if (!command) {
451
- return { logPath: null, previewUrl, previewPort };
452
- }
453
- const existing = devServerByProject.get(projectId);
454
- if (existing && !existing.process.killed) {
455
- return { logPath: existing.logPath, previewUrl, previewPort };
456
- }
457
- const logDir = join(homedir(), ".conductor", "dev-servers");
458
- mkdirSync(logDir, { recursive: true });
459
- const logPath = join(logDir, `${projectId}.log`);
460
- const stream = createWriteStream(logPath, { flags: "a" });
461
- const env = { ...process.env };
462
- if (previewUrl) {
463
- env.CONDUCTOR_PREVIEW_URL = previewUrl;
464
- }
465
- if (previewPort) {
466
- env.PORT = previewPort;
467
- env.CONDUCTOR_PREVIEW_PORT = previewPort;
468
- }
469
- if (dev?.host) {
470
- env.HOST = dev.host;
471
- env.CONDUCTOR_PREVIEW_HOST = normalizeDevServerHost(dev.host);
472
- }
473
- const child = spawnProcess("sh", ["-lc", command], {
474
- cwd: resolveDevServerCwd(project),
475
- detached: true,
476
- stdio: ["ignore", "pipe", "pipe"],
477
- env,
478
- });
479
- child.stdout?.pipe(stream);
480
- child.stderr?.pipe(stream);
481
- child.unref();
482
- devServerByProject.set(projectId, { process: child, logPath });
483
- return { logPath, previewUrl, previewPort };
484
- }
485
- /** Count active (non-terminal) sessions for a project. */
486
- function countActiveSessions(projectId) {
487
- const project = config.projects[projectId];
488
- if (!project)
489
- return 0;
490
- const sessionsDir = getProjectSessionsDir(project);
491
- const sessionNames = listMetadata(sessionsDir);
492
- let count = 0;
493
- for (const name of sessionNames) {
494
- const raw = readMetadataRaw(sessionsDir, name);
495
- if (!raw)
496
- continue;
497
- const status = validateStatus(raw["status"]);
498
- // Count sessions that are not in terminal states
499
- const terminalStatuses = new Set(["killed", "terminated", "done", "cleanup", "errored", "merged"]);
500
- if (!terminalStatuses.has(status)) {
501
- count++;
502
- }
503
- }
504
- return count;
505
- }
506
- /** Resolve which plugins to use for a project. */
507
- function resolvePlugins(project, agentOverride) {
508
- const runtime = registry.get("runtime", project.runtime ?? config.defaults.runtime);
509
- const requestedAgent = normalizeAgentName(agentOverride ?? project.agent ?? config.defaults.agent);
510
- const agent = registry.get("agent", requestedAgent);
511
- const workspace = registry.get("workspace", project.workspace ?? config.defaults.workspace);
512
- const tracker = project.tracker
513
- ? registry.get("tracker", project.tracker.plugin)
514
- : null;
515
- const scm = project.scm ? registry.get("scm", project.scm.plugin) : null;
516
- return { runtime, agent, workspace, tracker, scm };
517
- }
518
- /**
519
- * Ensure session has a runtime handle (fabricate one if missing) and enrich
520
- * with live runtime state + activity detection.
521
- */
522
- async function ensureHandleAndEnrich(session, sessionName, project, plugins) {
523
- const handleFromMetadata = session.runtimeHandle !== null;
524
- if (!handleFromMetadata) {
525
- session.runtimeHandle = {
526
- id: sessionName,
527
- runtimeName: project.runtime ?? config.defaults.runtime,
528
- data: {},
529
- };
530
- }
531
- await enrichSessionWithRuntimeState(session, plugins, handleFromMetadata);
532
- }
533
- /** Terminal session statuses -- skip subprocess/IO work for these. */
534
- const TERMINAL_SESSION_STATUSES = new Set([
535
- "killed", "done", "merged", "terminated", "cleanup",
536
- ]);
537
- /**
538
- * Enrich session with live runtime state and activity detection.
539
- * Mutates the session object in place.
540
- */
541
- async function enrichSessionWithRuntimeState(session, plugins, handleFromMetadata) {
542
- const project = config.projects[session.projectId];
543
- if (TERMINAL_SESSION_STATUSES.has(session.status)) {
544
- if (session.status === "done" &&
545
- handleFromMetadata &&
546
- session.runtimeHandle &&
547
- plugins.runtime &&
548
- session.metadata["attemptStatus"] !== "archived") {
549
- try {
550
- const alive = await plugins.runtime.isAlive(session.runtimeHandle);
551
- if (alive) {
552
- session.status = "working";
553
- if (project) {
554
- const sessionsDir = getProjectSessionsDir(project);
555
- updateMetadata(sessionsDir, session.id, { status: "working" });
556
- }
557
- }
558
- else {
559
- session.activity = "exited";
560
- return;
561
- }
562
- }
563
- catch {
564
- session.activity = "exited";
565
- return;
566
- }
567
- }
568
- else {
569
- session.activity = "exited";
570
- // Still fetch session info (summary, cost) for done sessions — the
571
- // JSONL files persist on disk and may contain real summaries even
572
- // after the agent process has exited.
573
- if (plugins.agent) {
574
- try {
575
- const info = await plugins.agent.getSessionInfo(session);
576
- if (info) {
577
- session.agentInfo = info;
578
- // Persist to metadata if the summary is a real one (not a fallback)
579
- if (info.summary && !info.summaryIsFallback) {
580
- if (project) {
581
- const sessionsDir = getProjectSessionsDir(project);
582
- const fields = {};
583
- fields["summary"] = info.summary;
584
- if (info.cost)
585
- fields["cost"] = JSON.stringify(info.cost);
586
- updateMetadata(sessionsDir, session.id, fields);
587
- }
588
- }
589
- }
590
- }
591
- catch {
592
- // Can't get session info — use metadata fallback
593
- }
594
- }
595
- return;
596
- }
597
- if (session.status !== "working") {
598
- return;
599
- }
600
- }
601
- // Check runtime liveness only if handle came from metadata
602
- if (handleFromMetadata && session.runtimeHandle && plugins.runtime) {
603
- try {
604
- const alive = await plugins.runtime.isAlive(session.runtimeHandle);
605
- if (!alive) {
606
- session.status = "killed";
607
- session.activity = "exited";
608
- return;
609
- }
610
- }
611
- catch {
612
- // Can't check liveness -- continue to activity detection
613
- }
614
- }
615
- // Detect activity independently of runtime handle
616
- if (plugins.agent) {
617
- try {
618
- const detected = await plugins.agent.getActivityState(session, config.readyThresholdMs);
619
- if (detected !== null) {
620
- session.activity = detected.state;
621
- if (detected.timestamp && detected.timestamp > session.lastActivityAt) {
622
- session.lastActivityAt = detected.timestamp;
623
- }
624
- }
625
- }
626
- catch {
627
- // Can't detect activity -- keep existing value
628
- }
629
- // Enrich with live agent session info (summary, cost) and persist to metadata
630
- try {
631
- const info = await plugins.agent.getSessionInfo(session);
632
- if (info) {
633
- session.agentInfo = info;
634
- // Persist to metadata for durability across restarts
635
- const project = config.projects[session.projectId];
636
- if (project) {
637
- const sessionsDir = getProjectSessionsDir(project);
638
- const fields = {};
639
- if (info.summary && !info.summaryIsFallback)
640
- fields["summary"] = info.summary;
641
- if (info.cost)
642
- fields["cost"] = JSON.stringify(info.cost);
643
- if (Object.keys(fields).length > 0) {
644
- updateMetadata(sessionsDir, session.id, fields);
645
- }
646
- }
647
- }
648
- }
649
- catch {
650
- // Can't get session info -- keep existing values
651
- }
652
- }
653
- }
654
- async function spawn(spawnConfig) {
655
- const project = config.projects[spawnConfig.projectId];
656
- if (!project) {
657
- throw new Error(`Unknown project: ${spawnConfig.projectId}`);
658
- }
659
- // Enforce max sessions per project
660
- const activeCount = countActiveSessions(spawnConfig.projectId);
661
- if (activeCount >= maxSessions) {
662
- throw new Error(`Project "${spawnConfig.projectId}" already has ${activeCount} active sessions ` +
663
- `(max ${maxSessions}). Kill or cleanup existing sessions first.`);
664
- }
665
- const profileSelection = resolveProfile(project, spawnConfig);
666
- const plugins = resolvePlugins(project, profileSelection.agentName);
667
- if (!plugins.runtime) {
668
- throw new Error(`Runtime plugin '${project.runtime ?? config.defaults.runtime}' not found`);
669
- }
670
- if (!plugins.agent) {
671
- throw new Error(`Agent plugin '${profileSelection.agentName}' not found`);
672
- }
673
- // Validate issue exists BEFORE creating any resources
674
- let resolvedIssue;
675
- if (spawnConfig.issueId && plugins.tracker) {
676
- try {
677
- resolvedIssue = await plugins.tracker.getIssue(spawnConfig.issueId, project);
678
- }
679
- catch (err) {
680
- if (isIssueNotFoundError(err)) {
681
- // Ad-hoc issue string -- proceed without tracker context
682
- }
683
- else {
684
- throw new Error(`Failed to fetch issue ${spawnConfig.issueId}: ${err}`, { cause: err });
685
- }
686
- }
687
- }
688
- // Get the sessions directory for this project
689
- const sessionsDir = getProjectSessionsDir(project);
690
- // Validate and store .origin file
691
- if (config.configPath) {
692
- validateAndStoreOrigin(config.configPath, project.path);
693
- }
694
- // Determine session ID -- atomically reserve to prevent concurrent collisions
695
- // Format: {prefix}-{slug}-{num} e.g. pp-netlify-env-3
696
- const existingSessions = listMetadata(sessionsDir);
697
- let num = getNextSessionNumber(existingSessions, project.sessionPrefix);
698
- const promptText = spawnConfig.prompt ?? spawnConfig.issueId ?? "";
699
- const slug = slugifyPrompt(promptText);
700
- let sessionId;
701
- let tmuxName;
702
- for (let attempts = 0; attempts < 10; attempts++) {
703
- sessionId = `${project.sessionPrefix}-${slug}-${num}`;
704
- if (config.configPath) {
705
- tmuxName = generateTmuxName(config.configPath, `${project.sessionPrefix}-${slug}`, num);
706
- }
707
- if (reserveSessionId(sessionsDir, sessionId))
708
- break;
709
- num++;
710
- if (attempts === 9) {
711
- throw new Error(`Failed to reserve session ID after 10 attempts (prefix: ${project.sessionPrefix})`);
712
- }
713
- }
714
- // Reassign to satisfy TypeScript's flow analysis
715
- sessionId = `${project.sessionPrefix}-${slug}-${num}`;
716
- if (config.configPath) {
717
- tmuxName = generateTmuxName(config.configPath, `${project.sessionPrefix}-${slug}`, num);
718
- }
719
- const taskId = spawnConfig.taskId ?? `t-${sessionId}`;
720
- const attemptId = spawnConfig.attemptId ?? `a-${sessionId}`;
721
- const parentTaskId = spawnConfig.parentTaskId;
722
- const baseBranch = spawnConfig.baseBranch
723
- ?? (parentTaskId ? resolveParentBaseBranch(spawnConfig.projectId, parentTaskId) : undefined)
724
- ?? project.defaultBranch;
725
- // Determine branch name
726
- let branch;
727
- if (spawnConfig.branch) {
728
- branch = spawnConfig.branch;
729
- }
730
- else if (!plugins.workspace) {
731
- // No workspace isolation plugin: run directly on the configured base/default branch.
732
- branch = baseBranch;
733
- }
734
- else if (spawnConfig.issueId && plugins.tracker && resolvedIssue) {
735
- branch = plugins.tracker.branchName(spawnConfig.issueId, project);
736
- }
737
- else if (spawnConfig.issueId) {
738
- const id = spawnConfig.issueId;
739
- const isBranchSafe = /^[A-Za-z0-9][A-Za-z0-9._-]*$/.test(id) && !id.includes("..");
740
- const slug = isBranchSafe
741
- ? id
742
- : id
743
- .toLowerCase()
744
- .replace(/[^a-z0-9]+/g, "-")
745
- .slice(0, 60)
746
- .replace(/^-+|-+$/g, "");
747
- branch = `feat/${slug || sessionId}`;
748
- }
749
- else {
750
- const taskSlug = taskId.replace(/[^a-zA-Z0-9._-]+/g, "-").slice(0, 40);
751
- const attemptSlug = attemptId.replace(/[^a-zA-Z0-9._-]+/g, "-").slice(0, 20);
752
- branch = `task/${taskSlug}-${attemptSlug}`;
753
- }
754
- // Create workspace (if workspace plugin is available)
755
- let workspacePath = project.path;
756
- if (plugins.workspace) {
757
- try {
758
- const wsInfo = await plugins.workspace.create({
759
- projectId: spawnConfig.projectId,
760
- project,
761
- sessionId,
762
- branch,
763
- baseBranch,
764
- });
765
- workspacePath = wsInfo.path;
766
- // Run post-create hooks -- clean up workspace on failure
767
- if (plugins.workspace.postCreate) {
768
- try {
769
- await plugins.workspace.postCreate(wsInfo, project);
770
- }
771
- catch (err) {
772
- if (workspacePath !== project.path) {
773
- try {
774
- await plugins.workspace.destroy(workspacePath);
775
- }
776
- catch {
777
- /* best effort */
778
- }
779
- }
780
- throw err;
781
- }
782
- }
783
- }
784
- catch (err) {
785
- // Clean up reserved session ID on workspace failure
786
- try {
787
- deleteMetadata(sessionsDir, sessionId, false);
788
- }
789
- catch {
790
- /* best effort */
791
- }
792
- throw err;
793
- }
794
- }
795
- else {
796
- try {
797
- await checkoutBranchForDirectWorkspace(project.path, branch);
798
- }
799
- catch (err) {
800
- // Clean up reserved session ID when direct branch checkout fails.
801
- try {
802
- deleteMetadata(sessionsDir, sessionId, false);
803
- }
804
- catch {
805
- /* best effort */
806
- }
807
- throw err;
808
- }
809
- }
810
- // Generate prompt with validated issue
811
- let issueContext;
812
- if (spawnConfig.issueId && plugins.tracker && resolvedIssue) {
813
- try {
814
- issueContext = await plugins.tracker.generatePrompt(spawnConfig.issueId, project);
815
- }
816
- catch {
817
- // Non-fatal: continue without detailed issue context
818
- }
819
- }
820
- const composedPrompt = buildPrompt({
821
- project,
822
- projectId: spawnConfig.projectId,
823
- issueId: spawnConfig.issueId,
824
- issueContext,
825
- userPrompt: spawnConfig.prompt,
826
- attachments: spawnConfig.attachments,
827
- });
828
- // Merge default MCP servers with project-specific ones (project overrides defaults)
829
- const mergedMcpServers = {
830
- ...config.defaults.mcpServers,
831
- ...project.mcpServers,
832
- };
833
- const resolvedMcpServers = Object.keys(mergedMcpServers).length > 0 ? mergedMcpServers : undefined;
834
- // Get agent launch config and create runtime -- clean up workspace on failure
835
- // When agent is overridden via #agent/ tag, don't leak the project's model
836
- // to the wrong CLI (e.g. passing claude-opus-4-6 to codex would crash).
837
- // Each agent plugin has its own default model as fallback.
838
- let agentWorkspacePath = workspacePath;
839
- const agentLaunchConfig = {
840
- sessionId,
841
- projectConfig: project,
842
- issueId: spawnConfig.issueId,
843
- prompt: composedPrompt ?? spawnConfig.prompt,
844
- permissions: profileSelection.permissions,
845
- model: profileSelection.model,
846
- reasoningEffort: profileSelection.reasoningEffort,
847
- attachments: spawnConfig.attachments,
848
- mcpServers: resolvedMcpServers,
849
- workspacePath: agentWorkspacePath,
850
- };
851
- let handle;
852
- try {
853
- agentWorkspacePath = resolveAgentWorkspacePath(workspacePath, project);
854
- agentLaunchConfig.workspacePath = agentWorkspacePath;
855
- // Set up workspace hooks (writes MCP config files, shell wrappers, etc.)
856
- // Must run before getLaunchCommand so MCP config files exist when referenced.
857
- if (plugins.agent.setupWorkspaceHooks) {
858
- await plugins.agent.setupWorkspaceHooks(agentWorkspacePath, {
859
- dataDir: sessionsDir,
860
- sessionId,
861
- mcpServers: resolvedMcpServers,
862
- });
863
- }
864
- const launchCommand = plugins.agent.getLaunchCommand(agentLaunchConfig);
865
- const environment = plugins.agent.getEnvironment(agentLaunchConfig);
866
- handle = await plugins.runtime.create({
867
- sessionId: tmuxName ?? sessionId,
868
- workspacePath: agentWorkspacePath,
869
- launchCommand,
870
- environment: {
871
- ...environment,
872
- CO_SESSION: sessionId,
873
- CO_DATA_DIR: sessionsDir,
874
- CO_SESSION_NAME: sessionId,
875
- CO_AGENT_CWD: agentWorkspacePath,
876
- ...(tmuxName && { CO_TMUX_NAME: tmuxName }),
877
- },
878
- });
879
- }
880
- catch (err) {
881
- // Clean up workspace and reserved ID if runtime creation failed
882
- if (plugins.workspace && workspacePath !== project.path) {
883
- try {
884
- await plugins.workspace.destroy(workspacePath);
885
- }
886
- catch {
887
- /* best effort */
888
- }
889
- }
890
- try {
891
- deleteMetadata(sessionsDir, sessionId, false);
892
- }
893
- catch {
894
- /* best effort */
895
- }
896
- throw err;
897
- }
898
- // Write metadata and run post-launch setup -- clean up on failure
899
- const session = {
900
- id: sessionId,
901
- projectId: spawnConfig.projectId,
902
- status: "spawning",
903
- activity: "active",
904
- branch,
905
- issueId: spawnConfig.issueId ?? null,
906
- pr: null,
907
- workspacePath,
908
- runtimeHandle: handle,
909
- agentInfo: null,
910
- createdAt: new Date(),
911
- lastActivityAt: new Date(),
912
- metadata: {},
913
- };
914
- const devServer = ensureDevServer(spawnConfig.projectId, project);
915
- try {
916
- writeMetadata(sessionsDir, sessionId, {
917
- worktree: workspacePath,
918
- branch,
919
- status: "spawning",
920
- tmuxName,
921
- issue: spawnConfig.issueId,
922
- project: spawnConfig.projectId,
923
- agent: plugins.agent.name,
924
- model: profileSelection.model,
925
- reasoningEffort: profileSelection.reasoningEffort,
926
- permissions: profileSelection.permissions,
927
- profile: profileSelection.profileName,
928
- taskId,
929
- attemptId,
930
- parentTaskId,
931
- attemptStatus: "active",
932
- retryOfSessionId: spawnConfig.retryOfSessionId,
933
- baseBranch,
934
- prompt: spawnConfig.prompt ?? composedPrompt ?? undefined,
935
- createdAt: new Date().toISOString(),
936
- runtimeHandle: JSON.stringify(handle),
937
- devServerUrl: devServer.previewUrl ?? undefined,
938
- devServerPort: devServer.previewPort ?? undefined,
939
- });
940
- updateMetadata(sessionsDir, sessionId, {
941
- devServerLog: devServer.logPath ?? "",
942
- devServerUrl: devServer.previewUrl ?? "",
943
- devServerPort: devServer.previewPort ?? "",
944
- });
945
- const initialPrompt = spawnConfig.prompt?.trim()
946
- || (spawnConfig.issueId ? `Start work on issue ${spawnConfig.issueId}.` : "");
947
- if (initialPrompt || (spawnConfig.attachments?.length ?? 0) > 0) {
948
- appendSessionConversationEntry(sessionsDir, sessionId, {
949
- kind: "user_message",
950
- text: initialPrompt || "Shared reference attachments.",
951
- attachments: spawnConfig.attachments?.map((item) => item.path),
952
- model: profileSelection.model,
953
- reasoningEffort: profileSelection.reasoningEffort,
954
- source: "spawn",
955
- });
956
- }
957
- appendSessionConversationEntry(sessionsDir, sessionId, {
958
- kind: "system_message",
959
- text: buildLaunchSummary(plugins.agent.name, profileSelection.model, profileSelection.reasoningEffort),
960
- source: "session_started",
961
- });
962
- if (plugins.agent.postLaunchSetup) {
963
- await plugins.agent.postLaunchSetup(session);
964
- }
965
- }
966
- catch (err) {
967
- // Clean up runtime and workspace on post-launch failure
968
- try {
969
- await plugins.runtime.destroy(handle);
970
- }
971
- catch {
972
- /* best effort */
973
- }
974
- if (plugins.workspace && workspacePath !== project.path) {
975
- try {
976
- await plugins.workspace.destroy(workspacePath);
977
- }
978
- catch {
979
- /* best effort */
980
- }
981
- }
982
- try {
983
- deleteMetadata(sessionsDir, sessionId, false);
984
- }
985
- catch {
986
- /* best effort */
987
- }
988
- throw err;
989
- }
990
- // Send initial prompt post-launch for agents that need it. This runs
991
- // asynchronously so spawn() returns immediately and the UI can transition
992
- // to the workspace without waiting for CLI readiness probing.
993
- if (plugins.agent.promptDelivery === "post-launch" && agentLaunchConfig.prompt) {
994
- const runtime = plugins.runtime;
995
- const initialPrompt = agentLaunchConfig.prompt;
996
- if (!runtime || !initialPrompt)
997
- return session;
998
- void (async () => {
999
- try {
1000
- const maxWaitMs = 90_000;
1001
- const pollIntervalMs = 1_000;
1002
- const startTime = Date.now();
1003
- let ready = false;
1004
- // Wait at least 3s for the process to start
1005
- await new Promise((resolve) => setTimeout(resolve, 3_000));
1006
- while (Date.now() - startTime < maxWaitMs) {
1007
- try {
1008
- const alive = await runtime.isAlive(handle);
1009
- if (!alive) {
1010
- console.log(`[session-manager] ${sessionId}: runtime exited before initial prompt delivery`);
1011
- return;
1012
- }
1013
- }
1014
- catch {
1015
- // Can't check liveness; continue probing output.
1016
- }
1017
- try {
1018
- const output = await runtime.getOutput(handle, 20);
1019
- // Claude Code shows "❯" when ready for input
1020
- // Codex shows ">" or "$" when ready
1021
- if (/[❯>$]\s*$/.test(output.trim()) || /Try "/.test(output)) {
1022
- ready = true;
1023
- break;
1024
- }
1025
- }
1026
- catch {
1027
- // Can't read output; keep trying.
1028
- }
1029
- await new Promise((resolve) => setTimeout(resolve, pollIntervalMs));
1030
- }
1031
- try {
1032
- const aliveBeforeSend = await runtime.isAlive(handle);
1033
- if (!aliveBeforeSend) {
1034
- console.log(`[session-manager] ${sessionId}: skipping initial prompt, runtime is no longer alive`);
1035
- return;
1036
- }
1037
- }
1038
- catch {
1039
- // If liveness check fails, try sending once.
1040
- }
1041
- if (!ready) {
1042
- console.log(`[session-manager] ${sessionId}: agent prompt not detected after ${maxWaitMs / 1000}s, attempting send`);
1043
- }
1044
- await runtime.sendMessage(handle, initialPrompt);
1045
- }
1046
- catch {
1047
- // Non-fatal: agent is running but didn't receive the initial prompt.
1048
- // User can retry with `co send`.
1049
- }
1050
- })();
1051
- }
1052
- return session;
1053
- }
1054
- async function list(projectId) {
1055
- const allSessions = listAllSessions(projectId);
1056
- const sessionPromises = allSessions.map(async ({ sessionName, projectId: sessionProjectId }) => {
1057
- const project = config.projects[sessionProjectId];
1058
- if (!project)
1059
- return null;
1060
- const sessionsDir = getProjectSessionsDir(project);
1061
- const raw = readMetadataRaw(sessionsDir, sessionName);
1062
- if (!raw)
1063
- return null;
1064
- // Get file timestamps for createdAt/lastActivityAt
1065
- let createdAt;
1066
- let modifiedAt;
1067
- try {
1068
- const metaPath = join(sessionsDir, sessionName);
1069
- const stats = statSync(metaPath);
1070
- createdAt = stats.birthtime;
1071
- modifiedAt = stats.mtime;
1072
- }
1073
- catch {
1074
- // If stat fails, timestamps will fall back to current time
1075
- }
1076
- const session = metadataToSession(sessionName, raw, createdAt, modifiedAt, sessionProjectId);
1077
- const plugins = resolvePlugins(project, raw["agent"]);
1078
- // Cap per-session enrichment at 2s
1079
- const enrichTimeout = new Promise((resolve) => setTimeout(resolve, 2_000));
1080
- await Promise.race([ensureHandleAndEnrich(session, sessionName, project, plugins), enrichTimeout]);
1081
- return session;
1082
- });
1083
- const results = await Promise.all(sessionPromises);
1084
- return results.filter((s) => s !== null);
1085
- }
1086
- async function get(sessionId) {
1087
- for (const project of Object.values(config.projects)) {
1088
- const sessionsDir = getProjectSessionsDir(project);
1089
- const raw = readMetadataRaw(sessionsDir, sessionId);
1090
- if (!raw)
1091
- continue;
1092
- let createdAt;
1093
- let modifiedAt;
1094
- try {
1095
- const metaPath = join(sessionsDir, sessionId);
1096
- const stats = statSync(metaPath);
1097
- createdAt = stats.birthtime;
1098
- modifiedAt = stats.mtime;
1099
- }
1100
- catch {
1101
- // Timestamps fall back to current time
1102
- }
1103
- const session = metadataToSession(sessionId, raw, createdAt, modifiedAt);
1104
- const plugins = resolvePlugins(project, raw["agent"]);
1105
- await ensureHandleAndEnrich(session, sessionId, project, plugins);
1106
- return session;
1107
- }
1108
- return null;
1109
- }
1110
- async function kill(sessionId) {
1111
- let raw = null;
1112
- let sessionsDir = null;
1113
- let project;
1114
- for (const proj of Object.values(config.projects)) {
1115
- const dir = getProjectSessionsDir(proj);
1116
- const metadata = readMetadataRaw(dir, sessionId);
1117
- if (metadata) {
1118
- raw = metadata;
1119
- sessionsDir = dir;
1120
- project = proj;
1121
- break;
1122
- }
1123
- }
1124
- if (!raw || !sessionsDir) {
1125
- throw new Error(`Session ${sessionId} not found`);
1126
- }
1127
- // Destroy runtime
1128
- if (raw["runtimeHandle"]) {
1129
- const handle = safeJsonParse(raw["runtimeHandle"]);
1130
- if (handle) {
1131
- const runtimePlugin = registry.get("runtime", handle.runtimeName ??
1132
- (project ? (project.runtime ?? config.defaults.runtime) : config.defaults.runtime));
1133
- if (runtimePlugin) {
1134
- try {
1135
- await runtimePlugin.destroy(handle);
1136
- }
1137
- catch {
1138
- // Runtime might already be gone
1139
- }
1140
- }
1141
- else if (handle.id) {
1142
- // Fallback: direct tmux kill when runtime plugin isn't loaded
1143
- try {
1144
- await execFileP("tmux", ["kill-session", "-t", handle.id], { timeout: 10_000 });
1145
- }
1146
- catch {
1147
- // tmux session might already be gone
1148
- }
1149
- }
1150
- }
1151
- }
1152
- // Destroy workspace -- skip if worktree is the project path
1153
- const worktree = raw["worktree"];
1154
- const isProjectPath = project && worktree === project.path;
1155
- if (worktree && !isProjectPath) {
1156
- if (project && existsSync(worktree)) {
1157
- const hasChanges = await workspaceHasGitChanges(worktree);
1158
- if (hasChanges) {
1159
- await runWorkspaceCommands(project.cleanupScript, worktree, "cleanup");
1160
- }
1161
- await runWorkspaceCommands(project.archiveScript, worktree, "archive");
1162
- }
1163
- const workspacePlugin = project
1164
- ? resolvePlugins(project).workspace
1165
- : registry.get("workspace", config.defaults.workspace);
1166
- if (workspacePlugin) {
1167
- try {
1168
- await workspacePlugin.destroy(worktree);
1169
- }
1170
- catch {
1171
- // Workspace might already be gone
1172
- }
1173
- }
1174
- else {
1175
- // Fallback: direct git worktree cleanup when plugin isn't loaded
1176
- await directWorktreeCleanup(worktree, project, sessionId);
1177
- }
1178
- }
1179
- // Archive metadata
1180
- try {
1181
- deleteMetadata(sessionsDir, sessionId, true);
1182
- }
1183
- catch (err) {
1184
- const msg = err instanceof Error ? err.message.toLowerCase() : "";
1185
- const missingMetadata = msg.includes("not found") || msg.includes("enoent") || msg.includes("no such file or directory");
1186
- if (!missingMetadata) {
1187
- throw err;
1188
- }
1189
- }
1190
- }
1191
- async function cleanup(projectId, options) {
1192
- const result = { killed: [], skipped: [], errors: [] };
1193
- const sessions = await list(projectId);
1194
- for (const session of sessions) {
1195
- try {
1196
- // Never clean up orchestrator sessions
1197
- if (session.metadata["role"] === "orchestrator" ||
1198
- session.id.endsWith("-orchestrator")) {
1199
- result.skipped.push(session.id);
1200
- continue;
1201
- }
1202
- const project = config.projects[session.projectId];
1203
- if (!project) {
1204
- result.skipped.push(session.id);
1205
- continue;
1206
- }
1207
- const plugins = resolvePlugins(project);
1208
- let shouldKill = false;
1209
- // Check if PR is merged
1210
- if (session.pr && plugins.scm) {
1211
- try {
1212
- const prState = await plugins.scm.getPRState(session.pr);
1213
- if (prState === PR_STATE.MERGED || prState === PR_STATE.CLOSED) {
1214
- shouldKill = true;
1215
- }
1216
- }
1217
- catch {
1218
- // Can't check PR -- skip
1219
- }
1220
- }
1221
- // Check if issue is completed
1222
- if (!shouldKill && session.issueId && plugins.tracker) {
1223
- try {
1224
- const completed = await plugins.tracker.isCompleted(session.issueId, project);
1225
- if (completed)
1226
- shouldKill = true;
1227
- }
1228
- catch {
1229
- // Can't check issue -- skip
1230
- }
1231
- }
1232
- // Check if runtime is dead
1233
- if (!shouldKill && session.runtimeHandle && plugins.runtime) {
1234
- try {
1235
- const alive = await plugins.runtime.isAlive(session.runtimeHandle);
1236
- if (!alive)
1237
- shouldKill = true;
1238
- }
1239
- catch {
1240
- // Can't check -- skip
1241
- }
1242
- }
1243
- if (shouldKill) {
1244
- if (!options?.dryRun) {
1245
- await kill(session.id);
1246
- }
1247
- result.killed.push(session.id);
1248
- }
1249
- else {
1250
- result.skipped.push(session.id);
1251
- }
1252
- }
1253
- catch (err) {
1254
- result.errors.push({
1255
- sessionId: session.id,
1256
- error: err instanceof Error ? err.message : String(err),
1257
- });
1258
- }
1259
- }
1260
- return result;
1261
- }
1262
- function buildFollowUpMessage(message, options) {
1263
- const trimmedMessage = message.trim();
1264
- const attachments = [...new Set((options?.attachments ?? [])
1265
- .map((item) => item.trim())
1266
- .filter(Boolean))];
1267
- if (attachments.length === 0) {
1268
- return trimmedMessage;
1269
- }
1270
- const lines = [];
1271
- if (trimmedMessage) {
1272
- lines.push(trimmedMessage, "");
1273
- }
1274
- lines.push("## Reference Attachments", "The following files are attached to this follow-up. Read them directly from disk before responding or making changes.", ...attachments.map((item) => `- \`${item}\``));
1275
- return lines.join("\n");
1276
- }
1277
- async function sendWithLog(sessionId, message, options) {
1278
- const location = findSessionLocation(sessionId);
1279
- if (!location)
1280
- throw new Error(`Session ${sessionId} not found`);
1281
- const raw = location.raw;
1282
- let handle;
1283
- if (raw["runtimeHandle"]) {
1284
- const parsed = safeJsonParse(raw["runtimeHandle"]);
1285
- if (!parsed) {
1286
- throw new Error(`Corrupted runtime handle for session ${sessionId}`);
1287
- }
1288
- handle = parsed;
1289
- }
1290
- else {
1291
- handle = { id: sessionId, runtimeName: config.defaults.runtime, data: {} };
1292
- }
1293
- const project = config.projects[raw["project"] ?? ""];
1294
- const runtimePlugin = registry.get("runtime", handle.runtimeName ??
1295
- (project ? (project.runtime ?? config.defaults.runtime) : config.defaults.runtime));
1296
- if (!runtimePlugin) {
1297
- throw new Error(`No runtime plugin for session ${sessionId}`);
1298
- }
1299
- const nextFields = {};
1300
- const nextModel = options?.model?.trim();
1301
- const nextReasoningEffort = options?.reasoningEffort?.trim().toLowerCase();
1302
- if (nextModel) {
1303
- nextFields["model"] = nextModel;
1304
- }
1305
- if (nextReasoningEffort) {
1306
- nextFields["reasoningEffort"] = nextReasoningEffort;
1307
- }
1308
- if (Object.keys(nextFields).length > 0) {
1309
- updateMetadata(location.sessionsDir, sessionId, nextFields);
1310
- }
1311
- const composedMessage = buildFollowUpMessage(message, options);
1312
- if (!composedMessage.trim()) {
1313
- throw new Error("Message is required");
1314
- }
1315
- await runtimePlugin.sendMessage(handle, composedMessage);
1316
- if (nextModel || nextReasoningEffort) {
1317
- const parts = [];
1318
- if (nextModel)
1319
- parts.push(`model ${nextModel}`);
1320
- if (nextReasoningEffort)
1321
- parts.push(`reasoning ${nextReasoningEffort}`);
1322
- appendSessionConversationEntry(location.sessionsDir, sessionId, {
1323
- kind: "system_message",
1324
- text: `Session preferences updated: ${parts.join(" · ")}.`,
1325
- source: "session_preferences",
1326
- });
1327
- }
1328
- const conversationText = (options?.conversationText ?? message).trim();
1329
- if (conversationText || (options?.attachments?.length ?? 0) > 0) {
1330
- appendSessionConversationEntry(location.sessionsDir, sessionId, {
1331
- kind: "user_message",
1332
- text: conversationText || "Shared reference attachments.",
1333
- attachments: options?.attachments,
1334
- model: nextModel ?? raw["model"] ?? undefined,
1335
- reasoningEffort: nextReasoningEffort ?? raw["reasoningEffort"] ?? undefined,
1336
- source: options?.conversationSource ?? "follow_up",
1337
- });
1338
- }
1339
- }
1340
- async function send(sessionId, message, options) {
1341
- await sendWithLog(sessionId, message, options);
1342
- }
1343
- async function retry(target, options) {
1344
- let source = await get(target);
1345
- if (!source) {
1346
- const sessions = await list();
1347
- const byTask = sessions
1348
- .filter((session) => session.metadata["taskId"] === target)
1349
- .sort((a, b) => b.createdAt.getTime() - a.createdAt.getTime());
1350
- source = byTask[0] ?? null;
1351
- }
1352
- if (!source) {
1353
- throw new Error(`No session/task found for retry target: ${target}`);
1354
- }
1355
- const sourceLoc = findSessionLocation(source.id);
1356
- if (!sourceLoc) {
1357
- throw new Error(`Retry source session not found on disk: ${source.id}`);
1358
- }
1359
- const taskId = sourceLoc.raw["taskId"] ?? source.metadata["taskId"] ?? target;
1360
- const newAttemptId = generateAttemptId();
1361
- const prompt = sourceLoc.raw["prompt"]
1362
- ?? source.metadata["prompt"]
1363
- ?? source.issueId
1364
- ?? source.metadata["summary"]
1365
- ?? "";
1366
- if (!prompt) {
1367
- throw new Error(`Cannot retry ${source.id}: no prompt/issue context found in metadata`);
1368
- }
1369
- const session = await spawn({
1370
- projectId: source.projectId,
1371
- issueId: source.issueId ?? undefined,
1372
- prompt: source.issueId ? sourceLoc.raw["prompt"] ?? undefined : prompt,
1373
- agent: options?.agent ?? sourceLoc.raw["agent"] ?? undefined,
1374
- model: options?.model ?? sourceLoc.raw["model"] ?? undefined,
1375
- reasoningEffort: options?.reasoningEffort ?? sourceLoc.raw["reasoningEffort"] ?? undefined,
1376
- baseBranch: options?.baseBranch ?? sourceLoc.raw["branch"] ?? source.branch ?? undefined,
1377
- profile: options?.profile ?? sourceLoc.raw["profile"] ?? undefined,
1378
- taskId,
1379
- attemptId: newAttemptId,
1380
- parentTaskId: sourceLoc.raw["parentTaskId"] ?? undefined,
1381
- retryOfSessionId: source.id,
1382
- });
1383
- updateMetadata(sourceLoc.sessionsDir, source.id, {
1384
- attemptStatus: "archived",
1385
- supersededByAttemptId: newAttemptId,
1386
- });
1387
- return session;
1388
- }
1389
- async function taskGraph(taskId) {
1390
- const sessions = await list();
1391
- const attempts = sessions
1392
- .filter((session) => session.metadata["taskId"] === taskId)
1393
- .sort((a, b) => a.createdAt.getTime() - b.createdAt.getTime());
1394
- if (attempts.length === 0)
1395
- return null;
1396
- const children = new Set();
1397
- for (const session of sessions) {
1398
- if (session.metadata["parentTaskId"] !== taskId)
1399
- continue;
1400
- const childTaskId = session.metadata["taskId"];
1401
- if (childTaskId)
1402
- children.add(childTaskId);
1403
- }
1404
- const attemptSummaries = attempts.map((session) => ({
1405
- attemptId: session.metadata["attemptId"] ?? `a-${session.id}`,
1406
- sessionId: session.id,
1407
- status: session.status,
1408
- agent: session.metadata["agent"],
1409
- model: session.metadata["model"],
1410
- reasoningEffort: session.metadata["reasoningEffort"],
1411
- branch: session.branch,
1412
- createdAt: session.createdAt,
1413
- }));
1414
- return {
1415
- taskId,
1416
- parentTaskId: attempts[0]?.metadata["parentTaskId"] ?? null,
1417
- childrenTaskIds: [...children],
1418
- attempts: attemptSummaries,
1419
- };
1420
- }
1421
- async function submitFeedback(sessionId, feedback) {
1422
- const location = findSessionLocation(sessionId);
1423
- if (!location)
1424
- throw new Error(`Session ${sessionId} not found`);
1425
- const instruction = [
1426
- "Reviewer feedback received. Apply the requested changes and continue.",
1427
- "",
1428
- feedback.trim(),
1429
- ].join("\n");
1430
- await sendWithLog(sessionId, instruction, {
1431
- conversationText: feedback.trim(),
1432
- conversationSource: "feedback",
1433
- });
1434
- updateMetadata(location.sessionsDir, sessionId, {
1435
- status: "working",
1436
- reviewDecision: "changes_requested",
1437
- });
1438
- }
1439
- async function restore(sessionId) {
1440
- // 1. Find session metadata across all projects (active first, then archive)
1441
- let raw = null;
1442
- let sessionsDir = null;
1443
- let project;
1444
- let projectId;
1445
- let fromArchive = false;
1446
- for (const [key, proj] of Object.entries(config.projects)) {
1447
- const dir = getProjectSessionsDir(proj);
1448
- const metadata = readMetadataRaw(dir, sessionId);
1449
- if (metadata) {
1450
- raw = metadata;
1451
- sessionsDir = dir;
1452
- project = proj;
1453
- projectId = key;
1454
- break;
1455
- }
1456
- }
1457
- // Fall back to archived metadata
1458
- if (!raw) {
1459
- for (const [key, proj] of Object.entries(config.projects)) {
1460
- const dir = getProjectSessionsDir(proj);
1461
- const archived = readArchivedMetadataRaw(dir, sessionId);
1462
- if (archived) {
1463
- raw = archived;
1464
- sessionsDir = dir;
1465
- project = proj;
1466
- projectId = key;
1467
- fromArchive = true;
1468
- break;
1469
- }
1470
- }
1471
- }
1472
- if (!raw || !sessionsDir || !project || !projectId) {
1473
- throw new Error(`Session ${sessionId} not found`);
1474
- }
1475
- // If restored from archive, recreate the active metadata file
1476
- if (fromArchive) {
1477
- writeMetadata(sessionsDir, sessionId, {
1478
- worktree: raw["worktree"] ?? "",
1479
- branch: raw["branch"] ?? "",
1480
- status: raw["status"] ?? "killed",
1481
- role: raw["role"],
1482
- tmuxName: raw["tmuxName"],
1483
- issue: raw["issue"],
1484
- pr: raw["pr"],
1485
- summary: raw["summary"],
1486
- project: raw["project"],
1487
- agent: raw["agent"],
1488
- createdAt: raw["createdAt"],
1489
- runtimeHandle: raw["runtimeHandle"],
1490
- ciStatus: raw["ciStatus"],
1491
- reviewDecision: raw["reviewDecision"],
1492
- prState: raw["prState"],
1493
- mergeReadiness: raw["mergeReadiness"],
1494
- prTitle: raw["prTitle"],
1495
- prHeadRef: raw["prHeadRef"],
1496
- prBaseRef: raw["prBaseRef"],
1497
- prDraft: raw["prDraft"],
1498
- cost: raw["cost"],
1499
- model: raw["model"],
1500
- reasoningEffort: raw["reasoningEffort"],
1501
- permissions: raw["permissions"],
1502
- taskId: raw["taskId"],
1503
- attemptId: raw["attemptId"],
1504
- parentTaskId: raw["parentTaskId"],
1505
- attemptStatus: raw["attemptStatus"],
1506
- retryOfSessionId: raw["retryOfSessionId"],
1507
- supersededByAttemptId: raw["supersededByAttemptId"],
1508
- profile: raw["profile"],
1509
- baseBranch: raw["baseBranch"],
1510
- prompt: raw["prompt"],
1511
- devServerLog: raw["devServerLog"],
1512
- devServerUrl: raw["devServerUrl"],
1513
- devServerPort: raw["devServerPort"],
1514
- });
1515
- }
1516
- // 2. Reconstruct Session and enrich with live runtime state
1517
- const session = metadataToSession(sessionId, raw);
1518
- const plugins = resolvePlugins(project, raw["agent"]);
1519
- await enrichSessionWithRuntimeState(session, plugins, true);
1520
- // 3. Validate restorability
1521
- if (!isRestorable(session)) {
1522
- if (NON_RESTORABLE_STATUSES.has(session.status)) {
1523
- throw new SessionNotRestorableError(sessionId, `status is "${session.status}"`);
1524
- }
1525
- throw new SessionNotRestorableError(sessionId, "session is not in a terminal state");
1526
- }
1527
- // 4. Validate required plugins
1528
- if (!plugins.runtime) {
1529
- throw new Error(`Runtime plugin '${project.runtime ?? config.defaults.runtime}' not found`);
1530
- }
1531
- if (!plugins.agent) {
1532
- throw new Error(`Agent plugin '${project.agent ?? config.defaults.agent}' not found`);
1533
- }
1534
- // 5. Check workspace
1535
- const workspacePath = raw["worktree"] || project.path;
1536
- const workspaceExists = plugins.workspace?.exists
1537
- ? await plugins.workspace.exists(workspacePath)
1538
- : existsSync(workspacePath);
1539
- if (!workspaceExists) {
1540
- if (!plugins.workspace?.restore) {
1541
- throw new WorkspaceMissingError(workspacePath, "workspace plugin does not support restore");
1542
- }
1543
- if (!session.branch) {
1544
- throw new WorkspaceMissingError(workspacePath, "branch metadata is missing");
1545
- }
1546
- try {
1547
- const wsInfo = await plugins.workspace.restore({
1548
- projectId,
1549
- project,
1550
- sessionId,
1551
- branch: session.branch,
1552
- }, workspacePath);
1553
- if (plugins.workspace.postCreate) {
1554
- await plugins.workspace.postCreate(wsInfo, project);
1555
- }
1556
- }
1557
- catch (err) {
1558
- throw new WorkspaceMissingError(workspacePath, `restore failed: ${err instanceof Error ? err.message : String(err)}`);
1559
- }
1560
- }
1561
- // 6. Destroy old runtime if still alive
1562
- if (session.runtimeHandle) {
1563
- try {
1564
- await plugins.runtime.destroy(session.runtimeHandle);
1565
- }
1566
- catch {
1567
- // Best effort -- may already be gone
1568
- }
1569
- }
1570
- // 7. Get launch command -- try restore command first, fall back to fresh launch
1571
- let launchCommand;
1572
- const restoreMergedMcp = {
1573
- ...config.defaults.mcpServers,
1574
- ...project.mcpServers,
1575
- };
1576
- const restoreMcpServers = Object.keys(restoreMergedMcp).length > 0 ? restoreMergedMcp : undefined;
1577
- let agentWorkspacePath = workspacePath;
1578
- const agentLaunchConfig = {
1579
- sessionId,
1580
- projectConfig: project,
1581
- issueId: session.issueId ?? undefined,
1582
- permissions: raw["permissions"]
1583
- ?? project.agentConfig?.permissions
1584
- ?? "skip",
1585
- model: raw["model"] ?? project.agentConfig?.model,
1586
- reasoningEffort: raw["reasoningEffort"] ?? project.agentConfig?.reasoningEffort,
1587
- mcpServers: restoreMcpServers,
1588
- workspacePath: agentWorkspacePath,
1589
- };
1590
- agentWorkspacePath = resolveAgentWorkspacePath(workspacePath, project);
1591
- agentLaunchConfig.workspacePath = agentWorkspacePath;
1592
- // Set up workspace hooks (re-writes MCP config and shell wrappers on restore)
1593
- if (plugins.agent.setupWorkspaceHooks) {
1594
- await plugins.agent.setupWorkspaceHooks(agentWorkspacePath, {
1595
- dataDir: sessionsDir,
1596
- sessionId,
1597
- mcpServers: restoreMcpServers,
1598
- });
1599
- }
1600
- if (plugins.agent.getRestoreCommand) {
1601
- const restoreCmd = await plugins.agent.getRestoreCommand(session, project);
1602
- launchCommand = restoreCmd ?? plugins.agent.getLaunchCommand(agentLaunchConfig);
1603
- }
1604
- else {
1605
- launchCommand = plugins.agent.getLaunchCommand(agentLaunchConfig);
1606
- }
1607
- const environment = plugins.agent.getEnvironment(agentLaunchConfig);
1608
- // 8. Create runtime (reuse tmuxName from metadata)
1609
- const tmuxName = raw["tmuxName"];
1610
- const handle = await plugins.runtime.create({
1611
- sessionId: tmuxName ?? sessionId,
1612
- workspacePath: agentWorkspacePath,
1613
- launchCommand,
1614
- environment: {
1615
- ...environment,
1616
- CO_SESSION: sessionId,
1617
- CO_DATA_DIR: sessionsDir,
1618
- CO_SESSION_NAME: sessionId,
1619
- CO_AGENT_CWD: agentWorkspacePath,
1620
- ...(tmuxName && { CO_TMUX_NAME: tmuxName }),
1621
- },
1622
- });
1623
- // 9. Update metadata
1624
- const now = new Date().toISOString();
1625
- updateMetadata(sessionsDir, sessionId, {
1626
- status: "spawning",
1627
- runtimeHandle: JSON.stringify(handle),
1628
- restoredAt: now,
1629
- });
1630
- appendSessionConversationEntry(sessionsDir, sessionId, {
1631
- kind: "system_message",
1632
- text: "Session restored and reattached to a fresh runtime.",
1633
- source: "restore",
1634
- });
1635
- // 10. Run postLaunchSetup (non-fatal)
1636
- const restoredSession = {
1637
- ...session,
1638
- status: "spawning",
1639
- activity: "active",
1640
- workspacePath,
1641
- runtimeHandle: handle,
1642
- restoredAt: new Date(now),
1643
- };
1644
- if (plugins.agent.postLaunchSetup) {
1645
- try {
1646
- await plugins.agent.postLaunchSetup(restoredSession);
1647
- }
1648
- catch {
1649
- // Non-fatal -- session is already running
1650
- }
1651
- }
1652
- return restoredSession;
1653
- }
1654
- async function getOutput(sessionId, lines = 500) {
1655
- let raw = null;
1656
- for (const project of Object.values(config.projects)) {
1657
- const sessionsDir = getProjectSessionsDir(project);
1658
- const metadata = readMetadataRaw(sessionsDir, sessionId);
1659
- if (metadata) {
1660
- raw = metadata;
1661
- break;
1662
- }
1663
- }
1664
- if (!raw)
1665
- throw new Error(`Session ${sessionId} not found`);
1666
- let handle;
1667
- if (raw["runtimeHandle"]) {
1668
- const parsed = safeJsonParse(raw["runtimeHandle"]);
1669
- if (!parsed) {
1670
- throw new Error(`Corrupted runtime handle for session ${sessionId}`);
1671
- }
1672
- handle = parsed;
1673
- }
1674
- else {
1675
- handle = { id: sessionId, runtimeName: config.defaults.runtime, data: {} };
1676
- }
1677
- const project = config.projects[raw["project"] ?? ""];
1678
- const runtimePlugin = registry.get("runtime", handle.runtimeName ??
1679
- (project ? (project.runtime ?? config.defaults.runtime) : config.defaults.runtime));
1680
- if (!runtimePlugin) {
1681
- throw new Error(`No runtime plugin for session ${sessionId}`);
1682
- }
1683
- return runtimePlugin.getOutput(handle, lines);
1684
- }
1685
- async function getConversation(sessionId) {
1686
- const location = findSessionLocation(sessionId);
1687
- if (location) {
1688
- return readConversationEntries(location.sessionsDir, sessionId);
1689
- }
1690
- for (const project of Object.values(config.projects)) {
1691
- const sessionsDir = getProjectSessionsDir(project);
1692
- const archived = readArchivedConversationEntries(sessionsDir, sessionId);
1693
- if (archived.length > 0) {
1694
- return archived;
1695
- }
1696
- }
1697
- return [];
1698
- }
1699
- return {
1700
- spawn,
1701
- retry,
1702
- taskGraph,
1703
- submitFeedback,
1704
- restore,
1705
- list,
1706
- get,
1707
- kill,
1708
- cleanup,
1709
- send,
1710
- getConversation,
1711
- getOutput,
1712
- };
1713
- }
1714
- //# sourceMappingURL=session-manager.js.map