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,2052 +0,0 @@
1
- import * as z from 'zod/v4';
2
- export const LATEST_PROTOCOL_VERSION = '2025-11-25';
3
- export const DEFAULT_NEGOTIATED_PROTOCOL_VERSION = '2025-03-26';
4
- export const SUPPORTED_PROTOCOL_VERSIONS = [LATEST_PROTOCOL_VERSION, '2025-06-18', '2025-03-26', '2024-11-05', '2024-10-07'];
5
- export const RELATED_TASK_META_KEY = 'io.modelcontextprotocol/related-task';
6
- /* JSON-RPC types */
7
- export const JSONRPC_VERSION = '2.0';
8
- /**
9
- * Assert 'object' type schema.
10
- *
11
- * @internal
12
- */
13
- const AssertObjectSchema = z.custom((v) => v !== null && (typeof v === 'object' || typeof v === 'function'));
14
- /**
15
- * A progress token, used to associate progress notifications with the original request.
16
- */
17
- export const ProgressTokenSchema = z.union([z.string(), z.number().int()]);
18
- /**
19
- * An opaque token used to represent a cursor for pagination.
20
- */
21
- export const CursorSchema = z.string();
22
- /**
23
- * Task creation parameters, used to ask that the server create a task to represent a request.
24
- */
25
- export const TaskCreationParamsSchema = z.looseObject({
26
- /**
27
- * Time in milliseconds to keep task results available after completion.
28
- * If null, the task has unlimited lifetime until manually cleaned up.
29
- */
30
- ttl: z.union([z.number(), z.null()]).optional(),
31
- /**
32
- * Time in milliseconds to wait between task status requests.
33
- */
34
- pollInterval: z.number().optional()
35
- });
36
- export const TaskMetadataSchema = z.object({
37
- ttl: z.number().optional()
38
- });
39
- /**
40
- * Metadata for associating messages with a task.
41
- * Include this in the `_meta` field under the key `io.modelcontextprotocol/related-task`.
42
- */
43
- export const RelatedTaskMetadataSchema = z.object({
44
- taskId: z.string()
45
- });
46
- const RequestMetaSchema = z.looseObject({
47
- /**
48
- * 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.
49
- */
50
- progressToken: ProgressTokenSchema.optional(),
51
- /**
52
- * If specified, this request is related to the provided task.
53
- */
54
- [RELATED_TASK_META_KEY]: RelatedTaskMetadataSchema.optional()
55
- });
56
- /**
57
- * Common params for any request.
58
- */
59
- const BaseRequestParamsSchema = z.object({
60
- /**
61
- * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage.
62
- */
63
- _meta: RequestMetaSchema.optional()
64
- });
65
- /**
66
- * Common params for any task-augmented request.
67
- */
68
- export const TaskAugmentedRequestParamsSchema = BaseRequestParamsSchema.extend({
69
- /**
70
- * If specified, the caller is requesting task-augmented execution for this request.
71
- * The request will return a CreateTaskResult immediately, and the actual result can be
72
- * retrieved later via tasks/result.
73
- *
74
- * Task augmentation is subject to capability negotiation - receivers MUST declare support
75
- * for task augmentation of specific request types in their capabilities.
76
- */
77
- task: TaskMetadataSchema.optional()
78
- });
79
- /**
80
- * Checks if a value is a valid TaskAugmentedRequestParams.
81
- * @param value - The value to check.
82
- *
83
- * @returns True if the value is a valid TaskAugmentedRequestParams, false otherwise.
84
- */
85
- export const isTaskAugmentedRequestParams = (value) => TaskAugmentedRequestParamsSchema.safeParse(value).success;
86
- export const RequestSchema = z.object({
87
- method: z.string(),
88
- params: BaseRequestParamsSchema.loose().optional()
89
- });
90
- const NotificationsParamsSchema = z.object({
91
- /**
92
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
93
- * for notes on _meta usage.
94
- */
95
- _meta: RequestMetaSchema.optional()
96
- });
97
- export const NotificationSchema = z.object({
98
- method: z.string(),
99
- params: NotificationsParamsSchema.loose().optional()
100
- });
101
- export const ResultSchema = z.looseObject({
102
- /**
103
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
104
- * for notes on _meta usage.
105
- */
106
- _meta: RequestMetaSchema.optional()
107
- });
108
- /**
109
- * A uniquely identifying ID for a request in JSON-RPC.
110
- */
111
- export const RequestIdSchema = z.union([z.string(), z.number().int()]);
112
- /**
113
- * A request that expects a response.
114
- */
115
- export const JSONRPCRequestSchema = z
116
- .object({
117
- jsonrpc: z.literal(JSONRPC_VERSION),
118
- id: RequestIdSchema,
119
- ...RequestSchema.shape
120
- })
121
- .strict();
122
- export const isJSONRPCRequest = (value) => JSONRPCRequestSchema.safeParse(value).success;
123
- /**
124
- * A notification which does not expect a response.
125
- */
126
- export const JSONRPCNotificationSchema = z
127
- .object({
128
- jsonrpc: z.literal(JSONRPC_VERSION),
129
- ...NotificationSchema.shape
130
- })
131
- .strict();
132
- export const isJSONRPCNotification = (value) => JSONRPCNotificationSchema.safeParse(value).success;
133
- /**
134
- * A successful (non-error) response to a request.
135
- */
136
- export const JSONRPCResultResponseSchema = z
137
- .object({
138
- jsonrpc: z.literal(JSONRPC_VERSION),
139
- id: RequestIdSchema,
140
- result: ResultSchema
141
- })
142
- .strict();
143
- /**
144
- * Checks if a value is a valid JSONRPCResultResponse.
145
- * @param value - The value to check.
146
- *
147
- * @returns True if the value is a valid JSONRPCResultResponse, false otherwise.
148
- */
149
- export const isJSONRPCResultResponse = (value) => JSONRPCResultResponseSchema.safeParse(value).success;
150
- /**
151
- * @deprecated Use {@link isJSONRPCResultResponse} instead.
152
- *
153
- * Please note that {@link JSONRPCResponse} is a union of {@link JSONRPCResultResponse} and {@link JSONRPCErrorResponse} as per the updated JSON-RPC specification. (was previously just {@link JSONRPCResultResponse})
154
- */
155
- export const isJSONRPCResponse = isJSONRPCResultResponse;
156
- /**
157
- * Error codes defined by the JSON-RPC specification.
158
- */
159
- export var ErrorCode;
160
- (function (ErrorCode) {
161
- // SDK error codes
162
- ErrorCode[ErrorCode["ConnectionClosed"] = -32000] = "ConnectionClosed";
163
- ErrorCode[ErrorCode["RequestTimeout"] = -32001] = "RequestTimeout";
164
- // Standard JSON-RPC error codes
165
- ErrorCode[ErrorCode["ParseError"] = -32700] = "ParseError";
166
- ErrorCode[ErrorCode["InvalidRequest"] = -32600] = "InvalidRequest";
167
- ErrorCode[ErrorCode["MethodNotFound"] = -32601] = "MethodNotFound";
168
- ErrorCode[ErrorCode["InvalidParams"] = -32602] = "InvalidParams";
169
- ErrorCode[ErrorCode["InternalError"] = -32603] = "InternalError";
170
- // MCP-specific error codes
171
- ErrorCode[ErrorCode["UrlElicitationRequired"] = -32042] = "UrlElicitationRequired";
172
- })(ErrorCode || (ErrorCode = {}));
173
- /**
174
- * A response to a request that indicates an error occurred.
175
- */
176
- export const JSONRPCErrorResponseSchema = z
177
- .object({
178
- jsonrpc: z.literal(JSONRPC_VERSION),
179
- id: RequestIdSchema.optional(),
180
- error: z.object({
181
- /**
182
- * The error type that occurred.
183
- */
184
- code: z.number().int(),
185
- /**
186
- * A short description of the error. The message SHOULD be limited to a concise single sentence.
187
- */
188
- message: z.string(),
189
- /**
190
- * Additional information about the error. The value of this member is defined by the sender (e.g. detailed error information, nested errors etc.).
191
- */
192
- data: z.unknown().optional()
193
- })
194
- })
195
- .strict();
196
- /**
197
- * @deprecated Use {@link JSONRPCErrorResponseSchema} instead.
198
- */
199
- export const JSONRPCErrorSchema = JSONRPCErrorResponseSchema;
200
- /**
201
- * Checks if a value is a valid JSONRPCErrorResponse.
202
- * @param value - The value to check.
203
- *
204
- * @returns True if the value is a valid JSONRPCErrorResponse, false otherwise.
205
- */
206
- export const isJSONRPCErrorResponse = (value) => JSONRPCErrorResponseSchema.safeParse(value).success;
207
- /**
208
- * @deprecated Use {@link isJSONRPCErrorResponse} instead.
209
- */
210
- export const isJSONRPCError = isJSONRPCErrorResponse;
211
- export const JSONRPCMessageSchema = z.union([
212
- JSONRPCRequestSchema,
213
- JSONRPCNotificationSchema,
214
- JSONRPCResultResponseSchema,
215
- JSONRPCErrorResponseSchema
216
- ]);
217
- export const JSONRPCResponseSchema = z.union([JSONRPCResultResponseSchema, JSONRPCErrorResponseSchema]);
218
- /* Empty result */
219
- /**
220
- * A response that indicates success but carries no data.
221
- */
222
- export const EmptyResultSchema = ResultSchema.strict();
223
- export const CancelledNotificationParamsSchema = NotificationsParamsSchema.extend({
224
- /**
225
- * The ID of the request to cancel.
226
- *
227
- * This MUST correspond to the ID of a request previously issued in the same direction.
228
- */
229
- requestId: RequestIdSchema.optional(),
230
- /**
231
- * An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
232
- */
233
- reason: z.string().optional()
234
- });
235
- /* Cancellation */
236
- /**
237
- * This notification can be sent by either side to indicate that it is cancelling a previously-issued request.
238
- *
239
- * 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.
240
- *
241
- * This notification indicates that the result will be unused, so any associated processing SHOULD cease.
242
- *
243
- * A client MUST NOT attempt to cancel its `initialize` request.
244
- */
245
- export const CancelledNotificationSchema = NotificationSchema.extend({
246
- method: z.literal('notifications/cancelled'),
247
- params: CancelledNotificationParamsSchema
248
- });
249
- /* Base Metadata */
250
- /**
251
- * Icon schema for use in tools, prompts, resources, and implementations.
252
- */
253
- export const IconSchema = z.object({
254
- /**
255
- * URL or data URI for the icon.
256
- */
257
- src: z.string(),
258
- /**
259
- * Optional MIME type for the icon.
260
- */
261
- mimeType: z.string().optional(),
262
- /**
263
- * Optional array of strings that specify sizes at which the icon can be used.
264
- * Each string should be in WxH format (e.g., `"48x48"`, `"96x96"`) or `"any"` for scalable formats like SVG.
265
- *
266
- * If not provided, the client should assume that the icon can be used at any size.
267
- */
268
- sizes: z.array(z.string()).optional(),
269
- /**
270
- * Optional specifier for the theme this icon is designed for. `light` indicates
271
- * the icon is designed to be used with a light background, and `dark` indicates
272
- * the icon is designed to be used with a dark background.
273
- *
274
- * If not provided, the client should assume the icon can be used with any theme.
275
- */
276
- theme: z.enum(['light', 'dark']).optional()
277
- });
278
- /**
279
- * Base schema to add `icons` property.
280
- *
281
- */
282
- export const IconsSchema = z.object({
283
- /**
284
- * Optional set of sized icons that the client can display in a user interface.
285
- *
286
- * Clients that support rendering icons MUST support at least the following MIME types:
287
- * - `image/png` - PNG images (safe, universal compatibility)
288
- * - `image/jpeg` (and `image/jpg`) - JPEG images (safe, universal compatibility)
289
- *
290
- * Clients that support rendering icons SHOULD also support:
291
- * - `image/svg+xml` - SVG images (scalable but requires security precautions)
292
- * - `image/webp` - WebP images (modern, efficient format)
293
- */
294
- icons: z.array(IconSchema).optional()
295
- });
296
- /**
297
- * Base metadata interface for common properties across resources, tools, prompts, and implementations.
298
- */
299
- export const BaseMetadataSchema = z.object({
300
- /** Intended for programmatic or logical use, but used as a display name in past specs or fallback */
301
- name: z.string(),
302
- /**
303
- * Intended for UI and end-user contexts — optimized to be human-readable and easily understood,
304
- * even by those unfamiliar with domain-specific terminology.
305
- *
306
- * If not provided, the name should be used for display (except for Tool,
307
- * where `annotations.title` should be given precedence over using `name`,
308
- * if present).
309
- */
310
- title: z.string().optional()
311
- });
312
- /* Initialization */
313
- /**
314
- * Describes the name and version of an MCP implementation.
315
- */
316
- export const ImplementationSchema = BaseMetadataSchema.extend({
317
- ...BaseMetadataSchema.shape,
318
- ...IconsSchema.shape,
319
- version: z.string(),
320
- /**
321
- * An optional URL of the website for this implementation.
322
- */
323
- websiteUrl: z.string().optional(),
324
- /**
325
- * An optional human-readable description of what this implementation does.
326
- *
327
- * This can be used by clients or servers to provide context about their purpose
328
- * and capabilities. For example, a server might describe the types of resources
329
- * or tools it provides, while a client might describe its intended use case.
330
- */
331
- description: z.string().optional()
332
- });
333
- const FormElicitationCapabilitySchema = z.intersection(z.object({
334
- applyDefaults: z.boolean().optional()
335
- }), z.record(z.string(), z.unknown()));
336
- const ElicitationCapabilitySchema = z.preprocess(value => {
337
- if (value && typeof value === 'object' && !Array.isArray(value)) {
338
- if (Object.keys(value).length === 0) {
339
- return { form: {} };
340
- }
341
- }
342
- return value;
343
- }, z.intersection(z.object({
344
- form: FormElicitationCapabilitySchema.optional(),
345
- url: AssertObjectSchema.optional()
346
- }), z.record(z.string(), z.unknown()).optional()));
347
- /**
348
- * Task capabilities for clients, indicating which request types support task creation.
349
- */
350
- export const ClientTasksCapabilitySchema = z.looseObject({
351
- /**
352
- * Present if the client supports listing tasks.
353
- */
354
- list: AssertObjectSchema.optional(),
355
- /**
356
- * Present if the client supports cancelling tasks.
357
- */
358
- cancel: AssertObjectSchema.optional(),
359
- /**
360
- * Capabilities for task creation on specific request types.
361
- */
362
- requests: z
363
- .looseObject({
364
- /**
365
- * Task support for sampling requests.
366
- */
367
- sampling: z
368
- .looseObject({
369
- createMessage: AssertObjectSchema.optional()
370
- })
371
- .optional(),
372
- /**
373
- * Task support for elicitation requests.
374
- */
375
- elicitation: z
376
- .looseObject({
377
- create: AssertObjectSchema.optional()
378
- })
379
- .optional()
380
- })
381
- .optional()
382
- });
383
- /**
384
- * Task capabilities for servers, indicating which request types support task creation.
385
- */
386
- export const ServerTasksCapabilitySchema = z.looseObject({
387
- /**
388
- * Present if the server supports listing tasks.
389
- */
390
- list: AssertObjectSchema.optional(),
391
- /**
392
- * Present if the server supports cancelling tasks.
393
- */
394
- cancel: AssertObjectSchema.optional(),
395
- /**
396
- * Capabilities for task creation on specific request types.
397
- */
398
- requests: z
399
- .looseObject({
400
- /**
401
- * Task support for tool requests.
402
- */
403
- tools: z
404
- .looseObject({
405
- call: AssertObjectSchema.optional()
406
- })
407
- .optional()
408
- })
409
- .optional()
410
- });
411
- /**
412
- * 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.
413
- */
414
- export const ClientCapabilitiesSchema = z.object({
415
- /**
416
- * Experimental, non-standard capabilities that the client supports.
417
- */
418
- experimental: z.record(z.string(), AssertObjectSchema).optional(),
419
- /**
420
- * Present if the client supports sampling from an LLM.
421
- */
422
- sampling: z
423
- .object({
424
- /**
425
- * Present if the client supports context inclusion via includeContext parameter.
426
- * If not declared, servers SHOULD only use `includeContext: "none"` (or omit it).
427
- */
428
- context: AssertObjectSchema.optional(),
429
- /**
430
- * Present if the client supports tool use via tools and toolChoice parameters.
431
- */
432
- tools: AssertObjectSchema.optional()
433
- })
434
- .optional(),
435
- /**
436
- * Present if the client supports eliciting user input.
437
- */
438
- elicitation: ElicitationCapabilitySchema.optional(),
439
- /**
440
- * Present if the client supports listing roots.
441
- */
442
- roots: z
443
- .object({
444
- /**
445
- * Whether the client supports issuing notifications for changes to the roots list.
446
- */
447
- listChanged: z.boolean().optional()
448
- })
449
- .optional(),
450
- /**
451
- * Present if the client supports task creation.
452
- */
453
- tasks: ClientTasksCapabilitySchema.optional()
454
- });
455
- export const InitializeRequestParamsSchema = BaseRequestParamsSchema.extend({
456
- /**
457
- * The latest version of the Model Context Protocol that the client supports. The client MAY decide to support older versions as well.
458
- */
459
- protocolVersion: z.string(),
460
- capabilities: ClientCapabilitiesSchema,
461
- clientInfo: ImplementationSchema
462
- });
463
- /**
464
- * This request is sent from the client to the server when it first connects, asking it to begin initialization.
465
- */
466
- export const InitializeRequestSchema = RequestSchema.extend({
467
- method: z.literal('initialize'),
468
- params: InitializeRequestParamsSchema
469
- });
470
- export const isInitializeRequest = (value) => InitializeRequestSchema.safeParse(value).success;
471
- /**
472
- * 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.
473
- */
474
- export const ServerCapabilitiesSchema = z.object({
475
- /**
476
- * Experimental, non-standard capabilities that the server supports.
477
- */
478
- experimental: z.record(z.string(), AssertObjectSchema).optional(),
479
- /**
480
- * Present if the server supports sending log messages to the client.
481
- */
482
- logging: AssertObjectSchema.optional(),
483
- /**
484
- * Present if the server supports sending completions to the client.
485
- */
486
- completions: AssertObjectSchema.optional(),
487
- /**
488
- * Present if the server offers any prompt templates.
489
- */
490
- prompts: z
491
- .object({
492
- /**
493
- * Whether this server supports issuing notifications for changes to the prompt list.
494
- */
495
- listChanged: z.boolean().optional()
496
- })
497
- .optional(),
498
- /**
499
- * Present if the server offers any resources to read.
500
- */
501
- resources: z
502
- .object({
503
- /**
504
- * Whether this server supports clients subscribing to resource updates.
505
- */
506
- subscribe: z.boolean().optional(),
507
- /**
508
- * Whether this server supports issuing notifications for changes to the resource list.
509
- */
510
- listChanged: z.boolean().optional()
511
- })
512
- .optional(),
513
- /**
514
- * Present if the server offers any tools to call.
515
- */
516
- tools: z
517
- .object({
518
- /**
519
- * Whether this server supports issuing notifications for changes to the tool list.
520
- */
521
- listChanged: z.boolean().optional()
522
- })
523
- .optional(),
524
- /**
525
- * Present if the server supports task creation.
526
- */
527
- tasks: ServerTasksCapabilitySchema.optional()
528
- });
529
- /**
530
- * After receiving an initialize request from the client, the server sends this response.
531
- */
532
- export const InitializeResultSchema = ResultSchema.extend({
533
- /**
534
- * 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.
535
- */
536
- protocolVersion: z.string(),
537
- capabilities: ServerCapabilitiesSchema,
538
- serverInfo: ImplementationSchema,
539
- /**
540
- * Instructions describing how to use the server and its features.
541
- *
542
- * 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.
543
- */
544
- instructions: z.string().optional()
545
- });
546
- /**
547
- * This notification is sent from the client to the server after initialization has finished.
548
- */
549
- export const InitializedNotificationSchema = NotificationSchema.extend({
550
- method: z.literal('notifications/initialized'),
551
- params: NotificationsParamsSchema.optional()
552
- });
553
- export const isInitializedNotification = (value) => InitializedNotificationSchema.safeParse(value).success;
554
- /* Ping */
555
- /**
556
- * 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.
557
- */
558
- export const PingRequestSchema = RequestSchema.extend({
559
- method: z.literal('ping'),
560
- params: BaseRequestParamsSchema.optional()
561
- });
562
- /* Progress notifications */
563
- export const ProgressSchema = z.object({
564
- /**
565
- * The progress thus far. This should increase every time progress is made, even if the total is unknown.
566
- */
567
- progress: z.number(),
568
- /**
569
- * Total number of items to process (or total progress required), if known.
570
- */
571
- total: z.optional(z.number()),
572
- /**
573
- * An optional message describing the current progress.
574
- */
575
- message: z.optional(z.string())
576
- });
577
- export const ProgressNotificationParamsSchema = z.object({
578
- ...NotificationsParamsSchema.shape,
579
- ...ProgressSchema.shape,
580
- /**
581
- * The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
582
- */
583
- progressToken: ProgressTokenSchema
584
- });
585
- /**
586
- * An out-of-band notification used to inform the receiver of a progress update for a long-running request.
587
- *
588
- * @category notifications/progress
589
- */
590
- export const ProgressNotificationSchema = NotificationSchema.extend({
591
- method: z.literal('notifications/progress'),
592
- params: ProgressNotificationParamsSchema
593
- });
594
- export const PaginatedRequestParamsSchema = BaseRequestParamsSchema.extend({
595
- /**
596
- * An opaque token representing the current pagination position.
597
- * If provided, the server should return results starting after this cursor.
598
- */
599
- cursor: CursorSchema.optional()
600
- });
601
- /* Pagination */
602
- export const PaginatedRequestSchema = RequestSchema.extend({
603
- params: PaginatedRequestParamsSchema.optional()
604
- });
605
- export const PaginatedResultSchema = ResultSchema.extend({
606
- /**
607
- * An opaque token representing the pagination position after the last returned result.
608
- * If present, there may be more results available.
609
- */
610
- nextCursor: CursorSchema.optional()
611
- });
612
- /**
613
- * The status of a task.
614
- * */
615
- export const TaskStatusSchema = z.enum(['working', 'input_required', 'completed', 'failed', 'cancelled']);
616
- /* Tasks */
617
- /**
618
- * A pollable state object associated with a request.
619
- */
620
- export const TaskSchema = z.object({
621
- taskId: z.string(),
622
- status: TaskStatusSchema,
623
- /**
624
- * Time in milliseconds to keep task results available after completion.
625
- * If null, the task has unlimited lifetime until manually cleaned up.
626
- */
627
- ttl: z.union([z.number(), z.null()]),
628
- /**
629
- * ISO 8601 timestamp when the task was created.
630
- */
631
- createdAt: z.string(),
632
- /**
633
- * ISO 8601 timestamp when the task was last updated.
634
- */
635
- lastUpdatedAt: z.string(),
636
- pollInterval: z.optional(z.number()),
637
- /**
638
- * Optional diagnostic message for failed tasks or other status information.
639
- */
640
- statusMessage: z.optional(z.string())
641
- });
642
- /**
643
- * Result returned when a task is created, containing the task data wrapped in a task field.
644
- */
645
- export const CreateTaskResultSchema = ResultSchema.extend({
646
- task: TaskSchema
647
- });
648
- /**
649
- * Parameters for task status notification.
650
- */
651
- export const TaskStatusNotificationParamsSchema = NotificationsParamsSchema.merge(TaskSchema);
652
- /**
653
- * A notification sent when a task's status changes.
654
- */
655
- export const TaskStatusNotificationSchema = NotificationSchema.extend({
656
- method: z.literal('notifications/tasks/status'),
657
- params: TaskStatusNotificationParamsSchema
658
- });
659
- /**
660
- * A request to get the state of a specific task.
661
- */
662
- export const GetTaskRequestSchema = RequestSchema.extend({
663
- method: z.literal('tasks/get'),
664
- params: BaseRequestParamsSchema.extend({
665
- taskId: z.string()
666
- })
667
- });
668
- /**
669
- * The response to a tasks/get request.
670
- */
671
- export const GetTaskResultSchema = ResultSchema.merge(TaskSchema);
672
- /**
673
- * A request to get the result of a specific task.
674
- */
675
- export const GetTaskPayloadRequestSchema = RequestSchema.extend({
676
- method: z.literal('tasks/result'),
677
- params: BaseRequestParamsSchema.extend({
678
- taskId: z.string()
679
- })
680
- });
681
- /**
682
- * The response to a tasks/result request.
683
- * The structure matches the result type of the original request.
684
- * For example, a tools/call task would return the CallToolResult structure.
685
- *
686
- */
687
- export const GetTaskPayloadResultSchema = ResultSchema.loose();
688
- /**
689
- * A request to list tasks.
690
- */
691
- export const ListTasksRequestSchema = PaginatedRequestSchema.extend({
692
- method: z.literal('tasks/list')
693
- });
694
- /**
695
- * The response to a tasks/list request.
696
- */
697
- export const ListTasksResultSchema = PaginatedResultSchema.extend({
698
- tasks: z.array(TaskSchema)
699
- });
700
- /**
701
- * A request to cancel a specific task.
702
- */
703
- export const CancelTaskRequestSchema = RequestSchema.extend({
704
- method: z.literal('tasks/cancel'),
705
- params: BaseRequestParamsSchema.extend({
706
- taskId: z.string()
707
- })
708
- });
709
- /**
710
- * The response to a tasks/cancel request.
711
- */
712
- export const CancelTaskResultSchema = ResultSchema.merge(TaskSchema);
713
- /* Resources */
714
- /**
715
- * The contents of a specific resource or sub-resource.
716
- */
717
- export const ResourceContentsSchema = z.object({
718
- /**
719
- * The URI of this resource.
720
- */
721
- uri: z.string(),
722
- /**
723
- * The MIME type of this resource, if known.
724
- */
725
- mimeType: z.optional(z.string()),
726
- /**
727
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
728
- * for notes on _meta usage.
729
- */
730
- _meta: z.record(z.string(), z.unknown()).optional()
731
- });
732
- export const TextResourceContentsSchema = ResourceContentsSchema.extend({
733
- /**
734
- * The text of the item. This must only be set if the item can actually be represented as text (not binary data).
735
- */
736
- text: z.string()
737
- });
738
- /**
739
- * A Zod schema for validating Base64 strings that is more performant and
740
- * robust for very large inputs than the default regex-based check. It avoids
741
- * stack overflows by using the native `atob` function for validation.
742
- */
743
- const Base64Schema = z.string().refine(val => {
744
- try {
745
- // atob throws a DOMException if the string contains characters
746
- // that are not part of the Base64 character set.
747
- atob(val);
748
- return true;
749
- }
750
- catch {
751
- return false;
752
- }
753
- }, { message: 'Invalid Base64 string' });
754
- export const BlobResourceContentsSchema = ResourceContentsSchema.extend({
755
- /**
756
- * A base64-encoded string representing the binary data of the item.
757
- */
758
- blob: Base64Schema
759
- });
760
- /**
761
- * The sender or recipient of messages and data in a conversation.
762
- */
763
- export const RoleSchema = z.enum(['user', 'assistant']);
764
- /**
765
- * Optional annotations providing clients additional context about a resource.
766
- */
767
- export const AnnotationsSchema = z.object({
768
- /**
769
- * Intended audience(s) for the resource.
770
- */
771
- audience: z.array(RoleSchema).optional(),
772
- /**
773
- * Importance hint for the resource, from 0 (least) to 1 (most).
774
- */
775
- priority: z.number().min(0).max(1).optional(),
776
- /**
777
- * ISO 8601 timestamp for the most recent modification.
778
- */
779
- lastModified: z.iso.datetime({ offset: true }).optional()
780
- });
781
- /**
782
- * A known resource that the server is capable of reading.
783
- */
784
- export const ResourceSchema = z.object({
785
- ...BaseMetadataSchema.shape,
786
- ...IconsSchema.shape,
787
- /**
788
- * The URI of this resource.
789
- */
790
- uri: z.string(),
791
- /**
792
- * A description of what this resource represents.
793
- *
794
- * 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.
795
- */
796
- description: z.optional(z.string()),
797
- /**
798
- * The MIME type of this resource, if known.
799
- */
800
- mimeType: z.optional(z.string()),
801
- /**
802
- * Optional annotations for the client.
803
- */
804
- annotations: AnnotationsSchema.optional(),
805
- /**
806
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
807
- * for notes on _meta usage.
808
- */
809
- _meta: z.optional(z.looseObject({}))
810
- });
811
- /**
812
- * A template description for resources available on the server.
813
- */
814
- export const ResourceTemplateSchema = z.object({
815
- ...BaseMetadataSchema.shape,
816
- ...IconsSchema.shape,
817
- /**
818
- * A URI template (according to RFC 6570) that can be used to construct resource URIs.
819
- */
820
- uriTemplate: z.string(),
821
- /**
822
- * A description of what this template is for.
823
- *
824
- * 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.
825
- */
826
- description: z.optional(z.string()),
827
- /**
828
- * 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.
829
- */
830
- mimeType: z.optional(z.string()),
831
- /**
832
- * Optional annotations for the client.
833
- */
834
- annotations: AnnotationsSchema.optional(),
835
- /**
836
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
837
- * for notes on _meta usage.
838
- */
839
- _meta: z.optional(z.looseObject({}))
840
- });
841
- /**
842
- * Sent from the client to request a list of resources the server has.
843
- */
844
- export const ListResourcesRequestSchema = PaginatedRequestSchema.extend({
845
- method: z.literal('resources/list')
846
- });
847
- /**
848
- * The server's response to a resources/list request from the client.
849
- */
850
- export const ListResourcesResultSchema = PaginatedResultSchema.extend({
851
- resources: z.array(ResourceSchema)
852
- });
853
- /**
854
- * Sent from the client to request a list of resource templates the server has.
855
- */
856
- export const ListResourceTemplatesRequestSchema = PaginatedRequestSchema.extend({
857
- method: z.literal('resources/templates/list')
858
- });
859
- /**
860
- * The server's response to a resources/templates/list request from the client.
861
- */
862
- export const ListResourceTemplatesResultSchema = PaginatedResultSchema.extend({
863
- resourceTemplates: z.array(ResourceTemplateSchema)
864
- });
865
- export const ResourceRequestParamsSchema = BaseRequestParamsSchema.extend({
866
- /**
867
- * The URI of the resource to read. The URI can use any protocol; it is up to the server how to interpret it.
868
- *
869
- * @format uri
870
- */
871
- uri: z.string()
872
- });
873
- /**
874
- * Parameters for a `resources/read` request.
875
- */
876
- export const ReadResourceRequestParamsSchema = ResourceRequestParamsSchema;
877
- /**
878
- * Sent from the client to the server, to read a specific resource URI.
879
- */
880
- export const ReadResourceRequestSchema = RequestSchema.extend({
881
- method: z.literal('resources/read'),
882
- params: ReadResourceRequestParamsSchema
883
- });
884
- /**
885
- * The server's response to a resources/read request from the client.
886
- */
887
- export const ReadResourceResultSchema = ResultSchema.extend({
888
- contents: z.array(z.union([TextResourceContentsSchema, BlobResourceContentsSchema]))
889
- });
890
- /**
891
- * 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.
892
- */
893
- export const ResourceListChangedNotificationSchema = NotificationSchema.extend({
894
- method: z.literal('notifications/resources/list_changed'),
895
- params: NotificationsParamsSchema.optional()
896
- });
897
- export const SubscribeRequestParamsSchema = ResourceRequestParamsSchema;
898
- /**
899
- * Sent from the client to request resources/updated notifications from the server whenever a particular resource changes.
900
- */
901
- export const SubscribeRequestSchema = RequestSchema.extend({
902
- method: z.literal('resources/subscribe'),
903
- params: SubscribeRequestParamsSchema
904
- });
905
- export const UnsubscribeRequestParamsSchema = ResourceRequestParamsSchema;
906
- /**
907
- * Sent from the client to request cancellation of resources/updated notifications from the server. This should follow a previous resources/subscribe request.
908
- */
909
- export const UnsubscribeRequestSchema = RequestSchema.extend({
910
- method: z.literal('resources/unsubscribe'),
911
- params: UnsubscribeRequestParamsSchema
912
- });
913
- /**
914
- * Parameters for a `notifications/resources/updated` notification.
915
- */
916
- export const ResourceUpdatedNotificationParamsSchema = NotificationsParamsSchema.extend({
917
- /**
918
- * The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
919
- */
920
- uri: z.string()
921
- });
922
- /**
923
- * 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.
924
- */
925
- export const ResourceUpdatedNotificationSchema = NotificationSchema.extend({
926
- method: z.literal('notifications/resources/updated'),
927
- params: ResourceUpdatedNotificationParamsSchema
928
- });
929
- /* Prompts */
930
- /**
931
- * Describes an argument that a prompt can accept.
932
- */
933
- export const PromptArgumentSchema = z.object({
934
- /**
935
- * The name of the argument.
936
- */
937
- name: z.string(),
938
- /**
939
- * A human-readable description of the argument.
940
- */
941
- description: z.optional(z.string()),
942
- /**
943
- * Whether this argument must be provided.
944
- */
945
- required: z.optional(z.boolean())
946
- });
947
- /**
948
- * A prompt or prompt template that the server offers.
949
- */
950
- export const PromptSchema = z.object({
951
- ...BaseMetadataSchema.shape,
952
- ...IconsSchema.shape,
953
- /**
954
- * An optional description of what this prompt provides
955
- */
956
- description: z.optional(z.string()),
957
- /**
958
- * A list of arguments to use for templating the prompt.
959
- */
960
- arguments: z.optional(z.array(PromptArgumentSchema)),
961
- /**
962
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
963
- * for notes on _meta usage.
964
- */
965
- _meta: z.optional(z.looseObject({}))
966
- });
967
- /**
968
- * Sent from the client to request a list of prompts and prompt templates the server has.
969
- */
970
- export const ListPromptsRequestSchema = PaginatedRequestSchema.extend({
971
- method: z.literal('prompts/list')
972
- });
973
- /**
974
- * The server's response to a prompts/list request from the client.
975
- */
976
- export const ListPromptsResultSchema = PaginatedResultSchema.extend({
977
- prompts: z.array(PromptSchema)
978
- });
979
- /**
980
- * Parameters for a `prompts/get` request.
981
- */
982
- export const GetPromptRequestParamsSchema = BaseRequestParamsSchema.extend({
983
- /**
984
- * The name of the prompt or prompt template.
985
- */
986
- name: z.string(),
987
- /**
988
- * Arguments to use for templating the prompt.
989
- */
990
- arguments: z.record(z.string(), z.string()).optional()
991
- });
992
- /**
993
- * Used by the client to get a prompt provided by the server.
994
- */
995
- export const GetPromptRequestSchema = RequestSchema.extend({
996
- method: z.literal('prompts/get'),
997
- params: GetPromptRequestParamsSchema
998
- });
999
- /**
1000
- * Text provided to or from an LLM.
1001
- */
1002
- export const TextContentSchema = z.object({
1003
- type: z.literal('text'),
1004
- /**
1005
- * The text content of the message.
1006
- */
1007
- text: z.string(),
1008
- /**
1009
- * Optional annotations for the client.
1010
- */
1011
- annotations: AnnotationsSchema.optional(),
1012
- /**
1013
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1014
- * for notes on _meta usage.
1015
- */
1016
- _meta: z.record(z.string(), z.unknown()).optional()
1017
- });
1018
- /**
1019
- * An image provided to or from an LLM.
1020
- */
1021
- export const ImageContentSchema = z.object({
1022
- type: z.literal('image'),
1023
- /**
1024
- * The base64-encoded image data.
1025
- */
1026
- data: Base64Schema,
1027
- /**
1028
- * The MIME type of the image. Different providers may support different image types.
1029
- */
1030
- mimeType: z.string(),
1031
- /**
1032
- * Optional annotations for the client.
1033
- */
1034
- annotations: AnnotationsSchema.optional(),
1035
- /**
1036
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1037
- * for notes on _meta usage.
1038
- */
1039
- _meta: z.record(z.string(), z.unknown()).optional()
1040
- });
1041
- /**
1042
- * An Audio provided to or from an LLM.
1043
- */
1044
- export const AudioContentSchema = z.object({
1045
- type: z.literal('audio'),
1046
- /**
1047
- * The base64-encoded audio data.
1048
- */
1049
- data: Base64Schema,
1050
- /**
1051
- * The MIME type of the audio. Different providers may support different audio types.
1052
- */
1053
- mimeType: z.string(),
1054
- /**
1055
- * Optional annotations for the client.
1056
- */
1057
- annotations: AnnotationsSchema.optional(),
1058
- /**
1059
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1060
- * for notes on _meta usage.
1061
- */
1062
- _meta: z.record(z.string(), z.unknown()).optional()
1063
- });
1064
- /**
1065
- * A tool call request from an assistant (LLM).
1066
- * Represents the assistant's request to use a tool.
1067
- */
1068
- export const ToolUseContentSchema = z.object({
1069
- type: z.literal('tool_use'),
1070
- /**
1071
- * The name of the tool to invoke.
1072
- * Must match a tool name from the request's tools array.
1073
- */
1074
- name: z.string(),
1075
- /**
1076
- * Unique identifier for this tool call.
1077
- * Used to correlate with ToolResultContent in subsequent messages.
1078
- */
1079
- id: z.string(),
1080
- /**
1081
- * Arguments to pass to the tool.
1082
- * Must conform to the tool's inputSchema.
1083
- */
1084
- input: z.record(z.string(), z.unknown()),
1085
- /**
1086
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1087
- * for notes on _meta usage.
1088
- */
1089
- _meta: z.record(z.string(), z.unknown()).optional()
1090
- });
1091
- /**
1092
- * The contents of a resource, embedded into a prompt or tool call result.
1093
- */
1094
- export const EmbeddedResourceSchema = z.object({
1095
- type: z.literal('resource'),
1096
- resource: z.union([TextResourceContentsSchema, BlobResourceContentsSchema]),
1097
- /**
1098
- * Optional annotations for the client.
1099
- */
1100
- annotations: AnnotationsSchema.optional(),
1101
- /**
1102
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1103
- * for notes on _meta usage.
1104
- */
1105
- _meta: z.record(z.string(), z.unknown()).optional()
1106
- });
1107
- /**
1108
- * A resource that the server is capable of reading, included in a prompt or tool call result.
1109
- *
1110
- * Note: resource links returned by tools are not guaranteed to appear in the results of `resources/list` requests.
1111
- */
1112
- export const ResourceLinkSchema = ResourceSchema.extend({
1113
- type: z.literal('resource_link')
1114
- });
1115
- /**
1116
- * A content block that can be used in prompts and tool results.
1117
- */
1118
- export const ContentBlockSchema = z.union([
1119
- TextContentSchema,
1120
- ImageContentSchema,
1121
- AudioContentSchema,
1122
- ResourceLinkSchema,
1123
- EmbeddedResourceSchema
1124
- ]);
1125
- /**
1126
- * Describes a message returned as part of a prompt.
1127
- */
1128
- export const PromptMessageSchema = z.object({
1129
- role: RoleSchema,
1130
- content: ContentBlockSchema
1131
- });
1132
- /**
1133
- * The server's response to a prompts/get request from the client.
1134
- */
1135
- export const GetPromptResultSchema = ResultSchema.extend({
1136
- /**
1137
- * An optional description for the prompt.
1138
- */
1139
- description: z.string().optional(),
1140
- messages: z.array(PromptMessageSchema)
1141
- });
1142
- /**
1143
- * 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.
1144
- */
1145
- export const PromptListChangedNotificationSchema = NotificationSchema.extend({
1146
- method: z.literal('notifications/prompts/list_changed'),
1147
- params: NotificationsParamsSchema.optional()
1148
- });
1149
- /* Tools */
1150
- /**
1151
- * Additional properties describing a Tool to clients.
1152
- *
1153
- * NOTE: all properties in ToolAnnotations are **hints**.
1154
- * They are not guaranteed to provide a faithful description of
1155
- * tool behavior (including descriptive properties like `title`).
1156
- *
1157
- * Clients should never make tool use decisions based on ToolAnnotations
1158
- * received from untrusted servers.
1159
- */
1160
- export const ToolAnnotationsSchema = z.object({
1161
- /**
1162
- * A human-readable title for the tool.
1163
- */
1164
- title: z.string().optional(),
1165
- /**
1166
- * If true, the tool does not modify its environment.
1167
- *
1168
- * Default: false
1169
- */
1170
- readOnlyHint: z.boolean().optional(),
1171
- /**
1172
- * If true, the tool may perform destructive updates to its environment.
1173
- * If false, the tool performs only additive updates.
1174
- *
1175
- * (This property is meaningful only when `readOnlyHint == false`)
1176
- *
1177
- * Default: true
1178
- */
1179
- destructiveHint: z.boolean().optional(),
1180
- /**
1181
- * If true, calling the tool repeatedly with the same arguments
1182
- * will have no additional effect on the its environment.
1183
- *
1184
- * (This property is meaningful only when `readOnlyHint == false`)
1185
- *
1186
- * Default: false
1187
- */
1188
- idempotentHint: z.boolean().optional(),
1189
- /**
1190
- * If true, this tool may interact with an "open world" of external
1191
- * entities. If false, the tool's domain of interaction is closed.
1192
- * For example, the world of a web search tool is open, whereas that
1193
- * of a memory tool is not.
1194
- *
1195
- * Default: true
1196
- */
1197
- openWorldHint: z.boolean().optional()
1198
- });
1199
- /**
1200
- * Execution-related properties for a tool.
1201
- */
1202
- export const ToolExecutionSchema = z.object({
1203
- /**
1204
- * Indicates the tool's preference for task-augmented execution.
1205
- * - "required": Clients MUST invoke the tool as a task
1206
- * - "optional": Clients MAY invoke the tool as a task or normal request
1207
- * - "forbidden": Clients MUST NOT attempt to invoke the tool as a task
1208
- *
1209
- * If not present, defaults to "forbidden".
1210
- */
1211
- taskSupport: z.enum(['required', 'optional', 'forbidden']).optional()
1212
- });
1213
- /**
1214
- * Definition for a tool the client can call.
1215
- */
1216
- export const ToolSchema = z.object({
1217
- ...BaseMetadataSchema.shape,
1218
- ...IconsSchema.shape,
1219
- /**
1220
- * A human-readable description of the tool.
1221
- */
1222
- description: z.string().optional(),
1223
- /**
1224
- * A JSON Schema 2020-12 object defining the expected parameters for the tool.
1225
- * Must have type: 'object' at the root level per MCP spec.
1226
- */
1227
- inputSchema: z
1228
- .object({
1229
- type: z.literal('object'),
1230
- properties: z.record(z.string(), AssertObjectSchema).optional(),
1231
- required: z.array(z.string()).optional()
1232
- })
1233
- .catchall(z.unknown()),
1234
- /**
1235
- * An optional JSON Schema 2020-12 object defining the structure of the tool's output
1236
- * returned in the structuredContent field of a CallToolResult.
1237
- * Must have type: 'object' at the root level per MCP spec.
1238
- */
1239
- outputSchema: z
1240
- .object({
1241
- type: z.literal('object'),
1242
- properties: z.record(z.string(), AssertObjectSchema).optional(),
1243
- required: z.array(z.string()).optional()
1244
- })
1245
- .catchall(z.unknown())
1246
- .optional(),
1247
- /**
1248
- * Optional additional tool information.
1249
- */
1250
- annotations: ToolAnnotationsSchema.optional(),
1251
- /**
1252
- * Execution-related properties for this tool.
1253
- */
1254
- execution: ToolExecutionSchema.optional(),
1255
- /**
1256
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1257
- * for notes on _meta usage.
1258
- */
1259
- _meta: z.record(z.string(), z.unknown()).optional()
1260
- });
1261
- /**
1262
- * Sent from the client to request a list of tools the server has.
1263
- */
1264
- export const ListToolsRequestSchema = PaginatedRequestSchema.extend({
1265
- method: z.literal('tools/list')
1266
- });
1267
- /**
1268
- * The server's response to a tools/list request from the client.
1269
- */
1270
- export const ListToolsResultSchema = PaginatedResultSchema.extend({
1271
- tools: z.array(ToolSchema)
1272
- });
1273
- /**
1274
- * The server's response to a tool call.
1275
- */
1276
- export const CallToolResultSchema = ResultSchema.extend({
1277
- /**
1278
- * A list of content objects that represent the result of the tool call.
1279
- *
1280
- * If the Tool does not define an outputSchema, this field MUST be present in the result.
1281
- * For backwards compatibility, this field is always present, but it may be empty.
1282
- */
1283
- content: z.array(ContentBlockSchema).default([]),
1284
- /**
1285
- * An object containing structured tool output.
1286
- *
1287
- * If the Tool defines an outputSchema, this field MUST be present in the result, and contain a JSON object that matches the schema.
1288
- */
1289
- structuredContent: z.record(z.string(), z.unknown()).optional(),
1290
- /**
1291
- * Whether the tool call ended in an error.
1292
- *
1293
- * If not set, this is assumed to be false (the call was successful).
1294
- *
1295
- * Any errors that originate from the tool SHOULD be reported inside the result
1296
- * object, with `isError` set to true, _not_ as an MCP protocol-level error
1297
- * response. Otherwise, the LLM would not be able to see that an error occurred
1298
- * and self-correct.
1299
- *
1300
- * However, any errors in _finding_ the tool, an error indicating that the
1301
- * server does not support tool calls, or any other exceptional conditions,
1302
- * should be reported as an MCP error response.
1303
- */
1304
- isError: z.boolean().optional()
1305
- });
1306
- /**
1307
- * CallToolResultSchema extended with backwards compatibility to protocol version 2024-10-07.
1308
- */
1309
- export const CompatibilityCallToolResultSchema = CallToolResultSchema.or(ResultSchema.extend({
1310
- toolResult: z.unknown()
1311
- }));
1312
- /**
1313
- * Parameters for a `tools/call` request.
1314
- */
1315
- export const CallToolRequestParamsSchema = TaskAugmentedRequestParamsSchema.extend({
1316
- /**
1317
- * The name of the tool to call.
1318
- */
1319
- name: z.string(),
1320
- /**
1321
- * Arguments to pass to the tool.
1322
- */
1323
- arguments: z.record(z.string(), z.unknown()).optional()
1324
- });
1325
- /**
1326
- * Used by the client to invoke a tool provided by the server.
1327
- */
1328
- export const CallToolRequestSchema = RequestSchema.extend({
1329
- method: z.literal('tools/call'),
1330
- params: CallToolRequestParamsSchema
1331
- });
1332
- /**
1333
- * 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.
1334
- */
1335
- export const ToolListChangedNotificationSchema = NotificationSchema.extend({
1336
- method: z.literal('notifications/tools/list_changed'),
1337
- params: NotificationsParamsSchema.optional()
1338
- });
1339
- /**
1340
- * Base schema for list changed subscription options (without callback).
1341
- * Used internally for Zod validation of autoRefresh and debounceMs.
1342
- */
1343
- export const ListChangedOptionsBaseSchema = z.object({
1344
- /**
1345
- * If true, the list will be refreshed automatically when a list changed notification is received.
1346
- * The callback will be called with the updated list.
1347
- *
1348
- * If false, the callback will be called with null items, allowing manual refresh.
1349
- *
1350
- * @default true
1351
- */
1352
- autoRefresh: z.boolean().default(true),
1353
- /**
1354
- * Debounce time in milliseconds for list changed notification processing.
1355
- *
1356
- * Multiple notifications received within this timeframe will only trigger one refresh.
1357
- * Set to 0 to disable debouncing.
1358
- *
1359
- * @default 300
1360
- */
1361
- debounceMs: z.number().int().nonnegative().default(300)
1362
- });
1363
- /* Logging */
1364
- /**
1365
- * The severity of a log message.
1366
- */
1367
- export const LoggingLevelSchema = z.enum(['debug', 'info', 'notice', 'warning', 'error', 'critical', 'alert', 'emergency']);
1368
- /**
1369
- * Parameters for a `logging/setLevel` request.
1370
- */
1371
- export const SetLevelRequestParamsSchema = BaseRequestParamsSchema.extend({
1372
- /**
1373
- * 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/logging/message.
1374
- */
1375
- level: LoggingLevelSchema
1376
- });
1377
- /**
1378
- * A request from the client to the server, to enable or adjust logging.
1379
- */
1380
- export const SetLevelRequestSchema = RequestSchema.extend({
1381
- method: z.literal('logging/setLevel'),
1382
- params: SetLevelRequestParamsSchema
1383
- });
1384
- /**
1385
- * Parameters for a `notifications/message` notification.
1386
- */
1387
- export const LoggingMessageNotificationParamsSchema = NotificationsParamsSchema.extend({
1388
- /**
1389
- * The severity of this log message.
1390
- */
1391
- level: LoggingLevelSchema,
1392
- /**
1393
- * An optional name of the logger issuing this message.
1394
- */
1395
- logger: z.string().optional(),
1396
- /**
1397
- * The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
1398
- */
1399
- data: z.unknown()
1400
- });
1401
- /**
1402
- * Notification 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.
1403
- */
1404
- export const LoggingMessageNotificationSchema = NotificationSchema.extend({
1405
- method: z.literal('notifications/message'),
1406
- params: LoggingMessageNotificationParamsSchema
1407
- });
1408
- /* Sampling */
1409
- /**
1410
- * Hints to use for model selection.
1411
- */
1412
- export const ModelHintSchema = z.object({
1413
- /**
1414
- * A hint for a model name.
1415
- */
1416
- name: z.string().optional()
1417
- });
1418
- /**
1419
- * The server's preferences for model selection, requested of the client during sampling.
1420
- */
1421
- export const ModelPreferencesSchema = z.object({
1422
- /**
1423
- * Optional hints to use for model selection.
1424
- */
1425
- hints: z.array(ModelHintSchema).optional(),
1426
- /**
1427
- * How much to prioritize cost when selecting a model.
1428
- */
1429
- costPriority: z.number().min(0).max(1).optional(),
1430
- /**
1431
- * How much to prioritize sampling speed (latency) when selecting a model.
1432
- */
1433
- speedPriority: z.number().min(0).max(1).optional(),
1434
- /**
1435
- * How much to prioritize intelligence and capabilities when selecting a model.
1436
- */
1437
- intelligencePriority: z.number().min(0).max(1).optional()
1438
- });
1439
- /**
1440
- * Controls tool usage behavior in sampling requests.
1441
- */
1442
- export const ToolChoiceSchema = z.object({
1443
- /**
1444
- * Controls when tools are used:
1445
- * - "auto": Model decides whether to use tools (default)
1446
- * - "required": Model MUST use at least one tool before completing
1447
- * - "none": Model MUST NOT use any tools
1448
- */
1449
- mode: z.enum(['auto', 'required', 'none']).optional()
1450
- });
1451
- /**
1452
- * The result of a tool execution, provided by the user (server).
1453
- * Represents the outcome of invoking a tool requested via ToolUseContent.
1454
- */
1455
- export const ToolResultContentSchema = z.object({
1456
- type: z.literal('tool_result'),
1457
- toolUseId: z.string().describe('The unique identifier for the corresponding tool call.'),
1458
- content: z.array(ContentBlockSchema).default([]),
1459
- structuredContent: z.object({}).loose().optional(),
1460
- isError: z.boolean().optional(),
1461
- /**
1462
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1463
- * for notes on _meta usage.
1464
- */
1465
- _meta: z.record(z.string(), z.unknown()).optional()
1466
- });
1467
- /**
1468
- * Basic content types for sampling responses (without tool use).
1469
- * Used for backwards-compatible CreateMessageResult when tools are not used.
1470
- */
1471
- export const SamplingContentSchema = z.discriminatedUnion('type', [TextContentSchema, ImageContentSchema, AudioContentSchema]);
1472
- /**
1473
- * Content block types allowed in sampling messages.
1474
- * This includes text, image, audio, tool use requests, and tool results.
1475
- */
1476
- export const SamplingMessageContentBlockSchema = z.discriminatedUnion('type', [
1477
- TextContentSchema,
1478
- ImageContentSchema,
1479
- AudioContentSchema,
1480
- ToolUseContentSchema,
1481
- ToolResultContentSchema
1482
- ]);
1483
- /**
1484
- * Describes a message issued to or received from an LLM API.
1485
- */
1486
- export const SamplingMessageSchema = z.object({
1487
- role: RoleSchema,
1488
- content: z.union([SamplingMessageContentBlockSchema, z.array(SamplingMessageContentBlockSchema)]),
1489
- /**
1490
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1491
- * for notes on _meta usage.
1492
- */
1493
- _meta: z.record(z.string(), z.unknown()).optional()
1494
- });
1495
- /**
1496
- * Parameters for a `sampling/createMessage` request.
1497
- */
1498
- export const CreateMessageRequestParamsSchema = TaskAugmentedRequestParamsSchema.extend({
1499
- messages: z.array(SamplingMessageSchema),
1500
- /**
1501
- * The server's preferences for which model to select. The client MAY modify or omit this request.
1502
- */
1503
- modelPreferences: ModelPreferencesSchema.optional(),
1504
- /**
1505
- * An optional system prompt the server wants to use for sampling. The client MAY modify or omit this prompt.
1506
- */
1507
- systemPrompt: z.string().optional(),
1508
- /**
1509
- * A request to include context from one or more MCP servers (including the caller), to be attached to the prompt.
1510
- * The client MAY ignore this request.
1511
- *
1512
- * Default is "none". Values "thisServer" and "allServers" are soft-deprecated. Servers SHOULD only use these values if the client
1513
- * declares ClientCapabilities.sampling.context. These values may be removed in future spec releases.
1514
- */
1515
- includeContext: z.enum(['none', 'thisServer', 'allServers']).optional(),
1516
- temperature: z.number().optional(),
1517
- /**
1518
- * The requested maximum number of tokens to sample (to prevent runaway completions).
1519
- *
1520
- * The client MAY choose to sample fewer tokens than the requested maximum.
1521
- */
1522
- maxTokens: z.number().int(),
1523
- stopSequences: z.array(z.string()).optional(),
1524
- /**
1525
- * Optional metadata to pass through to the LLM provider. The format of this metadata is provider-specific.
1526
- */
1527
- metadata: AssertObjectSchema.optional(),
1528
- /**
1529
- * Tools that the model may use during generation.
1530
- * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared.
1531
- */
1532
- tools: z.array(ToolSchema).optional(),
1533
- /**
1534
- * Controls how the model uses tools.
1535
- * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared.
1536
- * Default is `{ mode: "auto" }`.
1537
- */
1538
- toolChoice: ToolChoiceSchema.optional()
1539
- });
1540
- /**
1541
- * 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.
1542
- */
1543
- export const CreateMessageRequestSchema = RequestSchema.extend({
1544
- method: z.literal('sampling/createMessage'),
1545
- params: CreateMessageRequestParamsSchema
1546
- });
1547
- /**
1548
- * The client's response to a sampling/create_message request from the server.
1549
- * This is the backwards-compatible version that returns single content (no arrays).
1550
- * Used when the request does not include tools.
1551
- */
1552
- export const CreateMessageResultSchema = ResultSchema.extend({
1553
- /**
1554
- * The name of the model that generated the message.
1555
- */
1556
- model: z.string(),
1557
- /**
1558
- * The reason why sampling stopped, if known.
1559
- *
1560
- * Standard values:
1561
- * - "endTurn": Natural end of the assistant's turn
1562
- * - "stopSequence": A stop sequence was encountered
1563
- * - "maxTokens": Maximum token limit was reached
1564
- *
1565
- * This field is an open string to allow for provider-specific stop reasons.
1566
- */
1567
- stopReason: z.optional(z.enum(['endTurn', 'stopSequence', 'maxTokens']).or(z.string())),
1568
- role: RoleSchema,
1569
- /**
1570
- * Response content. Single content block (text, image, or audio).
1571
- */
1572
- content: SamplingContentSchema
1573
- });
1574
- /**
1575
- * The client's response to a sampling/create_message request when tools were provided.
1576
- * This version supports array content for tool use flows.
1577
- */
1578
- export const CreateMessageResultWithToolsSchema = ResultSchema.extend({
1579
- /**
1580
- * The name of the model that generated the message.
1581
- */
1582
- model: z.string(),
1583
- /**
1584
- * The reason why sampling stopped, if known.
1585
- *
1586
- * Standard values:
1587
- * - "endTurn": Natural end of the assistant's turn
1588
- * - "stopSequence": A stop sequence was encountered
1589
- * - "maxTokens": Maximum token limit was reached
1590
- * - "toolUse": The model wants to use one or more tools
1591
- *
1592
- * This field is an open string to allow for provider-specific stop reasons.
1593
- */
1594
- stopReason: z.optional(z.enum(['endTurn', 'stopSequence', 'maxTokens', 'toolUse']).or(z.string())),
1595
- role: RoleSchema,
1596
- /**
1597
- * Response content. May be a single block or array. May include ToolUseContent if stopReason is "toolUse".
1598
- */
1599
- content: z.union([SamplingMessageContentBlockSchema, z.array(SamplingMessageContentBlockSchema)])
1600
- });
1601
- /* Elicitation */
1602
- /**
1603
- * Primitive schema definition for boolean fields.
1604
- */
1605
- export const BooleanSchemaSchema = z.object({
1606
- type: z.literal('boolean'),
1607
- title: z.string().optional(),
1608
- description: z.string().optional(),
1609
- default: z.boolean().optional()
1610
- });
1611
- /**
1612
- * Primitive schema definition for string fields.
1613
- */
1614
- export const StringSchemaSchema = z.object({
1615
- type: z.literal('string'),
1616
- title: z.string().optional(),
1617
- description: z.string().optional(),
1618
- minLength: z.number().optional(),
1619
- maxLength: z.number().optional(),
1620
- format: z.enum(['email', 'uri', 'date', 'date-time']).optional(),
1621
- default: z.string().optional()
1622
- });
1623
- /**
1624
- * Primitive schema definition for number fields.
1625
- */
1626
- export const NumberSchemaSchema = z.object({
1627
- type: z.enum(['number', 'integer']),
1628
- title: z.string().optional(),
1629
- description: z.string().optional(),
1630
- minimum: z.number().optional(),
1631
- maximum: z.number().optional(),
1632
- default: z.number().optional()
1633
- });
1634
- /**
1635
- * Schema for single-selection enumeration without display titles for options.
1636
- */
1637
- export const UntitledSingleSelectEnumSchemaSchema = z.object({
1638
- type: z.literal('string'),
1639
- title: z.string().optional(),
1640
- description: z.string().optional(),
1641
- enum: z.array(z.string()),
1642
- default: z.string().optional()
1643
- });
1644
- /**
1645
- * Schema for single-selection enumeration with display titles for each option.
1646
- */
1647
- export const TitledSingleSelectEnumSchemaSchema = z.object({
1648
- type: z.literal('string'),
1649
- title: z.string().optional(),
1650
- description: z.string().optional(),
1651
- oneOf: z.array(z.object({
1652
- const: z.string(),
1653
- title: z.string()
1654
- })),
1655
- default: z.string().optional()
1656
- });
1657
- /**
1658
- * Use TitledSingleSelectEnumSchema instead.
1659
- * This interface will be removed in a future version.
1660
- */
1661
- export const LegacyTitledEnumSchemaSchema = z.object({
1662
- type: z.literal('string'),
1663
- title: z.string().optional(),
1664
- description: z.string().optional(),
1665
- enum: z.array(z.string()),
1666
- enumNames: z.array(z.string()).optional(),
1667
- default: z.string().optional()
1668
- });
1669
- // Combined single selection enumeration
1670
- export const SingleSelectEnumSchemaSchema = z.union([UntitledSingleSelectEnumSchemaSchema, TitledSingleSelectEnumSchemaSchema]);
1671
- /**
1672
- * Schema for multiple-selection enumeration without display titles for options.
1673
- */
1674
- export const UntitledMultiSelectEnumSchemaSchema = z.object({
1675
- type: z.literal('array'),
1676
- title: z.string().optional(),
1677
- description: z.string().optional(),
1678
- minItems: z.number().optional(),
1679
- maxItems: z.number().optional(),
1680
- items: z.object({
1681
- type: z.literal('string'),
1682
- enum: z.array(z.string())
1683
- }),
1684
- default: z.array(z.string()).optional()
1685
- });
1686
- /**
1687
- * Schema for multiple-selection enumeration with display titles for each option.
1688
- */
1689
- export const TitledMultiSelectEnumSchemaSchema = z.object({
1690
- type: z.literal('array'),
1691
- title: z.string().optional(),
1692
- description: z.string().optional(),
1693
- minItems: z.number().optional(),
1694
- maxItems: z.number().optional(),
1695
- items: z.object({
1696
- anyOf: z.array(z.object({
1697
- const: z.string(),
1698
- title: z.string()
1699
- }))
1700
- }),
1701
- default: z.array(z.string()).optional()
1702
- });
1703
- /**
1704
- * Combined schema for multiple-selection enumeration
1705
- */
1706
- export const MultiSelectEnumSchemaSchema = z.union([UntitledMultiSelectEnumSchemaSchema, TitledMultiSelectEnumSchemaSchema]);
1707
- /**
1708
- * Primitive schema definition for enum fields.
1709
- */
1710
- export const EnumSchemaSchema = z.union([LegacyTitledEnumSchemaSchema, SingleSelectEnumSchemaSchema, MultiSelectEnumSchemaSchema]);
1711
- /**
1712
- * Union of all primitive schema definitions.
1713
- */
1714
- export const PrimitiveSchemaDefinitionSchema = z.union([EnumSchemaSchema, BooleanSchemaSchema, StringSchemaSchema, NumberSchemaSchema]);
1715
- /**
1716
- * Parameters for an `elicitation/create` request for form-based elicitation.
1717
- */
1718
- export const ElicitRequestFormParamsSchema = TaskAugmentedRequestParamsSchema.extend({
1719
- /**
1720
- * The elicitation mode.
1721
- *
1722
- * Optional for backward compatibility. Clients MUST treat missing mode as "form".
1723
- */
1724
- mode: z.literal('form').optional(),
1725
- /**
1726
- * The message to present to the user describing what information is being requested.
1727
- */
1728
- message: z.string(),
1729
- /**
1730
- * A restricted subset of JSON Schema.
1731
- * Only top-level properties are allowed, without nesting.
1732
- */
1733
- requestedSchema: z.object({
1734
- type: z.literal('object'),
1735
- properties: z.record(z.string(), PrimitiveSchemaDefinitionSchema),
1736
- required: z.array(z.string()).optional()
1737
- })
1738
- });
1739
- /**
1740
- * Parameters for an `elicitation/create` request for URL-based elicitation.
1741
- */
1742
- export const ElicitRequestURLParamsSchema = TaskAugmentedRequestParamsSchema.extend({
1743
- /**
1744
- * The elicitation mode.
1745
- */
1746
- mode: z.literal('url'),
1747
- /**
1748
- * The message to present to the user explaining why the interaction is needed.
1749
- */
1750
- message: z.string(),
1751
- /**
1752
- * The ID of the elicitation, which must be unique within the context of the server.
1753
- * The client MUST treat this ID as an opaque value.
1754
- */
1755
- elicitationId: z.string(),
1756
- /**
1757
- * The URL that the user should navigate to.
1758
- */
1759
- url: z.string().url()
1760
- });
1761
- /**
1762
- * The parameters for a request to elicit additional information from the user via the client.
1763
- */
1764
- export const ElicitRequestParamsSchema = z.union([ElicitRequestFormParamsSchema, ElicitRequestURLParamsSchema]);
1765
- /**
1766
- * A request from the server to elicit user input via the client.
1767
- * The client should present the message and form fields to the user (form mode)
1768
- * or navigate to a URL (URL mode).
1769
- */
1770
- export const ElicitRequestSchema = RequestSchema.extend({
1771
- method: z.literal('elicitation/create'),
1772
- params: ElicitRequestParamsSchema
1773
- });
1774
- /**
1775
- * Parameters for a `notifications/elicitation/complete` notification.
1776
- *
1777
- * @category notifications/elicitation/complete
1778
- */
1779
- export const ElicitationCompleteNotificationParamsSchema = NotificationsParamsSchema.extend({
1780
- /**
1781
- * The ID of the elicitation that completed.
1782
- */
1783
- elicitationId: z.string()
1784
- });
1785
- /**
1786
- * A notification from the server to the client, informing it of a completion of an out-of-band elicitation request.
1787
- *
1788
- * @category notifications/elicitation/complete
1789
- */
1790
- export const ElicitationCompleteNotificationSchema = NotificationSchema.extend({
1791
- method: z.literal('notifications/elicitation/complete'),
1792
- params: ElicitationCompleteNotificationParamsSchema
1793
- });
1794
- /**
1795
- * The client's response to an elicitation/create request from the server.
1796
- */
1797
- export const ElicitResultSchema = ResultSchema.extend({
1798
- /**
1799
- * The user action in response to the elicitation.
1800
- * - "accept": User submitted the form/confirmed the action
1801
- * - "decline": User explicitly decline the action
1802
- * - "cancel": User dismissed without making an explicit choice
1803
- */
1804
- action: z.enum(['accept', 'decline', 'cancel']),
1805
- /**
1806
- * The submitted form data, only present when action is "accept".
1807
- * Contains values matching the requested schema.
1808
- * Per MCP spec, content is "typically omitted" for decline/cancel actions.
1809
- * We normalize null to undefined for leniency while maintaining type compatibility.
1810
- */
1811
- content: z.preprocess(val => (val === null ? undefined : val), z.record(z.string(), z.union([z.string(), z.number(), z.boolean(), z.array(z.string())])).optional())
1812
- });
1813
- /* Autocomplete */
1814
- /**
1815
- * A reference to a resource or resource template definition.
1816
- */
1817
- export const ResourceTemplateReferenceSchema = z.object({
1818
- type: z.literal('ref/resource'),
1819
- /**
1820
- * The URI or URI template of the resource.
1821
- */
1822
- uri: z.string()
1823
- });
1824
- /**
1825
- * @deprecated Use ResourceTemplateReferenceSchema instead
1826
- */
1827
- export const ResourceReferenceSchema = ResourceTemplateReferenceSchema;
1828
- /**
1829
- * Identifies a prompt.
1830
- */
1831
- export const PromptReferenceSchema = z.object({
1832
- type: z.literal('ref/prompt'),
1833
- /**
1834
- * The name of the prompt or prompt template
1835
- */
1836
- name: z.string()
1837
- });
1838
- /**
1839
- * Parameters for a `completion/complete` request.
1840
- */
1841
- export const CompleteRequestParamsSchema = BaseRequestParamsSchema.extend({
1842
- ref: z.union([PromptReferenceSchema, ResourceTemplateReferenceSchema]),
1843
- /**
1844
- * The argument's information
1845
- */
1846
- argument: z.object({
1847
- /**
1848
- * The name of the argument
1849
- */
1850
- name: z.string(),
1851
- /**
1852
- * The value of the argument to use for completion matching.
1853
- */
1854
- value: z.string()
1855
- }),
1856
- context: z
1857
- .object({
1858
- /**
1859
- * Previously-resolved variables in a URI template or prompt.
1860
- */
1861
- arguments: z.record(z.string(), z.string()).optional()
1862
- })
1863
- .optional()
1864
- });
1865
- /**
1866
- * A request from the client to the server, to ask for completion options.
1867
- */
1868
- export const CompleteRequestSchema = RequestSchema.extend({
1869
- method: z.literal('completion/complete'),
1870
- params: CompleteRequestParamsSchema
1871
- });
1872
- export function assertCompleteRequestPrompt(request) {
1873
- if (request.params.ref.type !== 'ref/prompt') {
1874
- throw new TypeError(`Expected CompleteRequestPrompt, but got ${request.params.ref.type}`);
1875
- }
1876
- void request;
1877
- }
1878
- export function assertCompleteRequestResourceTemplate(request) {
1879
- if (request.params.ref.type !== 'ref/resource') {
1880
- throw new TypeError(`Expected CompleteRequestResourceTemplate, but got ${request.params.ref.type}`);
1881
- }
1882
- void request;
1883
- }
1884
- /**
1885
- * The server's response to a completion/complete request
1886
- */
1887
- export const CompleteResultSchema = ResultSchema.extend({
1888
- completion: z.looseObject({
1889
- /**
1890
- * An array of completion values. Must not exceed 100 items.
1891
- */
1892
- values: z.array(z.string()).max(100),
1893
- /**
1894
- * The total number of completion options available. This can exceed the number of values actually sent in the response.
1895
- */
1896
- total: z.optional(z.number().int()),
1897
- /**
1898
- * Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown.
1899
- */
1900
- hasMore: z.optional(z.boolean())
1901
- })
1902
- });
1903
- /* Roots */
1904
- /**
1905
- * Represents a root directory or file that the server can operate on.
1906
- */
1907
- export const RootSchema = z.object({
1908
- /**
1909
- * The URI identifying the root. This *must* start with file:// for now.
1910
- */
1911
- uri: z.string().startsWith('file://'),
1912
- /**
1913
- * An optional name for the root.
1914
- */
1915
- name: z.string().optional(),
1916
- /**
1917
- * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
1918
- * for notes on _meta usage.
1919
- */
1920
- _meta: z.record(z.string(), z.unknown()).optional()
1921
- });
1922
- /**
1923
- * Sent from the server to request a list of root URIs from the client.
1924
- */
1925
- export const ListRootsRequestSchema = RequestSchema.extend({
1926
- method: z.literal('roots/list'),
1927
- params: BaseRequestParamsSchema.optional()
1928
- });
1929
- /**
1930
- * The client's response to a roots/list request from the server.
1931
- */
1932
- export const ListRootsResultSchema = ResultSchema.extend({
1933
- roots: z.array(RootSchema)
1934
- });
1935
- /**
1936
- * A notification from the client to the server, informing it that the list of roots has changed.
1937
- */
1938
- export const RootsListChangedNotificationSchema = NotificationSchema.extend({
1939
- method: z.literal('notifications/roots/list_changed'),
1940
- params: NotificationsParamsSchema.optional()
1941
- });
1942
- /* Client messages */
1943
- export const ClientRequestSchema = z.union([
1944
- PingRequestSchema,
1945
- InitializeRequestSchema,
1946
- CompleteRequestSchema,
1947
- SetLevelRequestSchema,
1948
- GetPromptRequestSchema,
1949
- ListPromptsRequestSchema,
1950
- ListResourcesRequestSchema,
1951
- ListResourceTemplatesRequestSchema,
1952
- ReadResourceRequestSchema,
1953
- SubscribeRequestSchema,
1954
- UnsubscribeRequestSchema,
1955
- CallToolRequestSchema,
1956
- ListToolsRequestSchema,
1957
- GetTaskRequestSchema,
1958
- GetTaskPayloadRequestSchema,
1959
- ListTasksRequestSchema,
1960
- CancelTaskRequestSchema
1961
- ]);
1962
- export const ClientNotificationSchema = z.union([
1963
- CancelledNotificationSchema,
1964
- ProgressNotificationSchema,
1965
- InitializedNotificationSchema,
1966
- RootsListChangedNotificationSchema,
1967
- TaskStatusNotificationSchema
1968
- ]);
1969
- export const ClientResultSchema = z.union([
1970
- EmptyResultSchema,
1971
- CreateMessageResultSchema,
1972
- CreateMessageResultWithToolsSchema,
1973
- ElicitResultSchema,
1974
- ListRootsResultSchema,
1975
- GetTaskResultSchema,
1976
- ListTasksResultSchema,
1977
- CreateTaskResultSchema
1978
- ]);
1979
- /* Server messages */
1980
- export const ServerRequestSchema = z.union([
1981
- PingRequestSchema,
1982
- CreateMessageRequestSchema,
1983
- ElicitRequestSchema,
1984
- ListRootsRequestSchema,
1985
- GetTaskRequestSchema,
1986
- GetTaskPayloadRequestSchema,
1987
- ListTasksRequestSchema,
1988
- CancelTaskRequestSchema
1989
- ]);
1990
- export const ServerNotificationSchema = z.union([
1991
- CancelledNotificationSchema,
1992
- ProgressNotificationSchema,
1993
- LoggingMessageNotificationSchema,
1994
- ResourceUpdatedNotificationSchema,
1995
- ResourceListChangedNotificationSchema,
1996
- ToolListChangedNotificationSchema,
1997
- PromptListChangedNotificationSchema,
1998
- TaskStatusNotificationSchema,
1999
- ElicitationCompleteNotificationSchema
2000
- ]);
2001
- export const ServerResultSchema = z.union([
2002
- EmptyResultSchema,
2003
- InitializeResultSchema,
2004
- CompleteResultSchema,
2005
- GetPromptResultSchema,
2006
- ListPromptsResultSchema,
2007
- ListResourcesResultSchema,
2008
- ListResourceTemplatesResultSchema,
2009
- ReadResourceResultSchema,
2010
- CallToolResultSchema,
2011
- ListToolsResultSchema,
2012
- GetTaskResultSchema,
2013
- ListTasksResultSchema,
2014
- CreateTaskResultSchema
2015
- ]);
2016
- export class McpError extends Error {
2017
- constructor(code, message, data) {
2018
- super(`MCP error ${code}: ${message}`);
2019
- this.code = code;
2020
- this.data = data;
2021
- this.name = 'McpError';
2022
- }
2023
- /**
2024
- * Factory method to create the appropriate error type based on the error code and data
2025
- */
2026
- static fromError(code, message, data) {
2027
- // Check for specific error types
2028
- if (code === ErrorCode.UrlElicitationRequired && data) {
2029
- const errorData = data;
2030
- if (errorData.elicitations) {
2031
- return new UrlElicitationRequiredError(errorData.elicitations, message);
2032
- }
2033
- }
2034
- // Default to generic McpError
2035
- return new McpError(code, message, data);
2036
- }
2037
- }
2038
- /**
2039
- * Specialized error type when a tool requires a URL mode elicitation.
2040
- * This makes it nicer for the client to handle since there is specific data to work with instead of just a code to check against.
2041
- */
2042
- export class UrlElicitationRequiredError extends McpError {
2043
- constructor(elicitations, message = `URL elicitation${elicitations.length > 1 ? 's' : ''} required`) {
2044
- super(ErrorCode.UrlElicitationRequired, message, {
2045
- elicitations: elicitations
2046
- });
2047
- }
2048
- get elicitations() {
2049
- return this.data?.elicitations ?? [];
2050
- }
2051
- }
2052
- //# sourceMappingURL=types.js.map