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.
- package/README.md +156 -248
- package/dist/commands/attach.d.ts.map +1 -1
- package/dist/commands/attach.js +31 -15
- package/dist/commands/attach.js.map +1 -1
- package/dist/commands/dashboard.d.ts.map +1 -1
- package/dist/commands/dashboard.js +117 -18
- package/dist/commands/dashboard.js.map +1 -1
- package/dist/commands/feedback.d.ts.map +1 -1
- package/dist/commands/feedback.js +4 -5
- package/dist/commands/feedback.js.map +1 -1
- package/dist/commands/start.js +11 -14
- package/dist/commands/start.js.map +1 -1
- package/dist/rust-cli.d.ts.map +1 -1
- package/dist/rust-cli.js +48 -0
- package/dist/rust-cli.js.map +1 -1
- package/node_modules/@conductor-oss/core/dist/index.d.ts +1 -26
- package/node_modules/@conductor-oss/core/dist/index.d.ts.map +1 -1
- package/node_modules/@conductor-oss/core/dist/index.js +2 -31
- package/node_modules/@conductor-oss/core/dist/index.js.map +1 -1
- package/package.json +7 -44
- package/web/.next/standalone/packages/web/.next/BUILD_ID +1 -1
- package/web/.next/standalone/packages/web/.next/build-manifest.json +2 -2
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/CLI.js +338 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/Cache.js +208 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/DefaultProvider.js +35 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/DefaultProvider.spec.js +75 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/browser-data.js +235 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chrome-headless-shell.js +47 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chrome.js +296 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chromedriver.js +43 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chromium.js +63 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/firefox.js +374 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/types.js +63 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/debug.js +8 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/detectPlatform.js +47 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/fileUtil.js +156 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/httpUtil.js +132 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/install.js +351 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/launch.js +426 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/main-cli.js +9 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/main.js +15 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/provider.js +13 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/package.json +125 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/package.json +1 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Browser.js +204 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/BrowserContext.js +182 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/CDPSession.js +68 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/DeviceRequestPrompt.js +34 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Dialog.js +90 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/ElementHandle.js +1406 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/ElementHandleSymbol.js +10 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Frame.js +904 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/HTTPRequest.js +461 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/HTTPResponse.js +56 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Input.js +211 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/JSHandle.js +227 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Page.js +1511 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Realm.js +44 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Target.js +49 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/WebWorker.js +106 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/api.js +22 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/locators/locators.js +769 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/bidi/BrowserConnector.js +83 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Accessibility.js +591 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Binding.js +162 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BluetoothEmulation.js +26 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Browser.js +321 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BrowserConnector.js +26 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BrowserContext.js +192 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/CdpPreloadScript.js +39 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/CdpSession.js +129 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Connection.js +244 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Coverage.js +372 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +151 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Dialog.js +23 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ElementHandle.js +206 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/EmulationManager.js +458 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ExecutionContext.js +457 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ExtensionTransport.js +175 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Frame.js +358 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameManager.js +455 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameManagerEvents.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameTree.js +91 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/HTTPRequest.js +195 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/HTTPResponse.js +126 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Input.js +499 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/IsolatedWorld.js +157 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/IsolatedWorlds.js +20 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/JSHandle.js +101 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/LifecycleWatcher.js +174 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/NetworkEventManager.js +162 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/NetworkManager.js +601 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Page.js +1006 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js +69 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Target.js +243 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/TargetManageEvents.js +7 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/TargetManager.js +320 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Tracing.js +110 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/WebWorker.js +73 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/cdp.js +43 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/utils.js +216 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/AriaQueryHandler.js +54 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/BrowserConnector.js +129 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +39 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CSSQueryHandler.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CallbackRegistry.js +133 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/ConsoleMessage.js +78 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CustomQueryHandler.js +114 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Debug.js +109 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Device.js +1604 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Errors.js +94 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/EventEmitter.js +128 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/FileChooser.js +75 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/GetQueryHandler.js +70 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/HandleIterator.js +142 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/LazyArg.js +23 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/NetworkManagerEvents.js +21 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PDFOptions.js +58 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PQueryHandler.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PSelectorParser.js +100 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PierceQueryHandler.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Puppeteer.js +98 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/QueryHandler.js +225 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/ScriptInjector.js +51 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/SecurityDetails.js +69 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TaskQueue.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TextQueryHandler.js +15 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TimeoutSettings.js +39 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/USKeyboardLayout.js +394 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/WaitTask.js +197 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/XPathQueryHandler.js +21 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/common.js +35 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/util.js +375 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/environment.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/generated/injected.js +9 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/index-browser.js +11 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/index.js +8 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/BrowserLauncher.js +312 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/ChromeLauncher.js +258 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/FirefoxLauncher.js +166 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/LaunchOptions.js +22 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/NodeWebSocketTransport.js +55 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/PipeTransport.js +72 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/PuppeteerNode.js +281 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/ScreenRecorder.js +279 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/node.js +12 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/util/fs.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/puppeteer-core.js +41 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/revisions.js +14 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/AsyncIterableUtil.js +29 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Deferred.js +105 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/ErrorLike.js +41 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Function.js +70 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Mutex.js +46 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/assert.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/decorators.js +232 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/disposable.js +342 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/encoding.js +63 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/incremental-id-generator.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/util.js +13 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/version.js +10 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/mitt/mitt.js +44 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/parsel-js/parsel-js.js +196 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/rxjs/rxjs.js +2887 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/package.json +169 -0
- package/web/.next/standalone/packages/web/.next/prerender-manifest.json +3 -3
- package/web/.next/standalone/packages/web/.next/required-server-files.json +3 -17
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.html +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.rsc +4 -4
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_full.segment.rsc +4 -4
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_index.segment.rsc +4 -4
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/api/access/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/access/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/agents/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/agents/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/app-update/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/app-update/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/attachments/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/attachments/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/auth/session/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/auth/session/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/comments/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/comments/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/config/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/config/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/open/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/open/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/events/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/events/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/executor/health/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/executor/health/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/directory/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/directory/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/pick-directory/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/pick-directory/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/repos/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/repos/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/webhook/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/webhook/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/boards/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/boards/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/sessions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/sessions/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/notifications/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/notifications/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/remote-access/route.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/api/remote-access/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/[id]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/[id]/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/actions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/actions/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/archive/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/archive/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/checks/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/checks/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/diff/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/diff/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/stream/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/stream/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feedback/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feedback/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/files/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/files/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/interrupt/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/interrupt/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/keys/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/keys/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/kill/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/kill/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/stream/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/stream/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js +5 -4
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js +5 -4
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js +5 -4
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/restore/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/restore/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/send/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/send/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/spawn/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/spawn/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/branches/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/branches/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page/react-loadable-manifest.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/unlock/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/unlock/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__04942c76._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06a0a55c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0bc13f9b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0e3fd2bf._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__17d710ef._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1898a844._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1e50c065._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__262e987e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2fd3bf3f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30c9c531._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__31053ac2._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__312cf7cb._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3318d8a1._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__33494588._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__34e636e5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3937a996._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3dc4c761._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3e507276._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3e68741b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__446cb0c6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4bcfaef6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4c5f7cab._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4da18faf._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4f2c5fc8._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__520aa408._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__53daf5c6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__540ebc7f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__543bc377._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5612b82a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__59635ca5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5d35c5e5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5df70a62._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__624bcdc9._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__70929198._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__70b5c7bd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__732fc06e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__747e6415._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__797db2d6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7c87a52f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__82e86bb6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ace49d1._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8c576b6a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ee7749b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ef73e8c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__93cc1947._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__93e83d5a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9576223c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__95af98eb._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__98f4a7bd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9940de77._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9a7c9a83._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9bf61231._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a03769bc._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a4b1a94c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a4b8bc9a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a59d62a8._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ad47dd9e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ae73aa49._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b00db558._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b26505fd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b4039db5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b53b70e7._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b716459f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b78e1a05._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ba70a88e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bb2675cd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bc658430._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bcd0c846._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__be233a9f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c0e99d28._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c33e4f89._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c455995a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c999a476._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__cedfefb8._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d4acf424._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d91a7563._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__db8dccdf._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__dda8199c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e385846c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6115e56._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6cfd1ae._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7aaee2d._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7c11007._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e908dd2b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eae97345._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eb6e6bb9._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ed51a16d._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f0ec1021._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f111812f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fbbf4d14._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fd0a681b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fe4c1384._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ff344935._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/_2c837d66._.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__000b8c99._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__29d8d063._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__7829c78d._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__99387ae7._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__b388693f._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__bc9ab6c6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_0e1412de._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_230c0c14._.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_367680b9._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_69e05fca._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_6cfd06c2._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_80efe193._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_b214b154._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_b6d31783._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_c0f0e227._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_f36ddaa9._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_3c8da5a6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_af0671be._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/pages/404.html +1 -1
- package/web/.next/standalone/packages/web/.next/server/pages/500.html +2 -2
- package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.json +8 -8
- package/web/.next/standalone/packages/web/.next/static/chunks/2bc11b604b131190.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/5f2995585c1ac66a.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/64f0033534ca1ad3.css +3 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/7daf09cc7388f426.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/a28bcda8dd6b68ee.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/b31c8692e1da69ef.js +6 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/b6069d0eb07a978f.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/c2caa064748bb0b5.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/c5f8e486166298c2.js +1 -0
- package/web/.next/standalone/packages/web/next.config.ts +3 -17
- package/web/.next/standalone/packages/web/package.json +1 -18
- package/web/.next/standalone/packages/web/server.js +1 -1
- package/web/.next/standalone/packages/web/src/components/layout/Sidebar.tsx +153 -28
- package/web/.next/standalone/packages/web/src/components/sessions/SessionPreview.tsx +77 -2
- package/web/.next/standalone/packages/web/src/components/sessions/SessionRuntimeStatusBar.tsx +75 -19
- package/web/.next/standalone/packages/web/src/lib/devPreviewBrowser.ts +245 -9
- package/web/.next/standalone/packages/web/src/lib/previewSession.test.ts +2 -2
- package/web/.next/standalone/packages/web/src/lib/previewSession.ts +15 -4
- package/web/.next/standalone/packages/web/src/lib/previewTypes.ts +2 -0
- package/web/.next/standalone/packages/web/src/lib/projectConfigSync.ts +38 -74
- package/web/.next/static/chunks/2bc11b604b131190.js +1 -0
- package/web/.next/static/chunks/5f2995585c1ac66a.js +1 -0
- package/web/.next/static/chunks/64f0033534ca1ad3.css +3 -0
- package/web/.next/static/chunks/7daf09cc7388f426.js +1 -0
- package/web/.next/static/chunks/a28bcda8dd6b68ee.js +1 -0
- package/web/.next/static/chunks/b31c8692e1da69ef.js +6 -0
- package/web/.next/static/chunks/b6069d0eb07a978f.js +1 -0
- package/web/.next/static/chunks/c2caa064748bb0b5.js +1 -0
- package/web/.next/static/chunks/c5f8e486166298c2.js +1 -0
- package/dist/services.d.ts +0 -33
- package/dist/services.d.ts.map +0 -1
- package/dist/services.js +0 -111
- package/dist/services.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/agent-names.d.ts +0 -4
- package/node_modules/@conductor-oss/core/dist/agent-names.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/agent-names.js +0 -108
- package/node_modules/@conductor-oss/core/dist/agent-names.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.d.ts +0 -37
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.js +0 -212
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-parser.d.ts +0 -49
- package/node_modules/@conductor-oss/core/dist/board-parser.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-parser.js +0 -241
- package/node_modules/@conductor-oss/core/dist/board-parser.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-watcher.d.ts +0 -62
- package/node_modules/@conductor-oss/core/dist/board-watcher.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-watcher.js +0 -2162
- package/node_modules/@conductor-oss/core/dist/board-watcher.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/config-sync.d.ts +0 -42
- package/node_modules/@conductor-oss/core/dist/config-sync.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/config-sync.js +0 -241
- package/node_modules/@conductor-oss/core/dist/config-sync.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/event-bus.d.ts +0 -49
- package/node_modules/@conductor-oss/core/dist/event-bus.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/event-bus.js +0 -93
- package/node_modules/@conductor-oss/core/dist/event-bus.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.d.ts +0 -24
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.js +0 -787
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/metadata.d.ts +0 -59
- package/node_modules/@conductor-oss/core/dist/metadata.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/metadata.js +0 -385
- package/node_modules/@conductor-oss/core/dist/metadata.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/plugin-registry.d.ts +0 -11
- package/node_modules/@conductor-oss/core/dist/plugin-registry.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/plugin-registry.js +0 -94
- package/node_modules/@conductor-oss/core/dist/plugin-registry.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/prompt-builder.d.ts +0 -37
- package/node_modules/@conductor-oss/core/dist/prompt-builder.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/prompt-builder.js +0 -189
- package/node_modules/@conductor-oss/core/dist/prompt-builder.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/scaffold.d.ts +0 -77
- package/node_modules/@conductor-oss/core/dist/scaffold.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/scaffold.js +0 -173
- package/node_modules/@conductor-oss/core/dist/scaffold.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/session-manager.d.ts +0 -21
- package/node_modules/@conductor-oss/core/dist/session-manager.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/session-manager.js +0 -1714
- package/node_modules/@conductor-oss/core/dist/session-manager.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.d.ts +0 -38
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.js +0 -89
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.d.ts +0 -39
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.js +0 -89
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-amp/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-amp/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-amp/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-ccr/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-ccr/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-ccr/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.d.ts +0 -37
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.js +0 -737
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-claude-code/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.d.ts +0 -30
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.js +0 -709
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-codex/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-cursor-cli/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-cursor-cli/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-cursor-cli/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-droid/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-droid/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-droid/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-gemini/dist/index.d.ts +0 -71
- package/node_modules/@conductor-oss/plugin-agent-gemini/dist/index.js +0 -526
- package/node_modules/@conductor-oss/plugin-agent-gemini/package.json +0 -10
- package/node_modules/@conductor-oss/plugin-agent-github-copilot/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-github-copilot/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-github-copilot/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-opencode/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-opencode/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-opencode/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-qwen-code/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-qwen-code/dist/index.js +0 -202
- package/node_modules/@conductor-oss/plugin-agent-qwen-code/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.d.ts +0 -22
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.js +0 -341
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-mcp-server/package.json +0 -13
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.d.ts +0 -29
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.js +0 -105
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-desktop/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.d.ts +0 -26
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.js +0 -171
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-discord/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.d.ts +0 -24
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.js +0 -187
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-runtime-tmux/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.d.ts +0 -24
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.js +0 -362
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-scm-github/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.d.ts +0 -25
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.js +0 -59
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-terminal-web/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.d.ts +0 -24
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.js +0 -136
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-tracker-github/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.d.ts +0 -28
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.js +0 -605
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-workspace-worktree/package.json +0 -11
- package/node_modules/@hono/node-server/LICENSE +0 -21
- package/node_modules/@hono/node-server/README.md +0 -358
- package/node_modules/@hono/node-server/dist/conninfo.d.mts +0 -10
- package/node_modules/@hono/node-server/dist/conninfo.d.ts +0 -10
- package/node_modules/@hono/node-server/dist/conninfo.js +0 -42
- package/node_modules/@hono/node-server/dist/conninfo.mjs +0 -17
- package/node_modules/@hono/node-server/dist/globals.d.mts +0 -2
- package/node_modules/@hono/node-server/dist/globals.d.ts +0 -2
- package/node_modules/@hono/node-server/dist/globals.js +0 -29
- package/node_modules/@hono/node-server/dist/globals.mjs +0 -5
- package/node_modules/@hono/node-server/dist/index.d.mts +0 -8
- package/node_modules/@hono/node-server/dist/index.d.ts +0 -8
- package/node_modules/@hono/node-server/dist/index.js +0 -632
- package/node_modules/@hono/node-server/dist/index.mjs +0 -592
- package/node_modules/@hono/node-server/dist/listener.d.mts +0 -13
- package/node_modules/@hono/node-server/dist/listener.d.ts +0 -13
- package/node_modules/@hono/node-server/dist/listener.js +0 -600
- package/node_modules/@hono/node-server/dist/listener.mjs +0 -565
- package/node_modules/@hono/node-server/dist/request.d.mts +0 -25
- package/node_modules/@hono/node-server/dist/request.d.ts +0 -25
- package/node_modules/@hono/node-server/dist/request.js +0 -227
- package/node_modules/@hono/node-server/dist/request.mjs +0 -195
- package/node_modules/@hono/node-server/dist/response.d.mts +0 -26
- package/node_modules/@hono/node-server/dist/response.d.ts +0 -26
- package/node_modules/@hono/node-server/dist/response.js +0 -101
- package/node_modules/@hono/node-server/dist/response.mjs +0 -74
- package/node_modules/@hono/node-server/dist/serve-static.d.mts +0 -17
- package/node_modules/@hono/node-server/dist/serve-static.d.ts +0 -17
- package/node_modules/@hono/node-server/dist/serve-static.js +0 -177
- package/node_modules/@hono/node-server/dist/serve-static.mjs +0 -152
- package/node_modules/@hono/node-server/dist/server.d.mts +0 -10
- package/node_modules/@hono/node-server/dist/server.d.ts +0 -10
- package/node_modules/@hono/node-server/dist/server.js +0 -626
- package/node_modules/@hono/node-server/dist/server.mjs +0 -590
- package/node_modules/@hono/node-server/dist/types.d.mts +0 -44
- package/node_modules/@hono/node-server/dist/types.d.ts +0 -44
- package/node_modules/@hono/node-server/dist/types.js +0 -18
- package/node_modules/@hono/node-server/dist/types.mjs +0 -0
- package/node_modules/@hono/node-server/dist/utils/response/constants.d.mts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response/constants.d.ts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response/constants.js +0 -30
- package/node_modules/@hono/node-server/dist/utils/response/constants.mjs +0 -5
- package/node_modules/@hono/node-server/dist/utils/response.d.mts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response.d.ts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response.js +0 -37
- package/node_modules/@hono/node-server/dist/utils/response.mjs +0 -10
- package/node_modules/@hono/node-server/dist/utils.d.mts +0 -9
- package/node_modules/@hono/node-server/dist/utils.d.ts +0 -9
- package/node_modules/@hono/node-server/dist/utils.js +0 -99
- package/node_modules/@hono/node-server/dist/utils.mjs +0 -71
- package/node_modules/@hono/node-server/dist/vercel.d.mts +0 -7
- package/node_modules/@hono/node-server/dist/vercel.d.ts +0 -7
- package/node_modules/@hono/node-server/dist/vercel.js +0 -607
- package/node_modules/@hono/node-server/dist/vercel.mjs +0 -570
- package/node_modules/@hono/node-server/package.json +0 -103
- package/node_modules/@modelcontextprotocol/sdk/LICENSE +0 -21
- package/node_modules/@modelcontextprotocol/sdk/README.md +0 -170
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts +0 -190
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js +0 -299
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts +0 -446
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js +0 -925
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts +0 -588
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js +0 -629
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts +0 -169
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js +0 -252
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts +0 -81
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js +0 -211
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js +0 -199
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts +0 -171
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js +0 -482
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts +0 -17
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js +0 -58
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js +0 -680
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js +0 -134
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js +0 -176
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts +0 -20
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js +0 -70
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js +0 -397
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts +0 -26
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js +0 -857
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js +0 -157
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js +0 -95
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js +0 -168
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts +0 -78
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js +0 -205
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js +0 -460
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js +0 -656
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js +0 -85
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js +0 -171
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts +0 -7
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js +0 -95
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js +0 -49
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js +0 -168
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js +0 -166
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js +0 -750
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js +0 -600
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js +0 -256
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js +0 -107
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js +0 -124
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js +0 -73
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js +0 -69
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts +0 -121
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js +0 -188
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js +0 -39
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts +0 -232
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js +0 -36
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts +0 -170
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js +0 -250
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts +0 -94
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js +0 -251
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js +0 -28
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/package.json +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts +0 -148
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js +0 -202
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js +0 -167
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts +0 -4
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js +0 -21
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js +0 -136
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts +0 -9
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js +0 -21
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts +0 -35
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js +0 -75
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js +0 -71
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts +0 -49
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js +0 -159
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts +0 -101
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js +0 -128
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts +0 -38
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js +0 -48
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js +0 -56
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts +0 -196
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js +0 -444
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts +0 -364
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js +0 -918
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js +0 -80
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts +0 -82
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js +0 -172
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts +0 -28
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js +0 -82
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts +0 -122
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js +0 -165
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts +0 -268
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js +0 -755
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts +0 -84
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js +0 -244
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js +0 -79
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts +0 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js +0 -48
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts +0 -240
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js +0 -224
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js +0 -25
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts +0 -443
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js +0 -1104
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js +0 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js +0 -37
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js +0 -97
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts +0 -89
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js +0 -43
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts +0 -25
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js +0 -243
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts +0 -2299
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js +0 -27
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts +0 -8137
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js +0 -2092
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts +0 -53
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js +0 -94
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js +0 -69
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js +0 -30
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts +0 -190
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js +0 -269
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts +0 -446
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js +0 -900
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts +0 -588
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js +0 -624
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts +0 -169
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js +0 -245
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts +0 -81
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js +0 -206
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js +0 -191
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts +0 -171
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js +0 -477
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts +0 -17
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js +0 -54
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js +0 -678
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js +0 -132
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js +0 -174
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts +0 -20
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js +0 -395
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts +0 -26
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js +0 -855
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js +0 -155
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js +0 -93
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js +0 -166
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts +0 -78
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js +0 -196
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js +0 -458
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js +0 -651
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js +0 -60
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js +0 -146
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts +0 -7
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js +0 -70
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js +0 -143
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js +0 -141
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js +0 -725
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js +0 -598
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js +0 -231
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js +0 -102
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js +0 -122
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js +0 -48
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts +0 -121
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js +0 -184
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js +0 -64
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js +0 -20
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts +0 -232
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts +0 -170
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js +0 -246
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts +0 -94
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js +0 -246
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/package.json +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts +0 -148
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js +0 -180
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js +0 -138
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts +0 -4
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js +0 -15
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js +0 -71
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js +0 -59
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js +0 -107
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts +0 -9
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js +0 -18
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts +0 -35
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js +0 -72
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts +0 -49
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js +0 -155
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts +0 -101
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js +0 -118
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts +0 -38
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js +0 -41
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js +0 -50
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts +0 -196
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js +0 -440
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts +0 -364
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js +0 -913
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js +0 -76
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts +0 -82
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js +0 -165
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts +0 -28
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js +0 -75
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts +0 -122
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js +0 -161
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts +0 -268
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js +0 -751
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts +0 -84
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js +0 -209
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts +0 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js +0 -44
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts +0 -240
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js +0 -198
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js +0 -22
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts +0 -443
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js +0 -1099
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js +0 -92
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts +0 -89
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js +0 -39
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts +0 -25
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js +0 -239
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts +0 -2299
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js +0 -24
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts +0 -8137
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js +0 -2052
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts +0 -53
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js +0 -87
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/package.json +0 -155
- package/node_modules/accepts/HISTORY.md +0 -250
- package/node_modules/accepts/LICENSE +0 -23
- package/node_modules/accepts/README.md +0 -140
- package/node_modules/accepts/index.js +0 -238
- package/node_modules/accepts/package.json +0 -47
- package/node_modules/ajv/.runkit_example.js +0 -23
- package/node_modules/ajv/LICENSE +0 -22
- package/node_modules/ajv/README.md +0 -207
- package/node_modules/ajv/dist/2019.d.ts +0 -19
- package/node_modules/ajv/dist/2019.js +0 -61
- package/node_modules/ajv/dist/2019.js.map +0 -1
- package/node_modules/ajv/dist/2020.d.ts +0 -19
- package/node_modules/ajv/dist/2020.js +0 -55
- package/node_modules/ajv/dist/2020.js.map +0 -1
- package/node_modules/ajv/dist/ajv.d.ts +0 -18
- package/node_modules/ajv/dist/ajv.js +0 -50
- package/node_modules/ajv/dist/ajv.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
- package/node_modules/ajv/dist/compile/codegen/code.js +0 -156
- package/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/index.js +0 -697
- package/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
- package/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
- package/node_modules/ajv/dist/compile/errors.d.ts +0 -13
- package/node_modules/ajv/dist/compile/errors.js +0 -123
- package/node_modules/ajv/dist/compile/errors.js.map +0 -1
- package/node_modules/ajv/dist/compile/index.d.ts +0 -80
- package/node_modules/ajv/dist/compile/index.js +0 -242
- package/node_modules/ajv/dist/compile/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
- package/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/serialize.js +0 -236
- package/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
- package/node_modules/ajv/dist/compile/jtd/types.js +0 -14
- package/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
- package/node_modules/ajv/dist/compile/names.d.ts +0 -20
- package/node_modules/ajv/dist/compile/names.js +0 -28
- package/node_modules/ajv/dist/compile/names.js.map +0 -1
- package/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
- package/node_modules/ajv/dist/compile/ref_error.js +0 -12
- package/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
- package/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
- package/node_modules/ajv/dist/compile/resolve.js +0 -155
- package/node_modules/ajv/dist/compile/resolve.js.map +0 -1
- package/node_modules/ajv/dist/compile/rules.d.ts +0 -28
- package/node_modules/ajv/dist/compile/rules.js +0 -26
- package/node_modules/ajv/dist/compile/rules.js.map +0 -1
- package/node_modules/ajv/dist/compile/util.d.ts +0 -40
- package/node_modules/ajv/dist/compile/util.js +0 -178
- package/node_modules/ajv/dist/compile/util.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
- package/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
- package/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
- package/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
- package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
- package/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
- package/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
- package/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
- package/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
- package/node_modules/ajv/dist/compile/validate/index.js +0 -520
- package/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
- package/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
- package/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
- package/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
- package/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
- package/node_modules/ajv/dist/core.d.ts +0 -174
- package/node_modules/ajv/dist/core.js +0 -618
- package/node_modules/ajv/dist/core.js.map +0 -1
- package/node_modules/ajv/dist/jtd.d.ts +0 -47
- package/node_modules/ajv/dist/jtd.js +0 -72
- package/node_modules/ajv/dist/jtd.js.map +0 -1
- package/node_modules/ajv/dist/refs/data.json +0 -13
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
- package/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
- package/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/equal.js +0 -7
- package/node_modules/ajv/dist/runtime/equal.js.map +0 -1
- package/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
- package/node_modules/ajv/dist/runtime/parseJson.js +0 -185
- package/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
- package/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/quote.js +0 -30
- package/node_modules/ajv/dist/runtime/quote.js.map +0 -1
- package/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/re2.js +0 -6
- package/node_modules/ajv/dist/runtime/re2.js.map +0 -1
- package/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/timestamp.js +0 -42
- package/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
- package/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
- package/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
- package/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/uri.js +0 -6
- package/node_modules/ajv/dist/runtime/uri.js.map +0 -1
- package/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
- package/node_modules/ajv/dist/runtime/validation_error.js +0 -11
- package/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
- package/node_modules/ajv/dist/standalone/index.d.ts +0 -6
- package/node_modules/ajv/dist/standalone/index.js +0 -90
- package/node_modules/ajv/dist/standalone/index.js.map +0 -1
- package/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
- package/node_modules/ajv/dist/standalone/instance.js +0 -35
- package/node_modules/ajv/dist/standalone/instance.js.map +0 -1
- package/node_modules/ajv/dist/types/index.d.ts +0 -183
- package/node_modules/ajv/dist/types/index.js +0 -3
- package/node_modules/ajv/dist/types/index.js.map +0 -1
- package/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
- package/node_modules/ajv/dist/types/json-schema.js +0 -3
- package/node_modules/ajv/dist/types/json-schema.js.map +0 -1
- package/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
- package/node_modules/ajv/dist/types/jtd-schema.js +0 -3
- package/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
- package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
- package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
- package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
- package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
- package/node_modules/ajv/dist/vocabularies/code.js +0 -131
- package/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
- package/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
- package/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
- package/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
- package/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
- package/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/errors.js +0 -3
- package/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
- package/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
- package/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
- package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
- package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
- package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
- package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
- package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
- package/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/next.js +0 -8
- package/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
- package/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
- package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
- package/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
- package/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
- package/node_modules/ajv/lib/2019.ts +0 -81
- package/node_modules/ajv/lib/2020.ts +0 -75
- package/node_modules/ajv/lib/ajv.ts +0 -70
- package/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
- package/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
- package/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
- package/node_modules/ajv/lib/compile/errors.ts +0 -184
- package/node_modules/ajv/lib/compile/index.ts +0 -324
- package/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
- package/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -277
- package/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
- package/node_modules/ajv/lib/compile/names.ts +0 -27
- package/node_modules/ajv/lib/compile/ref_error.ts +0 -13
- package/node_modules/ajv/lib/compile/resolve.ts +0 -149
- package/node_modules/ajv/lib/compile/rules.ts +0 -50
- package/node_modules/ajv/lib/compile/util.ts +0 -213
- package/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
- package/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
- package/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
- package/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
- package/node_modules/ajv/lib/compile/validate/index.ts +0 -582
- package/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
- package/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
- package/node_modules/ajv/lib/core.ts +0 -892
- package/node_modules/ajv/lib/jtd.ts +0 -132
- package/node_modules/ajv/lib/refs/data.json +0 -13
- package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
- package/node_modules/ajv/lib/runtime/equal.ts +0 -7
- package/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
- package/node_modules/ajv/lib/runtime/quote.ts +0 -31
- package/node_modules/ajv/lib/runtime/re2.ts +0 -6
- package/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
- package/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
- package/node_modules/ajv/lib/runtime/uri.ts +0 -6
- package/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
- package/node_modules/ajv/lib/standalone/index.ts +0 -100
- package/node_modules/ajv/lib/standalone/instance.ts +0 -36
- package/node_modules/ajv/lib/types/index.ts +0 -244
- package/node_modules/ajv/lib/types/json-schema.ts +0 -187
- package/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
- package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
- package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
- package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
- package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
- package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
- package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
- package/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
- package/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
- package/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
- package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
- package/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
- package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
- package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
- package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
- package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
- package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
- package/node_modules/ajv/lib/vocabularies/code.ts +0 -168
- package/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
- package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
- package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
- package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
- package/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
- package/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
- package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
- package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
- package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
- package/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
- package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
- package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
- package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
- package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
- package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
- package/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
- package/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
- package/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/next.ts +0 -8
- package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
- package/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
- package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
- package/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
- package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
- package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
- package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
- package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -39
- package/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
- package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
- package/node_modules/ajv/package.json +0 -127
- package/node_modules/ajv-formats/LICENSE +0 -21
- package/node_modules/ajv-formats/README.md +0 -125
- package/node_modules/ajv-formats/dist/formats.d.ts +0 -9
- package/node_modules/ajv-formats/dist/formats.js +0 -208
- package/node_modules/ajv-formats/dist/formats.js.map +0 -1
- package/node_modules/ajv-formats/dist/index.d.ts +0 -15
- package/node_modules/ajv-formats/dist/index.js +0 -37
- package/node_modules/ajv-formats/dist/index.js.map +0 -1
- package/node_modules/ajv-formats/dist/limit.d.ts +0 -10
- package/node_modules/ajv-formats/dist/limit.js +0 -69
- package/node_modules/ajv-formats/dist/limit.js.map +0 -1
- package/node_modules/ajv-formats/package.json +0 -74
- package/node_modules/ajv-formats/src/formats.ts +0 -269
- package/node_modules/ajv-formats/src/index.ts +0 -62
- package/node_modules/ajv-formats/src/limit.ts +0 -99
- package/node_modules/body-parser/LICENSE +0 -23
- package/node_modules/body-parser/README.md +0 -494
- package/node_modules/body-parser/index.js +0 -71
- package/node_modules/body-parser/lib/read.js +0 -247
- package/node_modules/body-parser/lib/types/json.js +0 -158
- package/node_modules/body-parser/lib/types/raw.js +0 -42
- package/node_modules/body-parser/lib/types/text.js +0 -36
- package/node_modules/body-parser/lib/types/urlencoded.js +0 -142
- package/node_modules/body-parser/lib/utils.js +0 -98
- package/node_modules/body-parser/package.json +0 -52
- package/node_modules/bytes/History.md +0 -97
- package/node_modules/bytes/LICENSE +0 -23
- package/node_modules/bytes/Readme.md +0 -152
- package/node_modules/bytes/index.js +0 -170
- package/node_modules/bytes/package.json +0 -42
- package/node_modules/call-bind-apply-helpers/.eslintrc +0 -17
- package/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +0 -12
- package/node_modules/call-bind-apply-helpers/.nycrc +0 -9
- package/node_modules/call-bind-apply-helpers/CHANGELOG.md +0 -30
- package/node_modules/call-bind-apply-helpers/LICENSE +0 -21
- package/node_modules/call-bind-apply-helpers/README.md +0 -62
- package/node_modules/call-bind-apply-helpers/actualApply.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/actualApply.js +0 -10
- package/node_modules/call-bind-apply-helpers/applyBind.d.ts +0 -19
- package/node_modules/call-bind-apply-helpers/applyBind.js +0 -10
- package/node_modules/call-bind-apply-helpers/functionApply.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/functionApply.js +0 -4
- package/node_modules/call-bind-apply-helpers/functionCall.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/functionCall.js +0 -4
- package/node_modules/call-bind-apply-helpers/index.d.ts +0 -64
- package/node_modules/call-bind-apply-helpers/index.js +0 -15
- package/node_modules/call-bind-apply-helpers/package.json +0 -85
- package/node_modules/call-bind-apply-helpers/reflectApply.d.ts +0 -3
- package/node_modules/call-bind-apply-helpers/reflectApply.js +0 -4
- package/node_modules/call-bind-apply-helpers/test/index.js +0 -63
- package/node_modules/call-bind-apply-helpers/tsconfig.json +0 -9
- package/node_modules/call-bound/.eslintrc +0 -13
- package/node_modules/call-bound/.github/FUNDING.yml +0 -12
- package/node_modules/call-bound/.nycrc +0 -9
- package/node_modules/call-bound/CHANGELOG.md +0 -42
- package/node_modules/call-bound/LICENSE +0 -21
- package/node_modules/call-bound/README.md +0 -53
- package/node_modules/call-bound/index.d.ts +0 -94
- package/node_modules/call-bound/index.js +0 -19
- package/node_modules/call-bound/package.json +0 -99
- package/node_modules/call-bound/test/index.js +0 -61
- package/node_modules/call-bound/tsconfig.json +0 -10
- package/node_modules/content-disposition/HISTORY.md +0 -72
- package/node_modules/content-disposition/LICENSE +0 -22
- package/node_modules/content-disposition/README.md +0 -142
- package/node_modules/content-disposition/index.js +0 -458
- package/node_modules/content-disposition/package.json +0 -43
- package/node_modules/content-type/HISTORY.md +0 -29
- package/node_modules/content-type/LICENSE +0 -22
- package/node_modules/content-type/README.md +0 -94
- package/node_modules/content-type/index.js +0 -225
- package/node_modules/content-type/package.json +0 -42
- package/node_modules/cookie/LICENSE +0 -24
- package/node_modules/cookie/README.md +0 -317
- package/node_modules/cookie/SECURITY.md +0 -25
- package/node_modules/cookie/index.js +0 -335
- package/node_modules/cookie/package.json +0 -44
- package/node_modules/cookie-signature/History.md +0 -70
- package/node_modules/cookie-signature/LICENSE +0 -22
- package/node_modules/cookie-signature/Readme.md +0 -23
- package/node_modules/cookie-signature/index.js +0 -47
- package/node_modules/cookie-signature/package.json +0 -24
- package/node_modules/cors/LICENSE +0 -22
- package/node_modules/cors/README.md +0 -277
- package/node_modules/cors/lib/index.js +0 -238
- package/node_modules/cors/package.json +0 -42
- package/node_modules/cross-spawn/LICENSE +0 -21
- package/node_modules/cross-spawn/README.md +0 -89
- package/node_modules/cross-spawn/index.js +0 -39
- package/node_modules/cross-spawn/lib/enoent.js +0 -59
- package/node_modules/cross-spawn/lib/parse.js +0 -91
- package/node_modules/cross-spawn/lib/util/escape.js +0 -47
- package/node_modules/cross-spawn/lib/util/readShebang.js +0 -23
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -52
- package/node_modules/cross-spawn/package.json +0 -73
- package/node_modules/debug/LICENSE +0 -20
- package/node_modules/debug/README.md +0 -481
- package/node_modules/debug/package.json +0 -64
- package/node_modules/debug/src/browser.js +0 -272
- package/node_modules/debug/src/common.js +0 -292
- package/node_modules/debug/src/index.js +0 -10
- package/node_modules/debug/src/node.js +0 -263
- package/node_modules/depd/History.md +0 -103
- package/node_modules/depd/LICENSE +0 -22
- package/node_modules/depd/Readme.md +0 -280
- package/node_modules/depd/index.js +0 -538
- package/node_modules/depd/lib/browser/index.js +0 -77
- package/node_modules/depd/package.json +0 -45
- package/node_modules/dunder-proto/.eslintrc +0 -5
- package/node_modules/dunder-proto/.github/FUNDING.yml +0 -12
- package/node_modules/dunder-proto/.nycrc +0 -13
- package/node_modules/dunder-proto/CHANGELOG.md +0 -24
- package/node_modules/dunder-proto/LICENSE +0 -21
- package/node_modules/dunder-proto/README.md +0 -54
- package/node_modules/dunder-proto/get.d.ts +0 -5
- package/node_modules/dunder-proto/get.js +0 -30
- package/node_modules/dunder-proto/package.json +0 -76
- package/node_modules/dunder-proto/set.d.ts +0 -5
- package/node_modules/dunder-proto/set.js +0 -35
- package/node_modules/dunder-proto/test/get.js +0 -34
- package/node_modules/dunder-proto/test/index.js +0 -4
- package/node_modules/dunder-proto/test/set.js +0 -50
- package/node_modules/dunder-proto/tsconfig.json +0 -9
- package/node_modules/ee-first/LICENSE +0 -22
- package/node_modules/ee-first/README.md +0 -80
- package/node_modules/ee-first/index.js +0 -95
- package/node_modules/ee-first/package.json +0 -29
- package/node_modules/encodeurl/LICENSE +0 -22
- package/node_modules/encodeurl/README.md +0 -109
- package/node_modules/encodeurl/index.js +0 -60
- package/node_modules/encodeurl/package.json +0 -40
- package/node_modules/es-define-property/.eslintrc +0 -13
- package/node_modules/es-define-property/.github/FUNDING.yml +0 -12
- package/node_modules/es-define-property/.nycrc +0 -9
- package/node_modules/es-define-property/CHANGELOG.md +0 -29
- package/node_modules/es-define-property/LICENSE +0 -21
- package/node_modules/es-define-property/README.md +0 -49
- package/node_modules/es-define-property/index.d.ts +0 -3
- package/node_modules/es-define-property/index.js +0 -14
- package/node_modules/es-define-property/package.json +0 -81
- package/node_modules/es-define-property/test/index.js +0 -56
- package/node_modules/es-define-property/tsconfig.json +0 -10
- package/node_modules/es-errors/.eslintrc +0 -5
- package/node_modules/es-errors/.github/FUNDING.yml +0 -12
- package/node_modules/es-errors/CHANGELOG.md +0 -40
- package/node_modules/es-errors/LICENSE +0 -21
- package/node_modules/es-errors/README.md +0 -55
- package/node_modules/es-errors/eval.d.ts +0 -3
- package/node_modules/es-errors/eval.js +0 -4
- package/node_modules/es-errors/index.d.ts +0 -3
- package/node_modules/es-errors/index.js +0 -4
- package/node_modules/es-errors/package.json +0 -80
- package/node_modules/es-errors/range.d.ts +0 -3
- package/node_modules/es-errors/range.js +0 -4
- package/node_modules/es-errors/ref.d.ts +0 -3
- package/node_modules/es-errors/ref.js +0 -4
- package/node_modules/es-errors/syntax.d.ts +0 -3
- package/node_modules/es-errors/syntax.js +0 -4
- package/node_modules/es-errors/test/index.js +0 -19
- package/node_modules/es-errors/tsconfig.json +0 -49
- package/node_modules/es-errors/type.d.ts +0 -3
- package/node_modules/es-errors/type.js +0 -4
- package/node_modules/es-errors/uri.d.ts +0 -3
- package/node_modules/es-errors/uri.js +0 -4
- package/node_modules/es-object-atoms/.eslintrc +0 -16
- package/node_modules/es-object-atoms/.github/FUNDING.yml +0 -12
- package/node_modules/es-object-atoms/CHANGELOG.md +0 -37
- package/node_modules/es-object-atoms/LICENSE +0 -21
- package/node_modules/es-object-atoms/README.md +0 -63
- package/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +0 -3
- package/node_modules/es-object-atoms/RequireObjectCoercible.js +0 -11
- package/node_modules/es-object-atoms/ToObject.d.ts +0 -7
- package/node_modules/es-object-atoms/ToObject.js +0 -10
- package/node_modules/es-object-atoms/index.d.ts +0 -3
- package/node_modules/es-object-atoms/index.js +0 -4
- package/node_modules/es-object-atoms/isObject.d.ts +0 -3
- package/node_modules/es-object-atoms/isObject.js +0 -6
- package/node_modules/es-object-atoms/package.json +0 -80
- package/node_modules/es-object-atoms/test/index.js +0 -38
- package/node_modules/es-object-atoms/tsconfig.json +0 -6
- package/node_modules/escape-html/LICENSE +0 -24
- package/node_modules/escape-html/Readme.md +0 -43
- package/node_modules/escape-html/index.js +0 -78
- package/node_modules/escape-html/package.json +0 -24
- package/node_modules/etag/HISTORY.md +0 -83
- package/node_modules/etag/LICENSE +0 -22
- package/node_modules/etag/README.md +0 -159
- package/node_modules/etag/index.js +0 -131
- package/node_modules/etag/package.json +0 -47
- package/node_modules/eventsource/LICENSE +0 -22
- package/node_modules/eventsource/README.md +0 -167
- package/node_modules/eventsource/dist/index.cjs +0 -273
- package/node_modules/eventsource/dist/index.cjs.map +0 -1
- package/node_modules/eventsource/dist/index.d.cts +0 -332
- package/node_modules/eventsource/dist/index.d.ts +0 -332
- package/node_modules/eventsource/dist/index.js +0 -273
- package/node_modules/eventsource/dist/index.js.map +0 -1
- package/node_modules/eventsource/package.json +0 -130
- package/node_modules/eventsource/src/EventSource.ts +0 -596
- package/node_modules/eventsource/src/errors.ts +0 -141
- package/node_modules/eventsource/src/index.ts +0 -3
- package/node_modules/eventsource/src/types.ts +0 -152
- package/node_modules/eventsource-parser/LICENSE +0 -21
- package/node_modules/eventsource-parser/README.md +0 -126
- package/node_modules/eventsource-parser/dist/index.cjs +0 -106
- package/node_modules/eventsource-parser/dist/index.cjs.map +0 -1
- package/node_modules/eventsource-parser/dist/index.d.cts +0 -144
- package/node_modules/eventsource-parser/dist/index.d.ts +0 -144
- package/node_modules/eventsource-parser/dist/index.js +0 -106
- package/node_modules/eventsource-parser/dist/index.js.map +0 -1
- package/node_modules/eventsource-parser/dist/stream.cjs +0 -28
- package/node_modules/eventsource-parser/dist/stream.cjs.map +0 -1
- package/node_modules/eventsource-parser/dist/stream.d.cts +0 -118
- package/node_modules/eventsource-parser/dist/stream.d.ts +0 -118
- package/node_modules/eventsource-parser/dist/stream.js +0 -29
- package/node_modules/eventsource-parser/dist/stream.js.map +0 -1
- package/node_modules/eventsource-parser/package.json +0 -115
- package/node_modules/eventsource-parser/src/errors.ts +0 -44
- package/node_modules/eventsource-parser/src/index.ts +0 -3
- package/node_modules/eventsource-parser/src/parse.ts +0 -232
- package/node_modules/eventsource-parser/src/stream.ts +0 -88
- package/node_modules/eventsource-parser/src/types.ts +0 -97
- package/node_modules/eventsource-parser/stream.js +0 -2
- package/node_modules/express/LICENSE +0 -24
- package/node_modules/express/Readme.md +0 -276
- package/node_modules/express/index.js +0 -11
- package/node_modules/express/lib/application.js +0 -631
- package/node_modules/express/lib/express.js +0 -81
- package/node_modules/express/lib/request.js +0 -514
- package/node_modules/express/lib/response.js +0 -1053
- package/node_modules/express/lib/utils.js +0 -271
- package/node_modules/express/lib/view.js +0 -205
- package/node_modules/express/package.json +0 -99
- package/node_modules/express-rate-limit/dist/index.cjs +0 -964
- package/node_modules/express-rate-limit/dist/index.d.cts +0 -642
- package/node_modules/express-rate-limit/dist/index.d.mts +0 -642
- package/node_modules/express-rate-limit/dist/index.d.ts +0 -642
- package/node_modules/express-rate-limit/dist/index.mjs +0 -934
- package/node_modules/express-rate-limit/license.md +0 -20
- package/node_modules/express-rate-limit/package.json +0 -112
- package/node_modules/express-rate-limit/readme.md +0 -151
- package/node_modules/express-rate-limit/tsconfig.json +0 -8
- package/node_modules/fast-deep-equal/LICENSE +0 -21
- package/node_modules/fast-deep-equal/README.md +0 -96
- package/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/index.js +0 -72
- package/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/react.js +0 -79
- package/node_modules/fast-deep-equal/index.d.ts +0 -4
- package/node_modules/fast-deep-equal/index.js +0 -46
- package/node_modules/fast-deep-equal/package.json +0 -61
- package/node_modules/fast-deep-equal/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/react.js +0 -53
- package/node_modules/fast-uri/.gitattributes +0 -2
- package/node_modules/fast-uri/.github/.stale.yml +0 -21
- package/node_modules/fast-uri/.github/dependabot.yml +0 -13
- package/node_modules/fast-uri/.github/tests_checker.yml +0 -8
- package/node_modules/fast-uri/.github/workflows/ci.yml +0 -101
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +0 -24
- package/node_modules/fast-uri/LICENSE +0 -32
- package/node_modules/fast-uri/README.md +0 -143
- package/node_modules/fast-uri/benchmark/benchmark.mjs +0 -159
- package/node_modules/fast-uri/benchmark/equal.mjs +0 -51
- package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +0 -22
- package/node_modules/fast-uri/benchmark/package.json +0 -17
- package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +0 -24
- package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +0 -65
- package/node_modules/fast-uri/eslint.config.js +0 -6
- package/node_modules/fast-uri/index.js +0 -340
- package/node_modules/fast-uri/lib/schemes.js +0 -267
- package/node_modules/fast-uri/lib/utils.js +0 -336
- package/node_modules/fast-uri/package.json +0 -69
- package/node_modules/fast-uri/test/ajv.test.js +0 -43
- package/node_modules/fast-uri/test/equal.test.js +0 -108
- package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +0 -501
- package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +0 -120
- package/node_modules/fast-uri/test/parse.test.js +0 -318
- package/node_modules/fast-uri/test/resolve.test.js +0 -78
- package/node_modules/fast-uri/test/rfc-3986.test.js +0 -90
- package/node_modules/fast-uri/test/serialize.test.js +0 -151
- package/node_modules/fast-uri/test/uri-js-compatibility.test.js +0 -33
- package/node_modules/fast-uri/test/uri-js.test.js +0 -912
- package/node_modules/fast-uri/test/util.test.js +0 -38
- package/node_modules/fast-uri/tsconfig.json +0 -9
- package/node_modules/fast-uri/types/index.d.ts +0 -60
- package/node_modules/fast-uri/types/index.test-d.ts +0 -17
- package/node_modules/finalhandler/HISTORY.md +0 -239
- package/node_modules/finalhandler/LICENSE +0 -22
- package/node_modules/finalhandler/README.md +0 -150
- package/node_modules/finalhandler/index.js +0 -293
- package/node_modules/finalhandler/package.json +0 -47
- package/node_modules/forwarded/HISTORY.md +0 -21
- package/node_modules/forwarded/LICENSE +0 -22
- package/node_modules/forwarded/README.md +0 -57
- package/node_modules/forwarded/index.js +0 -90
- package/node_modules/forwarded/package.json +0 -45
- package/node_modules/fresh/HISTORY.md +0 -80
- package/node_modules/fresh/LICENSE +0 -23
- package/node_modules/fresh/README.md +0 -117
- package/node_modules/fresh/index.js +0 -136
- package/node_modules/fresh/package.json +0 -46
- package/node_modules/function-bind/.eslintrc +0 -21
- package/node_modules/function-bind/.github/FUNDING.yml +0 -12
- package/node_modules/function-bind/.github/SECURITY.md +0 -3
- package/node_modules/function-bind/.nycrc +0 -13
- package/node_modules/function-bind/CHANGELOG.md +0 -136
- package/node_modules/function-bind/LICENSE +0 -20
- package/node_modules/function-bind/README.md +0 -46
- package/node_modules/function-bind/implementation.js +0 -84
- package/node_modules/function-bind/index.js +0 -5
- package/node_modules/function-bind/package.json +0 -87
- package/node_modules/function-bind/test/.eslintrc +0 -9
- package/node_modules/function-bind/test/index.js +0 -252
- package/node_modules/get-intrinsic/.eslintrc +0 -42
- package/node_modules/get-intrinsic/.github/FUNDING.yml +0 -12
- package/node_modules/get-intrinsic/.nycrc +0 -9
- package/node_modules/get-intrinsic/CHANGELOG.md +0 -186
- package/node_modules/get-intrinsic/LICENSE +0 -21
- package/node_modules/get-intrinsic/README.md +0 -71
- package/node_modules/get-intrinsic/index.js +0 -378
- package/node_modules/get-intrinsic/package.json +0 -97
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +0 -274
- package/node_modules/get-proto/.eslintrc +0 -10
- package/node_modules/get-proto/.github/FUNDING.yml +0 -12
- package/node_modules/get-proto/.nycrc +0 -9
- package/node_modules/get-proto/CHANGELOG.md +0 -21
- package/node_modules/get-proto/LICENSE +0 -21
- package/node_modules/get-proto/Object.getPrototypeOf.d.ts +0 -5
- package/node_modules/get-proto/Object.getPrototypeOf.js +0 -6
- package/node_modules/get-proto/README.md +0 -50
- package/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +0 -3
- package/node_modules/get-proto/Reflect.getPrototypeOf.js +0 -4
- package/node_modules/get-proto/index.d.ts +0 -5
- package/node_modules/get-proto/index.js +0 -27
- package/node_modules/get-proto/package.json +0 -81
- package/node_modules/get-proto/test/index.js +0 -68
- package/node_modules/get-proto/tsconfig.json +0 -9
- package/node_modules/gopd/.eslintrc +0 -16
- package/node_modules/gopd/.github/FUNDING.yml +0 -12
- package/node_modules/gopd/CHANGELOG.md +0 -45
- package/node_modules/gopd/LICENSE +0 -21
- package/node_modules/gopd/README.md +0 -40
- package/node_modules/gopd/gOPD.d.ts +0 -1
- package/node_modules/gopd/gOPD.js +0 -4
- package/node_modules/gopd/index.d.ts +0 -5
- package/node_modules/gopd/index.js +0 -15
- package/node_modules/gopd/package.json +0 -77
- package/node_modules/gopd/test/index.js +0 -36
- package/node_modules/gopd/tsconfig.json +0 -9
- package/node_modules/has-symbols/.eslintrc +0 -11
- package/node_modules/has-symbols/.github/FUNDING.yml +0 -12
- package/node_modules/has-symbols/.nycrc +0 -9
- package/node_modules/has-symbols/CHANGELOG.md +0 -91
- package/node_modules/has-symbols/LICENSE +0 -21
- package/node_modules/has-symbols/README.md +0 -46
- package/node_modules/has-symbols/index.d.ts +0 -3
- package/node_modules/has-symbols/index.js +0 -14
- package/node_modules/has-symbols/package.json +0 -111
- package/node_modules/has-symbols/shams.d.ts +0 -3
- package/node_modules/has-symbols/shams.js +0 -45
- package/node_modules/has-symbols/test/index.js +0 -22
- package/node_modules/has-symbols/test/shams/core-js.js +0 -29
- package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +0 -29
- package/node_modules/has-symbols/test/tests.js +0 -58
- package/node_modules/has-symbols/tsconfig.json +0 -10
- package/node_modules/hasown/.eslintrc +0 -5
- package/node_modules/hasown/.github/FUNDING.yml +0 -12
- package/node_modules/hasown/.nycrc +0 -13
- package/node_modules/hasown/CHANGELOG.md +0 -40
- package/node_modules/hasown/LICENSE +0 -21
- package/node_modules/hasown/README.md +0 -40
- package/node_modules/hasown/index.d.ts +0 -3
- package/node_modules/hasown/index.js +0 -8
- package/node_modules/hasown/package.json +0 -92
- package/node_modules/hasown/tsconfig.json +0 -6
- package/node_modules/hono/LICENSE +0 -21
- package/node_modules/hono/README.md +0 -85
- package/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +0 -24
- package/node_modules/hono/dist/adapter/aws-lambda/handler.js +0 -366
- package/node_modules/hono/dist/adapter/aws-lambda/index.js +0 -9
- package/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/node_modules/hono/dist/adapter/bun/conninfo.js +0 -27
- package/node_modules/hono/dist/adapter/bun/index.js +0 -16
- package/node_modules/hono/dist/adapter/bun/serve-static.js +0 -30
- package/node_modules/hono/dist/adapter/bun/server.js +0 -5
- package/node_modules/hono/dist/adapter/bun/ssg.js +0 -17
- package/node_modules/hono/dist/adapter/bun/websocket.js +0 -71
- package/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +0 -67
- package/node_modules/hono/dist/adapter/cloudflare-pages/index.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-workers/index.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +0 -8
- package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +0 -22
- package/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +0 -35
- package/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +0 -41
- package/node_modules/hono/dist/adapter/deno/conninfo.js +0 -14
- package/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/node_modules/hono/dist/adapter/deno/index.js +0 -12
- package/node_modules/hono/dist/adapter/deno/serve-static.js +0 -40
- package/node_modules/hono/dist/adapter/deno/ssg.js +0 -18
- package/node_modules/hono/dist/adapter/deno/websocket.js +0 -28
- package/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/lambda-edge/handler.js +0 -79
- package/node_modules/hono/dist/adapter/lambda-edge/index.js +0 -7
- package/node_modules/hono/dist/adapter/netlify/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/netlify/handler.js +0 -9
- package/node_modules/hono/dist/adapter/netlify/index.js +0 -2
- package/node_modules/hono/dist/adapter/netlify/mod.js +0 -7
- package/node_modules/hono/dist/adapter/service-worker/handler.js +0 -20
- package/node_modules/hono/dist/adapter/service-worker/index.js +0 -11
- package/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/node_modules/hono/dist/adapter/vercel/conninfo.js +0 -10
- package/node_modules/hono/dist/adapter/vercel/handler.js +0 -7
- package/node_modules/hono/dist/adapter/vercel/index.js +0 -7
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +0 -47
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +0 -398
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +0 -35
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +0 -16
- package/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +0 -50
- package/node_modules/hono/dist/cjs/adapter/bun/index.js +0 -46
- package/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +0 -53
- package/node_modules/hono/dist/cjs/adapter/bun/server.js +0 -28
- package/node_modules/hono/dist/cjs/adapter/bun/ssg.js +0 -41
- package/node_modules/hono/dist/cjs/adapter/bun/websocket.js +0 -97
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +0 -92
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +0 -35
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +0 -34
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +0 -31
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +0 -45
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +0 -58
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +0 -64
- package/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +0 -37
- package/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -1
- package/node_modules/hono/dist/cjs/adapter/deno/index.js +0 -39
- package/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +0 -63
- package/node_modules/hono/dist/cjs/adapter/deno/ssg.js +0 -42
- package/node_modules/hono/dist/cjs/adapter/deno/websocket.js +0 -51
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +0 -114
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +0 -31
- package/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/netlify/handler.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/netlify/index.js +0 -22
- package/node_modules/hono/dist/cjs/adapter/netlify/mod.js +0 -31
- package/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +0 -43
- package/node_modules/hono/dist/cjs/adapter/service-worker/index.js +0 -35
- package/node_modules/hono/dist/cjs/adapter/service-worker/types.js +0 -16
- package/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +0 -33
- package/node_modules/hono/dist/cjs/adapter/vercel/handler.js +0 -30
- package/node_modules/hono/dist/cjs/adapter/vercel/index.js +0 -31
- package/node_modules/hono/dist/cjs/client/client.js +0 -196
- package/node_modules/hono/dist/cjs/client/fetch-result-please.js +0 -86
- package/node_modules/hono/dist/cjs/client/index.js +0 -33
- package/node_modules/hono/dist/cjs/client/types.js +0 -16
- package/node_modules/hono/dist/cjs/client/utils.js +0 -106
- package/node_modules/hono/dist/cjs/compose.js +0 -69
- package/node_modules/hono/dist/cjs/context.js +0 -436
- package/node_modules/hono/dist/cjs/helper/accepts/accepts.js +0 -44
- package/node_modules/hono/dist/cjs/helper/accepts/index.js +0 -28
- package/node_modules/hono/dist/cjs/helper/adapter/index.js +0 -82
- package/node_modules/hono/dist/cjs/helper/conninfo/index.js +0 -16
- package/node_modules/hono/dist/cjs/helper/conninfo/types.js +0 -16
- package/node_modules/hono/dist/cjs/helper/cookie/index.js +0 -131
- package/node_modules/hono/dist/cjs/helper/css/common.js +0 -223
- package/node_modules/hono/dist/cjs/helper/css/index.js +0 -143
- package/node_modules/hono/dist/cjs/helper/dev/index.js +0 -80
- package/node_modules/hono/dist/cjs/helper/factory/index.js +0 -55
- package/node_modules/hono/dist/cjs/helper/html/index.js +0 -65
- package/node_modules/hono/dist/cjs/helper/proxy/index.js +0 -112
- package/node_modules/hono/dist/cjs/helper/route/index.js +0 -72
- package/node_modules/hono/dist/cjs/helper/ssg/index.js +0 -44
- package/node_modules/hono/dist/cjs/helper/ssg/middleware.js +0 -74
- package/node_modules/hono/dist/cjs/helper/ssg/plugins.js +0 -71
- package/node_modules/hono/dist/cjs/helper/ssg/ssg.js +0 -317
- package/node_modules/hono/dist/cjs/helper/ssg/utils.js +0 -85
- package/node_modules/hono/dist/cjs/helper/streaming/index.js +0 -36
- package/node_modules/hono/dist/cjs/helper/streaming/sse.js +0 -91
- package/node_modules/hono/dist/cjs/helper/streaming/stream.js +0 -57
- package/node_modules/hono/dist/cjs/helper/streaming/text.js +0 -35
- package/node_modules/hono/dist/cjs/helper/streaming/utils.js +0 -36
- package/node_modules/hono/dist/cjs/helper/testing/index.js +0 -34
- package/node_modules/hono/dist/cjs/helper/websocket/index.js +0 -82
- package/node_modules/hono/dist/cjs/hono-base.js +0 -401
- package/node_modules/hono/dist/cjs/hono.js +0 -44
- package/node_modules/hono/dist/cjs/http-exception.js +0 -58
- package/node_modules/hono/dist/cjs/index.js +0 -28
- package/node_modules/hono/dist/cjs/jsx/base.js +0 -375
- package/node_modules/hono/dist/cjs/jsx/children.js +0 -45
- package/node_modules/hono/dist/cjs/jsx/components.js +0 -202
- package/node_modules/hono/dist/cjs/jsx/constants.js +0 -43
- package/node_modules/hono/dist/cjs/jsx/context.js +0 -63
- package/node_modules/hono/dist/cjs/jsx/dom/client.js +0 -77
- package/node_modules/hono/dist/cjs/jsx/dom/components.js +0 -56
- package/node_modules/hono/dist/cjs/jsx/dom/context.js +0 -72
- package/node_modules/hono/dist/cjs/jsx/dom/css.js +0 -162
- package/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +0 -75
- package/node_modules/hono/dist/cjs/jsx/dom/index.js +0 -182
- package/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +0 -369
- package/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +0 -53
- package/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +0 -33
- package/node_modules/hono/dist/cjs/jsx/dom/render.js +0 -620
- package/node_modules/hono/dist/cjs/jsx/dom/server.js +0 -68
- package/node_modules/hono/dist/cjs/jsx/dom/utils.js +0 -33
- package/node_modules/hono/dist/cjs/jsx/hooks/index.js +0 -371
- package/node_modules/hono/dist/cjs/jsx/index.js +0 -139
- package/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +0 -40
- package/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +0 -183
- package/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +0 -16
- package/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +0 -42
- package/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +0 -69
- package/node_modules/hono/dist/cjs/jsx/streaming.js +0 -178
- package/node_modules/hono/dist/cjs/jsx/types.js +0 -16
- package/node_modules/hono/dist/cjs/jsx/utils.js +0 -51
- package/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +0 -89
- package/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +0 -106
- package/node_modules/hono/dist/cjs/middleware/body-limit/index.js +0 -85
- package/node_modules/hono/dist/cjs/middleware/cache/index.js +0 -112
- package/node_modules/hono/dist/cjs/middleware/combine/index.js +0 -102
- package/node_modules/hono/dist/cjs/middleware/compress/index.js +0 -62
- package/node_modules/hono/dist/cjs/middleware/context-storage/index.js +0 -48
- package/node_modules/hono/dist/cjs/middleware/cors/index.js +0 -110
- package/node_modules/hono/dist/cjs/middleware/csrf/index.js +0 -78
- package/node_modules/hono/dist/cjs/middleware/etag/digest.js +0 -56
- package/node_modules/hono/dist/cjs/middleware/etag/index.js +0 -96
- package/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +0 -125
- package/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +0 -82
- package/node_modules/hono/dist/cjs/middleware/jwk/index.js +0 -28
- package/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +0 -135
- package/node_modules/hono/dist/cjs/middleware/jwt/index.js +0 -39
- package/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +0 -141
- package/node_modules/hono/dist/cjs/middleware/language/index.js +0 -36
- package/node_modules/hono/dist/cjs/middleware/language/language.js +0 -222
- package/node_modules/hono/dist/cjs/middleware/logger/index.js +0 -73
- package/node_modules/hono/dist/cjs/middleware/method-override/index.js +0 -105
- package/node_modules/hono/dist/cjs/middleware/powered-by/index.js +0 -33
- package/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +0 -38
- package/node_modules/hono/dist/cjs/middleware/request-id/index.js +0 -28
- package/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +0 -44
- package/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +0 -30
- package/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +0 -16
- package/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +0 -190
- package/node_modules/hono/dist/cjs/middleware/serve-static/index.js +0 -100
- package/node_modules/hono/dist/cjs/middleware/serve-static/path.js +0 -41
- package/node_modules/hono/dist/cjs/middleware/timeout/index.js +0 -48
- package/node_modules/hono/dist/cjs/middleware/timing/index.js +0 -36
- package/node_modules/hono/dist/cjs/middleware/timing/timing.js +0 -129
- package/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +0 -63
- package/node_modules/hono/dist/cjs/package.json +0 -3
- package/node_modules/hono/dist/cjs/preset/quick.js +0 -39
- package/node_modules/hono/dist/cjs/preset/tiny.js +0 -35
- package/node_modules/hono/dist/cjs/request/constants.js +0 -28
- package/node_modules/hono/dist/cjs/request.js +0 -325
- package/node_modules/hono/dist/cjs/router/linear-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/linear-router/router.js +0 -141
- package/node_modules/hono/dist/cjs/router/pattern-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/pattern-router/router.js +0 -71
- package/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +0 -35
- package/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +0 -49
- package/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +0 -135
- package/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +0 -167
- package/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +0 -209
- package/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +0 -82
- package/node_modules/hono/dist/cjs/router/smart-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/smart-router/router.js +0 -81
- package/node_modules/hono/dist/cjs/router/trie-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/trie-router/node.js +0 -202
- package/node_modules/hono/dist/cjs/router/trie-router/router.js +0 -49
- package/node_modules/hono/dist/cjs/router.js +0 -41
- package/node_modules/hono/dist/cjs/types.js +0 -29
- package/node_modules/hono/dist/cjs/utils/accept.js +0 -86
- package/node_modules/hono/dist/cjs/utils/basic-auth.js +0 -46
- package/node_modules/hono/dist/cjs/utils/body.js +0 -95
- package/node_modules/hono/dist/cjs/utils/buffer.js +0 -103
- package/node_modules/hono/dist/cjs/utils/color.js +0 -49
- package/node_modules/hono/dist/cjs/utils/compress.js +0 -28
- package/node_modules/hono/dist/cjs/utils/concurrent.js +0 -62
- package/node_modules/hono/dist/cjs/utils/constants.js +0 -28
- package/node_modules/hono/dist/cjs/utils/cookie.js +0 -178
- package/node_modules/hono/dist/cjs/utils/crypto.js +0 -70
- package/node_modules/hono/dist/cjs/utils/encode.js +0 -55
- package/node_modules/hono/dist/cjs/utils/filepath.js +0 -59
- package/node_modules/hono/dist/cjs/utils/handler.js +0 -37
- package/node_modules/hono/dist/cjs/utils/headers.js +0 -16
- package/node_modules/hono/dist/cjs/utils/html.js +0 -151
- package/node_modules/hono/dist/cjs/utils/http-status.js +0 -16
- package/node_modules/hono/dist/cjs/utils/ipaddr.js +0 -130
- package/node_modules/hono/dist/cjs/utils/jwt/index.js +0 -29
- package/node_modules/hono/dist/cjs/utils/jwt/jwa.js +0 -43
- package/node_modules/hono/dist/cjs/utils/jwt/jws.js +0 -216
- package/node_modules/hono/dist/cjs/utils/jwt/jwt.js +0 -214
- package/node_modules/hono/dist/cjs/utils/jwt/types.js +0 -162
- package/node_modules/hono/dist/cjs/utils/jwt/utf8.js +0 -31
- package/node_modules/hono/dist/cjs/utils/mime.js +0 -109
- package/node_modules/hono/dist/cjs/utils/stream.js +0 -102
- package/node_modules/hono/dist/cjs/utils/types.js +0 -16
- package/node_modules/hono/dist/cjs/utils/url.js +0 -257
- package/node_modules/hono/dist/cjs/validator/index.js +0 -28
- package/node_modules/hono/dist/cjs/validator/utils.js +0 -16
- package/node_modules/hono/dist/cjs/validator/validator.js +0 -109
- package/node_modules/hono/dist/client/client.js +0 -180
- package/node_modules/hono/dist/client/fetch-result-please.js +0 -62
- package/node_modules/hono/dist/client/index.js +0 -8
- package/node_modules/hono/dist/client/types.js +0 -0
- package/node_modules/hono/dist/client/utils.js +0 -76
- package/node_modules/hono/dist/compose.js +0 -46
- package/node_modules/hono/dist/context.js +0 -412
- package/node_modules/hono/dist/helper/accepts/accepts.js +0 -20
- package/node_modules/hono/dist/helper/accepts/index.js +0 -5
- package/node_modules/hono/dist/helper/adapter/index.js +0 -56
- package/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/node_modules/hono/dist/helper/cookie/index.js +0 -102
- package/node_modules/hono/dist/helper/css/common.js +0 -185
- package/node_modules/hono/dist/helper/css/index.js +0 -125
- package/node_modules/hono/dist/helper/dev/index.js +0 -55
- package/node_modules/hono/dist/helper/factory/index.js +0 -30
- package/node_modules/hono/dist/helper/html/index.js +0 -41
- package/node_modules/hono/dist/helper/proxy/index.js +0 -89
- package/node_modules/hono/dist/helper/route/index.js +0 -46
- package/node_modules/hono/dist/helper/ssg/index.js +0 -19
- package/node_modules/hono/dist/helper/ssg/middleware.js +0 -45
- package/node_modules/hono/dist/helper/ssg/plugins.js +0 -47
- package/node_modules/hono/dist/helper/ssg/ssg.js +0 -287
- package/node_modules/hono/dist/helper/ssg/utils.js +0 -59
- package/node_modules/hono/dist/helper/streaming/index.js +0 -10
- package/node_modules/hono/dist/helper/streaming/sse.js +0 -67
- package/node_modules/hono/dist/helper/streaming/stream.js +0 -34
- package/node_modules/hono/dist/helper/streaming/text.js +0 -12
- package/node_modules/hono/dist/helper/streaming/utils.js +0 -13
- package/node_modules/hono/dist/helper/testing/index.js +0 -11
- package/node_modules/hono/dist/helper/websocket/index.js +0 -57
- package/node_modules/hono/dist/hono-base.js +0 -378
- package/node_modules/hono/dist/hono.js +0 -21
- package/node_modules/hono/dist/http-exception.js +0 -35
- package/node_modules/hono/dist/index.js +0 -5
- package/node_modules/hono/dist/jsx/base.js +0 -331
- package/node_modules/hono/dist/jsx/children.js +0 -21
- package/node_modules/hono/dist/jsx/components.js +0 -178
- package/node_modules/hono/dist/jsx/constants.js +0 -15
- package/node_modules/hono/dist/jsx/context.js +0 -38
- package/node_modules/hono/dist/jsx/dom/client.js +0 -53
- package/node_modules/hono/dist/jsx/dom/components.js +0 -32
- package/node_modules/hono/dist/jsx/dom/context.js +0 -48
- package/node_modules/hono/dist/jsx/dom/css.js +0 -143
- package/node_modules/hono/dist/jsx/dom/hooks/index.js +0 -48
- package/node_modules/hono/dist/jsx/dom/index.js +0 -142
- package/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +0 -337
- package/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +0 -19
- package/node_modules/hono/dist/jsx/dom/jsx-runtime.js +0 -8
- package/node_modules/hono/dist/jsx/dom/render.js +0 -595
- package/node_modules/hono/dist/jsx/dom/server.js +0 -33
- package/node_modules/hono/dist/jsx/dom/utils.js +0 -10
- package/node_modules/hono/dist/jsx/hooks/index.js +0 -328
- package/node_modules/hono/dist/jsx/index.js +0 -103
- package/node_modules/hono/dist/jsx/intrinsic-element/common.js +0 -15
- package/node_modules/hono/dist/jsx/intrinsic-element/components.js +0 -153
- package/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/node_modules/hono/dist/jsx/jsx-dev-runtime.js +0 -18
- package/node_modules/hono/dist/jsx/jsx-runtime.js +0 -41
- package/node_modules/hono/dist/jsx/streaming.js +0 -153
- package/node_modules/hono/dist/jsx/types.js +0 -0
- package/node_modules/hono/dist/jsx/utils.js +0 -27
- package/node_modules/hono/dist/middleware/basic-auth/index.js +0 -66
- package/node_modules/hono/dist/middleware/bearer-auth/index.js +0 -83
- package/node_modules/hono/dist/middleware/body-limit/index.js +0 -62
- package/node_modules/hono/dist/middleware/cache/index.js +0 -89
- package/node_modules/hono/dist/middleware/combine/index.js +0 -77
- package/node_modules/hono/dist/middleware/compress/index.js +0 -39
- package/node_modules/hono/dist/middleware/context-storage/index.js +0 -23
- package/node_modules/hono/dist/middleware/cors/index.js +0 -87
- package/node_modules/hono/dist/middleware/csrf/index.js +0 -55
- package/node_modules/hono/dist/middleware/etag/digest.js +0 -33
- package/node_modules/hono/dist/middleware/etag/index.js +0 -72
- package/node_modules/hono/dist/middleware/ip-restriction/index.js +0 -107
- package/node_modules/hono/dist/middleware/jsx-renderer/index.js +0 -57
- package/node_modules/hono/dist/middleware/jwk/index.js +0 -5
- package/node_modules/hono/dist/middleware/jwk/jwk.js +0 -112
- package/node_modules/hono/dist/middleware/jwt/index.js +0 -11
- package/node_modules/hono/dist/middleware/jwt/jwt.js +0 -114
- package/node_modules/hono/dist/middleware/language/index.js +0 -15
- package/node_modules/hono/dist/middleware/language/language.js +0 -190
- package/node_modules/hono/dist/middleware/logger/index.js +0 -44
- package/node_modules/hono/dist/middleware/method-override/index.js +0 -82
- package/node_modules/hono/dist/middleware/powered-by/index.js +0 -10
- package/node_modules/hono/dist/middleware/pretty-json/index.js +0 -15
- package/node_modules/hono/dist/middleware/request-id/index.js +0 -5
- package/node_modules/hono/dist/middleware/request-id/request-id.js +0 -21
- package/node_modules/hono/dist/middleware/secure-headers/index.js +0 -6
- package/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +0 -166
- package/node_modules/hono/dist/middleware/serve-static/index.js +0 -77
- package/node_modules/hono/dist/middleware/serve-static/path.js +0 -18
- package/node_modules/hono/dist/middleware/timeout/index.js +0 -25
- package/node_modules/hono/dist/middleware/timing/index.js +0 -9
- package/node_modules/hono/dist/middleware/timing/timing.js +0 -102
- package/node_modules/hono/dist/middleware/trailing-slash/index.js +0 -39
- package/node_modules/hono/dist/preset/quick.js +0 -16
- package/node_modules/hono/dist/preset/tiny.js +0 -12
- package/node_modules/hono/dist/request/constants.js +0 -5
- package/node_modules/hono/dist/request.js +0 -301
- package/node_modules/hono/dist/router/linear-router/index.js +0 -5
- package/node_modules/hono/dist/router/linear-router/router.js +0 -118
- package/node_modules/hono/dist/router/pattern-router/index.js +0 -5
- package/node_modules/hono/dist/router/pattern-router/router.js +0 -48
- package/node_modules/hono/dist/router/reg-exp-router/index.js +0 -9
- package/node_modules/hono/dist/router/reg-exp-router/matcher.js +0 -25
- package/node_modules/hono/dist/router/reg-exp-router/node.js +0 -111
- package/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +0 -142
- package/node_modules/hono/dist/router/reg-exp-router/router.js +0 -190
- package/node_modules/hono/dist/router/reg-exp-router/trie.js +0 -59
- package/node_modules/hono/dist/router/smart-router/index.js +0 -5
- package/node_modules/hono/dist/router/smart-router/router.js +0 -58
- package/node_modules/hono/dist/router/trie-router/index.js +0 -5
- package/node_modules/hono/dist/router/trie-router/node.js +0 -179
- package/node_modules/hono/dist/router/trie-router/router.js +0 -26
- package/node_modules/hono/dist/router.js +0 -14
- package/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +0 -27
- package/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +0 -184
- package/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +0 -8
- package/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +0 -144
- package/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/bun/index.d.ts +0 -10
- package/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +0 -3
- package/node_modules/hono/dist/types/adapter/bun/server.d.ts +0 -12
- package/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +0 -13
- package/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +0 -39
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +0 -21
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +0 -33
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +0 -4
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +0 -16
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +0 -5
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/deno/index.d.ts +0 -8
- package/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +0 -3
- package/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +0 -13
- package/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +0 -87
- package/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +0 -21
- package/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/netlify/index.d.ts +0 -5
- package/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +0 -16
- package/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +0 -28
- package/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +0 -12
- package/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/vercel/index.d.ts +0 -6
- package/node_modules/hono/dist/types/client/client.d.ts +0 -4
- package/node_modules/hono/dist/types/client/fetch-result-please.d.ts +0 -35
- package/node_modules/hono/dist/types/client/index.d.ts +0 -7
- package/node_modules/hono/dist/types/client/types.d.ts +0 -209
- package/node_modules/hono/dist/types/client/utils.d.ts +0 -18
- package/node_modules/hono/dist/types/compose.d.ts +0 -14
- package/node_modules/hono/dist/types/context.d.ts +0 -455
- package/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +0 -30
- package/node_modules/hono/dist/types/helper/accepts/index.d.ts +0 -5
- package/node_modules/hono/dist/types/helper/adapter/index.d.ts +0 -12
- package/node_modules/hono/dist/types/helper/conninfo/index.d.ts +0 -5
- package/node_modules/hono/dist/types/helper/conninfo/types.d.ts +0 -36
- package/node_modules/hono/dist/types/helper/cookie/index.d.ts +0 -24
- package/node_modules/hono/dist/types/helper/css/common.d.ts +0 -42
- package/node_modules/hono/dist/types/helper/css/index.d.ts +0 -73
- package/node_modules/hono/dist/types/helper/dev/index.d.ts +0 -20
- package/node_modules/hono/dist/types/helper/factory/index.d.ts +0 -82
- package/node_modules/hono/dist/types/helper/html/index.d.ts +0 -8
- package/node_modules/hono/dist/types/helper/proxy/index.d.ts +0 -72
- package/node_modules/hono/dist/types/helper/route/index.d.ts +0 -75
- package/node_modules/hono/dist/types/helper/ssg/index.d.ts +0 -7
- package/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +0 -44
- package/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +0 -27
- package/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +0 -91
- package/node_modules/hono/dist/types/helper/ssg/utils.d.ts +0 -15
- package/node_modules/hono/dist/types/helper/streaming/index.d.ts +0 -8
- package/node_modules/hono/dist/types/helper/streaming/sse.d.ts +0 -13
- package/node_modules/hono/dist/types/helper/streaming/stream.d.ts +0 -3
- package/node_modules/hono/dist/types/helper/streaming/text.d.ts +0 -3
- package/node_modules/hono/dist/types/helper/streaming/utils.d.ts +0 -1
- package/node_modules/hono/dist/types/helper/testing/index.d.ts +0 -12
- package/node_modules/hono/dist/types/helper/websocket/index.d.ts +0 -69
- package/node_modules/hono/dist/types/hono-base.d.ts +0 -220
- package/node_modules/hono/dist/types/hono.d.ts +0 -19
- package/node_modules/hono/dist/types/http-exception.d.ts +0 -59
- package/node_modules/hono/dist/types/index.d.ts +0 -36
- package/node_modules/hono/dist/types/jsx/base.d.ts +0 -58
- package/node_modules/hono/dist/types/jsx/children.d.ts +0 -9
- package/node_modules/hono/dist/types/jsx/components.d.ts +0 -15
- package/node_modules/hono/dist/types/jsx/constants.d.ts +0 -6
- package/node_modules/hono/dist/types/jsx/context.d.ts +0 -12
- package/node_modules/hono/dist/types/jsx/dom/client.d.ts +0 -31
- package/node_modules/hono/dist/types/jsx/dom/components.d.ts +0 -10
- package/node_modules/hono/dist/types/jsx/dom/context.d.ts +0 -3
- package/node_modules/hono/dist/types/jsx/dom/css.d.ts +0 -77
- package/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +0 -39
- package/node_modules/hono/dist/types/jsx/dom/index.d.ts +0 -88
- package/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +0 -16
- package/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +0 -8
- package/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +0 -7
- package/node_modules/hono/dist/types/jsx/dom/render.d.ts +0 -73
- package/node_modules/hono/dist/types/jsx/dom/server.d.ts +0 -106
- package/node_modules/hono/dist/types/jsx/dom/utils.d.ts +0 -1
- package/node_modules/hono/dist/types/jsx/hooks/index.d.ts +0 -45
- package/node_modules/hono/dist/types/jsx/index.d.ts +0 -75
- package/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +0 -3
- package/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +0 -13
- package/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +0 -722
- package/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +0 -8
- package/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +0 -12
- package/node_modules/hono/dist/types/jsx/streaming.d.ts +0 -36
- package/node_modules/hono/dist/types/jsx/types.d.ts +0 -35
- package/node_modules/hono/dist/types/jsx/utils.d.ts +0 -2
- package/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +0 -75
- package/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +0 -91
- package/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +0 -45
- package/node_modules/hono/dist/types/middleware/cache/index.d.ts +0 -41
- package/node_modules/hono/dist/types/middleware/combine/index.d.ts +0 -85
- package/node_modules/hono/dist/types/middleware/compress/index.d.ts +0 -29
- package/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +0 -40
- package/node_modules/hono/dist/types/middleware/cors/index.d.ts +0 -55
- package/node_modules/hono/dist/types/middleware/csrf/index.d.ts +0 -78
- package/node_modules/hono/dist/types/middleware/etag/digest.d.ts +0 -1
- package/node_modules/hono/dist/types/middleware/etag/index.d.ts +0 -42
- package/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +0 -31
- package/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +0 -77
- package/node_modules/hono/dist/types/middleware/jwk/index.d.ts +0 -1
- package/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +0 -54
- package/node_modules/hono/dist/types/middleware/jwt/index.d.ts +0 -8
- package/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +0 -67
- package/node_modules/hono/dist/types/middleware/language/index.d.ts +0 -7
- package/node_modules/hono/dist/types/middleware/language/language.d.ts +0 -102
- package/node_modules/hono/dist/types/middleware/logger/index.d.ts +0 -24
- package/node_modules/hono/dist/types/middleware/method-override/index.d.ts +0 -48
- package/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +0 -29
- package/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +0 -42
- package/node_modules/hono/dist/types/middleware/request-id/index.d.ts +0 -7
- package/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +0 -37
- package/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +0 -8
- package/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +0 -14
- package/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +0 -109
- package/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +0 -31
- package/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +0 -5
- package/node_modules/hono/dist/types/middleware/timeout/index.d.ts +0 -31
- package/node_modules/hono/dist/types/middleware/timing/index.d.ts +0 -7
- package/node_modules/hono/dist/types/middleware/timing/timing.d.ts +0 -129
- package/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +0 -78
- package/node_modules/hono/dist/types/package.json +0 -3
- package/node_modules/hono/dist/types/preset/quick.d.ts +0 -10
- package/node_modules/hono/dist/types/preset/tiny.d.ts +0 -10
- package/node_modules/hono/dist/types/request/constants.d.ts +0 -1
- package/node_modules/hono/dist/types/request.d.ts +0 -313
- package/node_modules/hono/dist/types/router/linear-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/linear-router/router.d.ts +0 -7
- package/node_modules/hono/dist/types/router/pattern-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/pattern-router/router.d.ts +0 -7
- package/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +0 -6
- package/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +0 -7
- package/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +0 -10
- package/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +0 -17
- package/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +0 -11
- package/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +0 -7
- package/node_modules/hono/dist/types/router/smart-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/smart-router/router.d.ts +0 -11
- package/node_modules/hono/dist/types/router/trie-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/trie-router/node.d.ts +0 -7
- package/node_modules/hono/dist/types/router/trie-router/router.d.ts +0 -8
- package/node_modules/hono/dist/types/router.d.ts +0 -97
- package/node_modules/hono/dist/types/types.d.ts +0 -573
- package/node_modules/hono/dist/types/utils/accept.d.ts +0 -11
- package/node_modules/hono/dist/types/utils/basic-auth.d.ts +0 -5
- package/node_modules/hono/dist/types/utils/body.d.ts +0 -79
- package/node_modules/hono/dist/types/utils/buffer.d.ts +0 -17
- package/node_modules/hono/dist/types/utils/color.d.ts +0 -21
- package/node_modules/hono/dist/types/utils/compress.d.ts +0 -8
- package/node_modules/hono/dist/types/utils/concurrent.d.ts +0 -11
- package/node_modules/hono/dist/types/utils/constants.d.ts +0 -4
- package/node_modules/hono/dist/types/utils/cookie.d.ts +0 -40
- package/node_modules/hono/dist/types/utils/crypto.d.ts +0 -15
- package/node_modules/hono/dist/types/utils/encode.d.ts +0 -8
- package/node_modules/hono/dist/types/utils/filepath.d.ts +0 -12
- package/node_modules/hono/dist/types/utils/handler.d.ts +0 -6
- package/node_modules/hono/dist/types/utils/headers.d.ts +0 -8
- package/node_modules/hono/dist/types/utils/html.d.ts +0 -44
- package/node_modules/hono/dist/types/utils/http-status.d.ts +0 -32
- package/node_modules/hono/dist/types/utils/ipaddr.d.ts +0 -40
- package/node_modules/hono/dist/types/utils/jwt/index.d.ts +0 -18
- package/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +0 -23
- package/node_modules/hono/dist/types/utils/jwt/jws.d.ts +0 -12
- package/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +0 -43
- package/node_modules/hono/dist/types/utils/jwt/types.d.ts +0 -86
- package/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +0 -6
- package/node_modules/hono/dist/types/utils/mime.d.ts +0 -70
- package/node_modules/hono/dist/types/utils/stream.d.ts +0 -31
- package/node_modules/hono/dist/types/utils/types.d.ts +0 -74
- package/node_modules/hono/dist/types/utils/url.d.ts +0 -39
- package/node_modules/hono/dist/types/validator/index.d.ts +0 -7
- package/node_modules/hono/dist/types/validator/utils.d.ts +0 -29
- package/node_modules/hono/dist/types/validator/validator.d.ts +0 -16
- package/node_modules/hono/dist/types.js +0 -6
- package/node_modules/hono/dist/utils/accept.js +0 -63
- package/node_modules/hono/dist/utils/basic-auth.js +0 -23
- package/node_modules/hono/dist/utils/body.js +0 -72
- package/node_modules/hono/dist/utils/buffer.js +0 -77
- package/node_modules/hono/dist/utils/color.js +0 -25
- package/node_modules/hono/dist/utils/compress.js +0 -5
- package/node_modules/hono/dist/utils/concurrent.js +0 -39
- package/node_modules/hono/dist/utils/constants.js +0 -5
- package/node_modules/hono/dist/utils/cookie.js +0 -152
- package/node_modules/hono/dist/utils/crypto.js +0 -44
- package/node_modules/hono/dist/utils/encode.js +0 -29
- package/node_modules/hono/dist/utils/filepath.js +0 -35
- package/node_modules/hono/dist/utils/handler.js +0 -13
- package/node_modules/hono/dist/utils/headers.js +0 -0
- package/node_modules/hono/dist/utils/html.js +0 -123
- package/node_modules/hono/dist/utils/http-status.js +0 -0
- package/node_modules/hono/dist/utils/ipaddr.js +0 -102
- package/node_modules/hono/dist/utils/jwt/index.js +0 -6
- package/node_modules/hono/dist/utils/jwt/jwa.js +0 -20
- package/node_modules/hono/dist/utils/jwt/jws.js +0 -192
- package/node_modules/hono/dist/utils/jwt/jwt.js +0 -201
- package/node_modules/hono/dist/utils/jwt/types.js +0 -124
- package/node_modules/hono/dist/utils/jwt/utf8.js +0 -7
- package/node_modules/hono/dist/utils/mime.js +0 -84
- package/node_modules/hono/dist/utils/stream.js +0 -79
- package/node_modules/hono/dist/utils/types.js +0 -0
- package/node_modules/hono/dist/utils/url.js +0 -222
- package/node_modules/hono/dist/validator/index.js +0 -5
- package/node_modules/hono/dist/validator/utils.js +0 -0
- package/node_modules/hono/dist/validator/validator.js +0 -86
- package/node_modules/hono/package.json +0 -691
- package/node_modules/http-errors/HISTORY.md +0 -186
- package/node_modules/http-errors/LICENSE +0 -23
- package/node_modules/http-errors/README.md +0 -169
- package/node_modules/http-errors/index.js +0 -290
- package/node_modules/http-errors/package.json +0 -54
- package/node_modules/iconv-lite/LICENSE +0 -21
- package/node_modules/iconv-lite/README.md +0 -138
- package/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -532
- package/node_modules/iconv-lite/encodings/dbcs-data.js +0 -185
- package/node_modules/iconv-lite/encodings/index.js +0 -23
- package/node_modules/iconv-lite/encodings/internal.js +0 -218
- package/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -75
- package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/node_modules/iconv-lite/encodings/sbcs-data.js +0 -178
- package/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
- package/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/node_modules/iconv-lite/encodings/utf16.js +0 -187
- package/node_modules/iconv-lite/encodings/utf32.js +0 -307
- package/node_modules/iconv-lite/encodings/utf7.js +0 -283
- package/node_modules/iconv-lite/lib/bom-handling.js +0 -48
- package/node_modules/iconv-lite/lib/helpers/merge-exports.js +0 -13
- package/node_modules/iconv-lite/lib/index.d.ts +0 -129
- package/node_modules/iconv-lite/lib/index.js +0 -182
- package/node_modules/iconv-lite/lib/streams.js +0 -105
- package/node_modules/iconv-lite/package.json +0 -70
- package/node_modules/iconv-lite/types/encodings.d.ts +0 -423
- package/node_modules/inherits/LICENSE +0 -16
- package/node_modules/inherits/README.md +0 -42
- package/node_modules/inherits/inherits.js +0 -9
- package/node_modules/inherits/inherits_browser.js +0 -27
- package/node_modules/inherits/package.json +0 -29
- package/node_modules/ip-address/LICENSE +0 -19
- package/node_modules/ip-address/README.md +0 -105
- package/node_modules/ip-address/dist/address-error.d.ts +0 -5
- package/node_modules/ip-address/dist/address-error.d.ts.map +0 -1
- package/node_modules/ip-address/dist/address-error.js +0 -12
- package/node_modules/ip-address/dist/address-error.js.map +0 -1
- package/node_modules/ip-address/dist/common.d.ts +0 -15
- package/node_modules/ip-address/dist/common.d.ts.map +0 -1
- package/node_modules/ip-address/dist/common.js +0 -46
- package/node_modules/ip-address/dist/common.js.map +0 -1
- package/node_modules/ip-address/dist/ip-address.d.ts +0 -8
- package/node_modules/ip-address/dist/ip-address.d.ts.map +0 -1
- package/node_modules/ip-address/dist/ip-address.js +0 -35
- package/node_modules/ip-address/dist/ip-address.js.map +0 -1
- package/node_modules/ip-address/dist/ipv4.d.ts +0 -209
- package/node_modules/ip-address/dist/ipv4.d.ts.map +0 -1
- package/node_modules/ip-address/dist/ipv4.js +0 -360
- package/node_modules/ip-address/dist/ipv4.js.map +0 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +0 -428
- package/node_modules/ip-address/dist/ipv6.d.ts.map +0 -1
- package/node_modules/ip-address/dist/ipv6.js +0 -1003
- package/node_modules/ip-address/dist/ipv6.js.map +0 -1
- package/node_modules/ip-address/dist/v4/constants.d.ts +0 -5
- package/node_modules/ip-address/dist/v4/constants.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v4/constants.js +0 -8
- package/node_modules/ip-address/dist/v4/constants.js.map +0 -1
- package/node_modules/ip-address/dist/v6/constants.d.ts +0 -45
- package/node_modules/ip-address/dist/v6/constants.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v6/constants.js +0 -76
- package/node_modules/ip-address/dist/v6/constants.js.map +0 -1
- package/node_modules/ip-address/dist/v6/helpers.d.ts +0 -18
- package/node_modules/ip-address/dist/v6/helpers.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v6/helpers.js +0 -45
- package/node_modules/ip-address/dist/v6/helpers.js.map +0 -1
- package/node_modules/ip-address/dist/v6/regular-expressions.d.ts +0 -6
- package/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v6/regular-expressions.js +0 -95
- package/node_modules/ip-address/dist/v6/regular-expressions.js.map +0 -1
- package/node_modules/ip-address/package.json +0 -78
- package/node_modules/ip-address/src/address-error.ts +0 -11
- package/node_modules/ip-address/src/common.ts +0 -55
- package/node_modules/ip-address/src/ip-address.ts +0 -7
- package/node_modules/ip-address/src/ipv4.ts +0 -394
- package/node_modules/ip-address/src/ipv6.ts +0 -1212
- package/node_modules/ip-address/src/v4/constants.ts +0 -7
- package/node_modules/ip-address/src/v6/constants.ts +0 -79
- package/node_modules/ip-address/src/v6/helpers.ts +0 -48
- package/node_modules/ip-address/src/v6/regular-expressions.ts +0 -94
- package/node_modules/ipaddr.js/LICENSE +0 -19
- package/node_modules/ipaddr.js/README.md +0 -233
- package/node_modules/ipaddr.js/ipaddr.min.js +0 -1
- package/node_modules/ipaddr.js/lib/ipaddr.js +0 -673
- package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +0 -68
- package/node_modules/ipaddr.js/package.json +0 -35
- package/node_modules/is-promise/LICENSE +0 -19
- package/node_modules/is-promise/index.d.ts +0 -2
- package/node_modules/is-promise/index.js +0 -6
- package/node_modules/is-promise/index.mjs +0 -3
- package/node_modules/is-promise/package.json +0 -30
- package/node_modules/is-promise/readme.md +0 -33
- package/node_modules/isexe/.npmignore +0 -2
- package/node_modules/isexe/LICENSE +0 -15
- package/node_modules/isexe/README.md +0 -51
- package/node_modules/isexe/index.js +0 -57
- package/node_modules/isexe/mode.js +0 -41
- package/node_modules/isexe/package.json +0 -31
- package/node_modules/isexe/test/basic.js +0 -221
- package/node_modules/isexe/windows.js +0 -42
- package/node_modules/jose/LICENSE.md +0 -21
- package/node_modules/jose/README.md +0 -153
- package/node_modules/jose/dist/types/index.d.ts +0 -55
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +0 -31
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +0 -65
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +0 -31
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +0 -83
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +0 -38
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +0 -74
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +0 -17
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +0 -32
- package/node_modules/jose/dist/types/jwks/local.d.ts +0 -29
- package/node_modules/jose/dist/types/jwks/remote.d.ts +0 -237
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +0 -36
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +0 -33
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +0 -42
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +0 -33
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +0 -53
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +0 -41
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +0 -35
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +0 -91
- package/node_modules/jose/dist/types/jwt/sign.d.ts +0 -43
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +0 -43
- package/node_modules/jose/dist/types/jwt/verify.d.ts +0 -37
- package/node_modules/jose/dist/types/key/export.d.ts +0 -33
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +0 -47
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +0 -35
- package/node_modules/jose/dist/types/key/import.d.ts +0 -83
- package/node_modules/jose/dist/types/types.d.ts +0 -852
- package/node_modules/jose/dist/types/util/base64url.d.ts +0 -9
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +0 -18
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +0 -17
- package/node_modules/jose/dist/types/util/errors.d.ts +0 -213
- package/node_modules/jose/dist/webapi/index.js +0 -32
- package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +0 -27
- package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +0 -27
- package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +0 -155
- package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +0 -165
- package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +0 -31
- package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +0 -182
- package/node_modules/jose/dist/webapi/jwk/embedded.js +0 -17
- package/node_modules/jose/dist/webapi/jwk/thumbprint.js +0 -68
- package/node_modules/jose/dist/webapi/jwks/local.js +0 -119
- package/node_modules/jose/dist/webapi/jwks/remote.js +0 -179
- package/node_modules/jose/dist/webapi/jws/compact/sign.js +0 -18
- package/node_modules/jose/dist/webapi/jws/compact/verify.js +0 -21
- package/node_modules/jose/dist/webapi/jws/flattened/sign.js +0 -89
- package/node_modules/jose/dist/webapi/jws/flattened/verify.js +0 -110
- package/node_modules/jose/dist/webapi/jws/general/sign.js +0 -70
- package/node_modules/jose/dist/webapi/jws/general/verify.js +0 -24
- package/node_modules/jose/dist/webapi/jwt/decrypt.js +0 -23
- package/node_modules/jose/dist/webapi/jwt/encrypt.js +0 -101
- package/node_modules/jose/dist/webapi/jwt/sign.js +0 -52
- package/node_modules/jose/dist/webapi/jwt/unsecured.js +0 -63
- package/node_modules/jose/dist/webapi/jwt/verify.js +0 -15
- package/node_modules/jose/dist/webapi/key/export.js +0 -11
- package/node_modules/jose/dist/webapi/key/generate_key_pair.js +0 -97
- package/node_modules/jose/dist/webapi/key/generate_secret.js +0 -40
- package/node_modules/jose/dist/webapi/key/import.js +0 -57
- package/node_modules/jose/dist/webapi/lib/aesgcmkw.js +0 -15
- package/node_modules/jose/dist/webapi/lib/aeskw.js +0 -25
- package/node_modules/jose/dist/webapi/lib/asn1.js +0 -243
- package/node_modules/jose/dist/webapi/lib/base64.js +0 -22
- package/node_modules/jose/dist/webapi/lib/buffer_utils.js +0 -43
- package/node_modules/jose/dist/webapi/lib/check_key_type.js +0 -122
- package/node_modules/jose/dist/webapi/lib/content_encryption.js +0 -217
- package/node_modules/jose/dist/webapi/lib/crypto_key.js +0 -136
- package/node_modules/jose/dist/webapi/lib/deflate.js +0 -44
- package/node_modules/jose/dist/webapi/lib/ecdhes.js +0 -52
- package/node_modules/jose/dist/webapi/lib/helpers.js +0 -19
- package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +0 -27
- package/node_modules/jose/dist/webapi/lib/is_key_like.js +0 -17
- package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +0 -107
- package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +0 -238
- package/node_modules/jose/dist/webapi/lib/key_management.js +0 -186
- package/node_modules/jose/dist/webapi/lib/key_to_jwk.js +0 -31
- package/node_modules/jose/dist/webapi/lib/normalize_key.js +0 -166
- package/node_modules/jose/dist/webapi/lib/pbes2kw.js +0 -39
- package/node_modules/jose/dist/webapi/lib/rsaes.js +0 -24
- package/node_modules/jose/dist/webapi/lib/signing.js +0 -68
- package/node_modules/jose/dist/webapi/lib/type_checks.js +0 -40
- package/node_modules/jose/dist/webapi/lib/validate_algorithms.js +0 -10
- package/node_modules/jose/dist/webapi/lib/validate_crit.js +0 -33
- package/node_modules/jose/dist/webapi/util/base64url.js +0 -30
- package/node_modules/jose/dist/webapi/util/decode_jwt.js +0 -32
- package/node_modules/jose/dist/webapi/util/decode_protected_header.js +0 -34
- package/node_modules/jose/dist/webapi/util/errors.js +0 -99
- package/node_modules/jose/package.json +0 -200
- package/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
- package/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
- package/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
- package/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
- package/node_modules/json-schema-traverse/LICENSE +0 -21
- package/node_modules/json-schema-traverse/README.md +0 -95
- package/node_modules/json-schema-traverse/index.d.ts +0 -40
- package/node_modules/json-schema-traverse/index.js +0 -93
- package/node_modules/json-schema-traverse/package.json +0 -43
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
- package/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
- package/node_modules/json-schema-typed/LICENSE.md +0 -57
- package/node_modules/json-schema-typed/README.md +0 -108
- package/node_modules/json-schema-typed/draft_07.d.ts +0 -882
- package/node_modules/json-schema-typed/draft_07.js +0 -328
- package/node_modules/json-schema-typed/draft_2019_09.d.ts +0 -1247
- package/node_modules/json-schema-typed/draft_2019_09.js +0 -349
- package/node_modules/json-schema-typed/draft_2020_12.d.ts +0 -1239
- package/node_modules/json-schema-typed/draft_2020_12.js +0 -352
- package/node_modules/json-schema-typed/package.json +0 -44
- package/node_modules/math-intrinsics/.eslintrc +0 -16
- package/node_modules/math-intrinsics/.github/FUNDING.yml +0 -12
- package/node_modules/math-intrinsics/CHANGELOG.md +0 -24
- package/node_modules/math-intrinsics/LICENSE +0 -21
- package/node_modules/math-intrinsics/README.md +0 -50
- package/node_modules/math-intrinsics/abs.d.ts +0 -1
- package/node_modules/math-intrinsics/abs.js +0 -4
- package/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxArrayLength.js +0 -4
- package/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxSafeInteger.js +0 -5
- package/node_modules/math-intrinsics/constants/maxValue.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxValue.js +0 -5
- package/node_modules/math-intrinsics/floor.d.ts +0 -1
- package/node_modules/math-intrinsics/floor.js +0 -4
- package/node_modules/math-intrinsics/isFinite.d.ts +0 -3
- package/node_modules/math-intrinsics/isFinite.js +0 -12
- package/node_modules/math-intrinsics/isInteger.d.ts +0 -3
- package/node_modules/math-intrinsics/isInteger.js +0 -16
- package/node_modules/math-intrinsics/isNaN.d.ts +0 -1
- package/node_modules/math-intrinsics/isNaN.js +0 -6
- package/node_modules/math-intrinsics/isNegativeZero.d.ts +0 -3
- package/node_modules/math-intrinsics/isNegativeZero.js +0 -6
- package/node_modules/math-intrinsics/max.d.ts +0 -1
- package/node_modules/math-intrinsics/max.js +0 -4
- package/node_modules/math-intrinsics/min.d.ts +0 -1
- package/node_modules/math-intrinsics/min.js +0 -4
- package/node_modules/math-intrinsics/mod.d.ts +0 -3
- package/node_modules/math-intrinsics/mod.js +0 -9
- package/node_modules/math-intrinsics/package.json +0 -86
- package/node_modules/math-intrinsics/pow.d.ts +0 -1
- package/node_modules/math-intrinsics/pow.js +0 -4
- package/node_modules/math-intrinsics/round.d.ts +0 -1
- package/node_modules/math-intrinsics/round.js +0 -4
- package/node_modules/math-intrinsics/sign.d.ts +0 -3
- package/node_modules/math-intrinsics/sign.js +0 -11
- package/node_modules/math-intrinsics/test/index.js +0 -192
- package/node_modules/math-intrinsics/tsconfig.json +0 -3
- package/node_modules/media-typer/HISTORY.md +0 -50
- package/node_modules/media-typer/LICENSE +0 -22
- package/node_modules/media-typer/README.md +0 -93
- package/node_modules/media-typer/index.js +0 -143
- package/node_modules/media-typer/package.json +0 -33
- package/node_modules/merge-descriptors/index.d.ts +0 -11
- package/node_modules/merge-descriptors/index.js +0 -26
- package/node_modules/merge-descriptors/license +0 -11
- package/node_modules/merge-descriptors/package.json +0 -50
- package/node_modules/merge-descriptors/readme.md +0 -55
- package/node_modules/mime-db/HISTORY.md +0 -541
- package/node_modules/mime-db/LICENSE +0 -23
- package/node_modules/mime-db/README.md +0 -109
- package/node_modules/mime-db/db.json +0 -9342
- package/node_modules/mime-db/index.js +0 -12
- package/node_modules/mime-db/package.json +0 -56
- package/node_modules/mime-types/HISTORY.md +0 -428
- package/node_modules/mime-types/LICENSE +0 -23
- package/node_modules/mime-types/README.md +0 -126
- package/node_modules/mime-types/index.js +0 -211
- package/node_modules/mime-types/mimeScore.js +0 -57
- package/node_modules/mime-types/package.json +0 -49
- package/node_modules/ms/index.js +0 -162
- package/node_modules/ms/license.md +0 -21
- package/node_modules/ms/package.json +0 -38
- package/node_modules/ms/readme.md +0 -59
- package/node_modules/negotiator/HISTORY.md +0 -114
- package/node_modules/negotiator/LICENSE +0 -24
- package/node_modules/negotiator/README.md +0 -212
- package/node_modules/negotiator/index.js +0 -83
- package/node_modules/negotiator/lib/charset.js +0 -169
- package/node_modules/negotiator/lib/encoding.js +0 -205
- package/node_modules/negotiator/lib/language.js +0 -179
- package/node_modules/negotiator/lib/mediaType.js +0 -294
- package/node_modules/negotiator/package.json +0 -43
- package/node_modules/object-assign/index.js +0 -90
- package/node_modules/object-assign/license +0 -21
- package/node_modules/object-assign/package.json +0 -42
- package/node_modules/object-assign/readme.md +0 -61
- package/node_modules/object-inspect/.eslintrc +0 -53
- package/node_modules/object-inspect/.github/FUNDING.yml +0 -12
- package/node_modules/object-inspect/.nycrc +0 -13
- package/node_modules/object-inspect/CHANGELOG.md +0 -424
- package/node_modules/object-inspect/LICENSE +0 -21
- package/node_modules/object-inspect/example/all.js +0 -23
- package/node_modules/object-inspect/example/circular.js +0 -6
- package/node_modules/object-inspect/example/fn.js +0 -5
- package/node_modules/object-inspect/example/inspect.js +0 -10
- package/node_modules/object-inspect/index.js +0 -544
- package/node_modules/object-inspect/package-support.json +0 -20
- package/node_modules/object-inspect/package.json +0 -105
- package/node_modules/object-inspect/readme.markdown +0 -84
- package/node_modules/object-inspect/test/bigint.js +0 -58
- package/node_modules/object-inspect/test/browser/dom.js +0 -15
- package/node_modules/object-inspect/test/circular.js +0 -16
- package/node_modules/object-inspect/test/deep.js +0 -12
- package/node_modules/object-inspect/test/element.js +0 -53
- package/node_modules/object-inspect/test/err.js +0 -48
- package/node_modules/object-inspect/test/fakes.js +0 -29
- package/node_modules/object-inspect/test/fn.js +0 -76
- package/node_modules/object-inspect/test/global.js +0 -17
- package/node_modules/object-inspect/test/has.js +0 -15
- package/node_modules/object-inspect/test/holes.js +0 -15
- package/node_modules/object-inspect/test/indent-option.js +0 -271
- package/node_modules/object-inspect/test/inspect.js +0 -139
- package/node_modules/object-inspect/test/lowbyte.js +0 -12
- package/node_modules/object-inspect/test/number.js +0 -58
- package/node_modules/object-inspect/test/quoteStyle.js +0 -26
- package/node_modules/object-inspect/test/toStringTag.js +0 -40
- package/node_modules/object-inspect/test/undef.js +0 -12
- package/node_modules/object-inspect/test/values.js +0 -261
- package/node_modules/object-inspect/test-core-js.js +0 -26
- package/node_modules/object-inspect/util.inspect.js +0 -1
- package/node_modules/on-finished/HISTORY.md +0 -98
- package/node_modules/on-finished/LICENSE +0 -23
- package/node_modules/on-finished/README.md +0 -162
- package/node_modules/on-finished/index.js +0 -234
- package/node_modules/on-finished/package.json +0 -39
- package/node_modules/once/LICENSE +0 -15
- package/node_modules/once/README.md +0 -79
- package/node_modules/once/once.js +0 -42
- package/node_modules/once/package.json +0 -33
- package/node_modules/parseurl/HISTORY.md +0 -58
- package/node_modules/parseurl/LICENSE +0 -24
- package/node_modules/parseurl/README.md +0 -133
- package/node_modules/parseurl/index.js +0 -158
- package/node_modules/parseurl/package.json +0 -40
- package/node_modules/path-key/index.d.ts +0 -40
- package/node_modules/path-key/index.js +0 -16
- package/node_modules/path-key/license +0 -9
- package/node_modules/path-key/package.json +0 -39
- package/node_modules/path-key/readme.md +0 -61
- package/node_modules/path-to-regexp/LICENSE +0 -21
- package/node_modules/path-to-regexp/Readme.md +0 -224
- package/node_modules/path-to-regexp/dist/index.d.ts +0 -144
- package/node_modules/path-to-regexp/dist/index.js +0 -409
- package/node_modules/path-to-regexp/dist/index.js.map +0 -1
- package/node_modules/path-to-regexp/package.json +0 -64
- package/node_modules/pkce-challenge/CHANGELOG.md +0 -114
- package/node_modules/pkce-challenge/LICENSE +0 -21
- package/node_modules/pkce-challenge/README.md +0 -55
- package/node_modules/pkce-challenge/dist/index.browser.d.ts +0 -19
- package/node_modules/pkce-challenge/dist/index.browser.js +0 -75
- package/node_modules/pkce-challenge/dist/index.node.cjs +0 -83
- package/node_modules/pkce-challenge/dist/index.node.d.cts +0 -19
- package/node_modules/pkce-challenge/dist/index.node.d.ts +0 -19
- package/node_modules/pkce-challenge/dist/index.node.js +0 -78
- package/node_modules/pkce-challenge/package.json +0 -59
- package/node_modules/proxy-addr/HISTORY.md +0 -161
- package/node_modules/proxy-addr/LICENSE +0 -22
- package/node_modules/proxy-addr/README.md +0 -139
- package/node_modules/proxy-addr/index.js +0 -327
- package/node_modules/proxy-addr/package.json +0 -47
- package/node_modules/qs/.editorconfig +0 -46
- package/node_modules/qs/.github/FUNDING.yml +0 -12
- package/node_modules/qs/.github/SECURITY.md +0 -11
- package/node_modules/qs/.github/THREAT_MODEL.md +0 -78
- package/node_modules/qs/.nycrc +0 -13
- package/node_modules/qs/CHANGELOG.md +0 -806
- package/node_modules/qs/LICENSE.md +0 -29
- package/node_modules/qs/README.md +0 -758
- package/node_modules/qs/dist/qs.js +0 -141
- package/node_modules/qs/eslint.config.mjs +0 -56
- package/node_modules/qs/lib/formats.js +0 -23
- package/node_modules/qs/lib/index.js +0 -11
- package/node_modules/qs/lib/parse.js +0 -373
- package/node_modules/qs/lib/stringify.js +0 -356
- package/node_modules/qs/lib/utils.js +0 -342
- package/node_modules/qs/package.json +0 -94
- package/node_modules/qs/test/empty-keys-cases.js +0 -267
- package/node_modules/qs/test/parse.js +0 -1568
- package/node_modules/qs/test/stringify.js +0 -1310
- package/node_modules/qs/test/utils.js +0 -404
- package/node_modules/range-parser/HISTORY.md +0 -56
- package/node_modules/range-parser/LICENSE +0 -23
- package/node_modules/range-parser/README.md +0 -84
- package/node_modules/range-parser/index.js +0 -162
- package/node_modules/range-parser/package.json +0 -44
- package/node_modules/raw-body/LICENSE +0 -22
- package/node_modules/raw-body/README.md +0 -223
- package/node_modules/raw-body/index.d.ts +0 -85
- package/node_modules/raw-body/index.js +0 -336
- package/node_modules/raw-body/package.json +0 -46
- package/node_modules/require-from-string/index.js +0 -34
- package/node_modules/require-from-string/license +0 -21
- package/node_modules/require-from-string/package.json +0 -28
- package/node_modules/require-from-string/readme.md +0 -56
- package/node_modules/router/HISTORY.md +0 -228
- package/node_modules/router/LICENSE +0 -23
- package/node_modules/router/README.md +0 -416
- package/node_modules/router/index.js +0 -748
- package/node_modules/router/lib/layer.js +0 -247
- package/node_modules/router/lib/route.js +0 -242
- package/node_modules/router/package.json +0 -44
- package/node_modules/safer-buffer/LICENSE +0 -21
- package/node_modules/safer-buffer/Porting-Buffer.md +0 -268
- package/node_modules/safer-buffer/Readme.md +0 -156
- package/node_modules/safer-buffer/dangerous.js +0 -58
- package/node_modules/safer-buffer/package.json +0 -34
- package/node_modules/safer-buffer/safer.js +0 -77
- package/node_modules/safer-buffer/tests.js +0 -406
- package/node_modules/send/LICENSE +0 -23
- package/node_modules/send/README.md +0 -317
- package/node_modules/send/index.js +0 -997
- package/node_modules/send/package.json +0 -63
- package/node_modules/serve-static/LICENSE +0 -25
- package/node_modules/serve-static/README.md +0 -253
- package/node_modules/serve-static/index.js +0 -208
- package/node_modules/serve-static/package.json +0 -44
- package/node_modules/setprototypeof/LICENSE +0 -13
- package/node_modules/setprototypeof/README.md +0 -31
- package/node_modules/setprototypeof/index.d.ts +0 -2
- package/node_modules/setprototypeof/index.js +0 -17
- package/node_modules/setprototypeof/package.json +0 -38
- package/node_modules/setprototypeof/test/index.js +0 -24
- package/node_modules/shebang-command/index.js +0 -19
- package/node_modules/shebang-command/license +0 -9
- package/node_modules/shebang-command/package.json +0 -34
- package/node_modules/shebang-command/readme.md +0 -34
- package/node_modules/shebang-regex/index.d.ts +0 -22
- package/node_modules/shebang-regex/index.js +0 -2
- package/node_modules/shebang-regex/license +0 -9
- package/node_modules/shebang-regex/package.json +0 -35
- package/node_modules/shebang-regex/readme.md +0 -33
- package/node_modules/side-channel/.editorconfig +0 -9
- package/node_modules/side-channel/.eslintrc +0 -12
- package/node_modules/side-channel/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel/.nycrc +0 -13
- package/node_modules/side-channel/CHANGELOG.md +0 -110
- package/node_modules/side-channel/LICENSE +0 -21
- package/node_modules/side-channel/README.md +0 -61
- package/node_modules/side-channel/index.d.ts +0 -14
- package/node_modules/side-channel/index.js +0 -43
- package/node_modules/side-channel/package.json +0 -85
- package/node_modules/side-channel/test/index.js +0 -104
- package/node_modules/side-channel/tsconfig.json +0 -9
- package/node_modules/side-channel-list/.editorconfig +0 -9
- package/node_modules/side-channel-list/.eslintrc +0 -11
- package/node_modules/side-channel-list/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel-list/.nycrc +0 -13
- package/node_modules/side-channel-list/CHANGELOG.md +0 -15
- package/node_modules/side-channel-list/LICENSE +0 -21
- package/node_modules/side-channel-list/README.md +0 -62
- package/node_modules/side-channel-list/index.d.ts +0 -13
- package/node_modules/side-channel-list/index.js +0 -113
- package/node_modules/side-channel-list/list.d.ts +0 -14
- package/node_modules/side-channel-list/package.json +0 -77
- package/node_modules/side-channel-list/test/index.js +0 -104
- package/node_modules/side-channel-list/tsconfig.json +0 -9
- package/node_modules/side-channel-map/.editorconfig +0 -9
- package/node_modules/side-channel-map/.eslintrc +0 -11
- package/node_modules/side-channel-map/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel-map/.nycrc +0 -13
- package/node_modules/side-channel-map/CHANGELOG.md +0 -22
- package/node_modules/side-channel-map/LICENSE +0 -21
- package/node_modules/side-channel-map/README.md +0 -62
- package/node_modules/side-channel-map/index.d.ts +0 -15
- package/node_modules/side-channel-map/index.js +0 -68
- package/node_modules/side-channel-map/package.json +0 -80
- package/node_modules/side-channel-map/test/index.js +0 -114
- package/node_modules/side-channel-map/tsconfig.json +0 -9
- package/node_modules/side-channel-weakmap/.editorconfig +0 -9
- package/node_modules/side-channel-weakmap/.eslintrc +0 -12
- package/node_modules/side-channel-weakmap/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel-weakmap/.nycrc +0 -13
- package/node_modules/side-channel-weakmap/CHANGELOG.md +0 -28
- package/node_modules/side-channel-weakmap/LICENSE +0 -21
- package/node_modules/side-channel-weakmap/README.md +0 -62
- package/node_modules/side-channel-weakmap/index.d.ts +0 -15
- package/node_modules/side-channel-weakmap/index.js +0 -84
- package/node_modules/side-channel-weakmap/package.json +0 -87
- package/node_modules/side-channel-weakmap/test/index.js +0 -114
- package/node_modules/side-channel-weakmap/tsconfig.json +0 -9
- package/node_modules/statuses/HISTORY.md +0 -87
- package/node_modules/statuses/LICENSE +0 -23
- package/node_modules/statuses/README.md +0 -139
- package/node_modules/statuses/codes.json +0 -65
- package/node_modules/statuses/index.js +0 -146
- package/node_modules/statuses/package.json +0 -49
- package/node_modules/toidentifier/HISTORY.md +0 -9
- package/node_modules/toidentifier/LICENSE +0 -21
- package/node_modules/toidentifier/README.md +0 -61
- package/node_modules/toidentifier/index.js +0 -32
- package/node_modules/toidentifier/package.json +0 -38
- package/node_modules/type-is/HISTORY.md +0 -292
- package/node_modules/type-is/LICENSE +0 -23
- package/node_modules/type-is/README.md +0 -198
- package/node_modules/type-is/index.js +0 -250
- package/node_modules/type-is/package.json +0 -47
- package/node_modules/unpipe/HISTORY.md +0 -4
- package/node_modules/unpipe/LICENSE +0 -22
- package/node_modules/unpipe/README.md +0 -43
- package/node_modules/unpipe/index.js +0 -69
- package/node_modules/unpipe/package.json +0 -27
- package/node_modules/vary/HISTORY.md +0 -39
- package/node_modules/vary/LICENSE +0 -22
- package/node_modules/vary/README.md +0 -101
- package/node_modules/vary/index.js +0 -149
- package/node_modules/vary/package.json +0 -43
- package/node_modules/which/LICENSE +0 -15
- package/node_modules/which/README.md +0 -54
- package/node_modules/which/bin/node-which +0 -52
- package/node_modules/which/package.json +0 -43
- package/node_modules/which/which.js +0 -125
- package/node_modules/wrappy/LICENSE +0 -15
- package/node_modules/wrappy/README.md +0 -36
- package/node_modules/wrappy/package.json +0 -29
- package/node_modules/wrappy/wrappy.js +0 -33
- package/node_modules/zod-to-json-schema/.github/CR_logotype-full-color.png +0 -0
- package/node_modules/zod-to-json-schema/.github/FUNDING.yml +0 -1
- package/node_modules/zod-to-json-schema/.prettierrc.json +0 -1
- package/node_modules/zod-to-json-schema/LICENSE +0 -15
- package/node_modules/zod-to-json-schema/README.md +0 -390
- package/node_modules/zod-to-json-schema/changelog.md +0 -82
- package/node_modules/zod-to-json-schema/contributing.md +0 -9
- package/node_modules/zod-to-json-schema/createIndex.ts +0 -32
- package/node_modules/zod-to-json-schema/dist/cjs/Options.js +0 -51
- package/node_modules/zod-to-json-schema/dist/cjs/Refs.js +0 -26
- package/node_modules/zod-to-json-schema/dist/cjs/errorMessages.js +0 -19
- package/node_modules/zod-to-json-schema/dist/cjs/getRelativePath.js +0 -12
- package/node_modules/zod-to-json-schema/dist/cjs/index.js +0 -56
- package/node_modules/zod-to-json-schema/dist/cjs/package.json +0 -1
- package/node_modules/zod-to-json-schema/dist/cjs/parseDef.js +0 -66
- package/node_modules/zod-to-json-schema/dist/cjs/parseTypes.js +0 -2
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/any.js +0 -21
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/array.js +0 -30
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/bigint.js +0 -53
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/boolean.js +0 -9
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/branded.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/catch.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/date.js +0 -50
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/default.js +0 -11
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/effects.js +0 -11
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/enum.js +0 -10
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/intersection.js +0 -56
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/literal.js +0 -25
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/map.js +0 -30
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/nativeEnum.js +0 -20
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/never.js +0 -15
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/null.js +0 -14
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/nullable.js +0 -37
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/number.js +0 -56
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/object.js +0 -76
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/optional.js +0 -25
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/pipeline.js +0 -24
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/promise.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/readonly.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/record.js +0 -65
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/set.js +0 -24
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/string.js +0 -356
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/tuple.js +0 -36
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/undefined.js +0 -10
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/union.js +0 -84
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/unknown.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/selectParser.js +0 -109
- package/node_modules/zod-to-json-schema/dist/cjs/zodToJsonSchema.js +0 -90
- package/node_modules/zod-to-json-schema/dist/esm/Options.js +0 -46
- package/node_modules/zod-to-json-schema/dist/esm/Refs.js +0 -22
- package/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +0 -14
- package/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +0 -8
- package/node_modules/zod-to-json-schema/dist/esm/index.js +0 -40
- package/node_modules/zod-to-json-schema/dist/esm/package.json +0 -1
- package/node_modules/zod-to-json-schema/dist/esm/parseDef.js +0 -62
- package/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +0 -1
- package/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +0 -17
- package/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +0 -26
- package/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +0 -49
- package/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +0 -5
- package/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +0 -46
- package/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +0 -7
- package/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +0 -7
- package/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +0 -6
- package/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +0 -52
- package/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +0 -21
- package/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +0 -26
- package/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +0 -16
- package/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +0 -11
- package/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +0 -10
- package/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +0 -33
- package/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +0 -52
- package/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +0 -72
- package/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +0 -21
- package/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +0 -20
- package/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +0 -61
- package/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +0 -20
- package/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +0 -352
- package/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +0 -32
- package/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +0 -6
- package/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +0 -80
- package/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/selectParser.js +0 -105
- package/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +0 -87
- package/node_modules/zod-to-json-schema/dist/types/Options.d.ts +0 -37
- package/node_modules/zod-to-json-schema/dist/types/Refs.d.ts +0 -17
- package/node_modules/zod-to-json-schema/dist/types/errorMessages.d.ts +0 -15
- package/node_modules/zod-to-json-schema/dist/types/getRelativePath.d.ts +0 -1
- package/node_modules/zod-to-json-schema/dist/types/index.d.ts +0 -40
- package/node_modules/zod-to-json-schema/dist/types/parseDef.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parseTypes.d.ts +0 -34
- package/node_modules/zod-to-json-schema/dist/types/parsers/any.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/parsers/array.d.ts +0 -12
- package/node_modules/zod-to-json-schema/dist/types/parsers/bigint.d.ts +0 -14
- package/node_modules/zod-to-json-schema/dist/types/parsers/boolean.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/branded.d.ts +0 -3
- package/node_modules/zod-to-json-schema/dist/types/parsers/catch.d.ts +0 -3
- package/node_modules/zod-to-json-schema/dist/types/parsers/date.d.ts +0 -15
- package/node_modules/zod-to-json-schema/dist/types/parsers/default.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/effects.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/enum.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/intersection.d.ts +0 -8
- package/node_modules/zod-to-json-schema/dist/types/parsers/literal.d.ts +0 -9
- package/node_modules/zod-to-json-schema/dist/types/parsers/map.d.ts +0 -15
- package/node_modules/zod-to-json-schema/dist/types/parsers/nativeEnum.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/never.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/null.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/parsers/nullable.d.ts +0 -10
- package/node_modules/zod-to-json-schema/dist/types/parsers/number.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/object.d.ts +0 -10
- package/node_modules/zod-to-json-schema/dist/types/parsers/optional.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/pipeline.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/parsers/promise.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/readonly.d.ts +0 -3
- package/node_modules/zod-to-json-schema/dist/types/parsers/record.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/set.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/string.d.ts +0 -73
- package/node_modules/zod-to-json-schema/dist/types/parsers/tuple.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/undefined.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/union.d.ts +0 -23
- package/node_modules/zod-to-json-schema/dist/types/parsers/unknown.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/selectParser.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/zodToJsonSchema.d.ts +0 -10
- package/node_modules/zod-to-json-schema/package.json +0 -78
- package/node_modules/zod-to-json-schema/postcjs.ts +0 -3
- package/node_modules/zod-to-json-schema/postesm.ts +0 -3
- package/web/.next/standalone/node_modules/@babel/code-frame/lib/index.js +0 -217
- package/web/.next/standalone/node_modules/@babel/code-frame/package.json +0 -32
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/identifier.js +0 -70
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/index.js +0 -57
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/keyword.js +0 -35
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/package.json +0 -31
- package/web/.next/standalone/node_modules/callsites/index.js +0 -13
- package/web/.next/standalone/node_modules/callsites/package.json +0 -39
- package/web/.next/standalone/node_modules/cosmiconfig/dist/Explorer.js +0 -170
- package/web/.next/standalone/node_modules/cosmiconfig/dist/ExplorerBase.js +0 -126
- package/web/.next/standalone/node_modules/cosmiconfig/dist/ExplorerSync.js +0 -184
- package/web/.next/standalone/node_modules/cosmiconfig/dist/cacheWrapper.js +0 -32
- package/web/.next/standalone/node_modules/cosmiconfig/dist/canUseDynamicImport.js +0 -23
- package/web/.next/standalone/node_modules/cosmiconfig/dist/defaults.js +0 -105
- package/web/.next/standalone/node_modules/cosmiconfig/dist/getDirectory.js +0 -38
- package/web/.next/standalone/node_modules/cosmiconfig/dist/getPropertyByPath.js +0 -28
- package/web/.next/standalone/node_modules/cosmiconfig/dist/index.js +0 -148
- package/web/.next/standalone/node_modules/cosmiconfig/dist/loaders.js +0 -150
- package/web/.next/standalone/node_modules/cosmiconfig/dist/merge.js +0 -40
- package/web/.next/standalone/node_modules/cosmiconfig/dist/readFile.js +0 -56
- package/web/.next/standalone/node_modules/cosmiconfig/dist/types.js +0 -3
- package/web/.next/standalone/node_modules/cosmiconfig/dist/util.js +0 -99
- package/web/.next/standalone/node_modules/cosmiconfig/package.json +0 -103
- package/web/.next/standalone/node_modules/env-paths/index.js +0 -74
- package/web/.next/standalone/node_modules/env-paths/license +0 -9
- package/web/.next/standalone/node_modules/env-paths/package.json +0 -45
- package/web/.next/standalone/node_modules/env-paths/readme.md +0 -115
- package/web/.next/standalone/node_modules/error-ex/index.js +0 -141
- package/web/.next/standalone/node_modules/error-ex/package.json +0 -46
- package/web/.next/standalone/node_modules/import-fresh/index.js +0 -34
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/index.js +0 -47
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/license +0 -9
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/package.json +0 -34
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/readme.md +0 -72
- package/web/.next/standalone/node_modules/import-fresh/package.json +0 -48
- package/web/.next/standalone/node_modules/is-arrayish/index.js +0 -10
- package/web/.next/standalone/node_modules/is-arrayish/package.json +0 -34
- package/web/.next/standalone/node_modules/js-tokens/index.js +0 -23
- package/web/.next/standalone/node_modules/js-tokens/package.json +0 -30
- package/web/.next/standalone/node_modules/js-yaml/index.js +0 -47
- package/web/.next/standalone/node_modules/js-yaml/lib/common.js +0 -59
- package/web/.next/standalone/node_modules/js-yaml/lib/dumper.js +0 -965
- package/web/.next/standalone/node_modules/js-yaml/lib/exception.js +0 -55
- package/web/.next/standalone/node_modules/js-yaml/lib/loader.js +0 -1733
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/core.js +0 -11
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/default.js +0 -22
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/failsafe.js +0 -17
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/json.js +0 -19
- package/web/.next/standalone/node_modules/js-yaml/lib/schema.js +0 -121
- package/web/.next/standalone/node_modules/js-yaml/lib/snippet.js +0 -101
- package/web/.next/standalone/node_modules/js-yaml/lib/type/binary.js +0 -125
- package/web/.next/standalone/node_modules/js-yaml/lib/type/bool.js +0 -35
- package/web/.next/standalone/node_modules/js-yaml/lib/type/float.js +0 -97
- package/web/.next/standalone/node_modules/js-yaml/lib/type/int.js +0 -156
- package/web/.next/standalone/node_modules/js-yaml/lib/type/map.js +0 -8
- package/web/.next/standalone/node_modules/js-yaml/lib/type/merge.js +0 -12
- package/web/.next/standalone/node_modules/js-yaml/lib/type/null.js +0 -35
- package/web/.next/standalone/node_modules/js-yaml/lib/type/omap.js +0 -44
- package/web/.next/standalone/node_modules/js-yaml/lib/type/pairs.js +0 -53
- package/web/.next/standalone/node_modules/js-yaml/lib/type/seq.js +0 -8
- package/web/.next/standalone/node_modules/js-yaml/lib/type/set.js +0 -29
- package/web/.next/standalone/node_modules/js-yaml/lib/type/str.js +0 -8
- package/web/.next/standalone/node_modules/js-yaml/lib/type/timestamp.js +0 -88
- package/web/.next/standalone/node_modules/js-yaml/lib/type.js +0 -66
- package/web/.next/standalone/node_modules/js-yaml/package.json +0 -66
- package/web/.next/standalone/node_modules/json-parse-even-better-errors/index.js +0 -121
- package/web/.next/standalone/node_modules/json-parse-even-better-errors/package.json +0 -33
- package/web/.next/standalone/node_modules/lines-and-columns/build/index.js +0 -62
- package/web/.next/standalone/node_modules/lines-and-columns/package.json +0 -49
- package/web/.next/standalone/node_modules/parent-module/index.js +0 -37
- package/web/.next/standalone/node_modules/parent-module/package.json +0 -46
- package/web/.next/standalone/node_modules/parse-json/index.js +0 -54
- package/web/.next/standalone/node_modules/parse-json/package.json +0 -45
- package/web/.next/standalone/node_modules/picocolors/package.json +0 -25
- package/web/.next/standalone/node_modules/picocolors/picocolors.js +0 -75
- package/web/.next/standalone/node_modules/puppeteer/lib/esm/puppeteer/getConfiguration.js +0 -122
- package/web/.next/standalone/node_modules/puppeteer/lib/esm/puppeteer/puppeteer.js +0 -40
- package/web/.next/standalone/node_modules/puppeteer/package.json +0 -145
- package/web/.next/standalone/packages/web/.env.example +0 -16
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/package.json +0 -1
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/puppeteer/getConfiguration.js +0 -122
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/puppeteer/puppeteer.js +0 -40
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/package.json +0 -145
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__02aa69a2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__03277e82._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__03d02e36._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06b6b4e9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06d0fa23._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__09d81126._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0a4bdecd._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0cdc32e7._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0f87f848._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__105e4f26._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__119c6b92._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__120e7cdf._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__137fab33._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__15c7d025._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1b995ded._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1be57288._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1d2f280d._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1e450a04._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__228603ec._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__256d4deb._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2a02fc49._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2d6ad93c._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30055cf3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__308f1548._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30e803d7._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3cfb9abc._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3d4382ac._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__412dec17._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__41e0efdc._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__42e88695._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__446f586e._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__45147dc5._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__46573554._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__46ba5636._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__47b9cd43._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4a3e9ddd._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4c56df8f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4d8a3fa3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5064824d._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__57113ab2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5b1a6733._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__64061a84._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__668ff2cd._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__6a1b89e2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__73601621._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__747ac51a._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7ddba7a1._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7e929085._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__80fb443b._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__85538066._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__865615a6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__87674bea._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__893cfe3c._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__89cafbb6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8baf1991._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__925bed49._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__92efd41b._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__97b2fe24._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9b2f424f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9ca51739._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a2cdc6d9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a80a6abe._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ac588927._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b03e9dba._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b0bc3324._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b39c66d6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c207ffb8._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c24a825f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c27d443a._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c624410f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c6ecf2e6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c9b787f4._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__cb29be7d._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d0fc233f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d35c3ac2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d3d0e4a1._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d62bf196._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d8cd86c9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__de098ee1._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e2d46590._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6181b22._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e633102f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7aa992a._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eb0c88b2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ec231481._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ed83cdf3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ef43f682._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__efbfac9f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f12a3bd3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f134e517._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f4786ce9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f7e5d8de._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__009ce29c._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__254bd2a7._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__a3c8291e._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_14ef3484._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_8ffa3492._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_f6977bba._.js +0 -3
- package/web/.next/standalone/packages/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/370a77846e2f7273.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/74d0c9993cf0b864.js +0 -6
- package/web/.next/standalone/packages/web/.next/static/chunks/a08d465aed8566c5.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/bf82908a598c6de5.css +0 -3
- package/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
- package/web/.next/static/chunks/370a77846e2f7273.js +0 -1
- package/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
- package/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
- package/web/.next/static/chunks/74d0c9993cf0b864.js +0 -6
- package/web/.next/static/chunks/a08d465aed8566c5.js +0 -1
- package/web/.next/static/chunks/bf82908a598c6de5.css +0 -3
- /package/web/.next/standalone/{node_modules/puppeteer → packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460}/lib/esm/package.json +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
- /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
- /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
|
@@ -1,2162 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Board Watcher -- watches Obsidian CONDUCTOR.md kanban boards for changes.
|
|
3
|
-
*
|
|
4
|
-
* When a task is moved to "Ready to Dispatch", the watcher:
|
|
5
|
-
* 1. Parses the card text for tags (#agent/codex, #project/my-app, #issue/42)
|
|
6
|
-
* 2. Calls SessionManager.spawn() to create an agent session
|
|
7
|
-
* 3. Moves the card to "Dispatching" with the session ID
|
|
8
|
-
* 4. On session completion, moves to "Done" with PR link
|
|
9
|
-
*
|
|
10
|
-
* Card format:
|
|
11
|
-
* - [ ] fix the login bug #agent/codex #model/o4-mini #project/my-app #type/bug
|
|
12
|
-
* - [ ] add dark mode #agent/claude-code #model/claude-opus-4-6
|
|
13
|
-
* - [ ] implement #42
|
|
14
|
-
*
|
|
15
|
-
* Board columns: Inbox → Ready to Dispatch → Dispatching → In Progress → Review → Done → Blocked
|
|
16
|
-
*/
|
|
17
|
-
import { readFileSync, writeFileSync, appendFileSync, existsSync, realpathSync, statSync, readdirSync, mkdirSync, watch as fsWatch } from "node:fs";
|
|
18
|
-
import { basename, dirname, join, resolve } from "node:path";
|
|
19
|
-
import { createHash, randomBytes } from "node:crypto";
|
|
20
|
-
import { execFile } from "node:child_process";
|
|
21
|
-
import { promisify } from "node:util";
|
|
22
|
-
import { getSectionsByAliases, getTrackedCardLines, getUncheckedTasks, moveCardLine, moveUncheckedTask, replaceLine, resolveColumnsFromBoard, parseChecklistPrefix, } from "./board-parser.js";
|
|
23
|
-
import { recordWatcherAction, resolveBoardAliasesForPath } from "./board-diagnostics.js";
|
|
24
|
-
import { isSupportedAgent, normalizeAgentName } from "./agent-names.js";
|
|
25
|
-
const execFileP = promisify(execFile);
|
|
26
|
-
const FALLBACK_WATCHER_AGENTS = [
|
|
27
|
-
"codex",
|
|
28
|
-
"claude-code",
|
|
29
|
-
"gemini",
|
|
30
|
-
"amp",
|
|
31
|
-
"cursor-cli",
|
|
32
|
-
"opencode",
|
|
33
|
-
"droid",
|
|
34
|
-
"qwen-code",
|
|
35
|
-
"ccr",
|
|
36
|
-
"github-copilot",
|
|
37
|
-
];
|
|
38
|
-
function splitKeywords(text) {
|
|
39
|
-
return text.toLowerCase().match(/[a-z0-9]+(?:-[a-z0-9]+)*/g) ?? [];
|
|
40
|
-
}
|
|
41
|
-
function hasKeyword(text, keyword) {
|
|
42
|
-
if (!keyword.trim())
|
|
43
|
-
return false;
|
|
44
|
-
const normalized = text.toLowerCase();
|
|
45
|
-
const tokens = splitKeywords(normalized);
|
|
46
|
-
const normalizedKeyword = keyword.toLowerCase().replace(/\s+/g, " ").trim();
|
|
47
|
-
if (normalizedKeyword.includes(" ")) {
|
|
48
|
-
const parts = normalizedKeyword.split(" ");
|
|
49
|
-
const window = parts.length;
|
|
50
|
-
if (window === 0)
|
|
51
|
-
return false;
|
|
52
|
-
for (let i = 0; i + window <= tokens.length; i += 1) {
|
|
53
|
-
if (tokens.slice(i, i + window).join(" ") === normalizedKeyword)
|
|
54
|
-
return true;
|
|
55
|
-
}
|
|
56
|
-
return false;
|
|
57
|
-
}
|
|
58
|
-
return tokens.includes(normalizedKeyword);
|
|
59
|
-
}
|
|
60
|
-
function resolveSupportedAgent(agent, supportedAgents) {
|
|
61
|
-
if (!agent)
|
|
62
|
-
return supportedAgents[0] ?? normalizeAgentName("codex", FALLBACK_WATCHER_AGENTS);
|
|
63
|
-
const normalized = normalizeAgentName(agent, supportedAgents);
|
|
64
|
-
if (!isSupportedAgent(normalized, supportedAgents)) {
|
|
65
|
-
throw new Error(`Unsupported agent: ${agent}`);
|
|
66
|
-
}
|
|
67
|
-
return normalized;
|
|
68
|
-
}
|
|
69
|
-
function uniqueAgents(values) {
|
|
70
|
-
const set = new Set();
|
|
71
|
-
const out = [];
|
|
72
|
-
for (const value of values) {
|
|
73
|
-
const normalized = value.trim();
|
|
74
|
-
if (!normalized)
|
|
75
|
-
continue;
|
|
76
|
-
const lower = normalized.toLowerCase();
|
|
77
|
-
if (set.has(lower))
|
|
78
|
-
continue;
|
|
79
|
-
set.add(lower);
|
|
80
|
-
out.push(lower);
|
|
81
|
-
}
|
|
82
|
-
return out;
|
|
83
|
-
}
|
|
84
|
-
// ---------------------------------------------------------------------------
|
|
85
|
-
// Card Parsing
|
|
86
|
-
// ---------------------------------------------------------------------------
|
|
87
|
-
/** Parse tags from card text: #agent/codex, #model/o4-mini, #project/my-app, #issue/42, #type/bug, #priority/high */
|
|
88
|
-
function parseTags(text) {
|
|
89
|
-
const tags = {};
|
|
90
|
-
for (const match of text.matchAll(/#([\w-]+)\/([\w.\-]+)/g)) {
|
|
91
|
-
tags[match[1]] = match[2];
|
|
92
|
-
}
|
|
93
|
-
return tags;
|
|
94
|
-
}
|
|
95
|
-
/** Strip tags and image embeds from card text to get the clean prompt. */
|
|
96
|
-
function stripTags(text) {
|
|
97
|
-
return text
|
|
98
|
-
.replace(/#[\w-]+\/[\w.\-]+/g, "") // #agent/codex etc.
|
|
99
|
-
.replace(/!\[\[([^\]]+)\]\]/g, "") // ![[image.png]]
|
|
100
|
-
.replace(/\[\[([^\]]+)\]\]/g, "") // [[note.md]]
|
|
101
|
-
.replace(/!\[([^\]]*)\]\(([^)]+)\)/g, "") // 
|
|
102
|
-
.replace(/\[(task|attempt|parent):[^\]]+\]/g, "") // [task:t-001] style metadata
|
|
103
|
-
.replace(/\s+/g, " ")
|
|
104
|
-
.trim();
|
|
105
|
-
}
|
|
106
|
-
function parseInlineMetadata(text) {
|
|
107
|
-
const meta = {};
|
|
108
|
-
for (const match of text.matchAll(/\[(task|attempt|parent):([^\]]+)\]/g)) {
|
|
109
|
-
const key = match[1];
|
|
110
|
-
const value = (match[2] ?? "").trim();
|
|
111
|
-
if (key && value) {
|
|
112
|
-
meta[key] = value;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
return meta;
|
|
116
|
-
}
|
|
117
|
-
/** Parse intake entries. Supports checkbox cards and plain text lines. */
|
|
118
|
-
function getInboxEntries(content, intakeAliases) {
|
|
119
|
-
const sections = getSectionsByAliases(content, intakeAliases);
|
|
120
|
-
if (sections.length === 0)
|
|
121
|
-
return [];
|
|
122
|
-
const entries = [];
|
|
123
|
-
for (const section of sections) {
|
|
124
|
-
const lines = section.lines;
|
|
125
|
-
for (let i = 0; i < lines.length; i++) {
|
|
126
|
-
const rawLine = lines[i] ?? "";
|
|
127
|
-
if (!rawLine.trim())
|
|
128
|
-
continue;
|
|
129
|
-
let line = rawLine;
|
|
130
|
-
if (rawLine.trimStart().startsWith(">")) {
|
|
131
|
-
const unquoted = rawLine.trimStart().replace(/^>\s?/, "");
|
|
132
|
-
const lower = unquoted.trim().toLowerCase();
|
|
133
|
-
const isInstruction = lower.startsWith("drop rough ideas")
|
|
134
|
-
|| lower.startsWith("move tagged tasks")
|
|
135
|
-
|| lower.startsWith("agent finished")
|
|
136
|
-
|| lower.startsWith("tags:");
|
|
137
|
-
if (isInstruction || !unquoted.trim())
|
|
138
|
-
continue;
|
|
139
|
-
line = unquoted;
|
|
140
|
-
}
|
|
141
|
-
const isChecklistStart = (value) => parseChecklistPrefix(value) !== null;
|
|
142
|
-
const checkboxText = parseChecklistMatch(line);
|
|
143
|
-
if (checkboxText) {
|
|
144
|
-
const blockLines = [rawLine];
|
|
145
|
-
let text = checkboxText;
|
|
146
|
-
while (i + 1 < lines.length
|
|
147
|
-
&& /^[\t ]/.test(lines[i + 1] ?? "")
|
|
148
|
-
&& !isChecklistStart((lines[i + 1] ?? "").trimStart())) {
|
|
149
|
-
i++;
|
|
150
|
-
const contRaw = lines[i] ?? "";
|
|
151
|
-
const cont = contRaw.trimStart().replace(/^>\s?/, "").trim();
|
|
152
|
-
blockLines.push(contRaw);
|
|
153
|
-
if (cont)
|
|
154
|
-
text += ` ${cont}`;
|
|
155
|
-
}
|
|
156
|
-
entries.push({ block: blockLines.join("\n"), text: text.replace(/\s+/g, " ").trim() });
|
|
157
|
-
continue;
|
|
158
|
-
}
|
|
159
|
-
if (!line.trimStart().startsWith("## ") && !line.trimStart().startsWith("%%") && !line.trimStart().startsWith("```")) {
|
|
160
|
-
const blockLines = [rawLine];
|
|
161
|
-
let text = line.trim();
|
|
162
|
-
while (i + 1 < lines.length
|
|
163
|
-
&& /^[\t ]/.test(lines[i + 1] ?? "")
|
|
164
|
-
&& !isChecklistStart((lines[i + 1] ?? "").trimStart())) {
|
|
165
|
-
i++;
|
|
166
|
-
const contRaw = lines[i] ?? "";
|
|
167
|
-
const cont = contRaw.trimStart().replace(/^>\s?/, "").trim();
|
|
168
|
-
blockLines.push(contRaw);
|
|
169
|
-
if (cont)
|
|
170
|
-
text += ` ${cont}`;
|
|
171
|
-
}
|
|
172
|
-
if (text)
|
|
173
|
-
entries.push({ block: blockLines.join("\n"), text: text.replace(/\s+/g, " ").trim() });
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
return entries;
|
|
178
|
-
}
|
|
179
|
-
function parseChecklistMatch(line) {
|
|
180
|
-
const match = parseChecklistPrefix(line);
|
|
181
|
-
if (!match)
|
|
182
|
-
return null;
|
|
183
|
-
const text = line.slice(match.textStart);
|
|
184
|
-
if (!text)
|
|
185
|
-
return null;
|
|
186
|
-
return text;
|
|
187
|
-
}
|
|
188
|
-
/** Check if a task already has required orchestration tags. */
|
|
189
|
-
function hasProperTags(taskText) {
|
|
190
|
-
return /#agent\//.test(taskText) && /#project\//.test(taskText);
|
|
191
|
-
}
|
|
192
|
-
/** Infer project from text keywords + board context. */
|
|
193
|
-
function inferProject(text, boardProjectId, boardProjects) {
|
|
194
|
-
const tagged = parseTags(text)["project"];
|
|
195
|
-
if (tagged)
|
|
196
|
-
return tagged;
|
|
197
|
-
if (boardProjectId)
|
|
198
|
-
return boardProjectId;
|
|
199
|
-
if (boardProjects.length === 1)
|
|
200
|
-
return boardProjects[0] ?? "my-app";
|
|
201
|
-
// When multiple projects share a board, match keywords in the task text
|
|
202
|
-
// against project IDs. Split each projectId on hyphens and check for matches.
|
|
203
|
-
const lower = text.toLowerCase();
|
|
204
|
-
let bestMatch;
|
|
205
|
-
let bestScore = 0;
|
|
206
|
-
for (const projectId of boardProjects) {
|
|
207
|
-
const parts = projectId.toLowerCase().split("-");
|
|
208
|
-
let score = 0;
|
|
209
|
-
for (const part of parts) {
|
|
210
|
-
if (part.length >= 3 && lower.includes(part))
|
|
211
|
-
score++;
|
|
212
|
-
}
|
|
213
|
-
if (score > bestScore) {
|
|
214
|
-
bestScore = score;
|
|
215
|
-
bestMatch = projectId;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
if (bestMatch && bestScore > 0)
|
|
219
|
-
return bestMatch;
|
|
220
|
-
return boardProjects[0] ?? "my-app";
|
|
221
|
-
}
|
|
222
|
-
function inferAgent(text, supportedAgents, projectAgent) {
|
|
223
|
-
const tagged = parseTags(text)["agent"];
|
|
224
|
-
if (tagged)
|
|
225
|
-
return resolveSupportedAgent(tagged, supportedAgents);
|
|
226
|
-
const lower = text.toLowerCase();
|
|
227
|
-
const claudeKeywords = ["architecture", "refactor", "design", "figma", "complex", "plan", "review"];
|
|
228
|
-
if (claudeKeywords.some((k) => lower.includes(k)))
|
|
229
|
-
return resolveSupportedAgent("claude-code", supportedAgents);
|
|
230
|
-
const geminiKeywords = ["gemini", "google", "vertex"];
|
|
231
|
-
if (geminiKeywords.some((k) => lower.includes(k)))
|
|
232
|
-
return resolveSupportedAgent("gemini", supportedAgents);
|
|
233
|
-
const ampKeywords = ["amplify", "amp"];
|
|
234
|
-
if (ampKeywords.some((k) => hasKeyword(lower, k)))
|
|
235
|
-
return resolveSupportedAgent("amp", supportedAgents);
|
|
236
|
-
const cursorKeywords = ["cursor"];
|
|
237
|
-
if (cursorKeywords.some((k) => lower.includes(k)))
|
|
238
|
-
return resolveSupportedAgent("cursor-cli", supportedAgents);
|
|
239
|
-
const droidKeywords = ["robot", "agentic", "android", "droid"];
|
|
240
|
-
if (droidKeywords.some((k) => lower.includes(k)))
|
|
241
|
-
return resolveSupportedAgent("droid", supportedAgents);
|
|
242
|
-
const qwenKeywords = ["qwen", "alibaba", "qwen-code", "qwen code"];
|
|
243
|
-
if (qwenKeywords.some((k) => lower.includes(k)))
|
|
244
|
-
return resolveSupportedAgent("qwen-code", supportedAgents);
|
|
245
|
-
const copilotKeywords = ["copilot", "github copilot", "gh copilot"];
|
|
246
|
-
if (copilotKeywords.some((k) => lower.includes(k)))
|
|
247
|
-
return resolveSupportedAgent("github-copilot", supportedAgents);
|
|
248
|
-
const ccrKeywords = ["ccr", "claude code router", "claude-code-router"];
|
|
249
|
-
if (ccrKeywords.some((k) => lower.includes(k)))
|
|
250
|
-
return resolveSupportedAgent("ccr", supportedAgents);
|
|
251
|
-
// Use the project's configured agent as fallback instead of the first supported agent
|
|
252
|
-
if (projectAgent)
|
|
253
|
-
return resolveSupportedAgent(projectAgent, supportedAgents);
|
|
254
|
-
return supportedAgents[0] ?? normalizeAgentName("codex", FALLBACK_WATCHER_AGENTS);
|
|
255
|
-
}
|
|
256
|
-
function inferType(text) {
|
|
257
|
-
const tagged = parseTags(text)["type"];
|
|
258
|
-
if (tagged)
|
|
259
|
-
return tagged;
|
|
260
|
-
const lower = text.toLowerCase();
|
|
261
|
-
if (lower.includes("review"))
|
|
262
|
-
return "review";
|
|
263
|
-
if (lower.includes("bug") || lower.includes("broken") || lower.includes("fix"))
|
|
264
|
-
return "bug";
|
|
265
|
-
if (lower.includes("test") || lower.includes("qa"))
|
|
266
|
-
return "test";
|
|
267
|
-
if (lower.includes("refactor"))
|
|
268
|
-
return "refactor";
|
|
269
|
-
return "feature";
|
|
270
|
-
}
|
|
271
|
-
function inferPriority(text) {
|
|
272
|
-
const tagged = parseTags(text)["priority"];
|
|
273
|
-
if (tagged)
|
|
274
|
-
return tagged;
|
|
275
|
-
const lower = text.toLowerCase();
|
|
276
|
-
if (/(urgent|critical|asap|broken|login|auth)/.test(lower))
|
|
277
|
-
return "high";
|
|
278
|
-
if (/(minor|nice to have|later)/.test(lower))
|
|
279
|
-
return "low";
|
|
280
|
-
return "medium";
|
|
281
|
-
}
|
|
282
|
-
/** Heuristic task enhancement: formats with checkbox + tags. Never splits tasks. */
|
|
283
|
-
function enhanceTaskHeuristically(rawTask, boardProjectId, boardProjects, supportedAgents, projectAgent) {
|
|
284
|
-
const normalized = stripTags(rawTask).replace(/^\s*[\-*•]\s*/, "").replace(/^\s*\[\s?\]\s*/, "").replace(/\s+/g, " ").trim();
|
|
285
|
-
if (!normalized)
|
|
286
|
-
return null;
|
|
287
|
-
if (hasProperTags(rawTask)) {
|
|
288
|
-
// Already tagged — only reformat if not a proper checklist item
|
|
289
|
-
const agentFromTag = parseTags(rawTask)["agent"];
|
|
290
|
-
if (agentFromTag) {
|
|
291
|
-
const normalizedAgent = resolveSupportedAgent(agentFromTag, supportedAgents);
|
|
292
|
-
const canonicalAgent = normalizeAgentName(normalizedAgent, supportedAgents);
|
|
293
|
-
if (normalizeAgentName(agentFromTag, supportedAgents) !== canonicalAgent) {
|
|
294
|
-
rawTask = rawTask.replace(`#agent/${agentFromTag}`, `#agent/${canonicalAgent}`);
|
|
295
|
-
}
|
|
296
|
-
const tags = rawTask.match(/#[\w-]+\/[\w.\-]+/g) ?? [];
|
|
297
|
-
const normalizedTags = tags.map((tag) => tag.startsWith("#agent/")
|
|
298
|
-
? `#agent/${canonicalAgent}`
|
|
299
|
-
: tag);
|
|
300
|
-
if (rawTask.startsWith("- [ ] "))
|
|
301
|
-
return null;
|
|
302
|
-
return `- [ ] ${normalized} ${normalizedTags.join(" ")}`.trim();
|
|
303
|
-
}
|
|
304
|
-
if (rawTask.startsWith("- [ ] "))
|
|
305
|
-
return null; // no change needed
|
|
306
|
-
return `- [ ] ${normalized} ${rawTask.match(/#[\w-]+\/[\w.\-]+/g)?.join(" ") ?? ""}`.trim();
|
|
307
|
-
}
|
|
308
|
-
const project = inferProject(rawTask, boardProjectId, boardProjects);
|
|
309
|
-
const agent = inferAgent(rawTask, supportedAgents, projectAgent);
|
|
310
|
-
const type = inferType(rawTask);
|
|
311
|
-
const priority = inferPriority(rawTask);
|
|
312
|
-
// Preserve any extra tags from the original text (e.g. #model/o4-mini, #issue/42)
|
|
313
|
-
const preservedTags = (rawTask.match(/#([\w-]+)\/([\w.\-]+)/g) ?? [])
|
|
314
|
-
.filter((tag) => !tag.startsWith("#agent/") && !tag.startsWith("#project/") && !tag.startsWith("#type/") && !tag.startsWith("#priority/"));
|
|
315
|
-
const extraTags = preservedTags.length > 0 ? " " + preservedTags.join(" ") : "";
|
|
316
|
-
return `- [ ] ${normalized} #agent/${agent} #project/${project} #type/${type} #priority/${priority}${extraTags}`;
|
|
317
|
-
}
|
|
318
|
-
/** Enhance rough Inbox tasks in-place. Never moves columns — user reviews then moves to Ready to Dispatch. */
|
|
319
|
-
/**
|
|
320
|
-
* Content-aware write guard (module scope — shared by boardWatcher).
|
|
321
|
-
* After writing a board file, stores content + timestamp. Any external write
|
|
322
|
-
* (Obsidian Kanban plugin) within the guard window gets overwritten with ours.
|
|
323
|
-
*/
|
|
324
|
-
const writeGuard = new Map();
|
|
325
|
-
const WRITE_GUARD_MS = 3_000; // Reduced from 15s to allow faster re-processing of user changes
|
|
326
|
-
/** Nudge Obsidian to reload a file after external write. */
|
|
327
|
-
function nudgeObsidian(boardPath) {
|
|
328
|
-
if (process.platform !== "darwin" && process.platform !== "linux")
|
|
329
|
-
return;
|
|
330
|
-
try {
|
|
331
|
-
let vaultRoot = dirname(boardPath);
|
|
332
|
-
for (let i = 0; i < 5; i++) {
|
|
333
|
-
if (existsSync(join(vaultRoot, ".obsidian")))
|
|
334
|
-
break;
|
|
335
|
-
vaultRoot = dirname(vaultRoot);
|
|
336
|
-
}
|
|
337
|
-
const vaultName = basename(vaultRoot);
|
|
338
|
-
const relPath = boardPath
|
|
339
|
-
.substring(boardPath.indexOf(vaultName + "/") + vaultName.length + 1)
|
|
340
|
-
.replace(/\.md$/, "");
|
|
341
|
-
const uri = `obsidian://open?vault=${encodeURIComponent(vaultName)}&file=${encodeURIComponent(relPath)}`;
|
|
342
|
-
const { execSync } = require("node:child_process");
|
|
343
|
-
const cmd = process.platform === "darwin" ? "open" : "xdg-open";
|
|
344
|
-
execSync(`${cmd} "${uri}"`, { timeout: 3_000, stdio: "ignore" });
|
|
345
|
-
}
|
|
346
|
-
catch {
|
|
347
|
-
// Non-fatal — Obsidian may not be running
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
async function enhanceInbox(boardPath, config, supportedAgents) {
|
|
351
|
-
if (!existsSync(boardPath))
|
|
352
|
-
return;
|
|
353
|
-
const content = readFileSync(boardPath, "utf-8");
|
|
354
|
-
// During guard window, ignore only our own just-written content.
|
|
355
|
-
// If user edited the file (content differs), process immediately.
|
|
356
|
-
const guard = writeGuard.get(boardPath);
|
|
357
|
-
if (guard && Date.now() - guard.at < WRITE_GUARD_MS && content === guard.content) {
|
|
358
|
-
return;
|
|
359
|
-
}
|
|
360
|
-
const workspacePath = process.env["CONDUCTOR_WORKSPACE"] ?? process.cwd();
|
|
361
|
-
const aliases = resolveBoardAliasesForPath(config, workspacePath, boardPath);
|
|
362
|
-
const entries = getInboxEntries(content, aliases.intake);
|
|
363
|
-
if (entries.length === 0)
|
|
364
|
-
return;
|
|
365
|
-
const boardProjectId = projectFromBoardPath(boardPath, config);
|
|
366
|
-
const dirName = basename(dirname(boardPath));
|
|
367
|
-
let boardProjects = Object.entries(config.projects)
|
|
368
|
-
.filter(([key, proj]) => key === dirName || proj.boardDir === dirName)
|
|
369
|
-
.map(([key]) => key);
|
|
370
|
-
// Root workspace board isn't tied to a single project directory.
|
|
371
|
-
// Fall back to all configured projects so keyword inference can pick
|
|
372
|
-
// a real project tag instead of defaulting to #project/my-app.
|
|
373
|
-
if (boardProjects.length === 0) {
|
|
374
|
-
boardProjects = Object.keys(config.projects);
|
|
375
|
-
}
|
|
376
|
-
let updatedContent = content;
|
|
377
|
-
let anyChanged = false;
|
|
378
|
-
for (const entry of entries) {
|
|
379
|
-
if (hasProperTags(entry.text))
|
|
380
|
-
continue;
|
|
381
|
-
const projectAgent = boardProjectId
|
|
382
|
-
? config.projects[boardProjectId]?.agent
|
|
383
|
-
: undefined;
|
|
384
|
-
const enhanced = enhanceTaskHeuristically(entry.text, boardProjectId, boardProjects, supportedAgents, projectAgent);
|
|
385
|
-
if (!enhanced)
|
|
386
|
-
continue;
|
|
387
|
-
if (updatedContent.includes(entry.block)) {
|
|
388
|
-
updatedContent = updatedContent.replace(entry.block, enhanced);
|
|
389
|
-
anyChanged = true;
|
|
390
|
-
console.log(`[board-watcher] Inbox enhanced: "${entry.text.substring(0, 60)}"`);
|
|
391
|
-
recordWatcherAction(workspacePath, {
|
|
392
|
-
level: "info",
|
|
393
|
-
action: `Inbox enhanced: ${entry.text.substring(0, 60)}`,
|
|
394
|
-
boardPath,
|
|
395
|
-
});
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
if (anyChanged) {
|
|
399
|
-
writeFileSync(boardPath, updatedContent, "utf-8");
|
|
400
|
-
writeGuard.set(boardPath, { content: updatedContent, at: Date.now() });
|
|
401
|
-
console.log(`[board-watcher] Inbox enhancement written: ${boardPath}`);
|
|
402
|
-
recordWatcherAction(workspacePath, {
|
|
403
|
-
level: "info",
|
|
404
|
-
action: "Inbox enhancement written",
|
|
405
|
-
boardPath,
|
|
406
|
-
});
|
|
407
|
-
nudgeObsidian(boardPath);
|
|
408
|
-
}
|
|
409
|
-
else {
|
|
410
|
-
console.log(`[board-watcher] No changes made to ${basename(boardPath)}`);
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
/** Image file extensions for type detection. */
|
|
414
|
-
const IMAGE_EXTENSIONS = new Set([
|
|
415
|
-
".png", ".jpg", ".jpeg", ".gif", ".webp", ".svg", ".bmp", ".ico", ".tiff",
|
|
416
|
-
]);
|
|
417
|
-
function attachmentTypeFromPath(value) {
|
|
418
|
-
const normalized = value.toLowerCase();
|
|
419
|
-
for (const ext of IMAGE_EXTENSIONS) {
|
|
420
|
-
if (normalized.endsWith(ext))
|
|
421
|
-
return "image";
|
|
422
|
-
}
|
|
423
|
-
return "file";
|
|
424
|
-
}
|
|
425
|
-
function stripWikiDecorators(rawPath) {
|
|
426
|
-
let value = rawPath.trim();
|
|
427
|
-
const pipeIndex = value.indexOf("|");
|
|
428
|
-
if (pipeIndex >= 0)
|
|
429
|
-
value = value.slice(0, pipeIndex);
|
|
430
|
-
const hashIndex = value.indexOf("#");
|
|
431
|
-
if (hashIndex >= 0)
|
|
432
|
-
value = value.slice(0, hashIndex);
|
|
433
|
-
return value.trim();
|
|
434
|
-
}
|
|
435
|
-
function stripMarkdownLinkDecorators(rawPath) {
|
|
436
|
-
let value = rawPath.trim();
|
|
437
|
-
if (value.startsWith("<") && value.endsWith(">")) {
|
|
438
|
-
value = value.slice(1, -1).trim();
|
|
439
|
-
}
|
|
440
|
-
const withTitle = value.match(/^(.+?)\s+["'][^"']*["']$/);
|
|
441
|
-
if (withTitle?.[1]) {
|
|
442
|
-
value = withTitle[1].trim();
|
|
443
|
-
}
|
|
444
|
-
return value;
|
|
445
|
-
}
|
|
446
|
-
/** Extract image/file attachment references from card text. */
|
|
447
|
-
function extractAttachments(text, workspacePath) {
|
|
448
|
-
const attachments = [];
|
|
449
|
-
const seen = new Set();
|
|
450
|
-
const addAttachment = (ref, rawPath) => {
|
|
451
|
-
const resolved = resolveAttachmentPath(rawPath, workspacePath);
|
|
452
|
-
if (!resolved || seen.has(resolved))
|
|
453
|
-
return;
|
|
454
|
-
seen.add(resolved);
|
|
455
|
-
attachments.push({
|
|
456
|
-
path: resolved,
|
|
457
|
-
ref,
|
|
458
|
-
type: attachmentTypeFromPath(rawPath),
|
|
459
|
-
});
|
|
460
|
-
};
|
|
461
|
-
// Obsidian wiki-link embeds: ![[image.png]] or ![[folder/mockup.png]]
|
|
462
|
-
for (const match of text.matchAll(/!\[\[([^\]]+)\]\]/g)) {
|
|
463
|
-
const ref = match[0];
|
|
464
|
-
const rawPath = match[1];
|
|
465
|
-
addAttachment(ref, rawPath);
|
|
466
|
-
}
|
|
467
|
-
// Obsidian wiki-links: [[context/spec.md]] or [[note|label]]
|
|
468
|
-
for (const match of text.matchAll(/\[\[([^\]]+)\]\]/g)) {
|
|
469
|
-
const start = match.index ?? 0;
|
|
470
|
-
if (start > 0 && text[start - 1] === "!")
|
|
471
|
-
continue;
|
|
472
|
-
const ref = match[0];
|
|
473
|
-
const rawPath = match[1];
|
|
474
|
-
addAttachment(ref, rawPath);
|
|
475
|
-
}
|
|
476
|
-
// Standard markdown embeds: 
|
|
477
|
-
for (const match of text.matchAll(/!\[([^\]]*)\]\(([^)]+)\)/g)) {
|
|
478
|
-
const ref = match[0];
|
|
479
|
-
const rawPath = match[2];
|
|
480
|
-
addAttachment(ref, rawPath);
|
|
481
|
-
}
|
|
482
|
-
// Standard markdown links to local files: [Spec](docs/spec.md)
|
|
483
|
-
for (const match of text.matchAll(/\[([^\]]*)\]\(([^)]+)\)/g)) {
|
|
484
|
-
const start = match.index ?? 0;
|
|
485
|
-
if (start > 0 && text[start - 1] === "!")
|
|
486
|
-
continue;
|
|
487
|
-
const ref = match[0];
|
|
488
|
-
const rawPath = match[2];
|
|
489
|
-
addAttachment(ref, rawPath);
|
|
490
|
-
}
|
|
491
|
-
return attachments;
|
|
492
|
-
}
|
|
493
|
-
/**
|
|
494
|
-
* Resolve an attachment path relative to the workspace.
|
|
495
|
-
* Only allows paths that resolve within the workspace directory (path traversal protection).
|
|
496
|
-
*/
|
|
497
|
-
function resolveAttachmentPath(rawPath, workspacePath) {
|
|
498
|
-
if (!rawPath.trim())
|
|
499
|
-
return null;
|
|
500
|
-
let normalizedRawPath = stripWikiDecorators(rawPath);
|
|
501
|
-
normalizedRawPath = stripMarkdownLinkDecorators(normalizedRawPath);
|
|
502
|
-
normalizedRawPath = normalizedRawPath.trim();
|
|
503
|
-
if (!normalizedRawPath)
|
|
504
|
-
return null;
|
|
505
|
-
// Ignore web links, vault deep links, and anchors.
|
|
506
|
-
if (/^[a-z][a-z0-9+.-]*:\/\//i.test(normalizedRawPath)
|
|
507
|
-
|| normalizedRawPath.startsWith("obsidian://")
|
|
508
|
-
|| normalizedRawPath.startsWith("mailto:")
|
|
509
|
-
|| normalizedRawPath.startsWith("#")) {
|
|
510
|
-
return null;
|
|
511
|
-
}
|
|
512
|
-
try {
|
|
513
|
-
normalizedRawPath = decodeURIComponent(normalizedRawPath);
|
|
514
|
-
}
|
|
515
|
-
catch {
|
|
516
|
-
// Keep original when path contains malformed %-encoding.
|
|
517
|
-
}
|
|
518
|
-
normalizedRawPath = normalizedRawPath.replace(/\\/g, "/").trim();
|
|
519
|
-
// Block absolute paths and ~ expansion — only allow workspace-relative paths.
|
|
520
|
-
// This prevents path traversal attacks via cards referencing /etc/passwd, ~/.ssh/id_rsa, etc.
|
|
521
|
-
if (normalizedRawPath.startsWith("/") || normalizedRawPath.startsWith("~")) {
|
|
522
|
-
return null;
|
|
523
|
-
}
|
|
524
|
-
const workspaceRoot = resolve(workspacePath);
|
|
525
|
-
const workspacePrefix = workspaceRoot.endsWith("/") ? workspaceRoot : `${workspaceRoot}/`;
|
|
526
|
-
const resolved = resolve(workspaceRoot, normalizedRawPath);
|
|
527
|
-
if (resolved !== workspaceRoot && !resolved.startsWith(workspacePrefix)) {
|
|
528
|
-
return null;
|
|
529
|
-
}
|
|
530
|
-
if (existsSync(resolved))
|
|
531
|
-
return resolved;
|
|
532
|
-
// Obsidian note links commonly omit the .md extension.
|
|
533
|
-
if (!normalizedRawPath.endsWith(".md")) {
|
|
534
|
-
const withMd = resolve(workspaceRoot, `${normalizedRawPath}.md`);
|
|
535
|
-
if ((withMd === workspaceRoot || withMd.startsWith(workspacePrefix)) && existsSync(withMd)) {
|
|
536
|
-
return withMd;
|
|
537
|
-
}
|
|
538
|
-
}
|
|
539
|
-
// Try attachments subfolder (common Obsidian convention)
|
|
540
|
-
const inAttachments = resolve(workspaceRoot, "attachments", normalizedRawPath);
|
|
541
|
-
if ((inAttachments === workspaceRoot || inAttachments.startsWith(workspacePrefix)) && existsSync(inAttachments)) {
|
|
542
|
-
return inAttachments;
|
|
543
|
-
}
|
|
544
|
-
// File doesn't exist yet — still pass the path so the agent gets the reference
|
|
545
|
-
return resolved;
|
|
546
|
-
}
|
|
547
|
-
/** Detect issue references like #42 or INT-123. */
|
|
548
|
-
function detectIssue(text) {
|
|
549
|
-
// Explicit #issue/ tag takes priority (already parsed)
|
|
550
|
-
// Look for bare #N patterns (but not #agent/... or #project/...)
|
|
551
|
-
const bareIssue = text.match(/(?<!\w)#(\d+)(?!\w)/);
|
|
552
|
-
if (bareIssue)
|
|
553
|
-
return bareIssue[1];
|
|
554
|
-
// Jira-style: INT-123, PROJ-456
|
|
555
|
-
const jiraMatch = text.match(/\b([A-Z]{2,10}-\d+)\b/);
|
|
556
|
-
if (jiraMatch)
|
|
557
|
-
return jiraMatch[1];
|
|
558
|
-
return undefined;
|
|
559
|
-
}
|
|
560
|
-
/** Normalize agent shorthand aliases to canonical plugin names. */
|
|
561
|
-
function normalizeAgent(agent, supportedAgents) {
|
|
562
|
-
return resolveSupportedAgent(agent, supportedAgents);
|
|
563
|
-
}
|
|
564
|
-
/** Auto-detect agent from task description if no #agent/ tag. */
|
|
565
|
-
function autoDetectAgent(prompt, supportedAgents) {
|
|
566
|
-
const lower = prompt.toLowerCase();
|
|
567
|
-
const claudeKeywords = ["design", "architect", "plan", "feature", "build new", "refactor", "complex"];
|
|
568
|
-
for (const kw of claudeKeywords) {
|
|
569
|
-
if (lower.includes(kw))
|
|
570
|
-
return resolveSupportedAgent("claude-code", supportedAgents);
|
|
571
|
-
}
|
|
572
|
-
const geminiKeywords = ["gemini", "google", "vertex"];
|
|
573
|
-
for (const kw of geminiKeywords) {
|
|
574
|
-
if (lower.includes(kw))
|
|
575
|
-
return resolveSupportedAgent("gemini", supportedAgents);
|
|
576
|
-
}
|
|
577
|
-
const ampKeywords = ["amplify", "amp"];
|
|
578
|
-
for (const kw of ampKeywords) {
|
|
579
|
-
if (hasKeyword(lower, kw))
|
|
580
|
-
return resolveSupportedAgent("amp", supportedAgents);
|
|
581
|
-
}
|
|
582
|
-
const cursorKeywords = ["cursor"];
|
|
583
|
-
for (const kw of cursorKeywords) {
|
|
584
|
-
if (lower.includes(kw))
|
|
585
|
-
return resolveSupportedAgent("cursor-cli", supportedAgents);
|
|
586
|
-
}
|
|
587
|
-
const droidKeywords = ["robot", "agentic", "android", "droid"];
|
|
588
|
-
for (const kw of droidKeywords) {
|
|
589
|
-
if (lower.includes(kw))
|
|
590
|
-
return resolveSupportedAgent("droid", supportedAgents);
|
|
591
|
-
}
|
|
592
|
-
const qwenKeywords = ["qwen", "qwen-code", "qwen code"];
|
|
593
|
-
for (const kw of qwenKeywords) {
|
|
594
|
-
if (lower.includes(kw))
|
|
595
|
-
return resolveSupportedAgent("qwen-code", supportedAgents);
|
|
596
|
-
}
|
|
597
|
-
const copilotKeywords = ["copilot", "github copilot", "gh copilot"];
|
|
598
|
-
for (const kw of copilotKeywords) {
|
|
599
|
-
if (lower.includes(kw))
|
|
600
|
-
return resolveSupportedAgent("github-copilot", supportedAgents);
|
|
601
|
-
}
|
|
602
|
-
const ccrKeywords = ["ccr", "claude code router", "claude-code-router"];
|
|
603
|
-
for (const kw of ccrKeywords) {
|
|
604
|
-
if (lower.includes(kw))
|
|
605
|
-
return resolveSupportedAgent("ccr", supportedAgents);
|
|
606
|
-
}
|
|
607
|
-
return supportedAgents[0] ?? normalizeAgentName("codex", FALLBACK_WATCHER_AGENTS);
|
|
608
|
-
}
|
|
609
|
-
/** Parse a kanban card into structured data. */
|
|
610
|
-
function parseCard(cardText, workspacePath) {
|
|
611
|
-
const tags = parseTags(cardText);
|
|
612
|
-
const metadata = parseInlineMetadata(cardText);
|
|
613
|
-
const prompt = stripTags(cardText);
|
|
614
|
-
const issueFromTag = tags["issue"];
|
|
615
|
-
const issueFromText = detectIssue(cardText);
|
|
616
|
-
const attachments = extractAttachments(cardText, workspacePath);
|
|
617
|
-
return {
|
|
618
|
-
raw: cardText,
|
|
619
|
-
prompt,
|
|
620
|
-
agent: tags["agent"],
|
|
621
|
-
model: tags["model"],
|
|
622
|
-
profile: tags["profile"],
|
|
623
|
-
project: tags["project"],
|
|
624
|
-
issueId: issueFromTag ?? issueFromText,
|
|
625
|
-
taskType: tags["type"],
|
|
626
|
-
priority: tags["priority"],
|
|
627
|
-
taskId: metadata["task"],
|
|
628
|
-
attemptId: metadata["attempt"],
|
|
629
|
-
parentTaskId: metadata["parent"],
|
|
630
|
-
attachments,
|
|
631
|
-
};
|
|
632
|
-
}
|
|
633
|
-
// ---------------------------------------------------------------------------
|
|
634
|
-
// Board Parsing / Editing
|
|
635
|
-
// ---------------------------------------------------------------------------
|
|
636
|
-
/** Extract tasks from a specific column. Returns unchecked items only. */
|
|
637
|
-
function getColumnTasks(content, column) {
|
|
638
|
-
return getUncheckedTasks(content, column);
|
|
639
|
-
}
|
|
640
|
-
/** Move a task from one column to another. Updates the card text if needed. */
|
|
641
|
-
function moveCard(content, taskText, fromColumn, toColumn, newCardText) {
|
|
642
|
-
return moveUncheckedTask(content, taskText, fromColumn, toColumn, newCardText);
|
|
643
|
-
}
|
|
644
|
-
// ---------------------------------------------------------------------------
|
|
645
|
-
// Status Display & Card Tracking
|
|
646
|
-
// ---------------------------------------------------------------------------
|
|
647
|
-
/** Status emoji for kanban card display. */
|
|
648
|
-
const STATUS_EMOJI = {
|
|
649
|
-
spawning: "🔄",
|
|
650
|
-
working: "🟢",
|
|
651
|
-
pr_open: "🔵",
|
|
652
|
-
ci_failed: "🔴",
|
|
653
|
-
review_pending: "🟡",
|
|
654
|
-
changes_requested: "🟠",
|
|
655
|
-
approved: "✅",
|
|
656
|
-
mergeable: "🟢",
|
|
657
|
-
merged: "✨",
|
|
658
|
-
cleanup: "🧹",
|
|
659
|
-
needs_input: "⏸️",
|
|
660
|
-
stuck: "⚠️",
|
|
661
|
-
errored: "❌",
|
|
662
|
-
killed: "💀",
|
|
663
|
-
done: "✅",
|
|
664
|
-
terminated: "🛑",
|
|
665
|
-
};
|
|
666
|
-
/** Terminal statuses that get enriched Done card format. */
|
|
667
|
-
const DONE_STATUSES = new Set([
|
|
668
|
-
"done", "merged", "killed", "terminated", "cleanup", "errored",
|
|
669
|
-
]);
|
|
670
|
-
/** Format a duration between two dates into a human-readable string. */
|
|
671
|
-
function formatDuration(startDate, endDate) {
|
|
672
|
-
const ms = endDate.getTime() - startDate.getTime();
|
|
673
|
-
if (ms < 0)
|
|
674
|
-
return "0s";
|
|
675
|
-
const seconds = Math.floor(ms / 1000);
|
|
676
|
-
if (seconds < 60)
|
|
677
|
-
return `${seconds}s`;
|
|
678
|
-
const minutes = Math.floor(seconds / 60);
|
|
679
|
-
if (minutes < 60)
|
|
680
|
-
return `${minutes}m`;
|
|
681
|
-
const hours = Math.floor(minutes / 60);
|
|
682
|
-
const remainMins = minutes % 60;
|
|
683
|
-
return remainMins > 0 ? `${hours}h ${remainMins}m` : `${hours}h`;
|
|
684
|
-
}
|
|
685
|
-
/** Format a cost estimate into a readable string. */
|
|
686
|
-
function formatCost(costUsd) {
|
|
687
|
-
if (costUsd <= 0)
|
|
688
|
-
return "";
|
|
689
|
-
if (costUsd < 0.01)
|
|
690
|
-
return "<$0.01";
|
|
691
|
-
return `$${costUsd.toFixed(2)}`;
|
|
692
|
-
}
|
|
693
|
-
function formatTaskMarkers(meta) {
|
|
694
|
-
const parts = [];
|
|
695
|
-
const taskId = meta["taskId"];
|
|
696
|
-
const attemptId = meta["attemptId"];
|
|
697
|
-
const parentTaskId = meta["parentTaskId"];
|
|
698
|
-
if (taskId)
|
|
699
|
-
parts.push(`[task:${taskId}]`);
|
|
700
|
-
if (attemptId)
|
|
701
|
-
parts.push(`[attempt:${attemptId}]`);
|
|
702
|
-
if (parentTaskId)
|
|
703
|
-
parts.push(`[parent:${parentTaskId}]`);
|
|
704
|
-
return parts.join(" ");
|
|
705
|
-
}
|
|
706
|
-
/** Map session status to canonical board role. */
|
|
707
|
-
function statusToColumnRole(status) {
|
|
708
|
-
switch (status) {
|
|
709
|
-
case "spawning":
|
|
710
|
-
return "dispatching";
|
|
711
|
-
case "working":
|
|
712
|
-
return "inProgress";
|
|
713
|
-
case "pr_open":
|
|
714
|
-
case "ci_failed":
|
|
715
|
-
case "review_pending":
|
|
716
|
-
case "changes_requested":
|
|
717
|
-
case "approved":
|
|
718
|
-
case "mergeable":
|
|
719
|
-
return "review";
|
|
720
|
-
case "merged":
|
|
721
|
-
case "done":
|
|
722
|
-
case "cleanup":
|
|
723
|
-
case "killed":
|
|
724
|
-
case "terminated":
|
|
725
|
-
return "done";
|
|
726
|
-
case "stuck":
|
|
727
|
-
case "errored":
|
|
728
|
-
case "needs_input":
|
|
729
|
-
return "blocked";
|
|
730
|
-
default:
|
|
731
|
-
return "inProgress";
|
|
732
|
-
}
|
|
733
|
-
}
|
|
734
|
-
/** Extract session ID from a card line — matches [prefix-slug-N] not followed by ( (excludes markdown links). */
|
|
735
|
-
function extractSessionId(line) {
|
|
736
|
-
// Matches both old format [pp-3] and new format [pp-netlify-env-3]
|
|
737
|
-
const matches = [...line.matchAll(/\[([a-zA-Z][\w]*(?:-[\w]+)*-\d+)\](?!\()/g)];
|
|
738
|
-
if (matches.length === 0)
|
|
739
|
-
return null;
|
|
740
|
-
return matches[matches.length - 1][1];
|
|
741
|
-
}
|
|
742
|
-
function extractCardMarker(line, marker) {
|
|
743
|
-
const match = line.match(new RegExp(`\\[${marker}:([^\\]]+)\\]`));
|
|
744
|
-
return match?.[1]?.trim() ?? null;
|
|
745
|
-
}
|
|
746
|
-
/** Extract base prompt from a card line (text before the [sessionId] marker, excluding dynamic suffix). */
|
|
747
|
-
function extractBasePrompt(line, sessionId) {
|
|
748
|
-
const withoutMeta = line
|
|
749
|
-
.replace(/\s*\[(task|attempt|parent):[^\]]+\]/g, "")
|
|
750
|
-
.replace(/\s+/g, " ");
|
|
751
|
-
const marker = `[${sessionId}]`;
|
|
752
|
-
const afterCheckbox = withoutMeta.replace(/^- \[[ x]\] /, "");
|
|
753
|
-
const markerIdx = afterCheckbox.indexOf(marker);
|
|
754
|
-
if (markerIdx === -1)
|
|
755
|
-
return afterCheckbox.replace(/\s*—\s*.*$/, "").trim();
|
|
756
|
-
return afterCheckbox.slice(0, markerIdx).trim();
|
|
757
|
-
}
|
|
758
|
-
/** Get all cards with [sessionId] markers from tracked columns. */
|
|
759
|
-
function getAllTrackedCards(content, trackedColumns) {
|
|
760
|
-
const cards = [];
|
|
761
|
-
for (const item of getTrackedCardLines(content, trackedColumns)) {
|
|
762
|
-
const sessionId = extractSessionId(item.line);
|
|
763
|
-
if (!sessionId)
|
|
764
|
-
continue;
|
|
765
|
-
cards.push({
|
|
766
|
-
sessionId,
|
|
767
|
-
line: item.line,
|
|
768
|
-
column: item.column,
|
|
769
|
-
basePrompt: extractBasePrompt(item.line, sessionId),
|
|
770
|
-
taskId: extractCardMarker(item.line, "task"),
|
|
771
|
-
attemptId: extractCardMarker(item.line, "attempt"),
|
|
772
|
-
parentTaskId: extractCardMarker(item.line, "parent"),
|
|
773
|
-
});
|
|
774
|
-
}
|
|
775
|
-
return cards;
|
|
776
|
-
}
|
|
777
|
-
// ---------------------------------------------------------------------------
|
|
778
|
-
// Card Formatting
|
|
779
|
-
// ---------------------------------------------------------------------------
|
|
780
|
-
// ---------------------------------------------------------------------------
|
|
781
|
-
// Obsidian Session Notes
|
|
782
|
-
// ---------------------------------------------------------------------------
|
|
783
|
-
/** Derive display status by combining session status with live activity state. */
|
|
784
|
-
function deriveDisplayStatus(session) {
|
|
785
|
-
// Activity-based overrides take priority when they conflict with status
|
|
786
|
-
if (session.activity === "waiting_input" || session.activity === "blocked") {
|
|
787
|
-
return { display: "waiting for input", emoji: STATUS_EMOJI["needs_input"] ?? "⏸️" };
|
|
788
|
-
}
|
|
789
|
-
if (session.activity === "exited" && !DONE_STATUSES.has(session.status)) {
|
|
790
|
-
return { display: "exited (crashed?)", emoji: "💀" };
|
|
791
|
-
}
|
|
792
|
-
if (session.activity === "active") {
|
|
793
|
-
return { display: "actively working", emoji: STATUS_EMOJI["working"] ?? "🟢" };
|
|
794
|
-
}
|
|
795
|
-
if (session.activity === "idle" && !DONE_STATUSES.has(session.status)) {
|
|
796
|
-
return { display: "idle", emoji: "💤" };
|
|
797
|
-
}
|
|
798
|
-
// Fall back to session status
|
|
799
|
-
return {
|
|
800
|
-
display: session.status.replace(/_/g, " "),
|
|
801
|
-
emoji: STATUS_EMOJI[session.status] ?? "❓",
|
|
802
|
-
};
|
|
803
|
-
}
|
|
804
|
-
/** Write/update an Obsidian markdown note for a session with full details. */
|
|
805
|
-
function writeSessionNote(workspacePath, sessionId, session, basePrompt, config) {
|
|
806
|
-
const sessionsDir = join(workspacePath, "sessions");
|
|
807
|
-
if (!existsSync(sessionsDir)) {
|
|
808
|
-
mkdirSync(sessionsDir, { recursive: true });
|
|
809
|
-
}
|
|
810
|
-
const notePath = join(sessionsDir, `${sessionId}.md`);
|
|
811
|
-
const meta = session.metadata;
|
|
812
|
-
const { display: displayStatus, emoji } = deriveDisplayStatus(session);
|
|
813
|
-
const created = session.createdAt;
|
|
814
|
-
const lastAct = session.lastActivityAt;
|
|
815
|
-
const duration = formatDuration(created, lastAct);
|
|
816
|
-
const agent = meta["agent"] ?? "unknown";
|
|
817
|
-
const project = session.projectId || meta["project"] || "unknown";
|
|
818
|
-
const boardProject = config.projects[project];
|
|
819
|
-
const boardRef = boardProject?.boardDir ?? project;
|
|
820
|
-
let md = `---\nsession: ${sessionId}\nproject: ${project}\nagent: ${agent}\nstatus: ${session.status}\n`;
|
|
821
|
-
if (session.activity)
|
|
822
|
-
md += `activity: ${session.activity}\n`;
|
|
823
|
-
if (session.branch)
|
|
824
|
-
md += `branch: ${session.branch}\n`;
|
|
825
|
-
if (session.pr)
|
|
826
|
-
md += `pr: ${session.pr.number}\n`;
|
|
827
|
-
md += `created: ${created.toISOString()}\nupdated: ${lastAct.toISOString()}\n---\n\n`;
|
|
828
|
-
md += `# ${emoji} ${basePrompt}\n\n`;
|
|
829
|
-
// Overview table
|
|
830
|
-
md += `| Field | Value |\n|-------|-------|\n`;
|
|
831
|
-
md += `| **Session** | \`${sessionId}\` |\n`;
|
|
832
|
-
md += `| **Project** | ${project} |\n`;
|
|
833
|
-
md += `| **Agent** | ${agent} |\n`;
|
|
834
|
-
md += `| **Status** | ${emoji} ${displayStatus} |\n`;
|
|
835
|
-
if (session.activity)
|
|
836
|
-
md += `| **Activity** | ${session.activity} |\n`;
|
|
837
|
-
md += `| **Created** | ${created.toISOString().replace("T", " ").slice(0, 19)} |\n`;
|
|
838
|
-
md += `| **Last Activity** | ${lastAct.toISOString().replace("T", " ").slice(0, 19)} |\n`;
|
|
839
|
-
md += `| **Duration** | ${duration} |\n`;
|
|
840
|
-
if (session.branch)
|
|
841
|
-
md += `| **Branch** | \`${session.branch}\` |\n`;
|
|
842
|
-
if (meta["worktree"])
|
|
843
|
-
md += `| **Worktree** | \`${meta["worktree"]}\` |\n`;
|
|
844
|
-
if (meta["devServerLog"])
|
|
845
|
-
md += `| **Dev Server Log** | \`${meta["devServerLog"]}\` |\n`;
|
|
846
|
-
md += `\n`;
|
|
847
|
-
// Summary — prefer real agent summary; if fallback/noisy, synthesize from PR state.
|
|
848
|
-
const rawSummary = session.agentInfo?.summary ?? meta["summary"];
|
|
849
|
-
const normalizedSummary = rawSummary?.replace(/\s+/g, " ").trim();
|
|
850
|
-
const isFallback = (session.agentInfo?.summaryIsFallback
|
|
851
|
-
?? /^(Codex|Claude)\s+session\s*\(/i.test(normalizedSummary ?? ""))
|
|
852
|
-
|| (normalizedSummary?.startsWith("You are an AI coding agent managed by Conductor") ?? false);
|
|
853
|
-
let summaryToShow = null;
|
|
854
|
-
if (normalizedSummary && !isFallback) {
|
|
855
|
-
summaryToShow = normalizedSummary;
|
|
856
|
-
}
|
|
857
|
-
else if (session.pr) {
|
|
858
|
-
const prTitle = session.pr.title || meta["prTitle"] || "";
|
|
859
|
-
const prState = meta["prState"] ?? "open";
|
|
860
|
-
const ciStatus = meta["ciStatus"] ?? "none";
|
|
861
|
-
const reviewDecision = meta["reviewDecision"] ?? "none";
|
|
862
|
-
summaryToShow = `PR #${session.pr.number}${prTitle ? ` — ${prTitle}` : ""}. State: ${prState}. CI: ${ciStatus}. Review: ${reviewDecision}.`;
|
|
863
|
-
if (meta["mergeReadiness"]) {
|
|
864
|
-
try {
|
|
865
|
-
const readiness = JSON.parse(meta["mergeReadiness"]);
|
|
866
|
-
if (Array.isArray(readiness.blockers) && readiness.blockers.length > 0) {
|
|
867
|
-
summaryToShow += ` Blockers: ${readiness.blockers.join("; ")}.`;
|
|
868
|
-
}
|
|
869
|
-
}
|
|
870
|
-
catch {
|
|
871
|
-
// ignore
|
|
872
|
-
}
|
|
873
|
-
}
|
|
874
|
-
}
|
|
875
|
-
if (summaryToShow) {
|
|
876
|
-
md += `## Summary
|
|
877
|
-
|
|
878
|
-
${summaryToShow}
|
|
879
|
-
|
|
880
|
-
`;
|
|
881
|
-
}
|
|
882
|
-
// PR details
|
|
883
|
-
if (session.pr) {
|
|
884
|
-
const pr = session.pr;
|
|
885
|
-
md += `## Pull Request\n\n`;
|
|
886
|
-
md += `- **PR**: [#${pr.number} — ${pr.title}](${pr.url})\n`;
|
|
887
|
-
md += `- **Branch**: \`${pr.branch}\` → \`${pr.baseBranch}\`\n`;
|
|
888
|
-
if (pr.isDraft)
|
|
889
|
-
md += `- **Draft**: yes\n`;
|
|
890
|
-
const ciStatus = meta["ciStatus"] ?? "none";
|
|
891
|
-
const reviewDecision = meta["reviewDecision"] ?? "none";
|
|
892
|
-
const prState = meta["prState"] ?? "open";
|
|
893
|
-
const ciEmoji = ciStatus === "passing" ? "✅" : ciStatus === "failing" ? "❌" : ciStatus === "pending" ? "⏳" : "—";
|
|
894
|
-
const revEmoji = reviewDecision === "approved" ? "✅" : reviewDecision === "changes_requested" ? "🔄" : reviewDecision === "pending" ? "⏳" : "—";
|
|
895
|
-
md += `- **State**: ${prState}\n`;
|
|
896
|
-
md += `- **CI**: ${ciEmoji} ${ciStatus}\n`;
|
|
897
|
-
md += `- **Review**: ${revEmoji} ${reviewDecision}\n`;
|
|
898
|
-
// Merge readiness
|
|
899
|
-
if (meta["mergeReadiness"]) {
|
|
900
|
-
try {
|
|
901
|
-
const readiness = JSON.parse(meta["mergeReadiness"]);
|
|
902
|
-
const check = (v) => v ? "✅" : "❌";
|
|
903
|
-
md += `\n### Merge Readiness\n\n`;
|
|
904
|
-
md += `- ${check(readiness["mergeable"])} Mergeable\n`;
|
|
905
|
-
md += `- ${check(readiness["ciPassing"])} CI Passing\n`;
|
|
906
|
-
md += `- ${check(readiness["approved"])} Approved\n`;
|
|
907
|
-
md += `- ${check(readiness["noConflicts"])} No Conflicts\n`;
|
|
908
|
-
if (Array.isArray(readiness["blockers"]) && readiness["blockers"].length > 0) {
|
|
909
|
-
md += `\n**Blockers:**\n`;
|
|
910
|
-
for (const b of readiness["blockers"]) {
|
|
911
|
-
md += `- ${b}\n`;
|
|
912
|
-
}
|
|
913
|
-
}
|
|
914
|
-
}
|
|
915
|
-
catch { /* ignore */ }
|
|
916
|
-
}
|
|
917
|
-
md += `\n`;
|
|
918
|
-
}
|
|
919
|
-
// Cost
|
|
920
|
-
if (session.agentInfo?.cost || meta["cost"]) {
|
|
921
|
-
md += `## Cost\n\n`;
|
|
922
|
-
if (session.agentInfo?.cost) {
|
|
923
|
-
const c = session.agentInfo.cost;
|
|
924
|
-
md += `| Metric | Value |\n|--------|-------|\n`;
|
|
925
|
-
if (c.inputTokens != null)
|
|
926
|
-
md += `| Input Tokens | ${c.inputTokens.toLocaleString()} |\n`;
|
|
927
|
-
if (c.outputTokens != null)
|
|
928
|
-
md += `| Output Tokens | ${c.outputTokens.toLocaleString()} |\n`;
|
|
929
|
-
if (c.estimatedCostUsd != null)
|
|
930
|
-
md += `| Estimated Cost | $${c.estimatedCostUsd.toFixed(4)} |\n`;
|
|
931
|
-
}
|
|
932
|
-
else if (meta["cost"]) {
|
|
933
|
-
try {
|
|
934
|
-
const c = JSON.parse(meta["cost"]);
|
|
935
|
-
md += `| Metric | Value |\n|--------|-------|\n`;
|
|
936
|
-
if (c["inputTokens"] != null)
|
|
937
|
-
md += `| Input Tokens | ${c["inputTokens"].toLocaleString()} |\n`;
|
|
938
|
-
if (c["outputTokens"] != null)
|
|
939
|
-
md += `| Output Tokens | ${c["outputTokens"].toLocaleString()} |\n`;
|
|
940
|
-
if (c["totalUSD"] != null)
|
|
941
|
-
md += `| Estimated Cost | $${c["totalUSD"].toFixed(4)} |\n`;
|
|
942
|
-
}
|
|
943
|
-
catch { /* ignore */ }
|
|
944
|
-
}
|
|
945
|
-
md += `\n`;
|
|
946
|
-
}
|
|
947
|
-
// Links section
|
|
948
|
-
md += `## Links\n\n`;
|
|
949
|
-
if (session.pr) {
|
|
950
|
-
md += `- [Pull Request #${session.pr.number}](${session.pr.url})\n`;
|
|
951
|
-
}
|
|
952
|
-
if (session.issueId) {
|
|
953
|
-
md += `- Issue: ${session.issueId}\n`;
|
|
954
|
-
}
|
|
955
|
-
md += `- [[projects/${boardRef}/CONDUCTOR|Board]]\n`;
|
|
956
|
-
md += `\n`;
|
|
957
|
-
// Raw metadata
|
|
958
|
-
md += `## Metadata\n\n`;
|
|
959
|
-
md += `\`\`\`\n`;
|
|
960
|
-
for (const [k, v] of Object.entries(meta).sort(([a], [b]) => a.localeCompare(b))) {
|
|
961
|
-
if (k === "runtimeHandle")
|
|
962
|
-
continue;
|
|
963
|
-
md += `${k}=${v}\n`;
|
|
964
|
-
}
|
|
965
|
-
md += `\`\`\`\n`;
|
|
966
|
-
writeFileSync(notePath, md, "utf-8");
|
|
967
|
-
}
|
|
968
|
-
/** Format a rich card line with live session state. */
|
|
969
|
-
function formatRichCardLine(basePrompt, sessionId, session, opts) {
|
|
970
|
-
const { display: displayStatus, emoji } = deriveDisplayStatus(session);
|
|
971
|
-
const agent = session.metadata["agent"] ?? "unknown";
|
|
972
|
-
const isDone = DONE_STATUSES.has(session.status);
|
|
973
|
-
let info = `${emoji} ${displayStatus} · ${agent}`;
|
|
974
|
-
// Obsidian session note link (wiki-link for in-vault navigation)
|
|
975
|
-
info += ` · [[sessions/${sessionId}|Details]]`;
|
|
976
|
-
// Dashboard session link
|
|
977
|
-
if (opts?.dashboardUrl) {
|
|
978
|
-
const sessionUrl = `${opts.dashboardUrl}/sessions/${sessionId}`;
|
|
979
|
-
info += ` · [Terminal](${sessionUrl})`;
|
|
980
|
-
}
|
|
981
|
-
// Duration — show for completed sessions
|
|
982
|
-
if (isDone) {
|
|
983
|
-
const duration = formatDuration(session.createdAt, session.lastActivityAt);
|
|
984
|
-
info += ` · ⏱ ${duration}`;
|
|
985
|
-
}
|
|
986
|
-
// Cost — show for completed sessions
|
|
987
|
-
if (isDone && session.agentInfo?.cost) {
|
|
988
|
-
const cost = formatCost(session.agentInfo.cost.estimatedCostUsd);
|
|
989
|
-
if (cost)
|
|
990
|
-
info += ` · 💰 ${cost}`;
|
|
991
|
-
}
|
|
992
|
-
// PR link
|
|
993
|
-
if (session.pr) {
|
|
994
|
-
info += ` · [PR #${session.pr.number}](${session.pr.url})`;
|
|
995
|
-
}
|
|
996
|
-
else if (session.branch && !session.branch.startsWith("session/")) {
|
|
997
|
-
// Skip redundant branch names like "session/pp-2" (same as session ID)
|
|
998
|
-
info += ` · \`${session.branch}\``;
|
|
999
|
-
}
|
|
1000
|
-
// CI / Review badges (from persisted metadata)
|
|
1001
|
-
const ciStatus = session.metadata["ciStatus"];
|
|
1002
|
-
if (ciStatus && ciStatus !== "none") {
|
|
1003
|
-
const ciEmoji = ciStatus === "passing" ? "✅" : ciStatus === "failing" ? "❌" : "⏳";
|
|
1004
|
-
info += ` · CI: ${ciEmoji}`;
|
|
1005
|
-
}
|
|
1006
|
-
const reviewDecision = session.metadata["reviewDecision"];
|
|
1007
|
-
if (reviewDecision && reviewDecision !== "none") {
|
|
1008
|
-
const revEmoji = reviewDecision === "approved" ? "✅" : reviewDecision === "changes_requested" ? "🔄" : "⏳";
|
|
1009
|
-
info += ` · Review: ${revEmoji}`;
|
|
1010
|
-
}
|
|
1011
|
-
// Preview URL
|
|
1012
|
-
if (opts?.previewUrl) {
|
|
1013
|
-
info += ` · [Preview](${opts.previewUrl})`;
|
|
1014
|
-
}
|
|
1015
|
-
// Summary — skip if it's just a duplicate of the base prompt
|
|
1016
|
-
const summary = session.agentInfo?.summary;
|
|
1017
|
-
if (summary) {
|
|
1018
|
-
// Card lines in Obsidian must stay single-line; collapse multiline agent summaries.
|
|
1019
|
-
const summarySingleLine = summary.replace(/\s+/g, " ").trim();
|
|
1020
|
-
// Don't show summary when it's essentially the same as the prompt text
|
|
1021
|
-
// (happens when summary falls back to first user message = our prompt)
|
|
1022
|
-
const promptNorm = basePrompt.toLowerCase().replace(/\s+/g, " ").trim();
|
|
1023
|
-
const summaryNorm = summarySingleLine.toLowerCase();
|
|
1024
|
-
const isDuplicate = summaryNorm.startsWith(promptNorm) ||
|
|
1025
|
-
promptNorm.startsWith(summaryNorm) ||
|
|
1026
|
-
(summaryNorm.length > 20 && promptNorm.includes(summaryNorm.slice(0, 40)));
|
|
1027
|
-
if (!isDuplicate) {
|
|
1028
|
-
const maxLen = isDone ? 120 : 60;
|
|
1029
|
-
const showFallback = isDone;
|
|
1030
|
-
if (!session.agentInfo?.summaryIsFallback || showFallback) {
|
|
1031
|
-
// Collapse newlines/markdown to single line — multi-line content
|
|
1032
|
-
// inside a kanban card breaks the Obsidian kanban parser.
|
|
1033
|
-
const flat = summary.replace(/\n+/g, " ").replace(/\s+/g, " ").trim();
|
|
1034
|
-
const snippet = flat.length > maxLen ? flat.slice(0, maxLen - 3) + "..." : flat;
|
|
1035
|
-
info += ` · "${snippet}"`;
|
|
1036
|
-
}
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
const markerSuffix = formatTaskMarkers({
|
|
1040
|
-
taskId: session.metadata["taskId"],
|
|
1041
|
-
attemptId: session.metadata["attemptId"],
|
|
1042
|
-
parentTaskId: session.metadata["parentTaskId"],
|
|
1043
|
-
});
|
|
1044
|
-
return `- [x] ${basePrompt}${markerSuffix ? ` ${markerSuffix}` : ""} [${sessionId}] — ${info}`;
|
|
1045
|
-
}
|
|
1046
|
-
/** Format a card for sessions that are no longer active (archived/killed). */
|
|
1047
|
-
function formatCompletedCardLine(basePrompt, sessionId, markers) {
|
|
1048
|
-
const markerSuffix = formatTaskMarkers({
|
|
1049
|
-
taskId: markers?.taskId ?? undefined,
|
|
1050
|
-
attemptId: markers?.attemptId ?? undefined,
|
|
1051
|
-
parentTaskId: markers?.parentTaskId ?? undefined,
|
|
1052
|
-
});
|
|
1053
|
-
return `- [x] ${basePrompt}${markerSuffix ? ` ${markerSuffix}` : ""} [${sessionId}] — ✅ completed`;
|
|
1054
|
-
}
|
|
1055
|
-
// ---------------------------------------------------------------------------
|
|
1056
|
-
// Card Movement (checked items)
|
|
1057
|
-
// ---------------------------------------------------------------------------
|
|
1058
|
-
/** Move a checked card between columns, optionally replacing its text. */
|
|
1059
|
-
function moveCheckedCard(content, oldLine, fromColumn, toColumn, newLine) {
|
|
1060
|
-
return moveCardLine(content, oldLine, fromColumn, toColumn, newLine).content;
|
|
1061
|
-
}
|
|
1062
|
-
/** Replace a card line in-place (same column, text change only). */
|
|
1063
|
-
function replaceCardLine(content, oldLine, newLine) {
|
|
1064
|
-
return replaceLine(content, oldLine, newLine);
|
|
1065
|
-
}
|
|
1066
|
-
// ---------------------------------------------------------------------------
|
|
1067
|
-
// Preview URL Detection (Netlify / Vercel)
|
|
1068
|
-
// ---------------------------------------------------------------------------
|
|
1069
|
-
/**
|
|
1070
|
-
* Fetch a deployment preview URL for a PR branch.
|
|
1071
|
-
* Checks GitHub commit statuses (Netlify) then deployments API (Vercel).
|
|
1072
|
-
*/
|
|
1073
|
-
async function fetchPreviewUrl(pr) {
|
|
1074
|
-
const { owner, repo, branch } = pr;
|
|
1075
|
-
if (!owner || !repo || !branch)
|
|
1076
|
-
return null;
|
|
1077
|
-
// 1. Try commit statuses — Netlify posts target_url here
|
|
1078
|
-
try {
|
|
1079
|
-
const { stdout } = await execFileP("gh", [
|
|
1080
|
-
"api", `repos/${owner}/${repo}/commits/${branch}/statuses`,
|
|
1081
|
-
"--jq", '[.[] | select(.context | test("(?i)netlify|vercel|deploy-preview|preview")) | .target_url][0] // empty',
|
|
1082
|
-
], { timeout: 10_000 });
|
|
1083
|
-
const url = stdout.trim();
|
|
1084
|
-
if (url)
|
|
1085
|
-
return url;
|
|
1086
|
-
}
|
|
1087
|
-
catch { /* fall through */ }
|
|
1088
|
-
// 2. Try deployments API — Vercel creates Preview deployments
|
|
1089
|
-
try {
|
|
1090
|
-
const { stdout } = await execFileP("gh", [
|
|
1091
|
-
"api", `repos/${owner}/${repo}/deployments`,
|
|
1092
|
-
"--jq", '[.[] | select(.environment | test("(?i)preview")) | .id][0] // empty',
|
|
1093
|
-
], { timeout: 10_000 });
|
|
1094
|
-
const deployId = stdout.trim();
|
|
1095
|
-
if (deployId) {
|
|
1096
|
-
const { stdout: statusOut } = await execFileP("gh", [
|
|
1097
|
-
"api", `repos/${owner}/${repo}/deployments/${deployId}/statuses`,
|
|
1098
|
-
"--jq", '.[0].environment_url // .[0].target_url // empty',
|
|
1099
|
-
], { timeout: 10_000 });
|
|
1100
|
-
const deployUrl = statusOut.trim();
|
|
1101
|
-
if (deployUrl)
|
|
1102
|
-
return deployUrl;
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
catch { /* fall through */ }
|
|
1106
|
-
return null;
|
|
1107
|
-
}
|
|
1108
|
-
// ---------------------------------------------------------------------------
|
|
1109
|
-
// Dispatch Logic
|
|
1110
|
-
// ---------------------------------------------------------------------------
|
|
1111
|
-
/** Generate a hash for dedup tracking. */
|
|
1112
|
-
function taskHash(text) {
|
|
1113
|
-
return createHash("md5").update(text.trim()).digest("hex");
|
|
1114
|
-
}
|
|
1115
|
-
function generateEntityId(prefix) {
|
|
1116
|
-
return `${prefix}-${randomBytes(3).toString("hex")}`;
|
|
1117
|
-
}
|
|
1118
|
-
function normalizeHeadingForMatch(heading) {
|
|
1119
|
-
return heading.trim().toLowerCase();
|
|
1120
|
-
}
|
|
1121
|
-
function resolveDispatchingColumn(headings, columns) {
|
|
1122
|
-
const preferred = columns.columnsByRole.dispatching;
|
|
1123
|
-
if (headings.has(normalizeHeadingForMatch(preferred)))
|
|
1124
|
-
return preferred;
|
|
1125
|
-
const inProgress = columns.columnsByRole.inProgress;
|
|
1126
|
-
if (headings.has(normalizeHeadingForMatch(inProgress)))
|
|
1127
|
-
return inProgress;
|
|
1128
|
-
const review = columns.columnsByRole.review;
|
|
1129
|
-
if (headings.has(normalizeHeadingForMatch(review)))
|
|
1130
|
-
return review;
|
|
1131
|
-
const done = columns.columnsByRole.done;
|
|
1132
|
-
if (headings.has(normalizeHeadingForMatch(done)))
|
|
1133
|
-
return done;
|
|
1134
|
-
return preferred;
|
|
1135
|
-
}
|
|
1136
|
-
function resolveDoneColumn(headings, columns) {
|
|
1137
|
-
const done = columns.columnsByRole.done;
|
|
1138
|
-
if (headings.has(normalizeHeadingForMatch(done)))
|
|
1139
|
-
return done;
|
|
1140
|
-
const review = columns.columnsByRole.review;
|
|
1141
|
-
if (headings.has(normalizeHeadingForMatch(review)))
|
|
1142
|
-
return review;
|
|
1143
|
-
const inProgress = columns.columnsByRole.inProgress;
|
|
1144
|
-
if (headings.has(normalizeHeadingForMatch(inProgress)))
|
|
1145
|
-
return inProgress;
|
|
1146
|
-
return columns.columnsByRole.ready;
|
|
1147
|
-
}
|
|
1148
|
-
function resolveTrackedColumns(headings, ...columns) {
|
|
1149
|
-
const out = [];
|
|
1150
|
-
const seen = new Set();
|
|
1151
|
-
for (const column of columns) {
|
|
1152
|
-
if (!headings.has(normalizeHeadingForMatch(column)))
|
|
1153
|
-
continue;
|
|
1154
|
-
const normalized = normalizeHeadingForMatch(column);
|
|
1155
|
-
if (seen.has(normalized))
|
|
1156
|
-
continue;
|
|
1157
|
-
seen.add(normalized);
|
|
1158
|
-
out.push(column);
|
|
1159
|
-
}
|
|
1160
|
-
return out;
|
|
1161
|
-
}
|
|
1162
|
-
function buildDispatchDedupeKey(params) {
|
|
1163
|
-
if (params.taskId) {
|
|
1164
|
-
return taskHash(`${params.taskId}|${params.prompt}`);
|
|
1165
|
-
}
|
|
1166
|
-
const scope = params.projectId ? `project:${params.projectId}` : `board:${params.boardPath}`;
|
|
1167
|
-
return taskHash(`${scope}|${params.prompt}`);
|
|
1168
|
-
}
|
|
1169
|
-
function ensureCardIds(card) {
|
|
1170
|
-
return {
|
|
1171
|
-
taskId: card.taskId ?? generateEntityId("t"),
|
|
1172
|
-
attemptId: card.attemptId ?? generateEntityId("a"),
|
|
1173
|
-
};
|
|
1174
|
-
}
|
|
1175
|
-
function formatCardMetadataSuffix(card, taskId, attemptId) {
|
|
1176
|
-
const parts = [`[task:${taskId}]`, `[attempt:${attemptId}]`];
|
|
1177
|
-
if (card.parentTaskId) {
|
|
1178
|
-
parts.push(`[parent:${card.parentTaskId}]`);
|
|
1179
|
-
}
|
|
1180
|
-
return parts.join(" ");
|
|
1181
|
-
}
|
|
1182
|
-
/** Derive project ID from a board file path. */
|
|
1183
|
-
function projectFromBoardPath(boardPath, config) {
|
|
1184
|
-
// Project-specific boards: <workspace>/projects/<name>/CONDUCTOR.md
|
|
1185
|
-
const dir = dirname(boardPath);
|
|
1186
|
-
const dirName = basename(dir);
|
|
1187
|
-
// Check if dirName matches a single project key in config
|
|
1188
|
-
const directMatch = Object.keys(config.projects).filter((k) => k === dirName);
|
|
1189
|
-
if (directMatch.length === 1)
|
|
1190
|
-
return directMatch[0];
|
|
1191
|
-
// Check boardDir aliases — return undefined if multiple projects share the same board
|
|
1192
|
-
const boardDirMatches = [];
|
|
1193
|
-
for (const [key, project] of Object.entries(config.projects)) {
|
|
1194
|
-
if (project.boardDir && project.boardDir === dirName)
|
|
1195
|
-
boardDirMatches.push(key);
|
|
1196
|
-
}
|
|
1197
|
-
if (boardDirMatches.length === 1)
|
|
1198
|
-
return boardDirMatches[0];
|
|
1199
|
-
// Multiple projects share this board — caller must infer from task text
|
|
1200
|
-
if (boardDirMatches.length > 1)
|
|
1201
|
-
return undefined;
|
|
1202
|
-
// Legacy: first single match (shouldn't reach here)
|
|
1203
|
-
for (const [key, project] of Object.entries(config.projects)) {
|
|
1204
|
-
if (project.boardDir && project.boardDir === dirName)
|
|
1205
|
-
return key;
|
|
1206
|
-
}
|
|
1207
|
-
// Check if dirName matches a project path basename
|
|
1208
|
-
for (const [key, project] of Object.entries(config.projects)) {
|
|
1209
|
-
if (basename(project.path) === dirName)
|
|
1210
|
-
return key;
|
|
1211
|
-
}
|
|
1212
|
-
// Workspace-level board -- requires #project/ tag
|
|
1213
|
-
return undefined;
|
|
1214
|
-
}
|
|
1215
|
-
function resolveSupportDirectories(config, options) {
|
|
1216
|
-
const roots = new Set();
|
|
1217
|
-
const workspace = options.workspacePath
|
|
1218
|
-
?? process.env["CONDUCTOR_WORKSPACE"]
|
|
1219
|
-
?? (config.configPath ? dirname(config.configPath) : process.cwd());
|
|
1220
|
-
roots.add(resolve(workspace));
|
|
1221
|
-
for (const project of Object.values(config.projects)) {
|
|
1222
|
-
if (typeof project.path !== "string" || project.path.trim().length === 0)
|
|
1223
|
-
continue;
|
|
1224
|
-
roots.add(resolve(project.path));
|
|
1225
|
-
}
|
|
1226
|
-
for (const boardPath of options.boardPaths ?? []) {
|
|
1227
|
-
roots.add(resolve(dirname(boardPath)));
|
|
1228
|
-
}
|
|
1229
|
-
for (const supportDirectory of options.supportDirectories ?? []) {
|
|
1230
|
-
if (supportDirectory.trim().length === 0)
|
|
1231
|
-
continue;
|
|
1232
|
-
roots.add(resolve(supportDirectory));
|
|
1233
|
-
}
|
|
1234
|
-
return [...roots];
|
|
1235
|
-
}
|
|
1236
|
-
function buildConductorTagsContent(config, agentNames) {
|
|
1237
|
-
const projectIds = Object.keys(config.projects).sort();
|
|
1238
|
-
const agents = uniqueAgents(agentNames.length > 0 ? agentNames : FALLBACK_WATCHER_AGENTS);
|
|
1239
|
-
const projectChoices = projectIds.length > 0 ? projectIds.join(",") : "my-project";
|
|
1240
|
-
const agentChoices = agents.length > 0 ? agents.join(",") : "codex,claude-code,gemini";
|
|
1241
|
-
// Build the markdown tag lines (one tag per project)
|
|
1242
|
-
const projectTagSeeds = projectIds.length > 0
|
|
1243
|
-
? projectIds.map((id) => "#project/" + id).join(" ")
|
|
1244
|
-
: "#project/my-project";
|
|
1245
|
-
const agentTagSeeds = agents.map((a) => "#agent/" + a).join(" ");
|
|
1246
|
-
// Build table rows for projects
|
|
1247
|
-
const projectTableRows = projectIds.length > 0
|
|
1248
|
-
? projectIds.map((id) => {
|
|
1249
|
-
const p = config.projects[id];
|
|
1250
|
-
const desc = p["description"] ?? id;
|
|
1251
|
-
return "| `#project/" + id + "` | " + desc + " |";
|
|
1252
|
-
}).join("\n")
|
|
1253
|
-
: "| `#project/my-project` | Replace this after adding your first project |";
|
|
1254
|
-
const agentTableRows = agents
|
|
1255
|
-
.map((id) => `| \`#agent/${id}\` | ${id} agent plugin |`)
|
|
1256
|
-
.join("\n");
|
|
1257
|
-
const firstProject = projectIds[0] ?? "my-project";
|
|
1258
|
-
const secondProject = projectIds[1] ?? "my-project";
|
|
1259
|
-
const firstAgent = agents[0] ?? "codex";
|
|
1260
|
-
const secondAgent = agents[1] ?? "claude-code";
|
|
1261
|
-
const allTagsFrontmatter = [
|
|
1262
|
-
" - conductor/reference",
|
|
1263
|
-
...projectIds.map((id) => " - project/" + id),
|
|
1264
|
-
...agents.map((a) => " - agent/" + a),
|
|
1265
|
-
" - type/feature", " - type/fix", " - type/review", " - type/chore", " - type/docs",
|
|
1266
|
-
" - priority/high", " - priority/medium", " - priority/low",
|
|
1267
|
-
].join("\n");
|
|
1268
|
-
return [
|
|
1269
|
-
"---",
|
|
1270
|
-
"tags:",
|
|
1271
|
-
allTagsFrontmatter,
|
|
1272
|
-
"---",
|
|
1273
|
-
"",
|
|
1274
|
-
"# Conductor Tag Reference",
|
|
1275
|
-
"",
|
|
1276
|
-
"Quick-reference for tagging tasks in any `CONDUCTOR.md` board.",
|
|
1277
|
-
"Type `#` in Obsidian for autocomplete. Type `ctask` in VS Code for a full task snippet.",
|
|
1278
|
-
"",
|
|
1279
|
-
"> Auto-generated by conductor on startup. Add a project to `conductor.yaml` → it appears here automatically.",
|
|
1280
|
-
"",
|
|
1281
|
-
"---",
|
|
1282
|
-
"",
|
|
1283
|
-
"## Project Tags",
|
|
1284
|
-
"",
|
|
1285
|
-
"| Tag | Description |",
|
|
1286
|
-
"|-----|-------------|",
|
|
1287
|
-
projectTableRows,
|
|
1288
|
-
"",
|
|
1289
|
-
"---",
|
|
1290
|
-
"",
|
|
1291
|
-
"## Agent Tags",
|
|
1292
|
-
"",
|
|
1293
|
-
"| Tag | Uses |",
|
|
1294
|
-
"|-----|------|",
|
|
1295
|
-
...agentTableRows.split("\n"),
|
|
1296
|
-
"",
|
|
1297
|
-
"---",
|
|
1298
|
-
"",
|
|
1299
|
-
"## Type Tags",
|
|
1300
|
-
"",
|
|
1301
|
-
"| Tag | Meaning |",
|
|
1302
|
-
"|-----|---------|",
|
|
1303
|
-
"| `#type/feature` | New feature or enhancement |",
|
|
1304
|
-
"| `#type/fix` | Bug fix |",
|
|
1305
|
-
"| `#type/review` | Code review or audit |",
|
|
1306
|
-
"| `#type/chore` | Maintenance / deps / config |",
|
|
1307
|
-
"| `#type/docs` | Documentation |",
|
|
1308
|
-
"",
|
|
1309
|
-
"---",
|
|
1310
|
-
"",
|
|
1311
|
-
"## Priority Tags",
|
|
1312
|
-
"",
|
|
1313
|
-
"| Tag | Meaning |",
|
|
1314
|
-
"|-----|---------|",
|
|
1315
|
-
"| `#priority/high` | Ship today |",
|
|
1316
|
-
"| `#priority/medium` | This sprint |",
|
|
1317
|
-
"| `#priority/low` | Nice to have |",
|
|
1318
|
-
"",
|
|
1319
|
-
"---",
|
|
1320
|
-
"",
|
|
1321
|
-
"## Example Task Formats",
|
|
1322
|
-
"",
|
|
1323
|
-
"```",
|
|
1324
|
-
"Fix login button tooltip #project/" + firstProject + " #agent/" + firstAgent + " #type/fix #priority/high",
|
|
1325
|
-
"",
|
|
1326
|
-
"Add analytics dashboard #project/" + secondProject + " #agent/" + secondAgent + " #type/feature",
|
|
1327
|
-
"```",
|
|
1328
|
-
"",
|
|
1329
|
-
"---",
|
|
1330
|
-
"",
|
|
1331
|
-
projectTagSeeds,
|
|
1332
|
-
agentTagSeeds,
|
|
1333
|
-
"#type/feature #type/fix #type/review #type/chore #type/docs",
|
|
1334
|
-
"#priority/high #priority/medium #priority/low",
|
|
1335
|
-
"",
|
|
1336
|
-
].join("\n");
|
|
1337
|
-
}
|
|
1338
|
-
function buildConductorCodeSnippets(config, agentNames) {
|
|
1339
|
-
const projectIds = Object.keys(config.projects).sort();
|
|
1340
|
-
const agents = uniqueAgents(agentNames.length > 0 ? agentNames : FALLBACK_WATCHER_AGENTS);
|
|
1341
|
-
const projectChoices = projectIds.length > 0 ? projectIds.join(",") : "my-project";
|
|
1342
|
-
const agentChoices = agents.length > 0 ? agents.join(",") : "codex,claude-code,gemini";
|
|
1343
|
-
return {
|
|
1344
|
-
"Conductor Project Tag": {
|
|
1345
|
-
prefix: "#project",
|
|
1346
|
-
body: ["#project/${1|" + projectChoices + "|}"],
|
|
1347
|
-
description: "Route task to a Conductor project",
|
|
1348
|
-
},
|
|
1349
|
-
"Conductor Agent Tag": {
|
|
1350
|
-
prefix: "#agent",
|
|
1351
|
-
body: ["#agent/${1|" + agentChoices + "|}"],
|
|
1352
|
-
description: "Assign task to a specific agent",
|
|
1353
|
-
},
|
|
1354
|
-
"Conductor Type Tag": {
|
|
1355
|
-
prefix: "#type",
|
|
1356
|
-
body: ["#type/${1|feature,fix,review,chore,docs|}"],
|
|
1357
|
-
description: "Set task type",
|
|
1358
|
-
},
|
|
1359
|
-
"Conductor Priority Tag": {
|
|
1360
|
-
prefix: "#priority",
|
|
1361
|
-
body: ["#priority/${1|high,medium,low|}"],
|
|
1362
|
-
description: "Set task priority",
|
|
1363
|
-
},
|
|
1364
|
-
"Conductor Full Task": {
|
|
1365
|
-
prefix: "ctask",
|
|
1366
|
-
body: [
|
|
1367
|
-
"- [ ] ${1:Task description} #project/${2|" + projectChoices + "|} #agent/${3|" + agentChoices + "|} #type/${4|feature,fix,review,chore|} #priority/${5|high,medium,low|}",
|
|
1368
|
-
],
|
|
1369
|
-
description: "Full Conductor task with all tags",
|
|
1370
|
-
},
|
|
1371
|
-
};
|
|
1372
|
-
}
|
|
1373
|
-
/**
|
|
1374
|
-
* Sync CONDUCTOR-TAGS.md and .vscode/conductor.code-snippets to every relevant
|
|
1375
|
-
* workspace/project directory from the current config.
|
|
1376
|
-
*/
|
|
1377
|
-
export function syncWorkspaceSupportFiles(config, options = {}) {
|
|
1378
|
-
const agentNames = uniqueAgents(options.agentNames ?? FALLBACK_WATCHER_AGENTS);
|
|
1379
|
-
const supportDirectories = resolveSupportDirectories(config, options);
|
|
1380
|
-
const projectIds = Object.keys(config.projects).sort();
|
|
1381
|
-
const tagsContent = buildConductorTagsContent(config, agentNames);
|
|
1382
|
-
const snippetsJson = JSON.stringify(buildConductorCodeSnippets(config, agentNames), null, 2);
|
|
1383
|
-
let syncedCount = 0;
|
|
1384
|
-
for (const supportDirectory of supportDirectories) {
|
|
1385
|
-
try {
|
|
1386
|
-
if (!existsSync(supportDirectory) || !statSync(supportDirectory).isDirectory()) {
|
|
1387
|
-
continue;
|
|
1388
|
-
}
|
|
1389
|
-
writeFileSync(join(supportDirectory, "CONDUCTOR-TAGS.md"), tagsContent, "utf-8");
|
|
1390
|
-
const vscodeDir = join(supportDirectory, ".vscode");
|
|
1391
|
-
mkdirSync(vscodeDir, { recursive: true });
|
|
1392
|
-
writeFileSync(join(vscodeDir, "conductor.code-snippets"), snippetsJson, "utf-8");
|
|
1393
|
-
syncedCount += 1;
|
|
1394
|
-
}
|
|
1395
|
-
catch {
|
|
1396
|
-
// Non-fatal.
|
|
1397
|
-
}
|
|
1398
|
-
}
|
|
1399
|
-
if (syncedCount > 0) {
|
|
1400
|
-
console.log("[board-watcher] Support files synced: "
|
|
1401
|
-
+ syncedCount
|
|
1402
|
-
+ " location(s), "
|
|
1403
|
-
+ projectIds.length
|
|
1404
|
-
+ " projects");
|
|
1405
|
-
}
|
|
1406
|
-
}
|
|
1407
|
-
export function createBoardWatcher(watcherConfig) {
|
|
1408
|
-
const { config, sessionManager, boardPaths, onDispatch, onError } = watcherConfig;
|
|
1409
|
-
const dashboardUrl = watcherConfig.dashboardUrl ?? config.dashboardUrl;
|
|
1410
|
-
let configuredAgentNames = FALLBACK_WATCHER_AGENTS;
|
|
1411
|
-
if (watcherConfig.agentNames && watcherConfig.agentNames.length > 0) {
|
|
1412
|
-
configuredAgentNames = watcherConfig.agentNames;
|
|
1413
|
-
}
|
|
1414
|
-
const supportedAgents = uniqueAgents(configuredAgentNames);
|
|
1415
|
-
const workspacePath = watcherConfig.workspacePath
|
|
1416
|
-
?? process.env["CONDUCTOR_WORKSPACE"]
|
|
1417
|
-
?? `${process.env["HOME"]}/.conductor/workspace`;
|
|
1418
|
-
const dispatchLogPath = join(workspacePath, "orchestrator", ".dispatched_tasks_v2");
|
|
1419
|
-
if (!existsSync(dirname(dispatchLogPath))) {
|
|
1420
|
-
mkdirSync(dirname(dispatchLogPath), { recursive: true });
|
|
1421
|
-
}
|
|
1422
|
-
const dispatched = new Set(existsSync(dispatchLogPath)
|
|
1423
|
-
? readFileSync(dispatchLogPath, "utf-8").split(/\r?\n/).map((l) => l.trim()).filter(Boolean)
|
|
1424
|
-
: []);
|
|
1425
|
-
const watchers = [];
|
|
1426
|
-
let pollInterval = null;
|
|
1427
|
-
let updateInterval = null;
|
|
1428
|
-
let running = false;
|
|
1429
|
-
/** Lock to prevent concurrent dispatch on the same board. */
|
|
1430
|
-
const boardLocks = new Map();
|
|
1431
|
-
/** Cache for deployment preview URLs — avoids hammering GitHub API every 15s. */
|
|
1432
|
-
const previewUrlCache = new Map();
|
|
1433
|
-
/** Re-check interval for missing preview URLs (2 minutes). */
|
|
1434
|
-
const PREVIEW_RECHECK_MS = 120_000;
|
|
1435
|
-
/** Max cache entries before evicting oldest. */
|
|
1436
|
-
const MAX_PREVIEW_CACHE = 200;
|
|
1437
|
-
const MAX_DISPATCHED = 5000;
|
|
1438
|
-
const debugEnabled = process.env["CONDUCTOR_DEBUG"] === "1";
|
|
1439
|
-
function log(msg, boardPath) {
|
|
1440
|
-
console.log(`[board-watcher] ${msg}`);
|
|
1441
|
-
recordWatcherAction(workspacePath, {
|
|
1442
|
-
level: "info",
|
|
1443
|
-
action: msg,
|
|
1444
|
-
boardPath,
|
|
1445
|
-
});
|
|
1446
|
-
}
|
|
1447
|
-
function trace(msg, boardPath) {
|
|
1448
|
-
if (!debugEnabled)
|
|
1449
|
-
return;
|
|
1450
|
-
console.log(`[board-watcher][debug] ${msg}`);
|
|
1451
|
-
recordWatcherAction(workspacePath, {
|
|
1452
|
-
level: "debug",
|
|
1453
|
-
action: msg,
|
|
1454
|
-
boardPath,
|
|
1455
|
-
});
|
|
1456
|
-
}
|
|
1457
|
-
function logError(err, context, boardPath) {
|
|
1458
|
-
console.error(`[board-watcher] ${context}: ${err.message}`);
|
|
1459
|
-
recordWatcherAction(workspacePath, {
|
|
1460
|
-
level: "error",
|
|
1461
|
-
action: `${context}: ${err.message}`,
|
|
1462
|
-
boardPath,
|
|
1463
|
-
context,
|
|
1464
|
-
});
|
|
1465
|
-
onError?.(err, context);
|
|
1466
|
-
}
|
|
1467
|
-
function resolveBoardColumns(boardPath, content) {
|
|
1468
|
-
const aliases = resolveBoardAliasesForPath(config, workspacePath, boardPath);
|
|
1469
|
-
return resolveColumnsFromBoard(content, aliases);
|
|
1470
|
-
}
|
|
1471
|
-
async function dispatchTask(boardPath, card, boardProjectId, ids) {
|
|
1472
|
-
// Determine project — prefer explicit tag, fall back to board path inference
|
|
1473
|
-
const projectId = card.project ?? boardProjectId;
|
|
1474
|
-
if (!projectId) {
|
|
1475
|
-
log(`Skipping task (no project): "${card.prompt}"`);
|
|
1476
|
-
return null;
|
|
1477
|
-
}
|
|
1478
|
-
if (!config.projects[projectId]) {
|
|
1479
|
-
log(`Unknown project "${projectId}" in task: "${card.prompt}"`);
|
|
1480
|
-
return null;
|
|
1481
|
-
}
|
|
1482
|
-
// Determine agent (normalize aliases: #agent/claude -> claude-code)
|
|
1483
|
-
const agent = normalizeAgent(card.agent ?? autoDetectAgent(card.prompt, supportedAgents), supportedAgents);
|
|
1484
|
-
if (card.agent && normalizeAgentName(card.agent, supportedAgents) !== normalizeAgentName(agent, supportedAgents)) {
|
|
1485
|
-
log(`Normalized agent tag for dispatch: "${card.agent}" -> "${agent}"`, boardPath);
|
|
1486
|
-
}
|
|
1487
|
-
// Build the prompt/issue
|
|
1488
|
-
if (card.attachments.length > 0) {
|
|
1489
|
-
log(` Attachments: ${card.attachments.map((a) => `${a.type}:${basename(a.path)}`).join(", ")}`, boardPath);
|
|
1490
|
-
}
|
|
1491
|
-
trace(`Dispatch metadata task=${ids.taskId} attempt=${ids.attemptId}` +
|
|
1492
|
-
`${card.parentTaskId ? ` parent=${card.parentTaskId}` : ""}` +
|
|
1493
|
-
`${card.profile ? ` profile=${card.profile}` : ""}`, boardPath);
|
|
1494
|
-
log(`Dispatching [${agent}${card.model ? ` model=${card.model}` : ""}] -> ${projectId}: "${card.prompt}"`, boardPath);
|
|
1495
|
-
try {
|
|
1496
|
-
const session = await sessionManager.spawn({
|
|
1497
|
-
projectId,
|
|
1498
|
-
issueId: card.issueId,
|
|
1499
|
-
prompt: card.prompt || undefined,
|
|
1500
|
-
agent,
|
|
1501
|
-
model: card.model,
|
|
1502
|
-
profile: card.profile,
|
|
1503
|
-
taskId: ids.taskId,
|
|
1504
|
-
attemptId: ids.attemptId,
|
|
1505
|
-
parentTaskId: card.parentTaskId,
|
|
1506
|
-
attachments: card.attachments.length > 0 ? card.attachments : undefined,
|
|
1507
|
-
});
|
|
1508
|
-
log(`Spawned session ${session.id} for "${card.prompt}"`, boardPath);
|
|
1509
|
-
onDispatch?.(projectId, session.id, card.prompt);
|
|
1510
|
-
return { sessionId: session.id, taskId: ids.taskId, attemptId: ids.attemptId };
|
|
1511
|
-
}
|
|
1512
|
-
catch (err) {
|
|
1513
|
-
logError(err instanceof Error ? err : new Error(String(err)), `spawn for "${card.prompt}"`, boardPath);
|
|
1514
|
-
return null;
|
|
1515
|
-
}
|
|
1516
|
-
}
|
|
1517
|
-
async function checkBoard(boardPath) {
|
|
1518
|
-
if (!existsSync(boardPath))
|
|
1519
|
-
return;
|
|
1520
|
-
const preContent = readFileSync(boardPath, "utf-8");
|
|
1521
|
-
const guardCheck = writeGuard.get(boardPath);
|
|
1522
|
-
if (guardCheck && Date.now() - guardCheck.at < WRITE_GUARD_MS && preContent === guardCheck.content) {
|
|
1523
|
-
return; // Ignore only our own just-written content during cooldown
|
|
1524
|
-
}
|
|
1525
|
-
// Serialize: if a check is already running for this board, wait for it then skip
|
|
1526
|
-
const existing = boardLocks.get(boardPath);
|
|
1527
|
-
if (existing) {
|
|
1528
|
-
await existing;
|
|
1529
|
-
return;
|
|
1530
|
-
}
|
|
1531
|
-
let resolve;
|
|
1532
|
-
const lock = new Promise((res) => { resolve = res; });
|
|
1533
|
-
boardLocks.set(boardPath, lock);
|
|
1534
|
-
try {
|
|
1535
|
-
const content = readFileSync(boardPath, "utf-8");
|
|
1536
|
-
const resolvedColumns = resolveBoardColumns(boardPath, content);
|
|
1537
|
-
const readyColumn = resolvedColumns.columnsByRole.ready;
|
|
1538
|
-
const headingSet = new Set(resolvedColumns.headings.map(normalizeHeadingForMatch));
|
|
1539
|
-
const dispatchingColumn = resolveDispatchingColumn(headingSet, resolvedColumns);
|
|
1540
|
-
const trackedColumns = resolveTrackedColumns(headingSet, dispatchingColumn, resolvedColumns.columnsByRole.inProgress, resolvedColumns.columnsByRole.review, resolvedColumns.columnsByRole.blocked, resolvedColumns.columnsByRole.done);
|
|
1541
|
-
const trackedColumnsSeed = trackedColumns.length > 0 ? trackedColumns : [readyColumn];
|
|
1542
|
-
const boardProjectId = projectFromBoardPath(boardPath, config);
|
|
1543
|
-
const tasks = getColumnTasks(content, readyColumn);
|
|
1544
|
-
trace(`Parse ${boardPath}: ready=${readyColumn} tasks=${tasks.length}`, boardPath);
|
|
1545
|
-
if (tasks.length === 0)
|
|
1546
|
-
return;
|
|
1547
|
-
let updatedContent = content;
|
|
1548
|
-
let anyDispatched = false;
|
|
1549
|
-
for (const taskText of tasks) {
|
|
1550
|
-
const card = parseCard(taskText, workspacePath);
|
|
1551
|
-
const { taskId, attemptId } = ensureCardIds(card);
|
|
1552
|
-
const promptHash = buildDispatchDedupeKey({
|
|
1553
|
-
boardPath,
|
|
1554
|
-
projectId: boardProjectId,
|
|
1555
|
-
taskId: card.taskId,
|
|
1556
|
-
prompt: card.prompt,
|
|
1557
|
-
});
|
|
1558
|
-
if (dispatched.has(promptHash))
|
|
1559
|
-
continue;
|
|
1560
|
-
// Restart-safe dedupe: if a tracked card with the same task OR same base
|
|
1561
|
-
// prompt already exists, skip re-dispatching.
|
|
1562
|
-
const existingTracked = getAllTrackedCards(updatedContent, trackedColumnsSeed).some((tracked) => card.taskId
|
|
1563
|
-
? tracked.taskId === card.taskId
|
|
1564
|
-
: tracked.basePrompt === card.prompt);
|
|
1565
|
-
if (existingTracked) {
|
|
1566
|
-
dispatched.add(promptHash);
|
|
1567
|
-
continue;
|
|
1568
|
-
}
|
|
1569
|
-
// Mark as dispatched immediately to prevent re-entry
|
|
1570
|
-
dispatched.add(promptHash);
|
|
1571
|
-
const result = await dispatchTask(boardPath, card, boardProjectId, { taskId, attemptId });
|
|
1572
|
-
if (result) {
|
|
1573
|
-
// Persist hash to survive process restarts / external board rewrites.
|
|
1574
|
-
try {
|
|
1575
|
-
appendFileSync(dispatchLogPath, `${promptHash}\n`, "utf-8");
|
|
1576
|
-
}
|
|
1577
|
-
catch {
|
|
1578
|
-
// Non-fatal
|
|
1579
|
-
}
|
|
1580
|
-
// Move card: Ready to Dispatch -> Dispatching (with session ID)
|
|
1581
|
-
const metadataSuffix = formatCardMetadataSuffix(card, result.taskId, result.attemptId);
|
|
1582
|
-
const newCardText = `${card.prompt} ${metadataSuffix} [${result.sessionId}]`;
|
|
1583
|
-
const moved = moveCard(updatedContent, taskText, readyColumn, dispatchingColumn, newCardText);
|
|
1584
|
-
updatedContent = moved.content;
|
|
1585
|
-
anyDispatched = moved.moved;
|
|
1586
|
-
}
|
|
1587
|
-
else {
|
|
1588
|
-
// Failed to dispatch -- remove from dispatched set so it retries
|
|
1589
|
-
dispatched.delete(promptHash);
|
|
1590
|
-
}
|
|
1591
|
-
}
|
|
1592
|
-
if (anyDispatched && updatedContent !== content) {
|
|
1593
|
-
writeFileSync(boardPath, updatedContent, "utf-8");
|
|
1594
|
-
writeGuard.set(boardPath, { content: updatedContent, at: Date.now() });
|
|
1595
|
-
log(`Board updated: ${boardPath}`, boardPath);
|
|
1596
|
-
nudgeObsidian(boardPath);
|
|
1597
|
-
}
|
|
1598
|
-
// Cap dispatched set size to prevent unbounded memory growth
|
|
1599
|
-
if (dispatched.size > MAX_DISPATCHED) {
|
|
1600
|
-
const excess = dispatched.size - MAX_DISPATCHED;
|
|
1601
|
-
let removed = 0;
|
|
1602
|
-
for (const hash of dispatched) {
|
|
1603
|
-
if (removed >= excess)
|
|
1604
|
-
break;
|
|
1605
|
-
dispatched.delete(hash);
|
|
1606
|
-
removed++;
|
|
1607
|
-
}
|
|
1608
|
-
}
|
|
1609
|
-
}
|
|
1610
|
-
catch (err) {
|
|
1611
|
-
logError(err instanceof Error ? err : new Error(String(err)), `checkBoard ${boardPath}`, boardPath);
|
|
1612
|
-
}
|
|
1613
|
-
finally {
|
|
1614
|
-
boardLocks.delete(boardPath);
|
|
1615
|
-
resolve();
|
|
1616
|
-
}
|
|
1617
|
-
}
|
|
1618
|
-
/** Periodically update tracked cards with live session state and move between columns. */
|
|
1619
|
-
async function updateBoardState(boardPath) {
|
|
1620
|
-
if (!existsSync(boardPath))
|
|
1621
|
-
return;
|
|
1622
|
-
const existingState = boardLocks.get(boardPath);
|
|
1623
|
-
if (existingState) {
|
|
1624
|
-
await existingState;
|
|
1625
|
-
return;
|
|
1626
|
-
}
|
|
1627
|
-
let resolveState;
|
|
1628
|
-
const stateLock = new Promise((res) => { resolveState = res; });
|
|
1629
|
-
boardLocks.set(boardPath, stateLock);
|
|
1630
|
-
try {
|
|
1631
|
-
let content = readFileSync(boardPath, "utf-8");
|
|
1632
|
-
const resolvedColumns = resolveBoardColumns(boardPath, content);
|
|
1633
|
-
const headingSet = new Set(resolvedColumns.headings.map(normalizeHeadingForMatch));
|
|
1634
|
-
const trackedColumns = resolveTrackedColumns(headingSet, resolvedColumns.columnsByRole.dispatching, resolvedColumns.columnsByRole.inProgress, resolvedColumns.columnsByRole.review, resolvedColumns.columnsByRole.blocked, resolvedColumns.columnsByRole.done);
|
|
1635
|
-
const doneColumn = resolveDoneColumn(headingSet, resolvedColumns);
|
|
1636
|
-
const boardProjectId = projectFromBoardPath(boardPath, config);
|
|
1637
|
-
// During guard window, ignore only our own just-written content.
|
|
1638
|
-
const guard = writeGuard.get(boardPath);
|
|
1639
|
-
if (guard && Date.now() - guard.at < WRITE_GUARD_MS && content === guard.content) {
|
|
1640
|
-
return;
|
|
1641
|
-
}
|
|
1642
|
-
const trackedCards = getAllTrackedCards(content, trackedColumns);
|
|
1643
|
-
if (trackedCards.length === 0)
|
|
1644
|
-
return;
|
|
1645
|
-
// Fetch all active sessions in one call
|
|
1646
|
-
let sessions;
|
|
1647
|
-
try {
|
|
1648
|
-
sessions = await sessionManager.list();
|
|
1649
|
-
}
|
|
1650
|
-
catch (err) {
|
|
1651
|
-
logError(err instanceof Error ? err : new Error(String(err)), "updateBoardState list()");
|
|
1652
|
-
return;
|
|
1653
|
-
}
|
|
1654
|
-
const sessionMap = new Map(sessions.map((s) => [s.id, s]));
|
|
1655
|
-
// Fetch preview URLs for sessions with PRs (cached, rate-limited)
|
|
1656
|
-
const previewUrls = new Map();
|
|
1657
|
-
for (const card of trackedCards) {
|
|
1658
|
-
const session = sessionMap.get(card.sessionId);
|
|
1659
|
-
if (!session?.pr)
|
|
1660
|
-
continue;
|
|
1661
|
-
const cacheKey = card.sessionId;
|
|
1662
|
-
const cached = previewUrlCache.get(cacheKey);
|
|
1663
|
-
if (cached) {
|
|
1664
|
-
if (cached.url) {
|
|
1665
|
-
previewUrls.set(card.sessionId, cached.url);
|
|
1666
|
-
}
|
|
1667
|
-
else if (Date.now() - cached.checkedAt < PREVIEW_RECHECK_MS) {
|
|
1668
|
-
// Not found recently — skip re-fetch
|
|
1669
|
-
continue;
|
|
1670
|
-
}
|
|
1671
|
-
}
|
|
1672
|
-
if (!previewUrls.has(card.sessionId)) {
|
|
1673
|
-
try {
|
|
1674
|
-
const url = await fetchPreviewUrl(session.pr);
|
|
1675
|
-
previewUrlCache.set(cacheKey, { url, checkedAt: Date.now() });
|
|
1676
|
-
if (url) {
|
|
1677
|
-
previewUrls.set(card.sessionId, url);
|
|
1678
|
-
log(`Preview URL for [${card.sessionId}]: ${url}`, boardPath);
|
|
1679
|
-
}
|
|
1680
|
-
}
|
|
1681
|
-
catch {
|
|
1682
|
-
previewUrlCache.set(cacheKey, { url: null, checkedAt: Date.now() });
|
|
1683
|
-
}
|
|
1684
|
-
}
|
|
1685
|
-
}
|
|
1686
|
-
// Evict stale preview cache entries (older than 10 min) to bound memory
|
|
1687
|
-
const now = Date.now();
|
|
1688
|
-
if (previewUrlCache.size > MAX_PREVIEW_CACHE) {
|
|
1689
|
-
const staleThreshold = now - 600_000;
|
|
1690
|
-
for (const [key, entry] of previewUrlCache) {
|
|
1691
|
-
if (entry.checkedAt < staleThreshold)
|
|
1692
|
-
previewUrlCache.delete(key);
|
|
1693
|
-
}
|
|
1694
|
-
}
|
|
1695
|
-
let updated = content;
|
|
1696
|
-
let changed = false;
|
|
1697
|
-
for (const card of trackedCards) {
|
|
1698
|
-
const session = sessionMap.get(card.sessionId);
|
|
1699
|
-
if (!session) {
|
|
1700
|
-
// Session no longer active (archived/killed). Normalize to a stable
|
|
1701
|
-
// completed card line so stale "actively working" text does not linger.
|
|
1702
|
-
const completedLine = formatCompletedCardLine(card.basePrompt, card.sessionId, {
|
|
1703
|
-
taskId: card.taskId,
|
|
1704
|
-
attemptId: card.attemptId,
|
|
1705
|
-
parentTaskId: card.parentTaskId,
|
|
1706
|
-
});
|
|
1707
|
-
if (card.column !== doneColumn) {
|
|
1708
|
-
updated = moveCheckedCard(updated, card.line, card.column, doneColumn, completedLine);
|
|
1709
|
-
changed = true;
|
|
1710
|
-
log(`Card [${card.sessionId}] ${card.column} → ${doneColumn} (session archived)`, boardPath);
|
|
1711
|
-
}
|
|
1712
|
-
else if (card.line !== completedLine) {
|
|
1713
|
-
updated = replaceCardLine(updated, card.line, completedLine);
|
|
1714
|
-
changed = true;
|
|
1715
|
-
}
|
|
1716
|
-
// Allow re-dispatch if user moves card back to Ready to Dispatch
|
|
1717
|
-
const dedupeKey = buildDispatchDedupeKey({
|
|
1718
|
-
boardPath,
|
|
1719
|
-
projectId: boardProjectId,
|
|
1720
|
-
taskId: card.taskId ?? undefined,
|
|
1721
|
-
prompt: card.basePrompt,
|
|
1722
|
-
});
|
|
1723
|
-
dispatched.delete(dedupeKey);
|
|
1724
|
-
continue;
|
|
1725
|
-
}
|
|
1726
|
-
// Write/update Obsidian session note with full details
|
|
1727
|
-
try {
|
|
1728
|
-
writeSessionNote(workspacePath, card.sessionId, session, card.basePrompt, config);
|
|
1729
|
-
}
|
|
1730
|
-
catch (err) {
|
|
1731
|
-
logError(err instanceof Error ? err : new Error(String(err)), `writeSessionNote ${card.sessionId}`, boardPath);
|
|
1732
|
-
}
|
|
1733
|
-
const targetRole = statusToColumnRole(session.status);
|
|
1734
|
-
const targetColumn = resolveTrackedColumns(headingSet, resolvedColumns.columnsByRole[targetRole])[0];
|
|
1735
|
-
const preview = previewUrls.get(card.sessionId) ?? null;
|
|
1736
|
-
const newLine = formatRichCardLine(card.basePrompt, card.sessionId, session, {
|
|
1737
|
-
previewUrl: preview,
|
|
1738
|
-
dashboardUrl,
|
|
1739
|
-
});
|
|
1740
|
-
if (!targetColumn) {
|
|
1741
|
-
// Column unavailable on this board layout — keep card text current in-place.
|
|
1742
|
-
if (!DONE_STATUSES.has(session.status) && card.line !== newLine) {
|
|
1743
|
-
updated = replaceCardLine(updated, card.line, newLine);
|
|
1744
|
-
changed = true;
|
|
1745
|
-
}
|
|
1746
|
-
continue;
|
|
1747
|
-
}
|
|
1748
|
-
if (targetColumn !== card.column) {
|
|
1749
|
-
// Move to correct column with updated text
|
|
1750
|
-
updated = moveCheckedCard(updated, card.line, card.column, targetColumn, newLine);
|
|
1751
|
-
changed = true;
|
|
1752
|
-
log(`Card [${card.sessionId}] ${card.column} → ${targetColumn} (${session.status})`, boardPath);
|
|
1753
|
-
}
|
|
1754
|
-
else if (card.line !== newLine) {
|
|
1755
|
-
// Same column — update card text in place.
|
|
1756
|
-
// Skip churn for terminal sessions (done/merged/etc.) to avoid
|
|
1757
|
-
// rewriting Obsidian files every poll tick due drifting timestamps.
|
|
1758
|
-
if (!DONE_STATUSES.has(session.status)) {
|
|
1759
|
-
updated = replaceCardLine(updated, card.line, newLine);
|
|
1760
|
-
changed = true;
|
|
1761
|
-
}
|
|
1762
|
-
}
|
|
1763
|
-
}
|
|
1764
|
-
if (changed && updated !== content) {
|
|
1765
|
-
writeFileSync(boardPath, updated, "utf-8");
|
|
1766
|
-
writeGuard.set(boardPath, { content: updated, at: Date.now() });
|
|
1767
|
-
nudgeObsidian(boardPath);
|
|
1768
|
-
log(`Board state updated: ${boardPath}`, boardPath);
|
|
1769
|
-
}
|
|
1770
|
-
}
|
|
1771
|
-
catch (err) {
|
|
1772
|
-
logError(err instanceof Error ? err : new Error(String(err)), `updateBoardState ${boardPath}`, boardPath);
|
|
1773
|
-
}
|
|
1774
|
-
finally {
|
|
1775
|
-
boardLocks.delete(boardPath);
|
|
1776
|
-
resolveState();
|
|
1777
|
-
}
|
|
1778
|
-
}
|
|
1779
|
-
return {
|
|
1780
|
-
start() {
|
|
1781
|
-
if (running)
|
|
1782
|
-
return;
|
|
1783
|
-
running = true;
|
|
1784
|
-
log(`Watching ${boardPaths.length} board(s)`);
|
|
1785
|
-
for (const bp of boardPaths) {
|
|
1786
|
-
log(` - ${bp}`);
|
|
1787
|
-
}
|
|
1788
|
-
// Use Node.js fs.watch for each board file
|
|
1789
|
-
for (const boardPath of boardPaths) {
|
|
1790
|
-
if (!existsSync(boardPath)) {
|
|
1791
|
-
log(`Board not found (skipping): ${boardPath}`);
|
|
1792
|
-
continue;
|
|
1793
|
-
}
|
|
1794
|
-
try {
|
|
1795
|
-
const watcher = fsWatch(boardPath, { persistent: false }, (eventType) => {
|
|
1796
|
-
if (eventType === "change") {
|
|
1797
|
-
// Quick debounce: wait 500ms for file write to complete, then enhance immediately
|
|
1798
|
-
setTimeout(() => {
|
|
1799
|
-
void enhanceInbox(boardPath, config, supportedAgents);
|
|
1800
|
-
void checkBoard(boardPath);
|
|
1801
|
-
}, 500);
|
|
1802
|
-
}
|
|
1803
|
-
});
|
|
1804
|
-
watcher.on("error", (err) => {
|
|
1805
|
-
logError(err, `fs.watch ${boardPath}`);
|
|
1806
|
-
});
|
|
1807
|
-
watchers.push(watcher);
|
|
1808
|
-
}
|
|
1809
|
-
catch (err) {
|
|
1810
|
-
logError(err instanceof Error ? err : new Error(String(err)), `watch setup ${boardPath}`);
|
|
1811
|
-
}
|
|
1812
|
-
}
|
|
1813
|
-
syncWorkspaceSupportFiles(config, {
|
|
1814
|
-
workspacePath,
|
|
1815
|
-
boardPaths,
|
|
1816
|
-
agentNames: supportedAgents,
|
|
1817
|
-
});
|
|
1818
|
-
setTimeout(() => {
|
|
1819
|
-
for (const boardPath of boardPaths) {
|
|
1820
|
-
void enhanceInbox(boardPath, config, supportedAgents);
|
|
1821
|
-
}
|
|
1822
|
-
}, 500);
|
|
1823
|
-
// Run initial board check 1s after startup so existing "Ready to Dispatch"
|
|
1824
|
-
// tasks are dispatched without waiting for a file change event.
|
|
1825
|
-
setTimeout(() => {
|
|
1826
|
-
for (const boardPath of boardPaths) {
|
|
1827
|
-
void checkBoard(boardPath);
|
|
1828
|
-
}
|
|
1829
|
-
}, 1000);
|
|
1830
|
-
// Fallback poll in case fs.watch misses events (common on macOS + Obsidian).
|
|
1831
|
-
// Run continuously so we don't rely on file event timing quirks.
|
|
1832
|
-
// Use 1s interval for faster user feedback
|
|
1833
|
-
const pollMs = watcherConfig.pollIntervalMs ?? 1000;
|
|
1834
|
-
pollInterval = setInterval(() => {
|
|
1835
|
-
for (const boardPath of boardPaths) {
|
|
1836
|
-
if (!existsSync(boardPath))
|
|
1837
|
-
continue;
|
|
1838
|
-
void enhanceInbox(boardPath, config, supportedAgents);
|
|
1839
|
-
void checkBoard(boardPath);
|
|
1840
|
-
}
|
|
1841
|
-
}, pollMs);
|
|
1842
|
-
// Session state update loop — enriches cards with live status
|
|
1843
|
-
updateInterval = setInterval(() => {
|
|
1844
|
-
for (const boardPath of boardPaths) {
|
|
1845
|
-
void updateBoardState(boardPath);
|
|
1846
|
-
}
|
|
1847
|
-
}, 5_000);
|
|
1848
|
-
// Run initial state update after 3s (let first dispatch cycle complete)
|
|
1849
|
-
setTimeout(() => {
|
|
1850
|
-
for (const boardPath of boardPaths) {
|
|
1851
|
-
void updateBoardState(boardPath);
|
|
1852
|
-
}
|
|
1853
|
-
}, 3_000);
|
|
1854
|
-
},
|
|
1855
|
-
updateNow() {
|
|
1856
|
-
for (const boardPath of boardPaths) {
|
|
1857
|
-
void updateBoardState(boardPath);
|
|
1858
|
-
}
|
|
1859
|
-
},
|
|
1860
|
-
stop() {
|
|
1861
|
-
running = false;
|
|
1862
|
-
for (const w of watchers) {
|
|
1863
|
-
w.close();
|
|
1864
|
-
}
|
|
1865
|
-
watchers.length = 0;
|
|
1866
|
-
if (pollInterval) {
|
|
1867
|
-
clearInterval(pollInterval);
|
|
1868
|
-
pollInterval = null;
|
|
1869
|
-
}
|
|
1870
|
-
if (updateInterval) {
|
|
1871
|
-
clearInterval(updateInterval);
|
|
1872
|
-
updateInterval = null;
|
|
1873
|
-
}
|
|
1874
|
-
// Release cached data
|
|
1875
|
-
previewUrlCache.clear();
|
|
1876
|
-
boardLocks.clear();
|
|
1877
|
-
log("Stopped");
|
|
1878
|
-
},
|
|
1879
|
-
checkBoard,
|
|
1880
|
-
};
|
|
1881
|
-
}
|
|
1882
|
-
// ---------------------------------------------------------------------------
|
|
1883
|
-
// Helpers for discovering boards
|
|
1884
|
-
// ---------------------------------------------------------------------------
|
|
1885
|
-
/** Find all CONDUCTOR.md boards in the workspace. */
|
|
1886
|
-
export function discoverBoards(workspacePath, boardPathsOrConfig) {
|
|
1887
|
-
const boards = new Set();
|
|
1888
|
-
const legacyConfig = isOrchestratorConfig(boardPathsOrConfig)
|
|
1889
|
-
? boardPathsOrConfig
|
|
1890
|
-
: undefined;
|
|
1891
|
-
if (Array.isArray(boardPathsOrConfig)) {
|
|
1892
|
-
if (boardPathsOrConfig.length === 0) {
|
|
1893
|
-
const legacyBoards = discoverBoardsLegacy(workspacePath);
|
|
1894
|
-
for (const board of legacyBoards) {
|
|
1895
|
-
boards.add(board);
|
|
1896
|
-
}
|
|
1897
|
-
return [...boards];
|
|
1898
|
-
}
|
|
1899
|
-
for (const boardPatternEntry of boardPathsOrConfig) {
|
|
1900
|
-
const boardPatternRaw = typeof boardPatternEntry === "string"
|
|
1901
|
-
? boardPatternEntry
|
|
1902
|
-
: boardPatternEntry.path;
|
|
1903
|
-
const boardPattern = boardPatternRaw.trim();
|
|
1904
|
-
if (!boardPattern)
|
|
1905
|
-
continue;
|
|
1906
|
-
const resolvedPattern = resolveBoardPattern(boardPattern);
|
|
1907
|
-
const matches = resolveBoardPatternToFiles(resolvedPattern, workspacePath, isAbsolutePath(resolvedPattern));
|
|
1908
|
-
for (const match of matches) {
|
|
1909
|
-
boards.add(canonicalizeExistingPath(match));
|
|
1910
|
-
}
|
|
1911
|
-
}
|
|
1912
|
-
return [...boards];
|
|
1913
|
-
}
|
|
1914
|
-
const legacyBoards = discoverBoardsLegacy(workspacePath, legacyConfig);
|
|
1915
|
-
for (const board of legacyBoards) {
|
|
1916
|
-
boards.add(board);
|
|
1917
|
-
}
|
|
1918
|
-
return [...boards];
|
|
1919
|
-
}
|
|
1920
|
-
/** Legacy behavior: discover workspace CONDUCTOR.md + project CONDUCTOR.md files. */
|
|
1921
|
-
function discoverBoardsLegacy(workspacePath, config) {
|
|
1922
|
-
const boards = [];
|
|
1923
|
-
const seen = new Set();
|
|
1924
|
-
const addBoard = (path) => {
|
|
1925
|
-
if (!existsSync(path))
|
|
1926
|
-
return;
|
|
1927
|
-
const canonicalPath = canonicalizeExistingPath(path);
|
|
1928
|
-
if (seen.has(canonicalPath))
|
|
1929
|
-
return;
|
|
1930
|
-
seen.add(canonicalPath);
|
|
1931
|
-
boards.push(canonicalPath);
|
|
1932
|
-
};
|
|
1933
|
-
// Workspace-level board
|
|
1934
|
-
addBoard(join(workspacePath, "CONDUCTOR.md"));
|
|
1935
|
-
const isKanbanBoardFile = (path) => {
|
|
1936
|
-
if (!existsSync(path))
|
|
1937
|
-
return false;
|
|
1938
|
-
try {
|
|
1939
|
-
const content = readFileSync(path, "utf-8");
|
|
1940
|
-
return /(?:^|\n)\s*kanban-plugin:\s*board\s*(?:$|\n)/i.test(content);
|
|
1941
|
-
}
|
|
1942
|
-
catch {
|
|
1943
|
-
return false;
|
|
1944
|
-
}
|
|
1945
|
-
};
|
|
1946
|
-
const collectKanbanMarkdown = (rootDir, maxDepth) => {
|
|
1947
|
-
const walk = (dir, depth) => {
|
|
1948
|
-
if (depth > maxDepth)
|
|
1949
|
-
return;
|
|
1950
|
-
let entries = [];
|
|
1951
|
-
try {
|
|
1952
|
-
entries = readdirSync(dir, { encoding: "utf-8" });
|
|
1953
|
-
}
|
|
1954
|
-
catch {
|
|
1955
|
-
return;
|
|
1956
|
-
}
|
|
1957
|
-
for (const entry of entries) {
|
|
1958
|
-
if (entry.startsWith("."))
|
|
1959
|
-
continue;
|
|
1960
|
-
const full = join(dir, entry);
|
|
1961
|
-
try {
|
|
1962
|
-
const st = statSync(full);
|
|
1963
|
-
if (st.isDirectory()) {
|
|
1964
|
-
walk(full, depth + 1);
|
|
1965
|
-
continue;
|
|
1966
|
-
}
|
|
1967
|
-
if (!st.isFile())
|
|
1968
|
-
continue;
|
|
1969
|
-
if (!entry.toLowerCase().endsWith(".md"))
|
|
1970
|
-
continue;
|
|
1971
|
-
if (isKanbanBoardFile(full))
|
|
1972
|
-
addBoard(full);
|
|
1973
|
-
}
|
|
1974
|
-
catch {
|
|
1975
|
-
// Ignore transient entries
|
|
1976
|
-
}
|
|
1977
|
-
}
|
|
1978
|
-
};
|
|
1979
|
-
walk(rootDir, 0);
|
|
1980
|
-
};
|
|
1981
|
-
// Project-level boards under workspace/projects
|
|
1982
|
-
const projectsDir = join(workspacePath, "projects");
|
|
1983
|
-
if (existsSync(projectsDir)) {
|
|
1984
|
-
try {
|
|
1985
|
-
for (const entry of readdirSync(projectsDir)) {
|
|
1986
|
-
const full = join(projectsDir, entry);
|
|
1987
|
-
try {
|
|
1988
|
-
const st = statSync(full);
|
|
1989
|
-
if (st.isDirectory()) {
|
|
1990
|
-
addBoard(join(full, "CONDUCTOR.md"));
|
|
1991
|
-
collectKanbanMarkdown(full, 2);
|
|
1992
|
-
}
|
|
1993
|
-
else if (st.isFile() && entry.toLowerCase().endsWith(".md") && isKanbanBoardFile(full)) {
|
|
1994
|
-
addBoard(full);
|
|
1995
|
-
}
|
|
1996
|
-
}
|
|
1997
|
-
catch {
|
|
1998
|
-
// Ignore entries that disappear between readdir and stat
|
|
1999
|
-
}
|
|
2000
|
-
}
|
|
2001
|
-
}
|
|
2002
|
-
catch {
|
|
2003
|
-
// Can't read projects dir
|
|
2004
|
-
}
|
|
2005
|
-
}
|
|
2006
|
-
// Also watch repo-local boards from configured project.path values.
|
|
2007
|
-
// This covers cases where users edit nested board files in project repos.
|
|
2008
|
-
if (config) {
|
|
2009
|
-
for (const project of Object.values(config.projects)) {
|
|
2010
|
-
const projectRoot = expandHome(project.path);
|
|
2011
|
-
addBoard(join(projectRoot, "CONDUCTOR.md"));
|
|
2012
|
-
collectKanbanMarkdown(projectRoot, 2);
|
|
2013
|
-
}
|
|
2014
|
-
}
|
|
2015
|
-
return boards;
|
|
2016
|
-
}
|
|
2017
|
-
function canonicalizeExistingPath(pathname) {
|
|
2018
|
-
const resolvedPath = resolve(pathname);
|
|
2019
|
-
if (!existsSync(resolvedPath)) {
|
|
2020
|
-
return resolvedPath;
|
|
2021
|
-
}
|
|
2022
|
-
try {
|
|
2023
|
-
return realpathSync.native(resolvedPath);
|
|
2024
|
-
}
|
|
2025
|
-
catch {
|
|
2026
|
-
return resolvedPath;
|
|
2027
|
-
}
|
|
2028
|
-
}
|
|
2029
|
-
/** Expand ~ to home directory. */
|
|
2030
|
-
function expandHome(filepath) {
|
|
2031
|
-
if (!filepath.startsWith("~/")) {
|
|
2032
|
-
return filepath;
|
|
2033
|
-
}
|
|
2034
|
-
const home = process.env["HOME"] ?? process.env["USERPROFILE"];
|
|
2035
|
-
if (!home) {
|
|
2036
|
-
return filepath;
|
|
2037
|
-
}
|
|
2038
|
-
return join(home, filepath.slice(2));
|
|
2039
|
-
}
|
|
2040
|
-
/** Convert a workspace-relative or explicit board path into a normalized pattern path. */
|
|
2041
|
-
function resolveBoardPattern(boardPattern) {
|
|
2042
|
-
const expanded = expandHome(boardPattern);
|
|
2043
|
-
if (isAbsolutePath(expanded)) {
|
|
2044
|
-
return expanded;
|
|
2045
|
-
}
|
|
2046
|
-
return expanded;
|
|
2047
|
-
}
|
|
2048
|
-
function isAbsolutePath(pathname) {
|
|
2049
|
-
return (pathname.startsWith("/") ||
|
|
2050
|
-
/^[A-Za-z]:[\\/]/.test(pathname));
|
|
2051
|
-
}
|
|
2052
|
-
function isGlobPattern(pathname) {
|
|
2053
|
-
return pathname.includes("*") || pathname.includes("?") || pathname.includes("[");
|
|
2054
|
-
}
|
|
2055
|
-
function segmentToRegex(segment) {
|
|
2056
|
-
if (!segment.includes("*") && !segment.includes("?") && !segment.includes("[")) {
|
|
2057
|
-
return new RegExp(`^${segment.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}$`);
|
|
2058
|
-
}
|
|
2059
|
-
const escaped = segment
|
|
2060
|
-
.replace(/[.+^${}()|[\]\\]/g, "\\$&")
|
|
2061
|
-
.replace(/\*/g, "[^/\\\\]*")
|
|
2062
|
-
.replace(/\?/g, "[^/\\\\]");
|
|
2063
|
-
return new RegExp(`^${escaped}$`);
|
|
2064
|
-
}
|
|
2065
|
-
function walkGlob(currentDir, segments, index, hits) {
|
|
2066
|
-
if (index >= segments.length) {
|
|
2067
|
-
if (existsSync(currentDir)) {
|
|
2068
|
-
hits.add(currentDir);
|
|
2069
|
-
}
|
|
2070
|
-
return;
|
|
2071
|
-
}
|
|
2072
|
-
const segment = segments[index];
|
|
2073
|
-
if (segment === "**") {
|
|
2074
|
-
walkGlob(currentDir, segments, index + 1, hits);
|
|
2075
|
-
let entries = [];
|
|
2076
|
-
try {
|
|
2077
|
-
entries = readdirSync(currentDir, { withFileTypes: true })
|
|
2078
|
-
.filter((entry) => entry.isDirectory())
|
|
2079
|
-
.map((entry) => ({ name: entry.name, isDirectory: true }));
|
|
2080
|
-
}
|
|
2081
|
-
catch {
|
|
2082
|
-
return;
|
|
2083
|
-
}
|
|
2084
|
-
for (const entry of entries) {
|
|
2085
|
-
walkGlob(join(currentDir, entry.name), segments, index, hits);
|
|
2086
|
-
}
|
|
2087
|
-
return;
|
|
2088
|
-
}
|
|
2089
|
-
let dirEntries = [];
|
|
2090
|
-
try {
|
|
2091
|
-
dirEntries = readdirSync(currentDir, { withFileTypes: true })
|
|
2092
|
-
.map((entry) => ({ name: entry.name, isDirectory: entry.isDirectory(), isFile: entry.isFile() }));
|
|
2093
|
-
}
|
|
2094
|
-
catch {
|
|
2095
|
-
return;
|
|
2096
|
-
}
|
|
2097
|
-
const matcher = segmentToRegex(segment);
|
|
2098
|
-
const isFinalSegment = index === segments.length - 1;
|
|
2099
|
-
for (const entry of dirEntries) {
|
|
2100
|
-
if (!matcher.test(entry.name))
|
|
2101
|
-
continue;
|
|
2102
|
-
const candidate = join(currentDir, entry.name);
|
|
2103
|
-
if (isFinalSegment) {
|
|
2104
|
-
if (!entry.isDirectory) {
|
|
2105
|
-
hits.add(candidate);
|
|
2106
|
-
}
|
|
2107
|
-
continue;
|
|
2108
|
-
}
|
|
2109
|
-
if (entry.isDirectory) {
|
|
2110
|
-
walkGlob(candidate, segments, index + 1, hits);
|
|
2111
|
-
}
|
|
2112
|
-
}
|
|
2113
|
-
}
|
|
2114
|
-
function resolveBoardPatternToFiles(patternPath, workspacePath, isAbsolute = false) {
|
|
2115
|
-
const absolutePattern = isAbsolute
|
|
2116
|
-
? patternPath
|
|
2117
|
-
: join(workspacePath, patternPath);
|
|
2118
|
-
if (!isGlobPattern(absolutePattern)) {
|
|
2119
|
-
if (existsSync(absolutePattern) && statSync(absolutePattern).isFile()) {
|
|
2120
|
-
return [absolutePattern];
|
|
2121
|
-
}
|
|
2122
|
-
return [];
|
|
2123
|
-
}
|
|
2124
|
-
const parts = isAbsolute
|
|
2125
|
-
? splitAbsolutePattern(absolutePattern).parts
|
|
2126
|
-
: patternPath.replace(/\\/g, "/").split("/").filter(Boolean);
|
|
2127
|
-
const rootDir = isAbsolute ? splitAbsolutePattern(absolutePattern).root : workspacePath;
|
|
2128
|
-
if (!existsSync(rootDir) || !statSync(rootDir).isDirectory()) {
|
|
2129
|
-
return [];
|
|
2130
|
-
}
|
|
2131
|
-
const hits = new Set();
|
|
2132
|
-
walkGlob(rootDir, parts, 0, hits);
|
|
2133
|
-
return [...hits];
|
|
2134
|
-
}
|
|
2135
|
-
function splitAbsolutePattern(patternPath) {
|
|
2136
|
-
if (/^[A-Za-z]:\//.test(patternPath)) {
|
|
2137
|
-
return { root: patternPath.slice(0, 3), parts: patternPath.slice(3).split("/").filter(Boolean) };
|
|
2138
|
-
}
|
|
2139
|
-
if (patternPath.startsWith("/")) {
|
|
2140
|
-
return { root: "/", parts: patternPath.slice(1).split("/").filter(Boolean) };
|
|
2141
|
-
}
|
|
2142
|
-
return { root: "", parts: patternPath.split("/").filter(Boolean) };
|
|
2143
|
-
}
|
|
2144
|
-
/** Narrowing helper for overloaded discoverBoards parameter. */
|
|
2145
|
-
function isOrchestratorConfig(value) {
|
|
2146
|
-
if (!value || typeof value !== "object") {
|
|
2147
|
-
return false;
|
|
2148
|
-
}
|
|
2149
|
-
return "projects" in value && "defaults" in value;
|
|
2150
|
-
}
|
|
2151
|
-
/** Build the board-to-project mapping for a config. */
|
|
2152
|
-
export function buildBoardProjectMap(boards, config) {
|
|
2153
|
-
const map = new Map();
|
|
2154
|
-
for (const boardPath of boards) {
|
|
2155
|
-
const projectId = projectFromBoardPath(boardPath, config);
|
|
2156
|
-
if (projectId) {
|
|
2157
|
-
map.set(boardPath, projectId);
|
|
2158
|
-
}
|
|
2159
|
-
}
|
|
2160
|
-
return map;
|
|
2161
|
-
}
|
|
2162
|
-
//# sourceMappingURL=board-watcher.js.map
|