conductor-oss 0.6.2 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +156 -248
- package/dist/commands/attach.d.ts.map +1 -1
- package/dist/commands/attach.js +31 -15
- package/dist/commands/attach.js.map +1 -1
- package/dist/commands/dashboard.d.ts.map +1 -1
- package/dist/commands/dashboard.js +117 -18
- package/dist/commands/dashboard.js.map +1 -1
- package/dist/commands/feedback.d.ts.map +1 -1
- package/dist/commands/feedback.js +4 -5
- package/dist/commands/feedback.js.map +1 -1
- package/dist/commands/start.js +11 -14
- package/dist/commands/start.js.map +1 -1
- package/dist/rust-cli.d.ts.map +1 -1
- package/dist/rust-cli.js +48 -0
- package/dist/rust-cli.js.map +1 -1
- package/node_modules/@conductor-oss/core/dist/index.d.ts +1 -26
- package/node_modules/@conductor-oss/core/dist/index.d.ts.map +1 -1
- package/node_modules/@conductor-oss/core/dist/index.js +2 -31
- package/node_modules/@conductor-oss/core/dist/index.js.map +1 -1
- package/package.json +7 -44
- package/web/.next/standalone/packages/web/.next/BUILD_ID +1 -1
- package/web/.next/standalone/packages/web/.next/build-manifest.json +2 -2
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/CLI.js +338 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/Cache.js +208 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/DefaultProvider.js +35 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/DefaultProvider.spec.js +75 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/browser-data.js +235 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chrome-headless-shell.js +47 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chrome.js +296 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chromedriver.js +43 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/chromium.js +63 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/firefox.js +374 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/browser-data/types.js +63 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/debug.js +8 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/detectPlatform.js +47 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/fileUtil.js +156 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/httpUtil.js +132 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/install.js +351 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/launch.js +426 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/main-cli.js +9 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/main.js +15 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/lib/esm/provider.js +13 -0
- package/web/.next/standalone/packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460/package.json +125 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/package.json +1 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Browser.js +204 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/BrowserContext.js +182 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/CDPSession.js +68 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/DeviceRequestPrompt.js +34 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Dialog.js +90 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/ElementHandle.js +1406 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/ElementHandleSymbol.js +10 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Frame.js +904 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/HTTPRequest.js +461 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/HTTPResponse.js +56 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Input.js +211 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/JSHandle.js +227 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Page.js +1511 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Realm.js +44 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/Target.js +49 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/WebWorker.js +106 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/api.js +22 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/api/locators/locators.js +769 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/bidi/BrowserConnector.js +83 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Accessibility.js +591 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Binding.js +162 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BluetoothEmulation.js +26 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Browser.js +321 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BrowserConnector.js +26 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/BrowserContext.js +192 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/CdpPreloadScript.js +39 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/CdpSession.js +129 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Connection.js +244 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Coverage.js +372 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +151 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Dialog.js +23 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ElementHandle.js +206 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/EmulationManager.js +458 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ExecutionContext.js +457 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/ExtensionTransport.js +175 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Frame.js +358 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameManager.js +455 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameManagerEvents.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/FrameTree.js +91 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/HTTPRequest.js +195 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/HTTPResponse.js +126 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Input.js +499 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/IsolatedWorld.js +157 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/IsolatedWorlds.js +20 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/JSHandle.js +101 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/LifecycleWatcher.js +174 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/NetworkEventManager.js +162 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/NetworkManager.js +601 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Page.js +1006 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js +69 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Target.js +243 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/TargetManageEvents.js +7 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/TargetManager.js +320 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/Tracing.js +110 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/WebWorker.js +73 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/cdp.js +43 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/cdp/utils.js +216 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/AriaQueryHandler.js +54 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/BrowserConnector.js +129 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +39 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CSSQueryHandler.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CallbackRegistry.js +133 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/ConsoleMessage.js +78 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/CustomQueryHandler.js +114 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Debug.js +109 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Device.js +1604 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Errors.js +94 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/EventEmitter.js +128 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/FileChooser.js +75 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/GetQueryHandler.js +70 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/HandleIterator.js +142 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/LazyArg.js +23 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/NetworkManagerEvents.js +21 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PDFOptions.js +58 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PQueryHandler.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PSelectorParser.js +100 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/PierceQueryHandler.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/Puppeteer.js +98 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/QueryHandler.js +225 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/ScriptInjector.js +51 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/SecurityDetails.js +69 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TaskQueue.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TextQueryHandler.js +15 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/TimeoutSettings.js +39 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/USKeyboardLayout.js +394 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/WaitTask.js +197 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/XPathQueryHandler.js +21 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/common.js +35 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/common/util.js +375 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/environment.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/generated/injected.js +9 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/index-browser.js +11 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/index.js +8 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/BrowserLauncher.js +312 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/ChromeLauncher.js +258 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/FirefoxLauncher.js +166 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/LaunchOptions.js +22 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/NodeWebSocketTransport.js +55 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/PipeTransport.js +72 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/PuppeteerNode.js +281 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/ScreenRecorder.js +279 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/node.js +12 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/node/util/fs.js +24 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/puppeteer-core.js +41 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/revisions.js +14 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/AsyncIterableUtil.js +29 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Deferred.js +105 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/ErrorLike.js +41 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Function.js +70 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/Mutex.js +46 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/assert.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/decorators.js +232 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/disposable.js +342 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/encoding.js +63 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/incremental-id-generator.js +18 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/util.js +13 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/puppeteer/util/version.js +10 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/mitt/mitt.js +44 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/parsel-js/parsel-js.js +196 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/lib/esm/third_party/rxjs/rxjs.js +2887 -0
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-core-3cc12a7b2479c6f0/package.json +169 -0
- package/web/.next/standalone/packages/web/.next/prerender-manifest.json +3 -3
- package/web/.next/standalone/packages/web/.next/required-server-files.json +3 -17
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.html +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.rsc +4 -4
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_full.segment.rsc +4 -4
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_index.segment.rsc +4 -4
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/api/access/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/access/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/agents/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/agents/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/app-update/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/app-update/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/attachments/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/attachments/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/auth/session/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/auth/session/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/comments/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/comments/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/config/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/config/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/open/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/open/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/events/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/events/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/executor/health/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/executor/health/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/directory/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/directory/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/pick-directory/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/pick-directory/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/repos/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/repos/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/webhook/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/webhook/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/boards/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/boards/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/sessions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/sessions/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/notifications/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/notifications/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/remote-access/route.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/api/remote-access/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/[id]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/[id]/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/actions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/actions/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/archive/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/archive/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/checks/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/checks/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/diff/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/diff/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/stream/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feed/stream/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feedback/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/feedback/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/files/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/files/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/interrupt/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/interrupt/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/keys/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/keys/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/kill/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/kill/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/stream/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/stream/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js +5 -4
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js +5 -4
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js +5 -4
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/screenshot/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/restore/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/restore/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/send/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/send/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/spawn/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/spawn/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/branches/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/branches/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/route.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page/react-loadable-manifest.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sessions/[id]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/unlock/page/server-reference-manifest.json +7 -7
- package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/unlock/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__04942c76._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06a0a55c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0bc13f9b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0e3fd2bf._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__17d710ef._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1898a844._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1e50c065._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__262e987e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2fd3bf3f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30c9c531._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__31053ac2._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__312cf7cb._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3318d8a1._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__33494588._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__34e636e5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3937a996._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3dc4c761._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3e507276._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3e68741b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__446cb0c6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4bcfaef6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4c5f7cab._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4da18faf._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4f2c5fc8._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__520aa408._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__53daf5c6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__540ebc7f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__543bc377._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5612b82a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__59635ca5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5d35c5e5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5df70a62._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__624bcdc9._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__70929198._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__70b5c7bd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__732fc06e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__747e6415._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__797db2d6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7c87a52f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__82e86bb6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ace49d1._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8c576b6a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ee7749b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8ef73e8c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__93cc1947._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__93e83d5a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9576223c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__95af98eb._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__98f4a7bd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9940de77._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9a7c9a83._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9bf61231._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a03769bc._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a4b1a94c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a4b8bc9a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a59d62a8._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ad47dd9e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ae73aa49._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b00db558._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b26505fd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b4039db5._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b53b70e7._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b716459f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b78e1a05._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ba70a88e._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bb2675cd._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bc658430._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__bcd0c846._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__be233a9f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c0e99d28._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c33e4f89._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c455995a._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c999a476._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__cedfefb8._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d4acf424._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d91a7563._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__db8dccdf._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__dda8199c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e385846c._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6115e56._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6cfd1ae._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7aaee2d._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7c11007._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e908dd2b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eae97345._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eb6e6bb9._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ed51a16d._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f0ec1021._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f111812f._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fbbf4d14._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fd0a681b._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__fe4c1384._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ff344935._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/_2c837d66._.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__000b8c99._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__29d8d063._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__7829c78d._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__99387ae7._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__b388693f._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__bc9ab6c6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_0e1412de._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_230c0c14._.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_367680b9._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_69e05fca._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_6cfd06c2._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_80efe193._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_b214b154._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_b6d31783._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_c0f0e227._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_f36ddaa9._.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_3c8da5a6._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_af0671be._.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/pages/404.html +1 -1
- package/web/.next/standalone/packages/web/.next/server/pages/500.html +2 -2
- package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/server-reference-manifest.json +8 -8
- package/web/.next/standalone/packages/web/.next/static/chunks/2bc11b604b131190.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/5f2995585c1ac66a.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/64f0033534ca1ad3.css +3 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/7daf09cc7388f426.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/a28bcda8dd6b68ee.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/b31c8692e1da69ef.js +6 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/b6069d0eb07a978f.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/c2caa064748bb0b5.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/c5f8e486166298c2.js +1 -0
- package/web/.next/standalone/packages/web/next.config.ts +3 -17
- package/web/.next/standalone/packages/web/package.json +1 -18
- package/web/.next/standalone/packages/web/server.js +1 -1
- package/web/.next/standalone/packages/web/src/components/layout/Sidebar.tsx +153 -28
- package/web/.next/standalone/packages/web/src/components/sessions/SessionPreview.tsx +77 -2
- package/web/.next/standalone/packages/web/src/components/sessions/SessionRuntimeStatusBar.tsx +75 -19
- package/web/.next/standalone/packages/web/src/lib/devPreviewBrowser.ts +245 -9
- package/web/.next/standalone/packages/web/src/lib/previewSession.test.ts +2 -2
- package/web/.next/standalone/packages/web/src/lib/previewSession.ts +15 -4
- package/web/.next/standalone/packages/web/src/lib/previewTypes.ts +2 -0
- package/web/.next/standalone/packages/web/src/lib/projectConfigSync.ts +38 -74
- package/web/.next/static/chunks/2bc11b604b131190.js +1 -0
- package/web/.next/static/chunks/5f2995585c1ac66a.js +1 -0
- package/web/.next/static/chunks/64f0033534ca1ad3.css +3 -0
- package/web/.next/static/chunks/7daf09cc7388f426.js +1 -0
- package/web/.next/static/chunks/a28bcda8dd6b68ee.js +1 -0
- package/web/.next/static/chunks/b31c8692e1da69ef.js +6 -0
- package/web/.next/static/chunks/b6069d0eb07a978f.js +1 -0
- package/web/.next/static/chunks/c2caa064748bb0b5.js +1 -0
- package/web/.next/static/chunks/c5f8e486166298c2.js +1 -0
- package/dist/services.d.ts +0 -33
- package/dist/services.d.ts.map +0 -1
- package/dist/services.js +0 -111
- package/dist/services.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/agent-names.d.ts +0 -4
- package/node_modules/@conductor-oss/core/dist/agent-names.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/agent-names.js +0 -108
- package/node_modules/@conductor-oss/core/dist/agent-names.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.d.ts +0 -37
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.js +0 -212
- package/node_modules/@conductor-oss/core/dist/board-diagnostics.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-parser.d.ts +0 -49
- package/node_modules/@conductor-oss/core/dist/board-parser.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-parser.js +0 -241
- package/node_modules/@conductor-oss/core/dist/board-parser.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-watcher.d.ts +0 -62
- package/node_modules/@conductor-oss/core/dist/board-watcher.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/board-watcher.js +0 -2162
- package/node_modules/@conductor-oss/core/dist/board-watcher.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/config-sync.d.ts +0 -42
- package/node_modules/@conductor-oss/core/dist/config-sync.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/config-sync.js +0 -241
- package/node_modules/@conductor-oss/core/dist/config-sync.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/event-bus.d.ts +0 -49
- package/node_modules/@conductor-oss/core/dist/event-bus.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/event-bus.js +0 -93
- package/node_modules/@conductor-oss/core/dist/event-bus.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.d.ts +0 -24
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.js +0 -787
- package/node_modules/@conductor-oss/core/dist/lifecycle-manager.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/metadata.d.ts +0 -59
- package/node_modules/@conductor-oss/core/dist/metadata.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/metadata.js +0 -385
- package/node_modules/@conductor-oss/core/dist/metadata.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/plugin-registry.d.ts +0 -11
- package/node_modules/@conductor-oss/core/dist/plugin-registry.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/plugin-registry.js +0 -94
- package/node_modules/@conductor-oss/core/dist/plugin-registry.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/prompt-builder.d.ts +0 -37
- package/node_modules/@conductor-oss/core/dist/prompt-builder.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/prompt-builder.js +0 -189
- package/node_modules/@conductor-oss/core/dist/prompt-builder.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/scaffold.d.ts +0 -77
- package/node_modules/@conductor-oss/core/dist/scaffold.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/scaffold.js +0 -173
- package/node_modules/@conductor-oss/core/dist/scaffold.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/session-manager.d.ts +0 -21
- package/node_modules/@conductor-oss/core/dist/session-manager.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/session-manager.js +0 -1714
- package/node_modules/@conductor-oss/core/dist/session-manager.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.d.ts +0 -38
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.js +0 -89
- package/node_modules/@conductor-oss/core/dist/spawn-limiter.js.map +0 -1
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.d.ts +0 -39
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.d.ts.map +0 -1
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.js +0 -89
- package/node_modules/@conductor-oss/core/dist/webhook-emitter.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-amp/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-amp/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-amp/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-ccr/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-ccr/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-ccr/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.d.ts +0 -37
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.js +0 -737
- package/node_modules/@conductor-oss/plugin-agent-claude-code/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-claude-code/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.d.ts +0 -30
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.js +0 -709
- package/node_modules/@conductor-oss/plugin-agent-codex/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-agent-codex/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-cursor-cli/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-cursor-cli/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-cursor-cli/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-droid/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-droid/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-droid/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-gemini/dist/index.d.ts +0 -71
- package/node_modules/@conductor-oss/plugin-agent-gemini/dist/index.js +0 -526
- package/node_modules/@conductor-oss/plugin-agent-gemini/package.json +0 -10
- package/node_modules/@conductor-oss/plugin-agent-github-copilot/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-github-copilot/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-github-copilot/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-opencode/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-opencode/dist/index.js +0 -198
- package/node_modules/@conductor-oss/plugin-agent-opencode/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-agent-qwen-code/dist/index.d.ts +0 -21
- package/node_modules/@conductor-oss/plugin-agent-qwen-code/dist/index.js +0 -202
- package/node_modules/@conductor-oss/plugin-agent-qwen-code/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.d.ts +0 -22
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.js +0 -341
- package/node_modules/@conductor-oss/plugin-mcp-server/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-mcp-server/package.json +0 -13
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.d.ts +0 -29
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.js +0 -105
- package/node_modules/@conductor-oss/plugin-notifier-desktop/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-desktop/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.d.ts +0 -26
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.js +0 -171
- package/node_modules/@conductor-oss/plugin-notifier-discord/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-notifier-discord/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.d.ts +0 -24
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.js +0 -187
- package/node_modules/@conductor-oss/plugin-runtime-tmux/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-runtime-tmux/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.d.ts +0 -24
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.js +0 -362
- package/node_modules/@conductor-oss/plugin-scm-github/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-scm-github/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.d.ts +0 -25
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.js +0 -59
- package/node_modules/@conductor-oss/plugin-terminal-web/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-terminal-web/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.d.ts +0 -24
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.js +0 -136
- package/node_modules/@conductor-oss/plugin-tracker-github/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-tracker-github/package.json +0 -11
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.d.ts +0 -28
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.d.ts.map +0 -1
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.js +0 -605
- package/node_modules/@conductor-oss/plugin-workspace-worktree/dist/index.js.map +0 -1
- package/node_modules/@conductor-oss/plugin-workspace-worktree/package.json +0 -11
- package/node_modules/@hono/node-server/LICENSE +0 -21
- package/node_modules/@hono/node-server/README.md +0 -358
- package/node_modules/@hono/node-server/dist/conninfo.d.mts +0 -10
- package/node_modules/@hono/node-server/dist/conninfo.d.ts +0 -10
- package/node_modules/@hono/node-server/dist/conninfo.js +0 -42
- package/node_modules/@hono/node-server/dist/conninfo.mjs +0 -17
- package/node_modules/@hono/node-server/dist/globals.d.mts +0 -2
- package/node_modules/@hono/node-server/dist/globals.d.ts +0 -2
- package/node_modules/@hono/node-server/dist/globals.js +0 -29
- package/node_modules/@hono/node-server/dist/globals.mjs +0 -5
- package/node_modules/@hono/node-server/dist/index.d.mts +0 -8
- package/node_modules/@hono/node-server/dist/index.d.ts +0 -8
- package/node_modules/@hono/node-server/dist/index.js +0 -632
- package/node_modules/@hono/node-server/dist/index.mjs +0 -592
- package/node_modules/@hono/node-server/dist/listener.d.mts +0 -13
- package/node_modules/@hono/node-server/dist/listener.d.ts +0 -13
- package/node_modules/@hono/node-server/dist/listener.js +0 -600
- package/node_modules/@hono/node-server/dist/listener.mjs +0 -565
- package/node_modules/@hono/node-server/dist/request.d.mts +0 -25
- package/node_modules/@hono/node-server/dist/request.d.ts +0 -25
- package/node_modules/@hono/node-server/dist/request.js +0 -227
- package/node_modules/@hono/node-server/dist/request.mjs +0 -195
- package/node_modules/@hono/node-server/dist/response.d.mts +0 -26
- package/node_modules/@hono/node-server/dist/response.d.ts +0 -26
- package/node_modules/@hono/node-server/dist/response.js +0 -101
- package/node_modules/@hono/node-server/dist/response.mjs +0 -74
- package/node_modules/@hono/node-server/dist/serve-static.d.mts +0 -17
- package/node_modules/@hono/node-server/dist/serve-static.d.ts +0 -17
- package/node_modules/@hono/node-server/dist/serve-static.js +0 -177
- package/node_modules/@hono/node-server/dist/serve-static.mjs +0 -152
- package/node_modules/@hono/node-server/dist/server.d.mts +0 -10
- package/node_modules/@hono/node-server/dist/server.d.ts +0 -10
- package/node_modules/@hono/node-server/dist/server.js +0 -626
- package/node_modules/@hono/node-server/dist/server.mjs +0 -590
- package/node_modules/@hono/node-server/dist/types.d.mts +0 -44
- package/node_modules/@hono/node-server/dist/types.d.ts +0 -44
- package/node_modules/@hono/node-server/dist/types.js +0 -18
- package/node_modules/@hono/node-server/dist/types.mjs +0 -0
- package/node_modules/@hono/node-server/dist/utils/response/constants.d.mts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response/constants.d.ts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response/constants.js +0 -30
- package/node_modules/@hono/node-server/dist/utils/response/constants.mjs +0 -5
- package/node_modules/@hono/node-server/dist/utils/response.d.mts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response.d.ts +0 -3
- package/node_modules/@hono/node-server/dist/utils/response.js +0 -37
- package/node_modules/@hono/node-server/dist/utils/response.mjs +0 -10
- package/node_modules/@hono/node-server/dist/utils.d.mts +0 -9
- package/node_modules/@hono/node-server/dist/utils.d.ts +0 -9
- package/node_modules/@hono/node-server/dist/utils.js +0 -99
- package/node_modules/@hono/node-server/dist/utils.mjs +0 -71
- package/node_modules/@hono/node-server/dist/vercel.d.mts +0 -7
- package/node_modules/@hono/node-server/dist/vercel.d.ts +0 -7
- package/node_modules/@hono/node-server/dist/vercel.js +0 -607
- package/node_modules/@hono/node-server/dist/vercel.mjs +0 -570
- package/node_modules/@hono/node-server/package.json +0 -103
- package/node_modules/@modelcontextprotocol/sdk/LICENSE +0 -21
- package/node_modules/@modelcontextprotocol/sdk/README.md +0 -170
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts +0 -190
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js +0 -299
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts +0 -446
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js +0 -925
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts +0 -588
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js +0 -629
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts +0 -169
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js +0 -252
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts +0 -81
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js +0 -211
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js +0 -199
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts +0 -171
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js +0 -482
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts +0 -17
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js +0 -58
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js +0 -680
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js +0 -134
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js +0 -176
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts +0 -20
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js +0 -70
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js +0 -397
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts +0 -26
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js +0 -857
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js +0 -157
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js +0 -95
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js +0 -168
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts +0 -78
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js +0 -205
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js +0 -460
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js +0 -656
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js +0 -85
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js +0 -171
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts +0 -7
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js +0 -95
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js +0 -49
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/progressExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js +0 -168
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js +0 -166
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js +0 -750
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js +0 -600
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js +0 -256
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js +0 -107
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js +0 -124
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js +0 -73
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js +0 -69
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts +0 -121
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js +0 -188
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js +0 -39
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts +0 -232
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js +0 -36
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts +0 -170
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js +0 -250
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts +0 -94
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js +0 -251
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js +0 -28
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/package.json +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts +0 -148
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js +0 -202
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js +0 -167
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts +0 -4
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js +0 -21
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js +0 -136
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts +0 -9
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js +0 -21
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts +0 -35
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js +0 -75
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js +0 -71
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts +0 -49
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js +0 -159
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts +0 -101
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js +0 -128
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts +0 -38
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js +0 -48
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js +0 -56
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts +0 -196
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js +0 -444
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts +0 -364
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js +0 -918
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js +0 -80
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts +0 -82
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js +0 -172
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts +0 -28
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js +0 -82
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts +0 -122
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js +0 -165
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts +0 -268
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js +0 -755
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts +0 -84
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js +0 -244
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js +0 -79
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts +0 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js +0 -48
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts +0 -240
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js +0 -224
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js +0 -25
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts +0 -443
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js +0 -1104
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js +0 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js +0 -37
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js +0 -97
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts +0 -89
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js +0 -43
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts +0 -25
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js +0 -243
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts +0 -2299
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js +0 -27
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts +0 -8137
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js +0 -2092
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts +0 -53
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js +0 -94
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js +0 -69
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js +0 -30
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts +0 -190
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js +0 -269
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts +0 -446
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js +0 -900
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts +0 -588
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js +0 -624
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts +0 -169
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js +0 -245
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts +0 -81
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js +0 -206
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js +0 -191
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts +0 -171
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js +0 -477
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts +0 -17
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js +0 -54
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js +0 -678
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js +0 -132
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js +0 -174
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts +0 -20
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts +0 -3
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js +0 -395
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts +0 -26
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js +0 -855
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js +0 -155
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js +0 -93
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js +0 -166
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts +0 -78
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js +0 -196
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js +0 -458
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js +0 -651
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js +0 -60
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js +0 -146
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts +0 -7
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js +0 -70
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/progressExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js +0 -143
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js +0 -141
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js +0 -725
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js +0 -598
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js +0 -231
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js +0 -102
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js +0 -122
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js +0 -48
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts +0 -121
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js +0 -184
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js +0 -64
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js +0 -20
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts +0 -232
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts +0 -77
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts +0 -170
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js +0 -246
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts +0 -94
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js +0 -246
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js +0 -10
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js +0 -47
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/package.json +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts +0 -148
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js +0 -180
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js +0 -138
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts +0 -4
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js +0 -15
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js +0 -71
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js +0 -59
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js +0 -107
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts +0 -9
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js +0 -18
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts +0 -35
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js +0 -72
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts +0 -68
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts +0 -49
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js +0 -155
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts +0 -101
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js +0 -118
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts +0 -38
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js +0 -41
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js +0 -50
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts +0 -196
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js +0 -440
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts +0 -364
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js +0 -913
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts +0 -32
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js +0 -76
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts +0 -82
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js +0 -165
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts +0 -28
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js +0 -75
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts +0 -122
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js +0 -161
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts +0 -268
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js +0 -751
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts +0 -84
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js +0 -209
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts +0 -12
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts +0 -23
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js +0 -44
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts +0 -240
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js +0 -198
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts +0 -16
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js +0 -22
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts +0 -443
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js +0 -1099
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts +0 -45
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js +0 -19
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts +0 -13
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts +0 -31
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js +0 -92
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts +0 -89
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js +0 -39
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts +0 -25
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js +0 -239
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts +0 -2299
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js +0 -24
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts +0 -8137
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js +0 -2052
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts +0 -53
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js +0 -87
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts +0 -51
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js +0 -29
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts +0 -65
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js +0 -2
- package/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/package.json +0 -155
- package/node_modules/accepts/HISTORY.md +0 -250
- package/node_modules/accepts/LICENSE +0 -23
- package/node_modules/accepts/README.md +0 -140
- package/node_modules/accepts/index.js +0 -238
- package/node_modules/accepts/package.json +0 -47
- package/node_modules/ajv/.runkit_example.js +0 -23
- package/node_modules/ajv/LICENSE +0 -22
- package/node_modules/ajv/README.md +0 -207
- package/node_modules/ajv/dist/2019.d.ts +0 -19
- package/node_modules/ajv/dist/2019.js +0 -61
- package/node_modules/ajv/dist/2019.js.map +0 -1
- package/node_modules/ajv/dist/2020.d.ts +0 -19
- package/node_modules/ajv/dist/2020.js +0 -55
- package/node_modules/ajv/dist/2020.js.map +0 -1
- package/node_modules/ajv/dist/ajv.d.ts +0 -18
- package/node_modules/ajv/dist/ajv.js +0 -50
- package/node_modules/ajv/dist/ajv.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
- package/node_modules/ajv/dist/compile/codegen/code.js +0 -156
- package/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/index.js +0 -697
- package/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
- package/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
- package/node_modules/ajv/dist/compile/errors.d.ts +0 -13
- package/node_modules/ajv/dist/compile/errors.js +0 -123
- package/node_modules/ajv/dist/compile/errors.js.map +0 -1
- package/node_modules/ajv/dist/compile/index.d.ts +0 -80
- package/node_modules/ajv/dist/compile/index.js +0 -242
- package/node_modules/ajv/dist/compile/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
- package/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/serialize.js +0 -236
- package/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
- package/node_modules/ajv/dist/compile/jtd/types.js +0 -14
- package/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
- package/node_modules/ajv/dist/compile/names.d.ts +0 -20
- package/node_modules/ajv/dist/compile/names.js +0 -28
- package/node_modules/ajv/dist/compile/names.js.map +0 -1
- package/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
- package/node_modules/ajv/dist/compile/ref_error.js +0 -12
- package/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
- package/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
- package/node_modules/ajv/dist/compile/resolve.js +0 -155
- package/node_modules/ajv/dist/compile/resolve.js.map +0 -1
- package/node_modules/ajv/dist/compile/rules.d.ts +0 -28
- package/node_modules/ajv/dist/compile/rules.js +0 -26
- package/node_modules/ajv/dist/compile/rules.js.map +0 -1
- package/node_modules/ajv/dist/compile/util.d.ts +0 -40
- package/node_modules/ajv/dist/compile/util.js +0 -178
- package/node_modules/ajv/dist/compile/util.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
- package/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
- package/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
- package/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
- package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
- package/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
- package/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
- package/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
- package/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
- package/node_modules/ajv/dist/compile/validate/index.js +0 -520
- package/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
- package/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
- package/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
- package/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
- package/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
- package/node_modules/ajv/dist/core.d.ts +0 -174
- package/node_modules/ajv/dist/core.js +0 -618
- package/node_modules/ajv/dist/core.js.map +0 -1
- package/node_modules/ajv/dist/jtd.d.ts +0 -47
- package/node_modules/ajv/dist/jtd.js +0 -72
- package/node_modules/ajv/dist/jtd.js.map +0 -1
- package/node_modules/ajv/dist/refs/data.json +0 -13
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
- package/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
- package/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/equal.js +0 -7
- package/node_modules/ajv/dist/runtime/equal.js.map +0 -1
- package/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
- package/node_modules/ajv/dist/runtime/parseJson.js +0 -185
- package/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
- package/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/quote.js +0 -30
- package/node_modules/ajv/dist/runtime/quote.js.map +0 -1
- package/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/re2.js +0 -6
- package/node_modules/ajv/dist/runtime/re2.js.map +0 -1
- package/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/timestamp.js +0 -42
- package/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
- package/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
- package/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
- package/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/uri.js +0 -6
- package/node_modules/ajv/dist/runtime/uri.js.map +0 -1
- package/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
- package/node_modules/ajv/dist/runtime/validation_error.js +0 -11
- package/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
- package/node_modules/ajv/dist/standalone/index.d.ts +0 -6
- package/node_modules/ajv/dist/standalone/index.js +0 -90
- package/node_modules/ajv/dist/standalone/index.js.map +0 -1
- package/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
- package/node_modules/ajv/dist/standalone/instance.js +0 -35
- package/node_modules/ajv/dist/standalone/instance.js.map +0 -1
- package/node_modules/ajv/dist/types/index.d.ts +0 -183
- package/node_modules/ajv/dist/types/index.js +0 -3
- package/node_modules/ajv/dist/types/index.js.map +0 -1
- package/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
- package/node_modules/ajv/dist/types/json-schema.js +0 -3
- package/node_modules/ajv/dist/types/json-schema.js.map +0 -1
- package/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
- package/node_modules/ajv/dist/types/jtd-schema.js +0 -3
- package/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
- package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
- package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
- package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
- package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
- package/node_modules/ajv/dist/vocabularies/code.js +0 -131
- package/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
- package/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
- package/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
- package/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
- package/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
- package/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/errors.js +0 -3
- package/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
- package/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
- package/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
- package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
- package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
- package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
- package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
- package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
- package/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/next.js +0 -8
- package/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
- package/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
- package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
- package/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
- package/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
- package/node_modules/ajv/lib/2019.ts +0 -81
- package/node_modules/ajv/lib/2020.ts +0 -75
- package/node_modules/ajv/lib/ajv.ts +0 -70
- package/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
- package/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
- package/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
- package/node_modules/ajv/lib/compile/errors.ts +0 -184
- package/node_modules/ajv/lib/compile/index.ts +0 -324
- package/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
- package/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -277
- package/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
- package/node_modules/ajv/lib/compile/names.ts +0 -27
- package/node_modules/ajv/lib/compile/ref_error.ts +0 -13
- package/node_modules/ajv/lib/compile/resolve.ts +0 -149
- package/node_modules/ajv/lib/compile/rules.ts +0 -50
- package/node_modules/ajv/lib/compile/util.ts +0 -213
- package/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
- package/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
- package/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
- package/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
- package/node_modules/ajv/lib/compile/validate/index.ts +0 -582
- package/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
- package/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
- package/node_modules/ajv/lib/core.ts +0 -892
- package/node_modules/ajv/lib/jtd.ts +0 -132
- package/node_modules/ajv/lib/refs/data.json +0 -13
- package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
- package/node_modules/ajv/lib/runtime/equal.ts +0 -7
- package/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
- package/node_modules/ajv/lib/runtime/quote.ts +0 -31
- package/node_modules/ajv/lib/runtime/re2.ts +0 -6
- package/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
- package/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
- package/node_modules/ajv/lib/runtime/uri.ts +0 -6
- package/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
- package/node_modules/ajv/lib/standalone/index.ts +0 -100
- package/node_modules/ajv/lib/standalone/instance.ts +0 -36
- package/node_modules/ajv/lib/types/index.ts +0 -244
- package/node_modules/ajv/lib/types/json-schema.ts +0 -187
- package/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
- package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
- package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
- package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
- package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
- package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
- package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
- package/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
- package/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
- package/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
- package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
- package/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
- package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
- package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
- package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
- package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
- package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
- package/node_modules/ajv/lib/vocabularies/code.ts +0 -168
- package/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
- package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
- package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
- package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
- package/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
- package/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
- package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
- package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
- package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
- package/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
- package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
- package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
- package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
- package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
- package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
- package/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
- package/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
- package/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/next.ts +0 -8
- package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
- package/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
- package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
- package/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
- package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
- package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
- package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
- package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -39
- package/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
- package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
- package/node_modules/ajv/package.json +0 -127
- package/node_modules/ajv-formats/LICENSE +0 -21
- package/node_modules/ajv-formats/README.md +0 -125
- package/node_modules/ajv-formats/dist/formats.d.ts +0 -9
- package/node_modules/ajv-formats/dist/formats.js +0 -208
- package/node_modules/ajv-formats/dist/formats.js.map +0 -1
- package/node_modules/ajv-formats/dist/index.d.ts +0 -15
- package/node_modules/ajv-formats/dist/index.js +0 -37
- package/node_modules/ajv-formats/dist/index.js.map +0 -1
- package/node_modules/ajv-formats/dist/limit.d.ts +0 -10
- package/node_modules/ajv-formats/dist/limit.js +0 -69
- package/node_modules/ajv-formats/dist/limit.js.map +0 -1
- package/node_modules/ajv-formats/package.json +0 -74
- package/node_modules/ajv-formats/src/formats.ts +0 -269
- package/node_modules/ajv-formats/src/index.ts +0 -62
- package/node_modules/ajv-formats/src/limit.ts +0 -99
- package/node_modules/body-parser/LICENSE +0 -23
- package/node_modules/body-parser/README.md +0 -494
- package/node_modules/body-parser/index.js +0 -71
- package/node_modules/body-parser/lib/read.js +0 -247
- package/node_modules/body-parser/lib/types/json.js +0 -158
- package/node_modules/body-parser/lib/types/raw.js +0 -42
- package/node_modules/body-parser/lib/types/text.js +0 -36
- package/node_modules/body-parser/lib/types/urlencoded.js +0 -142
- package/node_modules/body-parser/lib/utils.js +0 -98
- package/node_modules/body-parser/package.json +0 -52
- package/node_modules/bytes/History.md +0 -97
- package/node_modules/bytes/LICENSE +0 -23
- package/node_modules/bytes/Readme.md +0 -152
- package/node_modules/bytes/index.js +0 -170
- package/node_modules/bytes/package.json +0 -42
- package/node_modules/call-bind-apply-helpers/.eslintrc +0 -17
- package/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +0 -12
- package/node_modules/call-bind-apply-helpers/.nycrc +0 -9
- package/node_modules/call-bind-apply-helpers/CHANGELOG.md +0 -30
- package/node_modules/call-bind-apply-helpers/LICENSE +0 -21
- package/node_modules/call-bind-apply-helpers/README.md +0 -62
- package/node_modules/call-bind-apply-helpers/actualApply.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/actualApply.js +0 -10
- package/node_modules/call-bind-apply-helpers/applyBind.d.ts +0 -19
- package/node_modules/call-bind-apply-helpers/applyBind.js +0 -10
- package/node_modules/call-bind-apply-helpers/functionApply.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/functionApply.js +0 -4
- package/node_modules/call-bind-apply-helpers/functionCall.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/functionCall.js +0 -4
- package/node_modules/call-bind-apply-helpers/index.d.ts +0 -64
- package/node_modules/call-bind-apply-helpers/index.js +0 -15
- package/node_modules/call-bind-apply-helpers/package.json +0 -85
- package/node_modules/call-bind-apply-helpers/reflectApply.d.ts +0 -3
- package/node_modules/call-bind-apply-helpers/reflectApply.js +0 -4
- package/node_modules/call-bind-apply-helpers/test/index.js +0 -63
- package/node_modules/call-bind-apply-helpers/tsconfig.json +0 -9
- package/node_modules/call-bound/.eslintrc +0 -13
- package/node_modules/call-bound/.github/FUNDING.yml +0 -12
- package/node_modules/call-bound/.nycrc +0 -9
- package/node_modules/call-bound/CHANGELOG.md +0 -42
- package/node_modules/call-bound/LICENSE +0 -21
- package/node_modules/call-bound/README.md +0 -53
- package/node_modules/call-bound/index.d.ts +0 -94
- package/node_modules/call-bound/index.js +0 -19
- package/node_modules/call-bound/package.json +0 -99
- package/node_modules/call-bound/test/index.js +0 -61
- package/node_modules/call-bound/tsconfig.json +0 -10
- package/node_modules/content-disposition/HISTORY.md +0 -72
- package/node_modules/content-disposition/LICENSE +0 -22
- package/node_modules/content-disposition/README.md +0 -142
- package/node_modules/content-disposition/index.js +0 -458
- package/node_modules/content-disposition/package.json +0 -43
- package/node_modules/content-type/HISTORY.md +0 -29
- package/node_modules/content-type/LICENSE +0 -22
- package/node_modules/content-type/README.md +0 -94
- package/node_modules/content-type/index.js +0 -225
- package/node_modules/content-type/package.json +0 -42
- package/node_modules/cookie/LICENSE +0 -24
- package/node_modules/cookie/README.md +0 -317
- package/node_modules/cookie/SECURITY.md +0 -25
- package/node_modules/cookie/index.js +0 -335
- package/node_modules/cookie/package.json +0 -44
- package/node_modules/cookie-signature/History.md +0 -70
- package/node_modules/cookie-signature/LICENSE +0 -22
- package/node_modules/cookie-signature/Readme.md +0 -23
- package/node_modules/cookie-signature/index.js +0 -47
- package/node_modules/cookie-signature/package.json +0 -24
- package/node_modules/cors/LICENSE +0 -22
- package/node_modules/cors/README.md +0 -277
- package/node_modules/cors/lib/index.js +0 -238
- package/node_modules/cors/package.json +0 -42
- package/node_modules/cross-spawn/LICENSE +0 -21
- package/node_modules/cross-spawn/README.md +0 -89
- package/node_modules/cross-spawn/index.js +0 -39
- package/node_modules/cross-spawn/lib/enoent.js +0 -59
- package/node_modules/cross-spawn/lib/parse.js +0 -91
- package/node_modules/cross-spawn/lib/util/escape.js +0 -47
- package/node_modules/cross-spawn/lib/util/readShebang.js +0 -23
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -52
- package/node_modules/cross-spawn/package.json +0 -73
- package/node_modules/debug/LICENSE +0 -20
- package/node_modules/debug/README.md +0 -481
- package/node_modules/debug/package.json +0 -64
- package/node_modules/debug/src/browser.js +0 -272
- package/node_modules/debug/src/common.js +0 -292
- package/node_modules/debug/src/index.js +0 -10
- package/node_modules/debug/src/node.js +0 -263
- package/node_modules/depd/History.md +0 -103
- package/node_modules/depd/LICENSE +0 -22
- package/node_modules/depd/Readme.md +0 -280
- package/node_modules/depd/index.js +0 -538
- package/node_modules/depd/lib/browser/index.js +0 -77
- package/node_modules/depd/package.json +0 -45
- package/node_modules/dunder-proto/.eslintrc +0 -5
- package/node_modules/dunder-proto/.github/FUNDING.yml +0 -12
- package/node_modules/dunder-proto/.nycrc +0 -13
- package/node_modules/dunder-proto/CHANGELOG.md +0 -24
- package/node_modules/dunder-proto/LICENSE +0 -21
- package/node_modules/dunder-proto/README.md +0 -54
- package/node_modules/dunder-proto/get.d.ts +0 -5
- package/node_modules/dunder-proto/get.js +0 -30
- package/node_modules/dunder-proto/package.json +0 -76
- package/node_modules/dunder-proto/set.d.ts +0 -5
- package/node_modules/dunder-proto/set.js +0 -35
- package/node_modules/dunder-proto/test/get.js +0 -34
- package/node_modules/dunder-proto/test/index.js +0 -4
- package/node_modules/dunder-proto/test/set.js +0 -50
- package/node_modules/dunder-proto/tsconfig.json +0 -9
- package/node_modules/ee-first/LICENSE +0 -22
- package/node_modules/ee-first/README.md +0 -80
- package/node_modules/ee-first/index.js +0 -95
- package/node_modules/ee-first/package.json +0 -29
- package/node_modules/encodeurl/LICENSE +0 -22
- package/node_modules/encodeurl/README.md +0 -109
- package/node_modules/encodeurl/index.js +0 -60
- package/node_modules/encodeurl/package.json +0 -40
- package/node_modules/es-define-property/.eslintrc +0 -13
- package/node_modules/es-define-property/.github/FUNDING.yml +0 -12
- package/node_modules/es-define-property/.nycrc +0 -9
- package/node_modules/es-define-property/CHANGELOG.md +0 -29
- package/node_modules/es-define-property/LICENSE +0 -21
- package/node_modules/es-define-property/README.md +0 -49
- package/node_modules/es-define-property/index.d.ts +0 -3
- package/node_modules/es-define-property/index.js +0 -14
- package/node_modules/es-define-property/package.json +0 -81
- package/node_modules/es-define-property/test/index.js +0 -56
- package/node_modules/es-define-property/tsconfig.json +0 -10
- package/node_modules/es-errors/.eslintrc +0 -5
- package/node_modules/es-errors/.github/FUNDING.yml +0 -12
- package/node_modules/es-errors/CHANGELOG.md +0 -40
- package/node_modules/es-errors/LICENSE +0 -21
- package/node_modules/es-errors/README.md +0 -55
- package/node_modules/es-errors/eval.d.ts +0 -3
- package/node_modules/es-errors/eval.js +0 -4
- package/node_modules/es-errors/index.d.ts +0 -3
- package/node_modules/es-errors/index.js +0 -4
- package/node_modules/es-errors/package.json +0 -80
- package/node_modules/es-errors/range.d.ts +0 -3
- package/node_modules/es-errors/range.js +0 -4
- package/node_modules/es-errors/ref.d.ts +0 -3
- package/node_modules/es-errors/ref.js +0 -4
- package/node_modules/es-errors/syntax.d.ts +0 -3
- package/node_modules/es-errors/syntax.js +0 -4
- package/node_modules/es-errors/test/index.js +0 -19
- package/node_modules/es-errors/tsconfig.json +0 -49
- package/node_modules/es-errors/type.d.ts +0 -3
- package/node_modules/es-errors/type.js +0 -4
- package/node_modules/es-errors/uri.d.ts +0 -3
- package/node_modules/es-errors/uri.js +0 -4
- package/node_modules/es-object-atoms/.eslintrc +0 -16
- package/node_modules/es-object-atoms/.github/FUNDING.yml +0 -12
- package/node_modules/es-object-atoms/CHANGELOG.md +0 -37
- package/node_modules/es-object-atoms/LICENSE +0 -21
- package/node_modules/es-object-atoms/README.md +0 -63
- package/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +0 -3
- package/node_modules/es-object-atoms/RequireObjectCoercible.js +0 -11
- package/node_modules/es-object-atoms/ToObject.d.ts +0 -7
- package/node_modules/es-object-atoms/ToObject.js +0 -10
- package/node_modules/es-object-atoms/index.d.ts +0 -3
- package/node_modules/es-object-atoms/index.js +0 -4
- package/node_modules/es-object-atoms/isObject.d.ts +0 -3
- package/node_modules/es-object-atoms/isObject.js +0 -6
- package/node_modules/es-object-atoms/package.json +0 -80
- package/node_modules/es-object-atoms/test/index.js +0 -38
- package/node_modules/es-object-atoms/tsconfig.json +0 -6
- package/node_modules/escape-html/LICENSE +0 -24
- package/node_modules/escape-html/Readme.md +0 -43
- package/node_modules/escape-html/index.js +0 -78
- package/node_modules/escape-html/package.json +0 -24
- package/node_modules/etag/HISTORY.md +0 -83
- package/node_modules/etag/LICENSE +0 -22
- package/node_modules/etag/README.md +0 -159
- package/node_modules/etag/index.js +0 -131
- package/node_modules/etag/package.json +0 -47
- package/node_modules/eventsource/LICENSE +0 -22
- package/node_modules/eventsource/README.md +0 -167
- package/node_modules/eventsource/dist/index.cjs +0 -273
- package/node_modules/eventsource/dist/index.cjs.map +0 -1
- package/node_modules/eventsource/dist/index.d.cts +0 -332
- package/node_modules/eventsource/dist/index.d.ts +0 -332
- package/node_modules/eventsource/dist/index.js +0 -273
- package/node_modules/eventsource/dist/index.js.map +0 -1
- package/node_modules/eventsource/package.json +0 -130
- package/node_modules/eventsource/src/EventSource.ts +0 -596
- package/node_modules/eventsource/src/errors.ts +0 -141
- package/node_modules/eventsource/src/index.ts +0 -3
- package/node_modules/eventsource/src/types.ts +0 -152
- package/node_modules/eventsource-parser/LICENSE +0 -21
- package/node_modules/eventsource-parser/README.md +0 -126
- package/node_modules/eventsource-parser/dist/index.cjs +0 -106
- package/node_modules/eventsource-parser/dist/index.cjs.map +0 -1
- package/node_modules/eventsource-parser/dist/index.d.cts +0 -144
- package/node_modules/eventsource-parser/dist/index.d.ts +0 -144
- package/node_modules/eventsource-parser/dist/index.js +0 -106
- package/node_modules/eventsource-parser/dist/index.js.map +0 -1
- package/node_modules/eventsource-parser/dist/stream.cjs +0 -28
- package/node_modules/eventsource-parser/dist/stream.cjs.map +0 -1
- package/node_modules/eventsource-parser/dist/stream.d.cts +0 -118
- package/node_modules/eventsource-parser/dist/stream.d.ts +0 -118
- package/node_modules/eventsource-parser/dist/stream.js +0 -29
- package/node_modules/eventsource-parser/dist/stream.js.map +0 -1
- package/node_modules/eventsource-parser/package.json +0 -115
- package/node_modules/eventsource-parser/src/errors.ts +0 -44
- package/node_modules/eventsource-parser/src/index.ts +0 -3
- package/node_modules/eventsource-parser/src/parse.ts +0 -232
- package/node_modules/eventsource-parser/src/stream.ts +0 -88
- package/node_modules/eventsource-parser/src/types.ts +0 -97
- package/node_modules/eventsource-parser/stream.js +0 -2
- package/node_modules/express/LICENSE +0 -24
- package/node_modules/express/Readme.md +0 -276
- package/node_modules/express/index.js +0 -11
- package/node_modules/express/lib/application.js +0 -631
- package/node_modules/express/lib/express.js +0 -81
- package/node_modules/express/lib/request.js +0 -514
- package/node_modules/express/lib/response.js +0 -1053
- package/node_modules/express/lib/utils.js +0 -271
- package/node_modules/express/lib/view.js +0 -205
- package/node_modules/express/package.json +0 -99
- package/node_modules/express-rate-limit/dist/index.cjs +0 -964
- package/node_modules/express-rate-limit/dist/index.d.cts +0 -642
- package/node_modules/express-rate-limit/dist/index.d.mts +0 -642
- package/node_modules/express-rate-limit/dist/index.d.ts +0 -642
- package/node_modules/express-rate-limit/dist/index.mjs +0 -934
- package/node_modules/express-rate-limit/license.md +0 -20
- package/node_modules/express-rate-limit/package.json +0 -112
- package/node_modules/express-rate-limit/readme.md +0 -151
- package/node_modules/express-rate-limit/tsconfig.json +0 -8
- package/node_modules/fast-deep-equal/LICENSE +0 -21
- package/node_modules/fast-deep-equal/README.md +0 -96
- package/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/index.js +0 -72
- package/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/react.js +0 -79
- package/node_modules/fast-deep-equal/index.d.ts +0 -4
- package/node_modules/fast-deep-equal/index.js +0 -46
- package/node_modules/fast-deep-equal/package.json +0 -61
- package/node_modules/fast-deep-equal/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/react.js +0 -53
- package/node_modules/fast-uri/.gitattributes +0 -2
- package/node_modules/fast-uri/.github/.stale.yml +0 -21
- package/node_modules/fast-uri/.github/dependabot.yml +0 -13
- package/node_modules/fast-uri/.github/tests_checker.yml +0 -8
- package/node_modules/fast-uri/.github/workflows/ci.yml +0 -101
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +0 -24
- package/node_modules/fast-uri/LICENSE +0 -32
- package/node_modules/fast-uri/README.md +0 -143
- package/node_modules/fast-uri/benchmark/benchmark.mjs +0 -159
- package/node_modules/fast-uri/benchmark/equal.mjs +0 -51
- package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +0 -22
- package/node_modules/fast-uri/benchmark/package.json +0 -17
- package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +0 -24
- package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +0 -65
- package/node_modules/fast-uri/eslint.config.js +0 -6
- package/node_modules/fast-uri/index.js +0 -340
- package/node_modules/fast-uri/lib/schemes.js +0 -267
- package/node_modules/fast-uri/lib/utils.js +0 -336
- package/node_modules/fast-uri/package.json +0 -69
- package/node_modules/fast-uri/test/ajv.test.js +0 -43
- package/node_modules/fast-uri/test/equal.test.js +0 -108
- package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +0 -501
- package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +0 -120
- package/node_modules/fast-uri/test/parse.test.js +0 -318
- package/node_modules/fast-uri/test/resolve.test.js +0 -78
- package/node_modules/fast-uri/test/rfc-3986.test.js +0 -90
- package/node_modules/fast-uri/test/serialize.test.js +0 -151
- package/node_modules/fast-uri/test/uri-js-compatibility.test.js +0 -33
- package/node_modules/fast-uri/test/uri-js.test.js +0 -912
- package/node_modules/fast-uri/test/util.test.js +0 -38
- package/node_modules/fast-uri/tsconfig.json +0 -9
- package/node_modules/fast-uri/types/index.d.ts +0 -60
- package/node_modules/fast-uri/types/index.test-d.ts +0 -17
- package/node_modules/finalhandler/HISTORY.md +0 -239
- package/node_modules/finalhandler/LICENSE +0 -22
- package/node_modules/finalhandler/README.md +0 -150
- package/node_modules/finalhandler/index.js +0 -293
- package/node_modules/finalhandler/package.json +0 -47
- package/node_modules/forwarded/HISTORY.md +0 -21
- package/node_modules/forwarded/LICENSE +0 -22
- package/node_modules/forwarded/README.md +0 -57
- package/node_modules/forwarded/index.js +0 -90
- package/node_modules/forwarded/package.json +0 -45
- package/node_modules/fresh/HISTORY.md +0 -80
- package/node_modules/fresh/LICENSE +0 -23
- package/node_modules/fresh/README.md +0 -117
- package/node_modules/fresh/index.js +0 -136
- package/node_modules/fresh/package.json +0 -46
- package/node_modules/function-bind/.eslintrc +0 -21
- package/node_modules/function-bind/.github/FUNDING.yml +0 -12
- package/node_modules/function-bind/.github/SECURITY.md +0 -3
- package/node_modules/function-bind/.nycrc +0 -13
- package/node_modules/function-bind/CHANGELOG.md +0 -136
- package/node_modules/function-bind/LICENSE +0 -20
- package/node_modules/function-bind/README.md +0 -46
- package/node_modules/function-bind/implementation.js +0 -84
- package/node_modules/function-bind/index.js +0 -5
- package/node_modules/function-bind/package.json +0 -87
- package/node_modules/function-bind/test/.eslintrc +0 -9
- package/node_modules/function-bind/test/index.js +0 -252
- package/node_modules/get-intrinsic/.eslintrc +0 -42
- package/node_modules/get-intrinsic/.github/FUNDING.yml +0 -12
- package/node_modules/get-intrinsic/.nycrc +0 -9
- package/node_modules/get-intrinsic/CHANGELOG.md +0 -186
- package/node_modules/get-intrinsic/LICENSE +0 -21
- package/node_modules/get-intrinsic/README.md +0 -71
- package/node_modules/get-intrinsic/index.js +0 -378
- package/node_modules/get-intrinsic/package.json +0 -97
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +0 -274
- package/node_modules/get-proto/.eslintrc +0 -10
- package/node_modules/get-proto/.github/FUNDING.yml +0 -12
- package/node_modules/get-proto/.nycrc +0 -9
- package/node_modules/get-proto/CHANGELOG.md +0 -21
- package/node_modules/get-proto/LICENSE +0 -21
- package/node_modules/get-proto/Object.getPrototypeOf.d.ts +0 -5
- package/node_modules/get-proto/Object.getPrototypeOf.js +0 -6
- package/node_modules/get-proto/README.md +0 -50
- package/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +0 -3
- package/node_modules/get-proto/Reflect.getPrototypeOf.js +0 -4
- package/node_modules/get-proto/index.d.ts +0 -5
- package/node_modules/get-proto/index.js +0 -27
- package/node_modules/get-proto/package.json +0 -81
- package/node_modules/get-proto/test/index.js +0 -68
- package/node_modules/get-proto/tsconfig.json +0 -9
- package/node_modules/gopd/.eslintrc +0 -16
- package/node_modules/gopd/.github/FUNDING.yml +0 -12
- package/node_modules/gopd/CHANGELOG.md +0 -45
- package/node_modules/gopd/LICENSE +0 -21
- package/node_modules/gopd/README.md +0 -40
- package/node_modules/gopd/gOPD.d.ts +0 -1
- package/node_modules/gopd/gOPD.js +0 -4
- package/node_modules/gopd/index.d.ts +0 -5
- package/node_modules/gopd/index.js +0 -15
- package/node_modules/gopd/package.json +0 -77
- package/node_modules/gopd/test/index.js +0 -36
- package/node_modules/gopd/tsconfig.json +0 -9
- package/node_modules/has-symbols/.eslintrc +0 -11
- package/node_modules/has-symbols/.github/FUNDING.yml +0 -12
- package/node_modules/has-symbols/.nycrc +0 -9
- package/node_modules/has-symbols/CHANGELOG.md +0 -91
- package/node_modules/has-symbols/LICENSE +0 -21
- package/node_modules/has-symbols/README.md +0 -46
- package/node_modules/has-symbols/index.d.ts +0 -3
- package/node_modules/has-symbols/index.js +0 -14
- package/node_modules/has-symbols/package.json +0 -111
- package/node_modules/has-symbols/shams.d.ts +0 -3
- package/node_modules/has-symbols/shams.js +0 -45
- package/node_modules/has-symbols/test/index.js +0 -22
- package/node_modules/has-symbols/test/shams/core-js.js +0 -29
- package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +0 -29
- package/node_modules/has-symbols/test/tests.js +0 -58
- package/node_modules/has-symbols/tsconfig.json +0 -10
- package/node_modules/hasown/.eslintrc +0 -5
- package/node_modules/hasown/.github/FUNDING.yml +0 -12
- package/node_modules/hasown/.nycrc +0 -13
- package/node_modules/hasown/CHANGELOG.md +0 -40
- package/node_modules/hasown/LICENSE +0 -21
- package/node_modules/hasown/README.md +0 -40
- package/node_modules/hasown/index.d.ts +0 -3
- package/node_modules/hasown/index.js +0 -8
- package/node_modules/hasown/package.json +0 -92
- package/node_modules/hasown/tsconfig.json +0 -6
- package/node_modules/hono/LICENSE +0 -21
- package/node_modules/hono/README.md +0 -85
- package/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +0 -24
- package/node_modules/hono/dist/adapter/aws-lambda/handler.js +0 -366
- package/node_modules/hono/dist/adapter/aws-lambda/index.js +0 -9
- package/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/node_modules/hono/dist/adapter/bun/conninfo.js +0 -27
- package/node_modules/hono/dist/adapter/bun/index.js +0 -16
- package/node_modules/hono/dist/adapter/bun/serve-static.js +0 -30
- package/node_modules/hono/dist/adapter/bun/server.js +0 -5
- package/node_modules/hono/dist/adapter/bun/ssg.js +0 -17
- package/node_modules/hono/dist/adapter/bun/websocket.js +0 -71
- package/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +0 -67
- package/node_modules/hono/dist/adapter/cloudflare-pages/index.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-workers/index.js +0 -9
- package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +0 -8
- package/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +0 -22
- package/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +0 -35
- package/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +0 -41
- package/node_modules/hono/dist/adapter/deno/conninfo.js +0 -14
- package/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/node_modules/hono/dist/adapter/deno/index.js +0 -12
- package/node_modules/hono/dist/adapter/deno/serve-static.js +0 -40
- package/node_modules/hono/dist/adapter/deno/ssg.js +0 -18
- package/node_modules/hono/dist/adapter/deno/websocket.js +0 -28
- package/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/lambda-edge/handler.js +0 -79
- package/node_modules/hono/dist/adapter/lambda-edge/index.js +0 -7
- package/node_modules/hono/dist/adapter/netlify/conninfo.js +0 -9
- package/node_modules/hono/dist/adapter/netlify/handler.js +0 -9
- package/node_modules/hono/dist/adapter/netlify/index.js +0 -2
- package/node_modules/hono/dist/adapter/netlify/mod.js +0 -7
- package/node_modules/hono/dist/adapter/service-worker/handler.js +0 -20
- package/node_modules/hono/dist/adapter/service-worker/index.js +0 -11
- package/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/node_modules/hono/dist/adapter/vercel/conninfo.js +0 -10
- package/node_modules/hono/dist/adapter/vercel/handler.js +0 -7
- package/node_modules/hono/dist/adapter/vercel/index.js +0 -7
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +0 -47
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +0 -398
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +0 -35
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +0 -16
- package/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +0 -50
- package/node_modules/hono/dist/cjs/adapter/bun/index.js +0 -46
- package/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +0 -53
- package/node_modules/hono/dist/cjs/adapter/bun/server.js +0 -28
- package/node_modules/hono/dist/cjs/adapter/bun/ssg.js +0 -41
- package/node_modules/hono/dist/cjs/adapter/bun/websocket.js +0 -97
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +0 -92
- package/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +0 -35
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +0 -34
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +0 -31
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +0 -45
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +0 -58
- package/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +0 -64
- package/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +0 -37
- package/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -1
- package/node_modules/hono/dist/cjs/adapter/deno/index.js +0 -39
- package/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +0 -63
- package/node_modules/hono/dist/cjs/adapter/deno/ssg.js +0 -42
- package/node_modules/hono/dist/cjs/adapter/deno/websocket.js +0 -51
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +0 -114
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +0 -31
- package/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/netlify/handler.js +0 -32
- package/node_modules/hono/dist/cjs/adapter/netlify/index.js +0 -22
- package/node_modules/hono/dist/cjs/adapter/netlify/mod.js +0 -31
- package/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +0 -43
- package/node_modules/hono/dist/cjs/adapter/service-worker/index.js +0 -35
- package/node_modules/hono/dist/cjs/adapter/service-worker/types.js +0 -16
- package/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +0 -33
- package/node_modules/hono/dist/cjs/adapter/vercel/handler.js +0 -30
- package/node_modules/hono/dist/cjs/adapter/vercel/index.js +0 -31
- package/node_modules/hono/dist/cjs/client/client.js +0 -196
- package/node_modules/hono/dist/cjs/client/fetch-result-please.js +0 -86
- package/node_modules/hono/dist/cjs/client/index.js +0 -33
- package/node_modules/hono/dist/cjs/client/types.js +0 -16
- package/node_modules/hono/dist/cjs/client/utils.js +0 -106
- package/node_modules/hono/dist/cjs/compose.js +0 -69
- package/node_modules/hono/dist/cjs/context.js +0 -436
- package/node_modules/hono/dist/cjs/helper/accepts/accepts.js +0 -44
- package/node_modules/hono/dist/cjs/helper/accepts/index.js +0 -28
- package/node_modules/hono/dist/cjs/helper/adapter/index.js +0 -82
- package/node_modules/hono/dist/cjs/helper/conninfo/index.js +0 -16
- package/node_modules/hono/dist/cjs/helper/conninfo/types.js +0 -16
- package/node_modules/hono/dist/cjs/helper/cookie/index.js +0 -131
- package/node_modules/hono/dist/cjs/helper/css/common.js +0 -223
- package/node_modules/hono/dist/cjs/helper/css/index.js +0 -143
- package/node_modules/hono/dist/cjs/helper/dev/index.js +0 -80
- package/node_modules/hono/dist/cjs/helper/factory/index.js +0 -55
- package/node_modules/hono/dist/cjs/helper/html/index.js +0 -65
- package/node_modules/hono/dist/cjs/helper/proxy/index.js +0 -112
- package/node_modules/hono/dist/cjs/helper/route/index.js +0 -72
- package/node_modules/hono/dist/cjs/helper/ssg/index.js +0 -44
- package/node_modules/hono/dist/cjs/helper/ssg/middleware.js +0 -74
- package/node_modules/hono/dist/cjs/helper/ssg/plugins.js +0 -71
- package/node_modules/hono/dist/cjs/helper/ssg/ssg.js +0 -317
- package/node_modules/hono/dist/cjs/helper/ssg/utils.js +0 -85
- package/node_modules/hono/dist/cjs/helper/streaming/index.js +0 -36
- package/node_modules/hono/dist/cjs/helper/streaming/sse.js +0 -91
- package/node_modules/hono/dist/cjs/helper/streaming/stream.js +0 -57
- package/node_modules/hono/dist/cjs/helper/streaming/text.js +0 -35
- package/node_modules/hono/dist/cjs/helper/streaming/utils.js +0 -36
- package/node_modules/hono/dist/cjs/helper/testing/index.js +0 -34
- package/node_modules/hono/dist/cjs/helper/websocket/index.js +0 -82
- package/node_modules/hono/dist/cjs/hono-base.js +0 -401
- package/node_modules/hono/dist/cjs/hono.js +0 -44
- package/node_modules/hono/dist/cjs/http-exception.js +0 -58
- package/node_modules/hono/dist/cjs/index.js +0 -28
- package/node_modules/hono/dist/cjs/jsx/base.js +0 -375
- package/node_modules/hono/dist/cjs/jsx/children.js +0 -45
- package/node_modules/hono/dist/cjs/jsx/components.js +0 -202
- package/node_modules/hono/dist/cjs/jsx/constants.js +0 -43
- package/node_modules/hono/dist/cjs/jsx/context.js +0 -63
- package/node_modules/hono/dist/cjs/jsx/dom/client.js +0 -77
- package/node_modules/hono/dist/cjs/jsx/dom/components.js +0 -56
- package/node_modules/hono/dist/cjs/jsx/dom/context.js +0 -72
- package/node_modules/hono/dist/cjs/jsx/dom/css.js +0 -162
- package/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +0 -75
- package/node_modules/hono/dist/cjs/jsx/dom/index.js +0 -182
- package/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +0 -369
- package/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +0 -53
- package/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +0 -33
- package/node_modules/hono/dist/cjs/jsx/dom/render.js +0 -620
- package/node_modules/hono/dist/cjs/jsx/dom/server.js +0 -68
- package/node_modules/hono/dist/cjs/jsx/dom/utils.js +0 -33
- package/node_modules/hono/dist/cjs/jsx/hooks/index.js +0 -371
- package/node_modules/hono/dist/cjs/jsx/index.js +0 -139
- package/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +0 -40
- package/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +0 -183
- package/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +0 -16
- package/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +0 -42
- package/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +0 -69
- package/node_modules/hono/dist/cjs/jsx/streaming.js +0 -178
- package/node_modules/hono/dist/cjs/jsx/types.js +0 -16
- package/node_modules/hono/dist/cjs/jsx/utils.js +0 -51
- package/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +0 -89
- package/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +0 -106
- package/node_modules/hono/dist/cjs/middleware/body-limit/index.js +0 -85
- package/node_modules/hono/dist/cjs/middleware/cache/index.js +0 -112
- package/node_modules/hono/dist/cjs/middleware/combine/index.js +0 -102
- package/node_modules/hono/dist/cjs/middleware/compress/index.js +0 -62
- package/node_modules/hono/dist/cjs/middleware/context-storage/index.js +0 -48
- package/node_modules/hono/dist/cjs/middleware/cors/index.js +0 -110
- package/node_modules/hono/dist/cjs/middleware/csrf/index.js +0 -78
- package/node_modules/hono/dist/cjs/middleware/etag/digest.js +0 -56
- package/node_modules/hono/dist/cjs/middleware/etag/index.js +0 -96
- package/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +0 -125
- package/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +0 -82
- package/node_modules/hono/dist/cjs/middleware/jwk/index.js +0 -28
- package/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +0 -135
- package/node_modules/hono/dist/cjs/middleware/jwt/index.js +0 -39
- package/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +0 -141
- package/node_modules/hono/dist/cjs/middleware/language/index.js +0 -36
- package/node_modules/hono/dist/cjs/middleware/language/language.js +0 -222
- package/node_modules/hono/dist/cjs/middleware/logger/index.js +0 -73
- package/node_modules/hono/dist/cjs/middleware/method-override/index.js +0 -105
- package/node_modules/hono/dist/cjs/middleware/powered-by/index.js +0 -33
- package/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +0 -38
- package/node_modules/hono/dist/cjs/middleware/request-id/index.js +0 -28
- package/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +0 -44
- package/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +0 -30
- package/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +0 -16
- package/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +0 -190
- package/node_modules/hono/dist/cjs/middleware/serve-static/index.js +0 -100
- package/node_modules/hono/dist/cjs/middleware/serve-static/path.js +0 -41
- package/node_modules/hono/dist/cjs/middleware/timeout/index.js +0 -48
- package/node_modules/hono/dist/cjs/middleware/timing/index.js +0 -36
- package/node_modules/hono/dist/cjs/middleware/timing/timing.js +0 -129
- package/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +0 -63
- package/node_modules/hono/dist/cjs/package.json +0 -3
- package/node_modules/hono/dist/cjs/preset/quick.js +0 -39
- package/node_modules/hono/dist/cjs/preset/tiny.js +0 -35
- package/node_modules/hono/dist/cjs/request/constants.js +0 -28
- package/node_modules/hono/dist/cjs/request.js +0 -325
- package/node_modules/hono/dist/cjs/router/linear-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/linear-router/router.js +0 -141
- package/node_modules/hono/dist/cjs/router/pattern-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/pattern-router/router.js +0 -71
- package/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +0 -35
- package/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +0 -49
- package/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +0 -135
- package/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +0 -167
- package/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +0 -209
- package/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +0 -82
- package/node_modules/hono/dist/cjs/router/smart-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/smart-router/router.js +0 -81
- package/node_modules/hono/dist/cjs/router/trie-router/index.js +0 -28
- package/node_modules/hono/dist/cjs/router/trie-router/node.js +0 -202
- package/node_modules/hono/dist/cjs/router/trie-router/router.js +0 -49
- package/node_modules/hono/dist/cjs/router.js +0 -41
- package/node_modules/hono/dist/cjs/types.js +0 -29
- package/node_modules/hono/dist/cjs/utils/accept.js +0 -86
- package/node_modules/hono/dist/cjs/utils/basic-auth.js +0 -46
- package/node_modules/hono/dist/cjs/utils/body.js +0 -95
- package/node_modules/hono/dist/cjs/utils/buffer.js +0 -103
- package/node_modules/hono/dist/cjs/utils/color.js +0 -49
- package/node_modules/hono/dist/cjs/utils/compress.js +0 -28
- package/node_modules/hono/dist/cjs/utils/concurrent.js +0 -62
- package/node_modules/hono/dist/cjs/utils/constants.js +0 -28
- package/node_modules/hono/dist/cjs/utils/cookie.js +0 -178
- package/node_modules/hono/dist/cjs/utils/crypto.js +0 -70
- package/node_modules/hono/dist/cjs/utils/encode.js +0 -55
- package/node_modules/hono/dist/cjs/utils/filepath.js +0 -59
- package/node_modules/hono/dist/cjs/utils/handler.js +0 -37
- package/node_modules/hono/dist/cjs/utils/headers.js +0 -16
- package/node_modules/hono/dist/cjs/utils/html.js +0 -151
- package/node_modules/hono/dist/cjs/utils/http-status.js +0 -16
- package/node_modules/hono/dist/cjs/utils/ipaddr.js +0 -130
- package/node_modules/hono/dist/cjs/utils/jwt/index.js +0 -29
- package/node_modules/hono/dist/cjs/utils/jwt/jwa.js +0 -43
- package/node_modules/hono/dist/cjs/utils/jwt/jws.js +0 -216
- package/node_modules/hono/dist/cjs/utils/jwt/jwt.js +0 -214
- package/node_modules/hono/dist/cjs/utils/jwt/types.js +0 -162
- package/node_modules/hono/dist/cjs/utils/jwt/utf8.js +0 -31
- package/node_modules/hono/dist/cjs/utils/mime.js +0 -109
- package/node_modules/hono/dist/cjs/utils/stream.js +0 -102
- package/node_modules/hono/dist/cjs/utils/types.js +0 -16
- package/node_modules/hono/dist/cjs/utils/url.js +0 -257
- package/node_modules/hono/dist/cjs/validator/index.js +0 -28
- package/node_modules/hono/dist/cjs/validator/utils.js +0 -16
- package/node_modules/hono/dist/cjs/validator/validator.js +0 -109
- package/node_modules/hono/dist/client/client.js +0 -180
- package/node_modules/hono/dist/client/fetch-result-please.js +0 -62
- package/node_modules/hono/dist/client/index.js +0 -8
- package/node_modules/hono/dist/client/types.js +0 -0
- package/node_modules/hono/dist/client/utils.js +0 -76
- package/node_modules/hono/dist/compose.js +0 -46
- package/node_modules/hono/dist/context.js +0 -412
- package/node_modules/hono/dist/helper/accepts/accepts.js +0 -20
- package/node_modules/hono/dist/helper/accepts/index.js +0 -5
- package/node_modules/hono/dist/helper/adapter/index.js +0 -56
- package/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/node_modules/hono/dist/helper/cookie/index.js +0 -102
- package/node_modules/hono/dist/helper/css/common.js +0 -185
- package/node_modules/hono/dist/helper/css/index.js +0 -125
- package/node_modules/hono/dist/helper/dev/index.js +0 -55
- package/node_modules/hono/dist/helper/factory/index.js +0 -30
- package/node_modules/hono/dist/helper/html/index.js +0 -41
- package/node_modules/hono/dist/helper/proxy/index.js +0 -89
- package/node_modules/hono/dist/helper/route/index.js +0 -46
- package/node_modules/hono/dist/helper/ssg/index.js +0 -19
- package/node_modules/hono/dist/helper/ssg/middleware.js +0 -45
- package/node_modules/hono/dist/helper/ssg/plugins.js +0 -47
- package/node_modules/hono/dist/helper/ssg/ssg.js +0 -287
- package/node_modules/hono/dist/helper/ssg/utils.js +0 -59
- package/node_modules/hono/dist/helper/streaming/index.js +0 -10
- package/node_modules/hono/dist/helper/streaming/sse.js +0 -67
- package/node_modules/hono/dist/helper/streaming/stream.js +0 -34
- package/node_modules/hono/dist/helper/streaming/text.js +0 -12
- package/node_modules/hono/dist/helper/streaming/utils.js +0 -13
- package/node_modules/hono/dist/helper/testing/index.js +0 -11
- package/node_modules/hono/dist/helper/websocket/index.js +0 -57
- package/node_modules/hono/dist/hono-base.js +0 -378
- package/node_modules/hono/dist/hono.js +0 -21
- package/node_modules/hono/dist/http-exception.js +0 -35
- package/node_modules/hono/dist/index.js +0 -5
- package/node_modules/hono/dist/jsx/base.js +0 -331
- package/node_modules/hono/dist/jsx/children.js +0 -21
- package/node_modules/hono/dist/jsx/components.js +0 -178
- package/node_modules/hono/dist/jsx/constants.js +0 -15
- package/node_modules/hono/dist/jsx/context.js +0 -38
- package/node_modules/hono/dist/jsx/dom/client.js +0 -53
- package/node_modules/hono/dist/jsx/dom/components.js +0 -32
- package/node_modules/hono/dist/jsx/dom/context.js +0 -48
- package/node_modules/hono/dist/jsx/dom/css.js +0 -143
- package/node_modules/hono/dist/jsx/dom/hooks/index.js +0 -48
- package/node_modules/hono/dist/jsx/dom/index.js +0 -142
- package/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +0 -337
- package/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +0 -19
- package/node_modules/hono/dist/jsx/dom/jsx-runtime.js +0 -8
- package/node_modules/hono/dist/jsx/dom/render.js +0 -595
- package/node_modules/hono/dist/jsx/dom/server.js +0 -33
- package/node_modules/hono/dist/jsx/dom/utils.js +0 -10
- package/node_modules/hono/dist/jsx/hooks/index.js +0 -328
- package/node_modules/hono/dist/jsx/index.js +0 -103
- package/node_modules/hono/dist/jsx/intrinsic-element/common.js +0 -15
- package/node_modules/hono/dist/jsx/intrinsic-element/components.js +0 -153
- package/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/node_modules/hono/dist/jsx/jsx-dev-runtime.js +0 -18
- package/node_modules/hono/dist/jsx/jsx-runtime.js +0 -41
- package/node_modules/hono/dist/jsx/streaming.js +0 -153
- package/node_modules/hono/dist/jsx/types.js +0 -0
- package/node_modules/hono/dist/jsx/utils.js +0 -27
- package/node_modules/hono/dist/middleware/basic-auth/index.js +0 -66
- package/node_modules/hono/dist/middleware/bearer-auth/index.js +0 -83
- package/node_modules/hono/dist/middleware/body-limit/index.js +0 -62
- package/node_modules/hono/dist/middleware/cache/index.js +0 -89
- package/node_modules/hono/dist/middleware/combine/index.js +0 -77
- package/node_modules/hono/dist/middleware/compress/index.js +0 -39
- package/node_modules/hono/dist/middleware/context-storage/index.js +0 -23
- package/node_modules/hono/dist/middleware/cors/index.js +0 -87
- package/node_modules/hono/dist/middleware/csrf/index.js +0 -55
- package/node_modules/hono/dist/middleware/etag/digest.js +0 -33
- package/node_modules/hono/dist/middleware/etag/index.js +0 -72
- package/node_modules/hono/dist/middleware/ip-restriction/index.js +0 -107
- package/node_modules/hono/dist/middleware/jsx-renderer/index.js +0 -57
- package/node_modules/hono/dist/middleware/jwk/index.js +0 -5
- package/node_modules/hono/dist/middleware/jwk/jwk.js +0 -112
- package/node_modules/hono/dist/middleware/jwt/index.js +0 -11
- package/node_modules/hono/dist/middleware/jwt/jwt.js +0 -114
- package/node_modules/hono/dist/middleware/language/index.js +0 -15
- package/node_modules/hono/dist/middleware/language/language.js +0 -190
- package/node_modules/hono/dist/middleware/logger/index.js +0 -44
- package/node_modules/hono/dist/middleware/method-override/index.js +0 -82
- package/node_modules/hono/dist/middleware/powered-by/index.js +0 -10
- package/node_modules/hono/dist/middleware/pretty-json/index.js +0 -15
- package/node_modules/hono/dist/middleware/request-id/index.js +0 -5
- package/node_modules/hono/dist/middleware/request-id/request-id.js +0 -21
- package/node_modules/hono/dist/middleware/secure-headers/index.js +0 -6
- package/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +0 -166
- package/node_modules/hono/dist/middleware/serve-static/index.js +0 -77
- package/node_modules/hono/dist/middleware/serve-static/path.js +0 -18
- package/node_modules/hono/dist/middleware/timeout/index.js +0 -25
- package/node_modules/hono/dist/middleware/timing/index.js +0 -9
- package/node_modules/hono/dist/middleware/timing/timing.js +0 -102
- package/node_modules/hono/dist/middleware/trailing-slash/index.js +0 -39
- package/node_modules/hono/dist/preset/quick.js +0 -16
- package/node_modules/hono/dist/preset/tiny.js +0 -12
- package/node_modules/hono/dist/request/constants.js +0 -5
- package/node_modules/hono/dist/request.js +0 -301
- package/node_modules/hono/dist/router/linear-router/index.js +0 -5
- package/node_modules/hono/dist/router/linear-router/router.js +0 -118
- package/node_modules/hono/dist/router/pattern-router/index.js +0 -5
- package/node_modules/hono/dist/router/pattern-router/router.js +0 -48
- package/node_modules/hono/dist/router/reg-exp-router/index.js +0 -9
- package/node_modules/hono/dist/router/reg-exp-router/matcher.js +0 -25
- package/node_modules/hono/dist/router/reg-exp-router/node.js +0 -111
- package/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +0 -142
- package/node_modules/hono/dist/router/reg-exp-router/router.js +0 -190
- package/node_modules/hono/dist/router/reg-exp-router/trie.js +0 -59
- package/node_modules/hono/dist/router/smart-router/index.js +0 -5
- package/node_modules/hono/dist/router/smart-router/router.js +0 -58
- package/node_modules/hono/dist/router/trie-router/index.js +0 -5
- package/node_modules/hono/dist/router/trie-router/node.js +0 -179
- package/node_modules/hono/dist/router/trie-router/router.js +0 -26
- package/node_modules/hono/dist/router.js +0 -14
- package/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +0 -27
- package/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +0 -184
- package/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +0 -8
- package/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +0 -144
- package/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/bun/index.d.ts +0 -10
- package/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +0 -3
- package/node_modules/hono/dist/types/adapter/bun/server.d.ts +0 -12
- package/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +0 -13
- package/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +0 -39
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +0 -21
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +0 -33
- package/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +0 -4
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +0 -16
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +0 -5
- package/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/deno/index.d.ts +0 -8
- package/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +0 -3
- package/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +0 -13
- package/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +0 -87
- package/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +0 -7
- package/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +0 -21
- package/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/netlify/index.d.ts +0 -5
- package/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +0 -16
- package/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +0 -28
- package/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +0 -12
- package/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +0 -2
- package/node_modules/hono/dist/types/adapter/vercel/index.d.ts +0 -6
- package/node_modules/hono/dist/types/client/client.d.ts +0 -4
- package/node_modules/hono/dist/types/client/fetch-result-please.d.ts +0 -35
- package/node_modules/hono/dist/types/client/index.d.ts +0 -7
- package/node_modules/hono/dist/types/client/types.d.ts +0 -209
- package/node_modules/hono/dist/types/client/utils.d.ts +0 -18
- package/node_modules/hono/dist/types/compose.d.ts +0 -14
- package/node_modules/hono/dist/types/context.d.ts +0 -455
- package/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +0 -30
- package/node_modules/hono/dist/types/helper/accepts/index.d.ts +0 -5
- package/node_modules/hono/dist/types/helper/adapter/index.d.ts +0 -12
- package/node_modules/hono/dist/types/helper/conninfo/index.d.ts +0 -5
- package/node_modules/hono/dist/types/helper/conninfo/types.d.ts +0 -36
- package/node_modules/hono/dist/types/helper/cookie/index.d.ts +0 -24
- package/node_modules/hono/dist/types/helper/css/common.d.ts +0 -42
- package/node_modules/hono/dist/types/helper/css/index.d.ts +0 -73
- package/node_modules/hono/dist/types/helper/dev/index.d.ts +0 -20
- package/node_modules/hono/dist/types/helper/factory/index.d.ts +0 -82
- package/node_modules/hono/dist/types/helper/html/index.d.ts +0 -8
- package/node_modules/hono/dist/types/helper/proxy/index.d.ts +0 -72
- package/node_modules/hono/dist/types/helper/route/index.d.ts +0 -75
- package/node_modules/hono/dist/types/helper/ssg/index.d.ts +0 -7
- package/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +0 -44
- package/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +0 -27
- package/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +0 -91
- package/node_modules/hono/dist/types/helper/ssg/utils.d.ts +0 -15
- package/node_modules/hono/dist/types/helper/streaming/index.d.ts +0 -8
- package/node_modules/hono/dist/types/helper/streaming/sse.d.ts +0 -13
- package/node_modules/hono/dist/types/helper/streaming/stream.d.ts +0 -3
- package/node_modules/hono/dist/types/helper/streaming/text.d.ts +0 -3
- package/node_modules/hono/dist/types/helper/streaming/utils.d.ts +0 -1
- package/node_modules/hono/dist/types/helper/testing/index.d.ts +0 -12
- package/node_modules/hono/dist/types/helper/websocket/index.d.ts +0 -69
- package/node_modules/hono/dist/types/hono-base.d.ts +0 -220
- package/node_modules/hono/dist/types/hono.d.ts +0 -19
- package/node_modules/hono/dist/types/http-exception.d.ts +0 -59
- package/node_modules/hono/dist/types/index.d.ts +0 -36
- package/node_modules/hono/dist/types/jsx/base.d.ts +0 -58
- package/node_modules/hono/dist/types/jsx/children.d.ts +0 -9
- package/node_modules/hono/dist/types/jsx/components.d.ts +0 -15
- package/node_modules/hono/dist/types/jsx/constants.d.ts +0 -6
- package/node_modules/hono/dist/types/jsx/context.d.ts +0 -12
- package/node_modules/hono/dist/types/jsx/dom/client.d.ts +0 -31
- package/node_modules/hono/dist/types/jsx/dom/components.d.ts +0 -10
- package/node_modules/hono/dist/types/jsx/dom/context.d.ts +0 -3
- package/node_modules/hono/dist/types/jsx/dom/css.d.ts +0 -77
- package/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +0 -39
- package/node_modules/hono/dist/types/jsx/dom/index.d.ts +0 -88
- package/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +0 -16
- package/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +0 -8
- package/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +0 -7
- package/node_modules/hono/dist/types/jsx/dom/render.d.ts +0 -73
- package/node_modules/hono/dist/types/jsx/dom/server.d.ts +0 -106
- package/node_modules/hono/dist/types/jsx/dom/utils.d.ts +0 -1
- package/node_modules/hono/dist/types/jsx/hooks/index.d.ts +0 -45
- package/node_modules/hono/dist/types/jsx/index.d.ts +0 -75
- package/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +0 -3
- package/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +0 -13
- package/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +0 -722
- package/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +0 -8
- package/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +0 -12
- package/node_modules/hono/dist/types/jsx/streaming.d.ts +0 -36
- package/node_modules/hono/dist/types/jsx/types.d.ts +0 -35
- package/node_modules/hono/dist/types/jsx/utils.d.ts +0 -2
- package/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +0 -75
- package/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +0 -91
- package/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +0 -45
- package/node_modules/hono/dist/types/middleware/cache/index.d.ts +0 -41
- package/node_modules/hono/dist/types/middleware/combine/index.d.ts +0 -85
- package/node_modules/hono/dist/types/middleware/compress/index.d.ts +0 -29
- package/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +0 -40
- package/node_modules/hono/dist/types/middleware/cors/index.d.ts +0 -55
- package/node_modules/hono/dist/types/middleware/csrf/index.d.ts +0 -78
- package/node_modules/hono/dist/types/middleware/etag/digest.d.ts +0 -1
- package/node_modules/hono/dist/types/middleware/etag/index.d.ts +0 -42
- package/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +0 -31
- package/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +0 -77
- package/node_modules/hono/dist/types/middleware/jwk/index.d.ts +0 -1
- package/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +0 -54
- package/node_modules/hono/dist/types/middleware/jwt/index.d.ts +0 -8
- package/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +0 -67
- package/node_modules/hono/dist/types/middleware/language/index.d.ts +0 -7
- package/node_modules/hono/dist/types/middleware/language/language.d.ts +0 -102
- package/node_modules/hono/dist/types/middleware/logger/index.d.ts +0 -24
- package/node_modules/hono/dist/types/middleware/method-override/index.d.ts +0 -48
- package/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +0 -29
- package/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +0 -42
- package/node_modules/hono/dist/types/middleware/request-id/index.d.ts +0 -7
- package/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +0 -37
- package/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +0 -8
- package/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +0 -14
- package/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +0 -109
- package/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +0 -31
- package/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +0 -5
- package/node_modules/hono/dist/types/middleware/timeout/index.d.ts +0 -31
- package/node_modules/hono/dist/types/middleware/timing/index.d.ts +0 -7
- package/node_modules/hono/dist/types/middleware/timing/timing.d.ts +0 -129
- package/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +0 -78
- package/node_modules/hono/dist/types/package.json +0 -3
- package/node_modules/hono/dist/types/preset/quick.d.ts +0 -10
- package/node_modules/hono/dist/types/preset/tiny.d.ts +0 -10
- package/node_modules/hono/dist/types/request/constants.d.ts +0 -1
- package/node_modules/hono/dist/types/request.d.ts +0 -313
- package/node_modules/hono/dist/types/router/linear-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/linear-router/router.d.ts +0 -7
- package/node_modules/hono/dist/types/router/pattern-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/pattern-router/router.d.ts +0 -7
- package/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +0 -6
- package/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +0 -7
- package/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +0 -10
- package/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +0 -17
- package/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +0 -11
- package/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +0 -7
- package/node_modules/hono/dist/types/router/smart-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/smart-router/router.d.ts +0 -11
- package/node_modules/hono/dist/types/router/trie-router/index.d.ts +0 -5
- package/node_modules/hono/dist/types/router/trie-router/node.d.ts +0 -7
- package/node_modules/hono/dist/types/router/trie-router/router.d.ts +0 -8
- package/node_modules/hono/dist/types/router.d.ts +0 -97
- package/node_modules/hono/dist/types/types.d.ts +0 -573
- package/node_modules/hono/dist/types/utils/accept.d.ts +0 -11
- package/node_modules/hono/dist/types/utils/basic-auth.d.ts +0 -5
- package/node_modules/hono/dist/types/utils/body.d.ts +0 -79
- package/node_modules/hono/dist/types/utils/buffer.d.ts +0 -17
- package/node_modules/hono/dist/types/utils/color.d.ts +0 -21
- package/node_modules/hono/dist/types/utils/compress.d.ts +0 -8
- package/node_modules/hono/dist/types/utils/concurrent.d.ts +0 -11
- package/node_modules/hono/dist/types/utils/constants.d.ts +0 -4
- package/node_modules/hono/dist/types/utils/cookie.d.ts +0 -40
- package/node_modules/hono/dist/types/utils/crypto.d.ts +0 -15
- package/node_modules/hono/dist/types/utils/encode.d.ts +0 -8
- package/node_modules/hono/dist/types/utils/filepath.d.ts +0 -12
- package/node_modules/hono/dist/types/utils/handler.d.ts +0 -6
- package/node_modules/hono/dist/types/utils/headers.d.ts +0 -8
- package/node_modules/hono/dist/types/utils/html.d.ts +0 -44
- package/node_modules/hono/dist/types/utils/http-status.d.ts +0 -32
- package/node_modules/hono/dist/types/utils/ipaddr.d.ts +0 -40
- package/node_modules/hono/dist/types/utils/jwt/index.d.ts +0 -18
- package/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +0 -23
- package/node_modules/hono/dist/types/utils/jwt/jws.d.ts +0 -12
- package/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +0 -43
- package/node_modules/hono/dist/types/utils/jwt/types.d.ts +0 -86
- package/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +0 -6
- package/node_modules/hono/dist/types/utils/mime.d.ts +0 -70
- package/node_modules/hono/dist/types/utils/stream.d.ts +0 -31
- package/node_modules/hono/dist/types/utils/types.d.ts +0 -74
- package/node_modules/hono/dist/types/utils/url.d.ts +0 -39
- package/node_modules/hono/dist/types/validator/index.d.ts +0 -7
- package/node_modules/hono/dist/types/validator/utils.d.ts +0 -29
- package/node_modules/hono/dist/types/validator/validator.d.ts +0 -16
- package/node_modules/hono/dist/types.js +0 -6
- package/node_modules/hono/dist/utils/accept.js +0 -63
- package/node_modules/hono/dist/utils/basic-auth.js +0 -23
- package/node_modules/hono/dist/utils/body.js +0 -72
- package/node_modules/hono/dist/utils/buffer.js +0 -77
- package/node_modules/hono/dist/utils/color.js +0 -25
- package/node_modules/hono/dist/utils/compress.js +0 -5
- package/node_modules/hono/dist/utils/concurrent.js +0 -39
- package/node_modules/hono/dist/utils/constants.js +0 -5
- package/node_modules/hono/dist/utils/cookie.js +0 -152
- package/node_modules/hono/dist/utils/crypto.js +0 -44
- package/node_modules/hono/dist/utils/encode.js +0 -29
- package/node_modules/hono/dist/utils/filepath.js +0 -35
- package/node_modules/hono/dist/utils/handler.js +0 -13
- package/node_modules/hono/dist/utils/headers.js +0 -0
- package/node_modules/hono/dist/utils/html.js +0 -123
- package/node_modules/hono/dist/utils/http-status.js +0 -0
- package/node_modules/hono/dist/utils/ipaddr.js +0 -102
- package/node_modules/hono/dist/utils/jwt/index.js +0 -6
- package/node_modules/hono/dist/utils/jwt/jwa.js +0 -20
- package/node_modules/hono/dist/utils/jwt/jws.js +0 -192
- package/node_modules/hono/dist/utils/jwt/jwt.js +0 -201
- package/node_modules/hono/dist/utils/jwt/types.js +0 -124
- package/node_modules/hono/dist/utils/jwt/utf8.js +0 -7
- package/node_modules/hono/dist/utils/mime.js +0 -84
- package/node_modules/hono/dist/utils/stream.js +0 -79
- package/node_modules/hono/dist/utils/types.js +0 -0
- package/node_modules/hono/dist/utils/url.js +0 -222
- package/node_modules/hono/dist/validator/index.js +0 -5
- package/node_modules/hono/dist/validator/utils.js +0 -0
- package/node_modules/hono/dist/validator/validator.js +0 -86
- package/node_modules/hono/package.json +0 -691
- package/node_modules/http-errors/HISTORY.md +0 -186
- package/node_modules/http-errors/LICENSE +0 -23
- package/node_modules/http-errors/README.md +0 -169
- package/node_modules/http-errors/index.js +0 -290
- package/node_modules/http-errors/package.json +0 -54
- package/node_modules/iconv-lite/LICENSE +0 -21
- package/node_modules/iconv-lite/README.md +0 -138
- package/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -532
- package/node_modules/iconv-lite/encodings/dbcs-data.js +0 -185
- package/node_modules/iconv-lite/encodings/index.js +0 -23
- package/node_modules/iconv-lite/encodings/internal.js +0 -218
- package/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -75
- package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/node_modules/iconv-lite/encodings/sbcs-data.js +0 -178
- package/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
- package/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/node_modules/iconv-lite/encodings/utf16.js +0 -187
- package/node_modules/iconv-lite/encodings/utf32.js +0 -307
- package/node_modules/iconv-lite/encodings/utf7.js +0 -283
- package/node_modules/iconv-lite/lib/bom-handling.js +0 -48
- package/node_modules/iconv-lite/lib/helpers/merge-exports.js +0 -13
- package/node_modules/iconv-lite/lib/index.d.ts +0 -129
- package/node_modules/iconv-lite/lib/index.js +0 -182
- package/node_modules/iconv-lite/lib/streams.js +0 -105
- package/node_modules/iconv-lite/package.json +0 -70
- package/node_modules/iconv-lite/types/encodings.d.ts +0 -423
- package/node_modules/inherits/LICENSE +0 -16
- package/node_modules/inherits/README.md +0 -42
- package/node_modules/inherits/inherits.js +0 -9
- package/node_modules/inherits/inherits_browser.js +0 -27
- package/node_modules/inherits/package.json +0 -29
- package/node_modules/ip-address/LICENSE +0 -19
- package/node_modules/ip-address/README.md +0 -105
- package/node_modules/ip-address/dist/address-error.d.ts +0 -5
- package/node_modules/ip-address/dist/address-error.d.ts.map +0 -1
- package/node_modules/ip-address/dist/address-error.js +0 -12
- package/node_modules/ip-address/dist/address-error.js.map +0 -1
- package/node_modules/ip-address/dist/common.d.ts +0 -15
- package/node_modules/ip-address/dist/common.d.ts.map +0 -1
- package/node_modules/ip-address/dist/common.js +0 -46
- package/node_modules/ip-address/dist/common.js.map +0 -1
- package/node_modules/ip-address/dist/ip-address.d.ts +0 -8
- package/node_modules/ip-address/dist/ip-address.d.ts.map +0 -1
- package/node_modules/ip-address/dist/ip-address.js +0 -35
- package/node_modules/ip-address/dist/ip-address.js.map +0 -1
- package/node_modules/ip-address/dist/ipv4.d.ts +0 -209
- package/node_modules/ip-address/dist/ipv4.d.ts.map +0 -1
- package/node_modules/ip-address/dist/ipv4.js +0 -360
- package/node_modules/ip-address/dist/ipv4.js.map +0 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +0 -428
- package/node_modules/ip-address/dist/ipv6.d.ts.map +0 -1
- package/node_modules/ip-address/dist/ipv6.js +0 -1003
- package/node_modules/ip-address/dist/ipv6.js.map +0 -1
- package/node_modules/ip-address/dist/v4/constants.d.ts +0 -5
- package/node_modules/ip-address/dist/v4/constants.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v4/constants.js +0 -8
- package/node_modules/ip-address/dist/v4/constants.js.map +0 -1
- package/node_modules/ip-address/dist/v6/constants.d.ts +0 -45
- package/node_modules/ip-address/dist/v6/constants.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v6/constants.js +0 -76
- package/node_modules/ip-address/dist/v6/constants.js.map +0 -1
- package/node_modules/ip-address/dist/v6/helpers.d.ts +0 -18
- package/node_modules/ip-address/dist/v6/helpers.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v6/helpers.js +0 -45
- package/node_modules/ip-address/dist/v6/helpers.js.map +0 -1
- package/node_modules/ip-address/dist/v6/regular-expressions.d.ts +0 -6
- package/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +0 -1
- package/node_modules/ip-address/dist/v6/regular-expressions.js +0 -95
- package/node_modules/ip-address/dist/v6/regular-expressions.js.map +0 -1
- package/node_modules/ip-address/package.json +0 -78
- package/node_modules/ip-address/src/address-error.ts +0 -11
- package/node_modules/ip-address/src/common.ts +0 -55
- package/node_modules/ip-address/src/ip-address.ts +0 -7
- package/node_modules/ip-address/src/ipv4.ts +0 -394
- package/node_modules/ip-address/src/ipv6.ts +0 -1212
- package/node_modules/ip-address/src/v4/constants.ts +0 -7
- package/node_modules/ip-address/src/v6/constants.ts +0 -79
- package/node_modules/ip-address/src/v6/helpers.ts +0 -48
- package/node_modules/ip-address/src/v6/regular-expressions.ts +0 -94
- package/node_modules/ipaddr.js/LICENSE +0 -19
- package/node_modules/ipaddr.js/README.md +0 -233
- package/node_modules/ipaddr.js/ipaddr.min.js +0 -1
- package/node_modules/ipaddr.js/lib/ipaddr.js +0 -673
- package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +0 -68
- package/node_modules/ipaddr.js/package.json +0 -35
- package/node_modules/is-promise/LICENSE +0 -19
- package/node_modules/is-promise/index.d.ts +0 -2
- package/node_modules/is-promise/index.js +0 -6
- package/node_modules/is-promise/index.mjs +0 -3
- package/node_modules/is-promise/package.json +0 -30
- package/node_modules/is-promise/readme.md +0 -33
- package/node_modules/isexe/.npmignore +0 -2
- package/node_modules/isexe/LICENSE +0 -15
- package/node_modules/isexe/README.md +0 -51
- package/node_modules/isexe/index.js +0 -57
- package/node_modules/isexe/mode.js +0 -41
- package/node_modules/isexe/package.json +0 -31
- package/node_modules/isexe/test/basic.js +0 -221
- package/node_modules/isexe/windows.js +0 -42
- package/node_modules/jose/LICENSE.md +0 -21
- package/node_modules/jose/README.md +0 -153
- package/node_modules/jose/dist/types/index.d.ts +0 -55
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +0 -31
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +0 -65
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +0 -31
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +0 -83
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +0 -38
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +0 -74
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +0 -17
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +0 -32
- package/node_modules/jose/dist/types/jwks/local.d.ts +0 -29
- package/node_modules/jose/dist/types/jwks/remote.d.ts +0 -237
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +0 -36
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +0 -33
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +0 -42
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +0 -33
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +0 -53
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +0 -41
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +0 -35
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +0 -91
- package/node_modules/jose/dist/types/jwt/sign.d.ts +0 -43
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +0 -43
- package/node_modules/jose/dist/types/jwt/verify.d.ts +0 -37
- package/node_modules/jose/dist/types/key/export.d.ts +0 -33
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +0 -47
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +0 -35
- package/node_modules/jose/dist/types/key/import.d.ts +0 -83
- package/node_modules/jose/dist/types/types.d.ts +0 -852
- package/node_modules/jose/dist/types/util/base64url.d.ts +0 -9
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +0 -18
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +0 -17
- package/node_modules/jose/dist/types/util/errors.d.ts +0 -213
- package/node_modules/jose/dist/webapi/index.js +0 -32
- package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +0 -27
- package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +0 -27
- package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +0 -155
- package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +0 -165
- package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +0 -31
- package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +0 -182
- package/node_modules/jose/dist/webapi/jwk/embedded.js +0 -17
- package/node_modules/jose/dist/webapi/jwk/thumbprint.js +0 -68
- package/node_modules/jose/dist/webapi/jwks/local.js +0 -119
- package/node_modules/jose/dist/webapi/jwks/remote.js +0 -179
- package/node_modules/jose/dist/webapi/jws/compact/sign.js +0 -18
- package/node_modules/jose/dist/webapi/jws/compact/verify.js +0 -21
- package/node_modules/jose/dist/webapi/jws/flattened/sign.js +0 -89
- package/node_modules/jose/dist/webapi/jws/flattened/verify.js +0 -110
- package/node_modules/jose/dist/webapi/jws/general/sign.js +0 -70
- package/node_modules/jose/dist/webapi/jws/general/verify.js +0 -24
- package/node_modules/jose/dist/webapi/jwt/decrypt.js +0 -23
- package/node_modules/jose/dist/webapi/jwt/encrypt.js +0 -101
- package/node_modules/jose/dist/webapi/jwt/sign.js +0 -52
- package/node_modules/jose/dist/webapi/jwt/unsecured.js +0 -63
- package/node_modules/jose/dist/webapi/jwt/verify.js +0 -15
- package/node_modules/jose/dist/webapi/key/export.js +0 -11
- package/node_modules/jose/dist/webapi/key/generate_key_pair.js +0 -97
- package/node_modules/jose/dist/webapi/key/generate_secret.js +0 -40
- package/node_modules/jose/dist/webapi/key/import.js +0 -57
- package/node_modules/jose/dist/webapi/lib/aesgcmkw.js +0 -15
- package/node_modules/jose/dist/webapi/lib/aeskw.js +0 -25
- package/node_modules/jose/dist/webapi/lib/asn1.js +0 -243
- package/node_modules/jose/dist/webapi/lib/base64.js +0 -22
- package/node_modules/jose/dist/webapi/lib/buffer_utils.js +0 -43
- package/node_modules/jose/dist/webapi/lib/check_key_type.js +0 -122
- package/node_modules/jose/dist/webapi/lib/content_encryption.js +0 -217
- package/node_modules/jose/dist/webapi/lib/crypto_key.js +0 -136
- package/node_modules/jose/dist/webapi/lib/deflate.js +0 -44
- package/node_modules/jose/dist/webapi/lib/ecdhes.js +0 -52
- package/node_modules/jose/dist/webapi/lib/helpers.js +0 -19
- package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +0 -27
- package/node_modules/jose/dist/webapi/lib/is_key_like.js +0 -17
- package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +0 -107
- package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +0 -238
- package/node_modules/jose/dist/webapi/lib/key_management.js +0 -186
- package/node_modules/jose/dist/webapi/lib/key_to_jwk.js +0 -31
- package/node_modules/jose/dist/webapi/lib/normalize_key.js +0 -166
- package/node_modules/jose/dist/webapi/lib/pbes2kw.js +0 -39
- package/node_modules/jose/dist/webapi/lib/rsaes.js +0 -24
- package/node_modules/jose/dist/webapi/lib/signing.js +0 -68
- package/node_modules/jose/dist/webapi/lib/type_checks.js +0 -40
- package/node_modules/jose/dist/webapi/lib/validate_algorithms.js +0 -10
- package/node_modules/jose/dist/webapi/lib/validate_crit.js +0 -33
- package/node_modules/jose/dist/webapi/util/base64url.js +0 -30
- package/node_modules/jose/dist/webapi/util/decode_jwt.js +0 -32
- package/node_modules/jose/dist/webapi/util/decode_protected_header.js +0 -34
- package/node_modules/jose/dist/webapi/util/errors.js +0 -99
- package/node_modules/jose/package.json +0 -200
- package/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
- package/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
- package/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
- package/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
- package/node_modules/json-schema-traverse/LICENSE +0 -21
- package/node_modules/json-schema-traverse/README.md +0 -95
- package/node_modules/json-schema-traverse/index.d.ts +0 -40
- package/node_modules/json-schema-traverse/index.js +0 -93
- package/node_modules/json-schema-traverse/package.json +0 -43
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
- package/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
- package/node_modules/json-schema-typed/LICENSE.md +0 -57
- package/node_modules/json-schema-typed/README.md +0 -108
- package/node_modules/json-schema-typed/draft_07.d.ts +0 -882
- package/node_modules/json-schema-typed/draft_07.js +0 -328
- package/node_modules/json-schema-typed/draft_2019_09.d.ts +0 -1247
- package/node_modules/json-schema-typed/draft_2019_09.js +0 -349
- package/node_modules/json-schema-typed/draft_2020_12.d.ts +0 -1239
- package/node_modules/json-schema-typed/draft_2020_12.js +0 -352
- package/node_modules/json-schema-typed/package.json +0 -44
- package/node_modules/math-intrinsics/.eslintrc +0 -16
- package/node_modules/math-intrinsics/.github/FUNDING.yml +0 -12
- package/node_modules/math-intrinsics/CHANGELOG.md +0 -24
- package/node_modules/math-intrinsics/LICENSE +0 -21
- package/node_modules/math-intrinsics/README.md +0 -50
- package/node_modules/math-intrinsics/abs.d.ts +0 -1
- package/node_modules/math-intrinsics/abs.js +0 -4
- package/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxArrayLength.js +0 -4
- package/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxSafeInteger.js +0 -5
- package/node_modules/math-intrinsics/constants/maxValue.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxValue.js +0 -5
- package/node_modules/math-intrinsics/floor.d.ts +0 -1
- package/node_modules/math-intrinsics/floor.js +0 -4
- package/node_modules/math-intrinsics/isFinite.d.ts +0 -3
- package/node_modules/math-intrinsics/isFinite.js +0 -12
- package/node_modules/math-intrinsics/isInteger.d.ts +0 -3
- package/node_modules/math-intrinsics/isInteger.js +0 -16
- package/node_modules/math-intrinsics/isNaN.d.ts +0 -1
- package/node_modules/math-intrinsics/isNaN.js +0 -6
- package/node_modules/math-intrinsics/isNegativeZero.d.ts +0 -3
- package/node_modules/math-intrinsics/isNegativeZero.js +0 -6
- package/node_modules/math-intrinsics/max.d.ts +0 -1
- package/node_modules/math-intrinsics/max.js +0 -4
- package/node_modules/math-intrinsics/min.d.ts +0 -1
- package/node_modules/math-intrinsics/min.js +0 -4
- package/node_modules/math-intrinsics/mod.d.ts +0 -3
- package/node_modules/math-intrinsics/mod.js +0 -9
- package/node_modules/math-intrinsics/package.json +0 -86
- package/node_modules/math-intrinsics/pow.d.ts +0 -1
- package/node_modules/math-intrinsics/pow.js +0 -4
- package/node_modules/math-intrinsics/round.d.ts +0 -1
- package/node_modules/math-intrinsics/round.js +0 -4
- package/node_modules/math-intrinsics/sign.d.ts +0 -3
- package/node_modules/math-intrinsics/sign.js +0 -11
- package/node_modules/math-intrinsics/test/index.js +0 -192
- package/node_modules/math-intrinsics/tsconfig.json +0 -3
- package/node_modules/media-typer/HISTORY.md +0 -50
- package/node_modules/media-typer/LICENSE +0 -22
- package/node_modules/media-typer/README.md +0 -93
- package/node_modules/media-typer/index.js +0 -143
- package/node_modules/media-typer/package.json +0 -33
- package/node_modules/merge-descriptors/index.d.ts +0 -11
- package/node_modules/merge-descriptors/index.js +0 -26
- package/node_modules/merge-descriptors/license +0 -11
- package/node_modules/merge-descriptors/package.json +0 -50
- package/node_modules/merge-descriptors/readme.md +0 -55
- package/node_modules/mime-db/HISTORY.md +0 -541
- package/node_modules/mime-db/LICENSE +0 -23
- package/node_modules/mime-db/README.md +0 -109
- package/node_modules/mime-db/db.json +0 -9342
- package/node_modules/mime-db/index.js +0 -12
- package/node_modules/mime-db/package.json +0 -56
- package/node_modules/mime-types/HISTORY.md +0 -428
- package/node_modules/mime-types/LICENSE +0 -23
- package/node_modules/mime-types/README.md +0 -126
- package/node_modules/mime-types/index.js +0 -211
- package/node_modules/mime-types/mimeScore.js +0 -57
- package/node_modules/mime-types/package.json +0 -49
- package/node_modules/ms/index.js +0 -162
- package/node_modules/ms/license.md +0 -21
- package/node_modules/ms/package.json +0 -38
- package/node_modules/ms/readme.md +0 -59
- package/node_modules/negotiator/HISTORY.md +0 -114
- package/node_modules/negotiator/LICENSE +0 -24
- package/node_modules/negotiator/README.md +0 -212
- package/node_modules/negotiator/index.js +0 -83
- package/node_modules/negotiator/lib/charset.js +0 -169
- package/node_modules/negotiator/lib/encoding.js +0 -205
- package/node_modules/negotiator/lib/language.js +0 -179
- package/node_modules/negotiator/lib/mediaType.js +0 -294
- package/node_modules/negotiator/package.json +0 -43
- package/node_modules/object-assign/index.js +0 -90
- package/node_modules/object-assign/license +0 -21
- package/node_modules/object-assign/package.json +0 -42
- package/node_modules/object-assign/readme.md +0 -61
- package/node_modules/object-inspect/.eslintrc +0 -53
- package/node_modules/object-inspect/.github/FUNDING.yml +0 -12
- package/node_modules/object-inspect/.nycrc +0 -13
- package/node_modules/object-inspect/CHANGELOG.md +0 -424
- package/node_modules/object-inspect/LICENSE +0 -21
- package/node_modules/object-inspect/example/all.js +0 -23
- package/node_modules/object-inspect/example/circular.js +0 -6
- package/node_modules/object-inspect/example/fn.js +0 -5
- package/node_modules/object-inspect/example/inspect.js +0 -10
- package/node_modules/object-inspect/index.js +0 -544
- package/node_modules/object-inspect/package-support.json +0 -20
- package/node_modules/object-inspect/package.json +0 -105
- package/node_modules/object-inspect/readme.markdown +0 -84
- package/node_modules/object-inspect/test/bigint.js +0 -58
- package/node_modules/object-inspect/test/browser/dom.js +0 -15
- package/node_modules/object-inspect/test/circular.js +0 -16
- package/node_modules/object-inspect/test/deep.js +0 -12
- package/node_modules/object-inspect/test/element.js +0 -53
- package/node_modules/object-inspect/test/err.js +0 -48
- package/node_modules/object-inspect/test/fakes.js +0 -29
- package/node_modules/object-inspect/test/fn.js +0 -76
- package/node_modules/object-inspect/test/global.js +0 -17
- package/node_modules/object-inspect/test/has.js +0 -15
- package/node_modules/object-inspect/test/holes.js +0 -15
- package/node_modules/object-inspect/test/indent-option.js +0 -271
- package/node_modules/object-inspect/test/inspect.js +0 -139
- package/node_modules/object-inspect/test/lowbyte.js +0 -12
- package/node_modules/object-inspect/test/number.js +0 -58
- package/node_modules/object-inspect/test/quoteStyle.js +0 -26
- package/node_modules/object-inspect/test/toStringTag.js +0 -40
- package/node_modules/object-inspect/test/undef.js +0 -12
- package/node_modules/object-inspect/test/values.js +0 -261
- package/node_modules/object-inspect/test-core-js.js +0 -26
- package/node_modules/object-inspect/util.inspect.js +0 -1
- package/node_modules/on-finished/HISTORY.md +0 -98
- package/node_modules/on-finished/LICENSE +0 -23
- package/node_modules/on-finished/README.md +0 -162
- package/node_modules/on-finished/index.js +0 -234
- package/node_modules/on-finished/package.json +0 -39
- package/node_modules/once/LICENSE +0 -15
- package/node_modules/once/README.md +0 -79
- package/node_modules/once/once.js +0 -42
- package/node_modules/once/package.json +0 -33
- package/node_modules/parseurl/HISTORY.md +0 -58
- package/node_modules/parseurl/LICENSE +0 -24
- package/node_modules/parseurl/README.md +0 -133
- package/node_modules/parseurl/index.js +0 -158
- package/node_modules/parseurl/package.json +0 -40
- package/node_modules/path-key/index.d.ts +0 -40
- package/node_modules/path-key/index.js +0 -16
- package/node_modules/path-key/license +0 -9
- package/node_modules/path-key/package.json +0 -39
- package/node_modules/path-key/readme.md +0 -61
- package/node_modules/path-to-regexp/LICENSE +0 -21
- package/node_modules/path-to-regexp/Readme.md +0 -224
- package/node_modules/path-to-regexp/dist/index.d.ts +0 -144
- package/node_modules/path-to-regexp/dist/index.js +0 -409
- package/node_modules/path-to-regexp/dist/index.js.map +0 -1
- package/node_modules/path-to-regexp/package.json +0 -64
- package/node_modules/pkce-challenge/CHANGELOG.md +0 -114
- package/node_modules/pkce-challenge/LICENSE +0 -21
- package/node_modules/pkce-challenge/README.md +0 -55
- package/node_modules/pkce-challenge/dist/index.browser.d.ts +0 -19
- package/node_modules/pkce-challenge/dist/index.browser.js +0 -75
- package/node_modules/pkce-challenge/dist/index.node.cjs +0 -83
- package/node_modules/pkce-challenge/dist/index.node.d.cts +0 -19
- package/node_modules/pkce-challenge/dist/index.node.d.ts +0 -19
- package/node_modules/pkce-challenge/dist/index.node.js +0 -78
- package/node_modules/pkce-challenge/package.json +0 -59
- package/node_modules/proxy-addr/HISTORY.md +0 -161
- package/node_modules/proxy-addr/LICENSE +0 -22
- package/node_modules/proxy-addr/README.md +0 -139
- package/node_modules/proxy-addr/index.js +0 -327
- package/node_modules/proxy-addr/package.json +0 -47
- package/node_modules/qs/.editorconfig +0 -46
- package/node_modules/qs/.github/FUNDING.yml +0 -12
- package/node_modules/qs/.github/SECURITY.md +0 -11
- package/node_modules/qs/.github/THREAT_MODEL.md +0 -78
- package/node_modules/qs/.nycrc +0 -13
- package/node_modules/qs/CHANGELOG.md +0 -806
- package/node_modules/qs/LICENSE.md +0 -29
- package/node_modules/qs/README.md +0 -758
- package/node_modules/qs/dist/qs.js +0 -141
- package/node_modules/qs/eslint.config.mjs +0 -56
- package/node_modules/qs/lib/formats.js +0 -23
- package/node_modules/qs/lib/index.js +0 -11
- package/node_modules/qs/lib/parse.js +0 -373
- package/node_modules/qs/lib/stringify.js +0 -356
- package/node_modules/qs/lib/utils.js +0 -342
- package/node_modules/qs/package.json +0 -94
- package/node_modules/qs/test/empty-keys-cases.js +0 -267
- package/node_modules/qs/test/parse.js +0 -1568
- package/node_modules/qs/test/stringify.js +0 -1310
- package/node_modules/qs/test/utils.js +0 -404
- package/node_modules/range-parser/HISTORY.md +0 -56
- package/node_modules/range-parser/LICENSE +0 -23
- package/node_modules/range-parser/README.md +0 -84
- package/node_modules/range-parser/index.js +0 -162
- package/node_modules/range-parser/package.json +0 -44
- package/node_modules/raw-body/LICENSE +0 -22
- package/node_modules/raw-body/README.md +0 -223
- package/node_modules/raw-body/index.d.ts +0 -85
- package/node_modules/raw-body/index.js +0 -336
- package/node_modules/raw-body/package.json +0 -46
- package/node_modules/require-from-string/index.js +0 -34
- package/node_modules/require-from-string/license +0 -21
- package/node_modules/require-from-string/package.json +0 -28
- package/node_modules/require-from-string/readme.md +0 -56
- package/node_modules/router/HISTORY.md +0 -228
- package/node_modules/router/LICENSE +0 -23
- package/node_modules/router/README.md +0 -416
- package/node_modules/router/index.js +0 -748
- package/node_modules/router/lib/layer.js +0 -247
- package/node_modules/router/lib/route.js +0 -242
- package/node_modules/router/package.json +0 -44
- package/node_modules/safer-buffer/LICENSE +0 -21
- package/node_modules/safer-buffer/Porting-Buffer.md +0 -268
- package/node_modules/safer-buffer/Readme.md +0 -156
- package/node_modules/safer-buffer/dangerous.js +0 -58
- package/node_modules/safer-buffer/package.json +0 -34
- package/node_modules/safer-buffer/safer.js +0 -77
- package/node_modules/safer-buffer/tests.js +0 -406
- package/node_modules/send/LICENSE +0 -23
- package/node_modules/send/README.md +0 -317
- package/node_modules/send/index.js +0 -997
- package/node_modules/send/package.json +0 -63
- package/node_modules/serve-static/LICENSE +0 -25
- package/node_modules/serve-static/README.md +0 -253
- package/node_modules/serve-static/index.js +0 -208
- package/node_modules/serve-static/package.json +0 -44
- package/node_modules/setprototypeof/LICENSE +0 -13
- package/node_modules/setprototypeof/README.md +0 -31
- package/node_modules/setprototypeof/index.d.ts +0 -2
- package/node_modules/setprototypeof/index.js +0 -17
- package/node_modules/setprototypeof/package.json +0 -38
- package/node_modules/setprototypeof/test/index.js +0 -24
- package/node_modules/shebang-command/index.js +0 -19
- package/node_modules/shebang-command/license +0 -9
- package/node_modules/shebang-command/package.json +0 -34
- package/node_modules/shebang-command/readme.md +0 -34
- package/node_modules/shebang-regex/index.d.ts +0 -22
- package/node_modules/shebang-regex/index.js +0 -2
- package/node_modules/shebang-regex/license +0 -9
- package/node_modules/shebang-regex/package.json +0 -35
- package/node_modules/shebang-regex/readme.md +0 -33
- package/node_modules/side-channel/.editorconfig +0 -9
- package/node_modules/side-channel/.eslintrc +0 -12
- package/node_modules/side-channel/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel/.nycrc +0 -13
- package/node_modules/side-channel/CHANGELOG.md +0 -110
- package/node_modules/side-channel/LICENSE +0 -21
- package/node_modules/side-channel/README.md +0 -61
- package/node_modules/side-channel/index.d.ts +0 -14
- package/node_modules/side-channel/index.js +0 -43
- package/node_modules/side-channel/package.json +0 -85
- package/node_modules/side-channel/test/index.js +0 -104
- package/node_modules/side-channel/tsconfig.json +0 -9
- package/node_modules/side-channel-list/.editorconfig +0 -9
- package/node_modules/side-channel-list/.eslintrc +0 -11
- package/node_modules/side-channel-list/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel-list/.nycrc +0 -13
- package/node_modules/side-channel-list/CHANGELOG.md +0 -15
- package/node_modules/side-channel-list/LICENSE +0 -21
- package/node_modules/side-channel-list/README.md +0 -62
- package/node_modules/side-channel-list/index.d.ts +0 -13
- package/node_modules/side-channel-list/index.js +0 -113
- package/node_modules/side-channel-list/list.d.ts +0 -14
- package/node_modules/side-channel-list/package.json +0 -77
- package/node_modules/side-channel-list/test/index.js +0 -104
- package/node_modules/side-channel-list/tsconfig.json +0 -9
- package/node_modules/side-channel-map/.editorconfig +0 -9
- package/node_modules/side-channel-map/.eslintrc +0 -11
- package/node_modules/side-channel-map/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel-map/.nycrc +0 -13
- package/node_modules/side-channel-map/CHANGELOG.md +0 -22
- package/node_modules/side-channel-map/LICENSE +0 -21
- package/node_modules/side-channel-map/README.md +0 -62
- package/node_modules/side-channel-map/index.d.ts +0 -15
- package/node_modules/side-channel-map/index.js +0 -68
- package/node_modules/side-channel-map/package.json +0 -80
- package/node_modules/side-channel-map/test/index.js +0 -114
- package/node_modules/side-channel-map/tsconfig.json +0 -9
- package/node_modules/side-channel-weakmap/.editorconfig +0 -9
- package/node_modules/side-channel-weakmap/.eslintrc +0 -12
- package/node_modules/side-channel-weakmap/.github/FUNDING.yml +0 -12
- package/node_modules/side-channel-weakmap/.nycrc +0 -13
- package/node_modules/side-channel-weakmap/CHANGELOG.md +0 -28
- package/node_modules/side-channel-weakmap/LICENSE +0 -21
- package/node_modules/side-channel-weakmap/README.md +0 -62
- package/node_modules/side-channel-weakmap/index.d.ts +0 -15
- package/node_modules/side-channel-weakmap/index.js +0 -84
- package/node_modules/side-channel-weakmap/package.json +0 -87
- package/node_modules/side-channel-weakmap/test/index.js +0 -114
- package/node_modules/side-channel-weakmap/tsconfig.json +0 -9
- package/node_modules/statuses/HISTORY.md +0 -87
- package/node_modules/statuses/LICENSE +0 -23
- package/node_modules/statuses/README.md +0 -139
- package/node_modules/statuses/codes.json +0 -65
- package/node_modules/statuses/index.js +0 -146
- package/node_modules/statuses/package.json +0 -49
- package/node_modules/toidentifier/HISTORY.md +0 -9
- package/node_modules/toidentifier/LICENSE +0 -21
- package/node_modules/toidentifier/README.md +0 -61
- package/node_modules/toidentifier/index.js +0 -32
- package/node_modules/toidentifier/package.json +0 -38
- package/node_modules/type-is/HISTORY.md +0 -292
- package/node_modules/type-is/LICENSE +0 -23
- package/node_modules/type-is/README.md +0 -198
- package/node_modules/type-is/index.js +0 -250
- package/node_modules/type-is/package.json +0 -47
- package/node_modules/unpipe/HISTORY.md +0 -4
- package/node_modules/unpipe/LICENSE +0 -22
- package/node_modules/unpipe/README.md +0 -43
- package/node_modules/unpipe/index.js +0 -69
- package/node_modules/unpipe/package.json +0 -27
- package/node_modules/vary/HISTORY.md +0 -39
- package/node_modules/vary/LICENSE +0 -22
- package/node_modules/vary/README.md +0 -101
- package/node_modules/vary/index.js +0 -149
- package/node_modules/vary/package.json +0 -43
- package/node_modules/which/LICENSE +0 -15
- package/node_modules/which/README.md +0 -54
- package/node_modules/which/bin/node-which +0 -52
- package/node_modules/which/package.json +0 -43
- package/node_modules/which/which.js +0 -125
- package/node_modules/wrappy/LICENSE +0 -15
- package/node_modules/wrappy/README.md +0 -36
- package/node_modules/wrappy/package.json +0 -29
- package/node_modules/wrappy/wrappy.js +0 -33
- package/node_modules/zod-to-json-schema/.github/CR_logotype-full-color.png +0 -0
- package/node_modules/zod-to-json-schema/.github/FUNDING.yml +0 -1
- package/node_modules/zod-to-json-schema/.prettierrc.json +0 -1
- package/node_modules/zod-to-json-schema/LICENSE +0 -15
- package/node_modules/zod-to-json-schema/README.md +0 -390
- package/node_modules/zod-to-json-schema/changelog.md +0 -82
- package/node_modules/zod-to-json-schema/contributing.md +0 -9
- package/node_modules/zod-to-json-schema/createIndex.ts +0 -32
- package/node_modules/zod-to-json-schema/dist/cjs/Options.js +0 -51
- package/node_modules/zod-to-json-schema/dist/cjs/Refs.js +0 -26
- package/node_modules/zod-to-json-schema/dist/cjs/errorMessages.js +0 -19
- package/node_modules/zod-to-json-schema/dist/cjs/getRelativePath.js +0 -12
- package/node_modules/zod-to-json-schema/dist/cjs/index.js +0 -56
- package/node_modules/zod-to-json-schema/dist/cjs/package.json +0 -1
- package/node_modules/zod-to-json-schema/dist/cjs/parseDef.js +0 -66
- package/node_modules/zod-to-json-schema/dist/cjs/parseTypes.js +0 -2
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/any.js +0 -21
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/array.js +0 -30
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/bigint.js +0 -53
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/boolean.js +0 -9
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/branded.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/catch.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/date.js +0 -50
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/default.js +0 -11
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/effects.js +0 -11
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/enum.js +0 -10
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/intersection.js +0 -56
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/literal.js +0 -25
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/map.js +0 -30
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/nativeEnum.js +0 -20
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/never.js +0 -15
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/null.js +0 -14
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/nullable.js +0 -37
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/number.js +0 -56
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/object.js +0 -76
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/optional.js +0 -25
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/pipeline.js +0 -24
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/promise.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/readonly.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/record.js +0 -65
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/set.js +0 -24
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/string.js +0 -356
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/tuple.js +0 -36
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/undefined.js +0 -10
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/union.js +0 -84
- package/node_modules/zod-to-json-schema/dist/cjs/parsers/unknown.js +0 -8
- package/node_modules/zod-to-json-schema/dist/cjs/selectParser.js +0 -109
- package/node_modules/zod-to-json-schema/dist/cjs/zodToJsonSchema.js +0 -90
- package/node_modules/zod-to-json-schema/dist/esm/Options.js +0 -46
- package/node_modules/zod-to-json-schema/dist/esm/Refs.js +0 -22
- package/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +0 -14
- package/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +0 -8
- package/node_modules/zod-to-json-schema/dist/esm/index.js +0 -40
- package/node_modules/zod-to-json-schema/dist/esm/package.json +0 -1
- package/node_modules/zod-to-json-schema/dist/esm/parseDef.js +0 -62
- package/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +0 -1
- package/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +0 -17
- package/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +0 -26
- package/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +0 -49
- package/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +0 -5
- package/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +0 -46
- package/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +0 -7
- package/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +0 -7
- package/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +0 -6
- package/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +0 -52
- package/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +0 -21
- package/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +0 -26
- package/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +0 -16
- package/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +0 -11
- package/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +0 -10
- package/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +0 -33
- package/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +0 -52
- package/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +0 -72
- package/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +0 -21
- package/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +0 -20
- package/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +0 -61
- package/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +0 -20
- package/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +0 -352
- package/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +0 -32
- package/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +0 -6
- package/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +0 -80
- package/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +0 -4
- package/node_modules/zod-to-json-schema/dist/esm/selectParser.js +0 -105
- package/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +0 -87
- package/node_modules/zod-to-json-schema/dist/types/Options.d.ts +0 -37
- package/node_modules/zod-to-json-schema/dist/types/Refs.d.ts +0 -17
- package/node_modules/zod-to-json-schema/dist/types/errorMessages.d.ts +0 -15
- package/node_modules/zod-to-json-schema/dist/types/getRelativePath.d.ts +0 -1
- package/node_modules/zod-to-json-schema/dist/types/index.d.ts +0 -40
- package/node_modules/zod-to-json-schema/dist/types/parseDef.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parseTypes.d.ts +0 -34
- package/node_modules/zod-to-json-schema/dist/types/parsers/any.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/parsers/array.d.ts +0 -12
- package/node_modules/zod-to-json-schema/dist/types/parsers/bigint.d.ts +0 -14
- package/node_modules/zod-to-json-schema/dist/types/parsers/boolean.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/branded.d.ts +0 -3
- package/node_modules/zod-to-json-schema/dist/types/parsers/catch.d.ts +0 -3
- package/node_modules/zod-to-json-schema/dist/types/parsers/date.d.ts +0 -15
- package/node_modules/zod-to-json-schema/dist/types/parsers/default.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/effects.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/enum.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/intersection.d.ts +0 -8
- package/node_modules/zod-to-json-schema/dist/types/parsers/literal.d.ts +0 -9
- package/node_modules/zod-to-json-schema/dist/types/parsers/map.d.ts +0 -15
- package/node_modules/zod-to-json-schema/dist/types/parsers/nativeEnum.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/never.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/null.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/parsers/nullable.d.ts +0 -10
- package/node_modules/zod-to-json-schema/dist/types/parsers/number.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/object.d.ts +0 -10
- package/node_modules/zod-to-json-schema/dist/types/parsers/optional.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/pipeline.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/parsers/promise.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/parsers/readonly.d.ts +0 -3
- package/node_modules/zod-to-json-schema/dist/types/parsers/record.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/set.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/string.d.ts +0 -73
- package/node_modules/zod-to-json-schema/dist/types/parsers/tuple.d.ts +0 -13
- package/node_modules/zod-to-json-schema/dist/types/parsers/undefined.d.ts +0 -6
- package/node_modules/zod-to-json-schema/dist/types/parsers/union.d.ts +0 -23
- package/node_modules/zod-to-json-schema/dist/types/parsers/unknown.d.ts +0 -4
- package/node_modules/zod-to-json-schema/dist/types/selectParser.d.ts +0 -5
- package/node_modules/zod-to-json-schema/dist/types/zodToJsonSchema.d.ts +0 -10
- package/node_modules/zod-to-json-schema/package.json +0 -78
- package/node_modules/zod-to-json-schema/postcjs.ts +0 -3
- package/node_modules/zod-to-json-schema/postesm.ts +0 -3
- package/web/.next/standalone/node_modules/@babel/code-frame/lib/index.js +0 -217
- package/web/.next/standalone/node_modules/@babel/code-frame/package.json +0 -32
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/identifier.js +0 -70
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/index.js +0 -57
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/lib/keyword.js +0 -35
- package/web/.next/standalone/node_modules/@babel/helper-validator-identifier/package.json +0 -31
- package/web/.next/standalone/node_modules/callsites/index.js +0 -13
- package/web/.next/standalone/node_modules/callsites/package.json +0 -39
- package/web/.next/standalone/node_modules/cosmiconfig/dist/Explorer.js +0 -170
- package/web/.next/standalone/node_modules/cosmiconfig/dist/ExplorerBase.js +0 -126
- package/web/.next/standalone/node_modules/cosmiconfig/dist/ExplorerSync.js +0 -184
- package/web/.next/standalone/node_modules/cosmiconfig/dist/cacheWrapper.js +0 -32
- package/web/.next/standalone/node_modules/cosmiconfig/dist/canUseDynamicImport.js +0 -23
- package/web/.next/standalone/node_modules/cosmiconfig/dist/defaults.js +0 -105
- package/web/.next/standalone/node_modules/cosmiconfig/dist/getDirectory.js +0 -38
- package/web/.next/standalone/node_modules/cosmiconfig/dist/getPropertyByPath.js +0 -28
- package/web/.next/standalone/node_modules/cosmiconfig/dist/index.js +0 -148
- package/web/.next/standalone/node_modules/cosmiconfig/dist/loaders.js +0 -150
- package/web/.next/standalone/node_modules/cosmiconfig/dist/merge.js +0 -40
- package/web/.next/standalone/node_modules/cosmiconfig/dist/readFile.js +0 -56
- package/web/.next/standalone/node_modules/cosmiconfig/dist/types.js +0 -3
- package/web/.next/standalone/node_modules/cosmiconfig/dist/util.js +0 -99
- package/web/.next/standalone/node_modules/cosmiconfig/package.json +0 -103
- package/web/.next/standalone/node_modules/env-paths/index.js +0 -74
- package/web/.next/standalone/node_modules/env-paths/license +0 -9
- package/web/.next/standalone/node_modules/env-paths/package.json +0 -45
- package/web/.next/standalone/node_modules/env-paths/readme.md +0 -115
- package/web/.next/standalone/node_modules/error-ex/index.js +0 -141
- package/web/.next/standalone/node_modules/error-ex/package.json +0 -46
- package/web/.next/standalone/node_modules/import-fresh/index.js +0 -34
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/index.js +0 -47
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/license +0 -9
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/package.json +0 -34
- package/web/.next/standalone/node_modules/import-fresh/node_modules/resolve-from/readme.md +0 -72
- package/web/.next/standalone/node_modules/import-fresh/package.json +0 -48
- package/web/.next/standalone/node_modules/is-arrayish/index.js +0 -10
- package/web/.next/standalone/node_modules/is-arrayish/package.json +0 -34
- package/web/.next/standalone/node_modules/js-tokens/index.js +0 -23
- package/web/.next/standalone/node_modules/js-tokens/package.json +0 -30
- package/web/.next/standalone/node_modules/js-yaml/index.js +0 -47
- package/web/.next/standalone/node_modules/js-yaml/lib/common.js +0 -59
- package/web/.next/standalone/node_modules/js-yaml/lib/dumper.js +0 -965
- package/web/.next/standalone/node_modules/js-yaml/lib/exception.js +0 -55
- package/web/.next/standalone/node_modules/js-yaml/lib/loader.js +0 -1733
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/core.js +0 -11
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/default.js +0 -22
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/failsafe.js +0 -17
- package/web/.next/standalone/node_modules/js-yaml/lib/schema/json.js +0 -19
- package/web/.next/standalone/node_modules/js-yaml/lib/schema.js +0 -121
- package/web/.next/standalone/node_modules/js-yaml/lib/snippet.js +0 -101
- package/web/.next/standalone/node_modules/js-yaml/lib/type/binary.js +0 -125
- package/web/.next/standalone/node_modules/js-yaml/lib/type/bool.js +0 -35
- package/web/.next/standalone/node_modules/js-yaml/lib/type/float.js +0 -97
- package/web/.next/standalone/node_modules/js-yaml/lib/type/int.js +0 -156
- package/web/.next/standalone/node_modules/js-yaml/lib/type/map.js +0 -8
- package/web/.next/standalone/node_modules/js-yaml/lib/type/merge.js +0 -12
- package/web/.next/standalone/node_modules/js-yaml/lib/type/null.js +0 -35
- package/web/.next/standalone/node_modules/js-yaml/lib/type/omap.js +0 -44
- package/web/.next/standalone/node_modules/js-yaml/lib/type/pairs.js +0 -53
- package/web/.next/standalone/node_modules/js-yaml/lib/type/seq.js +0 -8
- package/web/.next/standalone/node_modules/js-yaml/lib/type/set.js +0 -29
- package/web/.next/standalone/node_modules/js-yaml/lib/type/str.js +0 -8
- package/web/.next/standalone/node_modules/js-yaml/lib/type/timestamp.js +0 -88
- package/web/.next/standalone/node_modules/js-yaml/lib/type.js +0 -66
- package/web/.next/standalone/node_modules/js-yaml/package.json +0 -66
- package/web/.next/standalone/node_modules/json-parse-even-better-errors/index.js +0 -121
- package/web/.next/standalone/node_modules/json-parse-even-better-errors/package.json +0 -33
- package/web/.next/standalone/node_modules/lines-and-columns/build/index.js +0 -62
- package/web/.next/standalone/node_modules/lines-and-columns/package.json +0 -49
- package/web/.next/standalone/node_modules/parent-module/index.js +0 -37
- package/web/.next/standalone/node_modules/parent-module/package.json +0 -46
- package/web/.next/standalone/node_modules/parse-json/index.js +0 -54
- package/web/.next/standalone/node_modules/parse-json/package.json +0 -45
- package/web/.next/standalone/node_modules/picocolors/package.json +0 -25
- package/web/.next/standalone/node_modules/picocolors/picocolors.js +0 -75
- package/web/.next/standalone/node_modules/puppeteer/lib/esm/puppeteer/getConfiguration.js +0 -122
- package/web/.next/standalone/node_modules/puppeteer/lib/esm/puppeteer/puppeteer.js +0 -40
- package/web/.next/standalone/node_modules/puppeteer/package.json +0 -145
- package/web/.next/standalone/packages/web/.env.example +0 -16
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/package.json +0 -1
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/puppeteer/getConfiguration.js +0 -122
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/lib/esm/puppeteer/puppeteer.js +0 -40
- package/web/.next/standalone/packages/web/.next/node_modules/puppeteer-582bc9288a971b4a/package.json +0 -145
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__02aa69a2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__03277e82._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__03d02e36._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06b6b4e9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__06d0fa23._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__09d81126._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0a4bdecd._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0cdc32e7._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__0f87f848._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__105e4f26._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__119c6b92._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__120e7cdf._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__137fab33._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__15c7d025._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1b995ded._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1be57288._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1d2f280d._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__1e450a04._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__228603ec._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__256d4deb._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2a02fc49._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__2d6ad93c._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30055cf3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__308f1548._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__30e803d7._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3cfb9abc._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__3d4382ac._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__412dec17._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__41e0efdc._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__42e88695._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__446f586e._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__45147dc5._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__46573554._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__46ba5636._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__47b9cd43._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4a3e9ddd._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4c56df8f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__4d8a3fa3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5064824d._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__57113ab2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__5b1a6733._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__64061a84._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__668ff2cd._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__6a1b89e2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__73601621._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__747ac51a._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7ddba7a1._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__7e929085._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__80fb443b._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__85538066._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__865615a6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__87674bea._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__893cfe3c._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__89cafbb6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__8baf1991._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__925bed49._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__92efd41b._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__97b2fe24._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9b2f424f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__9ca51739._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a2cdc6d9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__a80a6abe._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ac588927._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b03e9dba._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b0bc3324._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__b39c66d6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c207ffb8._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c24a825f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c27d443a._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c624410f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c6ecf2e6._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__c9b787f4._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__cb29be7d._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d0fc233f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d35c3ac2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d3d0e4a1._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d62bf196._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__d8cd86c9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__de098ee1._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e2d46590._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e6181b22._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e633102f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__e7aa992a._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__eb0c88b2._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ec231481._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ed83cdf3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__ef43f682._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__efbfac9f._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f12a3bd3._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f134e517._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f4786ce9._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/[root-of-the-server]__f7e5d8de._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__009ce29c._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__254bd2a7._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/[root-of-the-server]__a3c8291e._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/_14ef3484._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_8ffa3492._.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/ssr/node_modules_@clerk_nextjs_dist_esm_app-router_f6977bba._.js +0 -3
- package/web/.next/standalone/packages/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/370a77846e2f7273.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/74d0c9993cf0b864.js +0 -6
- package/web/.next/standalone/packages/web/.next/static/chunks/a08d465aed8566c5.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/bf82908a598c6de5.css +0 -3
- package/web/.next/static/chunks/3349bdab17ed1183.js +0 -1
- package/web/.next/static/chunks/370a77846e2f7273.js +0 -1
- package/web/.next/static/chunks/4c3afea55dd8bc93.js +0 -1
- package/web/.next/static/chunks/57858ac28cbf124d.js +0 -1
- package/web/.next/static/chunks/74d0c9993cf0b864.js +0 -6
- package/web/.next/static/chunks/a08d465aed8566c5.js +0 -1
- package/web/.next/static/chunks/bf82908a598c6de5.css +0 -3
- /package/web/.next/standalone/{node_modules/puppeteer → packages/web/.next/node_modules/@puppeteer/browsers-0bae8bf86ee8b460}/lib/esm/package.json +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
- /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_buildManifest.js +0 -0
- /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{NKtxeqIHylLCexDv08rI1 → X1r0VPbixkgEYAELz0R1i}/_ssgManifest.js +0 -0
|
@@ -1,1733 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
/*eslint-disable max-len,no-use-before-define*/
|
|
4
|
-
|
|
5
|
-
var common = require('./common');
|
|
6
|
-
var YAMLException = require('./exception');
|
|
7
|
-
var makeSnippet = require('./snippet');
|
|
8
|
-
var DEFAULT_SCHEMA = require('./schema/default');
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
var CONTEXT_FLOW_IN = 1;
|
|
15
|
-
var CONTEXT_FLOW_OUT = 2;
|
|
16
|
-
var CONTEXT_BLOCK_IN = 3;
|
|
17
|
-
var CONTEXT_BLOCK_OUT = 4;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
var CHOMPING_CLIP = 1;
|
|
21
|
-
var CHOMPING_STRIP = 2;
|
|
22
|
-
var CHOMPING_KEEP = 3;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
var PATTERN_NON_PRINTABLE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/;
|
|
26
|
-
var PATTERN_NON_ASCII_LINE_BREAKS = /[\x85\u2028\u2029]/;
|
|
27
|
-
var PATTERN_FLOW_INDICATORS = /[,\[\]\{\}]/;
|
|
28
|
-
var PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\-]+!)$/i;
|
|
29
|
-
var PATTERN_TAG_URI = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
function _class(obj) { return Object.prototype.toString.call(obj); }
|
|
33
|
-
|
|
34
|
-
function is_EOL(c) {
|
|
35
|
-
return (c === 0x0A/* LF */) || (c === 0x0D/* CR */);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
function is_WHITE_SPACE(c) {
|
|
39
|
-
return (c === 0x09/* Tab */) || (c === 0x20/* Space */);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
function is_WS_OR_EOL(c) {
|
|
43
|
-
return (c === 0x09/* Tab */) ||
|
|
44
|
-
(c === 0x20/* Space */) ||
|
|
45
|
-
(c === 0x0A/* LF */) ||
|
|
46
|
-
(c === 0x0D/* CR */);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
function is_FLOW_INDICATOR(c) {
|
|
50
|
-
return c === 0x2C/* , */ ||
|
|
51
|
-
c === 0x5B/* [ */ ||
|
|
52
|
-
c === 0x5D/* ] */ ||
|
|
53
|
-
c === 0x7B/* { */ ||
|
|
54
|
-
c === 0x7D/* } */;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
function fromHexCode(c) {
|
|
58
|
-
var lc;
|
|
59
|
-
|
|
60
|
-
if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) {
|
|
61
|
-
return c - 0x30;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
/*eslint-disable no-bitwise*/
|
|
65
|
-
lc = c | 0x20;
|
|
66
|
-
|
|
67
|
-
if ((0x61/* a */ <= lc) && (lc <= 0x66/* f */)) {
|
|
68
|
-
return lc - 0x61 + 10;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
return -1;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
function escapedHexLen(c) {
|
|
75
|
-
if (c === 0x78/* x */) { return 2; }
|
|
76
|
-
if (c === 0x75/* u */) { return 4; }
|
|
77
|
-
if (c === 0x55/* U */) { return 8; }
|
|
78
|
-
return 0;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
function fromDecimalCode(c) {
|
|
82
|
-
if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) {
|
|
83
|
-
return c - 0x30;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
return -1;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
function simpleEscapeSequence(c) {
|
|
90
|
-
/* eslint-disable indent */
|
|
91
|
-
return (c === 0x30/* 0 */) ? '\x00' :
|
|
92
|
-
(c === 0x61/* a */) ? '\x07' :
|
|
93
|
-
(c === 0x62/* b */) ? '\x08' :
|
|
94
|
-
(c === 0x74/* t */) ? '\x09' :
|
|
95
|
-
(c === 0x09/* Tab */) ? '\x09' :
|
|
96
|
-
(c === 0x6E/* n */) ? '\x0A' :
|
|
97
|
-
(c === 0x76/* v */) ? '\x0B' :
|
|
98
|
-
(c === 0x66/* f */) ? '\x0C' :
|
|
99
|
-
(c === 0x72/* r */) ? '\x0D' :
|
|
100
|
-
(c === 0x65/* e */) ? '\x1B' :
|
|
101
|
-
(c === 0x20/* Space */) ? ' ' :
|
|
102
|
-
(c === 0x22/* " */) ? '\x22' :
|
|
103
|
-
(c === 0x2F/* / */) ? '/' :
|
|
104
|
-
(c === 0x5C/* \ */) ? '\x5C' :
|
|
105
|
-
(c === 0x4E/* N */) ? '\x85' :
|
|
106
|
-
(c === 0x5F/* _ */) ? '\xA0' :
|
|
107
|
-
(c === 0x4C/* L */) ? '\u2028' :
|
|
108
|
-
(c === 0x50/* P */) ? '\u2029' : '';
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
function charFromCodepoint(c) {
|
|
112
|
-
if (c <= 0xFFFF) {
|
|
113
|
-
return String.fromCharCode(c);
|
|
114
|
-
}
|
|
115
|
-
// Encode UTF-16 surrogate pair
|
|
116
|
-
// https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF
|
|
117
|
-
return String.fromCharCode(
|
|
118
|
-
((c - 0x010000) >> 10) + 0xD800,
|
|
119
|
-
((c - 0x010000) & 0x03FF) + 0xDC00
|
|
120
|
-
);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
// set a property of a literal object, while protecting against prototype pollution,
|
|
124
|
-
// see https://github.com/nodeca/js-yaml/issues/164 for more details
|
|
125
|
-
function setProperty(object, key, value) {
|
|
126
|
-
// used for this specific key only because Object.defineProperty is slow
|
|
127
|
-
if (key === '__proto__') {
|
|
128
|
-
Object.defineProperty(object, key, {
|
|
129
|
-
configurable: true,
|
|
130
|
-
enumerable: true,
|
|
131
|
-
writable: true,
|
|
132
|
-
value: value
|
|
133
|
-
});
|
|
134
|
-
} else {
|
|
135
|
-
object[key] = value;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
var simpleEscapeCheck = new Array(256); // integer, for fast access
|
|
140
|
-
var simpleEscapeMap = new Array(256);
|
|
141
|
-
for (var i = 0; i < 256; i++) {
|
|
142
|
-
simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0;
|
|
143
|
-
simpleEscapeMap[i] = simpleEscapeSequence(i);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
function State(input, options) {
|
|
148
|
-
this.input = input;
|
|
149
|
-
|
|
150
|
-
this.filename = options['filename'] || null;
|
|
151
|
-
this.schema = options['schema'] || DEFAULT_SCHEMA;
|
|
152
|
-
this.onWarning = options['onWarning'] || null;
|
|
153
|
-
// (Hidden) Remove? makes the loader to expect YAML 1.1 documents
|
|
154
|
-
// if such documents have no explicit %YAML directive
|
|
155
|
-
this.legacy = options['legacy'] || false;
|
|
156
|
-
|
|
157
|
-
this.json = options['json'] || false;
|
|
158
|
-
this.listener = options['listener'] || null;
|
|
159
|
-
|
|
160
|
-
this.implicitTypes = this.schema.compiledImplicit;
|
|
161
|
-
this.typeMap = this.schema.compiledTypeMap;
|
|
162
|
-
|
|
163
|
-
this.length = input.length;
|
|
164
|
-
this.position = 0;
|
|
165
|
-
this.line = 0;
|
|
166
|
-
this.lineStart = 0;
|
|
167
|
-
this.lineIndent = 0;
|
|
168
|
-
|
|
169
|
-
// position of first leading tab in the current line,
|
|
170
|
-
// used to make sure there are no tabs in the indentation
|
|
171
|
-
this.firstTabInLine = -1;
|
|
172
|
-
|
|
173
|
-
this.documents = [];
|
|
174
|
-
|
|
175
|
-
/*
|
|
176
|
-
this.version;
|
|
177
|
-
this.checkLineBreaks;
|
|
178
|
-
this.tagMap;
|
|
179
|
-
this.anchorMap;
|
|
180
|
-
this.tag;
|
|
181
|
-
this.anchor;
|
|
182
|
-
this.kind;
|
|
183
|
-
this.result;*/
|
|
184
|
-
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
function generateError(state, message) {
|
|
189
|
-
var mark = {
|
|
190
|
-
name: state.filename,
|
|
191
|
-
buffer: state.input.slice(0, -1), // omit trailing \0
|
|
192
|
-
position: state.position,
|
|
193
|
-
line: state.line,
|
|
194
|
-
column: state.position - state.lineStart
|
|
195
|
-
};
|
|
196
|
-
|
|
197
|
-
mark.snippet = makeSnippet(mark);
|
|
198
|
-
|
|
199
|
-
return new YAMLException(message, mark);
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
function throwError(state, message) {
|
|
203
|
-
throw generateError(state, message);
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
function throwWarning(state, message) {
|
|
207
|
-
if (state.onWarning) {
|
|
208
|
-
state.onWarning.call(null, generateError(state, message));
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
var directiveHandlers = {
|
|
214
|
-
|
|
215
|
-
YAML: function handleYamlDirective(state, name, args) {
|
|
216
|
-
|
|
217
|
-
var match, major, minor;
|
|
218
|
-
|
|
219
|
-
if (state.version !== null) {
|
|
220
|
-
throwError(state, 'duplication of %YAML directive');
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
if (args.length !== 1) {
|
|
224
|
-
throwError(state, 'YAML directive accepts exactly one argument');
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
match = /^([0-9]+)\.([0-9]+)$/.exec(args[0]);
|
|
228
|
-
|
|
229
|
-
if (match === null) {
|
|
230
|
-
throwError(state, 'ill-formed argument of the YAML directive');
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
major = parseInt(match[1], 10);
|
|
234
|
-
minor = parseInt(match[2], 10);
|
|
235
|
-
|
|
236
|
-
if (major !== 1) {
|
|
237
|
-
throwError(state, 'unacceptable YAML version of the document');
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
state.version = args[0];
|
|
241
|
-
state.checkLineBreaks = (minor < 2);
|
|
242
|
-
|
|
243
|
-
if (minor !== 1 && minor !== 2) {
|
|
244
|
-
throwWarning(state, 'unsupported YAML version of the document');
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
|
-
|
|
248
|
-
TAG: function handleTagDirective(state, name, args) {
|
|
249
|
-
|
|
250
|
-
var handle, prefix;
|
|
251
|
-
|
|
252
|
-
if (args.length !== 2) {
|
|
253
|
-
throwError(state, 'TAG directive accepts exactly two arguments');
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
handle = args[0];
|
|
257
|
-
prefix = args[1];
|
|
258
|
-
|
|
259
|
-
if (!PATTERN_TAG_HANDLE.test(handle)) {
|
|
260
|
-
throwError(state, 'ill-formed tag handle (first argument) of the TAG directive');
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
if (_hasOwnProperty.call(state.tagMap, handle)) {
|
|
264
|
-
throwError(state, 'there is a previously declared suffix for "' + handle + '" tag handle');
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
if (!PATTERN_TAG_URI.test(prefix)) {
|
|
268
|
-
throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive');
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
try {
|
|
272
|
-
prefix = decodeURIComponent(prefix);
|
|
273
|
-
} catch (err) {
|
|
274
|
-
throwError(state, 'tag prefix is malformed: ' + prefix);
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
state.tagMap[handle] = prefix;
|
|
278
|
-
}
|
|
279
|
-
};
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
function captureSegment(state, start, end, checkJson) {
|
|
283
|
-
var _position, _length, _character, _result;
|
|
284
|
-
|
|
285
|
-
if (start < end) {
|
|
286
|
-
_result = state.input.slice(start, end);
|
|
287
|
-
|
|
288
|
-
if (checkJson) {
|
|
289
|
-
for (_position = 0, _length = _result.length; _position < _length; _position += 1) {
|
|
290
|
-
_character = _result.charCodeAt(_position);
|
|
291
|
-
if (!(_character === 0x09 ||
|
|
292
|
-
(0x20 <= _character && _character <= 0x10FFFF))) {
|
|
293
|
-
throwError(state, 'expected valid JSON character');
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
} else if (PATTERN_NON_PRINTABLE.test(_result)) {
|
|
297
|
-
throwError(state, 'the stream contains non-printable characters');
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
state.result += _result;
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
function mergeMappings(state, destination, source, overridableKeys) {
|
|
305
|
-
var sourceKeys, key, index, quantity;
|
|
306
|
-
|
|
307
|
-
if (!common.isObject(source)) {
|
|
308
|
-
throwError(state, 'cannot merge mappings; the provided source object is unacceptable');
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
sourceKeys = Object.keys(source);
|
|
312
|
-
|
|
313
|
-
for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) {
|
|
314
|
-
key = sourceKeys[index];
|
|
315
|
-
|
|
316
|
-
if (!_hasOwnProperty.call(destination, key)) {
|
|
317
|
-
setProperty(destination, key, source[key]);
|
|
318
|
-
overridableKeys[key] = true;
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode,
|
|
324
|
-
startLine, startLineStart, startPos) {
|
|
325
|
-
|
|
326
|
-
var index, quantity;
|
|
327
|
-
|
|
328
|
-
// The output is a plain object here, so keys can only be strings.
|
|
329
|
-
// We need to convert keyNode to a string, but doing so can hang the process
|
|
330
|
-
// (deeply nested arrays that explode exponentially using aliases).
|
|
331
|
-
if (Array.isArray(keyNode)) {
|
|
332
|
-
keyNode = Array.prototype.slice.call(keyNode);
|
|
333
|
-
|
|
334
|
-
for (index = 0, quantity = keyNode.length; index < quantity; index += 1) {
|
|
335
|
-
if (Array.isArray(keyNode[index])) {
|
|
336
|
-
throwError(state, 'nested arrays are not supported inside keys');
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
if (typeof keyNode === 'object' && _class(keyNode[index]) === '[object Object]') {
|
|
340
|
-
keyNode[index] = '[object Object]';
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
// Avoid code execution in load() via toString property
|
|
346
|
-
// (still use its own toString for arrays, timestamps,
|
|
347
|
-
// and whatever user schema extensions happen to have @@toStringTag)
|
|
348
|
-
if (typeof keyNode === 'object' && _class(keyNode) === '[object Object]') {
|
|
349
|
-
keyNode = '[object Object]';
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
keyNode = String(keyNode);
|
|
354
|
-
|
|
355
|
-
if (_result === null) {
|
|
356
|
-
_result = {};
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
if (keyTag === 'tag:yaml.org,2002:merge') {
|
|
360
|
-
if (Array.isArray(valueNode)) {
|
|
361
|
-
for (index = 0, quantity = valueNode.length; index < quantity; index += 1) {
|
|
362
|
-
mergeMappings(state, _result, valueNode[index], overridableKeys);
|
|
363
|
-
}
|
|
364
|
-
} else {
|
|
365
|
-
mergeMappings(state, _result, valueNode, overridableKeys);
|
|
366
|
-
}
|
|
367
|
-
} else {
|
|
368
|
-
if (!state.json &&
|
|
369
|
-
!_hasOwnProperty.call(overridableKeys, keyNode) &&
|
|
370
|
-
_hasOwnProperty.call(_result, keyNode)) {
|
|
371
|
-
state.line = startLine || state.line;
|
|
372
|
-
state.lineStart = startLineStart || state.lineStart;
|
|
373
|
-
state.position = startPos || state.position;
|
|
374
|
-
throwError(state, 'duplicated mapping key');
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
setProperty(_result, keyNode, valueNode);
|
|
378
|
-
delete overridableKeys[keyNode];
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
return _result;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
function readLineBreak(state) {
|
|
385
|
-
var ch;
|
|
386
|
-
|
|
387
|
-
ch = state.input.charCodeAt(state.position);
|
|
388
|
-
|
|
389
|
-
if (ch === 0x0A/* LF */) {
|
|
390
|
-
state.position++;
|
|
391
|
-
} else if (ch === 0x0D/* CR */) {
|
|
392
|
-
state.position++;
|
|
393
|
-
if (state.input.charCodeAt(state.position) === 0x0A/* LF */) {
|
|
394
|
-
state.position++;
|
|
395
|
-
}
|
|
396
|
-
} else {
|
|
397
|
-
throwError(state, 'a line break is expected');
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
state.line += 1;
|
|
401
|
-
state.lineStart = state.position;
|
|
402
|
-
state.firstTabInLine = -1;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
function skipSeparationSpace(state, allowComments, checkIndent) {
|
|
406
|
-
var lineBreaks = 0,
|
|
407
|
-
ch = state.input.charCodeAt(state.position);
|
|
408
|
-
|
|
409
|
-
while (ch !== 0) {
|
|
410
|
-
while (is_WHITE_SPACE(ch)) {
|
|
411
|
-
if (ch === 0x09/* Tab */ && state.firstTabInLine === -1) {
|
|
412
|
-
state.firstTabInLine = state.position;
|
|
413
|
-
}
|
|
414
|
-
ch = state.input.charCodeAt(++state.position);
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
if (allowComments && ch === 0x23/* # */) {
|
|
418
|
-
do {
|
|
419
|
-
ch = state.input.charCodeAt(++state.position);
|
|
420
|
-
} while (ch !== 0x0A/* LF */ && ch !== 0x0D/* CR */ && ch !== 0);
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
if (is_EOL(ch)) {
|
|
424
|
-
readLineBreak(state);
|
|
425
|
-
|
|
426
|
-
ch = state.input.charCodeAt(state.position);
|
|
427
|
-
lineBreaks++;
|
|
428
|
-
state.lineIndent = 0;
|
|
429
|
-
|
|
430
|
-
while (ch === 0x20/* Space */) {
|
|
431
|
-
state.lineIndent++;
|
|
432
|
-
ch = state.input.charCodeAt(++state.position);
|
|
433
|
-
}
|
|
434
|
-
} else {
|
|
435
|
-
break;
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
if (checkIndent !== -1 && lineBreaks !== 0 && state.lineIndent < checkIndent) {
|
|
440
|
-
throwWarning(state, 'deficient indentation');
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
return lineBreaks;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
function testDocumentSeparator(state) {
|
|
447
|
-
var _position = state.position,
|
|
448
|
-
ch;
|
|
449
|
-
|
|
450
|
-
ch = state.input.charCodeAt(_position);
|
|
451
|
-
|
|
452
|
-
// Condition state.position === state.lineStart is tested
|
|
453
|
-
// in parent on each call, for efficiency. No needs to test here again.
|
|
454
|
-
if ((ch === 0x2D/* - */ || ch === 0x2E/* . */) &&
|
|
455
|
-
ch === state.input.charCodeAt(_position + 1) &&
|
|
456
|
-
ch === state.input.charCodeAt(_position + 2)) {
|
|
457
|
-
|
|
458
|
-
_position += 3;
|
|
459
|
-
|
|
460
|
-
ch = state.input.charCodeAt(_position);
|
|
461
|
-
|
|
462
|
-
if (ch === 0 || is_WS_OR_EOL(ch)) {
|
|
463
|
-
return true;
|
|
464
|
-
}
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
return false;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
function writeFoldedLines(state, count) {
|
|
471
|
-
if (count === 1) {
|
|
472
|
-
state.result += ' ';
|
|
473
|
-
} else if (count > 1) {
|
|
474
|
-
state.result += common.repeat('\n', count - 1);
|
|
475
|
-
}
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
function readPlainScalar(state, nodeIndent, withinFlowCollection) {
|
|
480
|
-
var preceding,
|
|
481
|
-
following,
|
|
482
|
-
captureStart,
|
|
483
|
-
captureEnd,
|
|
484
|
-
hasPendingContent,
|
|
485
|
-
_line,
|
|
486
|
-
_lineStart,
|
|
487
|
-
_lineIndent,
|
|
488
|
-
_kind = state.kind,
|
|
489
|
-
_result = state.result,
|
|
490
|
-
ch;
|
|
491
|
-
|
|
492
|
-
ch = state.input.charCodeAt(state.position);
|
|
493
|
-
|
|
494
|
-
if (is_WS_OR_EOL(ch) ||
|
|
495
|
-
is_FLOW_INDICATOR(ch) ||
|
|
496
|
-
ch === 0x23/* # */ ||
|
|
497
|
-
ch === 0x26/* & */ ||
|
|
498
|
-
ch === 0x2A/* * */ ||
|
|
499
|
-
ch === 0x21/* ! */ ||
|
|
500
|
-
ch === 0x7C/* | */ ||
|
|
501
|
-
ch === 0x3E/* > */ ||
|
|
502
|
-
ch === 0x27/* ' */ ||
|
|
503
|
-
ch === 0x22/* " */ ||
|
|
504
|
-
ch === 0x25/* % */ ||
|
|
505
|
-
ch === 0x40/* @ */ ||
|
|
506
|
-
ch === 0x60/* ` */) {
|
|
507
|
-
return false;
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
if (ch === 0x3F/* ? */ || ch === 0x2D/* - */) {
|
|
511
|
-
following = state.input.charCodeAt(state.position + 1);
|
|
512
|
-
|
|
513
|
-
if (is_WS_OR_EOL(following) ||
|
|
514
|
-
withinFlowCollection && is_FLOW_INDICATOR(following)) {
|
|
515
|
-
return false;
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
state.kind = 'scalar';
|
|
520
|
-
state.result = '';
|
|
521
|
-
captureStart = captureEnd = state.position;
|
|
522
|
-
hasPendingContent = false;
|
|
523
|
-
|
|
524
|
-
while (ch !== 0) {
|
|
525
|
-
if (ch === 0x3A/* : */) {
|
|
526
|
-
following = state.input.charCodeAt(state.position + 1);
|
|
527
|
-
|
|
528
|
-
if (is_WS_OR_EOL(following) ||
|
|
529
|
-
withinFlowCollection && is_FLOW_INDICATOR(following)) {
|
|
530
|
-
break;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
} else if (ch === 0x23/* # */) {
|
|
534
|
-
preceding = state.input.charCodeAt(state.position - 1);
|
|
535
|
-
|
|
536
|
-
if (is_WS_OR_EOL(preceding)) {
|
|
537
|
-
break;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
} else if ((state.position === state.lineStart && testDocumentSeparator(state)) ||
|
|
541
|
-
withinFlowCollection && is_FLOW_INDICATOR(ch)) {
|
|
542
|
-
break;
|
|
543
|
-
|
|
544
|
-
} else if (is_EOL(ch)) {
|
|
545
|
-
_line = state.line;
|
|
546
|
-
_lineStart = state.lineStart;
|
|
547
|
-
_lineIndent = state.lineIndent;
|
|
548
|
-
skipSeparationSpace(state, false, -1);
|
|
549
|
-
|
|
550
|
-
if (state.lineIndent >= nodeIndent) {
|
|
551
|
-
hasPendingContent = true;
|
|
552
|
-
ch = state.input.charCodeAt(state.position);
|
|
553
|
-
continue;
|
|
554
|
-
} else {
|
|
555
|
-
state.position = captureEnd;
|
|
556
|
-
state.line = _line;
|
|
557
|
-
state.lineStart = _lineStart;
|
|
558
|
-
state.lineIndent = _lineIndent;
|
|
559
|
-
break;
|
|
560
|
-
}
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
if (hasPendingContent) {
|
|
564
|
-
captureSegment(state, captureStart, captureEnd, false);
|
|
565
|
-
writeFoldedLines(state, state.line - _line);
|
|
566
|
-
captureStart = captureEnd = state.position;
|
|
567
|
-
hasPendingContent = false;
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
if (!is_WHITE_SPACE(ch)) {
|
|
571
|
-
captureEnd = state.position + 1;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
ch = state.input.charCodeAt(++state.position);
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
captureSegment(state, captureStart, captureEnd, false);
|
|
578
|
-
|
|
579
|
-
if (state.result) {
|
|
580
|
-
return true;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
state.kind = _kind;
|
|
584
|
-
state.result = _result;
|
|
585
|
-
return false;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
function readSingleQuotedScalar(state, nodeIndent) {
|
|
589
|
-
var ch,
|
|
590
|
-
captureStart, captureEnd;
|
|
591
|
-
|
|
592
|
-
ch = state.input.charCodeAt(state.position);
|
|
593
|
-
|
|
594
|
-
if (ch !== 0x27/* ' */) {
|
|
595
|
-
return false;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
state.kind = 'scalar';
|
|
599
|
-
state.result = '';
|
|
600
|
-
state.position++;
|
|
601
|
-
captureStart = captureEnd = state.position;
|
|
602
|
-
|
|
603
|
-
while ((ch = state.input.charCodeAt(state.position)) !== 0) {
|
|
604
|
-
if (ch === 0x27/* ' */) {
|
|
605
|
-
captureSegment(state, captureStart, state.position, true);
|
|
606
|
-
ch = state.input.charCodeAt(++state.position);
|
|
607
|
-
|
|
608
|
-
if (ch === 0x27/* ' */) {
|
|
609
|
-
captureStart = state.position;
|
|
610
|
-
state.position++;
|
|
611
|
-
captureEnd = state.position;
|
|
612
|
-
} else {
|
|
613
|
-
return true;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
} else if (is_EOL(ch)) {
|
|
617
|
-
captureSegment(state, captureStart, captureEnd, true);
|
|
618
|
-
writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent));
|
|
619
|
-
captureStart = captureEnd = state.position;
|
|
620
|
-
|
|
621
|
-
} else if (state.position === state.lineStart && testDocumentSeparator(state)) {
|
|
622
|
-
throwError(state, 'unexpected end of the document within a single quoted scalar');
|
|
623
|
-
|
|
624
|
-
} else {
|
|
625
|
-
state.position++;
|
|
626
|
-
captureEnd = state.position;
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
throwError(state, 'unexpected end of the stream within a single quoted scalar');
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
function readDoubleQuotedScalar(state, nodeIndent) {
|
|
634
|
-
var captureStart,
|
|
635
|
-
captureEnd,
|
|
636
|
-
hexLength,
|
|
637
|
-
hexResult,
|
|
638
|
-
tmp,
|
|
639
|
-
ch;
|
|
640
|
-
|
|
641
|
-
ch = state.input.charCodeAt(state.position);
|
|
642
|
-
|
|
643
|
-
if (ch !== 0x22/* " */) {
|
|
644
|
-
return false;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
state.kind = 'scalar';
|
|
648
|
-
state.result = '';
|
|
649
|
-
state.position++;
|
|
650
|
-
captureStart = captureEnd = state.position;
|
|
651
|
-
|
|
652
|
-
while ((ch = state.input.charCodeAt(state.position)) !== 0) {
|
|
653
|
-
if (ch === 0x22/* " */) {
|
|
654
|
-
captureSegment(state, captureStart, state.position, true);
|
|
655
|
-
state.position++;
|
|
656
|
-
return true;
|
|
657
|
-
|
|
658
|
-
} else if (ch === 0x5C/* \ */) {
|
|
659
|
-
captureSegment(state, captureStart, state.position, true);
|
|
660
|
-
ch = state.input.charCodeAt(++state.position);
|
|
661
|
-
|
|
662
|
-
if (is_EOL(ch)) {
|
|
663
|
-
skipSeparationSpace(state, false, nodeIndent);
|
|
664
|
-
|
|
665
|
-
// TODO: rework to inline fn with no type cast?
|
|
666
|
-
} else if (ch < 256 && simpleEscapeCheck[ch]) {
|
|
667
|
-
state.result += simpleEscapeMap[ch];
|
|
668
|
-
state.position++;
|
|
669
|
-
|
|
670
|
-
} else if ((tmp = escapedHexLen(ch)) > 0) {
|
|
671
|
-
hexLength = tmp;
|
|
672
|
-
hexResult = 0;
|
|
673
|
-
|
|
674
|
-
for (; hexLength > 0; hexLength--) {
|
|
675
|
-
ch = state.input.charCodeAt(++state.position);
|
|
676
|
-
|
|
677
|
-
if ((tmp = fromHexCode(ch)) >= 0) {
|
|
678
|
-
hexResult = (hexResult << 4) + tmp;
|
|
679
|
-
|
|
680
|
-
} else {
|
|
681
|
-
throwError(state, 'expected hexadecimal character');
|
|
682
|
-
}
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
state.result += charFromCodepoint(hexResult);
|
|
686
|
-
|
|
687
|
-
state.position++;
|
|
688
|
-
|
|
689
|
-
} else {
|
|
690
|
-
throwError(state, 'unknown escape sequence');
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
captureStart = captureEnd = state.position;
|
|
694
|
-
|
|
695
|
-
} else if (is_EOL(ch)) {
|
|
696
|
-
captureSegment(state, captureStart, captureEnd, true);
|
|
697
|
-
writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent));
|
|
698
|
-
captureStart = captureEnd = state.position;
|
|
699
|
-
|
|
700
|
-
} else if (state.position === state.lineStart && testDocumentSeparator(state)) {
|
|
701
|
-
throwError(state, 'unexpected end of the document within a double quoted scalar');
|
|
702
|
-
|
|
703
|
-
} else {
|
|
704
|
-
state.position++;
|
|
705
|
-
captureEnd = state.position;
|
|
706
|
-
}
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
throwError(state, 'unexpected end of the stream within a double quoted scalar');
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
function readFlowCollection(state, nodeIndent) {
|
|
713
|
-
var readNext = true,
|
|
714
|
-
_line,
|
|
715
|
-
_lineStart,
|
|
716
|
-
_pos,
|
|
717
|
-
_tag = state.tag,
|
|
718
|
-
_result,
|
|
719
|
-
_anchor = state.anchor,
|
|
720
|
-
following,
|
|
721
|
-
terminator,
|
|
722
|
-
isPair,
|
|
723
|
-
isExplicitPair,
|
|
724
|
-
isMapping,
|
|
725
|
-
overridableKeys = Object.create(null),
|
|
726
|
-
keyNode,
|
|
727
|
-
keyTag,
|
|
728
|
-
valueNode,
|
|
729
|
-
ch;
|
|
730
|
-
|
|
731
|
-
ch = state.input.charCodeAt(state.position);
|
|
732
|
-
|
|
733
|
-
if (ch === 0x5B/* [ */) {
|
|
734
|
-
terminator = 0x5D;/* ] */
|
|
735
|
-
isMapping = false;
|
|
736
|
-
_result = [];
|
|
737
|
-
} else if (ch === 0x7B/* { */) {
|
|
738
|
-
terminator = 0x7D;/* } */
|
|
739
|
-
isMapping = true;
|
|
740
|
-
_result = {};
|
|
741
|
-
} else {
|
|
742
|
-
return false;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
if (state.anchor !== null) {
|
|
746
|
-
state.anchorMap[state.anchor] = _result;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
ch = state.input.charCodeAt(++state.position);
|
|
750
|
-
|
|
751
|
-
while (ch !== 0) {
|
|
752
|
-
skipSeparationSpace(state, true, nodeIndent);
|
|
753
|
-
|
|
754
|
-
ch = state.input.charCodeAt(state.position);
|
|
755
|
-
|
|
756
|
-
if (ch === terminator) {
|
|
757
|
-
state.position++;
|
|
758
|
-
state.tag = _tag;
|
|
759
|
-
state.anchor = _anchor;
|
|
760
|
-
state.kind = isMapping ? 'mapping' : 'sequence';
|
|
761
|
-
state.result = _result;
|
|
762
|
-
return true;
|
|
763
|
-
} else if (!readNext) {
|
|
764
|
-
throwError(state, 'missed comma between flow collection entries');
|
|
765
|
-
} else if (ch === 0x2C/* , */) {
|
|
766
|
-
// "flow collection entries can never be completely empty", as per YAML 1.2, section 7.4
|
|
767
|
-
throwError(state, "expected the node content, but found ','");
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
keyTag = keyNode = valueNode = null;
|
|
771
|
-
isPair = isExplicitPair = false;
|
|
772
|
-
|
|
773
|
-
if (ch === 0x3F/* ? */) {
|
|
774
|
-
following = state.input.charCodeAt(state.position + 1);
|
|
775
|
-
|
|
776
|
-
if (is_WS_OR_EOL(following)) {
|
|
777
|
-
isPair = isExplicitPair = true;
|
|
778
|
-
state.position++;
|
|
779
|
-
skipSeparationSpace(state, true, nodeIndent);
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
_line = state.line; // Save the current line.
|
|
784
|
-
_lineStart = state.lineStart;
|
|
785
|
-
_pos = state.position;
|
|
786
|
-
composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true);
|
|
787
|
-
keyTag = state.tag;
|
|
788
|
-
keyNode = state.result;
|
|
789
|
-
skipSeparationSpace(state, true, nodeIndent);
|
|
790
|
-
|
|
791
|
-
ch = state.input.charCodeAt(state.position);
|
|
792
|
-
|
|
793
|
-
if ((isExplicitPair || state.line === _line) && ch === 0x3A/* : */) {
|
|
794
|
-
isPair = true;
|
|
795
|
-
ch = state.input.charCodeAt(++state.position);
|
|
796
|
-
skipSeparationSpace(state, true, nodeIndent);
|
|
797
|
-
composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true);
|
|
798
|
-
valueNode = state.result;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
if (isMapping) {
|
|
802
|
-
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos);
|
|
803
|
-
} else if (isPair) {
|
|
804
|
-
_result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos));
|
|
805
|
-
} else {
|
|
806
|
-
_result.push(keyNode);
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
skipSeparationSpace(state, true, nodeIndent);
|
|
810
|
-
|
|
811
|
-
ch = state.input.charCodeAt(state.position);
|
|
812
|
-
|
|
813
|
-
if (ch === 0x2C/* , */) {
|
|
814
|
-
readNext = true;
|
|
815
|
-
ch = state.input.charCodeAt(++state.position);
|
|
816
|
-
} else {
|
|
817
|
-
readNext = false;
|
|
818
|
-
}
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
throwError(state, 'unexpected end of the stream within a flow collection');
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
function readBlockScalar(state, nodeIndent) {
|
|
825
|
-
var captureStart,
|
|
826
|
-
folding,
|
|
827
|
-
chomping = CHOMPING_CLIP,
|
|
828
|
-
didReadContent = false,
|
|
829
|
-
detectedIndent = false,
|
|
830
|
-
textIndent = nodeIndent,
|
|
831
|
-
emptyLines = 0,
|
|
832
|
-
atMoreIndented = false,
|
|
833
|
-
tmp,
|
|
834
|
-
ch;
|
|
835
|
-
|
|
836
|
-
ch = state.input.charCodeAt(state.position);
|
|
837
|
-
|
|
838
|
-
if (ch === 0x7C/* | */) {
|
|
839
|
-
folding = false;
|
|
840
|
-
} else if (ch === 0x3E/* > */) {
|
|
841
|
-
folding = true;
|
|
842
|
-
} else {
|
|
843
|
-
return false;
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
state.kind = 'scalar';
|
|
847
|
-
state.result = '';
|
|
848
|
-
|
|
849
|
-
while (ch !== 0) {
|
|
850
|
-
ch = state.input.charCodeAt(++state.position);
|
|
851
|
-
|
|
852
|
-
if (ch === 0x2B/* + */ || ch === 0x2D/* - */) {
|
|
853
|
-
if (CHOMPING_CLIP === chomping) {
|
|
854
|
-
chomping = (ch === 0x2B/* + */) ? CHOMPING_KEEP : CHOMPING_STRIP;
|
|
855
|
-
} else {
|
|
856
|
-
throwError(state, 'repeat of a chomping mode identifier');
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
} else if ((tmp = fromDecimalCode(ch)) >= 0) {
|
|
860
|
-
if (tmp === 0) {
|
|
861
|
-
throwError(state, 'bad explicit indentation width of a block scalar; it cannot be less than one');
|
|
862
|
-
} else if (!detectedIndent) {
|
|
863
|
-
textIndent = nodeIndent + tmp - 1;
|
|
864
|
-
detectedIndent = true;
|
|
865
|
-
} else {
|
|
866
|
-
throwError(state, 'repeat of an indentation width identifier');
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
} else {
|
|
870
|
-
break;
|
|
871
|
-
}
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
if (is_WHITE_SPACE(ch)) {
|
|
875
|
-
do { ch = state.input.charCodeAt(++state.position); }
|
|
876
|
-
while (is_WHITE_SPACE(ch));
|
|
877
|
-
|
|
878
|
-
if (ch === 0x23/* # */) {
|
|
879
|
-
do { ch = state.input.charCodeAt(++state.position); }
|
|
880
|
-
while (!is_EOL(ch) && (ch !== 0));
|
|
881
|
-
}
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
while (ch !== 0) {
|
|
885
|
-
readLineBreak(state);
|
|
886
|
-
state.lineIndent = 0;
|
|
887
|
-
|
|
888
|
-
ch = state.input.charCodeAt(state.position);
|
|
889
|
-
|
|
890
|
-
while ((!detectedIndent || state.lineIndent < textIndent) &&
|
|
891
|
-
(ch === 0x20/* Space */)) {
|
|
892
|
-
state.lineIndent++;
|
|
893
|
-
ch = state.input.charCodeAt(++state.position);
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
if (!detectedIndent && state.lineIndent > textIndent) {
|
|
897
|
-
textIndent = state.lineIndent;
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
if (is_EOL(ch)) {
|
|
901
|
-
emptyLines++;
|
|
902
|
-
continue;
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
// End of the scalar.
|
|
906
|
-
if (state.lineIndent < textIndent) {
|
|
907
|
-
|
|
908
|
-
// Perform the chomping.
|
|
909
|
-
if (chomping === CHOMPING_KEEP) {
|
|
910
|
-
state.result += common.repeat('\n', didReadContent ? 1 + emptyLines : emptyLines);
|
|
911
|
-
} else if (chomping === CHOMPING_CLIP) {
|
|
912
|
-
if (didReadContent) { // i.e. only if the scalar is not empty.
|
|
913
|
-
state.result += '\n';
|
|
914
|
-
}
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
// Break this `while` cycle and go to the funciton's epilogue.
|
|
918
|
-
break;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
// Folded style: use fancy rules to handle line breaks.
|
|
922
|
-
if (folding) {
|
|
923
|
-
|
|
924
|
-
// Lines starting with white space characters (more-indented lines) are not folded.
|
|
925
|
-
if (is_WHITE_SPACE(ch)) {
|
|
926
|
-
atMoreIndented = true;
|
|
927
|
-
// except for the first content line (cf. Example 8.1)
|
|
928
|
-
state.result += common.repeat('\n', didReadContent ? 1 + emptyLines : emptyLines);
|
|
929
|
-
|
|
930
|
-
// End of more-indented block.
|
|
931
|
-
} else if (atMoreIndented) {
|
|
932
|
-
atMoreIndented = false;
|
|
933
|
-
state.result += common.repeat('\n', emptyLines + 1);
|
|
934
|
-
|
|
935
|
-
// Just one line break - perceive as the same line.
|
|
936
|
-
} else if (emptyLines === 0) {
|
|
937
|
-
if (didReadContent) { // i.e. only if we have already read some scalar content.
|
|
938
|
-
state.result += ' ';
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
// Several line breaks - perceive as different lines.
|
|
942
|
-
} else {
|
|
943
|
-
state.result += common.repeat('\n', emptyLines);
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
// Literal style: just add exact number of line breaks between content lines.
|
|
947
|
-
} else {
|
|
948
|
-
// Keep all line breaks except the header line break.
|
|
949
|
-
state.result += common.repeat('\n', didReadContent ? 1 + emptyLines : emptyLines);
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
didReadContent = true;
|
|
953
|
-
detectedIndent = true;
|
|
954
|
-
emptyLines = 0;
|
|
955
|
-
captureStart = state.position;
|
|
956
|
-
|
|
957
|
-
while (!is_EOL(ch) && (ch !== 0)) {
|
|
958
|
-
ch = state.input.charCodeAt(++state.position);
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
captureSegment(state, captureStart, state.position, false);
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
return true;
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
function readBlockSequence(state, nodeIndent) {
|
|
968
|
-
var _line,
|
|
969
|
-
_tag = state.tag,
|
|
970
|
-
_anchor = state.anchor,
|
|
971
|
-
_result = [],
|
|
972
|
-
following,
|
|
973
|
-
detected = false,
|
|
974
|
-
ch;
|
|
975
|
-
|
|
976
|
-
// there is a leading tab before this token, so it can't be a block sequence/mapping;
|
|
977
|
-
// it can still be flow sequence/mapping or a scalar
|
|
978
|
-
if (state.firstTabInLine !== -1) return false;
|
|
979
|
-
|
|
980
|
-
if (state.anchor !== null) {
|
|
981
|
-
state.anchorMap[state.anchor] = _result;
|
|
982
|
-
}
|
|
983
|
-
|
|
984
|
-
ch = state.input.charCodeAt(state.position);
|
|
985
|
-
|
|
986
|
-
while (ch !== 0) {
|
|
987
|
-
if (state.firstTabInLine !== -1) {
|
|
988
|
-
state.position = state.firstTabInLine;
|
|
989
|
-
throwError(state, 'tab characters must not be used in indentation');
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
if (ch !== 0x2D/* - */) {
|
|
993
|
-
break;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
following = state.input.charCodeAt(state.position + 1);
|
|
997
|
-
|
|
998
|
-
if (!is_WS_OR_EOL(following)) {
|
|
999
|
-
break;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
detected = true;
|
|
1003
|
-
state.position++;
|
|
1004
|
-
|
|
1005
|
-
if (skipSeparationSpace(state, true, -1)) {
|
|
1006
|
-
if (state.lineIndent <= nodeIndent) {
|
|
1007
|
-
_result.push(null);
|
|
1008
|
-
ch = state.input.charCodeAt(state.position);
|
|
1009
|
-
continue;
|
|
1010
|
-
}
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
_line = state.line;
|
|
1014
|
-
composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true);
|
|
1015
|
-
_result.push(state.result);
|
|
1016
|
-
skipSeparationSpace(state, true, -1);
|
|
1017
|
-
|
|
1018
|
-
ch = state.input.charCodeAt(state.position);
|
|
1019
|
-
|
|
1020
|
-
if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {
|
|
1021
|
-
throwError(state, 'bad indentation of a sequence entry');
|
|
1022
|
-
} else if (state.lineIndent < nodeIndent) {
|
|
1023
|
-
break;
|
|
1024
|
-
}
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
if (detected) {
|
|
1028
|
-
state.tag = _tag;
|
|
1029
|
-
state.anchor = _anchor;
|
|
1030
|
-
state.kind = 'sequence';
|
|
1031
|
-
state.result = _result;
|
|
1032
|
-
return true;
|
|
1033
|
-
}
|
|
1034
|
-
return false;
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
function readBlockMapping(state, nodeIndent, flowIndent) {
|
|
1038
|
-
var following,
|
|
1039
|
-
allowCompact,
|
|
1040
|
-
_line,
|
|
1041
|
-
_keyLine,
|
|
1042
|
-
_keyLineStart,
|
|
1043
|
-
_keyPos,
|
|
1044
|
-
_tag = state.tag,
|
|
1045
|
-
_anchor = state.anchor,
|
|
1046
|
-
_result = {},
|
|
1047
|
-
overridableKeys = Object.create(null),
|
|
1048
|
-
keyTag = null,
|
|
1049
|
-
keyNode = null,
|
|
1050
|
-
valueNode = null,
|
|
1051
|
-
atExplicitKey = false,
|
|
1052
|
-
detected = false,
|
|
1053
|
-
ch;
|
|
1054
|
-
|
|
1055
|
-
// there is a leading tab before this token, so it can't be a block sequence/mapping;
|
|
1056
|
-
// it can still be flow sequence/mapping or a scalar
|
|
1057
|
-
if (state.firstTabInLine !== -1) return false;
|
|
1058
|
-
|
|
1059
|
-
if (state.anchor !== null) {
|
|
1060
|
-
state.anchorMap[state.anchor] = _result;
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
ch = state.input.charCodeAt(state.position);
|
|
1064
|
-
|
|
1065
|
-
while (ch !== 0) {
|
|
1066
|
-
if (!atExplicitKey && state.firstTabInLine !== -1) {
|
|
1067
|
-
state.position = state.firstTabInLine;
|
|
1068
|
-
throwError(state, 'tab characters must not be used in indentation');
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
following = state.input.charCodeAt(state.position + 1);
|
|
1072
|
-
_line = state.line; // Save the current line.
|
|
1073
|
-
|
|
1074
|
-
//
|
|
1075
|
-
// Explicit notation case. There are two separate blocks:
|
|
1076
|
-
// first for the key (denoted by "?") and second for the value (denoted by ":")
|
|
1077
|
-
//
|
|
1078
|
-
if ((ch === 0x3F/* ? */ || ch === 0x3A/* : */) && is_WS_OR_EOL(following)) {
|
|
1079
|
-
|
|
1080
|
-
if (ch === 0x3F/* ? */) {
|
|
1081
|
-
if (atExplicitKey) {
|
|
1082
|
-
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);
|
|
1083
|
-
keyTag = keyNode = valueNode = null;
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
detected = true;
|
|
1087
|
-
atExplicitKey = true;
|
|
1088
|
-
allowCompact = true;
|
|
1089
|
-
|
|
1090
|
-
} else if (atExplicitKey) {
|
|
1091
|
-
// i.e. 0x3A/* : */ === character after the explicit key.
|
|
1092
|
-
atExplicitKey = false;
|
|
1093
|
-
allowCompact = true;
|
|
1094
|
-
|
|
1095
|
-
} else {
|
|
1096
|
-
throwError(state, 'incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line');
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
state.position += 1;
|
|
1100
|
-
ch = following;
|
|
1101
|
-
|
|
1102
|
-
//
|
|
1103
|
-
// Implicit notation case. Flow-style node as the key first, then ":", and the value.
|
|
1104
|
-
//
|
|
1105
|
-
} else {
|
|
1106
|
-
_keyLine = state.line;
|
|
1107
|
-
_keyLineStart = state.lineStart;
|
|
1108
|
-
_keyPos = state.position;
|
|
1109
|
-
|
|
1110
|
-
if (!composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) {
|
|
1111
|
-
// Neither implicit nor explicit notation.
|
|
1112
|
-
// Reading is done. Go to the epilogue.
|
|
1113
|
-
break;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
if (state.line === _line) {
|
|
1117
|
-
ch = state.input.charCodeAt(state.position);
|
|
1118
|
-
|
|
1119
|
-
while (is_WHITE_SPACE(ch)) {
|
|
1120
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
|
-
if (ch === 0x3A/* : */) {
|
|
1124
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1125
|
-
|
|
1126
|
-
if (!is_WS_OR_EOL(ch)) {
|
|
1127
|
-
throwError(state, 'a whitespace character is expected after the key-value separator within a block mapping');
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
if (atExplicitKey) {
|
|
1131
|
-
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);
|
|
1132
|
-
keyTag = keyNode = valueNode = null;
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
detected = true;
|
|
1136
|
-
atExplicitKey = false;
|
|
1137
|
-
allowCompact = false;
|
|
1138
|
-
keyTag = state.tag;
|
|
1139
|
-
keyNode = state.result;
|
|
1140
|
-
|
|
1141
|
-
} else if (detected) {
|
|
1142
|
-
throwError(state, 'can not read an implicit mapping pair; a colon is missed');
|
|
1143
|
-
|
|
1144
|
-
} else {
|
|
1145
|
-
state.tag = _tag;
|
|
1146
|
-
state.anchor = _anchor;
|
|
1147
|
-
return true; // Keep the result of `composeNode`.
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
} else if (detected) {
|
|
1151
|
-
throwError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key');
|
|
1152
|
-
|
|
1153
|
-
} else {
|
|
1154
|
-
state.tag = _tag;
|
|
1155
|
-
state.anchor = _anchor;
|
|
1156
|
-
return true; // Keep the result of `composeNode`.
|
|
1157
|
-
}
|
|
1158
|
-
}
|
|
1159
|
-
|
|
1160
|
-
//
|
|
1161
|
-
// Common reading code for both explicit and implicit notations.
|
|
1162
|
-
//
|
|
1163
|
-
if (state.line === _line || state.lineIndent > nodeIndent) {
|
|
1164
|
-
if (atExplicitKey) {
|
|
1165
|
-
_keyLine = state.line;
|
|
1166
|
-
_keyLineStart = state.lineStart;
|
|
1167
|
-
_keyPos = state.position;
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) {
|
|
1171
|
-
if (atExplicitKey) {
|
|
1172
|
-
keyNode = state.result;
|
|
1173
|
-
} else {
|
|
1174
|
-
valueNode = state.result;
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
if (!atExplicitKey) {
|
|
1179
|
-
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _keyLine, _keyLineStart, _keyPos);
|
|
1180
|
-
keyTag = keyNode = valueNode = null;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
skipSeparationSpace(state, true, -1);
|
|
1184
|
-
ch = state.input.charCodeAt(state.position);
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {
|
|
1188
|
-
throwError(state, 'bad indentation of a mapping entry');
|
|
1189
|
-
} else if (state.lineIndent < nodeIndent) {
|
|
1190
|
-
break;
|
|
1191
|
-
}
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
//
|
|
1195
|
-
// Epilogue.
|
|
1196
|
-
//
|
|
1197
|
-
|
|
1198
|
-
// Special case: last mapping's node contains only the key in explicit notation.
|
|
1199
|
-
if (atExplicitKey) {
|
|
1200
|
-
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
// Expose the resulting mapping.
|
|
1204
|
-
if (detected) {
|
|
1205
|
-
state.tag = _tag;
|
|
1206
|
-
state.anchor = _anchor;
|
|
1207
|
-
state.kind = 'mapping';
|
|
1208
|
-
state.result = _result;
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
return detected;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
function readTagProperty(state) {
|
|
1215
|
-
var _position,
|
|
1216
|
-
isVerbatim = false,
|
|
1217
|
-
isNamed = false,
|
|
1218
|
-
tagHandle,
|
|
1219
|
-
tagName,
|
|
1220
|
-
ch;
|
|
1221
|
-
|
|
1222
|
-
ch = state.input.charCodeAt(state.position);
|
|
1223
|
-
|
|
1224
|
-
if (ch !== 0x21/* ! */) return false;
|
|
1225
|
-
|
|
1226
|
-
if (state.tag !== null) {
|
|
1227
|
-
throwError(state, 'duplication of a tag property');
|
|
1228
|
-
}
|
|
1229
|
-
|
|
1230
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1231
|
-
|
|
1232
|
-
if (ch === 0x3C/* < */) {
|
|
1233
|
-
isVerbatim = true;
|
|
1234
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1235
|
-
|
|
1236
|
-
} else if (ch === 0x21/* ! */) {
|
|
1237
|
-
isNamed = true;
|
|
1238
|
-
tagHandle = '!!';
|
|
1239
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1240
|
-
|
|
1241
|
-
} else {
|
|
1242
|
-
tagHandle = '!';
|
|
1243
|
-
}
|
|
1244
|
-
|
|
1245
|
-
_position = state.position;
|
|
1246
|
-
|
|
1247
|
-
if (isVerbatim) {
|
|
1248
|
-
do { ch = state.input.charCodeAt(++state.position); }
|
|
1249
|
-
while (ch !== 0 && ch !== 0x3E/* > */);
|
|
1250
|
-
|
|
1251
|
-
if (state.position < state.length) {
|
|
1252
|
-
tagName = state.input.slice(_position, state.position);
|
|
1253
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1254
|
-
} else {
|
|
1255
|
-
throwError(state, 'unexpected end of the stream within a verbatim tag');
|
|
1256
|
-
}
|
|
1257
|
-
} else {
|
|
1258
|
-
while (ch !== 0 && !is_WS_OR_EOL(ch)) {
|
|
1259
|
-
|
|
1260
|
-
if (ch === 0x21/* ! */) {
|
|
1261
|
-
if (!isNamed) {
|
|
1262
|
-
tagHandle = state.input.slice(_position - 1, state.position + 1);
|
|
1263
|
-
|
|
1264
|
-
if (!PATTERN_TAG_HANDLE.test(tagHandle)) {
|
|
1265
|
-
throwError(state, 'named tag handle cannot contain such characters');
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
|
-
isNamed = true;
|
|
1269
|
-
_position = state.position + 1;
|
|
1270
|
-
} else {
|
|
1271
|
-
throwError(state, 'tag suffix cannot contain exclamation marks');
|
|
1272
|
-
}
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
tagName = state.input.slice(_position, state.position);
|
|
1279
|
-
|
|
1280
|
-
if (PATTERN_FLOW_INDICATORS.test(tagName)) {
|
|
1281
|
-
throwError(state, 'tag suffix cannot contain flow indicator characters');
|
|
1282
|
-
}
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
if (tagName && !PATTERN_TAG_URI.test(tagName)) {
|
|
1286
|
-
throwError(state, 'tag name cannot contain such characters: ' + tagName);
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
|
-
try {
|
|
1290
|
-
tagName = decodeURIComponent(tagName);
|
|
1291
|
-
} catch (err) {
|
|
1292
|
-
throwError(state, 'tag name is malformed: ' + tagName);
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
if (isVerbatim) {
|
|
1296
|
-
state.tag = tagName;
|
|
1297
|
-
|
|
1298
|
-
} else if (_hasOwnProperty.call(state.tagMap, tagHandle)) {
|
|
1299
|
-
state.tag = state.tagMap[tagHandle] + tagName;
|
|
1300
|
-
|
|
1301
|
-
} else if (tagHandle === '!') {
|
|
1302
|
-
state.tag = '!' + tagName;
|
|
1303
|
-
|
|
1304
|
-
} else if (tagHandle === '!!') {
|
|
1305
|
-
state.tag = 'tag:yaml.org,2002:' + tagName;
|
|
1306
|
-
|
|
1307
|
-
} else {
|
|
1308
|
-
throwError(state, 'undeclared tag handle "' + tagHandle + '"');
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
return true;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
function readAnchorProperty(state) {
|
|
1315
|
-
var _position,
|
|
1316
|
-
ch;
|
|
1317
|
-
|
|
1318
|
-
ch = state.input.charCodeAt(state.position);
|
|
1319
|
-
|
|
1320
|
-
if (ch !== 0x26/* & */) return false;
|
|
1321
|
-
|
|
1322
|
-
if (state.anchor !== null) {
|
|
1323
|
-
throwError(state, 'duplication of an anchor property');
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1327
|
-
_position = state.position;
|
|
1328
|
-
|
|
1329
|
-
while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {
|
|
1330
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
if (state.position === _position) {
|
|
1334
|
-
throwError(state, 'name of an anchor node must contain at least one character');
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
state.anchor = state.input.slice(_position, state.position);
|
|
1338
|
-
return true;
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
function readAlias(state) {
|
|
1342
|
-
var _position, alias,
|
|
1343
|
-
ch;
|
|
1344
|
-
|
|
1345
|
-
ch = state.input.charCodeAt(state.position);
|
|
1346
|
-
|
|
1347
|
-
if (ch !== 0x2A/* * */) return false;
|
|
1348
|
-
|
|
1349
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1350
|
-
_position = state.position;
|
|
1351
|
-
|
|
1352
|
-
while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {
|
|
1353
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
if (state.position === _position) {
|
|
1357
|
-
throwError(state, 'name of an alias node must contain at least one character');
|
|
1358
|
-
}
|
|
1359
|
-
|
|
1360
|
-
alias = state.input.slice(_position, state.position);
|
|
1361
|
-
|
|
1362
|
-
if (!_hasOwnProperty.call(state.anchorMap, alias)) {
|
|
1363
|
-
throwError(state, 'unidentified alias "' + alias + '"');
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
state.result = state.anchorMap[alias];
|
|
1367
|
-
skipSeparationSpace(state, true, -1);
|
|
1368
|
-
return true;
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
|
-
function composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact) {
|
|
1372
|
-
var allowBlockStyles,
|
|
1373
|
-
allowBlockScalars,
|
|
1374
|
-
allowBlockCollections,
|
|
1375
|
-
indentStatus = 1, // 1: this>parent, 0: this=parent, -1: this<parent
|
|
1376
|
-
atNewLine = false,
|
|
1377
|
-
hasContent = false,
|
|
1378
|
-
typeIndex,
|
|
1379
|
-
typeQuantity,
|
|
1380
|
-
typeList,
|
|
1381
|
-
type,
|
|
1382
|
-
flowIndent,
|
|
1383
|
-
blockIndent;
|
|
1384
|
-
|
|
1385
|
-
if (state.listener !== null) {
|
|
1386
|
-
state.listener('open', state);
|
|
1387
|
-
}
|
|
1388
|
-
|
|
1389
|
-
state.tag = null;
|
|
1390
|
-
state.anchor = null;
|
|
1391
|
-
state.kind = null;
|
|
1392
|
-
state.result = null;
|
|
1393
|
-
|
|
1394
|
-
allowBlockStyles = allowBlockScalars = allowBlockCollections =
|
|
1395
|
-
CONTEXT_BLOCK_OUT === nodeContext ||
|
|
1396
|
-
CONTEXT_BLOCK_IN === nodeContext;
|
|
1397
|
-
|
|
1398
|
-
if (allowToSeek) {
|
|
1399
|
-
if (skipSeparationSpace(state, true, -1)) {
|
|
1400
|
-
atNewLine = true;
|
|
1401
|
-
|
|
1402
|
-
if (state.lineIndent > parentIndent) {
|
|
1403
|
-
indentStatus = 1;
|
|
1404
|
-
} else if (state.lineIndent === parentIndent) {
|
|
1405
|
-
indentStatus = 0;
|
|
1406
|
-
} else if (state.lineIndent < parentIndent) {
|
|
1407
|
-
indentStatus = -1;
|
|
1408
|
-
}
|
|
1409
|
-
}
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
|
-
if (indentStatus === 1) {
|
|
1413
|
-
while (readTagProperty(state) || readAnchorProperty(state)) {
|
|
1414
|
-
if (skipSeparationSpace(state, true, -1)) {
|
|
1415
|
-
atNewLine = true;
|
|
1416
|
-
allowBlockCollections = allowBlockStyles;
|
|
1417
|
-
|
|
1418
|
-
if (state.lineIndent > parentIndent) {
|
|
1419
|
-
indentStatus = 1;
|
|
1420
|
-
} else if (state.lineIndent === parentIndent) {
|
|
1421
|
-
indentStatus = 0;
|
|
1422
|
-
} else if (state.lineIndent < parentIndent) {
|
|
1423
|
-
indentStatus = -1;
|
|
1424
|
-
}
|
|
1425
|
-
} else {
|
|
1426
|
-
allowBlockCollections = false;
|
|
1427
|
-
}
|
|
1428
|
-
}
|
|
1429
|
-
}
|
|
1430
|
-
|
|
1431
|
-
if (allowBlockCollections) {
|
|
1432
|
-
allowBlockCollections = atNewLine || allowCompact;
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
if (indentStatus === 1 || CONTEXT_BLOCK_OUT === nodeContext) {
|
|
1436
|
-
if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) {
|
|
1437
|
-
flowIndent = parentIndent;
|
|
1438
|
-
} else {
|
|
1439
|
-
flowIndent = parentIndent + 1;
|
|
1440
|
-
}
|
|
1441
|
-
|
|
1442
|
-
blockIndent = state.position - state.lineStart;
|
|
1443
|
-
|
|
1444
|
-
if (indentStatus === 1) {
|
|
1445
|
-
if (allowBlockCollections &&
|
|
1446
|
-
(readBlockSequence(state, blockIndent) ||
|
|
1447
|
-
readBlockMapping(state, blockIndent, flowIndent)) ||
|
|
1448
|
-
readFlowCollection(state, flowIndent)) {
|
|
1449
|
-
hasContent = true;
|
|
1450
|
-
} else {
|
|
1451
|
-
if ((allowBlockScalars && readBlockScalar(state, flowIndent)) ||
|
|
1452
|
-
readSingleQuotedScalar(state, flowIndent) ||
|
|
1453
|
-
readDoubleQuotedScalar(state, flowIndent)) {
|
|
1454
|
-
hasContent = true;
|
|
1455
|
-
|
|
1456
|
-
} else if (readAlias(state)) {
|
|
1457
|
-
hasContent = true;
|
|
1458
|
-
|
|
1459
|
-
if (state.tag !== null || state.anchor !== null) {
|
|
1460
|
-
throwError(state, 'alias node should not have any properties');
|
|
1461
|
-
}
|
|
1462
|
-
|
|
1463
|
-
} else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) {
|
|
1464
|
-
hasContent = true;
|
|
1465
|
-
|
|
1466
|
-
if (state.tag === null) {
|
|
1467
|
-
state.tag = '?';
|
|
1468
|
-
}
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
if (state.anchor !== null) {
|
|
1472
|
-
state.anchorMap[state.anchor] = state.result;
|
|
1473
|
-
}
|
|
1474
|
-
}
|
|
1475
|
-
} else if (indentStatus === 0) {
|
|
1476
|
-
// Special case: block sequences are allowed to have same indentation level as the parent.
|
|
1477
|
-
// http://www.yaml.org/spec/1.2/spec.html#id2799784
|
|
1478
|
-
hasContent = allowBlockCollections && readBlockSequence(state, blockIndent);
|
|
1479
|
-
}
|
|
1480
|
-
}
|
|
1481
|
-
|
|
1482
|
-
if (state.tag === null) {
|
|
1483
|
-
if (state.anchor !== null) {
|
|
1484
|
-
state.anchorMap[state.anchor] = state.result;
|
|
1485
|
-
}
|
|
1486
|
-
|
|
1487
|
-
} else if (state.tag === '?') {
|
|
1488
|
-
// Implicit resolving is not allowed for non-scalar types, and '?'
|
|
1489
|
-
// non-specific tag is only automatically assigned to plain scalars.
|
|
1490
|
-
//
|
|
1491
|
-
// We only need to check kind conformity in case user explicitly assigns '?'
|
|
1492
|
-
// tag, for example like this: "!<?> [0]"
|
|
1493
|
-
//
|
|
1494
|
-
if (state.result !== null && state.kind !== 'scalar') {
|
|
1495
|
-
throwError(state, 'unacceptable node kind for !<?> tag; it should be "scalar", not "' + state.kind + '"');
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
for (typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {
|
|
1499
|
-
type = state.implicitTypes[typeIndex];
|
|
1500
|
-
|
|
1501
|
-
if (type.resolve(state.result)) { // `state.result` updated in resolver if matched
|
|
1502
|
-
state.result = type.construct(state.result);
|
|
1503
|
-
state.tag = type.tag;
|
|
1504
|
-
if (state.anchor !== null) {
|
|
1505
|
-
state.anchorMap[state.anchor] = state.result;
|
|
1506
|
-
}
|
|
1507
|
-
break;
|
|
1508
|
-
}
|
|
1509
|
-
}
|
|
1510
|
-
} else if (state.tag !== '!') {
|
|
1511
|
-
if (_hasOwnProperty.call(state.typeMap[state.kind || 'fallback'], state.tag)) {
|
|
1512
|
-
type = state.typeMap[state.kind || 'fallback'][state.tag];
|
|
1513
|
-
} else {
|
|
1514
|
-
// looking for multi type
|
|
1515
|
-
type = null;
|
|
1516
|
-
typeList = state.typeMap.multi[state.kind || 'fallback'];
|
|
1517
|
-
|
|
1518
|
-
for (typeIndex = 0, typeQuantity = typeList.length; typeIndex < typeQuantity; typeIndex += 1) {
|
|
1519
|
-
if (state.tag.slice(0, typeList[typeIndex].tag.length) === typeList[typeIndex].tag) {
|
|
1520
|
-
type = typeList[typeIndex];
|
|
1521
|
-
break;
|
|
1522
|
-
}
|
|
1523
|
-
}
|
|
1524
|
-
}
|
|
1525
|
-
|
|
1526
|
-
if (!type) {
|
|
1527
|
-
throwError(state, 'unknown tag !<' + state.tag + '>');
|
|
1528
|
-
}
|
|
1529
|
-
|
|
1530
|
-
if (state.result !== null && type.kind !== state.kind) {
|
|
1531
|
-
throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be "' + type.kind + '", not "' + state.kind + '"');
|
|
1532
|
-
}
|
|
1533
|
-
|
|
1534
|
-
if (!type.resolve(state.result, state.tag)) { // `state.result` updated in resolver if matched
|
|
1535
|
-
throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag');
|
|
1536
|
-
} else {
|
|
1537
|
-
state.result = type.construct(state.result, state.tag);
|
|
1538
|
-
if (state.anchor !== null) {
|
|
1539
|
-
state.anchorMap[state.anchor] = state.result;
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
if (state.listener !== null) {
|
|
1545
|
-
state.listener('close', state);
|
|
1546
|
-
}
|
|
1547
|
-
return state.tag !== null || state.anchor !== null || hasContent;
|
|
1548
|
-
}
|
|
1549
|
-
|
|
1550
|
-
function readDocument(state) {
|
|
1551
|
-
var documentStart = state.position,
|
|
1552
|
-
_position,
|
|
1553
|
-
directiveName,
|
|
1554
|
-
directiveArgs,
|
|
1555
|
-
hasDirectives = false,
|
|
1556
|
-
ch;
|
|
1557
|
-
|
|
1558
|
-
state.version = null;
|
|
1559
|
-
state.checkLineBreaks = state.legacy;
|
|
1560
|
-
state.tagMap = Object.create(null);
|
|
1561
|
-
state.anchorMap = Object.create(null);
|
|
1562
|
-
|
|
1563
|
-
while ((ch = state.input.charCodeAt(state.position)) !== 0) {
|
|
1564
|
-
skipSeparationSpace(state, true, -1);
|
|
1565
|
-
|
|
1566
|
-
ch = state.input.charCodeAt(state.position);
|
|
1567
|
-
|
|
1568
|
-
if (state.lineIndent > 0 || ch !== 0x25/* % */) {
|
|
1569
|
-
break;
|
|
1570
|
-
}
|
|
1571
|
-
|
|
1572
|
-
hasDirectives = true;
|
|
1573
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1574
|
-
_position = state.position;
|
|
1575
|
-
|
|
1576
|
-
while (ch !== 0 && !is_WS_OR_EOL(ch)) {
|
|
1577
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1578
|
-
}
|
|
1579
|
-
|
|
1580
|
-
directiveName = state.input.slice(_position, state.position);
|
|
1581
|
-
directiveArgs = [];
|
|
1582
|
-
|
|
1583
|
-
if (directiveName.length < 1) {
|
|
1584
|
-
throwError(state, 'directive name must not be less than one character in length');
|
|
1585
|
-
}
|
|
1586
|
-
|
|
1587
|
-
while (ch !== 0) {
|
|
1588
|
-
while (is_WHITE_SPACE(ch)) {
|
|
1589
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
if (ch === 0x23/* # */) {
|
|
1593
|
-
do { ch = state.input.charCodeAt(++state.position); }
|
|
1594
|
-
while (ch !== 0 && !is_EOL(ch));
|
|
1595
|
-
break;
|
|
1596
|
-
}
|
|
1597
|
-
|
|
1598
|
-
if (is_EOL(ch)) break;
|
|
1599
|
-
|
|
1600
|
-
_position = state.position;
|
|
1601
|
-
|
|
1602
|
-
while (ch !== 0 && !is_WS_OR_EOL(ch)) {
|
|
1603
|
-
ch = state.input.charCodeAt(++state.position);
|
|
1604
|
-
}
|
|
1605
|
-
|
|
1606
|
-
directiveArgs.push(state.input.slice(_position, state.position));
|
|
1607
|
-
}
|
|
1608
|
-
|
|
1609
|
-
if (ch !== 0) readLineBreak(state);
|
|
1610
|
-
|
|
1611
|
-
if (_hasOwnProperty.call(directiveHandlers, directiveName)) {
|
|
1612
|
-
directiveHandlers[directiveName](state, directiveName, directiveArgs);
|
|
1613
|
-
} else {
|
|
1614
|
-
throwWarning(state, 'unknown document directive "' + directiveName + '"');
|
|
1615
|
-
}
|
|
1616
|
-
}
|
|
1617
|
-
|
|
1618
|
-
skipSeparationSpace(state, true, -1);
|
|
1619
|
-
|
|
1620
|
-
if (state.lineIndent === 0 &&
|
|
1621
|
-
state.input.charCodeAt(state.position) === 0x2D/* - */ &&
|
|
1622
|
-
state.input.charCodeAt(state.position + 1) === 0x2D/* - */ &&
|
|
1623
|
-
state.input.charCodeAt(state.position + 2) === 0x2D/* - */) {
|
|
1624
|
-
state.position += 3;
|
|
1625
|
-
skipSeparationSpace(state, true, -1);
|
|
1626
|
-
|
|
1627
|
-
} else if (hasDirectives) {
|
|
1628
|
-
throwError(state, 'directives end mark is expected');
|
|
1629
|
-
}
|
|
1630
|
-
|
|
1631
|
-
composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true);
|
|
1632
|
-
skipSeparationSpace(state, true, -1);
|
|
1633
|
-
|
|
1634
|
-
if (state.checkLineBreaks &&
|
|
1635
|
-
PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) {
|
|
1636
|
-
throwWarning(state, 'non-ASCII line breaks are interpreted as content');
|
|
1637
|
-
}
|
|
1638
|
-
|
|
1639
|
-
state.documents.push(state.result);
|
|
1640
|
-
|
|
1641
|
-
if (state.position === state.lineStart && testDocumentSeparator(state)) {
|
|
1642
|
-
|
|
1643
|
-
if (state.input.charCodeAt(state.position) === 0x2E/* . */) {
|
|
1644
|
-
state.position += 3;
|
|
1645
|
-
skipSeparationSpace(state, true, -1);
|
|
1646
|
-
}
|
|
1647
|
-
return;
|
|
1648
|
-
}
|
|
1649
|
-
|
|
1650
|
-
if (state.position < (state.length - 1)) {
|
|
1651
|
-
throwError(state, 'end of the stream or a document separator is expected');
|
|
1652
|
-
} else {
|
|
1653
|
-
return;
|
|
1654
|
-
}
|
|
1655
|
-
}
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
function loadDocuments(input, options) {
|
|
1659
|
-
input = String(input);
|
|
1660
|
-
options = options || {};
|
|
1661
|
-
|
|
1662
|
-
if (input.length !== 0) {
|
|
1663
|
-
|
|
1664
|
-
// Add tailing `\n` if not exists
|
|
1665
|
-
if (input.charCodeAt(input.length - 1) !== 0x0A/* LF */ &&
|
|
1666
|
-
input.charCodeAt(input.length - 1) !== 0x0D/* CR */) {
|
|
1667
|
-
input += '\n';
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
|
-
// Strip BOM
|
|
1671
|
-
if (input.charCodeAt(0) === 0xFEFF) {
|
|
1672
|
-
input = input.slice(1);
|
|
1673
|
-
}
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
|
-
var state = new State(input, options);
|
|
1677
|
-
|
|
1678
|
-
var nullpos = input.indexOf('\0');
|
|
1679
|
-
|
|
1680
|
-
if (nullpos !== -1) {
|
|
1681
|
-
state.position = nullpos;
|
|
1682
|
-
throwError(state, 'null byte is not allowed in input');
|
|
1683
|
-
}
|
|
1684
|
-
|
|
1685
|
-
// Use 0 as string terminator. That significantly simplifies bounds check.
|
|
1686
|
-
state.input += '\0';
|
|
1687
|
-
|
|
1688
|
-
while (state.input.charCodeAt(state.position) === 0x20/* Space */) {
|
|
1689
|
-
state.lineIndent += 1;
|
|
1690
|
-
state.position += 1;
|
|
1691
|
-
}
|
|
1692
|
-
|
|
1693
|
-
while (state.position < (state.length - 1)) {
|
|
1694
|
-
readDocument(state);
|
|
1695
|
-
}
|
|
1696
|
-
|
|
1697
|
-
return state.documents;
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
function loadAll(input, iterator, options) {
|
|
1702
|
-
if (iterator !== null && typeof iterator === 'object' && typeof options === 'undefined') {
|
|
1703
|
-
options = iterator;
|
|
1704
|
-
iterator = null;
|
|
1705
|
-
}
|
|
1706
|
-
|
|
1707
|
-
var documents = loadDocuments(input, options);
|
|
1708
|
-
|
|
1709
|
-
if (typeof iterator !== 'function') {
|
|
1710
|
-
return documents;
|
|
1711
|
-
}
|
|
1712
|
-
|
|
1713
|
-
for (var index = 0, length = documents.length; index < length; index += 1) {
|
|
1714
|
-
iterator(documents[index]);
|
|
1715
|
-
}
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
function load(input, options) {
|
|
1720
|
-
var documents = loadDocuments(input, options);
|
|
1721
|
-
|
|
1722
|
-
if (documents.length === 0) {
|
|
1723
|
-
/*eslint-disable no-undefined*/
|
|
1724
|
-
return undefined;
|
|
1725
|
-
} else if (documents.length === 1) {
|
|
1726
|
-
return documents[0];
|
|
1727
|
-
}
|
|
1728
|
-
throw new YAMLException('expected a single document in the stream, but found more');
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
module.exports.loadAll = loadAll;
|
|
1733
|
-
module.exports.load = load;
|