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,1239 +0,0 @@
1
- export declare const draft: "2020-12";
2
- export declare const $schema: "https://json-schema.org/draft/2020-12/schema";
3
- type MaybeReadonlyArray<T> = Array<T> | ReadonlyArray<T>;
4
- type ValueOf<T> = T[keyof T];
5
- /**
6
- * JSON Schema [Draft 2020-12](https://json-schema.org/draft/2020-12/json-schema-validation.html)
7
- */
8
- export type JSONSchema<Value = any, SchemaType = Value extends boolean ? "boolean" : Value extends null ? "null" : Value extends number ? "number" | "integer" : Value extends string ? "string" : Value extends unknown[] ? "array" : Value extends Record<string | number, unknown> ? "object" : JSONSchema.TypeValue> = boolean | {
9
- /**
10
- * Using JSON Pointer fragments requires knowledge of the structure of the
11
- * schema. When writing schema documents with the intention to provide
12
- * re-usable schemas, it may be preferable to use a plain name fragment
13
- * that is not tied to any particular structural location. This allows a
14
- * subschema to be relocated without requiring JSON Pointer references to
15
- * be updated.
16
- *
17
- * The `$anchor` keyword is used to specify such a fragment. It is an
18
- * identifier keyword that can only be used to create plain name fragments.
19
- *
20
- * If present, the value of this keyword MUST be a string, which MUST start
21
- * with a letter `[A-Za-z]`, followed by any number of letters, digits
22
- * `[0-9]`, hyphens `-`, underscores `_`, colons `:`,
23
- * or periods `.`.
24
- *
25
- * Note that the anchor string does not include the `#` character,
26
- * as it is not a URI-reference. An `{"$anchor": "foo"}` becomes the
27
- * fragment `#foo` when used in a URI.
28
- *
29
- * The base URI to which the resulting fragment is appended is determined
30
- * by the `$id` keyword as explained in the previous section.
31
- * Two `$anchor` keywords in the same schema document MAY have the same
32
- * value if they apply to different base URIs, as the resulting full URIs
33
- * will be distinct. However, the effect of two `$anchor` keywords
34
- * with the same value and the same base URI is undefined. Implementations
35
- * MAY raise an error if such usage is detected.
36
- */
37
- $anchor?: string;
38
- /**
39
- * This keyword reserves a location for comments from schema authors to
40
- * readers or maintainers of the schema.
41
- *
42
- * The value of this keyword MUST be a string. Implementations MUST NOT
43
- * present this string to end users. Tools for editing schemas SHOULD
44
- * support displaying and editing this keyword. The value of this keyword
45
- * MAY be used in debug or error output which is intended for developers
46
- * making use of schemas.
47
- *
48
- * Schema vocabularies SHOULD allow `$comment` within any object
49
- * containing vocabulary keywords. Implementations MAY assume `$comment`
50
- * is allowed unless the vocabulary specifically forbids it. Vocabularies
51
- * MUST NOT specify any effect of `$comment` beyond what is described in
52
- * this specification.
53
- *
54
- * Tools that translate other media types or programming languages
55
- * to and from `application/schema+json` MAY choose to convert that media
56
- * type or programming language's native comments to or from `$comment`
57
- * values. The behavior of such translation when both native comments and
58
- * `$comment` properties are present is implementation-dependent.
59
- *
60
- * Implementations MAY strip `$comment` values at any point during
61
- * processing. In particular, this allows for shortening schemas when the
62
- * size of deployed schemas is a concern.
63
- *
64
- * Implementations MUST NOT take any other action based on the presence,
65
- * absence, or contents of `$comment` properties. In particular, the
66
- * value of `$comment` MUST NOT be collected as an annotation result.
67
- */
68
- $comment?: string;
69
- /**
70
- * The `$defs` keyword reserves a location for schema authors to inline
71
- * re-usable JSON Schemas into a more general schema. The keyword does not
72
- * directly affect the validation result.
73
- *
74
- * This keyword's value MUST be an object. Each member value of this object
75
- * MUST be a valid JSON Schema.
76
- */
77
- $defs?: Record<string, JSONSchema>;
78
- /**
79
- * "The `$dynamicAnchor` indicates that the fragment is an extension
80
- * point when used with the `$dynamicRef` keyword. This low-level,
81
- * advanced feature makes it easier to extend recursive schemas such as the
82
- * meta-schemas, without imposing any particular semantics on that
83
- * extension. See `$dynamicRef` for more details.
84
- */
85
- $dynamicAnchor?: string;
86
- /**
87
- * The `$dynamicRef` keyword is an applicator that allows for deferring
88
- * the full resolution until runtime, at which point it is resolved each
89
- * time it is encountered while evaluating an instance.
90
- *
91
- * Together with `$dynamicAnchor`, `$dynamicRef` implements a
92
- * cooperative extension mechanism that is primarily useful with recursive
93
- * schemas (schemas that reference themselves). Both the extension point
94
- * and the runtime-determined extension target are defined with
95
- * `$dynamicAnchor`, and only exhibit runtime dynamic behavior when
96
- * referenced with `$dynamicRef`.
97
- *
98
- * The value of the `$dynamicRef` property MUST be a string which is
99
- * a URI-Reference. Resolved against the current URI base, it produces
100
- * the URI used as the starting point for runtime resolution. This initial
101
- * resolution is safe to perform on schema load.
102
- *
103
- * If the initially resolved starting point URI includes a fragment that
104
- * was created by the `$dynamicAnchor` keyword, the initial URI MUST be
105
- * replaced by the URI (including the fragment) for the outermost schema
106
- * resource in the [dynamic scope][scopes] that defines
107
- * an identically named fragment with `$dynamicAnchor`.
108
- *
109
- * Otherwise, its behavior is identical to `$ref`, and no runtime
110
- * resolution is needed.
111
- *
112
- * [scopes]: https://json-schema.org/draft/2020-12/json-schema-core.html#scopes
113
- *
114
- * @format "uri-reference"
115
- */
116
- $dynamicRef?: string;
117
- /**
118
- * The `$id` keyword identifies a schema resource with its
119
- * [canonical][[RFC6596]] URI.
120
- *
121
- * Note that this URI is an identifier and not necessarily a network
122
- * locator. In the case of a network-addressable URL, a schema need not be
123
- * downloadable from its canonical URI.
124
- *
125
- * If present, the value for this keyword MUST be a string, and MUST
126
- * represent a valid [URI-reference][RFC3986]. This URI-reference SHOULD
127
- * be normalized, and MUST resolve to an [absolute-URI][RFC3986] (without a
128
- * fragment). Therefore, `$id` MUST NOT contain a non-empty fragment,
129
- * and SHOULD NOT contain an empty fragment.
130
- *
131
- * Since an empty fragment in the context of the
132
- * `application/schema+json` media type refers to the same resource as
133
- * the base URI without a fragment, an implementation MAY normalize a URI
134
- * ending with an empty fragment by removing the fragment. However, schema
135
- * authors SHOULD NOT rely on this behavior across implementations.
136
- *
137
- * This URI also serves as the base URI for relative URI-references in
138
- * keywords within the schema resource, in accordance with
139
- * [RFC 3986][RFC3986] section 5.1.1 regarding base URIs embedded in
140
- * content.
141
- *
142
- * The presence of `$id` in a subschema indicates that the subschema
143
- * constitutes a distinct schema resource within a single schema document.
144
- * Furthermore, in accordance with [RFC 3986][RFC3986] section 5.1.2
145
- * regarding encapsulating entities, if an `$id` in a subschema is a
146
- * relative URI-reference, the base URI for resolving that reference is the
147
- * URI of the parent schema resource.
148
- *
149
- * If no parent schema object explicitly identifies itself as a resource
150
- * with `$id`, the base URI is that of the entire document.
151
- *
152
- * The root schema of a JSON Schema document SHOULD contain an `$id`
153
- * keyword with an [absolute-URI][RFC3986] (containing a scheme, but no
154
- * fragment).
155
- *
156
- * [RFC6596]: https://datatracker.ietf.org/doc/html/rfc6596
157
- * [RFC3986]: https://datatracker.ietf.org/doc/html/rfc3986
158
- *
159
- * @format "uri-reference"
160
- */
161
- $id?: string;
162
- /**
163
- * The `$ref` keyword is an applicator that is used to reference a
164
- * statically identified schema. Its results are the results of the
165
- * referenced schema. Other keywords can appear alongside of `$ref` in
166
- * the same schema object.
167
- *
168
- * The value of the `$ref` property MUST be a string which is a
169
- * URI-Reference. Resolved against the current URI base, it produces the
170
- * URI of the schema to apply.
171
- *
172
- * @format "uri-reference"
173
- */
174
- $ref?: string;
175
- /**
176
- * The `$schema` keyword is both used as a JSON Schema dialect identifier
177
- * and as the identifier of a resource which is itself a JSON Schema, which
178
- * describes the set of valid schemas written for this particular dialect.
179
- *
180
- * The value of this keyword MUST be a [URI][RFC3986] (containing a scheme)
181
- * and this URI MUST be normalized. The current schema MUST be valid
182
- * against the meta-schema identified by this URI.
183
- *
184
- * If this URI identifies a retrievable resource, that resource SHOULD be
185
- * of media type `application/schema+json`.
186
- *
187
- * The `$schema` keyword SHOULD be used in the document root schema
188
- * object, and MAY be used in the root schema objects of embedded schema
189
- * resources. It MUST NOT appear in non-resource root schema objects. If
190
- * absent from the document root schema, the resulting behavior is
191
- * implementation-defined.
192
- *
193
- * Values for this property are defined elsewhere in this and other
194
- * documents, and by other parties.
195
- *
196
- * [RFC3986]: https://datatracker.ietf.org/doc/html/rfc3986
197
- *
198
- * @format "uri"
199
- */
200
- $schema?: string;
201
- /**
202
- * The `$vocabulary` keyword is used in meta-schemas to identify the
203
- * vocabularies available for use in schemas described by that meta-schema.
204
- * It is also used to indicate whether each vocabulary is required or
205
- * optional, in the sense that an implementation MUST understand the
206
- * required vocabularies in order to successfully process the schema.
207
- * Together, this information forms a dialect. Any vocabulary that is
208
- * understood by the implementation MUST be processed in a manner
209
- * consistent with the semantic definitions contained within the
210
- * vocabulary.
211
- *
212
- * The value of this keyword MUST be an object. The property names in the
213
- * object MUST be URIs (containing a scheme) and this URI MUST be
214
- * normalized. Each URI that appears as a property name identifies a
215
- * specific set of keywords and their semantics.
216
- *
217
- * The URI MAY be a URL, but the nature of the retrievable resource is
218
- * currently undefined, and reserved for future use. Vocabulary authors
219
- * MAY use the URL of the vocabulary specification, in a human-readable
220
- * media type such as `text/html` or `text/plain`, as the vocabulary
221
- * URI.
222
- *
223
- * The values of the object properties MUST be booleans. If the value is
224
- * `true`, then implementations that do not recognize the vocabulary MUST
225
- * refuse to process any schemas that declare this meta-schema with
226
- * `$schema`. If the value is `false`, implementations that do not
227
- * recognize the vocabulary SHOULD proceed with processing such schemas.
228
- * The value has no impact if the implementation understands the
229
- * vocabulary.
230
- *
231
- * Unrecognized keywords SHOULD be ignored. This remains the case for
232
- * keywords defined by unrecognized vocabularies. It is not currently
233
- * possible to distinguish between unrecognized keywords that are defined
234
- * in vocabularies from those that are not part of any vocabulary.
235
- *
236
- * The `$vocabulary` keyword SHOULD be used in the root schema of any
237
- * schema document intended for use as a meta-schema. It MUST NOT appear
238
- * in subschemas.
239
- *
240
- * The `$vocabulary` keyword MUST be ignored in schema documents that are
241
- * not being processed as a meta-schema.
242
- */
243
- $vocabulary?: Record<string, string>;
244
- /**
245
- * @deprecated `additionalItems` has been deprecated in favor of `prefixItems`
246
- * paired with `items`.
247
- */
248
- additionalItems?: JSONSchema;
249
- /**
250
- * The value of `additionalProperties` MUST be a valid JSON Schema.
251
- *
252
- * The behavior of this keyword depends on the presence and annotation
253
- * results of `properties` and `patternProperties` within the same
254
- * schema object. Validation with `additionalProperties` applies only to
255
- * the child values of instance names that do not appear in the annotation
256
- * results of either `properties` or `patternProperties`.
257
- *
258
- * For all such properties, validation succeeds if the child instance
259
- * validates against the `additionalProperties` schema.
260
- *
261
- * The annotation result of this keyword is the set of instance property
262
- * names validated by this keyword's subschema. Annotation results for
263
- * `additionalProperties` keywords from multiple schemas applied to the
264
- * same instance location are combined by taking the union of the sets.
265
- *
266
- * Omitting this keyword has the same assertion behavior as an empty
267
- * schema.
268
- *
269
- * Implementations MAY choose to implement or optimize this keyword in
270
- * another way that produces the same effect, such as by directly checking
271
- * the names in `properties` and the patterns in `patternProperties`
272
- * against the instance property set.
273
- */
274
- additionalProperties?: JSONSchema;
275
- /**
276
- * This keyword's value MUST be a non-empty array. Each item of the array
277
- * MUST be a valid JSON Schema.
278
- *
279
- * An instance validates successfully against this keyword if it validates
280
- * successfully against all schemas defined by this keyword's value.
281
- */
282
- allOf?: MaybeReadonlyArray<JSONSchema<Value, SchemaType>>;
283
- /**
284
- * This keyword's value MUST be a non-empty array. Each item of the array
285
- * MUST be a valid JSON Schema.
286
- *
287
- * An instance validates successfully against this keyword if it validates
288
- * successfully against at least one schema defined by this keyword's
289
- * value.
290
- */
291
- anyOf?: MaybeReadonlyArray<JSONSchema<Value, SchemaType>>;
292
- /**
293
- * An instance validates successfully against this keyword if its value is
294
- * equal to the value of the keyword.
295
- *
296
- * Use of this keyword is functionally equivalent to the `enum` keyword
297
- * with a single value.
298
- */
299
- const?: Value;
300
- /**
301
- * The value of this keyword MUST be a valid JSON Schema.
302
- *
303
- * An array instance is valid against `contains` if at least one of its
304
- * elements is valid against the given schema. The subschema MUST be
305
- * applied to every array element even after the first match has been
306
- * found, in order to collect annotations for use by other keywords.
307
- * This is to ensure that all possible annotations are collected.
308
- *
309
- * Logically, the validation result of applying the value subschema to each
310
- * item in the array MUST be OR'ed with `false`, resulting in an overall
311
- * validation result.
312
- *
313
- * This keyword produces an annotation value which is an array of the
314
- * indexes to which this keyword validates successfully when applying its
315
- * subschema, in ascending order. The value MAY be a boolean `true` if
316
- * the subschema validates successfully when applied to every index of the
317
- * instance. The annotation MUST be present if the instance array to which
318
- * this keyword's schema applies is empty.
319
- */
320
- contains?: JSONSchema<Value, SchemaType>;
321
- /**
322
- * If the instance value is a string, this property defines that the
323
- * string SHOULD be interpreted as binary data and decoded using the
324
- * encoding named by this property. [RFC 2045, Sec 6.1][RFC2045] lists the
325
- * possible values for this property.
326
- *
327
- * The value of this property SHOULD be ignored if the instance described
328
- * is not a string.
329
- *
330
- * If this keyword is absent, but `contentMediaType` is present, this
331
- * indicates that the media type could be encoded into `UTF-8` like any
332
- * other JSON string value, and does not require additional decoding.
333
- *
334
- * The value of this property MUST be a string.
335
- *
336
- * [RFC2045]: https://datatracker.ietf.org/doc/html/rfc2045#section-6.1
337
- */
338
- contentEncoding?: "7bit" | "8bit" | "base64" | "binary" | "ietf-token" | "quoted-printable" | "x-token";
339
- /**
340
- * If the instance is a string, this property indicates the media type
341
- * of the contents of the string. If `contentEncoding` is present,
342
- * this property describes the decoded string.
343
- *
344
- * The value of this property must be a media type, as defined by
345
- * [RFC 2046][RFC2046]. This property defines the media type of instances
346
- * which this schema defines.
347
- *
348
- * The value of this property SHOULD be ignored if the instance described
349
- * is not a string.
350
- *
351
- * If the `contentEncoding` property is not present, but the instance
352
- * value is a string, then the value of this property SHOULD specify a text
353
- * document type, and the character set SHOULD be the character set into
354
- * which the JSON string value was decoded (for which the default is
355
- * Unicode).
356
- *
357
- * [RFC2046]: https://datatracker.ietf.org/doc/html/rfc2046
358
- */
359
- contentMediaType?: string;
360
- /**
361
- * If the instance is a string, and if `contentMediaType` is present,
362
- * this property contains a schema which describes the structure of the
363
- * string.
364
- *
365
- * This keyword MAY be used with any media type that can be mapped into
366
- * JSON Schema's data model.
367
- *
368
- * The value of this property MUST be a valid JSON schema. It SHOULD be
369
- * ignored if `contentMediaType` is not present.
370
- */
371
- contentSchema?: JSONSchema<Value, SchemaType>;
372
- /**
373
- * This keyword can be used to supply a default JSON value associated with
374
- * a particular schema. It is RECOMMENDED that a `default` value be valid
375
- * against the associated schema.
376
- */
377
- default?: Value;
378
- /**
379
- * @deprecated `definitions` has been renamed to `$defs`.
380
- */
381
- definitions?: Record<string, JSONSchema>;
382
- /**
383
- * @deprecated `dependencies` has been split into two keywords:
384
- * `dependentSchemas` and `dependentRequired`.
385
- */
386
- dependencies?: Record<string, MaybeReadonlyArray<string> | JSONSchema>;
387
- /**
388
- * The value of this keyword MUST be an object. Properties in
389
- * this object, if any, MUST be arrays. Elements in each array,
390
- * if any, MUST be strings, and MUST be unique.
391
- *
392
- * This keyword specifies properties that are required if a specific
393
- * other property is present. Their requirement is dependent on the
394
- * presence of the other property.
395
- *
396
- * Validation succeeds if, for each name that appears in both
397
- * the instance and as a name within this keyword's value, every
398
- * item in the corresponding array is also the name of a property
399
- * in the instance.
400
- *
401
- * Omitting this keyword has the same behavior as an empty object.
402
- */
403
- dependentRequired?: Record<string, MaybeReadonlyArray<string>>;
404
- /**
405
- * This keyword specifies subschemas that are evaluated if the instance is
406
- * an object and contains a certain property.
407
- *
408
- * This keyword's value MUST be an object. Each value in the object MUST be
409
- * a valid JSON Schema.
410
- *
411
- * If the object key is a property in the instance, the entire instance
412
- * must validate against the subschema. Its use is dependent on the
413
- * presence of the property.
414
- *
415
- * Omitting this keyword has the same behavior as an empty object.
416
- */
417
- dependentSchemas?: Record<string, JSONSchema>;
418
- /**
419
- * The value of this keyword MUST be a boolean. When multiple occurrences
420
- * of this keyword are applicable to a single sub-instance, applications
421
- * SHOULD consider the instance location to be deprecated if any occurrence
422
- * specifies a `true` value.
423
- *
424
- * If `deprecated` has a value of boolean `true`, it indicates that
425
- * applications SHOULD refrain from usage of the declared property. It MAY
426
- * mean the property is going to be removed in the future.
427
- *
428
- * A root schema containing `deprecated` with a value of `true`
429
- * indicates that the entire resource being described MAY be removed in the
430
- * future.
431
- *
432
- * The `deprecated` keyword applies to each instance location to which
433
- * the schema object containing the keyword successfully applies. This can
434
- * result in scenarios where every array item or object property is
435
- * deprecated even though the containing array or object is not.
436
- *
437
- * Omitting this keyword has the same behavior as a value of `false`.
438
- */
439
- deprecated?: boolean;
440
- /**
441
- * Can be used to decorate a user interface with explanation or information
442
- * about the data produced.
443
- */
444
- description?: string;
445
- /**
446
- * This keyword's value MUST be a valid JSON Schema.
447
- *
448
- * When `if` is present, and the instance fails to validate against its
449
- * subschema, then validation succeeds against this keyword if the instance
450
- * successfully validates against this keyword's subschema.
451
- *
452
- * This keyword has no effect when `if` is absent, or when the instance
453
- * successfully validates against its subschema. Implementations MUST NOT
454
- * evaluate the instance against this keyword, for either validation or
455
- * annotation collection purposes, in such cases.
456
- */
457
- else?: JSONSchema<Value, SchemaType>;
458
- /**
459
- * The value of this keyword MUST be an array. This array SHOULD have at
460
- * least one element. Elements in the array SHOULD be unique.
461
- *
462
- * An instance validates successfully against this keyword if its value is
463
- * equal to one of the elements in this keyword's array value.
464
- *
465
- * Elements in the array might be of any type, including `null`.
466
- */
467
- enum?: MaybeReadonlyArray<Value>;
468
- /**
469
- * The value of this keyword MUST be an array. When multiple occurrences of
470
- * this keyword are applicable to a single sub-instance, implementations
471
- * MUST provide a flat array of all values rather than an array of arrays.
472
- *
473
- * This keyword can be used to provide sample JSON values associated with a
474
- * particular schema, for the purpose of illustrating usage. It is
475
- * RECOMMENDED that these values be valid against the associated schema.
476
- *
477
- * Implementations MAY use the value(s) of `default`, if present, as an
478
- * additional example. If `examples` is absent, `default` MAY still be
479
- * used in this manner.
480
- */
481
- examples?: MaybeReadonlyArray<Value>;
482
- /**
483
- * The value of `exclusiveMaximum` MUST be a number, representing an
484
- * exclusive upper limit for a numeric instance.
485
- *
486
- * If the instance is a number, then the instance is valid only if it has a
487
- * value strictly less than (not equal to) `exclusiveMaximum`.
488
- */
489
- exclusiveMaximum?: number;
490
- /**
491
- * The value of `exclusiveMinimum` MUST be a number, representing an
492
- * exclusive lower limit for a numeric instance.
493
- *
494
- * If the instance is a number, then the instance is valid only if it has a
495
- * value strictly greater than (not equal to) `exclusiveMinimum`.
496
- */
497
- exclusiveMinimum?: number;
498
- /**
499
- * Implementations MAY treat `format` as an assertion in addition to an
500
- * annotation, and attempt to validate the value's conformance to the
501
- * specified semantics.
502
- *
503
- * The value of this keyword is called a format attribute. It MUST be a
504
- * string. A format attribute can generally only validate a given set
505
- * of instance types. If the type of the instance to validate is not in
506
- * this set, validation for this format attribute and instance SHOULD
507
- * succeed. Format attributes are most often applied to strings, but can
508
- * be specified to apply to any type.
509
- *
510
- * Implementations MAY support custom format attributes. Save for agreement
511
- * between parties, schema authors SHALL NOT expect a peer implementation
512
- * to support such custom format attributes. An implementation MUST NOT
513
- * fail validation or cease processing due to an unknown format attribute.
514
- * When treating `format` as an annotation, implementations SHOULD
515
- * collect both known and unknown format attribute values.
516
- */
517
- format?: string;
518
- /**
519
- * This keyword's value MUST be a valid JSON Schema.
520
- *
521
- * This validation outcome of this keyword's subschema has no direct effect
522
- * on the overall validation result. Rather, it controls which of the
523
- * `then` or `else` keywords are evaluated.
524
- *
525
- * Instances that successfully validate against this keyword's subschema
526
- * MUST also be valid against the subschema value of the `then` keyword,
527
- * if present.
528
- *
529
- * Instances that fail to validate against this keyword's subschema MUST
530
- * also be valid against the subschema value of the `else` keyword, if
531
- * present.
532
- *
533
- * If annotations are being collected, they are collected
534
- * from this keyword's subschema in the usual way, including when the
535
- * keyword is present without either `then` or `else`.
536
- */
537
- if?: JSONSchema<Value, SchemaType>;
538
- /**
539
- * The value of `items` MUST be a valid JSON Schema.
540
- *
541
- * This keyword applies its subschema to all instance elements at indexes
542
- * greater than the length of the `prefixItems` array in the same schema
543
- * object, as reported by the annotation result of that `prefixItems`
544
- * keyword. If no such annotation result exists, `items` applies its
545
- * subschema to all instance array elements.
546
- *
547
- * Note that the behavior of `items` without `prefixItems` is identical
548
- * to that of the schema form of `items` in prior drafts.
549
- *
550
- * When `prefixItems` is present, the behavior of `items` is identical
551
- * to the former `additionalItems` keyword.
552
- *
553
- * If the `items` subschema is applied to any positions within the
554
- * instance array, it produces an annotation result of boolean `true`,
555
- * indicating that all remaining array elements have been evaluated against
556
- * this keyword's subschema.
557
- *
558
- * Omitting this keyword has the same assertion behavior as an empty
559
- * schema.
560
- *
561
- * Implementations MAY choose to implement or optimize this keyword
562
- * in another way that produces the same effect, such as by directly
563
- * checking for the presence and size of a `prefixItems` array.
564
- */
565
- items?: JSONSchema;
566
- /**
567
- * The value of this keyword MUST be a non-negative integer.
568
- *
569
- * If `contains` is not present within the same schema object, then this
570
- * keyword has no effect.
571
- *
572
- * An instance array is valid against `maxContains` in two ways,
573
- * depending on the form of the annotation result of an adjacent
574
- * `contains` keyword. The first way is if the annotation result is an
575
- * array and the length of that array is less than or equal to the
576
- * `maxContains` value. The second way is if the annotation result is a
577
- * boolean `true` and the instance array length is less than or equal to
578
- * the `maxContains` value.
579
- */
580
- maxContains?: number;
581
- /**
582
- * The value of `maximum` MUST be a number, representing an inclusive
583
- * upper limit for a numeric instance.
584
- *
585
- * If the instance is a number, then this keyword validates only if the
586
- * instance is less than or exactly equal to `maximum`.
587
- */
588
- maximum?: number;
589
- /**
590
- * The value of this keyword MUST be a non-negative integer.
591
- *
592
- * An array instance is valid against `maxItems` if its size is less
593
- * than, or equal to, the value of this keyword.
594
- *
595
- * @minimum 0
596
- */
597
- maxItems?: number;
598
- /**
599
- * The value of this keyword MUST be a non-negative integer.
600
- *
601
- * A string instance is valid against this keyword if its length is less
602
- * than, or equal to, the value of this keyword.
603
- *
604
- * The length of a string instance is defined as the number of its
605
- * characters as defined by [RFC 8259][RFC8259].
606
- *
607
- * [RFC8259]: https://datatracker.ietf.org/doc/html/rfc8259
608
- *
609
- * @minimum 0
610
- */
611
- maxLength?: number;
612
- /**
613
- * The value of this keyword MUST be a non-negative integer.
614
- *
615
- * An object instance is valid against `maxProperties` if its number of
616
- * `properties` is less than, or equal to, the value of this keyword.
617
- *
618
- * @minimum 0
619
- */
620
- maxProperties?: number;
621
- /**
622
- * The value of this keyword MUST be a non-negative integer.
623
- *
624
- * If `contains` is not present within the same schema object, then this
625
- * keyword has no effect.
626
- *
627
- * An instance array is valid against `minContains` in two ways,
628
- * depending on the form of the annotation result of an adjacent
629
- * `contains` keyword. The first way is if the annotation result is an
630
- * array and the length of that array is greater than or equal to the
631
- * `minContains` value. The second way is if the annotation result is a
632
- * boolean `true` and the instance array length is greater than or equal
633
- * to the `minContains` value.
634
- *
635
- * A value of `0` is allowed, but is only useful for setting a range
636
- * of occurrences from `0` to the value of `maxContains`. A value of
637
- * `0` with no `maxContains` causes `contains` to always pass
638
- * validation.
639
- *
640
- * Omitting this keyword has the same behavior as a value of `1`.
641
- *
642
- * @default 1
643
- */
644
- minContains?: number;
645
- /**
646
- * The value of `minimum` MUST be a number, representing an inclusive
647
- * lower limit for a numeric instance.
648
- *
649
- * If the instance is a number, then this keyword validates only if the
650
- * instance is greater than or exactly equal to `minimum`.
651
- */
652
- minimum?: number;
653
- /**
654
- * The value of this keyword MUST be a non-negative integer.
655
- *
656
- * An array instance is valid against `minItems` if its size is greater
657
- * than, or equal to, the value of this keyword.
658
- *
659
- * Omitting this keyword has the same behavior as a value of `0`.
660
- *
661
- * @default 0
662
- * @minimum 0
663
- */
664
- minItems?: number;
665
- /**
666
- * The value of this keyword MUST be a non-negative integer.
667
- *
668
- * A string instance is valid against this keyword if its length is greater
669
- * than, or equal to, the value of this keyword.
670
- *
671
- * The length of a string instance is defined as the number of its
672
- * characters as defined by [RFC 8259][RFC8259].
673
- *
674
- * Omitting this keyword has the same behavior as a value of `0`.
675
- *
676
- * [RFC8259]: https://datatracker.ietf.org/doc/html/rfc8259
677
- *
678
- * @default 0
679
- * @minimum 0
680
- */
681
- minLength?: number;
682
- /**
683
- * The value of this keyword MUST be a non-negative integer.
684
- *
685
- * An object instance is valid against `minProperties` if its number of
686
- * `properties` is greater than, or equal to, the value of this keyword.
687
- *
688
- * Omitting this keyword has the same behavior as a value of `0`.
689
- *
690
- * @default 0
691
- * @minimum 0
692
- */
693
- minProperties?: number;
694
- /**
695
- * The value of `multipleOf` MUST be a number, strictly greater than
696
- * `0`.
697
- *
698
- * A numeric instance is valid only if division by this keyword's value
699
- * results in an integer.
700
- *
701
- * @exclusiveMinimum 0
702
- */
703
- multipleOf?: number;
704
- /**
705
- * This keyword's value MUST be a valid JSON Schema.
706
- *
707
- * An instance is valid against this keyword if it fails to validate
708
- * successfully against the schema defined by this keyword.
709
- */
710
- not?: JSONSchema<Value, SchemaType>;
711
- /**
712
- * This keyword's value MUST be a non-empty array. Each item of the array
713
- * MUST be a valid JSON Schema.
714
- *
715
- * An instance validates successfully against this keyword if it validates
716
- * successfully against exactly one schema defined by this keyword's value.
717
- */
718
- oneOf?: MaybeReadonlyArray<JSONSchema<Value, SchemaType>>;
719
- /**
720
- * The value of this keyword MUST be a string. This string SHOULD be a
721
- * valid regular expression, according to the [ECMA-262][ecma262] regular
722
- * expression dialect.
723
- *
724
- * A string instance is considered valid if the regular expression matches
725
- * the instance successfully. Recall: regular expressions are not
726
- * implicitly anchored.
727
- *
728
- * [ecma262]: https://www.ecma-international.org/publications-and-standards/standards/ecma-262/
729
- *
730
- * @format "regex"
731
- */
732
- pattern?: string;
733
- /**
734
- * The value of `patternProperties` MUST be an object. Each property name
735
- * of this object SHOULD be a valid regular expression, according to the
736
- * [ECMA-262][ecma262] regular expression dialect. Each property value of
737
- * this object MUST be a valid JSON Schema.
738
- *
739
- * Validation succeeds if, for each instance name that matches any regular
740
- * expressions that appear as a property name in this keyword's value,
741
- * the child instance for that name successfully validates against each
742
- * schema that corresponds to a matching regular expression.
743
- *
744
- * The annotation result of this keyword is the set of instance property
745
- * names matched by this keyword. Omitting this keyword has the same
746
- * assertion behavior as an empty object.
747
- *
748
- * [ecma262]: https://www.ecma-international.org/publications-and-standards/standards/ecma-262/
749
- */
750
- patternProperties?: Record<string, JSONSchema>;
751
- /**
752
- * The value of `prefixItems` MUST be a non-empty array of valid JSON
753
- * Schemas.
754
- *
755
- * Validation succeeds if each element of the instance validates against
756
- * the schema at the same position, if any. This keyword does not
757
- * constrain the length of the array. If the array is longer than this
758
- * keyword's value, this keyword validates only the prefix of matching
759
- * length.
760
- *
761
- * This keyword produces an annotation value which is the largest index to
762
- * which this keyword applied a subschema. The value MAY be a boolean
763
- * `true` if a subschema was applied to every index of the instance, such
764
- * as is produced by the `items` keyword.
765
- * This annotation affects the behavior of `items` and
766
- * `unevaluatedItems`.
767
- *
768
- * Omitting this keyword has the same assertion behavior as an empty array.
769
- */
770
- prefixItems?: MaybeReadonlyArray<JSONSchema> | JSONSchema;
771
- /**
772
- * The value of `properties` MUST be an object. Each value of this object
773
- * MUST be a valid JSON Schema.
774
- *
775
- * Validation succeeds if, for each name that appears in both the instance
776
- * and as a name within this keyword's value, the child instance for that
777
- * name successfully validates against the corresponding schema.
778
- *
779
- * The annotation result of this keyword is the set of instance property
780
- * names matched by this keyword.
781
- *
782
- * Omitting this keyword has the same assertion behavior as an empty
783
- * object.
784
- */
785
- properties?: Record<string, JSONSchema>;
786
- /**
787
- * The value of `propertyNames` MUST be a valid JSON Schema.
788
- *
789
- * If the instance is an object, this keyword validates if every property
790
- * name in the instance validates against the provided schema.
791
- * Note the property name that the schema is testing will always be a
792
- * string.
793
- *
794
- * Omitting this keyword has the same behavior as an empty schema.
795
- */
796
- propertyNames?: JSONSchema;
797
- /**
798
- * The value of this keyword MUST be a boolean. When multiple occurrences
799
- * of this keyword are applicable to a single sub-instance, the resulting
800
- * value MUST be `true` if any occurrence specifies a `true` value, and
801
- * MUST be `false` otherwise.
802
- *
803
- * If `readOnly` has a value of boolean `true`, it indicates that the
804
- * value of the instance is managed exclusively by the owning authority,
805
- * and attempts by an application to modify the value of this property are
806
- * expected to be ignored or rejected by that owning authority.
807
- *
808
- * An instance document that is marked as `readOnly` for the entire
809
- * document MAY be ignored if sent to the owning authority, or MAY result
810
- * in an error, at the authority's discretion.
811
- *
812
- * For example, `readOnly` would be used to mark a database-generated
813
- * serial number as read-only.
814
- *
815
- * This keyword can be used to assist in user interface instance
816
- * generation.
817
- *
818
- * @default false
819
- */
820
- readOnly?: boolean;
821
- /**
822
- * The value of this keyword MUST be an array. Elements of this array, if
823
- * any, MUST be strings, and MUST be unique.
824
- *
825
- * An object instance is valid against this keyword if every item in the
826
- * array is the name of a property in the instance.
827
- *
828
- * Omitting this keyword has the same behavior as an empty array.
829
- */
830
- required?: MaybeReadonlyArray<string>;
831
- /**
832
- * This keyword's value MUST be a valid JSON Schema.
833
- *
834
- * When `if` is present, and the instance successfully validates against
835
- * its subschema, then validation succeeds against this keyword if the
836
- * instance also successfully validates against this keyword's subschema.
837
- *
838
- * This keyword has no effect when `if` is absent, or when the instance
839
- * fails to validate against its subschema. Implementations MUST NOT
840
- * evaluate the instance against this keyword, for either validation or
841
- * annotation collection purposes, in such cases.
842
- */
843
- then?: JSONSchema<Value, SchemaType>;
844
- /**
845
- * Can be used to decorate a user interface with a short label about the
846
- * data produced.
847
- */
848
- title?: string;
849
- /**
850
- * The value of this keyword MUST be either a string or an array. If it is
851
- * an array, elements of the array MUST be strings and MUST be unique.
852
- *
853
- * String values MUST be one of the six primitive types (`"null"`,
854
- * `"boolean"`, `"object"`, `"array"`, `"number"`, or
855
- * `"string"`), or `"integer"` which matches any number with a zero
856
- * fractional part.
857
- *
858
- * An instance validates if and only if the instance is in any of the sets
859
- * listed for this keyword.
860
- */
861
- type?: SchemaType;
862
- /**
863
- * The value of `unevaluatedItems` MUST be a valid JSON Schema.
864
- *
865
- * The behavior of this keyword depends on the annotation results of
866
- * adjacent keywords that apply to the instance location being validated.
867
- * Specifically, the annotations from `prefixItems`, `items`, and
868
- * `contains`, which can come from those keywords when they are adjacent
869
- * to the `unevaluatedItems` keyword. Those three annotations, as well as
870
- * `unevaluatedItems`, can also result from any and all adjacent
871
- * [in-place applicator][in-place-applicator] keywords.
872
- *
873
- * If no relevant annotations are present, the `unevaluatedItems`
874
- * subschema MUST be applied to all locations in the array.
875
- * If a boolean `true` value is present from any of the relevant
876
- * annotations, `unevaluatedItems` MUST be ignored. Otherwise, the
877
- * subschema MUST be applied to any index greater than the largest
878
- * annotation value for `prefixItems`, which does not appear in any
879
- * annotation value for `contains`.
880
- *
881
- * This means that `prefixItems`, `items`, `contains`, and all
882
- * in-place applicators MUST be evaluated before this keyword can be
883
- * evaluated. Authors of extension keywords MUST NOT define an in-place
884
- * applicator that would need to be evaluated after this keyword.
885
- *
886
- * If the `unevaluatedItems` subschema is applied to any positions within
887
- * the instance array, it produces an annotation result of boolean
888
- * `true`, analogous to the behavior of `items`.
889
- *
890
- * Omitting this keyword has the same assertion behavior as an empty
891
- * schema.
892
- *
893
- * [in-place-applicator]: https://json-schema.org/draft/2020-12/json-schema-core.html#in-place
894
- */
895
- unevaluatedItems?: JSONSchema;
896
- /**
897
- * The value of `unevaluatedProperties` MUST be a valid JSON Schema.
898
- *
899
- * The behavior of this keyword depends on the annotation results of
900
- * adjacent keywords that apply to the instance location being validated.
901
- * Specifically, the annotations from `properties`,
902
- * `patternProperties`, and `additionalProperties`, which can come from
903
- * those keywords when they are adjacent to the `unevaluatedProperties`
904
- * keyword. Those three annotations, as well as `unevaluatedProperties`,
905
- * can also result from any and all adjacent
906
- * [in-place applicator][in-place-applicator] keywords.
907
- *
908
- * Validation with `unevaluatedProperties` applies only to the child
909
- * values of instance names that do not appear in the `properties`,
910
- * `patternProperties`, `additionalProperties`, or
911
- * `unevaluatedProperties` annotation results that apply to the
912
- * instance location being validated.
913
- *
914
- * For all such properties, validation succeeds if the child instance
915
- * validates against the "unevaluatedProperties" schema.
916
- *
917
- * This means that `properties`, `patternProperties`,
918
- * `additionalProperties`, and all in-place applicators MUST be evaluated
919
- * before this keyword can be evaluated. Authors of extension keywords
920
- * MUST NOT define an in-place applicator that would need to be evaluated
921
- * after this keyword.
922
- *
923
- * The annotation result of this keyword is the set of instance property
924
- * names validated by this keyword's subschema.
925
- *
926
- * Omitting this keyword has the same assertion behavior as an empty
927
- * schema.
928
- *
929
- * [in-place-applicator]: https://json-schema.org/draft/2020-12/json-schema-core.html#in-place
930
- */
931
- unevaluatedProperties?: JSONSchema;
932
- /**
933
- * The value of this keyword MUST be a boolean.
934
- *
935
- * If this keyword has boolean value `false`, the instance validates
936
- * successfully. If it has boolean value `true`, the instance validates
937
- * successfully if all of its elements are unique.
938
- *
939
- * Omitting this keyword has the same behavior as a value of `false`.
940
- *
941
- * @default false
942
- */
943
- uniqueItems?: boolean;
944
- /**
945
- * The value of this keyword MUST be a boolean. When multiple occurrences
946
- * of this keyword is applicable to a single sub-instance, the resulting
947
- * value MUST be `true` if any occurrence specifies a `true` value, and
948
- * MUST be `false` otherwise.
949
- *
950
- * If `writeOnly` has a value of boolean `true`, it indicates that the
951
- * value is never present when the instance is retrieved from the owning
952
- * authority. It can be present when sent to the owning authority to update
953
- * or create the document (or the resource it represents), but it will not
954
- * be included in any updated or newly created version of the instance.
955
- *
956
- * An instance document that is marked as `writeOnly` for the entire
957
- * document MAY be returned as a blank document of some sort, or MAY
958
- * produce an error upon retrieval, or have the retrieval request ignored,
959
- * at the authority's discretion.
960
- *
961
- * For example, `writeOnly` would be used to mark a password input field.
962
- *
963
- * These keywords can be used to assist in user interface instance
964
- * generation. In particular, an application MAY choose to use a widget
965
- * that hides input values as they are typed for write-only fields.
966
- *
967
- * @default false
968
- */
969
- writeOnly?: boolean;
970
- };
971
- export declare namespace JSONSchema {
972
- type TypeValue = ValueOf<TypeName> | TypeName | Array<ValueOf<TypeName> | TypeName> | ReadonlyArray<ValueOf<TypeName> | TypeName>;
973
- /**
974
- * JSON Schema interface
975
- */
976
- type Interface<Value = any, SchemaType extends TypeValue = TypeValue> = Exclude<JSONSchema<Value, SchemaType>, boolean>;
977
- type Array<T = any> = Pick<Interface<T, "array">, KeywordByType.Any | KeywordByType.Array>;
978
- type Boolean = Pick<Interface<boolean, "boolean">, KeywordByType.Any>;
979
- type Integer = Pick<Interface<number, "integer">, KeywordByType.Any | KeywordByType.Number>;
980
- type Number = Pick<Interface<number, "number">, KeywordByType.Any | KeywordByType.Number>;
981
- type Null = Pick<Interface<null, "null">, KeywordByType.Any>;
982
- type Object<T = any> = Pick<Interface<T, "object">, KeywordByType.Any | KeywordByType.Object>;
983
- type String = Pick<Interface<string, "string">, KeywordByType.Any | KeywordByType.String>;
984
- }
985
- declare namespace KeywordByType {
986
- type Any = "$anchor" | "$comment" | "$defs" | "$dynamicAnchor" | "$dynamicRef" | "$id" | "$ref" | "$schema" | "$vocabulary" | "allOf" | "anyOf" | "const" | "default" | "definitions" | "deprecated" | "description" | "else" | "enum" | "examples" | "format" | "if" | "not" | "oneOf" | "readOnly" | "then" | "title" | "type" | "writeOnly";
987
- type Array = "additionalItems" | "contains" | "items" | "maxContains" | "maxItems" | "minContains" | "minItems" | "prefixItems" | "unevaluatedItems" | "uniqueItems";
988
- type Number = "exclusiveMaximum" | "exclusiveMinimum" | "maximum" | "minimum" | "multipleOf";
989
- type Object = "additionalProperties" | "dependencies" | "dependentRequired" | "dependentSchemas" | "maxProperties" | "minProperties" | "patternProperties" | "properties" | "propertyNames" | "required" | "unevaluatedProperties";
990
- type String = "contentEncoding" | "contentMediaType" | "contentSchema" | "maxLength" | "minLength" | "pattern";
991
- }
992
- /**
993
- * Content encoding strategy enum.
994
- *
995
- * - [Content-Transfer-Encoding Syntax](https://datatracker.ietf.org/doc/html/rfc2045#section-6.1)
996
- * - [7bit vs 8bit encoding](https://stackoverflow.com/questions/25710599/content-transfer-encoding-7bit-or-8-bit/28531705#28531705)
997
- */
998
- export declare enum ContentEncoding {
999
- /**
1000
- * Only US-ASCII characters, which use the lower 7 bits for each character.
1001
- *
1002
- * Each line must be less than 1,000 characters.
1003
- */
1004
- "7bit" = "7bit",
1005
- /**
1006
- * Allow extended ASCII characters which can use the 8th (highest) bit to
1007
- * indicate special characters not available in 7bit.
1008
- *
1009
- * Each line must be less than 1,000 characters.
1010
- */
1011
- "8bit" = "8bit",
1012
- /**
1013
- * Useful for data that is mostly non-text.
1014
- */
1015
- Base64 = "base64",
1016
- /**
1017
- * Same character set as 8bit, with no line length restriction.
1018
- */
1019
- Binary = "binary",
1020
- /**
1021
- * An extension token defined by a standards-track RFC and registered with
1022
- * IANA.
1023
- */
1024
- IETFToken = "ietf-token",
1025
- /**
1026
- * Lines are limited to 76 characters, and line breaks are represented using
1027
- * special characters that are escaped.
1028
- */
1029
- QuotedPrintable = "quoted-printable",
1030
- /**
1031
- * The two characters "X-" or "x-" followed, with no intervening white space,
1032
- * by any token.
1033
- */
1034
- XToken = "x-token"
1035
- }
1036
- /**
1037
- * This enum provides well-known formats that apply to strings.
1038
- */
1039
- export declare enum Format {
1040
- /**
1041
- * A string instance is valid against this attribute if it is a valid
1042
- * representation according to the "full-date" production in
1043
- * [RFC 3339][RFC3339].
1044
- *
1045
- * [RFC3339]: https://datatracker.ietf.org/doc/html/rfc3339
1046
- */
1047
- Date = "date",
1048
- /**
1049
- * A string instance is valid against this attribute if it is a valid
1050
- * representation according to the "date-time" production in
1051
- * [RFC 3339][RFC3339].
1052
- *
1053
- * [RFC3339]: https://datatracker.ietf.org/doc/html/rfc3339
1054
- */
1055
- DateTime = "date-time",
1056
- /**
1057
- * A string instance is valid against this attribute if it is a valid
1058
- * representation according to the "duration" production.
1059
- */
1060
- Duration = "duration",
1061
- /**
1062
- * A string instance is valid against this attribute if it is a valid Internet
1063
- * email address as defined by by the "Mailbox" ABNF rule in [RFC
1064
- * 5321][RFC5322], section 4.1.2.
1065
- *
1066
- * [RFC5321]: https://datatracker.ietf.org/doc/html/rfc5321
1067
- */
1068
- Email = "email",
1069
- /**
1070
- * As defined by [RFC 1123, section 2.1][RFC1123], including host names
1071
- * produced using the Punycode algorithm specified in
1072
- * [RFC 5891, section 4.4][RFC5891].
1073
- *
1074
- * [RFC1123]: https://datatracker.ietf.org/doc/html/rfc1123
1075
- * [RFC5891]: https://datatracker.ietf.org/doc/html/rfc5891
1076
- */
1077
- Hostname = "hostname",
1078
- /**
1079
- * A string instance is valid against this attribute if it is a valid Internet
1080
- * email address as defined by the extended "Mailbox" ABNF rule in
1081
- * [RFC 6531][RFC6531], section 3.3.
1082
- *
1083
- * [RFC6531]: https://datatracker.ietf.org/doc/html/rfc6531
1084
- */
1085
- IDNEmail = "idn-email",
1086
- /**
1087
- * As defined by either [RFC 1123, section 2.1][RFC1123] as for hostname, or
1088
- * an internationalized hostname as defined by
1089
- * [RFC 5890, section 2.3.2.3][RFC5890].
1090
- *
1091
- * [RFC1123]: https://datatracker.ietf.org/doc/html/rfc1123
1092
- * [RFC5890]: https://datatracker.ietf.org/doc/html/rfc5890
1093
- */
1094
- IDNHostname = "idn-hostname",
1095
- /**
1096
- * An IPv4 address according to the "dotted-quad" ABNF syntax as defined in
1097
- * [RFC 2673, section 3.2][RFC2673].
1098
- *
1099
- * [RFC2673]: https://datatracker.ietf.org/doc/html/rfc2673
1100
- */
1101
- IPv4 = "ipv4",
1102
- /**
1103
- * An IPv6 address as defined in [RFC 4291, section 2.2][RFC4291].
1104
- *
1105
- * [RFC4291]: https://datatracker.ietf.org/doc/html/rfc4291
1106
- */
1107
- IPv6 = "ipv6",
1108
- /**
1109
- * A string instance is valid against this attribute if it is a valid IRI,
1110
- * according to [RFC 3987][RFC3987].
1111
- *
1112
- * [RFC3987]: https://datatracker.ietf.org/doc/html/rfc3987
1113
- */
1114
- IRI = "iri",
1115
- /**
1116
- * A string instance is valid against this attribute if it is a valid IRI
1117
- * Reference (either an IRI or a relative-reference), according to
1118
- * [RFC 3987][RFC3987].
1119
- *
1120
- * [RFC3987]: https://datatracker.ietf.org/doc/html/rfc3987
1121
- */
1122
- IRIReference = "iri-reference",
1123
- /**
1124
- * A string instance is valid against this attribute if it is a valid JSON
1125
- * string representation of a JSON Pointer, according to
1126
- * [RFC 6901, section 5][RFC6901].
1127
- *
1128
- * [RFC6901]: https://datatracker.ietf.org/doc/html/rfc6901
1129
- */
1130
- JSONPointer = "json-pointer",
1131
- /**
1132
- * A string instance is valid against this attribute if it is a valid JSON
1133
- * string representation of a JSON Pointer fragment, according to
1134
- * [RFC 6901, section 5][RFC6901].
1135
- *
1136
- * [RFC6901]: https://datatracker.ietf.org/doc/html/rfc6901
1137
- */
1138
- JSONPointerURIFragment = "json-pointer-uri-fragment",
1139
- /**
1140
- * This attribute applies to string instances.
1141
- *
1142
- * A regular expression, which SHOULD be valid according to the
1143
- * [ECMA-262][ecma262] regular expression dialect.
1144
- *
1145
- * Implementations that validate formats MUST accept at least the subset of
1146
- * [ECMA-262][ecma262] defined in the [Regular Expressions][regexInterop]
1147
- * section of this specification, and SHOULD accept all valid
1148
- * [ECMA-262][ecma262] expressions.
1149
- *
1150
- * [ecma262]: https://www.ecma-international.org/publications-and-standards/standards/ecma-262/
1151
- * [regexInterop]: https://json-schema.org/draft/2020-12/json-schema-validation.html#regexInterop
1152
- */
1153
- RegEx = "regex",
1154
- /**
1155
- * A string instance is valid against this attribute if it is a valid
1156
- * [Relative JSON Pointer][relative-json-pointer].
1157
- *
1158
- * [relative-json-pointer]: https://datatracker.ietf.org/doc/html/draft-handrews-relative-json-pointer-01
1159
- */
1160
- RelativeJSONPointer = "relative-json-pointer",
1161
- /**
1162
- * A string instance is valid against this attribute if it is a valid
1163
- * representation according to the "time" production in [RFC 3339][RFC3339].
1164
- *
1165
- * [RFC3339]: https://datatracker.ietf.org/doc/html/rfc3339
1166
- */
1167
- Time = "time",
1168
- /**
1169
- * A string instance is valid against this attribute if it is a valid URI,
1170
- * according to [RFC3986][RFC3986].
1171
- *
1172
- * [RFC3986]: https://datatracker.ietf.org/doc/html/rfc3986
1173
- */
1174
- URI = "uri",
1175
- /**
1176
- * A string instance is valid against this attribute if it is a valid URI
1177
- * Reference (either a URI or a relative-reference), according to
1178
- * [RFC3986][RFC3986].
1179
- *
1180
- * [RFC3986]: https://datatracker.ietf.org/doc/html/rfc3986
1181
- */
1182
- URIReference = "uri-reference",
1183
- /**
1184
- * A string instance is valid against this attribute if it is a valid URI
1185
- * Template (of any level), according to [RFC 6570][RFC6570].
1186
- *
1187
- * Note that URI Templates may be used for IRIs; there is no separate IRI
1188
- * Template specification.
1189
- *
1190
- * [RFC6570]: https://datatracker.ietf.org/doc/html/rfc6570
1191
- */
1192
- URITemplate = "uri-template",
1193
- /**
1194
- * A string instance is valid against this attribute if it is a valid string
1195
- * representation of a UUID, according to [RFC 4122][RFC4122].
1196
- *
1197
- * [RFC4122]: https://datatracker.ietf.org/doc/html/rfc4122
1198
- */
1199
- UUID = "uuid"
1200
- }
1201
- /**
1202
- * Enum consisting of simple type names for the `type` keyword
1203
- */
1204
- export declare enum TypeName {
1205
- /**
1206
- * Value MUST be an array.
1207
- */
1208
- Array = "array",
1209
- /**
1210
- * Value MUST be a boolean.
1211
- */
1212
- Boolean = "boolean",
1213
- /**
1214
- * Value MUST be an integer, no floating point numbers are allowed. This is a
1215
- * subset of the number type.
1216
- */
1217
- Integer = "integer",
1218
- /**
1219
- * Value MUST be null. Note this is mainly for purpose of being able use union
1220
- * types to define nullability. If this type is not included in a union, null
1221
- * values are not allowed (the primitives listed above do not allow nulls on
1222
- * their own).
1223
- */
1224
- Null = "null",
1225
- /**
1226
- * Value MUST be a number, floating point numbers are allowed.
1227
- */
1228
- Number = "number",
1229
- /**
1230
- * Value MUST be an object.
1231
- */
1232
- Object = "object",
1233
- /**
1234
- * Value MUST be a string.
1235
- */
1236
- String = "string"
1237
- }
1238
- export declare const keywords: readonly ["$anchor", "$comment", "$defs", "$dynamicAnchor", "$dynamicRef", "$id", "$ref", "$schema", "$vocabulary", "additionalItems", "additionalProperties", "allOf", "anyOf", "const", "contains", "contentEncoding", "contentMediaType", "contentSchema", "default", "definitions", "dependencies", "dependentRequired", "dependentSchemas", "deprecated", "description", "else", "enum", "examples", "exclusiveMaximum", "exclusiveMinimum", "format", "if", "items", "maxContains", "maximum", "maxItems", "maxLength", "maxProperties", "minContains", "minimum", "minItems", "minLength", "minProperties", "multipleOf", "not", "oneOf", "pattern", "patternProperties", "prefixItems", "properties", "propertyNames", "readOnly", "required", "then", "title", "type", "unevaluatedItems", "unevaluatedProperties", "uniqueItems", "writeOnly"];
1239
- export {};