conductor-oss 0.61.9 → 0.61.11
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/LICENSE +202 -21
- package/README.md +15 -0
- package/node_modules/@conductor-oss/core/package.json +1 -1
- package/package.json +10 -10
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/CLI.js +415 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/Cache.js +208 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/ProgressBar.js +143 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/browser-data.js +235 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/chrome.js +302 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/browser-data/types.js +72 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/debug.js +11 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/fileUtil.js +316 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/httpUtil.js +176 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/install.js +349 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/launch.js +426 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/main.js +15 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/package.json +31 -49
- package/web/.next/standalone/node_modules/ansi-styles/index.js +190 -130
- package/web/.next/standalone/node_modules/ansi-styles/package.json +8 -10
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiMapper.js +25 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiNoOpParser.js +276 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/BidiServer.js +165 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/CommandProcessor.js +327 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/OutgoingMessage.js +48 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/bluetooth/BluetoothProcessor.js +407 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/BrowserProcessor.js +289 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/ContextConfig.js +71 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/ContextConfigStorage.js +92 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/browser/UserContextStorage.js +52 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpProcessor.js +56 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpTarget.js +693 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/cdp/CdpTargetManager.js +248 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextImpl.js +1447 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextProcessor.js +263 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/BrowsingContextStorage.js +130 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/context/NavigationTracker.js +325 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/emulation/EmulationProcessor.js +397 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/ActionDispatcher.js +740 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputProcessor.js +190 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputSource.js +154 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputState.js +89 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/InputStateManager.js +30 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/USKeyboardLayout.js +271 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/input/keyUtils.js +492 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/log/LogManager.js +183 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/log/logHelper.js +168 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/CollectorsStorage.js +149 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkProcessor.js +541 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkRequest.js +890 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkStorage.js +349 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/network/NetworkUtils.js +303 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/permissions/PermissionsProcessor.js +51 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/ChannelProxy.js +231 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/PreloadScript.js +129 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/PreloadScriptStorage.js +75 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/Realm.js +481 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/RealmStorage.js +78 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/ScriptProcessor.js +132 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/SharedId.js +70 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/WindowRealm.js +142 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/script/WorkerRealm.js +66 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/EventManager.js +265 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/SessionProcessor.js +127 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/SubscriptionManager.js +266 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/session/events.js +33 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/speculation/SpeculationProcessor.js +58 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/storage/StorageProcessor.js +191 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/bidiMapper/modules/webExtension/WebExtensionProcessor.js +65 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/index.js +19 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/ErrorResponse.js +166 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/cdp.js +2 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/chromium-bidi.js +124 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-bluetooth.js +18 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-nav-speculation.js +18 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-permissions.js +18 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi-ua-client-hints.js +18 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/generated/webdriver-bidi.js +18 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/protocol/protocol.js +26 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Buffer.js +43 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/DefaultMap.js +36 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Deferred.js +67 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/EventEmitter.js +67 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/IdWrapper.js +30 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/Mutex.js +64 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/ProcessingQueue.js +63 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/assert.js +22 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/base64.js +32 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/graphemeTools.js +34 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/log.js +28 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/time.js +24 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/unitConversions.js +21 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/urlHelpers.js +49 -0
- package/web/.next/standalone/node_modules/chromium-bidi/lib/utils/uuid.js +61 -0
- package/web/.next/standalone/node_modules/chromium-bidi/package.json +219 -0
- package/web/.next/standalone/node_modules/cliui/build/lib/index.js +2 -2
- package/web/.next/standalone/node_modules/cliui/index.mjs +7 -5
- package/web/.next/standalone/node_modules/cliui/node_modules/string-width/index.js +56 -21
- package/web/.next/standalone/node_modules/cliui/node_modules/string-width/package.json +18 -10
- package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/index.js +19 -0
- package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
- package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
- package/web/.next/standalone/node_modules/cliui/node_modules/strip-ansi/package.json +59 -0
- package/web/.next/standalone/node_modules/cliui/package.json +20 -31
- package/web/.next/standalone/node_modules/emoji-regex/index.js +3 -5
- package/web/.next/standalone/node_modules/emoji-regex/package.json +43 -48
- package/web/.next/standalone/node_modules/get-east-asian-width/index.js +30 -0
- package/web/.next/standalone/node_modules/get-east-asian-width/lookup-data.js +18 -0
- package/web/.next/standalone/node_modules/get-east-asian-width/lookup.js +135 -0
- package/web/.next/standalone/node_modules/get-east-asian-width/package.json +71 -0
- package/web/.next/standalone/node_modules/get-east-asian-width/utilities.js +24 -0
- package/web/.next/standalone/node_modules/mitt/dist/mitt.mjs +2 -0
- package/web/.next/standalone/node_modules/modern-tar/dist/fs/index.js +746 -0
- package/web/.next/standalone/node_modules/modern-tar/dist/unpacker-CPCEF5CT.js +636 -0
- package/web/.next/standalone/node_modules/modern-tar/package.json +65 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Browser.js +196 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/BrowserContext.js +183 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/HTTPRequest.js +465 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/JSHandle.js +220 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Page.js +1512 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/Target.js +49 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/WebWorker.js +134 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/api/locators/locators.js +799 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BidiOverCdp.js +146 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Browser.js +342 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BrowserConnector.js +86 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/BrowserContext.js +382 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Connection.js +160 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Deserializer.js +80 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/ExposedFunction.js +261 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Frame.js +469 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/HTTPResponse.js +170 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Page.js +977 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/Realm.js +340 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Browser.js +353 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/BrowsingContext.js +639 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Navigation.js +168 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Realm.js +302 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Request.js +308 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/Session.js +178 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/UserContext.js +207 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/bidi/core/UserPrompt.js +132 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Accessibility.js +591 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Binding.js +162 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Browser.js +404 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/BrowserConnector.js +26 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/BrowserContext.js +190 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/CdpSession.js +144 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Connection.js +268 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Coverage.js +372 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/ElementHandle.js +207 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/EmulationManager.js +479 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/ExecutionContext.js +458 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Extension.js +73 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Frame.js +373 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/FrameManager.js +505 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/HTTPRequest.js +195 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/HTTPResponse.js +130 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Input.js +497 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/JSHandle.js +101 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/NetworkManager.js +609 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Page.js +1036 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/Target.js +252 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/TargetManager.js +431 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/WebMCP.js +276 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/cdp/WebWorker.js +113 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/BrowserConnector.js +150 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/BrowserWebSocketTransport.js +40 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/CallbackRegistry.js +136 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/Debug.js +100 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/EventEmitter.js +135 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/common/util.js +382 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/environment.js +26 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/generated/injected.js +9 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/BrowserLauncher.js +327 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/ChromeLauncher.js +278 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/FirefoxLauncher.js +167 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/NodeWebSocketTransport.js +56 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/PipeTransport.js +72 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/PuppeteerNode.js +254 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node/ScreenRecorder.js +309 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/node-env-setup.js +16 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/puppeteer-core.js +36 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/revisions.js +14 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/Mutex.js +50 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/httpUtils.js +24 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/util.js +14 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/puppeteer/util/version.js +10 -0
- package/web/.next/standalone/node_modules/puppeteer-core/package.json +22 -24
- package/web/.next/standalone/node_modules/wrap-ansi/index.js +30 -24
- package/web/.next/standalone/node_modules/wrap-ansi/node_modules/string-width/index.js +56 -21
- package/web/.next/standalone/node_modules/wrap-ansi/node_modules/string-width/package.json +18 -10
- package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +19 -0
- package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
- package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
- package/web/.next/standalone/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +59 -0
- package/web/.next/standalone/node_modules/wrap-ansi/package.json +20 -13
- package/web/.next/standalone/node_modules/yargs/build/lib/command.js +55 -25
- package/web/.next/standalone/node_modules/yargs/build/lib/completion-templates.js +14 -5
- package/web/.next/standalone/node_modules/yargs/build/lib/utils/apply-extends.js +2 -2
- package/web/.next/standalone/node_modules/yargs/build/lib/yargs-factory.js +25 -20
- package/web/.next/standalone/node_modules/yargs/index.mjs +2 -0
- package/web/.next/standalone/node_modules/yargs/lib/platform-shims/esm.mjs +19 -25
- package/web/.next/standalone/node_modules/yargs/node_modules/string-width/index.js +56 -21
- package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/index.js +19 -0
- package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.js +14 -0
- package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/package.json +61 -0
- package/web/.next/standalone/node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/package.json +59 -0
- package/web/.next/standalone/node_modules/yargs/node_modules/string-width/package.json +18 -10
- package/web/.next/standalone/node_modules/yargs/package.json +30 -50
- package/web/.next/standalone/node_modules/yargs-parser/build/lib/index.js +6 -4
- package/web/.next/standalone/node_modules/yargs-parser/build/lib/yargs-parser.js +1 -0
- package/web/.next/standalone/node_modules/yargs-parser/package.json +25 -39
- package/web/.next/standalone/package.json +2 -2
- package/web/.next/standalone/packages/web/.next/BUILD_ID +1 -1
- package/web/.next/standalone/packages/web/.next/app-path-routes-manifest.json +6 -6
- package/web/.next/standalone/packages/web/.next/build-manifest.json +3 -3
- package/web/.next/standalone/packages/web/.next/prerender-manifest.json +3 -3
- package/web/.next/standalone/packages/web/.next/react-loadable-manifest.json +48 -49
- package/web/.next/standalone/packages/web/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.html +1 -1
- 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/_full.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error.segments/_global-error.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.js +1 -1
- 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/api/preferences/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/bindings/route.js +1 -1
- 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.nft.json +1 -1
- 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/bridge/connect/page.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/bridge/connect/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/page.js +2 -2
- 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.js +2 -2
- 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/settings/bridge/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/settings/bridge/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/[[...sign-in]]/page.js +2 -2
- 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/sign-in/hosted/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/hosted/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-in/sso-callback/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page.js +2 -2
- package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page.js.nft.json +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/sign-up/[[...sign-up]]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/unlock/page.js +2 -2
- 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/app-paths-manifest.json +6 -6
- package/web/.next/standalone/packages/web/.next/server/chunks/137.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/1874.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/1883.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/2512.js +3 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/2939.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/3303.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/3337.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/4013.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/4884.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/6472.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/694.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/7055.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/7094.js +3 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/724.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/7481.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/7611.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/7801.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/9455.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/9516.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/9787.js +7 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/9928.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/middleware-build-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/middleware-react-loadable-manifest.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/pages/500.html +1 -1
- 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 +1 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/10647.dfc61f0fe6cce983.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/13831.066db0713c1a8852.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/1464.88b2bdd29a78b74c.js +5 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/19406.fee033bf442e8f76.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/20038.7f2549911927bd0b.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/20135-ff1df49b419ae77c.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/22799.b575f4c8704f662f.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/24315.817fd4bf4fecb10b.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/26866.c9243462e80e9f63.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/26878.58289178165f69c1.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/2818.b02f469acda3daaf.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/28386-0121205400994756.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/30690.c24f9bd9ab7a7001.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/34443.b588efc498117631.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/36902.095f4090617a3ff1.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/37520.6c1f598cd71bd32b.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/37668.c044dfe4830a476e.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/37990.673cfa77e60e5e2b.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/39816.a3835fb513390d7c.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/41696.08fe09203aaf1a18.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/41998.bc97faec5c455d54.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/50706.12afd1d75235ca72.js +3 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/55623.9f20d295e46beb7f.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/590.d15040dc892eee17.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/61782-6b51990ebb9460df.js +3 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/62033.4ca9d0e612fa4381.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/62184-538ffd18551c1091.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/6356.863082dbc37f37c9.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/652.af23595a550d8a34.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/65453.1185ea14d9fff243.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/68782-315b8f48de9c721c.js +3 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/79593-77722bc354e71d2d.js +9 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/81132.bfc52d50d21324b2.js +3 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/83742.2a0531011c4978a3.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/84271-7ad3504a93aa940e.js +2 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/85066-3ed0d5789153e6f9.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/88742.2b2e614444c9020a.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/9016-2b7d7b8b143a8323.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/92333.f198a097718e9120.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/93514.84c566792ef9f58c.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/96983.dff4ffcf73043d2b.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/97331-be3cf2d134454808.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/bridge/connect/page-623bf132b6d6a328.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-d8442063363cd23f.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/page-a82e7b0e3e80ff3e.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/sessions/[id]/page-aeb1ccc1a89248d5.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-4a9fbf697a2c3836.js +9 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-6685d715ddb4ae5d.js +9 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/unlock/page-4f87395d3035a5bf.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/webpack-0e8d1852742b5ee1.js +1 -0
- package/web/.next/standalone/packages/web/package.json +5 -5
- package/web/.next/static/chunks/10647.dfc61f0fe6cce983.js +1 -0
- package/web/.next/static/chunks/13831.066db0713c1a8852.js +1 -0
- package/web/.next/static/chunks/1464.88b2bdd29a78b74c.js +5 -0
- package/web/.next/static/chunks/19406.fee033bf442e8f76.js +1 -0
- package/web/.next/static/chunks/20038.7f2549911927bd0b.js +1 -0
- package/web/.next/static/chunks/20135-ff1df49b419ae77c.js +1 -0
- package/web/.next/static/chunks/22799.b575f4c8704f662f.js +1 -0
- package/web/.next/static/chunks/24315.817fd4bf4fecb10b.js +1 -0
- package/web/.next/static/chunks/26866.c9243462e80e9f63.js +1 -0
- package/web/.next/static/chunks/26878.58289178165f69c1.js +1 -0
- package/web/.next/static/chunks/2818.b02f469acda3daaf.js +1 -0
- package/web/.next/static/chunks/28386-0121205400994756.js +1 -0
- package/web/.next/static/chunks/30690.c24f9bd9ab7a7001.js +1 -0
- package/web/.next/static/chunks/34443.b588efc498117631.js +1 -0
- package/web/.next/static/chunks/36902.095f4090617a3ff1.js +1 -0
- package/web/.next/static/chunks/37520.6c1f598cd71bd32b.js +1 -0
- package/web/.next/static/chunks/37668.c044dfe4830a476e.js +1 -0
- package/web/.next/static/chunks/37990.673cfa77e60e5e2b.js +1 -0
- package/web/.next/static/chunks/39816.a3835fb513390d7c.js +1 -0
- package/web/.next/static/chunks/41696.08fe09203aaf1a18.js +1 -0
- package/web/.next/static/chunks/41998.bc97faec5c455d54.js +1 -0
- package/web/.next/static/chunks/50706.12afd1d75235ca72.js +3 -0
- package/web/.next/static/chunks/55623.9f20d295e46beb7f.js +1 -0
- package/web/.next/static/chunks/590.d15040dc892eee17.js +1 -0
- package/web/.next/static/chunks/61782-6b51990ebb9460df.js +3 -0
- package/web/.next/static/chunks/62033.4ca9d0e612fa4381.js +1 -0
- package/web/.next/static/chunks/62184-538ffd18551c1091.js +1 -0
- package/web/.next/static/chunks/6356.863082dbc37f37c9.js +1 -0
- package/web/.next/static/chunks/652.af23595a550d8a34.js +1 -0
- package/web/.next/static/chunks/65453.1185ea14d9fff243.js +1 -0
- package/web/.next/static/chunks/68782-315b8f48de9c721c.js +3 -0
- package/web/.next/static/chunks/79593-77722bc354e71d2d.js +9 -0
- package/web/.next/static/chunks/81132.bfc52d50d21324b2.js +3 -0
- package/web/.next/static/chunks/83742.2a0531011c4978a3.js +1 -0
- package/web/.next/static/chunks/84271-7ad3504a93aa940e.js +2 -0
- package/web/.next/static/chunks/85066-3ed0d5789153e6f9.js +1 -0
- package/web/.next/static/chunks/88742.2b2e614444c9020a.js +1 -0
- package/web/.next/static/chunks/9016-2b7d7b8b143a8323.js +1 -0
- package/web/.next/static/chunks/92333.f198a097718e9120.js +1 -0
- package/web/.next/static/chunks/93514.84c566792ef9f58c.js +1 -0
- package/web/.next/static/chunks/96983.dff4ffcf73043d2b.js +1 -0
- package/web/.next/static/chunks/97331-be3cf2d134454808.js +1 -0
- package/web/.next/static/chunks/app/bridge/connect/page-623bf132b6d6a328.js +1 -0
- package/web/.next/static/chunks/app/layout-d8442063363cd23f.js +1 -0
- package/web/.next/static/chunks/app/page-a82e7b0e3e80ff3e.js +1 -0
- package/web/.next/static/chunks/app/sessions/[id]/page-aeb1ccc1a89248d5.js +1 -0
- package/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-4a9fbf697a2c3836.js +9 -0
- package/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-6685d715ddb4ae5d.js +9 -0
- package/web/.next/static/chunks/app/unlock/page-4f87395d3035a5bf.js +1 -0
- package/web/.next/static/chunks/webpack-0e8d1852742b5ee1.js +1 -0
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/CLI.js +0 -375
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/Cache.js +0 -216
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/DefaultProvider.js +0 -39
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.js +0 -279
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.js +0 -58
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.js +0 -313
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.js +0 -54
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.js +0 -73
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.js +0 -388
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/browser-data/types.js +0 -66
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/debug.js +0 -14
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/detectPlatform.js +0 -53
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/fileUtil.js +0 -196
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/httpUtil.js +0 -172
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/install.js +0 -362
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/launch.js +0 -439
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/main.js +0 -45
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/provider.js +0 -16
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/CLI.js +0 -338
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/Cache.js +0 -208
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/browser-data.js +0 -235
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/chrome.js +0 -296
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/browser-data/types.js +0 -63
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/debug.js +0 -8
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/fileUtil.js +0 -156
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/httpUtil.js +0 -132
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/install.js +0 -351
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/launch.js +0 -426
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/main.js +0 -15
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/package.json +0 -1
- package/web/.next/standalone/node_modules/ansi-regex/index.js +0 -10
- package/web/.next/standalone/node_modules/ansi-regex/package.json +0 -55
- package/web/.next/standalone/node_modules/b4a/index.js +0 -188
- package/web/.next/standalone/node_modules/b4a/package.json +0 -49
- package/web/.next/standalone/node_modules/bare-events/index.js +0 -367
- package/web/.next/standalone/node_modules/bare-events/lib/errors.js +0 -26
- package/web/.next/standalone/node_modules/bare-events/package.json +0 -61
- package/web/.next/standalone/node_modules/buffer-crc32/index.js +0 -111
- package/web/.next/standalone/node_modules/buffer-crc32/package.json +0 -39
- package/web/.next/standalone/node_modules/cliui/build/index.cjs +0 -302
- package/web/.next/standalone/node_modules/cliui/build/lib/string-utils.js +0 -27
- package/web/.next/standalone/node_modules/color-convert/conversions.js +0 -839
- package/web/.next/standalone/node_modules/color-convert/index.js +0 -81
- package/web/.next/standalone/node_modules/color-convert/package.json +0 -48
- package/web/.next/standalone/node_modules/color-convert/route.js +0 -97
- package/web/.next/standalone/node_modules/color-name/index.js +0 -152
- package/web/.next/standalone/node_modules/color-name/package.json +0 -28
- package/web/.next/standalone/node_modules/end-of-stream/index.js +0 -96
- package/web/.next/standalone/node_modules/end-of-stream/package.json +0 -37
- package/web/.next/standalone/node_modules/events-universal/default.js +0 -1
- package/web/.next/standalone/node_modules/events-universal/index.js +0 -1
- package/web/.next/standalone/node_modules/events-universal/package.json +0 -39
- package/web/.next/standalone/node_modules/extract-zip/index.js +0 -173
- package/web/.next/standalone/node_modules/extract-zip/package.json +0 -80
- package/web/.next/standalone/node_modules/fast-fifo/fixed-size.js +0 -39
- package/web/.next/standalone/node_modules/fast-fifo/index.js +0 -48
- package/web/.next/standalone/node_modules/fast-fifo/package.json +0 -28
- package/web/.next/standalone/node_modules/get-stream/buffer-stream.js +0 -52
- package/web/.next/standalone/node_modules/get-stream/index.js +0 -60
- package/web/.next/standalone/node_modules/get-stream/package.json +0 -50
- package/web/.next/standalone/node_modules/is-fullwidth-code-point/index.js +0 -50
- package/web/.next/standalone/node_modules/is-fullwidth-code-point/package.json +0 -42
- package/web/.next/standalone/node_modules/once/once.js +0 -42
- package/web/.next/standalone/node_modules/once/package.json +0 -33
- package/web/.next/standalone/node_modules/pend/index.js +0 -55
- package/web/.next/standalone/node_modules/pend/package.json +0 -18
- package/web/.next/standalone/node_modules/progress/index.js +0 -1
- package/web/.next/standalone/node_modules/progress/lib/node-progress.js +0 -236
- package/web/.next/standalone/node_modules/progress/package.json +0 -26
- package/web/.next/standalone/node_modules/pump/index.js +0 -86
- package/web/.next/standalone/node_modules/pump/package.json +0 -30
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Browser.js +0 -208
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/BrowserContext.js +0 -187
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/CDPSession.js +0 -72
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/DeviceRequestPrompt.js +0 -38
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Dialog.js +0 -94
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandle.js +0 -1410
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandleSymbol.js +0 -13
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Extension.js +0 -88
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Frame.js +0 -907
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPRequest.js +0 -467
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPResponse.js +0 -60
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Input.js +0 -217
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/JSHandle.js +0 -230
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.js +0 -1516
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Realm.js +0 -76
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Target.js +0 -53
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.js +0 -124
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/api.js +0 -39
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/locators/locators.js +0 -809
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BidiOverCdp.js +0 -182
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BluetoothEmulation.js +0 -42
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Browser.js +0 -345
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserConnector.js +0 -120
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserContext.js +0 -385
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/CDPSession.js +0 -94
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Connection.js +0 -164
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Deserializer.js +0 -84
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/DeviceRequestPrompt.js +0 -90
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Dialog.js +0 -28
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/ElementHandle.js +0 -222
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/ExposedFunction.js +0 -265
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Frame.js +0 -472
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/HTTPRequest.js +0 -257
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/HTTPResponse.js +0 -171
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Input.js +0 -634
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/JSHandle.js +0 -75
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Page.js +0 -986
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Realm.js +0 -346
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Serializer.js +0 -125
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Target.js +0 -153
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/WebWorker.js +0 -38
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/bidi.js +0 -34
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Browser.js +0 -356
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +0 -638
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Navigation.js +0 -171
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Realm.js +0 -308
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Request.js +0 -311
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Session.js +0 -181
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/UserContext.js +0 -210
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/UserPrompt.js +0 -135
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/util.js +0 -145
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Accessibility.js +0 -595
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Binding.js +0 -166
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BluetoothEmulation.js +0 -30
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Browser.js +0 -392
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BrowserConnector.js +0 -29
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BrowserContext.js +0 -196
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpIssue.js +0 -27
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpPreloadScript.js +0 -43
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpSession.js +0 -133
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Connection.js +0 -249
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Coverage.js +0 -378
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +0 -156
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Dialog.js +0 -27
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ElementHandle.js +0 -210
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/EmulationManager.js +0 -462
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ExecutionContext.js +0 -462
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Extension.js +0 -79
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ExtensionTransport.js +0 -179
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Frame.js +0 -377
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameManager.js +0 -499
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameManagerEvents.js +0 -27
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameTree.js +0 -95
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/HTTPRequest.js +0 -199
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/HTTPResponse.js +0 -130
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Input.js +0 -506
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/IsolatedWorld.js +0 -191
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/IsolatedWorlds.js +0 -23
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/JSHandle.js +0 -106
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/LifecycleWatcher.js +0 -178
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/NetworkEventManager.js +0 -166
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/NetworkManager.js +0 -605
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Page.js +0 -1038
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js +0 -72
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Target.js +0 -260
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManageEvents.js +0 -8
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManager.js +0 -418
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Tracing.js +0 -114
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebMCP.js +0 -281
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebWorker.js +0 -102
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/cdp.js +0 -60
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/utils.js +0 -262
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/AriaQueryHandler.js +0 -58
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/BrowserConnector.js +0 -176
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/BrowserWebSocketTransport.js +0 -43
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CSSQueryHandler.js +0 -22
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CallbackRegistry.js +0 -138
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ConsoleMessage.js +0 -82
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CustomQueryHandler.js +0 -118
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Debug.js +0 -149
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Device.js +0 -1607
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Errors.js +0 -104
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/EventEmitter.js +0 -142
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/FileChooser.js +0 -79
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/GetQueryHandler.js +0 -73
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/HandleIterator.js +0 -145
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/LazyArg.js +0 -27
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/NetworkManagerEvents.js +0 -24
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PDFOptions.js +0 -61
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PQueryHandler.js +0 -22
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PSelectorParser.js +0 -103
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/PierceQueryHandler.js +0 -22
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Puppeteer.js +0 -102
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/QueryHandler.js +0 -229
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ScriptInjector.js +0 -55
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/SecurityDetails.js +0 -73
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TaskQueue.js +0 -28
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TextQueryHandler.js +0 -19
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/TimeoutSettings.js +0 -43
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/USKeyboardLayout.js +0 -397
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/WaitTask.js +0 -202
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/XPathQueryHandler.js +0 -25
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/common.js +0 -51
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/util.js +0 -396
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/environment.js +0 -27
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/injected.js +0 -12
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/index-browser.js +0 -27
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/index.js +0 -24
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/BrowserLauncher.js +0 -358
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ChromeLauncher.js +0 -270
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/FirefoxLauncher.js +0 -173
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/LaunchOptions.js +0 -25
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/NodeWebSocketTransport.js +0 -62
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PipeTransport.js +0 -76
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PuppeteerNode.js +0 -285
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ScreenRecorder.js +0 -286
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/node.js +0 -28
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/util/fs.js +0 -31
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/puppeteer-core.js +0 -82
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/revisions.js +0 -17
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/AsyncIterableUtil.js +0 -33
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Deferred.js +0 -109
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/ErrorLike.js +0 -47
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Function.js +0 -76
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Mutex.js +0 -50
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/assert.js +0 -22
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/decorators.js +0 -240
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/disposable.js +0 -347
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/encoding.js +0 -69
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/incremental-id-generator.js +0 -21
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/util.js +0 -29
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/version.js +0 -13
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/mitt/mitt.js +0 -99
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/parsel-js/parsel-js.js +0 -219
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/rxjs/rxjs.js +0 -9738
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/urlpattern-polyfill/urlpattern-polyfill.js +0 -853
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/package.json +0 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Browser.js +0 -204
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/BrowserContext.js +0 -183
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/HTTPRequest.js +0 -461
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/JSHandle.js +0 -227
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js +0 -1512
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Target.js +0 -49
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.js +0 -120
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/locators/locators.js +0 -799
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BidiOverCdp.js +0 -146
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Browser.js +0 -342
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserConnector.js +0 -84
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserContext.js +0 -382
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Connection.js +0 -160
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Deserializer.js +0 -80
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/ExposedFunction.js +0 -261
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Frame.js +0 -469
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/HTTPResponse.js +0 -168
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Page.js +0 -978
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Realm.js +0 -340
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Browser.js +0 -353
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/BrowsingContext.js +0 -635
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Navigation.js +0 -168
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Realm.js +0 -302
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Request.js +0 -308
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Session.js +0 -178
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/UserContext.js +0 -207
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/UserPrompt.js +0 -132
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Accessibility.js +0 -591
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Binding.js +0 -162
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Browser.js +0 -388
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/BrowserConnector.js +0 -26
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/BrowserContext.js +0 -192
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/CdpSession.js +0 -129
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Connection.js +0 -244
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Coverage.js +0 -372
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ElementHandle.js +0 -207
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/EmulationManager.js +0 -458
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js +0 -458
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Extension.js +0 -75
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Frame.js +0 -373
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/FrameManager.js +0 -495
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/HTTPRequest.js +0 -195
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/HTTPResponse.js +0 -126
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Input.js +0 -499
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/JSHandle.js +0 -101
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/NetworkManager.js +0 -601
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Page.js +0 -1032
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Target.js +0 -252
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/TargetManager.js +0 -414
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebMCP.js +0 -275
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebWorker.js +0 -98
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserConnector.js +0 -139
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +0 -39
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/CallbackRegistry.js +0 -133
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/Debug.js +0 -109
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/EventEmitter.js +0 -135
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/util.js +0 -375
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/environment.js +0 -24
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/generated/injected.js +0 -9
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/BrowserLauncher.js +0 -321
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ChromeLauncher.js +0 -261
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/FirefoxLauncher.js +0 -166
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/NodeWebSocketTransport.js +0 -55
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/PipeTransport.js +0 -72
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/PuppeteerNode.js +0 -281
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ScreenRecorder.js +0 -280
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/puppeteer-core.js +0 -41
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/revisions.js +0 -14
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/Mutex.js +0 -46
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/util.js +0 -13
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/version.js +0 -10
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiMapper.js +0 -31
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiNoOpParser.js +0 -274
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiServer.js +0 -169
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/CommandProcessor.js +0 -326
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/OutgoingMessage.js +0 -52
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/bluetooth/BluetoothProcessor.js +0 -411
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.js +0 -294
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/ContextConfig.js +0 -74
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/ContextConfigStorage.js +0 -96
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/UserContextStorage.js +0 -56
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpProcessor.js +0 -60
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpTarget.js +0 -695
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/cdp/CdpTargetManager.js +0 -252
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextImpl.js +0 -1463
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextProcessor.js +0 -267
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextStorage.js +0 -134
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/NavigationTracker.js +0 -331
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/emulation/EmulationProcessor.js +0 -384
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/ActionDispatcher.js +0 -744
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputProcessor.js +0 -194
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputSource.js +0 -161
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputState.js +0 -93
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputStateManager.js +0 -34
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/USKeyboardLayout.js +0 -274
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/keyUtils.js +0 -497
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/log/LogManager.js +0 -187
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/log/logHelper.js +0 -172
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/CollectorsStorage.js +0 -153
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkProcessor.js +0 -546
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkRequest.js +0 -894
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkStorage.js +0 -353
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkUtils.js +0 -322
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/permissions/PermissionsProcessor.js +0 -55
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/ChannelProxy.js +0 -235
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/PreloadScript.js +0 -133
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/PreloadScriptStorage.js +0 -79
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/Realm.js +0 -485
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/RealmStorage.js +0 -82
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/ScriptProcessor.js +0 -136
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/SharedId.js +0 -74
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/WindowRealm.js +0 -146
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/script/WorkerRealm.js +0 -70
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/EventManager.js +0 -269
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/SessionProcessor.js +0 -131
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/SubscriptionManager.js +0 -273
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/session/events.js +0 -37
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/speculation/SpeculationProcessor.js +0 -62
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/storage/StorageProcessor.js +0 -195
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/webExtension/WebExtensionProcessor.js +0 -69
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/ErrorResponse.js +0 -199
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/cdp.js +0 -3
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/chromium-bidi.js +0 -127
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.js +0 -19
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-nav-speculation.js +0 -19
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-permissions.js +0 -19
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-ua-client-hints.js +0 -19
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi.js +0 -19
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/protocol.js +0 -65
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Buffer.js +0 -47
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/DefaultMap.js +0 -40
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Deferred.js +0 -71
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/EventEmitter.js +0 -74
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/IdWrapper.js +0 -34
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/Mutex.js +0 -68
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/ProcessingQueue.js +0 -67
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/assert.js +0 -25
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/base64.js +0 -35
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/graphemeTools.js +0 -38
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/log.js +0 -31
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/time.js +0 -27
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/unitConversions.js +0 -24
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/urlHelpers.js +0 -52
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/utils/uuid.js +0 -64
- package/web/.next/standalone/node_modules/puppeteer-core/node_modules/chromium-bidi/package.json +0 -252
- package/web/.next/standalone/node_modules/require-directory/index.js +0 -86
- package/web/.next/standalone/node_modules/require-directory/package.json +0 -40
- package/web/.next/standalone/node_modules/semver/functions/clean.js +0 -8
- package/web/.next/standalone/node_modules/semver/functions/compare-build.js +0 -9
- package/web/.next/standalone/node_modules/semver/functions/compare-loose.js +0 -5
- package/web/.next/standalone/node_modules/semver/functions/diff.js +0 -60
- package/web/.next/standalone/node_modules/semver/functions/inc.js +0 -21
- package/web/.next/standalone/node_modules/semver/functions/major.js +0 -5
- package/web/.next/standalone/node_modules/semver/functions/minor.js +0 -5
- package/web/.next/standalone/node_modules/semver/functions/patch.js +0 -5
- package/web/.next/standalone/node_modules/semver/functions/prerelease.js +0 -8
- package/web/.next/standalone/node_modules/semver/functions/rcompare.js +0 -5
- package/web/.next/standalone/node_modules/semver/functions/rsort.js +0 -5
- package/web/.next/standalone/node_modules/semver/functions/sort.js +0 -5
- package/web/.next/standalone/node_modules/semver/functions/valid.js +0 -8
- package/web/.next/standalone/node_modules/semver/index.js +0 -91
- package/web/.next/standalone/node_modules/semver/preload.js +0 -4
- package/web/.next/standalone/node_modules/semver/ranges/gtr.js +0 -6
- package/web/.next/standalone/node_modules/semver/ranges/intersects.js +0 -9
- package/web/.next/standalone/node_modules/semver/ranges/ltr.js +0 -6
- package/web/.next/standalone/node_modules/semver/ranges/max-satisfying.js +0 -27
- package/web/.next/standalone/node_modules/semver/ranges/min-satisfying.js +0 -26
- package/web/.next/standalone/node_modules/semver/ranges/min-version.js +0 -63
- package/web/.next/standalone/node_modules/semver/ranges/outside.js +0 -82
- package/web/.next/standalone/node_modules/semver/ranges/simplify.js +0 -49
- package/web/.next/standalone/node_modules/semver/ranges/subset.js +0 -249
- package/web/.next/standalone/node_modules/semver/ranges/to-comparators.js +0 -10
- package/web/.next/standalone/node_modules/semver/ranges/valid.js +0 -13
- package/web/.next/standalone/node_modules/streamx/index.js +0 -1184
- package/web/.next/standalone/node_modules/streamx/package.json +0 -34
- package/web/.next/standalone/node_modules/strip-ansi/index.js +0 -4
- package/web/.next/standalone/node_modules/strip-ansi/package.json +0 -54
- package/web/.next/standalone/node_modules/tar-fs/index.js +0 -400
- package/web/.next/standalone/node_modules/tar-fs/package.json +0 -61
- package/web/.next/standalone/node_modules/tar-stream/constants.js +0 -14
- package/web/.next/standalone/node_modules/tar-stream/extract.js +0 -406
- package/web/.next/standalone/node_modules/tar-stream/headers.js +0 -321
- package/web/.next/standalone/node_modules/tar-stream/index.js +0 -2
- package/web/.next/standalone/node_modules/tar-stream/pack.js +0 -287
- package/web/.next/standalone/node_modules/tar-stream/package.json +0 -42
- package/web/.next/standalone/node_modules/text-decoder/index.js +0 -64
- package/web/.next/standalone/node_modules/text-decoder/lib/pass-through-decoder.js +0 -19
- package/web/.next/standalone/node_modules/text-decoder/lib/utf8-decoder.js +0 -185
- package/web/.next/standalone/node_modules/text-decoder/package.json +0 -39
- package/web/.next/standalone/node_modules/wrappy/package.json +0 -29
- package/web/.next/standalone/node_modules/wrappy/wrappy.js +0 -33
- package/web/.next/standalone/node_modules/yargs/build/index.cjs +0 -1
- package/web/.next/standalone/node_modules/yargs/build/lib/utils/which-module.js +0 -10
- package/web/.next/standalone/node_modules/yargs/helpers/index.js +0 -14
- package/web/.next/standalone/node_modules/yargs/helpers/package.json +0 -3
- package/web/.next/standalone/node_modules/yargs/index.cjs +0 -53
- package/web/.next/standalone/node_modules/yargs/locales/be.json +0 -46
- package/web/.next/standalone/node_modules/yargs/locales/cs.json +0 -51
- package/web/.next/standalone/node_modules/yargs/locales/de.json +0 -46
- package/web/.next/standalone/node_modules/yargs/locales/en.json +0 -55
- package/web/.next/standalone/node_modules/yargs/locales/es.json +0 -46
- package/web/.next/standalone/node_modules/yargs/locales/fi.json +0 -49
- package/web/.next/standalone/node_modules/yargs/locales/fr.json +0 -53
- package/web/.next/standalone/node_modules/yargs/locales/hi.json +0 -49
- package/web/.next/standalone/node_modules/yargs/locales/hu.json +0 -46
- package/web/.next/standalone/node_modules/yargs/locales/id.json +0 -50
- package/web/.next/standalone/node_modules/yargs/locales/it.json +0 -46
- package/web/.next/standalone/node_modules/yargs/locales/ja.json +0 -51
- package/web/.next/standalone/node_modules/yargs/locales/ko.json +0 -49
- package/web/.next/standalone/node_modules/yargs/locales/nb.json +0 -44
- package/web/.next/standalone/node_modules/yargs/locales/nl.json +0 -49
- package/web/.next/standalone/node_modules/yargs/locales/nn.json +0 -44
- package/web/.next/standalone/node_modules/yargs/locales/pirate.json +0 -13
- package/web/.next/standalone/node_modules/yargs/locales/pl.json +0 -49
- package/web/.next/standalone/node_modules/yargs/locales/pt.json +0 -45
- package/web/.next/standalone/node_modules/yargs/locales/pt_BR.json +0 -48
- package/web/.next/standalone/node_modules/yargs/locales/ru.json +0 -51
- package/web/.next/standalone/node_modules/yargs/locales/th.json +0 -46
- package/web/.next/standalone/node_modules/yargs/locales/tr.json +0 -48
- package/web/.next/standalone/node_modules/yargs/locales/uk_UA.json +0 -51
- package/web/.next/standalone/node_modules/yargs/locales/uz.json +0 -52
- package/web/.next/standalone/node_modules/yargs/locales/zh_CN.json +0 -48
- package/web/.next/standalone/node_modules/yargs/locales/zh_TW.json +0 -51
- package/web/.next/standalone/node_modules/yargs-parser/build/index.cjs +0 -1050
- package/web/.next/standalone/node_modules/yauzl/fd-slicer.js +0 -188
- package/web/.next/standalone/node_modules/yauzl/index.js +0 -968
- package/web/.next/standalone/node_modules/yauzl/package.json +0 -40
- package/web/.next/standalone/packages/web/.next/server/chunks/1669.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/1827.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/2139.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/3364.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/3523.js +0 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/3575.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/3855.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/4036.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/4371.js +0 -7
- package/web/.next/standalone/packages/web/.next/server/chunks/4682.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/4944.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/5538.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/6014.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/6034.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/6822.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/7895.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/8851.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/9789.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/13831.c5add20802d784d5.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/19406.04136e47c9312bdb.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/22799.10cdf9a63b484539.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/24315.b4199b1b2bf0d590.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/24607.272ce532ac5ed877.js +0 -3
- package/web/.next/standalone/packages/web/.next/static/chunks/26866.da7df15102380a9e.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/2818.c726390e344d6293.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/28386-521e4daee9fe51c3.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/29450-8d186ad90ecd95e7.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/30690.a8c29f006eadb5c9.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/34443.dd685ddabb86dcd4.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/35493-bec918ac58d9fc84.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/35863.c344da3f5e1ece6c.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/36902.58a2e10d61e1c29c.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/37520.f4417e2e4b0933a8.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/37668.804fa74c6bed7446.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/37990.9e5281f849e5c037.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/43971.78cca6926cb705d4.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/54177-992dd90f131d13e7.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/55623.fc2d575acd527888.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/56701-1d3df200ffd6a638.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/56817.538909e891e3b65d.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/58607.bce7eb75dddcebd1.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/60633.efb22d7f605ddec0.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/61962-bd86b676175cca19.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/62033.726b5765f23a0520.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/652.12ff6c934f10168a.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/65453.d024715dc3e78a51.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/66173.b9ad09199df2d44d.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/70232.eda405393dca2b67.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/71006.c571b4062ce8ade9.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/79167.6eff790c20304ba0.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/79593-3520e533469cda7b.js +0 -9
- package/web/.next/standalone/packages/web/.next/static/chunks/79739.f779af05a3e0f6cf.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/81132.8414066d4a5a3014.js +0 -3
- package/web/.next/standalone/packages/web/.next/static/chunks/81874.d7e8e971d89868fb.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/82175-bc05c221ba90422c.js +0 -3
- package/web/.next/standalone/packages/web/.next/static/chunks/83742.86da416e90e96d34.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/84271-4d1e0454ca612f5c.js +0 -2
- package/web/.next/standalone/packages/web/.next/static/chunks/883-bd3ca76b76fb6a07.js +0 -3
- package/web/.next/standalone/packages/web/.next/static/chunks/90694.044c53c7cbbb704b.js +0 -5
- package/web/.next/standalone/packages/web/.next/static/chunks/92333.3c74596acf217cc3.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/93514.05e809fc49375ade.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/bridge/connect/page-0c90eb3e3764ab94.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-77fdeb28bba1c485.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/page-4c94c2a3cc348ae9.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/sessions/[id]/page-bda93e3cb096137a.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js +0 -9
- package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-35e34a3cc336595c.js +0 -9
- package/web/.next/standalone/packages/web/.next/static/chunks/app/unlock/page-873f594daba5cca9.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/webpack-440ef92d9b83f1cc.js +0 -1
- package/web/.next/static/chunks/13831.c5add20802d784d5.js +0 -1
- package/web/.next/static/chunks/19406.04136e47c9312bdb.js +0 -1
- package/web/.next/static/chunks/22799.10cdf9a63b484539.js +0 -1
- package/web/.next/static/chunks/24315.b4199b1b2bf0d590.js +0 -1
- package/web/.next/static/chunks/24607.272ce532ac5ed877.js +0 -3
- package/web/.next/static/chunks/26866.da7df15102380a9e.js +0 -1
- package/web/.next/static/chunks/2818.c726390e344d6293.js +0 -1
- package/web/.next/static/chunks/28386-521e4daee9fe51c3.js +0 -1
- package/web/.next/static/chunks/29450-8d186ad90ecd95e7.js +0 -1
- package/web/.next/static/chunks/30690.a8c29f006eadb5c9.js +0 -1
- package/web/.next/static/chunks/34443.dd685ddabb86dcd4.js +0 -1
- package/web/.next/static/chunks/35493-bec918ac58d9fc84.js +0 -1
- package/web/.next/static/chunks/35863.c344da3f5e1ece6c.js +0 -1
- package/web/.next/static/chunks/36902.58a2e10d61e1c29c.js +0 -1
- package/web/.next/static/chunks/37520.f4417e2e4b0933a8.js +0 -1
- package/web/.next/static/chunks/37668.804fa74c6bed7446.js +0 -1
- package/web/.next/static/chunks/37990.9e5281f849e5c037.js +0 -1
- package/web/.next/static/chunks/43971.78cca6926cb705d4.js +0 -1
- package/web/.next/static/chunks/54177-992dd90f131d13e7.js +0 -1
- package/web/.next/static/chunks/55623.fc2d575acd527888.js +0 -1
- package/web/.next/static/chunks/56701-1d3df200ffd6a638.js +0 -1
- package/web/.next/static/chunks/56817.538909e891e3b65d.js +0 -1
- package/web/.next/static/chunks/58607.bce7eb75dddcebd1.js +0 -1
- package/web/.next/static/chunks/60633.efb22d7f605ddec0.js +0 -1
- package/web/.next/static/chunks/61962-bd86b676175cca19.js +0 -1
- package/web/.next/static/chunks/62033.726b5765f23a0520.js +0 -1
- package/web/.next/static/chunks/652.12ff6c934f10168a.js +0 -1
- package/web/.next/static/chunks/65453.d024715dc3e78a51.js +0 -1
- package/web/.next/static/chunks/66173.b9ad09199df2d44d.js +0 -1
- package/web/.next/static/chunks/70232.eda405393dca2b67.js +0 -1
- package/web/.next/static/chunks/71006.c571b4062ce8ade9.js +0 -1
- package/web/.next/static/chunks/79167.6eff790c20304ba0.js +0 -1
- package/web/.next/static/chunks/79593-3520e533469cda7b.js +0 -9
- package/web/.next/static/chunks/79739.f779af05a3e0f6cf.js +0 -1
- package/web/.next/static/chunks/81132.8414066d4a5a3014.js +0 -3
- package/web/.next/static/chunks/81874.d7e8e971d89868fb.js +0 -1
- package/web/.next/static/chunks/82175-bc05c221ba90422c.js +0 -3
- package/web/.next/static/chunks/83742.86da416e90e96d34.js +0 -1
- package/web/.next/static/chunks/84271-4d1e0454ca612f5c.js +0 -2
- package/web/.next/static/chunks/883-bd3ca76b76fb6a07.js +0 -3
- package/web/.next/static/chunks/90694.044c53c7cbbb704b.js +0 -5
- package/web/.next/static/chunks/92333.3c74596acf217cc3.js +0 -1
- package/web/.next/static/chunks/93514.05e809fc49375ade.js +0 -1
- package/web/.next/static/chunks/app/bridge/connect/page-0c90eb3e3764ab94.js +0 -1
- package/web/.next/static/chunks/app/layout-77fdeb28bba1c485.js +0 -1
- package/web/.next/static/chunks/app/page-4c94c2a3cc348ae9.js +0 -1
- package/web/.next/static/chunks/app/sessions/[id]/page-bda93e3cb096137a.js +0 -1
- package/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js +0 -9
- package/web/.next/static/chunks/app/sign-up/[[...sign-up]]/page-35e34a3cc336595c.js +0 -9
- package/web/.next/static/chunks/app/unlock/page-873f594daba5cca9.js +0 -1
- package/web/.next/static/chunks/webpack-440ef92d9b83f1cc.js +0 -1
- /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/DefaultProvider.js → DefaultProvider.js} +0 -0
- /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chrome-headless-shell.js +0 -0
- /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chromedriver.js +0 -0
- /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/chromium.js +0 -0
- /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/browser-data → browser-data}/firefox.js +0 -0
- /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/detectPlatform.js → detectPlatform.js} +0 -0
- /package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/{esm/provider.js → provider.js} +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/CDPSession.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/DeviceRequestPrompt.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Dialog.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/ElementHandle.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/ElementHandleSymbol.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Extension.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Frame.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/HTTPResponse.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Input.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/Realm.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/api/api.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/BluetoothEmulation.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/CDPSession.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/DeviceRequestPrompt.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Dialog.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/ElementHandle.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/HTTPRequest.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Input.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/JSHandle.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Serializer.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/Target.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/WebWorker.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/bidi.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/bidi/util.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/BluetoothEmulation.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/CdpIssue.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/CdpPreloadScript.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/DeviceRequestPrompt.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/Dialog.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/ExtensionTransport.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/FrameManagerEvents.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/FrameTree.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/IsolatedWorld.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/IsolatedWorlds.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/LifecycleWatcher.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/NetworkEventManager.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/PredefinedNetworkConditions.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/TargetManageEvents.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/Tracing.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/cdp.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/cdp/utils.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/AriaQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/CSSQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/ConsoleMessage.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/CustomQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Device.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Errors.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/FileChooser.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/GetQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/HandleIterator.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/LazyArg.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/NetworkManagerEvents.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PDFOptions.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PSelectorParser.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/PierceQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/Puppeteer.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/QueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/ScriptInjector.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/SecurityDetails.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TaskQueue.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TextQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/TimeoutSettings.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/USKeyboardLayout.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/WaitTask.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/XPathQueryHandler.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/common/common.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/index-browser.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/index.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/LaunchOptions.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/node.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/node/util/fs.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/AsyncIterableUtil.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/Deferred.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/ErrorLike.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/Function.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/assert.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/decorators.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/disposable.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/encoding.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/puppeteer → puppeteer}/util/incremental-id-generator.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/mitt/mitt.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/parsel-js/parsel-js.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/rxjs/rxjs.js +0 -0
- /package/web/.next/standalone/node_modules/puppeteer-core/lib/{esm/third_party → third_party}/urlpattern-polyfill/urlpattern-polyfill.js +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_buildManifest.js +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_ssgManifest.js +0 -0
- /package/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_buildManifest.js +0 -0
- /package/web/.next/static/{uTI34-tJKJflLOXUvsBnn → w12JldExlHHCXBnp5E_5F}/_ssgManifest.js +0 -0
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Google Inc.
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
import { spawn } from 'node:child_process';
|
|
7
|
+
import fs from 'node:fs';
|
|
8
|
+
import os from 'node:os';
|
|
9
|
+
import path from 'node:path';
|
|
10
|
+
import { stdin as input, stdout as output } from 'node:process';
|
|
11
|
+
import * as readline from 'node:readline';
|
|
12
|
+
import { Browser, resolveBuildId, BrowserPlatform, verifyChromeReleaseChannel, } from './browser-data/browser-data.js';
|
|
13
|
+
import { Cache } from './Cache.js';
|
|
14
|
+
import { detectBrowserPlatform } from './detectPlatform.js';
|
|
15
|
+
import { install } from './install.js';
|
|
16
|
+
import { computeExecutablePath, computeSystemExecutablePath, launch, } from './launch.js';
|
|
17
|
+
function isValidBrowser(browser) {
|
|
18
|
+
return Object.values(Browser).includes(browser);
|
|
19
|
+
}
|
|
20
|
+
function isValidPlatform(platform) {
|
|
21
|
+
return Object.values(BrowserPlatform).includes(platform);
|
|
22
|
+
}
|
|
23
|
+
// If moved update release-please config
|
|
24
|
+
// x-release-please-start-version
|
|
25
|
+
const packageVersion = '3.0.6';
|
|
26
|
+
// x-release-please-end
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export class CLI {
|
|
31
|
+
#cachePath;
|
|
32
|
+
#rl;
|
|
33
|
+
#scriptName;
|
|
34
|
+
#version;
|
|
35
|
+
#allowCachePathOverride;
|
|
36
|
+
#pinnedBrowsers;
|
|
37
|
+
#prefixCommand;
|
|
38
|
+
constructor(opts, rl) {
|
|
39
|
+
if (!opts) {
|
|
40
|
+
opts = {};
|
|
41
|
+
}
|
|
42
|
+
if (typeof opts === 'string') {
|
|
43
|
+
opts = {
|
|
44
|
+
cachePath: opts,
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
this.#cachePath = opts.cachePath ?? process.cwd();
|
|
48
|
+
this.#rl = rl;
|
|
49
|
+
this.#scriptName = opts.scriptName ?? '@puppeteer/browsers';
|
|
50
|
+
this.#version = opts.version ?? packageVersion;
|
|
51
|
+
this.#allowCachePathOverride = opts.allowCachePathOverride ?? true;
|
|
52
|
+
this.#pinnedBrowsers = opts.pinnedBrowsers;
|
|
53
|
+
this.#prefixCommand = opts.prefixCommand;
|
|
54
|
+
}
|
|
55
|
+
#defineBrowserParameter(yargs, required) {
|
|
56
|
+
return yargs.positional('browser', {
|
|
57
|
+
description: 'Which browser to install <browser>[@<buildId|latest>]. `latest` will try to find the latest available build. `buildId` is a browser-specific identifier such as a version or a revision.',
|
|
58
|
+
type: 'string',
|
|
59
|
+
coerce: (opt) => {
|
|
60
|
+
const browser = {
|
|
61
|
+
name: this.#parseBrowser(opt),
|
|
62
|
+
buildId: this.#parseBuildId(opt),
|
|
63
|
+
};
|
|
64
|
+
if (!isValidBrowser(browser.name)) {
|
|
65
|
+
throw new Error(`Unsupported browser '${browser.name}'`);
|
|
66
|
+
}
|
|
67
|
+
return browser;
|
|
68
|
+
},
|
|
69
|
+
demandOption: required,
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
#definePlatformParameter(yargs) {
|
|
73
|
+
return yargs.option('platform', {
|
|
74
|
+
type: 'string',
|
|
75
|
+
desc: 'Platform that the binary needs to be compatible with.',
|
|
76
|
+
choices: Object.values(BrowserPlatform),
|
|
77
|
+
default: detectBrowserPlatform(),
|
|
78
|
+
coerce: platform => {
|
|
79
|
+
if (!isValidPlatform(platform)) {
|
|
80
|
+
throw new Error(`Unsupported platform '${platform}'`);
|
|
81
|
+
}
|
|
82
|
+
return platform;
|
|
83
|
+
},
|
|
84
|
+
defaultDescription: 'Auto-detected',
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
#definePathParameter(yargs, required = false) {
|
|
88
|
+
if (!this.#allowCachePathOverride) {
|
|
89
|
+
return yargs;
|
|
90
|
+
}
|
|
91
|
+
return yargs.option('path', {
|
|
92
|
+
type: 'string',
|
|
93
|
+
desc: 'Path to the root folder for the browser downloads and installation. If a relative path is provided, it will be resolved relative to the current working directory. The installation folder structure is compatible with the cache structure used by Puppeteer.',
|
|
94
|
+
defaultDescription: 'Current working directory',
|
|
95
|
+
...(required ? {} : { default: process.cwd() }),
|
|
96
|
+
demandOption: required,
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
async run(argv) {
|
|
100
|
+
const { default: yargs } = await import('yargs');
|
|
101
|
+
const { hideBin } = await import('yargs/helpers');
|
|
102
|
+
const yargsInstance = yargs(hideBin(argv));
|
|
103
|
+
let target = yargsInstance
|
|
104
|
+
.scriptName(this.#scriptName)
|
|
105
|
+
.version(this.#version);
|
|
106
|
+
if (this.#prefixCommand) {
|
|
107
|
+
target = target.command(this.#prefixCommand.cmd, this.#prefixCommand.description, yargs => {
|
|
108
|
+
return this.#build(yargs);
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
else {
|
|
112
|
+
target = this.#build(target);
|
|
113
|
+
}
|
|
114
|
+
await target
|
|
115
|
+
.demandCommand(1)
|
|
116
|
+
.help()
|
|
117
|
+
.wrap(Math.min(120, yargsInstance.terminalWidth()))
|
|
118
|
+
.parseAsync();
|
|
119
|
+
}
|
|
120
|
+
#build(yargs) {
|
|
121
|
+
const latestOrPinned = this.#pinnedBrowsers ? 'pinned' : 'latest';
|
|
122
|
+
// If there are pinned browsers allow the positional arg to be optional
|
|
123
|
+
const browserArgType = this.#pinnedBrowsers ? '[browser]' : '<browser>';
|
|
124
|
+
return yargs
|
|
125
|
+
.command(`install ${browserArgType}`, 'Download and install the specified browser. If successful, the command outputs the actual browser buildId that was installed and the absolute path to the browser executable (see --format).', yargs => {
|
|
126
|
+
if (this.#pinnedBrowsers) {
|
|
127
|
+
yargs.example('$0 install', 'Install all pinned browsers');
|
|
128
|
+
}
|
|
129
|
+
yargs
|
|
130
|
+
.example('$0 install chrome', `Install the ${latestOrPinned} available build of the Chrome browser.`)
|
|
131
|
+
.example('$0 install chrome@latest', 'Install the latest available build for the Chrome browser.')
|
|
132
|
+
.example('$0 install chrome@stable', 'Install the latest available build for the Chrome browser from the stable channel.')
|
|
133
|
+
.example('$0 install chrome@beta', 'Install the latest available build for the Chrome browser from the beta channel.')
|
|
134
|
+
.example('$0 install chrome@dev', 'Install the latest available build for the Chrome browser from the dev channel.')
|
|
135
|
+
.example('$0 install chrome@canary', 'Install the latest available build for the Chrome Canary browser.')
|
|
136
|
+
.example('$0 install chrome@115', 'Install the latest available build for Chrome 115.')
|
|
137
|
+
.example('$0 install chromedriver@canary', 'Install the latest available build for ChromeDriver Canary.')
|
|
138
|
+
.example('$0 install chromedriver@115', 'Install the latest available build for ChromeDriver 115.')
|
|
139
|
+
.example('$0 install chromedriver@115.0.5790', 'Install the latest available patch (115.0.5790.X) build for ChromeDriver.')
|
|
140
|
+
.example('$0 install chrome-headless-shell', 'Install the latest available chrome-headless-shell build.')
|
|
141
|
+
.example('$0 install chrome-headless-shell@beta', 'Install the latest available chrome-headless-shell build corresponding to the Beta channel.')
|
|
142
|
+
.example('$0 install chrome-headless-shell@118', 'Install the latest available chrome-headless-shell 118 build.')
|
|
143
|
+
.example('$0 install chromium@1083080', 'Install the revision 1083080 of the Chromium browser.')
|
|
144
|
+
.example('$0 install firefox', 'Install the latest nightly available build of the Firefox browser.')
|
|
145
|
+
.example('$0 install firefox@stable', 'Install the latest stable build of the Firefox browser.')
|
|
146
|
+
.example('$0 install firefox@beta', 'Install the latest beta build of the Firefox browser.')
|
|
147
|
+
.example('$0 install firefox@devedition', 'Install the latest devedition build of the Firefox browser.')
|
|
148
|
+
.example('$0 install firefox@esr', 'Install the latest ESR build of the Firefox browser.')
|
|
149
|
+
.example('$0 install firefox@nightly', 'Install the latest nightly build of the Firefox browser.')
|
|
150
|
+
.example('$0 install firefox@stable_111.0.1', 'Install a specific version of the Firefox browser.')
|
|
151
|
+
.example('$0 install firefox --platform mac', 'Install the latest Mac (Intel) build of the Firefox browser.');
|
|
152
|
+
if (this.#allowCachePathOverride) {
|
|
153
|
+
yargs.example('$0 install firefox --path /tmp/my-browser-cache', 'Install to the specified cache directory.');
|
|
154
|
+
}
|
|
155
|
+
const yargsWithBrowserParam = this.#defineBrowserParameter(yargs, !Boolean(this.#pinnedBrowsers));
|
|
156
|
+
const yargsWithPlatformParam = this.#definePlatformParameter(yargsWithBrowserParam);
|
|
157
|
+
return this.#definePathParameter(yargsWithPlatformParam, false)
|
|
158
|
+
.option('base-url', {
|
|
159
|
+
type: 'string',
|
|
160
|
+
desc: 'Base URL to download from',
|
|
161
|
+
})
|
|
162
|
+
.option('install-deps', {
|
|
163
|
+
type: 'boolean',
|
|
164
|
+
desc: 'Whether to attempt installing system dependencies (only supported on Linux, requires root privileges).',
|
|
165
|
+
default: false,
|
|
166
|
+
})
|
|
167
|
+
.option('format', {
|
|
168
|
+
type: 'string',
|
|
169
|
+
desc: 'Format to use for the output. Supported placeholders: {{browser}}, {{buildId}}, {{path}}, {{platform}}',
|
|
170
|
+
default: '{{browser}}@{{buildId}} {{path}}',
|
|
171
|
+
});
|
|
172
|
+
}, async (args) => {
|
|
173
|
+
if (this.#pinnedBrowsers && !args.browser) {
|
|
174
|
+
// Use allSettled to avoid scenarios that
|
|
175
|
+
// a browser may fail early and leave the other
|
|
176
|
+
// installation in a faulty state
|
|
177
|
+
const result = await Promise.allSettled(Object.entries(this.#pinnedBrowsers).map(async ([browser, options]) => {
|
|
178
|
+
if (options.skipDownload) {
|
|
179
|
+
return;
|
|
180
|
+
}
|
|
181
|
+
await this.#install({
|
|
182
|
+
...args,
|
|
183
|
+
browser: {
|
|
184
|
+
name: browser,
|
|
185
|
+
buildId: options.buildId,
|
|
186
|
+
},
|
|
187
|
+
});
|
|
188
|
+
}));
|
|
189
|
+
for (const install of result) {
|
|
190
|
+
if (install.status === 'rejected') {
|
|
191
|
+
throw install.reason;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
else {
|
|
196
|
+
await this.#install(args);
|
|
197
|
+
}
|
|
198
|
+
})
|
|
199
|
+
.command('launch <browser>', 'Launch the specified browser', yargs => {
|
|
200
|
+
yargs
|
|
201
|
+
.example('$0 launch chrome@115.0.5790.170', 'Launch Chrome 115.0.5790.170')
|
|
202
|
+
.example('$0 launch firefox@112.0a1', 'Launch the Firefox browser identified by the milestone 112.0a1.')
|
|
203
|
+
.example('$0 launch chrome@115.0.5790.170 --detached', 'Launch the browser but detach the sub-processes.')
|
|
204
|
+
.example('$0 launch chrome@canary --system', 'Try to locate the Canary build of Chrome installed on the system and launch it.')
|
|
205
|
+
.example('$0 launch chrome@115.0.5790.170 -- --version', 'Launch Chrome 115.0.5790.170 and pass custom argument to the binary.');
|
|
206
|
+
const yargsWithExtraAgs = yargs.parserConfiguration({
|
|
207
|
+
'populate--': true,
|
|
208
|
+
// Yargs does not have the correct overload for this.
|
|
209
|
+
});
|
|
210
|
+
const yargsWithBrowserParam = this.#defineBrowserParameter(yargsWithExtraAgs, true);
|
|
211
|
+
const yargsWithPlatformParam = this.#definePlatformParameter(yargsWithBrowserParam);
|
|
212
|
+
return this.#definePathParameter(yargsWithPlatformParam)
|
|
213
|
+
.option('detached', {
|
|
214
|
+
type: 'boolean',
|
|
215
|
+
desc: 'Detach the child process.',
|
|
216
|
+
default: false,
|
|
217
|
+
})
|
|
218
|
+
.option('system', {
|
|
219
|
+
type: 'boolean',
|
|
220
|
+
desc: 'Search for a browser installed on the system instead of the cache folder.',
|
|
221
|
+
default: false,
|
|
222
|
+
})
|
|
223
|
+
.option('dumpio', {
|
|
224
|
+
type: 'boolean',
|
|
225
|
+
desc: "Forwards the browser's process stdout and stderr",
|
|
226
|
+
default: false,
|
|
227
|
+
});
|
|
228
|
+
}, async (args) => {
|
|
229
|
+
const extraArgs = args['--']?.filter(arg => {
|
|
230
|
+
return typeof arg === 'string';
|
|
231
|
+
});
|
|
232
|
+
args.browser.buildId = this.#resolvePinnedBrowserIfNeeded(args.browser.buildId, args.browser.name);
|
|
233
|
+
const executablePath = args.system
|
|
234
|
+
? computeSystemExecutablePath({
|
|
235
|
+
browser: args.browser.name,
|
|
236
|
+
channel: verifyChromeReleaseChannel(args.browser.buildId),
|
|
237
|
+
platform: args.platform,
|
|
238
|
+
})
|
|
239
|
+
: computeExecutablePath({
|
|
240
|
+
browser: args.browser.name,
|
|
241
|
+
buildId: args.browser.buildId,
|
|
242
|
+
cacheDir: args.path ?? this.#cachePath,
|
|
243
|
+
platform: args.platform,
|
|
244
|
+
});
|
|
245
|
+
launch({
|
|
246
|
+
args: extraArgs,
|
|
247
|
+
executablePath,
|
|
248
|
+
dumpio: args.dumpio,
|
|
249
|
+
detached: args.detached,
|
|
250
|
+
});
|
|
251
|
+
})
|
|
252
|
+
.command('clear', this.#allowCachePathOverride
|
|
253
|
+
? 'Removes all installed browsers from the specified cache directory'
|
|
254
|
+
: `Removes all installed browsers from ${this.#cachePath}`, yargs => {
|
|
255
|
+
return this.#definePathParameter(yargs, true);
|
|
256
|
+
}, async (args) => {
|
|
257
|
+
const cacheDir = args.path ?? this.#cachePath;
|
|
258
|
+
const rl = this.#rl ?? readline.createInterface({ input, output });
|
|
259
|
+
rl.question(`Do you want to permanently and recursively delete the content of ${cacheDir} (yes/No)? `, answer => {
|
|
260
|
+
rl.close();
|
|
261
|
+
if (!['y', 'yes'].includes(answer.toLowerCase().trim())) {
|
|
262
|
+
console.log('Cancelled.');
|
|
263
|
+
return;
|
|
264
|
+
}
|
|
265
|
+
const cache = new Cache(cacheDir);
|
|
266
|
+
cache.clear();
|
|
267
|
+
console.log(`${cacheDir} cleared.`);
|
|
268
|
+
});
|
|
269
|
+
})
|
|
270
|
+
.command('list', 'List all installed browsers in the cache directory', yargs => {
|
|
271
|
+
yargs.example('$0 list', 'List all installed browsers in the cache directory');
|
|
272
|
+
if (this.#allowCachePathOverride) {
|
|
273
|
+
yargs.example('$0 list --path /tmp/my-browser-cache', 'List browsers installed in the specified cache directory');
|
|
274
|
+
}
|
|
275
|
+
return this.#definePathParameter(yargs);
|
|
276
|
+
}, async (args) => {
|
|
277
|
+
const cacheDir = args.path ?? this.#cachePath;
|
|
278
|
+
const cache = new Cache(cacheDir);
|
|
279
|
+
const browsers = cache.getInstalledBrowsers();
|
|
280
|
+
for (const browser of browsers) {
|
|
281
|
+
console.log(`${browser.browser}@${browser.buildId} (${browser.platform}) ${browser.executablePath}`);
|
|
282
|
+
}
|
|
283
|
+
})
|
|
284
|
+
.command('bisect <path>', '(experimental) Bisect Chrome for Testing using the specified script. Downloads https://chromium.googlesource.com/chromium/src.git/+/main/tools/bisect-builds.py to ~/bisect-builds.py if needed.', yargs => {
|
|
285
|
+
return yargs
|
|
286
|
+
.positional('path', {
|
|
287
|
+
type: 'string',
|
|
288
|
+
description: 'Path to a script or test name to bisect.',
|
|
289
|
+
demandOption: true,
|
|
290
|
+
})
|
|
291
|
+
.option('good', {
|
|
292
|
+
type: 'string',
|
|
293
|
+
alias: 'g',
|
|
294
|
+
demandOption: true,
|
|
295
|
+
desc: 'Last known good version',
|
|
296
|
+
})
|
|
297
|
+
.option('bad', {
|
|
298
|
+
type: 'string',
|
|
299
|
+
alias: 'b',
|
|
300
|
+
demandOption: true,
|
|
301
|
+
desc: 'First known bad version',
|
|
302
|
+
})
|
|
303
|
+
.option('cft', {
|
|
304
|
+
type: 'boolean',
|
|
305
|
+
desc: 'Use -cft',
|
|
306
|
+
default: true,
|
|
307
|
+
});
|
|
308
|
+
}, async (args) => {
|
|
309
|
+
const isScript = args.path.endsWith('.mjs') ||
|
|
310
|
+
args.path.endsWith('.cjs') ||
|
|
311
|
+
args.path.endsWith('.js');
|
|
312
|
+
const testCommand = isScript
|
|
313
|
+
? `PUPPETEER_EXECUTABLE_PATH=%p node ${args.path}`
|
|
314
|
+
: `BINARY=%p npm run ${args.path}`;
|
|
315
|
+
const bisectScriptPath = path.join(os.homedir(), 'bisect-builds.py');
|
|
316
|
+
if (!fs.existsSync(bisectScriptPath)) {
|
|
317
|
+
console.log('Downloading bisect-builds.py...');
|
|
318
|
+
const response = await fetch('https://chromium.googlesource.com/chromium/src.git/+/main/tools/bisect-builds.py?format=TEXT');
|
|
319
|
+
if (!response.ok) {
|
|
320
|
+
throw new Error(`Failed to download bisect-builds.py: ${response.statusText}`);
|
|
321
|
+
}
|
|
322
|
+
const base64Text = await response.text();
|
|
323
|
+
const decodedText = Buffer.from(base64Text, 'base64').toString('utf-8');
|
|
324
|
+
fs.writeFileSync(bisectScriptPath, decodedText, { mode: 0o755 });
|
|
325
|
+
console.log(`Saved bisect-builds.py to ${bisectScriptPath}`);
|
|
326
|
+
}
|
|
327
|
+
const pythonExecutable = 'python3';
|
|
328
|
+
const bisectArgs = [
|
|
329
|
+
bisectScriptPath,
|
|
330
|
+
'-g',
|
|
331
|
+
args.good,
|
|
332
|
+
'-b',
|
|
333
|
+
args.bad,
|
|
334
|
+
args.cft ? '-cft' : '-s',
|
|
335
|
+
'-v',
|
|
336
|
+
'--verify-range',
|
|
337
|
+
'--not-interactive',
|
|
338
|
+
'-c',
|
|
339
|
+
testCommand,
|
|
340
|
+
];
|
|
341
|
+
await new Promise((resolve, reject) => {
|
|
342
|
+
const createProcess = spawn(pythonExecutable, bisectArgs, {
|
|
343
|
+
stdio: 'inherit',
|
|
344
|
+
});
|
|
345
|
+
createProcess.on('error', message => {
|
|
346
|
+
reject(message);
|
|
347
|
+
});
|
|
348
|
+
createProcess.on('exit', code => {
|
|
349
|
+
if (code !== 0) {
|
|
350
|
+
reject(new Error(`Process exited with code ${code}`));
|
|
351
|
+
}
|
|
352
|
+
else {
|
|
353
|
+
resolve();
|
|
354
|
+
}
|
|
355
|
+
});
|
|
356
|
+
});
|
|
357
|
+
})
|
|
358
|
+
.demandCommand(1)
|
|
359
|
+
.help();
|
|
360
|
+
}
|
|
361
|
+
#parseBrowser(version) {
|
|
362
|
+
return version.split('@').shift();
|
|
363
|
+
}
|
|
364
|
+
#parseBuildId(version) {
|
|
365
|
+
const parts = version.split('@');
|
|
366
|
+
return parts.length === 2
|
|
367
|
+
? parts[1]
|
|
368
|
+
: this.#pinnedBrowsers
|
|
369
|
+
? 'pinned'
|
|
370
|
+
: 'latest';
|
|
371
|
+
}
|
|
372
|
+
#resolvePinnedBrowserIfNeeded(buildId, browserName) {
|
|
373
|
+
if (buildId === 'pinned') {
|
|
374
|
+
const options = this.#pinnedBrowsers?.[browserName];
|
|
375
|
+
if (!options || !options.buildId) {
|
|
376
|
+
throw new Error(`No pinned version found for ${browserName}`);
|
|
377
|
+
}
|
|
378
|
+
return options.buildId;
|
|
379
|
+
}
|
|
380
|
+
return buildId;
|
|
381
|
+
}
|
|
382
|
+
async #install(args) {
|
|
383
|
+
if (!args.browser) {
|
|
384
|
+
throw new Error(`No browser arg provided`);
|
|
385
|
+
}
|
|
386
|
+
if (!args.platform) {
|
|
387
|
+
throw new Error(`Could not resolve the current platform`);
|
|
388
|
+
}
|
|
389
|
+
args.browser.buildId = this.#resolvePinnedBrowserIfNeeded(args.browser.buildId, args.browser.name);
|
|
390
|
+
const originalBuildId = args.browser.buildId;
|
|
391
|
+
args.browser.buildId = await resolveBuildId(args.browser.name, args.platform, args.browser.buildId);
|
|
392
|
+
await install({
|
|
393
|
+
browser: args.browser.name,
|
|
394
|
+
buildId: args.browser.buildId,
|
|
395
|
+
platform: args.platform,
|
|
396
|
+
cacheDir: args.path ?? this.#cachePath,
|
|
397
|
+
downloadProgressCallback: 'default',
|
|
398
|
+
baseUrl: args.baseUrl,
|
|
399
|
+
buildIdAlias: originalBuildId !== args.browser.buildId ? originalBuildId : undefined,
|
|
400
|
+
installDeps: args.installDeps,
|
|
401
|
+
});
|
|
402
|
+
const executablePath = computeExecutablePath({
|
|
403
|
+
browser: args.browser.name,
|
|
404
|
+
buildId: args.browser.buildId,
|
|
405
|
+
cacheDir: args.path ?? this.#cachePath,
|
|
406
|
+
platform: args.platform,
|
|
407
|
+
});
|
|
408
|
+
console.log(args.format
|
|
409
|
+
.replace(/{{browser}}/g, args.browser.name)
|
|
410
|
+
.replace(/{{buildId}}/g, args.browser.buildId)
|
|
411
|
+
.replace(/{{path}}/g, executablePath)
|
|
412
|
+
.replace(/{{platform}}/g, args.platform));
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
//# sourceMappingURL=CLI.js.map
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Google Inc.
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
import fs from 'node:fs';
|
|
7
|
+
import os from 'node:os';
|
|
8
|
+
import path from 'node:path';
|
|
9
|
+
import { Browser, executablePathByBrowser, getVersionComparator, } from './browser-data/browser-data.js';
|
|
10
|
+
import { debug } from './debug.js';
|
|
11
|
+
import { detectBrowserPlatform } from './detectPlatform.js';
|
|
12
|
+
const debugCache = debug('puppeteer:browsers:cache');
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export class InstalledBrowser {
|
|
17
|
+
browser;
|
|
18
|
+
buildId;
|
|
19
|
+
platform;
|
|
20
|
+
executablePath;
|
|
21
|
+
#cache;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(cache, browser, buildId, platform) {
|
|
26
|
+
this.#cache = cache;
|
|
27
|
+
this.browser = browser;
|
|
28
|
+
this.buildId = buildId;
|
|
29
|
+
this.platform = platform;
|
|
30
|
+
this.executablePath = cache.computeExecutablePath({
|
|
31
|
+
browser,
|
|
32
|
+
buildId,
|
|
33
|
+
platform,
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Path to the root of the installation folder. Use
|
|
38
|
+
* {@link computeExecutablePath} to get the path to the executable binary.
|
|
39
|
+
*/
|
|
40
|
+
get path() {
|
|
41
|
+
return this.#cache.installationDir(this.browser, this.platform, this.buildId);
|
|
42
|
+
}
|
|
43
|
+
readMetadata() {
|
|
44
|
+
return this.#cache.readMetadata(this.browser);
|
|
45
|
+
}
|
|
46
|
+
writeMetadata(metadata) {
|
|
47
|
+
this.#cache.writeMetadata(this.browser, metadata);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* The cache used by Puppeteer relies on the following structure:
|
|
52
|
+
*
|
|
53
|
+
* - rootDir
|
|
54
|
+
* -- <browser1> | browserRoot(browser1)
|
|
55
|
+
* ---- <platform>-<buildId> | installationDir()
|
|
56
|
+
* ------ the browser-platform-buildId
|
|
57
|
+
* ------ specific structure.
|
|
58
|
+
* -- <browser2> | browserRoot(browser2)
|
|
59
|
+
* ---- <platform>-<buildId> | installationDir()
|
|
60
|
+
* ------ the browser-platform-buildId
|
|
61
|
+
* ------ specific structure.
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
64
|
+
export class Cache {
|
|
65
|
+
#rootDir;
|
|
66
|
+
constructor(rootDir) {
|
|
67
|
+
this.#rootDir = rootDir;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
72
|
+
get rootDir() {
|
|
73
|
+
return this.#rootDir;
|
|
74
|
+
}
|
|
75
|
+
browserRoot(browser) {
|
|
76
|
+
return path.join(this.#rootDir, browser);
|
|
77
|
+
}
|
|
78
|
+
metadataFile(browser) {
|
|
79
|
+
return path.join(this.browserRoot(browser), '.metadata');
|
|
80
|
+
}
|
|
81
|
+
readMetadata(browser) {
|
|
82
|
+
const metatadaPath = this.metadataFile(browser);
|
|
83
|
+
if (!fs.existsSync(metatadaPath)) {
|
|
84
|
+
return { aliases: {} };
|
|
85
|
+
}
|
|
86
|
+
// TODO: add type-safe parsing.
|
|
87
|
+
const data = JSON.parse(fs.readFileSync(metatadaPath, 'utf8'));
|
|
88
|
+
if (typeof data !== 'object') {
|
|
89
|
+
throw new Error('.metadata is not an object');
|
|
90
|
+
}
|
|
91
|
+
return data;
|
|
92
|
+
}
|
|
93
|
+
writeMetadata(browser, metadata) {
|
|
94
|
+
const metatadaPath = this.metadataFile(browser);
|
|
95
|
+
fs.mkdirSync(path.dirname(metatadaPath), { recursive: true });
|
|
96
|
+
fs.writeFileSync(metatadaPath, JSON.stringify(metadata, null, 2));
|
|
97
|
+
}
|
|
98
|
+
readExecutablePath(browser, platform, buildId) {
|
|
99
|
+
const metadata = this.readMetadata(browser);
|
|
100
|
+
const key = `${platform}-${buildId}`;
|
|
101
|
+
return metadata.executablePaths?.[key] ?? null;
|
|
102
|
+
}
|
|
103
|
+
writeExecutablePath(browser, platform, buildId, executablePath) {
|
|
104
|
+
const metadata = this.readMetadata(browser);
|
|
105
|
+
if (!metadata.executablePaths) {
|
|
106
|
+
metadata.executablePaths = {};
|
|
107
|
+
}
|
|
108
|
+
const key = `${platform}-${buildId}`;
|
|
109
|
+
metadata.executablePaths[key] = executablePath;
|
|
110
|
+
this.writeMetadata(browser, metadata);
|
|
111
|
+
}
|
|
112
|
+
resolveAlias(browser, alias) {
|
|
113
|
+
const metadata = this.readMetadata(browser);
|
|
114
|
+
if (alias === 'latest') {
|
|
115
|
+
return Object.values(metadata.aliases || {})
|
|
116
|
+
.sort(getVersionComparator(browser))
|
|
117
|
+
.at(-1);
|
|
118
|
+
}
|
|
119
|
+
return metadata.aliases[alias];
|
|
120
|
+
}
|
|
121
|
+
installationDir(browser, platform, buildId) {
|
|
122
|
+
return path.join(this.browserRoot(browser), `${platform}-${buildId}`);
|
|
123
|
+
}
|
|
124
|
+
clear() {
|
|
125
|
+
fs.rmSync(this.#rootDir, {
|
|
126
|
+
force: true,
|
|
127
|
+
recursive: true,
|
|
128
|
+
maxRetries: 10,
|
|
129
|
+
retryDelay: 500,
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
uninstall(browser, platform, buildId) {
|
|
133
|
+
const metadata = this.readMetadata(browser);
|
|
134
|
+
for (const alias of Object.keys(metadata.aliases)) {
|
|
135
|
+
if (metadata.aliases[alias] === buildId) {
|
|
136
|
+
delete metadata.aliases[alias];
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
// Clean up executable path entry
|
|
140
|
+
const key = `${platform}-${buildId}`;
|
|
141
|
+
if (metadata.executablePaths?.[key]) {
|
|
142
|
+
delete metadata.executablePaths[key];
|
|
143
|
+
this.writeMetadata(browser, metadata);
|
|
144
|
+
}
|
|
145
|
+
fs.rmSync(this.installationDir(browser, platform, buildId), {
|
|
146
|
+
force: true,
|
|
147
|
+
recursive: true,
|
|
148
|
+
maxRetries: 10,
|
|
149
|
+
retryDelay: 500,
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
getInstalledBrowsers() {
|
|
153
|
+
if (!fs.existsSync(this.#rootDir)) {
|
|
154
|
+
return [];
|
|
155
|
+
}
|
|
156
|
+
const types = fs.readdirSync(this.#rootDir);
|
|
157
|
+
const browsers = types.filter((t) => {
|
|
158
|
+
return Object.values(Browser).includes(t);
|
|
159
|
+
});
|
|
160
|
+
return browsers.flatMap(browser => {
|
|
161
|
+
const files = fs.readdirSync(this.browserRoot(browser));
|
|
162
|
+
return files
|
|
163
|
+
.map(file => {
|
|
164
|
+
const result = parseFolderPath(path.join(this.browserRoot(browser), file));
|
|
165
|
+
if (!result) {
|
|
166
|
+
return null;
|
|
167
|
+
}
|
|
168
|
+
return new InstalledBrowser(this, browser, result.buildId, result.platform);
|
|
169
|
+
})
|
|
170
|
+
.filter((item) => {
|
|
171
|
+
return item !== null;
|
|
172
|
+
});
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
computeExecutablePath(options) {
|
|
176
|
+
options.platform ??= detectBrowserPlatform();
|
|
177
|
+
if (!options.platform) {
|
|
178
|
+
throw new Error(`Cannot download a binary for the provided platform: ${os.platform()} (${os.arch()})`);
|
|
179
|
+
}
|
|
180
|
+
try {
|
|
181
|
+
options.buildId =
|
|
182
|
+
this.resolveAlias(options.browser, options.buildId) ?? options.buildId;
|
|
183
|
+
}
|
|
184
|
+
catch {
|
|
185
|
+
debugCache?.('could not read .metadata file for the browser');
|
|
186
|
+
}
|
|
187
|
+
const installationDir = this.installationDir(options.browser, options.platform, options.buildId);
|
|
188
|
+
const storedExecutablePath = this.readExecutablePath(options.browser, options.platform, options.buildId);
|
|
189
|
+
if (storedExecutablePath) {
|
|
190
|
+
// The metadata contains a resolved relative path from the installation dir
|
|
191
|
+
return path.join(installationDir, storedExecutablePath);
|
|
192
|
+
}
|
|
193
|
+
return path.join(installationDir, executablePathByBrowser[options.browser](options.platform, options.buildId));
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
function parseFolderPath(folderPath) {
|
|
197
|
+
const name = path.basename(folderPath);
|
|
198
|
+
const splits = name.split('-');
|
|
199
|
+
if (splits.length !== 2) {
|
|
200
|
+
return;
|
|
201
|
+
}
|
|
202
|
+
const [platform, buildId] = splits;
|
|
203
|
+
if (!buildId || !platform) {
|
|
204
|
+
return;
|
|
205
|
+
}
|
|
206
|
+
return { platform, buildId };
|
|
207
|
+
}
|
|
208
|
+
//# sourceMappingURL=Cache.js.map
|