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
|
@@ -0,0 +1,1406 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Google Inc.
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
7
|
+
var useValue = arguments.length > 2;
|
|
8
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
9
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
10
|
+
}
|
|
11
|
+
return useValue ? value : void 0;
|
|
12
|
+
};
|
|
13
|
+
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
14
|
+
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
15
|
+
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
16
|
+
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
17
|
+
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
18
|
+
var _, done = false;
|
|
19
|
+
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
20
|
+
var context = {};
|
|
21
|
+
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
22
|
+
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
23
|
+
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
24
|
+
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
25
|
+
if (kind === "accessor") {
|
|
26
|
+
if (result === void 0) continue;
|
|
27
|
+
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
28
|
+
if (_ = accept(result.get)) descriptor.get = _;
|
|
29
|
+
if (_ = accept(result.set)) descriptor.set = _;
|
|
30
|
+
if (_ = accept(result.init)) initializers.unshift(_);
|
|
31
|
+
}
|
|
32
|
+
else if (_ = accept(result)) {
|
|
33
|
+
if (kind === "field") initializers.unshift(_);
|
|
34
|
+
else descriptor[key] = _;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
38
|
+
done = true;
|
|
39
|
+
};
|
|
40
|
+
var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {
|
|
41
|
+
if (value !== null && value !== void 0) {
|
|
42
|
+
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
|
|
43
|
+
var dispose, inner;
|
|
44
|
+
if (async) {
|
|
45
|
+
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
|
|
46
|
+
dispose = value[Symbol.asyncDispose];
|
|
47
|
+
}
|
|
48
|
+
if (dispose === void 0) {
|
|
49
|
+
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
|
|
50
|
+
dispose = value[Symbol.dispose];
|
|
51
|
+
if (async) inner = dispose;
|
|
52
|
+
}
|
|
53
|
+
if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
|
|
54
|
+
if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };
|
|
55
|
+
env.stack.push({ value: value, dispose: dispose, async: async });
|
|
56
|
+
}
|
|
57
|
+
else if (async) {
|
|
58
|
+
env.stack.push({ async: true });
|
|
59
|
+
}
|
|
60
|
+
return value;
|
|
61
|
+
};
|
|
62
|
+
var __disposeResources = (this && this.__disposeResources) || (function (SuppressedError) {
|
|
63
|
+
return function (env) {
|
|
64
|
+
function fail(e) {
|
|
65
|
+
env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
|
|
66
|
+
env.hasError = true;
|
|
67
|
+
}
|
|
68
|
+
var r, s = 0;
|
|
69
|
+
function next() {
|
|
70
|
+
while (r = env.stack.pop()) {
|
|
71
|
+
try {
|
|
72
|
+
if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
|
|
73
|
+
if (r.dispose) {
|
|
74
|
+
var result = r.dispose.call(r.value);
|
|
75
|
+
if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
|
|
76
|
+
}
|
|
77
|
+
else s |= 1;
|
|
78
|
+
}
|
|
79
|
+
catch (e) {
|
|
80
|
+
fail(e);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
|
|
84
|
+
if (env.hasError) throw env.error;
|
|
85
|
+
}
|
|
86
|
+
return next();
|
|
87
|
+
};
|
|
88
|
+
})(typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
89
|
+
var e = new Error(message);
|
|
90
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
91
|
+
});
|
|
92
|
+
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
93
|
+
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
94
|
+
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
95
|
+
};
|
|
96
|
+
import { getQueryHandlerAndSelector } from '../common/GetQueryHandler.js';
|
|
97
|
+
import { LazyArg } from '../common/LazyArg.js';
|
|
98
|
+
import { isString, withSourcePuppeteerURLIfNone } from '../common/util.js';
|
|
99
|
+
import { assert } from '../util/assert.js';
|
|
100
|
+
import { AsyncIterableUtil } from '../util/AsyncIterableUtil.js';
|
|
101
|
+
import { throwIfDisposed } from '../util/decorators.js';
|
|
102
|
+
import { _isElementHandle } from './ElementHandleSymbol.js';
|
|
103
|
+
import { JSHandle } from './JSHandle.js';
|
|
104
|
+
import { NodeLocator } from './locators/locators.js';
|
|
105
|
+
/**
|
|
106
|
+
* A given method will have it's `this` replaced with an isolated version of
|
|
107
|
+
* `this` when decorated with this decorator.
|
|
108
|
+
*
|
|
109
|
+
* All changes of isolated `this` are reflected on the actual `this`.
|
|
110
|
+
*
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
export function bindIsolatedHandle(target, _) {
|
|
114
|
+
return async function (...args) {
|
|
115
|
+
// If the handle is already isolated, then we don't need to adopt it
|
|
116
|
+
// again.
|
|
117
|
+
if (this.realm === this.frame.isolatedRealm()) {
|
|
118
|
+
return await target.call(this, ...args);
|
|
119
|
+
}
|
|
120
|
+
let adoptedThis;
|
|
121
|
+
if (this['isolatedHandle']) {
|
|
122
|
+
adoptedThis = this['isolatedHandle'];
|
|
123
|
+
}
|
|
124
|
+
else {
|
|
125
|
+
this['isolatedHandle'] = adoptedThis = await this.frame
|
|
126
|
+
.isolatedRealm()
|
|
127
|
+
.adoptHandle(this);
|
|
128
|
+
}
|
|
129
|
+
const result = await target.call(adoptedThis, ...args);
|
|
130
|
+
// If the function returns `adoptedThis`, then we return `this`.
|
|
131
|
+
if (result === adoptedThis) {
|
|
132
|
+
return this;
|
|
133
|
+
}
|
|
134
|
+
// If the function returns a handle, transfer it into the current realm.
|
|
135
|
+
if (result instanceof JSHandle) {
|
|
136
|
+
return await this.realm.transferHandle(result);
|
|
137
|
+
}
|
|
138
|
+
// If the function returns an array of handlers, transfer them into the
|
|
139
|
+
// current realm.
|
|
140
|
+
if (Array.isArray(result)) {
|
|
141
|
+
await Promise.all(result.map(async (item, index, result) => {
|
|
142
|
+
if (item instanceof JSHandle) {
|
|
143
|
+
result[index] = await this.realm.transferHandle(item);
|
|
144
|
+
}
|
|
145
|
+
}));
|
|
146
|
+
}
|
|
147
|
+
if (result instanceof Map) {
|
|
148
|
+
await Promise.all([...result.entries()].map(async ([key, value]) => {
|
|
149
|
+
if (value instanceof JSHandle) {
|
|
150
|
+
result.set(key, await this.realm.transferHandle(value));
|
|
151
|
+
}
|
|
152
|
+
}));
|
|
153
|
+
}
|
|
154
|
+
return result;
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* ElementHandle represents an in-page DOM element.
|
|
159
|
+
*
|
|
160
|
+
* @remarks
|
|
161
|
+
* ElementHandles can be created with the {@link Page.$} method.
|
|
162
|
+
*
|
|
163
|
+
* ```ts
|
|
164
|
+
* import puppeteer from 'puppeteer';
|
|
165
|
+
*
|
|
166
|
+
* const browser = await puppeteer.launch();
|
|
167
|
+
* const page = await browser.newPage();
|
|
168
|
+
* await page.goto('https://example.com');
|
|
169
|
+
* const hrefElement = await page.$('a');
|
|
170
|
+
* await hrefElement.click();
|
|
171
|
+
* // ...
|
|
172
|
+
* ```
|
|
173
|
+
*
|
|
174
|
+
* ElementHandle prevents the DOM element from being garbage-collected unless the
|
|
175
|
+
* handle is {@link JSHandle.dispose | disposed}. ElementHandles are auto-disposed
|
|
176
|
+
* when their associated frame is navigated away or the parent
|
|
177
|
+
* context gets destroyed.
|
|
178
|
+
*
|
|
179
|
+
* ElementHandle instances can be used as arguments in {@link Page.$eval} and
|
|
180
|
+
* {@link Page.evaluate} methods.
|
|
181
|
+
*
|
|
182
|
+
* If you're using TypeScript, ElementHandle takes a generic argument that
|
|
183
|
+
* denotes the type of element the handle is holding within. For example, if you
|
|
184
|
+
* have a handle to a `<select>` element, you can type it as
|
|
185
|
+
* `ElementHandle<HTMLSelectElement>` and you get some nicer type checks.
|
|
186
|
+
*
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
let ElementHandle = (() => {
|
|
190
|
+
let _classSuper = JSHandle;
|
|
191
|
+
let _instanceExtraInitializers = [];
|
|
192
|
+
let _getProperty_decorators;
|
|
193
|
+
let _getProperties_decorators;
|
|
194
|
+
let _jsonValue_decorators;
|
|
195
|
+
let _$_decorators;
|
|
196
|
+
let _$$_decorators;
|
|
197
|
+
let _private_$$_decorators;
|
|
198
|
+
let _private_$$_descriptor;
|
|
199
|
+
let _waitForSelector_decorators;
|
|
200
|
+
let _isVisible_decorators;
|
|
201
|
+
let _isHidden_decorators;
|
|
202
|
+
let _toElement_decorators;
|
|
203
|
+
let _clickablePoint_decorators;
|
|
204
|
+
let _hover_decorators;
|
|
205
|
+
let _click_decorators;
|
|
206
|
+
let _drag_decorators;
|
|
207
|
+
let _dragEnter_decorators;
|
|
208
|
+
let _dragOver_decorators;
|
|
209
|
+
let _drop_decorators;
|
|
210
|
+
let _dragAndDrop_decorators;
|
|
211
|
+
let _select_decorators;
|
|
212
|
+
let _tap_decorators;
|
|
213
|
+
let _touchStart_decorators;
|
|
214
|
+
let _touchMove_decorators;
|
|
215
|
+
let _touchEnd_decorators;
|
|
216
|
+
let _focus_decorators;
|
|
217
|
+
let _type_decorators;
|
|
218
|
+
let _press_decorators;
|
|
219
|
+
let _boundingBox_decorators;
|
|
220
|
+
let _boxModel_decorators;
|
|
221
|
+
let _screenshot_decorators;
|
|
222
|
+
let _isIntersectingViewport_decorators;
|
|
223
|
+
let _scrollIntoView_decorators;
|
|
224
|
+
let _asLocator_decorators;
|
|
225
|
+
return class ElementHandle extends _classSuper {
|
|
226
|
+
static {
|
|
227
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
228
|
+
_getProperty_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
229
|
+
_getProperties_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
230
|
+
_jsonValue_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
231
|
+
_$_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
232
|
+
_$$_decorators = [throwIfDisposed()];
|
|
233
|
+
_private_$$_decorators = [bindIsolatedHandle];
|
|
234
|
+
_waitForSelector_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
235
|
+
_isVisible_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
236
|
+
_isHidden_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
237
|
+
_toElement_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
238
|
+
_clickablePoint_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
239
|
+
_hover_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
240
|
+
_click_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
241
|
+
_drag_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
242
|
+
_dragEnter_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
243
|
+
_dragOver_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
244
|
+
_drop_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
245
|
+
_dragAndDrop_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
246
|
+
_select_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
247
|
+
_tap_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
248
|
+
_touchStart_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
249
|
+
_touchMove_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
250
|
+
_touchEnd_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
251
|
+
_focus_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
252
|
+
_type_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
253
|
+
_press_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
254
|
+
_boundingBox_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
255
|
+
_boxModel_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
256
|
+
_screenshot_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
257
|
+
_isIntersectingViewport_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
258
|
+
_scrollIntoView_decorators = [throwIfDisposed(), bindIsolatedHandle];
|
|
259
|
+
_asLocator_decorators = [throwIfDisposed()];
|
|
260
|
+
__esDecorate(this, null, _getProperty_decorators, { kind: "method", name: "getProperty", static: false, private: false, access: { has: obj => "getProperty" in obj, get: obj => obj.getProperty }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
261
|
+
__esDecorate(this, null, _getProperties_decorators, { kind: "method", name: "getProperties", static: false, private: false, access: { has: obj => "getProperties" in obj, get: obj => obj.getProperties }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
262
|
+
__esDecorate(this, null, _jsonValue_decorators, { kind: "method", name: "jsonValue", static: false, private: false, access: { has: obj => "jsonValue" in obj, get: obj => obj.jsonValue }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
263
|
+
__esDecorate(this, null, _$_decorators, { kind: "method", name: "$", static: false, private: false, access: { has: obj => "$" in obj, get: obj => obj.$ }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
264
|
+
__esDecorate(this, null, _$$_decorators, { kind: "method", name: "$$", static: false, private: false, access: { has: obj => "$$" in obj, get: obj => obj.$$ }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
265
|
+
__esDecorate(this, _private_$$_descriptor = { value: __setFunctionName(async function (selector) {
|
|
266
|
+
return await this.#$$impl(selector);
|
|
267
|
+
}, "#$$") }, _private_$$_decorators, { kind: "method", name: "#$$", static: false, private: true, access: { has: obj => #$$ in obj, get: obj => obj.#$$ }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
268
|
+
__esDecorate(this, null, _waitForSelector_decorators, { kind: "method", name: "waitForSelector", static: false, private: false, access: { has: obj => "waitForSelector" in obj, get: obj => obj.waitForSelector }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
269
|
+
__esDecorate(this, null, _isVisible_decorators, { kind: "method", name: "isVisible", static: false, private: false, access: { has: obj => "isVisible" in obj, get: obj => obj.isVisible }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
270
|
+
__esDecorate(this, null, _isHidden_decorators, { kind: "method", name: "isHidden", static: false, private: false, access: { has: obj => "isHidden" in obj, get: obj => obj.isHidden }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
271
|
+
__esDecorate(this, null, _toElement_decorators, { kind: "method", name: "toElement", static: false, private: false, access: { has: obj => "toElement" in obj, get: obj => obj.toElement }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
272
|
+
__esDecorate(this, null, _clickablePoint_decorators, { kind: "method", name: "clickablePoint", static: false, private: false, access: { has: obj => "clickablePoint" in obj, get: obj => obj.clickablePoint }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
273
|
+
__esDecorate(this, null, _hover_decorators, { kind: "method", name: "hover", static: false, private: false, access: { has: obj => "hover" in obj, get: obj => obj.hover }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
274
|
+
__esDecorate(this, null, _click_decorators, { kind: "method", name: "click", static: false, private: false, access: { has: obj => "click" in obj, get: obj => obj.click }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
275
|
+
__esDecorate(this, null, _drag_decorators, { kind: "method", name: "drag", static: false, private: false, access: { has: obj => "drag" in obj, get: obj => obj.drag }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
276
|
+
__esDecorate(this, null, _dragEnter_decorators, { kind: "method", name: "dragEnter", static: false, private: false, access: { has: obj => "dragEnter" in obj, get: obj => obj.dragEnter }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
277
|
+
__esDecorate(this, null, _dragOver_decorators, { kind: "method", name: "dragOver", static: false, private: false, access: { has: obj => "dragOver" in obj, get: obj => obj.dragOver }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
278
|
+
__esDecorate(this, null, _drop_decorators, { kind: "method", name: "drop", static: false, private: false, access: { has: obj => "drop" in obj, get: obj => obj.drop }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
279
|
+
__esDecorate(this, null, _dragAndDrop_decorators, { kind: "method", name: "dragAndDrop", static: false, private: false, access: { has: obj => "dragAndDrop" in obj, get: obj => obj.dragAndDrop }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
280
|
+
__esDecorate(this, null, _select_decorators, { kind: "method", name: "select", static: false, private: false, access: { has: obj => "select" in obj, get: obj => obj.select }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
281
|
+
__esDecorate(this, null, _tap_decorators, { kind: "method", name: "tap", static: false, private: false, access: { has: obj => "tap" in obj, get: obj => obj.tap }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
282
|
+
__esDecorate(this, null, _touchStart_decorators, { kind: "method", name: "touchStart", static: false, private: false, access: { has: obj => "touchStart" in obj, get: obj => obj.touchStart }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
283
|
+
__esDecorate(this, null, _touchMove_decorators, { kind: "method", name: "touchMove", static: false, private: false, access: { has: obj => "touchMove" in obj, get: obj => obj.touchMove }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
284
|
+
__esDecorate(this, null, _touchEnd_decorators, { kind: "method", name: "touchEnd", static: false, private: false, access: { has: obj => "touchEnd" in obj, get: obj => obj.touchEnd }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
285
|
+
__esDecorate(this, null, _focus_decorators, { kind: "method", name: "focus", static: false, private: false, access: { has: obj => "focus" in obj, get: obj => obj.focus }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
286
|
+
__esDecorate(this, null, _type_decorators, { kind: "method", name: "type", static: false, private: false, access: { has: obj => "type" in obj, get: obj => obj.type }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
287
|
+
__esDecorate(this, null, _press_decorators, { kind: "method", name: "press", static: false, private: false, access: { has: obj => "press" in obj, get: obj => obj.press }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
288
|
+
__esDecorate(this, null, _boundingBox_decorators, { kind: "method", name: "boundingBox", static: false, private: false, access: { has: obj => "boundingBox" in obj, get: obj => obj.boundingBox }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
289
|
+
__esDecorate(this, null, _boxModel_decorators, { kind: "method", name: "boxModel", static: false, private: false, access: { has: obj => "boxModel" in obj, get: obj => obj.boxModel }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
290
|
+
__esDecorate(this, null, _screenshot_decorators, { kind: "method", name: "screenshot", static: false, private: false, access: { has: obj => "screenshot" in obj, get: obj => obj.screenshot }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
291
|
+
__esDecorate(this, null, _isIntersectingViewport_decorators, { kind: "method", name: "isIntersectingViewport", static: false, private: false, access: { has: obj => "isIntersectingViewport" in obj, get: obj => obj.isIntersectingViewport }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
292
|
+
__esDecorate(this, null, _scrollIntoView_decorators, { kind: "method", name: "scrollIntoView", static: false, private: false, access: { has: obj => "scrollIntoView" in obj, get: obj => obj.scrollIntoView }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
293
|
+
__esDecorate(this, null, _asLocator_decorators, { kind: "method", name: "asLocator", static: false, private: false, access: { has: obj => "asLocator" in obj, get: obj => obj.asLocator }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
294
|
+
if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* @internal
|
|
298
|
+
* Cached isolatedHandle to prevent
|
|
299
|
+
* trying to adopt it multiple times
|
|
300
|
+
*/
|
|
301
|
+
isolatedHandle = __runInitializers(this, _instanceExtraInitializers);
|
|
302
|
+
/**
|
|
303
|
+
* @internal
|
|
304
|
+
*/
|
|
305
|
+
handle;
|
|
306
|
+
/**
|
|
307
|
+
* @internal
|
|
308
|
+
*/
|
|
309
|
+
constructor(handle) {
|
|
310
|
+
super();
|
|
311
|
+
this.handle = handle;
|
|
312
|
+
this[_isElementHandle] = true;
|
|
313
|
+
}
|
|
314
|
+
/**
|
|
315
|
+
* @internal
|
|
316
|
+
*/
|
|
317
|
+
get id() {
|
|
318
|
+
return this.handle.id;
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* @internal
|
|
322
|
+
*/
|
|
323
|
+
get disposed() {
|
|
324
|
+
return this.handle.disposed;
|
|
325
|
+
}
|
|
326
|
+
/**
|
|
327
|
+
* @internal
|
|
328
|
+
*/
|
|
329
|
+
async getProperty(propertyName) {
|
|
330
|
+
return await this.handle.getProperty(propertyName);
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* @internal
|
|
334
|
+
*/
|
|
335
|
+
async getProperties() {
|
|
336
|
+
return await this.handle.getProperties();
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* @internal
|
|
340
|
+
*/
|
|
341
|
+
async evaluate(pageFunction, ...args) {
|
|
342
|
+
pageFunction = withSourcePuppeteerURLIfNone(this.evaluate.name, pageFunction);
|
|
343
|
+
return await this.handle.evaluate(pageFunction, ...args);
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* @internal
|
|
347
|
+
*/
|
|
348
|
+
async evaluateHandle(pageFunction, ...args) {
|
|
349
|
+
pageFunction = withSourcePuppeteerURLIfNone(this.evaluateHandle.name, pageFunction);
|
|
350
|
+
return await this.handle.evaluateHandle(pageFunction, ...args);
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* @internal
|
|
354
|
+
*/
|
|
355
|
+
async jsonValue() {
|
|
356
|
+
return await this.handle.jsonValue();
|
|
357
|
+
}
|
|
358
|
+
/**
|
|
359
|
+
* @internal
|
|
360
|
+
*/
|
|
361
|
+
toString() {
|
|
362
|
+
return this.handle.toString();
|
|
363
|
+
}
|
|
364
|
+
/**
|
|
365
|
+
* @internal
|
|
366
|
+
*/
|
|
367
|
+
remoteObject() {
|
|
368
|
+
return this.handle.remoteObject();
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* @internal
|
|
372
|
+
*/
|
|
373
|
+
async dispose() {
|
|
374
|
+
await Promise.all([this.handle.dispose(), this.isolatedHandle?.dispose()]);
|
|
375
|
+
}
|
|
376
|
+
/**
|
|
377
|
+
* @internal
|
|
378
|
+
*/
|
|
379
|
+
asElement() {
|
|
380
|
+
return this;
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* Queries the current element for an element matching the given selector.
|
|
384
|
+
*
|
|
385
|
+
* @param selector -
|
|
386
|
+
* {@link https://pptr.dev/guides/page-interactions#selectors | selector}
|
|
387
|
+
* to query the page for.
|
|
388
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
|
389
|
+
* can be passed as-is and a
|
|
390
|
+
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
|
391
|
+
* allows querying by
|
|
392
|
+
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
|
393
|
+
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
|
394
|
+
* and
|
|
395
|
+
* {@link https://pptr.dev/guides/page-interactions#xpath-selectors--p-xpath | xpath}
|
|
396
|
+
* and
|
|
397
|
+
* {@link https://pptr.dev/guides/page-interactions#querying-elements-in-shadow-dom | combining these queries across shadow roots}.
|
|
398
|
+
* Alternatively, you can specify the selector type using a
|
|
399
|
+
* {@link https://pptr.dev/guides/page-interactions#prefixed-selector-syntax | prefix}.
|
|
400
|
+
* @returns A {@link ElementHandle | element handle} to the first element
|
|
401
|
+
* matching the given selector. Otherwise, `null`.
|
|
402
|
+
*/
|
|
403
|
+
async $(selector) {
|
|
404
|
+
const { updatedSelector, QueryHandler } = getQueryHandlerAndSelector(selector);
|
|
405
|
+
return (await QueryHandler.queryOne(this, updatedSelector));
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* Queries the current element for all elements matching the given selector.
|
|
409
|
+
*
|
|
410
|
+
* @param selector -
|
|
411
|
+
* {@link https://pptr.dev/guides/page-interactions#selectors | selector}
|
|
412
|
+
* to query the page for.
|
|
413
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
|
414
|
+
* can be passed as-is and a
|
|
415
|
+
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
|
416
|
+
* allows querying by
|
|
417
|
+
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
|
418
|
+
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
|
419
|
+
* and
|
|
420
|
+
* {@link https://pptr.dev/guides/page-interactions#xpath-selectors--p-xpath | xpath}
|
|
421
|
+
* and
|
|
422
|
+
* {@link https://pptr.dev/guides/page-interactions#querying-elements-in-shadow-dom | combining these queries across shadow roots}.
|
|
423
|
+
* Alternatively, you can specify the selector type using a
|
|
424
|
+
* {@link https://pptr.dev/guides/page-interactions#prefixed-selector-syntax | prefix}.
|
|
425
|
+
* @returns An array of {@link ElementHandle | element handles} that point to
|
|
426
|
+
* elements matching the given selector.
|
|
427
|
+
*/
|
|
428
|
+
async $$(selector, options) {
|
|
429
|
+
if (options?.isolate === false) {
|
|
430
|
+
return await this.#$$impl(selector);
|
|
431
|
+
}
|
|
432
|
+
return await this.#$$(selector);
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* Isolates {@link ElementHandle.$$} if needed.
|
|
436
|
+
*
|
|
437
|
+
* @internal
|
|
438
|
+
*/
|
|
439
|
+
get #$$() { return _private_$$_descriptor.value; }
|
|
440
|
+
/**
|
|
441
|
+
* Implementation for {@link ElementHandle.$$}.
|
|
442
|
+
*
|
|
443
|
+
* @internal
|
|
444
|
+
*/
|
|
445
|
+
async #$$impl(selector) {
|
|
446
|
+
const { updatedSelector, QueryHandler } = getQueryHandlerAndSelector(selector);
|
|
447
|
+
return await AsyncIterableUtil.collect(QueryHandler.queryAll(this, updatedSelector));
|
|
448
|
+
}
|
|
449
|
+
/**
|
|
450
|
+
* Runs the given function on the first element matching the given selector in
|
|
451
|
+
* the current element.
|
|
452
|
+
*
|
|
453
|
+
* If the given function returns a promise, then this method will wait till
|
|
454
|
+
* the promise resolves.
|
|
455
|
+
*
|
|
456
|
+
* @example
|
|
457
|
+
*
|
|
458
|
+
* ```ts
|
|
459
|
+
* const tweetHandle = await page.$('.tweet');
|
|
460
|
+
* expect(await tweetHandle.$eval('.like', node => node.innerText)).toBe(
|
|
461
|
+
* '100',
|
|
462
|
+
* );
|
|
463
|
+
* expect(await tweetHandle.$eval('.retweets', node => node.innerText)).toBe(
|
|
464
|
+
* '10',
|
|
465
|
+
* );
|
|
466
|
+
* ```
|
|
467
|
+
*
|
|
468
|
+
* @param selector -
|
|
469
|
+
* {@link https://pptr.dev/guides/page-interactions#selectors | selector}
|
|
470
|
+
* to query the page for.
|
|
471
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
|
472
|
+
* can be passed as-is and a
|
|
473
|
+
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
|
474
|
+
* allows querying by
|
|
475
|
+
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
|
476
|
+
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
|
477
|
+
* and
|
|
478
|
+
* {@link https://pptr.dev/guides/page-interactions#xpath-selectors--p-xpath | xpath}
|
|
479
|
+
* and
|
|
480
|
+
* {@link https://pptr.dev/guides/page-interactions#querying-elements-in-shadow-dom | combining these queries across shadow roots}.
|
|
481
|
+
* Alternatively, you can specify the selector type using a
|
|
482
|
+
* {@link https://pptr.dev/guides/page-interactions#prefixed-selector-syntax | prefix}.
|
|
483
|
+
* @param pageFunction - The function to be evaluated in this element's page's
|
|
484
|
+
* context. The first element matching the selector will be passed in as the
|
|
485
|
+
* first argument.
|
|
486
|
+
* @param args - Additional arguments to pass to `pageFunction`.
|
|
487
|
+
* @returns A promise to the result of the function.
|
|
488
|
+
*/
|
|
489
|
+
async $eval(selector, pageFunction, ...args) {
|
|
490
|
+
const env_1 = { stack: [], error: void 0, hasError: false };
|
|
491
|
+
try {
|
|
492
|
+
pageFunction = withSourcePuppeteerURLIfNone(this.$eval.name, pageFunction);
|
|
493
|
+
const elementHandle = __addDisposableResource(env_1, await this.$(selector), false);
|
|
494
|
+
if (!elementHandle) {
|
|
495
|
+
throw new Error(`Error: failed to find element matching selector "${selector}"`);
|
|
496
|
+
}
|
|
497
|
+
return await elementHandle.evaluate(pageFunction, ...args);
|
|
498
|
+
}
|
|
499
|
+
catch (e_1) {
|
|
500
|
+
env_1.error = e_1;
|
|
501
|
+
env_1.hasError = true;
|
|
502
|
+
}
|
|
503
|
+
finally {
|
|
504
|
+
__disposeResources(env_1);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* Runs the given function on an array of elements matching the given selector
|
|
509
|
+
* in the current element.
|
|
510
|
+
*
|
|
511
|
+
* If the given function returns a promise, then this method will wait till
|
|
512
|
+
* the promise resolves.
|
|
513
|
+
*
|
|
514
|
+
* @example
|
|
515
|
+
* HTML:
|
|
516
|
+
*
|
|
517
|
+
* ```html
|
|
518
|
+
* <div class="feed">
|
|
519
|
+
* <div class="tweet">Hello!</div>
|
|
520
|
+
* <div class="tweet">Hi!</div>
|
|
521
|
+
* </div>
|
|
522
|
+
* ```
|
|
523
|
+
*
|
|
524
|
+
* JavaScript:
|
|
525
|
+
*
|
|
526
|
+
* ```ts
|
|
527
|
+
* const feedHandle = await page.$('.feed');
|
|
528
|
+
*
|
|
529
|
+
* const listOfTweets = await feedHandle.$$eval('.tweet', nodes =>
|
|
530
|
+
* nodes.map(n => n.innerText),
|
|
531
|
+
* );
|
|
532
|
+
* ```
|
|
533
|
+
*
|
|
534
|
+
* @param selector -
|
|
535
|
+
* {@link https://pptr.dev/guides/page-interactions#selectors | selector}
|
|
536
|
+
* to query the page for.
|
|
537
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
|
538
|
+
* can be passed as-is and a
|
|
539
|
+
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
|
540
|
+
* allows querying by
|
|
541
|
+
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
|
542
|
+
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
|
543
|
+
* and
|
|
544
|
+
* {@link https://pptr.dev/guides/page-interactions#xpath-selectors--p-xpath | xpath}
|
|
545
|
+
* and
|
|
546
|
+
* {@link https://pptr.dev/guides/page-interactions#querying-elements-in-shadow-dom | combining these queries across shadow roots}.
|
|
547
|
+
* Alternatively, you can specify the selector type using a
|
|
548
|
+
* {@link https://pptr.dev/guides/page-interactions#prefixed-selector-syntax | prefix}.
|
|
549
|
+
* @param pageFunction - The function to be evaluated in the element's page's
|
|
550
|
+
* context. An array of elements matching the given selector will be passed to
|
|
551
|
+
* the function as its first argument.
|
|
552
|
+
* @param args - Additional arguments to pass to `pageFunction`.
|
|
553
|
+
* @returns A promise to the result of the function.
|
|
554
|
+
*/
|
|
555
|
+
async $$eval(selector, pageFunction, ...args) {
|
|
556
|
+
const env_2 = { stack: [], error: void 0, hasError: false };
|
|
557
|
+
try {
|
|
558
|
+
pageFunction = withSourcePuppeteerURLIfNone(this.$$eval.name, pageFunction);
|
|
559
|
+
const results = await this.$$(selector);
|
|
560
|
+
const elements = __addDisposableResource(env_2, await this.evaluateHandle((_, ...elements) => {
|
|
561
|
+
return elements;
|
|
562
|
+
}, ...results), false);
|
|
563
|
+
const [result] = await Promise.all([
|
|
564
|
+
elements.evaluate(pageFunction, ...args),
|
|
565
|
+
...results.map(results => {
|
|
566
|
+
return results.dispose();
|
|
567
|
+
}),
|
|
568
|
+
]);
|
|
569
|
+
return result;
|
|
570
|
+
}
|
|
571
|
+
catch (e_2) {
|
|
572
|
+
env_2.error = e_2;
|
|
573
|
+
env_2.hasError = true;
|
|
574
|
+
}
|
|
575
|
+
finally {
|
|
576
|
+
__disposeResources(env_2);
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
/**
|
|
580
|
+
* Wait for an element matching the given selector to appear in the current
|
|
581
|
+
* element.
|
|
582
|
+
*
|
|
583
|
+
* Unlike {@link Frame.waitForSelector}, this method does not work across
|
|
584
|
+
* navigations or if the element is detached from DOM.
|
|
585
|
+
*
|
|
586
|
+
* @example
|
|
587
|
+
*
|
|
588
|
+
* ```ts
|
|
589
|
+
* import puppeteer from 'puppeteer';
|
|
590
|
+
*
|
|
591
|
+
* const browser = await puppeteer.launch();
|
|
592
|
+
* const page = await browser.newPage();
|
|
593
|
+
* let currentURL;
|
|
594
|
+
* page
|
|
595
|
+
* .mainFrame()
|
|
596
|
+
* .waitForSelector('img')
|
|
597
|
+
* .then(() => console.log('First URL with image: ' + currentURL));
|
|
598
|
+
*
|
|
599
|
+
* for (currentURL of [
|
|
600
|
+
* 'https://example.com',
|
|
601
|
+
* 'https://google.com',
|
|
602
|
+
* 'https://bbc.com',
|
|
603
|
+
* ]) {
|
|
604
|
+
* await page.goto(currentURL);
|
|
605
|
+
* }
|
|
606
|
+
* await browser.close();
|
|
607
|
+
* ```
|
|
608
|
+
*
|
|
609
|
+
* @param selector - The selector to query and wait for.
|
|
610
|
+
* @param options - Options for customizing waiting behavior.
|
|
611
|
+
* @returns An element matching the given selector.
|
|
612
|
+
* @throws Throws if an element matching the given selector doesn't appear.
|
|
613
|
+
*/
|
|
614
|
+
async waitForSelector(selector, options = {}) {
|
|
615
|
+
const { updatedSelector, QueryHandler, polling } = getQueryHandlerAndSelector(selector);
|
|
616
|
+
return (await QueryHandler.waitFor(this, updatedSelector, {
|
|
617
|
+
polling,
|
|
618
|
+
...options,
|
|
619
|
+
}));
|
|
620
|
+
}
|
|
621
|
+
async #checkVisibility(visibility) {
|
|
622
|
+
return await this.evaluate(async (element, PuppeteerUtil, visibility) => {
|
|
623
|
+
return Boolean(PuppeteerUtil.checkVisibility(element, visibility));
|
|
624
|
+
}, LazyArg.create(context => {
|
|
625
|
+
return context.puppeteerUtil;
|
|
626
|
+
}), visibility);
|
|
627
|
+
}
|
|
628
|
+
/**
|
|
629
|
+
* An element is considered to be visible if all of the following is
|
|
630
|
+
* true:
|
|
631
|
+
*
|
|
632
|
+
* - the element has
|
|
633
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle | computed styles}.
|
|
634
|
+
*
|
|
635
|
+
* - the element has a non-empty
|
|
636
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect | bounding client rect}.
|
|
637
|
+
*
|
|
638
|
+
* - the element's {@link https://developer.mozilla.org/en-US/docs/Web/CSS/visibility | visibility}
|
|
639
|
+
* is not `hidden` or `collapse`.
|
|
640
|
+
*/
|
|
641
|
+
async isVisible() {
|
|
642
|
+
return await this.#checkVisibility(true);
|
|
643
|
+
}
|
|
644
|
+
/**
|
|
645
|
+
* An element is considered to be hidden if at least one of the following is true:
|
|
646
|
+
*
|
|
647
|
+
* - the element has no
|
|
648
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle | computed styles}.
|
|
649
|
+
*
|
|
650
|
+
* - the element has an empty
|
|
651
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect | bounding client rect}.
|
|
652
|
+
*
|
|
653
|
+
* - the element's {@link https://developer.mozilla.org/en-US/docs/Web/CSS/visibility | visibility}
|
|
654
|
+
* is `hidden` or `collapse`.
|
|
655
|
+
*/
|
|
656
|
+
async isHidden() {
|
|
657
|
+
return await this.#checkVisibility(false);
|
|
658
|
+
}
|
|
659
|
+
/**
|
|
660
|
+
* Converts the current handle to the given element type.
|
|
661
|
+
*
|
|
662
|
+
* @example
|
|
663
|
+
*
|
|
664
|
+
* ```ts
|
|
665
|
+
* const element: ElementHandle<Element> = await page.$(
|
|
666
|
+
* '.class-name-of-anchor',
|
|
667
|
+
* );
|
|
668
|
+
* // DO NOT DISPOSE `element`, this will be always be the same handle.
|
|
669
|
+
* const anchor: ElementHandle<HTMLAnchorElement> =
|
|
670
|
+
* await element.toElement('a');
|
|
671
|
+
* ```
|
|
672
|
+
*
|
|
673
|
+
* @param tagName - The tag name of the desired element type.
|
|
674
|
+
* @throws An error if the handle does not match. **The handle will not be
|
|
675
|
+
* automatically disposed.**
|
|
676
|
+
*/
|
|
677
|
+
async toElement(tagName) {
|
|
678
|
+
const isMatchingTagName = await this.evaluate((node, tagName) => {
|
|
679
|
+
return node.nodeName === tagName.toUpperCase();
|
|
680
|
+
}, tagName);
|
|
681
|
+
if (!isMatchingTagName) {
|
|
682
|
+
throw new Error(`Element is not a(n) \`${tagName}\` element`);
|
|
683
|
+
}
|
|
684
|
+
return this;
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* Returns the middle point within an element unless a specific offset is provided.
|
|
688
|
+
*/
|
|
689
|
+
async clickablePoint(offset) {
|
|
690
|
+
const box = await this.#clickableBox();
|
|
691
|
+
if (!box) {
|
|
692
|
+
throw new Error('Node is either not clickable or not an Element');
|
|
693
|
+
}
|
|
694
|
+
if (offset !== undefined) {
|
|
695
|
+
return {
|
|
696
|
+
x: box.x + offset.x,
|
|
697
|
+
y: box.y + offset.y,
|
|
698
|
+
};
|
|
699
|
+
}
|
|
700
|
+
return {
|
|
701
|
+
x: box.x + box.width / 2,
|
|
702
|
+
y: box.y + box.height / 2,
|
|
703
|
+
};
|
|
704
|
+
}
|
|
705
|
+
/**
|
|
706
|
+
* This method scrolls element into view if needed, and then
|
|
707
|
+
* uses {@link Page.mouse} to hover over the center of the element.
|
|
708
|
+
* If the element is detached from DOM, the method throws an error.
|
|
709
|
+
*/
|
|
710
|
+
async hover() {
|
|
711
|
+
await this.scrollIntoViewIfNeeded();
|
|
712
|
+
const { x, y } = await this.clickablePoint();
|
|
713
|
+
await this.frame.page().mouse.move(x, y);
|
|
714
|
+
}
|
|
715
|
+
/**
|
|
716
|
+
* This method scrolls element into view if needed, and then
|
|
717
|
+
* uses {@link Page.mouse} to click in the center of the element.
|
|
718
|
+
* If the element is detached from DOM, the method throws an error.
|
|
719
|
+
*/
|
|
720
|
+
async click(options = {}) {
|
|
721
|
+
await this.scrollIntoViewIfNeeded();
|
|
722
|
+
const { x, y } = await this.clickablePoint(options.offset);
|
|
723
|
+
try {
|
|
724
|
+
await this.frame.page().mouse.click(x, y, options);
|
|
725
|
+
}
|
|
726
|
+
finally {
|
|
727
|
+
if (options.debugHighlight) {
|
|
728
|
+
await this.frame.page().evaluate((x, y) => {
|
|
729
|
+
const highlight = document.createElement('div');
|
|
730
|
+
highlight.innerHTML = `<style>
|
|
731
|
+
@scope {
|
|
732
|
+
:scope {
|
|
733
|
+
position: fixed;
|
|
734
|
+
left: ${x}px;
|
|
735
|
+
top: ${y}px;
|
|
736
|
+
width: 10px;
|
|
737
|
+
height: 10px;
|
|
738
|
+
border-radius: 50%;
|
|
739
|
+
animation: colorChange 10s 1 normal;
|
|
740
|
+
animation-fill-mode: forwards;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
@keyframes colorChange {
|
|
744
|
+
from {
|
|
745
|
+
background-color: red;
|
|
746
|
+
}
|
|
747
|
+
to {
|
|
748
|
+
background-color: #FADADD00;
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
</style>`;
|
|
753
|
+
highlight.addEventListener('animationend', () => {
|
|
754
|
+
highlight.remove();
|
|
755
|
+
}, { once: true });
|
|
756
|
+
document.body.append(highlight);
|
|
757
|
+
}, x, y);
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
/**
|
|
762
|
+
* Drags an element over the given element or point.
|
|
763
|
+
*
|
|
764
|
+
* @returns DEPRECATED. When drag interception is enabled, the drag payload is
|
|
765
|
+
* returned.
|
|
766
|
+
*/
|
|
767
|
+
async drag(target) {
|
|
768
|
+
await this.scrollIntoViewIfNeeded();
|
|
769
|
+
const page = this.frame.page();
|
|
770
|
+
if (page.isDragInterceptionEnabled()) {
|
|
771
|
+
const source = await this.clickablePoint();
|
|
772
|
+
if (target instanceof ElementHandle) {
|
|
773
|
+
target = await target.clickablePoint();
|
|
774
|
+
}
|
|
775
|
+
return await page.mouse.drag(source, target);
|
|
776
|
+
}
|
|
777
|
+
try {
|
|
778
|
+
if (!page._isDragging) {
|
|
779
|
+
page._isDragging = true;
|
|
780
|
+
await this.hover();
|
|
781
|
+
await page.mouse.down();
|
|
782
|
+
}
|
|
783
|
+
if (target instanceof ElementHandle) {
|
|
784
|
+
await target.hover();
|
|
785
|
+
}
|
|
786
|
+
else {
|
|
787
|
+
await page.mouse.move(target.x, target.y);
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
catch (error) {
|
|
791
|
+
page._isDragging = false;
|
|
792
|
+
throw error;
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
/**
|
|
796
|
+
* @deprecated Do not use. `dragenter` will automatically be performed during dragging.
|
|
797
|
+
*/
|
|
798
|
+
async dragEnter(data = { items: [], dragOperationsMask: 1 }) {
|
|
799
|
+
const page = this.frame.page();
|
|
800
|
+
await this.scrollIntoViewIfNeeded();
|
|
801
|
+
const target = await this.clickablePoint();
|
|
802
|
+
await page.mouse.dragEnter(target, data);
|
|
803
|
+
}
|
|
804
|
+
/**
|
|
805
|
+
* @deprecated Do not use. `dragover` will automatically be performed during dragging.
|
|
806
|
+
*/
|
|
807
|
+
async dragOver(data = { items: [], dragOperationsMask: 1 }) {
|
|
808
|
+
const page = this.frame.page();
|
|
809
|
+
await this.scrollIntoViewIfNeeded();
|
|
810
|
+
const target = await this.clickablePoint();
|
|
811
|
+
await page.mouse.dragOver(target, data);
|
|
812
|
+
}
|
|
813
|
+
/**
|
|
814
|
+
* @internal
|
|
815
|
+
*/
|
|
816
|
+
async drop(dataOrElement = {
|
|
817
|
+
items: [],
|
|
818
|
+
dragOperationsMask: 1,
|
|
819
|
+
}) {
|
|
820
|
+
const page = this.frame.page();
|
|
821
|
+
if ('items' in dataOrElement) {
|
|
822
|
+
await this.scrollIntoViewIfNeeded();
|
|
823
|
+
const destination = await this.clickablePoint();
|
|
824
|
+
await page.mouse.drop(destination, dataOrElement);
|
|
825
|
+
}
|
|
826
|
+
else {
|
|
827
|
+
// Note if the rest errors, we still want dragging off because the errors
|
|
828
|
+
// is most likely something implying the mouse is no longer dragging.
|
|
829
|
+
await dataOrElement.drag(this);
|
|
830
|
+
page._isDragging = false;
|
|
831
|
+
await page.mouse.up();
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
/**
|
|
835
|
+
* @deprecated Use `ElementHandle.drop` instead.
|
|
836
|
+
*/
|
|
837
|
+
async dragAndDrop(target, options) {
|
|
838
|
+
const page = this.frame.page();
|
|
839
|
+
assert(page.isDragInterceptionEnabled(), 'Drag Interception is not enabled!');
|
|
840
|
+
await this.scrollIntoViewIfNeeded();
|
|
841
|
+
const startPoint = await this.clickablePoint();
|
|
842
|
+
const targetPoint = await target.clickablePoint();
|
|
843
|
+
await page.mouse.dragAndDrop(startPoint, targetPoint, options);
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* Triggers a `change` and `input` event once all the provided options have been
|
|
847
|
+
* selected. If there's no `<select>` element matching `selector`, the method
|
|
848
|
+
* throws an error.
|
|
849
|
+
*
|
|
850
|
+
* @example
|
|
851
|
+
*
|
|
852
|
+
* ```ts
|
|
853
|
+
* handle.select('blue'); // single selection
|
|
854
|
+
* handle.select('red', 'green', 'blue'); // multiple selections
|
|
855
|
+
* ```
|
|
856
|
+
*
|
|
857
|
+
* @param values - Values of options to select. If the `<select>` has the
|
|
858
|
+
* `multiple` attribute, all values are considered, otherwise only the first
|
|
859
|
+
* one is taken into account.
|
|
860
|
+
*/
|
|
861
|
+
async select(...values) {
|
|
862
|
+
for (const value of values) {
|
|
863
|
+
assert(isString(value), 'Values must be strings. Found value "' +
|
|
864
|
+
value +
|
|
865
|
+
'" of type "' +
|
|
866
|
+
typeof value +
|
|
867
|
+
'"');
|
|
868
|
+
}
|
|
869
|
+
return await this.evaluate((element, vals) => {
|
|
870
|
+
const values = new Set(vals);
|
|
871
|
+
if (!(element instanceof HTMLSelectElement)) {
|
|
872
|
+
throw new Error('Element is not a <select> element.');
|
|
873
|
+
}
|
|
874
|
+
const selectedValues = new Set();
|
|
875
|
+
if (!element.multiple) {
|
|
876
|
+
for (const option of element.options) {
|
|
877
|
+
option.selected = false;
|
|
878
|
+
}
|
|
879
|
+
for (const option of element.options) {
|
|
880
|
+
if (values.has(option.value)) {
|
|
881
|
+
option.selected = true;
|
|
882
|
+
selectedValues.add(option.value);
|
|
883
|
+
break;
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
else {
|
|
888
|
+
for (const option of element.options) {
|
|
889
|
+
option.selected = values.has(option.value);
|
|
890
|
+
if (option.selected) {
|
|
891
|
+
selectedValues.add(option.value);
|
|
892
|
+
}
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
element.dispatchEvent(new Event('input', { bubbles: true }));
|
|
896
|
+
element.dispatchEvent(new Event('change', { bubbles: true }));
|
|
897
|
+
return [...selectedValues.values()];
|
|
898
|
+
}, values);
|
|
899
|
+
}
|
|
900
|
+
/**
|
|
901
|
+
* This method scrolls element into view if needed, and then uses
|
|
902
|
+
* {@link Touchscreen.tap} to tap in the center of the element.
|
|
903
|
+
* If the element is detached from DOM, the method throws an error.
|
|
904
|
+
*/
|
|
905
|
+
async tap() {
|
|
906
|
+
await this.scrollIntoViewIfNeeded();
|
|
907
|
+
const { x, y } = await this.clickablePoint();
|
|
908
|
+
await this.frame.page().touchscreen.tap(x, y);
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* This method scrolls the element into view if needed, and then
|
|
912
|
+
* starts a touch in the center of the element.
|
|
913
|
+
* @returns A {@link TouchHandle} representing the touch that was started
|
|
914
|
+
*/
|
|
915
|
+
async touchStart() {
|
|
916
|
+
await this.scrollIntoViewIfNeeded();
|
|
917
|
+
const { x, y } = await this.clickablePoint();
|
|
918
|
+
return await this.frame.page().touchscreen.touchStart(x, y);
|
|
919
|
+
}
|
|
920
|
+
/**
|
|
921
|
+
* This method scrolls the element into view if needed, and then
|
|
922
|
+
* moves the touch to the center of the element.
|
|
923
|
+
* @param touch - An optional {@link TouchHandle}. If provided, this touch
|
|
924
|
+
* will be moved. If not provided, the first active touch will be moved.
|
|
925
|
+
*/
|
|
926
|
+
async touchMove(touch) {
|
|
927
|
+
await this.scrollIntoViewIfNeeded();
|
|
928
|
+
const { x, y } = await this.clickablePoint();
|
|
929
|
+
if (touch) {
|
|
930
|
+
return await touch.move(x, y);
|
|
931
|
+
}
|
|
932
|
+
await this.frame.page().touchscreen.touchMove(x, y);
|
|
933
|
+
}
|
|
934
|
+
async touchEnd() {
|
|
935
|
+
await this.scrollIntoViewIfNeeded();
|
|
936
|
+
await this.frame.page().touchscreen.touchEnd();
|
|
937
|
+
}
|
|
938
|
+
/**
|
|
939
|
+
* Calls {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus | focus} on the element.
|
|
940
|
+
*/
|
|
941
|
+
async focus() {
|
|
942
|
+
await this.evaluate(element => {
|
|
943
|
+
if (!(element instanceof HTMLElement)) {
|
|
944
|
+
throw new Error('Cannot focus non-HTMLElement');
|
|
945
|
+
}
|
|
946
|
+
return element.focus();
|
|
947
|
+
});
|
|
948
|
+
}
|
|
949
|
+
/**
|
|
950
|
+
* Focuses the element, and then sends a `keydown`, `keypress`/`input`, and
|
|
951
|
+
* `keyup` event for each character in the text.
|
|
952
|
+
*
|
|
953
|
+
* To press a special key, like `Control` or `ArrowDown`,
|
|
954
|
+
* use {@link ElementHandle.press}.
|
|
955
|
+
*
|
|
956
|
+
* @example
|
|
957
|
+
*
|
|
958
|
+
* ```ts
|
|
959
|
+
* await elementHandle.type('Hello'); // Types instantly
|
|
960
|
+
* await elementHandle.type('World', {delay: 100}); // Types slower, like a user
|
|
961
|
+
* ```
|
|
962
|
+
*
|
|
963
|
+
* @example
|
|
964
|
+
* An example of typing into a text field and then submitting the form:
|
|
965
|
+
*
|
|
966
|
+
* ```ts
|
|
967
|
+
* const elementHandle = await page.$('input');
|
|
968
|
+
* await elementHandle.type('some text');
|
|
969
|
+
* await elementHandle.press('Enter');
|
|
970
|
+
* ```
|
|
971
|
+
*
|
|
972
|
+
* @param options - Delay in milliseconds. Defaults to 0.
|
|
973
|
+
*/
|
|
974
|
+
async type(text, options) {
|
|
975
|
+
await this.focus();
|
|
976
|
+
await this.frame.page().keyboard.type(text, options);
|
|
977
|
+
}
|
|
978
|
+
/**
|
|
979
|
+
* Focuses the element, and then uses {@link Keyboard.down} and {@link Keyboard.up}.
|
|
980
|
+
*
|
|
981
|
+
* @remarks
|
|
982
|
+
* If `key` is a single character and no modifier keys besides `Shift`
|
|
983
|
+
* are being held down, a `keypress`/`input` event will also be generated.
|
|
984
|
+
* The `text` option can be specified to force an input event to be generated.
|
|
985
|
+
*
|
|
986
|
+
* **NOTE** Modifier keys DO affect `elementHandle.press`. Holding down `Shift`
|
|
987
|
+
* will type the text in upper case.
|
|
988
|
+
*
|
|
989
|
+
* @param key - Name of key to press, such as `ArrowLeft`.
|
|
990
|
+
* See {@link KeyInput} for a list of all key names.
|
|
991
|
+
*/
|
|
992
|
+
async press(key, options) {
|
|
993
|
+
await this.focus();
|
|
994
|
+
await this.frame.page().keyboard.press(key, options);
|
|
995
|
+
}
|
|
996
|
+
async #clickableBox() {
|
|
997
|
+
const boxes = await this.evaluate(element => {
|
|
998
|
+
if (!(element instanceof Element)) {
|
|
999
|
+
return null;
|
|
1000
|
+
}
|
|
1001
|
+
return [...element.getClientRects()].map(rect => {
|
|
1002
|
+
return { x: rect.x, y: rect.y, width: rect.width, height: rect.height };
|
|
1003
|
+
});
|
|
1004
|
+
});
|
|
1005
|
+
if (!boxes?.length) {
|
|
1006
|
+
return null;
|
|
1007
|
+
}
|
|
1008
|
+
await this.#intersectBoundingBoxesWithFrame(boxes);
|
|
1009
|
+
let frame = this.frame;
|
|
1010
|
+
let parentFrame;
|
|
1011
|
+
while ((parentFrame = frame?.parentFrame())) {
|
|
1012
|
+
const env_3 = { stack: [], error: void 0, hasError: false };
|
|
1013
|
+
try {
|
|
1014
|
+
const handle = __addDisposableResource(env_3, await frame.frameElement(), false);
|
|
1015
|
+
if (!handle) {
|
|
1016
|
+
throw new Error('Unsupported frame type');
|
|
1017
|
+
}
|
|
1018
|
+
const parentBox = await handle.evaluate(element => {
|
|
1019
|
+
// Element is not visible.
|
|
1020
|
+
if (element.getClientRects().length === 0) {
|
|
1021
|
+
return null;
|
|
1022
|
+
}
|
|
1023
|
+
const rect = element.getBoundingClientRect();
|
|
1024
|
+
const style = window.getComputedStyle(element);
|
|
1025
|
+
return {
|
|
1026
|
+
left: rect.left +
|
|
1027
|
+
parseInt(style.paddingLeft, 10) +
|
|
1028
|
+
parseInt(style.borderLeftWidth, 10),
|
|
1029
|
+
top: rect.top +
|
|
1030
|
+
parseInt(style.paddingTop, 10) +
|
|
1031
|
+
parseInt(style.borderTopWidth, 10),
|
|
1032
|
+
};
|
|
1033
|
+
});
|
|
1034
|
+
if (!parentBox) {
|
|
1035
|
+
return null;
|
|
1036
|
+
}
|
|
1037
|
+
for (const box of boxes) {
|
|
1038
|
+
box.x += parentBox.left;
|
|
1039
|
+
box.y += parentBox.top;
|
|
1040
|
+
}
|
|
1041
|
+
await handle.#intersectBoundingBoxesWithFrame(boxes);
|
|
1042
|
+
frame = parentFrame;
|
|
1043
|
+
}
|
|
1044
|
+
catch (e_3) {
|
|
1045
|
+
env_3.error = e_3;
|
|
1046
|
+
env_3.hasError = true;
|
|
1047
|
+
}
|
|
1048
|
+
finally {
|
|
1049
|
+
__disposeResources(env_3);
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1052
|
+
const box = boxes.find(box => {
|
|
1053
|
+
return box.width >= 1 && box.height >= 1;
|
|
1054
|
+
});
|
|
1055
|
+
if (!box) {
|
|
1056
|
+
return null;
|
|
1057
|
+
}
|
|
1058
|
+
return {
|
|
1059
|
+
x: box.x,
|
|
1060
|
+
y: box.y,
|
|
1061
|
+
height: box.height,
|
|
1062
|
+
width: box.width,
|
|
1063
|
+
};
|
|
1064
|
+
}
|
|
1065
|
+
async #intersectBoundingBoxesWithFrame(boxes) {
|
|
1066
|
+
const { documentWidth, documentHeight } = await this.frame
|
|
1067
|
+
.isolatedRealm()
|
|
1068
|
+
.evaluate(() => {
|
|
1069
|
+
return {
|
|
1070
|
+
documentWidth: document.documentElement.clientWidth,
|
|
1071
|
+
documentHeight: document.documentElement.clientHeight,
|
|
1072
|
+
};
|
|
1073
|
+
});
|
|
1074
|
+
for (const box of boxes) {
|
|
1075
|
+
intersectBoundingBox(box, documentWidth, documentHeight);
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
/**
|
|
1079
|
+
* This method returns the bounding box of the element (relative to the main frame),
|
|
1080
|
+
* or `null` if the element is {@link https://drafts.csswg.org/css-display-4/#box-generation | not part of the layout}
|
|
1081
|
+
* (example: `display: none`).
|
|
1082
|
+
*/
|
|
1083
|
+
async boundingBox() {
|
|
1084
|
+
const box = await this.evaluate(element => {
|
|
1085
|
+
if (!(element instanceof Element)) {
|
|
1086
|
+
return null;
|
|
1087
|
+
}
|
|
1088
|
+
// Element is not visible.
|
|
1089
|
+
if (element.getClientRects().length === 0) {
|
|
1090
|
+
return null;
|
|
1091
|
+
}
|
|
1092
|
+
const rect = element.getBoundingClientRect();
|
|
1093
|
+
return { x: rect.x, y: rect.y, width: rect.width, height: rect.height };
|
|
1094
|
+
});
|
|
1095
|
+
if (!box) {
|
|
1096
|
+
return null;
|
|
1097
|
+
}
|
|
1098
|
+
const offset = await this.#getTopLeftCornerOfFrame();
|
|
1099
|
+
if (!offset) {
|
|
1100
|
+
return null;
|
|
1101
|
+
}
|
|
1102
|
+
return {
|
|
1103
|
+
x: box.x + offset.x,
|
|
1104
|
+
y: box.y + offset.y,
|
|
1105
|
+
height: box.height,
|
|
1106
|
+
width: box.width,
|
|
1107
|
+
};
|
|
1108
|
+
}
|
|
1109
|
+
/**
|
|
1110
|
+
* This method returns boxes of the element,
|
|
1111
|
+
* or `null` if the element is {@link https://drafts.csswg.org/css-display-4/#box-generation | not part of the layout}
|
|
1112
|
+
* (example: `display: none`).
|
|
1113
|
+
*
|
|
1114
|
+
* @remarks
|
|
1115
|
+
*
|
|
1116
|
+
* Boxes are represented as an array of points;
|
|
1117
|
+
* Each Point is an object `{x, y}`. Box points are sorted clock-wise.
|
|
1118
|
+
*/
|
|
1119
|
+
async boxModel() {
|
|
1120
|
+
const model = await this.evaluate(element => {
|
|
1121
|
+
if (!(element instanceof Element)) {
|
|
1122
|
+
return null;
|
|
1123
|
+
}
|
|
1124
|
+
// Element is not visible.
|
|
1125
|
+
if (element.getClientRects().length === 0) {
|
|
1126
|
+
return null;
|
|
1127
|
+
}
|
|
1128
|
+
const rect = element.getBoundingClientRect();
|
|
1129
|
+
const style = window.getComputedStyle(element);
|
|
1130
|
+
const offsets = {
|
|
1131
|
+
padding: {
|
|
1132
|
+
left: parseInt(style.paddingLeft, 10),
|
|
1133
|
+
top: parseInt(style.paddingTop, 10),
|
|
1134
|
+
right: parseInt(style.paddingRight, 10),
|
|
1135
|
+
bottom: parseInt(style.paddingBottom, 10),
|
|
1136
|
+
},
|
|
1137
|
+
margin: {
|
|
1138
|
+
left: -parseInt(style.marginLeft, 10),
|
|
1139
|
+
top: -parseInt(style.marginTop, 10),
|
|
1140
|
+
right: -parseInt(style.marginRight, 10),
|
|
1141
|
+
bottom: -parseInt(style.marginBottom, 10),
|
|
1142
|
+
},
|
|
1143
|
+
border: {
|
|
1144
|
+
left: parseInt(style.borderLeft, 10),
|
|
1145
|
+
top: parseInt(style.borderTop, 10),
|
|
1146
|
+
right: parseInt(style.borderRight, 10),
|
|
1147
|
+
bottom: parseInt(style.borderBottom, 10),
|
|
1148
|
+
},
|
|
1149
|
+
};
|
|
1150
|
+
const border = [
|
|
1151
|
+
{ x: rect.left, y: rect.top },
|
|
1152
|
+
{ x: rect.left + rect.width, y: rect.top },
|
|
1153
|
+
{ x: rect.left + rect.width, y: rect.top + rect.height },
|
|
1154
|
+
{ x: rect.left, y: rect.top + rect.height },
|
|
1155
|
+
];
|
|
1156
|
+
const padding = transformQuadWithOffsets(border, offsets.border);
|
|
1157
|
+
const content = transformQuadWithOffsets(padding, offsets.padding);
|
|
1158
|
+
const margin = transformQuadWithOffsets(border, offsets.margin);
|
|
1159
|
+
return {
|
|
1160
|
+
content,
|
|
1161
|
+
padding,
|
|
1162
|
+
border,
|
|
1163
|
+
margin,
|
|
1164
|
+
width: rect.width,
|
|
1165
|
+
height: rect.height,
|
|
1166
|
+
};
|
|
1167
|
+
function transformQuadWithOffsets(quad, offsets) {
|
|
1168
|
+
return [
|
|
1169
|
+
{
|
|
1170
|
+
x: quad[0].x + offsets.left,
|
|
1171
|
+
y: quad[0].y + offsets.top,
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
x: quad[1].x - offsets.right,
|
|
1175
|
+
y: quad[1].y + offsets.top,
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
x: quad[2].x - offsets.right,
|
|
1179
|
+
y: quad[2].y - offsets.bottom,
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
x: quad[3].x + offsets.left,
|
|
1183
|
+
y: quad[3].y - offsets.bottom,
|
|
1184
|
+
},
|
|
1185
|
+
];
|
|
1186
|
+
}
|
|
1187
|
+
});
|
|
1188
|
+
if (!model) {
|
|
1189
|
+
return null;
|
|
1190
|
+
}
|
|
1191
|
+
const offset = await this.#getTopLeftCornerOfFrame();
|
|
1192
|
+
if (!offset) {
|
|
1193
|
+
return null;
|
|
1194
|
+
}
|
|
1195
|
+
for (const attribute of [
|
|
1196
|
+
'content',
|
|
1197
|
+
'padding',
|
|
1198
|
+
'border',
|
|
1199
|
+
'margin',
|
|
1200
|
+
]) {
|
|
1201
|
+
for (const point of model[attribute]) {
|
|
1202
|
+
point.x += offset.x;
|
|
1203
|
+
point.y += offset.y;
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
return model;
|
|
1207
|
+
}
|
|
1208
|
+
async #getTopLeftCornerOfFrame() {
|
|
1209
|
+
const point = { x: 0, y: 0 };
|
|
1210
|
+
let frame = this.frame;
|
|
1211
|
+
let parentFrame;
|
|
1212
|
+
while ((parentFrame = frame?.parentFrame())) {
|
|
1213
|
+
const env_4 = { stack: [], error: void 0, hasError: false };
|
|
1214
|
+
try {
|
|
1215
|
+
const handle = __addDisposableResource(env_4, await frame.frameElement(), false);
|
|
1216
|
+
if (!handle) {
|
|
1217
|
+
throw new Error('Unsupported frame type');
|
|
1218
|
+
}
|
|
1219
|
+
const parentBox = await handle.evaluate(element => {
|
|
1220
|
+
// Element is not visible.
|
|
1221
|
+
if (element.getClientRects().length === 0) {
|
|
1222
|
+
return null;
|
|
1223
|
+
}
|
|
1224
|
+
const rect = element.getBoundingClientRect();
|
|
1225
|
+
const style = window.getComputedStyle(element);
|
|
1226
|
+
return {
|
|
1227
|
+
left: rect.left +
|
|
1228
|
+
parseInt(style.paddingLeft, 10) +
|
|
1229
|
+
parseInt(style.borderLeftWidth, 10),
|
|
1230
|
+
top: rect.top +
|
|
1231
|
+
parseInt(style.paddingTop, 10) +
|
|
1232
|
+
parseInt(style.borderTopWidth, 10),
|
|
1233
|
+
};
|
|
1234
|
+
});
|
|
1235
|
+
if (!parentBox) {
|
|
1236
|
+
return null;
|
|
1237
|
+
}
|
|
1238
|
+
point.x += parentBox.left;
|
|
1239
|
+
point.y += parentBox.top;
|
|
1240
|
+
frame = parentFrame;
|
|
1241
|
+
}
|
|
1242
|
+
catch (e_4) {
|
|
1243
|
+
env_4.error = e_4;
|
|
1244
|
+
env_4.hasError = true;
|
|
1245
|
+
}
|
|
1246
|
+
finally {
|
|
1247
|
+
__disposeResources(env_4);
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
return point;
|
|
1251
|
+
}
|
|
1252
|
+
async screenshot(options = {}) {
|
|
1253
|
+
const { scrollIntoView = true, clip } = options;
|
|
1254
|
+
const page = this.frame.page();
|
|
1255
|
+
// Only scroll the element into view if the user wants it.
|
|
1256
|
+
if (scrollIntoView) {
|
|
1257
|
+
await this.scrollIntoViewIfNeeded();
|
|
1258
|
+
}
|
|
1259
|
+
const elementClip = await this.#nonEmptyVisibleBoundingBox();
|
|
1260
|
+
const [pageLeft, pageTop] = await this.evaluate(() => {
|
|
1261
|
+
if (!window.visualViewport) {
|
|
1262
|
+
throw new Error('window.visualViewport is not supported.');
|
|
1263
|
+
}
|
|
1264
|
+
return [
|
|
1265
|
+
window.visualViewport.pageLeft,
|
|
1266
|
+
window.visualViewport.pageTop,
|
|
1267
|
+
];
|
|
1268
|
+
});
|
|
1269
|
+
elementClip.x += pageLeft;
|
|
1270
|
+
elementClip.y += pageTop;
|
|
1271
|
+
if (clip) {
|
|
1272
|
+
elementClip.x += clip.x;
|
|
1273
|
+
elementClip.y += clip.y;
|
|
1274
|
+
elementClip.height = clip.height;
|
|
1275
|
+
elementClip.width = clip.width;
|
|
1276
|
+
}
|
|
1277
|
+
return await page.screenshot({ ...options, clip: elementClip });
|
|
1278
|
+
}
|
|
1279
|
+
async #nonEmptyVisibleBoundingBox() {
|
|
1280
|
+
const box = await this.boundingBox();
|
|
1281
|
+
assert(box, 'Node is either not visible or not an HTMLElement');
|
|
1282
|
+
assert(box.width !== 0, 'Node has 0 width.');
|
|
1283
|
+
assert(box.height !== 0, 'Node has 0 height.');
|
|
1284
|
+
return box;
|
|
1285
|
+
}
|
|
1286
|
+
/**
|
|
1287
|
+
* @internal
|
|
1288
|
+
*/
|
|
1289
|
+
async assertConnectedElement() {
|
|
1290
|
+
const error = await this.evaluate(async (element) => {
|
|
1291
|
+
if (!element.isConnected) {
|
|
1292
|
+
return 'Node is detached from document';
|
|
1293
|
+
}
|
|
1294
|
+
if (element.nodeType !== Node.ELEMENT_NODE) {
|
|
1295
|
+
return 'Node is not of type HTMLElement';
|
|
1296
|
+
}
|
|
1297
|
+
return;
|
|
1298
|
+
});
|
|
1299
|
+
if (error) {
|
|
1300
|
+
throw new Error(error);
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
/**
|
|
1304
|
+
* @internal
|
|
1305
|
+
*/
|
|
1306
|
+
async scrollIntoViewIfNeeded() {
|
|
1307
|
+
if (await this.isIntersectingViewport({
|
|
1308
|
+
threshold: 1,
|
|
1309
|
+
})) {
|
|
1310
|
+
return;
|
|
1311
|
+
}
|
|
1312
|
+
await this.scrollIntoView();
|
|
1313
|
+
}
|
|
1314
|
+
/**
|
|
1315
|
+
* Resolves to true if the element is visible in the current viewport. If an
|
|
1316
|
+
* element is an SVG, we check if the svg owner element is in the viewport
|
|
1317
|
+
* instead. See https://crbug.com/963246.
|
|
1318
|
+
*
|
|
1319
|
+
* @param options - Threshold for the intersection between 0 (no intersection) and 1
|
|
1320
|
+
* (full intersection). Defaults to 1.
|
|
1321
|
+
*/
|
|
1322
|
+
async isIntersectingViewport(options = {}) {
|
|
1323
|
+
const env_5 = { stack: [], error: void 0, hasError: false };
|
|
1324
|
+
try {
|
|
1325
|
+
await this.assertConnectedElement();
|
|
1326
|
+
// eslint-disable-next-line @puppeteer/use-using -- Returns `this`.
|
|
1327
|
+
const handle = await this.#asSVGElementHandle();
|
|
1328
|
+
const target = __addDisposableResource(env_5, handle && (await handle.#getOwnerSVGElement()), false);
|
|
1329
|
+
return await (target ?? this).evaluate(async (element, threshold) => {
|
|
1330
|
+
const visibleRatio = await new Promise(resolve => {
|
|
1331
|
+
const observer = new IntersectionObserver(entries => {
|
|
1332
|
+
resolve(entries[0].intersectionRatio);
|
|
1333
|
+
observer.disconnect();
|
|
1334
|
+
});
|
|
1335
|
+
observer.observe(element);
|
|
1336
|
+
});
|
|
1337
|
+
return threshold === 1 ? visibleRatio === 1 : visibleRatio > threshold;
|
|
1338
|
+
}, options.threshold ?? 0);
|
|
1339
|
+
}
|
|
1340
|
+
catch (e_5) {
|
|
1341
|
+
env_5.error = e_5;
|
|
1342
|
+
env_5.hasError = true;
|
|
1343
|
+
}
|
|
1344
|
+
finally {
|
|
1345
|
+
__disposeResources(env_5);
|
|
1346
|
+
}
|
|
1347
|
+
}
|
|
1348
|
+
/**
|
|
1349
|
+
* Scrolls the element into view using either the automation protocol client
|
|
1350
|
+
* or by calling element.scrollIntoView.
|
|
1351
|
+
*/
|
|
1352
|
+
async scrollIntoView() {
|
|
1353
|
+
await this.assertConnectedElement();
|
|
1354
|
+
await this.evaluate(async (element) => {
|
|
1355
|
+
element.scrollIntoView({
|
|
1356
|
+
block: 'center',
|
|
1357
|
+
inline: 'center',
|
|
1358
|
+
behavior: 'instant',
|
|
1359
|
+
});
|
|
1360
|
+
});
|
|
1361
|
+
}
|
|
1362
|
+
/**
|
|
1363
|
+
* Creates a locator based on an ElementHandle. This would not allow
|
|
1364
|
+
* refreshing the element handle if it is stale but it allows re-using other
|
|
1365
|
+
* locator pre-conditions.
|
|
1366
|
+
*/
|
|
1367
|
+
asLocator() {
|
|
1368
|
+
return NodeLocator.createFromHandle(this.frame, this);
|
|
1369
|
+
}
|
|
1370
|
+
/**
|
|
1371
|
+
* Returns true if an element is an SVGElement (included svg, path, rect
|
|
1372
|
+
* etc.).
|
|
1373
|
+
*/
|
|
1374
|
+
async #asSVGElementHandle() {
|
|
1375
|
+
if (await this.evaluate(element => {
|
|
1376
|
+
return element instanceof SVGElement;
|
|
1377
|
+
})) {
|
|
1378
|
+
return this;
|
|
1379
|
+
}
|
|
1380
|
+
else {
|
|
1381
|
+
return null;
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
async #getOwnerSVGElement() {
|
|
1385
|
+
// SVGSVGElement.ownerSVGElement === null.
|
|
1386
|
+
return await this.evaluateHandle(element => {
|
|
1387
|
+
if (element instanceof SVGSVGElement) {
|
|
1388
|
+
return element;
|
|
1389
|
+
}
|
|
1390
|
+
return element.ownerSVGElement;
|
|
1391
|
+
});
|
|
1392
|
+
}
|
|
1393
|
+
};
|
|
1394
|
+
})();
|
|
1395
|
+
export { ElementHandle };
|
|
1396
|
+
function intersectBoundingBox(box, width, height) {
|
|
1397
|
+
box.width = Math.max(box.x >= 0
|
|
1398
|
+
? Math.min(width - box.x, box.width)
|
|
1399
|
+
: Math.min(width, box.width + box.x), 0);
|
|
1400
|
+
box.height = Math.max(box.y >= 0
|
|
1401
|
+
? Math.min(height - box.y, box.height)
|
|
1402
|
+
: Math.min(height, box.height + box.y), 0);
|
|
1403
|
+
box.x = Math.max(box.x, 0);
|
|
1404
|
+
box.y = Math.max(box.y, 0);
|
|
1405
|
+
}
|
|
1406
|
+
//# sourceMappingURL=ElementHandle.js.map
|