conductor-oss 0.6.2 → 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]__254bd2a7._.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/_14ef3484._.js +0 -3
  3541. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_8ffa3492._.js +0 -3
  3542. package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_f6977bba._.js +0 -3
  3543. package/web/.next/standalone/packages/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
  3544. package/web/.next/standalone/packages/web/.next/static/chunks/370a77846e2f7273.js +0 -1
  3545. package/web/.next/standalone/packages/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
  3546. package/web/.next/standalone/packages/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
  3547. package/web/.next/standalone/packages/web/.next/static/chunks/74d0c9993cf0b864.js +0 -6
  3548. package/web/.next/standalone/packages/web/.next/static/chunks/a08d465aed8566c5.js +0 -1
  3549. package/web/.next/standalone/packages/web/.next/static/chunks/bf82908a598c6de5.css +0 -3
  3550. package/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
  3551. package/web/.next/static/chunks/370a77846e2f7273.js +0 -1
  3552. package/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
  3553. package/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
  3554. package/web/.next/static/chunks/74d0c9993cf0b864.js +0 -6
  3555. package/web/.next/static/chunks/a08d465aed8566c5.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/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
  3559. /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
  3560. /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
  3561. /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
  3562. /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
  3563. /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
@@ -1,2299 +0,0 @@
1
- /**
2
- * This file is automatically generated from the Model Context Protocol specification.
3
- *
4
- * Source: https://github.com/modelcontextprotocol/modelcontextprotocol
5
- * Pulled from: https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/draft/schema.ts
6
- * Last updated from commit: 35fa160caf287a9c48696e3ae452c0645c713669
7
- *
8
- * DO NOT EDIT THIS FILE MANUALLY. Changes will be overwritten by automated updates.
9
- * To update this file, run: npm run fetch:spec-types
10
- */
11
- /**
12
- * Refers to any valid JSON-RPC object that can be decoded off the wire, or encoded to be sent.
13
- *
14
- * @category JSON-RPC
15
- */
16
- export type JSONRPCMessage = JSONRPCRequest | JSONRPCNotification | JSONRPCResponse;
17
- /** @internal */
18
- export declare const LATEST_PROTOCOL_VERSION = "DRAFT-2026-v1";
19
- /** @internal */
20
- export declare const JSONRPC_VERSION = "2.0";
21
- /**
22
- * A progress token, used to associate progress notifications with the original request.
23
- *
24
- * @category Common Types
25
- */
26
- export type ProgressToken = string | number;
27
- /**
28
- * An opaque token used to represent a cursor for pagination.
29
- *
30
- * @category Common Types
31
- */
32
- export type Cursor = string;
33
- /**
34
- * Common params for any task-augmented request.
35
- *
36
- * @internal
37
- */
38
- export interface TaskAugmentedRequestParams extends RequestParams {
39
- /**
40
- * If specified, the caller is requesting task-augmented execution for this request.
41
- * The request will return a CreateTaskResult immediately, and the actual result can be
42
- * retrieved later via tasks/result.
43
- *
44
- * Task augmentation is subject to capability negotiation - receivers MUST declare support
45
- * for task augmentation of specific request types in their capabilities.
46
- */
47
- task?: TaskMetadata;
48
- }
49
- /**
50
- * Common params for any request.
51
- *
52
- * @internal
53
- */
54
- export interface RequestParams {
55
- /**
56
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
57
- */
58
- _meta?: {
59
- /**
60
- * If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
61
- */
62
- progressToken?: ProgressToken;
63
- [key: string]: unknown;
64
- };
65
- }
66
- /** @internal */
67
- export interface Request {
68
- method: string;
69
- params?: {
70
- [key: string]: any;
71
- };
72
- }
73
- /** @internal */
74
- export interface NotificationParams {
75
- /**
76
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
77
- */
78
- _meta?: {
79
- [key: string]: unknown;
80
- };
81
- }
82
- /** @internal */
83
- export interface Notification {
84
- method: string;
85
- params?: {
86
- [key: string]: any;
87
- };
88
- }
89
- /**
90
- * @category Common Types
91
- */
92
- export interface Result {
93
- /**
94
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
95
- */
96
- _meta?: {
97
- [key: string]: unknown;
98
- };
99
- [key: string]: unknown;
100
- }
101
- /**
102
- * @category Common Types
103
- */
104
- export interface Error {
105
- /**
106
- * The error type that occurred.
107
- */
108
- code: number;
109
- /**
110
- * A short description of the error. The message SHOULD be limited to a concise single sentence.
111
- */
112
- message: string;
113
- /**
114
- * Additional information about the error. The value of this member is defined by the sender (e.g. detailed error information, nested errors etc.).
115
- */
116
- data?: unknown;
117
- }
118
- /**
119
- * A uniquely identifying ID for a request in JSON-RPC.
120
- *
121
- * @category Common Types
122
- */
123
- export type RequestId = string | number;
124
- /**
125
- * A request that expects a response.
126
- *
127
- * @category JSON-RPC
128
- */
129
- export interface JSONRPCRequest extends Request {
130
- jsonrpc: typeof JSONRPC_VERSION;
131
- id: RequestId;
132
- }
133
- /**
134
- * A notification which does not expect a response.
135
- *
136
- * @category JSON-RPC
137
- */
138
- export interface JSONRPCNotification extends Notification {
139
- jsonrpc: typeof JSONRPC_VERSION;
140
- }
141
- /**
142
- * A successful (non-error) response to a request.
143
- *
144
- * @category JSON-RPC
145
- */
146
- export interface JSONRPCResultResponse {
147
- jsonrpc: typeof JSONRPC_VERSION;
148
- id: RequestId;
149
- result: Result;
150
- }
151
- /**
152
- * A response to a request that indicates an error occurred.
153
- *
154
- * @category JSON-RPC
155
- */
156
- export interface JSONRPCErrorResponse {
157
- jsonrpc: typeof JSONRPC_VERSION;
158
- id?: RequestId;
159
- error: Error;
160
- }
161
- /**
162
- * A response to a request, containing either the result or error.
163
- */
164
- export type JSONRPCResponse = JSONRPCResultResponse | JSONRPCErrorResponse;
165
- export declare const PARSE_ERROR = -32700;
166
- export declare const INVALID_REQUEST = -32600;
167
- export declare const METHOD_NOT_FOUND = -32601;
168
- export declare const INVALID_PARAMS = -32602;
169
- export declare const INTERNAL_ERROR = -32603;
170
- /** @internal */
171
- export declare const URL_ELICITATION_REQUIRED = -32042;
172
- /**
173
- * An error response that indicates that the server requires the client to provide additional information via an elicitation request.
174
- *
175
- * @internal
176
- */
177
- export interface URLElicitationRequiredError extends Omit<JSONRPCErrorResponse, "error"> {
178
- error: Error & {
179
- code: typeof URL_ELICITATION_REQUIRED;
180
- data: {
181
- elicitations: ElicitRequestURLParams[];
182
- [key: string]: unknown;
183
- };
184
- };
185
- }
186
- /**
187
- * A response that indicates success but carries no data.
188
- *
189
- * @category Common Types
190
- */
191
- export type EmptyResult = Result;
192
- /**
193
- * Parameters for a `notifications/cancelled` notification.
194
- *
195
- * @category `notifications/cancelled`
196
- */
197
- export interface CancelledNotificationParams extends NotificationParams {
198
- /**
199
- * The ID of the request to cancel.
200
- *
201
- * This MUST correspond to the ID of a request previously issued in the same direction.
202
- * This MUST be provided for cancelling non-task requests.
203
- * This MUST NOT be used for cancelling tasks (use the `tasks/cancel` request instead).
204
- */
205
- requestId?: RequestId;
206
- /**
207
- * An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
208
- */
209
- reason?: string;
210
- }
211
- /**
212
- * This notification can be sent by either side to indicate that it is cancelling a previously-issued request.
213
- *
214
- * The request SHOULD still be in-flight, but due to communication latency, it is always possible that this notification MAY arrive after the request has already finished.
215
- *
216
- * This notification indicates that the result will be unused, so any associated processing SHOULD cease.
217
- *
218
- * A client MUST NOT attempt to cancel its `initialize` request.
219
- *
220
- * For task cancellation, use the `tasks/cancel` request instead of this notification.
221
- *
222
- * @category `notifications/cancelled`
223
- */
224
- export interface CancelledNotification extends JSONRPCNotification {
225
- method: "notifications/cancelled";
226
- params: CancelledNotificationParams;
227
- }
228
- /**
229
- * Parameters for an `initialize` request.
230
- *
231
- * @category `initialize`
232
- */
233
- export interface InitializeRequestParams extends RequestParams {
234
- /**
235
- * The latest version of the Model Context Protocol that the client supports. The client MAY decide to support older versions as well.
236
- */
237
- protocolVersion: string;
238
- capabilities: ClientCapabilities;
239
- clientInfo: Implementation;
240
- }
241
- /**
242
- * This request is sent from the client to the server when it first connects, asking it to begin initialization.
243
- *
244
- * @category `initialize`
245
- */
246
- export interface InitializeRequest extends JSONRPCRequest {
247
- method: "initialize";
248
- params: InitializeRequestParams;
249
- }
250
- /**
251
- * After receiving an initialize request from the client, the server sends this response.
252
- *
253
- * @category `initialize`
254
- */
255
- export interface InitializeResult extends Result {
256
- /**
257
- * The version of the Model Context Protocol that the server wants to use. This may not match the version that the client requested. If the client cannot support this version, it MUST disconnect.
258
- */
259
- protocolVersion: string;
260
- capabilities: ServerCapabilities;
261
- serverInfo: Implementation;
262
- /**
263
- * Instructions describing how to use the server and its features.
264
- *
265
- * This can be used by clients to improve the LLM's understanding of available tools, resources, etc. It can be thought of like a "hint" to the model. For example, this information MAY be added to the system prompt.
266
- */
267
- instructions?: string;
268
- }
269
- /**
270
- * This notification is sent from the client to the server after initialization has finished.
271
- *
272
- * @category `notifications/initialized`
273
- */
274
- export interface InitializedNotification extends JSONRPCNotification {
275
- method: "notifications/initialized";
276
- params?: NotificationParams;
277
- }
278
- /**
279
- * Capabilities a client may support. Known capabilities are defined here, in this schema, but this is not a closed set: any client can define its own, additional capabilities.
280
- *
281
- * @category `initialize`
282
- */
283
- export interface ClientCapabilities {
284
- /**
285
- * Experimental, non-standard capabilities that the client supports.
286
- */
287
- experimental?: {
288
- [key: string]: object;
289
- };
290
- /**
291
- * Present if the client supports listing roots.
292
- */
293
- roots?: {
294
- /**
295
- * Whether the client supports notifications for changes to the roots list.
296
- */
297
- listChanged?: boolean;
298
- };
299
- /**
300
- * Present if the client supports sampling from an LLM.
301
- */
302
- sampling?: {
303
- /**
304
- * Whether the client supports context inclusion via includeContext parameter.
305
- * If not declared, servers SHOULD only use `includeContext: "none"` (or omit it).
306
- */
307
- context?: object;
308
- /**
309
- * Whether the client supports tool use via tools and toolChoice parameters.
310
- */
311
- tools?: object;
312
- };
313
- /**
314
- * Present if the client supports elicitation from the server.
315
- */
316
- elicitation?: {
317
- form?: object;
318
- url?: object;
319
- };
320
- /**
321
- * Present if the client supports task-augmented requests.
322
- */
323
- tasks?: {
324
- /**
325
- * Whether this client supports tasks/list.
326
- */
327
- list?: object;
328
- /**
329
- * Whether this client supports tasks/cancel.
330
- */
331
- cancel?: object;
332
- /**
333
- * Specifies which request types can be augmented with tasks.
334
- */
335
- requests?: {
336
- /**
337
- * Task support for sampling-related requests.
338
- */
339
- sampling?: {
340
- /**
341
- * Whether the client supports task-augmented sampling/createMessage requests.
342
- */
343
- createMessage?: object;
344
- };
345
- /**
346
- * Task support for elicitation-related requests.
347
- */
348
- elicitation?: {
349
- /**
350
- * Whether the client supports task-augmented elicitation/create requests.
351
- */
352
- create?: object;
353
- };
354
- };
355
- };
356
- }
357
- /**
358
- * Capabilities that a server may support. Known capabilities are defined here, in this schema, but this is not a closed set: any server can define its own, additional capabilities.
359
- *
360
- * @category `initialize`
361
- */
362
- export interface ServerCapabilities {
363
- /**
364
- * Experimental, non-standard capabilities that the server supports.
365
- */
366
- experimental?: {
367
- [key: string]: object;
368
- };
369
- /**
370
- * Present if the server supports sending log messages to the client.
371
- */
372
- logging?: object;
373
- /**
374
- * Present if the server supports argument autocompletion suggestions.
375
- */
376
- completions?: object;
377
- /**
378
- * Present if the server offers any prompt templates.
379
- */
380
- prompts?: {
381
- /**
382
- * Whether this server supports notifications for changes to the prompt list.
383
- */
384
- listChanged?: boolean;
385
- };
386
- /**
387
- * Present if the server offers any resources to read.
388
- */
389
- resources?: {
390
- /**
391
- * Whether this server supports subscribing to resource updates.
392
- */
393
- subscribe?: boolean;
394
- /**
395
- * Whether this server supports notifications for changes to the resource list.
396
- */
397
- listChanged?: boolean;
398
- };
399
- /**
400
- * Present if the server offers any tools to call.
401
- */
402
- tools?: {
403
- /**
404
- * Whether this server supports notifications for changes to the tool list.
405
- */
406
- listChanged?: boolean;
407
- };
408
- /**
409
- * Present if the server supports task-augmented requests.
410
- */
411
- tasks?: {
412
- /**
413
- * Whether this server supports tasks/list.
414
- */
415
- list?: object;
416
- /**
417
- * Whether this server supports tasks/cancel.
418
- */
419
- cancel?: object;
420
- /**
421
- * Specifies which request types can be augmented with tasks.
422
- */
423
- requests?: {
424
- /**
425
- * Task support for tool-related requests.
426
- */
427
- tools?: {
428
- /**
429
- * Whether the server supports task-augmented tools/call requests.
430
- */
431
- call?: object;
432
- };
433
- };
434
- };
435
- }
436
- /**
437
- * An optionally-sized icon that can be displayed in a user interface.
438
- *
439
- * @category Common Types
440
- */
441
- export interface Icon {
442
- /**
443
- * A standard URI pointing to an icon resource. May be an HTTP/HTTPS URL or a
444
- * `data:` URI with Base64-encoded image data.
445
- *
446
- * Consumers SHOULD takes steps to ensure URLs serving icons are from the
447
- * same domain as the client/server or a trusted domain.
448
- *
449
- * Consumers SHOULD take appropriate precautions when consuming SVGs as they can contain
450
- * executable JavaScript.
451
- *
452
- * @format uri
453
- */
454
- src: string;
455
- /**
456
- * Optional MIME type override if the source MIME type is missing or generic.
457
- * For example: `"image/png"`, `"image/jpeg"`, or `"image/svg+xml"`.
458
- */
459
- mimeType?: string;
460
- /**
461
- * Optional array of strings that specify sizes at which the icon can be used.
462
- * Each string should be in WxH format (e.g., `"48x48"`, `"96x96"`) or `"any"` for scalable formats like SVG.
463
- *
464
- * If not provided, the client should assume that the icon can be used at any size.
465
- */
466
- sizes?: string[];
467
- /**
468
- * Optional specifier for the theme this icon is designed for. `light` indicates
469
- * the icon is designed to be used with a light background, and `dark` indicates
470
- * the icon is designed to be used with a dark background.
471
- *
472
- * If not provided, the client should assume the icon can be used with any theme.
473
- */
474
- theme?: "light" | "dark";
475
- }
476
- /**
477
- * Base interface to add `icons` property.
478
- *
479
- * @internal
480
- */
481
- export interface Icons {
482
- /**
483
- * Optional set of sized icons that the client can display in a user interface.
484
- *
485
- * Clients that support rendering icons MUST support at least the following MIME types:
486
- * - `image/png` - PNG images (safe, universal compatibility)
487
- * - `image/jpeg` (and `image/jpg`) - JPEG images (safe, universal compatibility)
488
- *
489
- * Clients that support rendering icons SHOULD also support:
490
- * - `image/svg+xml` - SVG images (scalable but requires security precautions)
491
- * - `image/webp` - WebP images (modern, efficient format)
492
- */
493
- icons?: Icon[];
494
- }
495
- /**
496
- * Base interface for metadata with name (identifier) and title (display name) properties.
497
- *
498
- * @internal
499
- */
500
- export interface BaseMetadata {
501
- /**
502
- * Intended for programmatic or logical use, but used as a display name in past specs or fallback (if title isn't present).
503
- */
504
- name: string;
505
- /**
506
- * Intended for UI and end-user contexts — optimized to be human-readable and easily understood,
507
- * even by those unfamiliar with domain-specific terminology.
508
- *
509
- * If not provided, the name should be used for display (except for Tool,
510
- * where `annotations.title` should be given precedence over using `name`,
511
- * if present).
512
- */
513
- title?: string;
514
- }
515
- /**
516
- * Describes the MCP implementation.
517
- *
518
- * @category `initialize`
519
- */
520
- export interface Implementation extends BaseMetadata, Icons {
521
- version: string;
522
- /**
523
- * An optional human-readable description of what this implementation does.
524
- *
525
- * This can be used by clients or servers to provide context about their purpose
526
- * and capabilities. For example, a server might describe the types of resources
527
- * or tools it provides, while a client might describe its intended use case.
528
- */
529
- description?: string;
530
- /**
531
- * An optional URL of the website for this implementation.
532
- *
533
- * @format uri
534
- */
535
- websiteUrl?: string;
536
- }
537
- /**
538
- * A ping, issued by either the server or the client, to check that the other party is still alive. The receiver must promptly respond, or else may be disconnected.
539
- *
540
- * @category `ping`
541
- */
542
- export interface PingRequest extends JSONRPCRequest {
543
- method: "ping";
544
- params?: RequestParams;
545
- }
546
- /**
547
- * Parameters for a `notifications/progress` notification.
548
- *
549
- * @category `notifications/progress`
550
- */
551
- export interface ProgressNotificationParams extends NotificationParams {
552
- /**
553
- * The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
554
- */
555
- progressToken: ProgressToken;
556
- /**
557
- * The progress thus far. This should increase every time progress is made, even if the total is unknown.
558
- *
559
- * @TJS-type number
560
- */
561
- progress: number;
562
- /**
563
- * Total number of items to process (or total progress required), if known.
564
- *
565
- * @TJS-type number
566
- */
567
- total?: number;
568
- /**
569
- * An optional message describing the current progress.
570
- */
571
- message?: string;
572
- }
573
- /**
574
- * An out-of-band notification used to inform the receiver of a progress update for a long-running request.
575
- *
576
- * @category `notifications/progress`
577
- */
578
- export interface ProgressNotification extends JSONRPCNotification {
579
- method: "notifications/progress";
580
- params: ProgressNotificationParams;
581
- }
582
- /**
583
- * Common parameters for paginated requests.
584
- *
585
- * @internal
586
- */
587
- export interface PaginatedRequestParams extends RequestParams {
588
- /**
589
- * An opaque token representing the current pagination position.
590
- * If provided, the server should return results starting after this cursor.
591
- */
592
- cursor?: Cursor;
593
- }
594
- /** @internal */
595
- export interface PaginatedRequest extends JSONRPCRequest {
596
- params?: PaginatedRequestParams;
597
- }
598
- /** @internal */
599
- export interface PaginatedResult extends Result {
600
- /**
601
- * An opaque token representing the pagination position after the last returned result.
602
- * If present, there may be more results available.
603
- */
604
- nextCursor?: Cursor;
605
- }
606
- /**
607
- * Sent from the client to request a list of resources the server has.
608
- *
609
- * @category `resources/list`
610
- */
611
- export interface ListResourcesRequest extends PaginatedRequest {
612
- method: "resources/list";
613
- }
614
- /**
615
- * The server's response to a resources/list request from the client.
616
- *
617
- * @category `resources/list`
618
- */
619
- export interface ListResourcesResult extends PaginatedResult {
620
- resources: Resource[];
621
- }
622
- /**
623
- * Sent from the client to request a list of resource templates the server has.
624
- *
625
- * @category `resources/templates/list`
626
- */
627
- export interface ListResourceTemplatesRequest extends PaginatedRequest {
628
- method: "resources/templates/list";
629
- }
630
- /**
631
- * The server's response to a resources/templates/list request from the client.
632
- *
633
- * @category `resources/templates/list`
634
- */
635
- export interface ListResourceTemplatesResult extends PaginatedResult {
636
- resourceTemplates: ResourceTemplate[];
637
- }
638
- /**
639
- * Common parameters when working with resources.
640
- *
641
- * @internal
642
- */
643
- export interface ResourceRequestParams extends RequestParams {
644
- /**
645
- * The URI of the resource. The URI can use any protocol; it is up to the server how to interpret it.
646
- *
647
- * @format uri
648
- */
649
- uri: string;
650
- }
651
- /**
652
- * Parameters for a `resources/read` request.
653
- *
654
- * @category `resources/read`
655
- */
656
- export interface ReadResourceRequestParams extends ResourceRequestParams {
657
- }
658
- /**
659
- * Sent from the client to the server, to read a specific resource URI.
660
- *
661
- * @category `resources/read`
662
- */
663
- export interface ReadResourceRequest extends JSONRPCRequest {
664
- method: "resources/read";
665
- params: ReadResourceRequestParams;
666
- }
667
- /**
668
- * The server's response to a resources/read request from the client.
669
- *
670
- * @category `resources/read`
671
- */
672
- export interface ReadResourceResult extends Result {
673
- contents: (TextResourceContents | BlobResourceContents)[];
674
- }
675
- /**
676
- * An optional notification from the server to the client, informing it that the list of resources it can read from has changed. This may be issued by servers without any previous subscription from the client.
677
- *
678
- * @category `notifications/resources/list_changed`
679
- */
680
- export interface ResourceListChangedNotification extends JSONRPCNotification {
681
- method: "notifications/resources/list_changed";
682
- params?: NotificationParams;
683
- }
684
- /**
685
- * Parameters for a `resources/subscribe` request.
686
- *
687
- * @category `resources/subscribe`
688
- */
689
- export interface SubscribeRequestParams extends ResourceRequestParams {
690
- }
691
- /**
692
- * Sent from the client to request resources/updated notifications from the server whenever a particular resource changes.
693
- *
694
- * @category `resources/subscribe`
695
- */
696
- export interface SubscribeRequest extends JSONRPCRequest {
697
- method: "resources/subscribe";
698
- params: SubscribeRequestParams;
699
- }
700
- /**
701
- * Parameters for a `resources/unsubscribe` request.
702
- *
703
- * @category `resources/unsubscribe`
704
- */
705
- export interface UnsubscribeRequestParams extends ResourceRequestParams {
706
- }
707
- /**
708
- * Sent from the client to request cancellation of resources/updated notifications from the server. This should follow a previous resources/subscribe request.
709
- *
710
- * @category `resources/unsubscribe`
711
- */
712
- export interface UnsubscribeRequest extends JSONRPCRequest {
713
- method: "resources/unsubscribe";
714
- params: UnsubscribeRequestParams;
715
- }
716
- /**
717
- * Parameters for a `notifications/resources/updated` notification.
718
- *
719
- * @category `notifications/resources/updated`
720
- */
721
- export interface ResourceUpdatedNotificationParams extends NotificationParams {
722
- /**
723
- * The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
724
- *
725
- * @format uri
726
- */
727
- uri: string;
728
- }
729
- /**
730
- * A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request.
731
- *
732
- * @category `notifications/resources/updated`
733
- */
734
- export interface ResourceUpdatedNotification extends JSONRPCNotification {
735
- method: "notifications/resources/updated";
736
- params: ResourceUpdatedNotificationParams;
737
- }
738
- /**
739
- * A known resource that the server is capable of reading.
740
- *
741
- * @category `resources/list`
742
- */
743
- export interface Resource extends BaseMetadata, Icons {
744
- /**
745
- * The URI of this resource.
746
- *
747
- * @format uri
748
- */
749
- uri: string;
750
- /**
751
- * A description of what this resource represents.
752
- *
753
- * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model.
754
- */
755
- description?: string;
756
- /**
757
- * The MIME type of this resource, if known.
758
- */
759
- mimeType?: string;
760
- /**
761
- * Optional annotations for the client.
762
- */
763
- annotations?: Annotations;
764
- /**
765
- * The size of the raw resource content, in bytes (i.e., before base64 encoding or any tokenization), if known.
766
- *
767
- * This can be used by Hosts to display file sizes and estimate context window usage.
768
- */
769
- size?: number;
770
- /**
771
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
772
- */
773
- _meta?: {
774
- [key: string]: unknown;
775
- };
776
- }
777
- /**
778
- * A template description for resources available on the server.
779
- *
780
- * @category `resources/templates/list`
781
- */
782
- export interface ResourceTemplate extends BaseMetadata, Icons {
783
- /**
784
- * A URI template (according to RFC 6570) that can be used to construct resource URIs.
785
- *
786
- * @format uri-template
787
- */
788
- uriTemplate: string;
789
- /**
790
- * A description of what this template is for.
791
- *
792
- * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model.
793
- */
794
- description?: string;
795
- /**
796
- * The MIME type for all resources that match this template. This should only be included if all resources matching this template have the same type.
797
- */
798
- mimeType?: string;
799
- /**
800
- * Optional annotations for the client.
801
- */
802
- annotations?: Annotations;
803
- /**
804
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
805
- */
806
- _meta?: {
807
- [key: string]: unknown;
808
- };
809
- }
810
- /**
811
- * The contents of a specific resource or sub-resource.
812
- *
813
- * @internal
814
- */
815
- export interface ResourceContents {
816
- /**
817
- * The URI of this resource.
818
- *
819
- * @format uri
820
- */
821
- uri: string;
822
- /**
823
- * The MIME type of this resource, if known.
824
- */
825
- mimeType?: string;
826
- /**
827
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
828
- */
829
- _meta?: {
830
- [key: string]: unknown;
831
- };
832
- }
833
- /**
834
- * @category Content
835
- */
836
- export interface TextResourceContents extends ResourceContents {
837
- /**
838
- * The text of the item. This must only be set if the item can actually be represented as text (not binary data).
839
- */
840
- text: string;
841
- }
842
- /**
843
- * @category Content
844
- */
845
- export interface BlobResourceContents extends ResourceContents {
846
- /**
847
- * A base64-encoded string representing the binary data of the item.
848
- *
849
- * @format byte
850
- */
851
- blob: string;
852
- }
853
- /**
854
- * Sent from the client to request a list of prompts and prompt templates the server has.
855
- *
856
- * @category `prompts/list`
857
- */
858
- export interface ListPromptsRequest extends PaginatedRequest {
859
- method: "prompts/list";
860
- }
861
- /**
862
- * The server's response to a prompts/list request from the client.
863
- *
864
- * @category `prompts/list`
865
- */
866
- export interface ListPromptsResult extends PaginatedResult {
867
- prompts: Prompt[];
868
- }
869
- /**
870
- * Parameters for a `prompts/get` request.
871
- *
872
- * @category `prompts/get`
873
- */
874
- export interface GetPromptRequestParams extends RequestParams {
875
- /**
876
- * The name of the prompt or prompt template.
877
- */
878
- name: string;
879
- /**
880
- * Arguments to use for templating the prompt.
881
- */
882
- arguments?: {
883
- [key: string]: string;
884
- };
885
- }
886
- /**
887
- * Used by the client to get a prompt provided by the server.
888
- *
889
- * @category `prompts/get`
890
- */
891
- export interface GetPromptRequest extends JSONRPCRequest {
892
- method: "prompts/get";
893
- params: GetPromptRequestParams;
894
- }
895
- /**
896
- * The server's response to a prompts/get request from the client.
897
- *
898
- * @category `prompts/get`
899
- */
900
- export interface GetPromptResult extends Result {
901
- /**
902
- * An optional description for the prompt.
903
- */
904
- description?: string;
905
- messages: PromptMessage[];
906
- }
907
- /**
908
- * A prompt or prompt template that the server offers.
909
- *
910
- * @category `prompts/list`
911
- */
912
- export interface Prompt extends BaseMetadata, Icons {
913
- /**
914
- * An optional description of what this prompt provides
915
- */
916
- description?: string;
917
- /**
918
- * A list of arguments to use for templating the prompt.
919
- */
920
- arguments?: PromptArgument[];
921
- /**
922
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
923
- */
924
- _meta?: {
925
- [key: string]: unknown;
926
- };
927
- }
928
- /**
929
- * Describes an argument that a prompt can accept.
930
- *
931
- * @category `prompts/list`
932
- */
933
- export interface PromptArgument extends BaseMetadata {
934
- /**
935
- * A human-readable description of the argument.
936
- */
937
- description?: string;
938
- /**
939
- * Whether this argument must be provided.
940
- */
941
- required?: boolean;
942
- }
943
- /**
944
- * The sender or recipient of messages and data in a conversation.
945
- *
946
- * @category Common Types
947
- */
948
- export type Role = "user" | "assistant";
949
- /**
950
- * Describes a message returned as part of a prompt.
951
- *
952
- * This is similar to `SamplingMessage`, but also supports the embedding of
953
- * resources from the MCP server.
954
- *
955
- * @category `prompts/get`
956
- */
957
- export interface PromptMessage {
958
- role: Role;
959
- content: ContentBlock;
960
- }
961
- /**
962
- * A resource that the server is capable of reading, included in a prompt or tool call result.
963
- *
964
- * Note: resource links returned by tools are not guaranteed to appear in the results of `resources/list` requests.
965
- *
966
- * @category Content
967
- */
968
- export interface ResourceLink extends Resource {
969
- type: "resource_link";
970
- }
971
- /**
972
- * The contents of a resource, embedded into a prompt or tool call result.
973
- *
974
- * It is up to the client how best to render embedded resources for the benefit
975
- * of the LLM and/or the user.
976
- *
977
- * @category Content
978
- */
979
- export interface EmbeddedResource {
980
- type: "resource";
981
- resource: TextResourceContents | BlobResourceContents;
982
- /**
983
- * Optional annotations for the client.
984
- */
985
- annotations?: Annotations;
986
- /**
987
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
988
- */
989
- _meta?: {
990
- [key: string]: unknown;
991
- };
992
- }
993
- /**
994
- * An optional notification from the server to the client, informing it that the list of prompts it offers has changed. This may be issued by servers without any previous subscription from the client.
995
- *
996
- * @category `notifications/prompts/list_changed`
997
- */
998
- export interface PromptListChangedNotification extends JSONRPCNotification {
999
- method: "notifications/prompts/list_changed";
1000
- params?: NotificationParams;
1001
- }
1002
- /**
1003
- * Sent from the client to request a list of tools the server has.
1004
- *
1005
- * @category `tools/list`
1006
- */
1007
- export interface ListToolsRequest extends PaginatedRequest {
1008
- method: "tools/list";
1009
- }
1010
- /**
1011
- * The server's response to a tools/list request from the client.
1012
- *
1013
- * @category `tools/list`
1014
- */
1015
- export interface ListToolsResult extends PaginatedResult {
1016
- tools: Tool[];
1017
- }
1018
- /**
1019
- * The server's response to a tool call.
1020
- *
1021
- * @category `tools/call`
1022
- */
1023
- export interface CallToolResult extends Result {
1024
- /**
1025
- * A list of content objects that represent the unstructured result of the tool call.
1026
- */
1027
- content: ContentBlock[];
1028
- /**
1029
- * An optional JSON object that represents the structured result of the tool call.
1030
- */
1031
- structuredContent?: {
1032
- [key: string]: unknown;
1033
- };
1034
- /**
1035
- * Whether the tool call ended in an error.
1036
- *
1037
- * If not set, this is assumed to be false (the call was successful).
1038
- *
1039
- * Any errors that originate from the tool SHOULD be reported inside the result
1040
- * object, with `isError` set to true, _not_ as an MCP protocol-level error
1041
- * response. Otherwise, the LLM would not be able to see that an error occurred
1042
- * and self-correct.
1043
- *
1044
- * However, any errors in _finding_ the tool, an error indicating that the
1045
- * server does not support tool calls, or any other exceptional conditions,
1046
- * should be reported as an MCP error response.
1047
- */
1048
- isError?: boolean;
1049
- }
1050
- /**
1051
- * Parameters for a `tools/call` request.
1052
- *
1053
- * @category `tools/call`
1054
- */
1055
- export interface CallToolRequestParams extends TaskAugmentedRequestParams {
1056
- /**
1057
- * The name of the tool.
1058
- */
1059
- name: string;
1060
- /**
1061
- * Arguments to use for the tool call.
1062
- */
1063
- arguments?: {
1064
- [key: string]: unknown;
1065
- };
1066
- }
1067
- /**
1068
- * Used by the client to invoke a tool provided by the server.
1069
- *
1070
- * @category `tools/call`
1071
- */
1072
- export interface CallToolRequest extends JSONRPCRequest {
1073
- method: "tools/call";
1074
- params: CallToolRequestParams;
1075
- }
1076
- /**
1077
- * An optional notification from the server to the client, informing it that the list of tools it offers has changed. This may be issued by servers without any previous subscription from the client.
1078
- *
1079
- * @category `notifications/tools/list_changed`
1080
- */
1081
- export interface ToolListChangedNotification extends JSONRPCNotification {
1082
- method: "notifications/tools/list_changed";
1083
- params?: NotificationParams;
1084
- }
1085
- /**
1086
- * Additional properties describing a Tool to clients.
1087
- *
1088
- * NOTE: all properties in ToolAnnotations are **hints**.
1089
- * They are not guaranteed to provide a faithful description of
1090
- * tool behavior (including descriptive properties like `title`).
1091
- *
1092
- * Clients should never make tool use decisions based on ToolAnnotations
1093
- * received from untrusted servers.
1094
- *
1095
- * @category `tools/list`
1096
- */
1097
- export interface ToolAnnotations {
1098
- /**
1099
- * A human-readable title for the tool.
1100
- */
1101
- title?: string;
1102
- /**
1103
- * If true, the tool does not modify its environment.
1104
- *
1105
- * Default: false
1106
- */
1107
- readOnlyHint?: boolean;
1108
- /**
1109
- * If true, the tool may perform destructive updates to its environment.
1110
- * If false, the tool performs only additive updates.
1111
- *
1112
- * (This property is meaningful only when `readOnlyHint == false`)
1113
- *
1114
- * Default: true
1115
- */
1116
- destructiveHint?: boolean;
1117
- /**
1118
- * If true, calling the tool repeatedly with the same arguments
1119
- * will have no additional effect on its environment.
1120
- *
1121
- * (This property is meaningful only when `readOnlyHint == false`)
1122
- *
1123
- * Default: false
1124
- */
1125
- idempotentHint?: boolean;
1126
- /**
1127
- * If true, this tool may interact with an "open world" of external
1128
- * entities. If false, the tool's domain of interaction is closed.
1129
- * For example, the world of a web search tool is open, whereas that
1130
- * of a memory tool is not.
1131
- *
1132
- * Default: true
1133
- */
1134
- openWorldHint?: boolean;
1135
- }
1136
- /**
1137
- * Execution-related properties for a tool.
1138
- *
1139
- * @category `tools/list`
1140
- */
1141
- export interface ToolExecution {
1142
- /**
1143
- * Indicates whether this tool supports task-augmented execution.
1144
- * This allows clients to handle long-running operations through polling
1145
- * the task system.
1146
- *
1147
- * - "forbidden": Tool does not support task-augmented execution (default when absent)
1148
- * - "optional": Tool may support task-augmented execution
1149
- * - "required": Tool requires task-augmented execution
1150
- *
1151
- * Default: "forbidden"
1152
- */
1153
- taskSupport?: "forbidden" | "optional" | "required";
1154
- }
1155
- /**
1156
- * Definition for a tool the client can call.
1157
- *
1158
- * @category `tools/list`
1159
- */
1160
- export interface Tool extends BaseMetadata, Icons {
1161
- /**
1162
- * A human-readable description of the tool.
1163
- *
1164
- * This can be used by clients to improve the LLM's understanding of available tools. It can be thought of like a "hint" to the model.
1165
- */
1166
- description?: string;
1167
- /**
1168
- * A JSON Schema object defining the expected parameters for the tool.
1169
- */
1170
- inputSchema: {
1171
- $schema?: string;
1172
- type: "object";
1173
- properties?: {
1174
- [key: string]: object;
1175
- };
1176
- required?: string[];
1177
- };
1178
- /**
1179
- * Execution-related properties for this tool.
1180
- */
1181
- execution?: ToolExecution;
1182
- /**
1183
- * An optional JSON Schema object defining the structure of the tool's output returned in
1184
- * the structuredContent field of a CallToolResult.
1185
- *
1186
- * Defaults to JSON Schema 2020-12 when no explicit $schema is provided.
1187
- * Currently restricted to type: "object" at the root level.
1188
- */
1189
- outputSchema?: {
1190
- $schema?: string;
1191
- type: "object";
1192
- properties?: {
1193
- [key: string]: object;
1194
- };
1195
- required?: string[];
1196
- };
1197
- /**
1198
- * Optional additional tool information.
1199
- *
1200
- * Display name precedence order is: title, annotations.title, then name.
1201
- */
1202
- annotations?: ToolAnnotations;
1203
- /**
1204
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1205
- */
1206
- _meta?: {
1207
- [key: string]: unknown;
1208
- };
1209
- }
1210
- /**
1211
- * The status of a task.
1212
- *
1213
- * @category `tasks`
1214
- */
1215
- export type TaskStatus = "working" | "input_required" | "completed" | "failed" | "cancelled";
1216
- /**
1217
- * Metadata for augmenting a request with task execution.
1218
- * Include this in the `task` field of the request parameters.
1219
- *
1220
- * @category `tasks`
1221
- */
1222
- export interface TaskMetadata {
1223
- /**
1224
- * Requested duration in milliseconds to retain task from creation.
1225
- */
1226
- ttl?: number;
1227
- }
1228
- /**
1229
- * Metadata for associating messages with a task.
1230
- * Include this in the `_meta` field under the key `io.modelcontextprotocol/related-task`.
1231
- *
1232
- * @category `tasks`
1233
- */
1234
- export interface RelatedTaskMetadata {
1235
- /**
1236
- * The task identifier this message is associated with.
1237
- */
1238
- taskId: string;
1239
- }
1240
- /**
1241
- * Data associated with a task.
1242
- *
1243
- * @category `tasks`
1244
- */
1245
- export interface Task {
1246
- /**
1247
- * The task identifier.
1248
- */
1249
- taskId: string;
1250
- /**
1251
- * Current task state.
1252
- */
1253
- status: TaskStatus;
1254
- /**
1255
- * Optional human-readable message describing the current task state.
1256
- * This can provide context for any status, including:
1257
- * - Reasons for "cancelled" status
1258
- * - Summaries for "completed" status
1259
- * - Diagnostic information for "failed" status (e.g., error details, what went wrong)
1260
- */
1261
- statusMessage?: string;
1262
- /**
1263
- * ISO 8601 timestamp when the task was created.
1264
- */
1265
- createdAt: string;
1266
- /**
1267
- * ISO 8601 timestamp when the task was last updated.
1268
- */
1269
- lastUpdatedAt: string;
1270
- /**
1271
- * Actual retention duration from creation in milliseconds, null for unlimited.
1272
- */
1273
- ttl: number | null;
1274
- /**
1275
- * Suggested polling interval in milliseconds.
1276
- */
1277
- pollInterval?: number;
1278
- }
1279
- /**
1280
- * A response to a task-augmented request.
1281
- *
1282
- * @category `tasks`
1283
- */
1284
- export interface CreateTaskResult extends Result {
1285
- task: Task;
1286
- }
1287
- /**
1288
- * A request to retrieve the state of a task.
1289
- *
1290
- * @category `tasks/get`
1291
- */
1292
- export interface GetTaskRequest extends JSONRPCRequest {
1293
- method: "tasks/get";
1294
- params: {
1295
- /**
1296
- * The task identifier to query.
1297
- */
1298
- taskId: string;
1299
- };
1300
- }
1301
- /**
1302
- * The response to a tasks/get request.
1303
- *
1304
- * @category `tasks/get`
1305
- */
1306
- export type GetTaskResult = Result & Task;
1307
- /**
1308
- * A request to retrieve the result of a completed task.
1309
- *
1310
- * @category `tasks/result`
1311
- */
1312
- export interface GetTaskPayloadRequest extends JSONRPCRequest {
1313
- method: "tasks/result";
1314
- params: {
1315
- /**
1316
- * The task identifier to retrieve results for.
1317
- */
1318
- taskId: string;
1319
- };
1320
- }
1321
- /**
1322
- * The response to a tasks/result request.
1323
- * The structure matches the result type of the original request.
1324
- * For example, a tools/call task would return the CallToolResult structure.
1325
- *
1326
- * @category `tasks/result`
1327
- */
1328
- export interface GetTaskPayloadResult extends Result {
1329
- [key: string]: unknown;
1330
- }
1331
- /**
1332
- * A request to cancel a task.
1333
- *
1334
- * @category `tasks/cancel`
1335
- */
1336
- export interface CancelTaskRequest extends JSONRPCRequest {
1337
- method: "tasks/cancel";
1338
- params: {
1339
- /**
1340
- * The task identifier to cancel.
1341
- */
1342
- taskId: string;
1343
- };
1344
- }
1345
- /**
1346
- * The response to a tasks/cancel request.
1347
- *
1348
- * @category `tasks/cancel`
1349
- */
1350
- export type CancelTaskResult = Result & Task;
1351
- /**
1352
- * A request to retrieve a list of tasks.
1353
- *
1354
- * @category `tasks/list`
1355
- */
1356
- export interface ListTasksRequest extends PaginatedRequest {
1357
- method: "tasks/list";
1358
- }
1359
- /**
1360
- * The response to a tasks/list request.
1361
- *
1362
- * @category `tasks/list`
1363
- */
1364
- export interface ListTasksResult extends PaginatedResult {
1365
- tasks: Task[];
1366
- }
1367
- /**
1368
- * Parameters for a `notifications/tasks/status` notification.
1369
- *
1370
- * @category `notifications/tasks/status`
1371
- */
1372
- export type TaskStatusNotificationParams = NotificationParams & Task;
1373
- /**
1374
- * An optional notification from the receiver to the requestor, informing them that a task's status has changed. Receivers are not required to send these notifications.
1375
- *
1376
- * @category `notifications/tasks/status`
1377
- */
1378
- export interface TaskStatusNotification extends JSONRPCNotification {
1379
- method: "notifications/tasks/status";
1380
- params: TaskStatusNotificationParams;
1381
- }
1382
- /**
1383
- * Parameters for a `logging/setLevel` request.
1384
- *
1385
- * @category `logging/setLevel`
1386
- */
1387
- export interface SetLevelRequestParams extends RequestParams {
1388
- /**
1389
- * The level of logging that the client wants to receive from the server. The server should send all logs at this level and higher (i.e., more severe) to the client as notifications/message.
1390
- */
1391
- level: LoggingLevel;
1392
- }
1393
- /**
1394
- * A request from the client to the server, to enable or adjust logging.
1395
- *
1396
- * @category `logging/setLevel`
1397
- */
1398
- export interface SetLevelRequest extends JSONRPCRequest {
1399
- method: "logging/setLevel";
1400
- params: SetLevelRequestParams;
1401
- }
1402
- /**
1403
- * Parameters for a `notifications/message` notification.
1404
- *
1405
- * @category `notifications/message`
1406
- */
1407
- export interface LoggingMessageNotificationParams extends NotificationParams {
1408
- /**
1409
- * The severity of this log message.
1410
- */
1411
- level: LoggingLevel;
1412
- /**
1413
- * An optional name of the logger issuing this message.
1414
- */
1415
- logger?: string;
1416
- /**
1417
- * The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
1418
- */
1419
- data: unknown;
1420
- }
1421
- /**
1422
- * JSONRPCNotification of a log message passed from server to client. If no logging/setLevel request has been sent from the client, the server MAY decide which messages to send automatically.
1423
- *
1424
- * @category `notifications/message`
1425
- */
1426
- export interface LoggingMessageNotification extends JSONRPCNotification {
1427
- method: "notifications/message";
1428
- params: LoggingMessageNotificationParams;
1429
- }
1430
- /**
1431
- * The severity of a log message.
1432
- *
1433
- * These map to syslog message severities, as specified in RFC-5424:
1434
- * https://datatracker.ietf.org/doc/html/rfc5424#section-6.2.1
1435
- *
1436
- * @category Common Types
1437
- */
1438
- export type LoggingLevel = "debug" | "info" | "notice" | "warning" | "error" | "critical" | "alert" | "emergency";
1439
- /**
1440
- * Parameters for a `sampling/createMessage` request.
1441
- *
1442
- * @category `sampling/createMessage`
1443
- */
1444
- export interface CreateMessageRequestParams extends TaskAugmentedRequestParams {
1445
- messages: SamplingMessage[];
1446
- /**
1447
- * The server's preferences for which model to select. The client MAY ignore these preferences.
1448
- */
1449
- modelPreferences?: ModelPreferences;
1450
- /**
1451
- * An optional system prompt the server wants to use for sampling. The client MAY modify or omit this prompt.
1452
- */
1453
- systemPrompt?: string;
1454
- /**
1455
- * A request to include context from one or more MCP servers (including the caller), to be attached to the prompt.
1456
- * The client MAY ignore this request.
1457
- *
1458
- * Default is "none". Values "thisServer" and "allServers" are soft-deprecated. Servers SHOULD only use these values if the client
1459
- * declares ClientCapabilities.sampling.context. These values may be removed in future spec releases.
1460
- */
1461
- includeContext?: "none" | "thisServer" | "allServers";
1462
- /**
1463
- * @TJS-type number
1464
- */
1465
- temperature?: number;
1466
- /**
1467
- * The requested maximum number of tokens to sample (to prevent runaway completions).
1468
- *
1469
- * The client MAY choose to sample fewer tokens than the requested maximum.
1470
- */
1471
- maxTokens: number;
1472
- stopSequences?: string[];
1473
- /**
1474
- * Optional metadata to pass through to the LLM provider. The format of this metadata is provider-specific.
1475
- */
1476
- metadata?: object;
1477
- /**
1478
- * Tools that the model may use during generation.
1479
- * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared.
1480
- */
1481
- tools?: Tool[];
1482
- /**
1483
- * Controls how the model uses tools.
1484
- * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared.
1485
- * Default is `{ mode: "auto" }`.
1486
- */
1487
- toolChoice?: ToolChoice;
1488
- }
1489
- /**
1490
- * Controls tool selection behavior for sampling requests.
1491
- *
1492
- * @category `sampling/createMessage`
1493
- */
1494
- export interface ToolChoice {
1495
- /**
1496
- * Controls the tool use ability of the model:
1497
- * - "auto": Model decides whether to use tools (default)
1498
- * - "required": Model MUST use at least one tool before completing
1499
- * - "none": Model MUST NOT use any tools
1500
- */
1501
- mode?: "auto" | "required" | "none";
1502
- }
1503
- /**
1504
- * A request from the server to sample an LLM via the client. The client has full discretion over which model to select. The client should also inform the user before beginning sampling, to allow them to inspect the request (human in the loop) and decide whether to approve it.
1505
- *
1506
- * @category `sampling/createMessage`
1507
- */
1508
- export interface CreateMessageRequest extends JSONRPCRequest {
1509
- method: "sampling/createMessage";
1510
- params: CreateMessageRequestParams;
1511
- }
1512
- /**
1513
- * The client's response to a sampling/createMessage request from the server.
1514
- * The client should inform the user before returning the sampled message, to allow them
1515
- * to inspect the response (human in the loop) and decide whether to allow the server to see it.
1516
- *
1517
- * @category `sampling/createMessage`
1518
- */
1519
- export interface CreateMessageResult extends Result, SamplingMessage {
1520
- /**
1521
- * The name of the model that generated the message.
1522
- */
1523
- model: string;
1524
- /**
1525
- * The reason why sampling stopped, if known.
1526
- *
1527
- * Standard values:
1528
- * - "endTurn": Natural end of the assistant's turn
1529
- * - "stopSequence": A stop sequence was encountered
1530
- * - "maxTokens": Maximum token limit was reached
1531
- * - "toolUse": The model wants to use one or more tools
1532
- *
1533
- * This field is an open string to allow for provider-specific stop reasons.
1534
- */
1535
- stopReason?: "endTurn" | "stopSequence" | "maxTokens" | "toolUse" | string;
1536
- }
1537
- /**
1538
- * Describes a message issued to or received from an LLM API.
1539
- *
1540
- * @category `sampling/createMessage`
1541
- */
1542
- export interface SamplingMessage {
1543
- role: Role;
1544
- content: SamplingMessageContentBlock | SamplingMessageContentBlock[];
1545
- /**
1546
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1547
- */
1548
- _meta?: {
1549
- [key: string]: unknown;
1550
- };
1551
- }
1552
- export type SamplingMessageContentBlock = TextContent | ImageContent | AudioContent | ToolUseContent | ToolResultContent;
1553
- /**
1554
- * Optional annotations for the client. The client can use annotations to inform how objects are used or displayed
1555
- *
1556
- * @category Common Types
1557
- */
1558
- export interface Annotations {
1559
- /**
1560
- * Describes who the intended audience of this object or data is.
1561
- *
1562
- * It can include multiple entries to indicate content useful for multiple audiences (e.g., `["user", "assistant"]`).
1563
- */
1564
- audience?: Role[];
1565
- /**
1566
- * Describes how important this data is for operating the server.
1567
- *
1568
- * A value of 1 means "most important," and indicates that the data is
1569
- * effectively required, while 0 means "least important," and indicates that
1570
- * the data is entirely optional.
1571
- *
1572
- * @TJS-type number
1573
- * @minimum 0
1574
- * @maximum 1
1575
- */
1576
- priority?: number;
1577
- /**
1578
- * The moment the resource was last modified, as an ISO 8601 formatted string.
1579
- *
1580
- * Should be an ISO 8601 formatted string (e.g., "2025-01-12T15:00:58Z").
1581
- *
1582
- * Examples: last activity timestamp in an open file, timestamp when the resource
1583
- * was attached, etc.
1584
- */
1585
- lastModified?: string;
1586
- }
1587
- /**
1588
- * @category Content
1589
- */
1590
- export type ContentBlock = TextContent | ImageContent | AudioContent | ResourceLink | EmbeddedResource;
1591
- /**
1592
- * Text provided to or from an LLM.
1593
- *
1594
- * @category Content
1595
- */
1596
- export interface TextContent {
1597
- type: "text";
1598
- /**
1599
- * The text content of the message.
1600
- */
1601
- text: string;
1602
- /**
1603
- * Optional annotations for the client.
1604
- */
1605
- annotations?: Annotations;
1606
- /**
1607
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1608
- */
1609
- _meta?: {
1610
- [key: string]: unknown;
1611
- };
1612
- }
1613
- /**
1614
- * An image provided to or from an LLM.
1615
- *
1616
- * @category Content
1617
- */
1618
- export interface ImageContent {
1619
- type: "image";
1620
- /**
1621
- * The base64-encoded image data.
1622
- *
1623
- * @format byte
1624
- */
1625
- data: string;
1626
- /**
1627
- * The MIME type of the image. Different providers may support different image types.
1628
- */
1629
- mimeType: string;
1630
- /**
1631
- * Optional annotations for the client.
1632
- */
1633
- annotations?: Annotations;
1634
- /**
1635
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1636
- */
1637
- _meta?: {
1638
- [key: string]: unknown;
1639
- };
1640
- }
1641
- /**
1642
- * Audio provided to or from an LLM.
1643
- *
1644
- * @category Content
1645
- */
1646
- export interface AudioContent {
1647
- type: "audio";
1648
- /**
1649
- * The base64-encoded audio data.
1650
- *
1651
- * @format byte
1652
- */
1653
- data: string;
1654
- /**
1655
- * The MIME type of the audio. Different providers may support different audio types.
1656
- */
1657
- mimeType: string;
1658
- /**
1659
- * Optional annotations for the client.
1660
- */
1661
- annotations?: Annotations;
1662
- /**
1663
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1664
- */
1665
- _meta?: {
1666
- [key: string]: unknown;
1667
- };
1668
- }
1669
- /**
1670
- * A request from the assistant to call a tool.
1671
- *
1672
- * @category `sampling/createMessage`
1673
- */
1674
- export interface ToolUseContent {
1675
- type: "tool_use";
1676
- /**
1677
- * A unique identifier for this tool use.
1678
- *
1679
- * This ID is used to match tool results to their corresponding tool uses.
1680
- */
1681
- id: string;
1682
- /**
1683
- * The name of the tool to call.
1684
- */
1685
- name: string;
1686
- /**
1687
- * The arguments to pass to the tool, conforming to the tool's input schema.
1688
- */
1689
- input: {
1690
- [key: string]: unknown;
1691
- };
1692
- /**
1693
- * Optional metadata about the tool use. Clients SHOULD preserve this field when
1694
- * including tool uses in subsequent sampling requests to enable caching optimizations.
1695
- *
1696
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1697
- */
1698
- _meta?: {
1699
- [key: string]: unknown;
1700
- };
1701
- }
1702
- /**
1703
- * The result of a tool use, provided by the user back to the assistant.
1704
- *
1705
- * @category `sampling/createMessage`
1706
- */
1707
- export interface ToolResultContent {
1708
- type: "tool_result";
1709
- /**
1710
- * The ID of the tool use this result corresponds to.
1711
- *
1712
- * This MUST match the ID from a previous ToolUseContent.
1713
- */
1714
- toolUseId: string;
1715
- /**
1716
- * The unstructured result content of the tool use.
1717
- *
1718
- * This has the same format as CallToolResult.content and can include text, images,
1719
- * audio, resource links, and embedded resources.
1720
- */
1721
- content: ContentBlock[];
1722
- /**
1723
- * An optional structured result object.
1724
- *
1725
- * If the tool defined an outputSchema, this SHOULD conform to that schema.
1726
- */
1727
- structuredContent?: {
1728
- [key: string]: unknown;
1729
- };
1730
- /**
1731
- * Whether the tool use resulted in an error.
1732
- *
1733
- * If true, the content typically describes the error that occurred.
1734
- * Default: false
1735
- */
1736
- isError?: boolean;
1737
- /**
1738
- * Optional metadata about the tool result. Clients SHOULD preserve this field when
1739
- * including tool results in subsequent sampling requests to enable caching optimizations.
1740
- *
1741
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1742
- */
1743
- _meta?: {
1744
- [key: string]: unknown;
1745
- };
1746
- }
1747
- /**
1748
- * The server's preferences for model selection, requested of the client during sampling.
1749
- *
1750
- * Because LLMs can vary along multiple dimensions, choosing the "best" model is
1751
- * rarely straightforward. Different models excel in different areas—some are
1752
- * faster but less capable, others are more capable but more expensive, and so
1753
- * on. This interface allows servers to express their priorities across multiple
1754
- * dimensions to help clients make an appropriate selection for their use case.
1755
- *
1756
- * These preferences are always advisory. The client MAY ignore them. It is also
1757
- * up to the client to decide how to interpret these preferences and how to
1758
- * balance them against other considerations.
1759
- *
1760
- * @category `sampling/createMessage`
1761
- */
1762
- export interface ModelPreferences {
1763
- /**
1764
- * Optional hints to use for model selection.
1765
- *
1766
- * If multiple hints are specified, the client MUST evaluate them in order
1767
- * (such that the first match is taken).
1768
- *
1769
- * The client SHOULD prioritize these hints over the numeric priorities, but
1770
- * MAY still use the priorities to select from ambiguous matches.
1771
- */
1772
- hints?: ModelHint[];
1773
- /**
1774
- * How much to prioritize cost when selecting a model. A value of 0 means cost
1775
- * is not important, while a value of 1 means cost is the most important
1776
- * factor.
1777
- *
1778
- * @TJS-type number
1779
- * @minimum 0
1780
- * @maximum 1
1781
- */
1782
- costPriority?: number;
1783
- /**
1784
- * How much to prioritize sampling speed (latency) when selecting a model. A
1785
- * value of 0 means speed is not important, while a value of 1 means speed is
1786
- * the most important factor.
1787
- *
1788
- * @TJS-type number
1789
- * @minimum 0
1790
- * @maximum 1
1791
- */
1792
- speedPriority?: number;
1793
- /**
1794
- * How much to prioritize intelligence and capabilities when selecting a
1795
- * model. A value of 0 means intelligence is not important, while a value of 1
1796
- * means intelligence is the most important factor.
1797
- *
1798
- * @TJS-type number
1799
- * @minimum 0
1800
- * @maximum 1
1801
- */
1802
- intelligencePriority?: number;
1803
- }
1804
- /**
1805
- * Hints to use for model selection.
1806
- *
1807
- * Keys not declared here are currently left unspecified by the spec and are up
1808
- * to the client to interpret.
1809
- *
1810
- * @category `sampling/createMessage`
1811
- */
1812
- export interface ModelHint {
1813
- /**
1814
- * A hint for a model name.
1815
- *
1816
- * The client SHOULD treat this as a substring of a model name; for example:
1817
- * - `claude-3-5-sonnet` should match `claude-3-5-sonnet-20241022`
1818
- * - `sonnet` should match `claude-3-5-sonnet-20241022`, `claude-3-sonnet-20240229`, etc.
1819
- * - `claude` should match any Claude model
1820
- *
1821
- * The client MAY also map the string to a different provider's model name or a different model family, as long as it fills a similar niche; for example:
1822
- * - `gemini-1.5-flash` could match `claude-3-haiku-20240307`
1823
- */
1824
- name?: string;
1825
- }
1826
- /**
1827
- * Parameters for a `completion/complete` request.
1828
- *
1829
- * @category `completion/complete`
1830
- */
1831
- export interface CompleteRequestParams extends RequestParams {
1832
- ref: PromptReference | ResourceTemplateReference;
1833
- /**
1834
- * The argument's information
1835
- */
1836
- argument: {
1837
- /**
1838
- * The name of the argument
1839
- */
1840
- name: string;
1841
- /**
1842
- * The value of the argument to use for completion matching.
1843
- */
1844
- value: string;
1845
- };
1846
- /**
1847
- * Additional, optional context for completions
1848
- */
1849
- context?: {
1850
- /**
1851
- * Previously-resolved variables in a URI template or prompt.
1852
- */
1853
- arguments?: {
1854
- [key: string]: string;
1855
- };
1856
- };
1857
- }
1858
- /**
1859
- * A request from the client to the server, to ask for completion options.
1860
- *
1861
- * @category `completion/complete`
1862
- */
1863
- export interface CompleteRequest extends JSONRPCRequest {
1864
- method: "completion/complete";
1865
- params: CompleteRequestParams;
1866
- }
1867
- /**
1868
- * The server's response to a completion/complete request
1869
- *
1870
- * @category `completion/complete`
1871
- */
1872
- export interface CompleteResult extends Result {
1873
- completion: {
1874
- /**
1875
- * An array of completion values. Must not exceed 100 items.
1876
- */
1877
- values: string[];
1878
- /**
1879
- * The total number of completion options available. This can exceed the number of values actually sent in the response.
1880
- */
1881
- total?: number;
1882
- /**
1883
- * Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown.
1884
- */
1885
- hasMore?: boolean;
1886
- };
1887
- }
1888
- /**
1889
- * A reference to a resource or resource template definition.
1890
- *
1891
- * @category `completion/complete`
1892
- */
1893
- export interface ResourceTemplateReference {
1894
- type: "ref/resource";
1895
- /**
1896
- * The URI or URI template of the resource.
1897
- *
1898
- * @format uri-template
1899
- */
1900
- uri: string;
1901
- }
1902
- /**
1903
- * Identifies a prompt.
1904
- *
1905
- * @category `completion/complete`
1906
- */
1907
- export interface PromptReference extends BaseMetadata {
1908
- type: "ref/prompt";
1909
- }
1910
- /**
1911
- * Sent from the server to request a list of root URIs from the client. Roots allow
1912
- * servers to ask for specific directories or files to operate on. A common example
1913
- * for roots is providing a set of repositories or directories a server should operate
1914
- * on.
1915
- *
1916
- * This request is typically used when the server needs to understand the file system
1917
- * structure or access specific locations that the client has permission to read from.
1918
- *
1919
- * @category `roots/list`
1920
- */
1921
- export interface ListRootsRequest extends JSONRPCRequest {
1922
- method: "roots/list";
1923
- params?: RequestParams;
1924
- }
1925
- /**
1926
- * The client's response to a roots/list request from the server.
1927
- * This result contains an array of Root objects, each representing a root directory
1928
- * or file that the server can operate on.
1929
- *
1930
- * @category `roots/list`
1931
- */
1932
- export interface ListRootsResult extends Result {
1933
- roots: Root[];
1934
- }
1935
- /**
1936
- * Represents a root directory or file that the server can operate on.
1937
- *
1938
- * @category `roots/list`
1939
- */
1940
- export interface Root {
1941
- /**
1942
- * The URI identifying the root. This *must* start with file:// for now.
1943
- * This restriction may be relaxed in future versions of the protocol to allow
1944
- * other URI schemes.
1945
- *
1946
- * @format uri
1947
- */
1948
- uri: string;
1949
- /**
1950
- * An optional name for the root. This can be used to provide a human-readable
1951
- * identifier for the root, which may be useful for display purposes or for
1952
- * referencing the root in other parts of the application.
1953
- */
1954
- name?: string;
1955
- /**
1956
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
1957
- */
1958
- _meta?: {
1959
- [key: string]: unknown;
1960
- };
1961
- }
1962
- /**
1963
- * A notification from the client to the server, informing it that the list of roots has changed.
1964
- * This notification should be sent whenever the client adds, removes, or modifies any root.
1965
- * The server should then request an updated list of roots using the ListRootsRequest.
1966
- *
1967
- * @category `notifications/roots/list_changed`
1968
- */
1969
- export interface RootsListChangedNotification extends JSONRPCNotification {
1970
- method: "notifications/roots/list_changed";
1971
- params?: NotificationParams;
1972
- }
1973
- /**
1974
- * The parameters for a request to elicit non-sensitive information from the user via a form in the client.
1975
- *
1976
- * @category `elicitation/create`
1977
- */
1978
- export interface ElicitRequestFormParams extends TaskAugmentedRequestParams {
1979
- /**
1980
- * The elicitation mode.
1981
- */
1982
- mode?: "form";
1983
- /**
1984
- * The message to present to the user describing what information is being requested.
1985
- */
1986
- message: string;
1987
- /**
1988
- * A restricted subset of JSON Schema.
1989
- * Only top-level properties are allowed, without nesting.
1990
- */
1991
- requestedSchema: {
1992
- $schema?: string;
1993
- type: "object";
1994
- properties: {
1995
- [key: string]: PrimitiveSchemaDefinition;
1996
- };
1997
- required?: string[];
1998
- };
1999
- }
2000
- /**
2001
- * The parameters for a request to elicit information from the user via a URL in the client.
2002
- *
2003
- * @category `elicitation/create`
2004
- */
2005
- export interface ElicitRequestURLParams extends TaskAugmentedRequestParams {
2006
- /**
2007
- * The elicitation mode.
2008
- */
2009
- mode: "url";
2010
- /**
2011
- * The message to present to the user explaining why the interaction is needed.
2012
- */
2013
- message: string;
2014
- /**
2015
- * The ID of the elicitation, which must be unique within the context of the server.
2016
- * The client MUST treat this ID as an opaque value.
2017
- */
2018
- elicitationId: string;
2019
- /**
2020
- * The URL that the user should navigate to.
2021
- *
2022
- * @format uri
2023
- */
2024
- url: string;
2025
- }
2026
- /**
2027
- * The parameters for a request to elicit additional information from the user via the client.
2028
- *
2029
- * @category `elicitation/create`
2030
- */
2031
- export type ElicitRequestParams = ElicitRequestFormParams | ElicitRequestURLParams;
2032
- /**
2033
- * A request from the server to elicit additional information from the user via the client.
2034
- *
2035
- * @category `elicitation/create`
2036
- */
2037
- export interface ElicitRequest extends JSONRPCRequest {
2038
- method: "elicitation/create";
2039
- params: ElicitRequestParams;
2040
- }
2041
- /**
2042
- * Restricted schema definitions that only allow primitive types
2043
- * without nested objects or arrays.
2044
- *
2045
- * @category `elicitation/create`
2046
- */
2047
- export type PrimitiveSchemaDefinition = StringSchema | NumberSchema | BooleanSchema | EnumSchema;
2048
- /**
2049
- * @category `elicitation/create`
2050
- */
2051
- export interface StringSchema {
2052
- type: "string";
2053
- title?: string;
2054
- description?: string;
2055
- minLength?: number;
2056
- maxLength?: number;
2057
- format?: "email" | "uri" | "date" | "date-time";
2058
- default?: string;
2059
- }
2060
- /**
2061
- * @category `elicitation/create`
2062
- */
2063
- export interface NumberSchema {
2064
- type: "number" | "integer";
2065
- title?: string;
2066
- description?: string;
2067
- minimum?: number;
2068
- maximum?: number;
2069
- default?: number;
2070
- }
2071
- /**
2072
- * @category `elicitation/create`
2073
- */
2074
- export interface BooleanSchema {
2075
- type: "boolean";
2076
- title?: string;
2077
- description?: string;
2078
- default?: boolean;
2079
- }
2080
- /**
2081
- * Schema for single-selection enumeration without display titles for options.
2082
- *
2083
- * @category `elicitation/create`
2084
- */
2085
- export interface UntitledSingleSelectEnumSchema {
2086
- type: "string";
2087
- /**
2088
- * Optional title for the enum field.
2089
- */
2090
- title?: string;
2091
- /**
2092
- * Optional description for the enum field.
2093
- */
2094
- description?: string;
2095
- /**
2096
- * Array of enum values to choose from.
2097
- */
2098
- enum: string[];
2099
- /**
2100
- * Optional default value.
2101
- */
2102
- default?: string;
2103
- }
2104
- /**
2105
- * Schema for single-selection enumeration with display titles for each option.
2106
- *
2107
- * @category `elicitation/create`
2108
- */
2109
- export interface TitledSingleSelectEnumSchema {
2110
- type: "string";
2111
- /**
2112
- * Optional title for the enum field.
2113
- */
2114
- title?: string;
2115
- /**
2116
- * Optional description for the enum field.
2117
- */
2118
- description?: string;
2119
- /**
2120
- * Array of enum options with values and display labels.
2121
- */
2122
- oneOf: Array<{
2123
- /**
2124
- * The enum value.
2125
- */
2126
- const: string;
2127
- /**
2128
- * Display label for this option.
2129
- */
2130
- title: string;
2131
- }>;
2132
- /**
2133
- * Optional default value.
2134
- */
2135
- default?: string;
2136
- }
2137
- /**
2138
- * @category `elicitation/create`
2139
- */
2140
- export type SingleSelectEnumSchema = UntitledSingleSelectEnumSchema | TitledSingleSelectEnumSchema;
2141
- /**
2142
- * Schema for multiple-selection enumeration without display titles for options.
2143
- *
2144
- * @category `elicitation/create`
2145
- */
2146
- export interface UntitledMultiSelectEnumSchema {
2147
- type: "array";
2148
- /**
2149
- * Optional title for the enum field.
2150
- */
2151
- title?: string;
2152
- /**
2153
- * Optional description for the enum field.
2154
- */
2155
- description?: string;
2156
- /**
2157
- * Minimum number of items to select.
2158
- */
2159
- minItems?: number;
2160
- /**
2161
- * Maximum number of items to select.
2162
- */
2163
- maxItems?: number;
2164
- /**
2165
- * Schema for the array items.
2166
- */
2167
- items: {
2168
- type: "string";
2169
- /**
2170
- * Array of enum values to choose from.
2171
- */
2172
- enum: string[];
2173
- };
2174
- /**
2175
- * Optional default value.
2176
- */
2177
- default?: string[];
2178
- }
2179
- /**
2180
- * Schema for multiple-selection enumeration with display titles for each option.
2181
- *
2182
- * @category `elicitation/create`
2183
- */
2184
- export interface TitledMultiSelectEnumSchema {
2185
- type: "array";
2186
- /**
2187
- * Optional title for the enum field.
2188
- */
2189
- title?: string;
2190
- /**
2191
- * Optional description for the enum field.
2192
- */
2193
- description?: string;
2194
- /**
2195
- * Minimum number of items to select.
2196
- */
2197
- minItems?: number;
2198
- /**
2199
- * Maximum number of items to select.
2200
- */
2201
- maxItems?: number;
2202
- /**
2203
- * Schema for array items with enum options and display labels.
2204
- */
2205
- items: {
2206
- /**
2207
- * Array of enum options with values and display labels.
2208
- */
2209
- anyOf: Array<{
2210
- /**
2211
- * The constant enum value.
2212
- */
2213
- const: string;
2214
- /**
2215
- * Display title for this option.
2216
- */
2217
- title: string;
2218
- }>;
2219
- };
2220
- /**
2221
- * Optional default value.
2222
- */
2223
- default?: string[];
2224
- }
2225
- /**
2226
- * @category `elicitation/create`
2227
- */
2228
- export type MultiSelectEnumSchema = UntitledMultiSelectEnumSchema | TitledMultiSelectEnumSchema;
2229
- /**
2230
- * Use TitledSingleSelectEnumSchema instead.
2231
- * This interface will be removed in a future version.
2232
- *
2233
- * @category `elicitation/create`
2234
- */
2235
- export interface LegacyTitledEnumSchema {
2236
- type: "string";
2237
- title?: string;
2238
- description?: string;
2239
- enum: string[];
2240
- /**
2241
- * (Legacy) Display names for enum values.
2242
- * Non-standard according to JSON schema 2020-12.
2243
- */
2244
- enumNames?: string[];
2245
- default?: string;
2246
- }
2247
- /**
2248
- * @category `elicitation/create`
2249
- */
2250
- export type EnumSchema = SingleSelectEnumSchema | MultiSelectEnumSchema | LegacyTitledEnumSchema;
2251
- /**
2252
- * The client's response to an elicitation request.
2253
- *
2254
- * @category `elicitation/create`
2255
- */
2256
- export interface ElicitResult extends Result {
2257
- /**
2258
- * The user action in response to the elicitation.
2259
- * - "accept": User submitted the form/confirmed the action
2260
- * - "decline": User explicitly decline the action
2261
- * - "cancel": User dismissed without making an explicit choice
2262
- */
2263
- action: "accept" | "decline" | "cancel";
2264
- /**
2265
- * The submitted form data, only present when action is "accept" and mode was "form".
2266
- * Contains values matching the requested schema.
2267
- * Omitted for out-of-band mode responses.
2268
- */
2269
- content?: {
2270
- [key: string]: string | number | boolean | string[];
2271
- };
2272
- }
2273
- /**
2274
- * An optional notification from the server to the client, informing it of a completion of a out-of-band elicitation request.
2275
- *
2276
- * @category `notifications/elicitation/complete`
2277
- */
2278
- export interface ElicitationCompleteNotification extends JSONRPCNotification {
2279
- method: "notifications/elicitation/complete";
2280
- params: {
2281
- /**
2282
- * The ID of the elicitation that completed.
2283
- */
2284
- elicitationId: string;
2285
- };
2286
- }
2287
- /** @internal */
2288
- export type ClientRequest = PingRequest | InitializeRequest | CompleteRequest | SetLevelRequest | GetPromptRequest | ListPromptsRequest | ListResourcesRequest | ListResourceTemplatesRequest | ReadResourceRequest | SubscribeRequest | UnsubscribeRequest | CallToolRequest | ListToolsRequest | GetTaskRequest | GetTaskPayloadRequest | ListTasksRequest | CancelTaskRequest;
2289
- /** @internal */
2290
- export type ClientNotification = CancelledNotification | ProgressNotification | InitializedNotification | RootsListChangedNotification | TaskStatusNotification;
2291
- /** @internal */
2292
- export type ClientResult = EmptyResult | CreateMessageResult | ListRootsResult | ElicitResult | GetTaskResult | GetTaskPayloadResult | ListTasksResult | CancelTaskResult;
2293
- /** @internal */
2294
- export type ServerRequest = PingRequest | CreateMessageRequest | ListRootsRequest | ElicitRequest | GetTaskRequest | GetTaskPayloadRequest | ListTasksRequest | CancelTaskRequest;
2295
- /** @internal */
2296
- export type ServerNotification = CancelledNotification | ProgressNotification | LoggingMessageNotification | ResourceUpdatedNotification | ResourceListChangedNotification | ToolListChangedNotification | PromptListChangedNotification | ElicitationCompleteNotification | TaskStatusNotification;
2297
- /** @internal */
2298
- export type ServerResult = EmptyResult | InitializeResult | CompleteResult | GetPromptResult | ListPromptsResult | ListResourceTemplatesResult | ListResourcesResult | ReadResourceResult | CallToolResult | ListToolsResult | GetTaskResult | GetTaskPayloadResult | ListTasksResult | CancelTaskResult;
2299
- //# sourceMappingURL=spec.types.d.ts.map