conductor-oss 0.60.20 → 0.61.1
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/node_modules/@conductor-oss/core/package.json +1 -1
- package/package.json +8 -8
- package/web/.next/standalone/node_modules/@next/env/package.json +1 -1
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/CLI.js +1 -1
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/cjs/install.js +1 -1
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/CLI.js +1 -1
- package/web/.next/standalone/node_modules/@puppeteer/browsers/lib/esm/install.js +1 -1
- package/web/.next/standalone/node_modules/@puppeteer/browsers/package.json +2 -2
- package/web/.next/standalone/node_modules/basic-ftp/dist/Client.js +9 -6
- package/web/.next/standalone/node_modules/basic-ftp/dist/FtpContext.js +11 -1
- package/web/.next/standalone/node_modules/basic-ftp/dist/StringWriter.js +15 -9
- package/web/.next/standalone/node_modules/basic-ftp/package.json +8 -8
- package/web/.next/standalone/node_modules/ip-address/dist/common.js +21 -0
- package/web/.next/standalone/node_modules/ip-address/dist/ipv4.js +193 -68
- package/web/.next/standalone/node_modules/ip-address/dist/ipv6.js +345 -131
- package/web/.next/standalone/node_modules/ip-address/dist/v6/constants.js +5 -0
- package/web/.next/standalone/node_modules/ip-address/dist/v6/helpers.js +12 -3
- package/web/.next/standalone/node_modules/ip-address/package.json +45 -35
- package/web/.next/standalone/node_modules/nanoid/package.json +1 -1
- package/web/.next/standalone/node_modules/next/dist/build/analysis/get-page-static-info.js +12 -1
- package/web/.next/standalone/node_modules/next/dist/build/static-paths/app.js +2 -1
- package/web/.next/standalone/node_modules/next/dist/build/swc/index.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/build/utils.js +2 -1
- package/web/.next/standalone/node_modules/next/dist/build/webpack-config.js +3 -3
- package/web/.next/standalone/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js +2 -2
- package/web/.next/standalone/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js +8 -2
- package/web/.next/standalone/node_modules/next/dist/client/route-params.js +23 -6
- package/web/.next/standalone/node_modules/next/dist/client/script.js +5 -4
- package/web/.next/standalone/node_modules/next/dist/compiled/babel-packages/packages-bundle.js +2 -2
- package/web/.next/standalone/node_modules/next/dist/compiled/jsonwebtoken/index.js +2 -2
- package/web/.next/standalone/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js +11 -11
- package/web/.next/standalone/node_modules/next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js +13 -13
- package/web/.next/standalone/node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js +11 -11
- package/web/.next/standalone/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js +11 -11
- package/web/.next/standalone/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js +2 -2
- package/web/.next/standalone/node_modules/next/dist/compiled/next-server/pages-turbo.runtime.prod.js +10 -10
- package/web/.next/standalone/node_modules/next/dist/compiled/next-server/pages.runtime.prod.js +10 -10
- package/web/.next/standalone/node_modules/next/dist/lib/patch-incorrect-lockfile.js +3 -3
- package/web/.next/standalone/node_modules/next/dist/lib/typescript/getTypeScriptConfiguration.js +80 -0
- package/web/.next/standalone/node_modules/next/dist/lib/typescript/writeConfigurationDefaults.js +24 -20
- package/web/.next/standalone/node_modules/next/dist/server/app-render/action-handler.js +3 -6
- package/web/.next/standalone/node_modules/next/dist/server/app-render/app-render.js +62 -9
- package/web/.next/standalone/node_modules/next/dist/server/app-render/create-component-tree.js +49 -19
- package/web/.next/standalone/node_modules/next/dist/server/app-render/get-script-nonce-from-header.js +8 -20
- package/web/.next/standalone/node_modules/next/dist/server/app-render/metadata-insertion/create-server-inserted-metadata.js +8 -7
- package/web/.next/standalone/node_modules/next/dist/server/app-render/use-flight-response.js +2 -2
- package/web/.next/standalone/node_modules/next/dist/server/async-storage/work-store.js +2 -1
- package/web/.next/standalone/node_modules/next/dist/server/base-server.js +13 -5
- package/web/.next/standalone/node_modules/next/dist/server/config-schema.js +11 -2
- package/web/.next/standalone/node_modules/next/dist/server/config.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/server/dev/hot-reloader-turbopack.js +18 -16
- package/web/.next/standalone/node_modules/next/dist/server/dev/hot-reloader-webpack.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/server/dev/next-dev-server.js +1 -0
- package/web/.next/standalone/node_modules/next/dist/server/dev/static-paths-worker.js +2 -1
- package/web/.next/standalone/node_modules/next/dist/server/image-optimizer.js +22 -2
- package/web/.next/standalone/node_modules/next/dist/server/lib/app-info-log.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/server/lib/is-rsc-request.js +18 -0
- package/web/.next/standalone/node_modules/next/dist/server/lib/mock-request.js +30 -5
- package/web/.next/standalone/node_modules/next/dist/server/lib/patch-set-header.js +7 -0
- package/web/.next/standalone/node_modules/next/dist/server/lib/router-server.js +20 -4
- package/web/.next/standalone/node_modules/next/dist/server/lib/router-utils/resolve-routes.js +18 -4
- package/web/.next/standalone/node_modules/next/dist/server/lib/server-ipc/utils.js +3 -1
- package/web/.next/standalone/node_modules/next/dist/server/lib/start-server.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/server/next-server.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/server/render.js +47 -39
- package/web/.next/standalone/node_modules/next/dist/server/request/fallback-params.js +27 -1
- package/web/.next/standalone/node_modules/next/dist/server/route-modules/route-module.js +11 -1
- package/web/.next/standalone/node_modules/next/dist/server/server-utils.js +19 -2
- package/web/.next/standalone/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js +5 -5
- package/web/.next/standalone/node_modules/next/dist/server/web/adapter.js +4 -1
- package/web/.next/standalone/node_modules/next/dist/shared/lib/errors/canary-only-config-error.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/{server → shared/lib}/htmlescape.js +15 -0
- package/web/.next/standalone/node_modules/next/dist/shared/lib/router/routes/app.js +13 -1
- package/web/.next/standalone/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js +56 -10
- package/web/.next/standalone/node_modules/next/dist/telemetry/anonymous-meta.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/telemetry/events/swc-load-failure.js +1 -1
- package/web/.next/standalone/node_modules/next/dist/telemetry/events/version.js +2 -2
- package/web/.next/standalone/node_modules/next/package.json +15 -15
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/container.js +26 -18
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/css-syntax-error.js +47 -14
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/input.js +54 -29
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/lazy-result.js +50 -37
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/map-generator.js +26 -9
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/no-work-result.js +57 -55
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/node.js +99 -31
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/parser.js +46 -38
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/previous-map.js +30 -11
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/processor.js +7 -7
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/result.js +5 -5
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/stringifier.js +41 -20
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/tokenize.js +6 -2
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/package.json +48 -48
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Browser.js +7 -7
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/BrowserContext.js +4 -3
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Extension.js +88 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/JSHandle.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.js +4 -3
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Realm.js +29 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.js +15 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/api.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/api/locators/locators.js +53 -23
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Browser.js +8 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserConnector.js +2 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/BrowserContext.js +6 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/ElementHandle.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Frame.js +9 -47
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Input.js +0 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Page.js +17 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Realm.js +22 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Target.js +2 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Realm.js +18 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/util.js +80 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Browser.js +77 -10
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/BrowserConnector.js +2 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/CdpIssue.js +27 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ElementHandle.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/ExecutionContext.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Extension.js +79 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Frame.js +30 -15
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/FrameManager.js +41 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/IsolatedWorld.js +32 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Page.js +61 -35
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Target.js +16 -7
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManager.js +96 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebMCP.js +281 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/WebWorker.js +28 -3
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/cdp.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/utils.js +36 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/BrowserConnector.js +11 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/common/EventEmitter.js +7 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/BrowserLauncher.js +11 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ChromeLauncher.js +5 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/node/ScreenRecorder.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/revisions.js +3 -3
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/Mutex.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/util/version.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/mitt/mitt.js +2 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/parsel-js/parsel-js.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/rxjs/rxjs.js +446 -446
- package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/third_party/urlpattern-polyfill/urlpattern-polyfill.js +853 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Browser.js +7 -7
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/BrowserContext.js +4 -3
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Extension.js +84 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/JSHandle.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js +4 -3
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/Realm.js +29 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.js +14 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/api.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/api/locators/locators.js +53 -23
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Browser.js +8 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserConnector.js +2 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/BrowserContext.js +6 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/ElementHandle.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Frame.js +8 -46
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Input.js +0 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Page.js +17 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Realm.js +23 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Target.js +2 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Realm.js +18 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/util.js +74 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Browser.js +77 -10
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/BrowserConnector.js +2 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/CdpIssue.js +23 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ElementHandle.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Extension.js +75 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Frame.js +30 -15
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/FrameManager.js +41 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/IsolatedWorld.js +32 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Page.js +61 -35
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Target.js +16 -7
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/TargetManager.js +96 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebMCP.js +275 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/WebWorker.js +29 -4
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdp.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/utils.js +34 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserConnector.js +10 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/common/EventEmitter.js +8 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/BrowserLauncher.js +11 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ChromeLauncher.js +5 -2
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/node/ScreenRecorder.js +1 -0
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/revisions.js +3 -3
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/Mutex.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/util/version.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/third_party/mitt/mitt.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/third_party/parsel-js/parsel-js.js +1 -1
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/third_party/rxjs/rxjs.js +97 -97
- package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/third_party/urlpattern-polyfill/urlpattern-polyfill.js +805 -0
- package/web/.next/standalone/node_modules/puppeteer-core/package.json +10 -10
- package/web/.next/standalone/node_modules/ws/index.js +15 -6
- package/web/.next/standalone/node_modules/ws/lib/permessage-deflate.js +6 -6
- package/web/.next/standalone/node_modules/ws/lib/receiver.js +54 -0
- package/web/.next/standalone/node_modules/ws/lib/sender.js +6 -1
- package/web/.next/standalone/node_modules/ws/lib/websocket-server.js +13 -5
- package/web/.next/standalone/node_modules/ws/lib/websocket.js +20 -6
- package/web/.next/standalone/node_modules/ws/package.json +4 -3
- package/web/.next/standalone/node_modules/ws/wrapper.mjs +14 -1
- package/web/.next/standalone/node_modules/yauzl/fd-slicer.js +18 -144
- package/web/.next/standalone/node_modules/yauzl/index.js +54 -29
- package/web/.next/standalone/node_modules/yauzl/package.json +1 -1
- package/web/.next/standalone/package.json +11 -4
- 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 +4 -4
- package/web/.next/standalone/packages/web/.next/prerender-manifest.json +3 -3
- package/web/.next/standalone/packages/web/.next/react-loadable-manifest.json +10 -10
- package/web/.next/standalone/packages/web/.next/server/app/__clerk/[[...path]]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/_global-error/page.js +3 -3
- package/web/.next/standalone/packages/web/.next/server/app/_global-error/page.js.nft.json +1 -1
- 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 +2 -2
- 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/access/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/agents/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/app-update/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/attachments/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/auth/profile/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/comments/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/boards/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/bridges/[bridgeId]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/bridges/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/[deviceId]/app-update/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/[deviceId]/repair/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/[deviceId]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/[deviceId]/service-restart/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/claims/complete/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/code/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridge/devices/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/bridges/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/config/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/open/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/context-files/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/events/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/executor/health/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/directory/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/filesystem/pick-directory/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/projects/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/projects/sync/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/repos/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/github/webhook/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/boards/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/health/sessions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/notifications/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/preferences/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/project-notes/backlinks/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/project-notes/daily/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/project-notes/file/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/project-notes/graph/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/project-notes/open/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/project-notes/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/approve/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/projects/[id]/dispatcher/feed/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/feed/stream/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/integration/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/interrupt/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/preferences/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/reject/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/send/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/tasks/[task]/handoff/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/tasks/[task]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatcher/tasks/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/dispatchers/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/open/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/[id]/setup/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/projects/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/[id]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/repositories/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/actions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/archive/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/checks/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/diff/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/files/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/keys/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/kill/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/output/stream/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/preview/dom/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 +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 +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/api/sessions/[id]/restore/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/relay/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/snapshot/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/token/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/ttyd/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/ttyd/token/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/[id]/terminal/ttyd/ws/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/sessions/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/skills/activate/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/skills/catalog/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/skills/deactivate/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/skills/install/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/skills/installed/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/skills/session-active/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/skills/uninstall/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/spawn/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/branches/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/api/workspaces/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/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/bridge/install.ps1/route.js +36 -7
- package/web/.next/standalone/packages/web/.next/server/app/bridge/install.sh/route.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/app/embed/terminal/[id]/page.js +2 -2
- 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/icon.svg/route.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 +2 -2
- 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 +2 -2
- 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 +2 -2
- 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/1984.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/2512.js +46 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/{2831.js → 2677.js} +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/3698.js +3 -3
- package/web/.next/standalone/packages/web/.next/server/chunks/3786.js +45 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/4036.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/4256.js +6 -6
- package/web/.next/standalone/packages/web/.next/server/chunks/6014.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/6034.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/7667.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/7776.js +15 -13
- package/web/.next/standalone/packages/web/.next/server/chunks/7895.js +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/9455.js +1 -1
- package/web/.next/standalone/packages/web/.next/server/functions-config-manifest.json +2 -2
- 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/middleware.js +14 -14
- 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/20217-97d45ecc44de7d37.js +19 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/24607.272ce532ac5ed877.js +3 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/3324.13c418df31b914ee.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/34443.18c1a7dfc334c906.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/{35493-c39caef34f8d7b4d.js → 35493-bec918ac58d9fc84.js} +1 -1
- package/web/.next/{static/chunks/58607.eabd886c80f1df38.js → standalone/packages/web/.next/static/chunks/58607.bce7eb75dddcebd1.js} +1 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/61968-84de5fd1d154571d.js +32 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/71679-17d6b3fdf81fdb11.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/79593-6ea7984fecff4f65.js +9 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-268ff731369e11a0.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/chunks/app/page-0775ebdefe7c09d1.js +1 -0
- package/web/.next/{static/chunks/app/sign-in/[[...sign-in]]/page-4213b7d86313ac85.js → standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js} +1 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/sign-up/[[...sign-up]]/{page-83c0752161f259ce.js → page-35e34a3cc336595c.js} +1 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/{main-ffdc5ee594ae3141.js → main-e776ff7a08a61c77.js} +2 -2
- package/web/.next/standalone/packages/web/.next/static/chunks/webpack-3fb4eda26c89efd2.js +1 -0
- package/web/.next/standalone/packages/web/.next/static/css/895fa8ff3c08143e.css +1 -0
- package/web/.next/standalone/packages/web/package.json +6 -6
- package/web/.next/static/chunks/20217-97d45ecc44de7d37.js +19 -0
- package/web/.next/static/chunks/24607.272ce532ac5ed877.js +3 -0
- package/web/.next/static/chunks/3324.13c418df31b914ee.js +1 -0
- package/web/.next/static/chunks/34443.18c1a7dfc334c906.js +1 -0
- package/web/.next/static/chunks/{35493-c39caef34f8d7b4d.js → 35493-bec918ac58d9fc84.js} +1 -1
- package/web/.next/{standalone/packages/web/.next/static/chunks/58607.eabd886c80f1df38.js → static/chunks/58607.bce7eb75dddcebd1.js} +1 -1
- package/web/.next/static/chunks/61968-84de5fd1d154571d.js +32 -0
- package/web/.next/static/chunks/71679-17d6b3fdf81fdb11.js +1 -0
- package/web/.next/static/chunks/79593-6ea7984fecff4f65.js +9 -0
- package/web/.next/static/chunks/app/layout-268ff731369e11a0.js +1 -0
- package/web/.next/static/chunks/app/page-0775ebdefe7c09d1.js +1 -0
- package/web/.next/{standalone/packages/web/.next/static/chunks/app/sign-in/[[...sign-in]]/page-4213b7d86313ac85.js → static/chunks/app/sign-in/[[...sign-in]]/page-6ba340ad536efd2d.js} +1 -1
- package/web/.next/static/chunks/app/sign-up/[[...sign-up]]/{page-83c0752161f259ce.js → page-35e34a3cc336595c.js} +1 -1
- package/web/.next/static/chunks/{main-ffdc5ee594ae3141.js → main-e776ff7a08a61c77.js} +2 -2
- package/web/.next/static/chunks/webpack-3fb4eda26c89efd2.js +1 -0
- package/web/.next/static/css/895fa8ff3c08143e.css +1 -0
- package/web/.next/standalone/packages/web/.next/server/chunks/1967.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/4684.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/479.js +0 -45
- package/web/.next/standalone/packages/web/.next/server/chunks/6213.js +0 -46
- package/web/.next/standalone/packages/web/.next/server/chunks/6829.js +0 -1
- package/web/.next/standalone/packages/web/.next/server/chunks/8573.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/12432.05dc6aaa259bc819.js +0 -3
- package/web/.next/standalone/packages/web/.next/static/chunks/20217-bca061c69c3542cc.js +0 -19
- package/web/.next/standalone/packages/web/.next/static/chunks/34443.cab1a0ba6fbaf067.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/61968-8477b4b3530d6c4b.js +0 -32
- package/web/.next/standalone/packages/web/.next/static/chunks/74419-f0ef6cf2e081f2c6.js +0 -9
- package/web/.next/standalone/packages/web/.next/static/chunks/97048.0699c66e5d25227e.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/99847.87545f71a963c57c.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/layout-a25ac4238653208d.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/app/page-af50b13589ff37c9.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/chunks/webpack-52e4d66b87d44b19.js +0 -1
- package/web/.next/standalone/packages/web/.next/static/css/a0ce5e327296ee86.css +0 -1
- package/web/.next/static/chunks/12432.05dc6aaa259bc819.js +0 -3
- package/web/.next/static/chunks/20217-bca061c69c3542cc.js +0 -19
- package/web/.next/static/chunks/34443.cab1a0ba6fbaf067.js +0 -1
- package/web/.next/static/chunks/61968-8477b4b3530d6c4b.js +0 -32
- package/web/.next/static/chunks/74419-f0ef6cf2e081f2c6.js +0 -9
- package/web/.next/static/chunks/97048.0699c66e5d25227e.js +0 -1
- package/web/.next/static/chunks/99847.87545f71a963c57c.js +0 -1
- package/web/.next/static/chunks/app/layout-a25ac4238653208d.js +0 -1
- package/web/.next/static/chunks/app/page-af50b13589ff37c9.js +0 -1
- package/web/.next/static/chunks/webpack-52e4d66b87d44b19.js +0 -1
- package/web/.next/static/css/a0ce5e327296ee86.css +0 -1
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/at-rule.js +0 -0
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/comment.js +0 -0
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/declaration.js +4 -4
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/document.js +0 -0
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/fromJSON.js +3 -3
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/list.js +0 -0
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/parse.js +1 -1
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/postcss.js +12 -12
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/root.js +0 -0
- package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/rule.js +6 -6
- /package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/stringify.js +0 -0
- /package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/symbols.js +0 -0
- /package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/terminal-highlight.js +0 -0
- /package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/warn-once.js +0 -0
- /package/web/.next/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/warning.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/BidiMapper.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/BidiNoOpParser.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/BidiServer.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/CommandProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/OutgoingMessage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/bluetooth/BluetoothProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/browser/ContextConfig.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/browser/ContextConfigStorage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/browser/UserContextStorage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/cdp/CdpProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/cdp/CdpTarget.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/cdp/CdpTargetManager.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/context/BrowsingContextImpl.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/context/BrowsingContextProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/context/BrowsingContextStorage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/context/NavigationTracker.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/emulation/EmulationProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/input/ActionDispatcher.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/input/InputProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/input/InputSource.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/input/InputState.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/input/InputStateManager.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/input/USKeyboardLayout.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/input/keyUtils.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/log/LogManager.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/log/logHelper.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/network/CollectorsStorage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/network/NetworkProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/network/NetworkRequest.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/network/NetworkStorage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/network/NetworkUtils.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/permissions/PermissionsProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/ChannelProxy.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/PreloadScript.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/PreloadScriptStorage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/Realm.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/RealmStorage.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/ScriptProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/SharedId.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/WindowRealm.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/script/WorkerRealm.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/session/EventManager.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/session/SessionProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/session/SubscriptionManager.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/session/events.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/speculation/SpeculationProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/storage/StorageProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/bidiMapper/modules/webExtension/WebExtensionProcessor.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/ErrorResponse.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/cdp.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/chromium-bidi.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/generated/webdriver-bidi-nav-speculation.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/generated/webdriver-bidi-permissions.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/generated/webdriver-bidi-ua-client-hints.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/generated/webdriver-bidi.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/protocol/protocol.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/Buffer.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/DefaultMap.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/Deferred.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/EventEmitter.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/IdWrapper.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/Mutex.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/ProcessingQueue.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/assert.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/base64.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/graphemeTools.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/log.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/time.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/unitConversions.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/urlHelpers.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/lib/cjs/utils/uuid.js +0 -0
- /package/web/.next/standalone/node_modules/{chromium-bidi → puppeteer-core/node_modules/chromium-bidi}/package.json +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{4OnzIthq13Hzhfk96dKRu → gYDZqiVrgQEw51XaJ7b_W}/_buildManifest.js +0 -0
- /package/web/.next/standalone/packages/web/.next/static/{4OnzIthq13Hzhfk96dKRu → gYDZqiVrgQEw51XaJ7b_W}/_ssgManifest.js +0 -0
- /package/web/.next/static/{4OnzIthq13Hzhfk96dKRu → gYDZqiVrgQEw51XaJ7b_W}/_buildManifest.js +0 -0
- /package/web/.next/static/{4OnzIthq13Hzhfk96dKRu → gYDZqiVrgQEw51XaJ7b_W}/_ssgManifest.js +0 -0
|
@@ -63,6 +63,7 @@ exports.convertCookiesPartitionKeyFromPuppeteerToCdp = convertCookiesPartitionKe
|
|
|
63
63
|
const rxjs_js_1 = require("../../third_party/rxjs/rxjs.js");
|
|
64
64
|
const CDPSession_js_1 = require("../api/CDPSession.js");
|
|
65
65
|
const Page_js_1 = require("../api/Page.js");
|
|
66
|
+
const WebWorker_js_1 = require("../api/WebWorker.js");
|
|
66
67
|
const ConsoleMessage_js_1 = require("../common/ConsoleMessage.js");
|
|
67
68
|
const Errors_js_1 = require("../common/Errors.js");
|
|
68
69
|
const EventEmitter_js_1 = require("../common/EventEmitter.js");
|
|
@@ -88,15 +89,8 @@ const IsolatedWorlds_js_1 = require("./IsolatedWorlds.js");
|
|
|
88
89
|
const JSHandle_js_1 = require("./JSHandle.js");
|
|
89
90
|
const Tracing_js_1 = require("./Tracing.js");
|
|
90
91
|
const utils_js_1 = require("./utils.js");
|
|
91
|
-
const
|
|
92
|
-
|
|
93
|
-
switch (method) {
|
|
94
|
-
case 'warning':
|
|
95
|
-
return 'warn';
|
|
96
|
-
default:
|
|
97
|
-
return method;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
92
|
+
const WebMCP_js_1 = require("./WebMCP.js");
|
|
93
|
+
const WebWorker_js_2 = require("./WebWorker.js");
|
|
100
94
|
/**
|
|
101
95
|
* @internal
|
|
102
96
|
*/
|
|
@@ -145,6 +139,7 @@ class CdpPage extends Page_js_1.Page {
|
|
|
145
139
|
#frameManager;
|
|
146
140
|
#emulationManager;
|
|
147
141
|
#tracing;
|
|
142
|
+
#webmcp;
|
|
148
143
|
#bindings = new Map();
|
|
149
144
|
#exposedFunctions = new Map();
|
|
150
145
|
#coverage;
|
|
@@ -170,6 +165,7 @@ class CdpPage extends Page_js_1.Page {
|
|
|
170
165
|
this.#frameManager = new FrameManager_js_1.FrameManager(client, this, this._timeoutSettings);
|
|
171
166
|
this.#emulationManager = new EmulationManager_js_1.EmulationManager(client);
|
|
172
167
|
this.#tracing = new Tracing_js_1.Tracing(client);
|
|
168
|
+
this.#webmcp = new WebMCP_js_1.WebMCP(client, this.#frameManager);
|
|
173
169
|
this.#coverage = new Coverage_js_1.Coverage(client);
|
|
174
170
|
this.#viewport = null;
|
|
175
171
|
// Use browser context's connection, as current Bluetooth emulation in Chromium is
|
|
@@ -250,6 +246,7 @@ class CdpPage extends Page_js_1.Page {
|
|
|
250
246
|
this.#touchscreen.updateClient(newSession);
|
|
251
247
|
this.#emulationManager.updateClient(newSession);
|
|
252
248
|
this.#tracing.updateClient(newSession);
|
|
249
|
+
this.#webmcp.updateClient(newSession);
|
|
253
250
|
this.#coverage.updateClient(newSession);
|
|
254
251
|
await this.#frameManager.swapFrameTree(newSession);
|
|
255
252
|
this.#setupPrimaryTargetListeners();
|
|
@@ -300,8 +297,23 @@ class CdpPage extends Page_js_1.Page {
|
|
|
300
297
|
(0, assert_js_1.assert)(session instanceof CdpSession_js_1.CdpCDPSession);
|
|
301
298
|
this.#frameManager.onAttachedToTarget(session.target());
|
|
302
299
|
if (session.target()._getTargetInfo().type === 'worker') {
|
|
303
|
-
const worker = new
|
|
300
|
+
const worker = new WebWorker_js_2.CdpWebWorker(session, session.target().url(), session.target()._targetId, session.target().type(), this.#handleException.bind(this), this.#frameManager.networkManager);
|
|
304
301
|
this.#workers.set(session.id(), worker);
|
|
302
|
+
worker.internalEmitter.on(WebWorker_js_1.WebWorkerEvent.Console, message => {
|
|
303
|
+
const noListenersForConsoleOnPage = this.listenerCount("console" /* PageEvent.Console */) === 0;
|
|
304
|
+
const noListenersForConsoleOnWorker = worker.listenerCount(WebWorker_js_1.WebWorkerEvent.Console) === 0;
|
|
305
|
+
if (noListenersForConsoleOnPage && noListenersForConsoleOnWorker) {
|
|
306
|
+
// eslint-disable-next-line max-len -- The comment is long.
|
|
307
|
+
// eslint-disable-next-line @puppeteer/use-using -- These are not owned by this function.
|
|
308
|
+
for (const arg of message.args()) {
|
|
309
|
+
void arg.dispose().catch(util_js_1.debugError);
|
|
310
|
+
}
|
|
311
|
+
return;
|
|
312
|
+
}
|
|
313
|
+
if (!noListenersForConsoleOnPage) {
|
|
314
|
+
this.emit("console" /* PageEvent.Console */, message);
|
|
315
|
+
}
|
|
316
|
+
});
|
|
305
317
|
this.emit("workercreated" /* PageEvent.WorkerCreated */, worker);
|
|
306
318
|
}
|
|
307
319
|
session.on(CDPSession_js_1.CDPSessionEvent.Ready, this.#onAttachedToTarget);
|
|
@@ -312,6 +324,7 @@ class CdpPage extends Page_js_1.Page {
|
|
|
312
324
|
this.#frameManager.initialize(this.#primaryTargetClient),
|
|
313
325
|
this.#primaryTargetClient.send('Performance.enable'),
|
|
314
326
|
this.#primaryTargetClient.send('Log.enable'),
|
|
327
|
+
this.#webmcp.initialize(),
|
|
315
328
|
]);
|
|
316
329
|
}
|
|
317
330
|
catch (err) {
|
|
@@ -362,6 +375,9 @@ class CdpPage extends Page_js_1.Page {
|
|
|
362
375
|
_client() {
|
|
363
376
|
return this.#primaryTargetClient;
|
|
364
377
|
}
|
|
378
|
+
_isUrlAllowed(url) {
|
|
379
|
+
return this.#targetManager.isUrlAllowed(url);
|
|
380
|
+
}
|
|
365
381
|
isServiceWorkerBypassed() {
|
|
366
382
|
return this.#serviceWorkerBypassed;
|
|
367
383
|
}
|
|
@@ -374,9 +390,18 @@ class CdpPage extends Page_js_1.Page {
|
|
|
374
390
|
async openDevTools() {
|
|
375
391
|
const pageTargetId = this.target()._targetId;
|
|
376
392
|
const browser = this.browser();
|
|
393
|
+
const devtoolsTargetId = await browser._hasDevToolsTarget(this.target()._targetId);
|
|
394
|
+
if (devtoolsTargetId) {
|
|
395
|
+
return await browser._getDevToolsTargetPage(devtoolsTargetId);
|
|
396
|
+
}
|
|
377
397
|
const devtoolsPage = await browser._createDevToolsPage(pageTargetId);
|
|
378
398
|
return devtoolsPage;
|
|
379
399
|
}
|
|
400
|
+
async hasDevTools() {
|
|
401
|
+
const browser = this.browser();
|
|
402
|
+
const targetId = await browser._hasDevToolsTarget(this.target()._targetId);
|
|
403
|
+
return Boolean(targetId);
|
|
404
|
+
}
|
|
380
405
|
async waitForFileChooser(options = {}) {
|
|
381
406
|
const needsEnable = this.#fileChooserDeferreds.size === 0;
|
|
382
407
|
const { timeout = this._timeoutSettings.timeout() } = options;
|
|
@@ -431,7 +456,7 @@ class CdpPage extends Page_js_1.Page {
|
|
|
431
456
|
});
|
|
432
457
|
}
|
|
433
458
|
if (source !== 'worker') {
|
|
434
|
-
this.emit("console" /* PageEvent.Console */, new ConsoleMessage_js_1.ConsoleMessage(convertConsoleMessageLevel(level), text, [], [{ url, lineNumber }], undefined, stackTrace, this.#primaryTarget._targetId));
|
|
459
|
+
this.emit("console" /* PageEvent.Console */, new ConsoleMessage_js_1.ConsoleMessage((0, utils_js_1.convertConsoleMessageLevel)(level), text, [], [{ url, lineNumber }], undefined, stackTrace, this.#primaryTarget._targetId));
|
|
435
460
|
}
|
|
436
461
|
}
|
|
437
462
|
mainFrame() {
|
|
@@ -449,6 +474,9 @@ class CdpPage extends Page_js_1.Page {
|
|
|
449
474
|
get tracing() {
|
|
450
475
|
return this.#tracing;
|
|
451
476
|
}
|
|
477
|
+
get webmcp() {
|
|
478
|
+
return this.#webmcp;
|
|
479
|
+
}
|
|
452
480
|
frames() {
|
|
453
481
|
return this.#frameManager.frames();
|
|
454
482
|
}
|
|
@@ -672,38 +700,30 @@ class CdpPage extends Page_js_1.Page {
|
|
|
672
700
|
#handleException(exception) {
|
|
673
701
|
this.emit("pageerror" /* PageEvent.PageError */, (0, utils_js_1.createClientError)(exception.exceptionDetails));
|
|
674
702
|
}
|
|
675
|
-
#onConsoleAPI(world, event) {
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
if (!this.listenerCount("console" /* PageEvent.Console */)) {
|
|
680
|
-
values.forEach(arg => {
|
|
681
|
-
return arg.dispose();
|
|
703
|
+
#onConsoleAPI(world, event, values) {
|
|
704
|
+
if (!values) {
|
|
705
|
+
values = event.args.map(arg => {
|
|
706
|
+
return world.createCdpHandle(arg);
|
|
682
707
|
});
|
|
683
|
-
return;
|
|
684
708
|
}
|
|
685
|
-
const
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
url: callFrame.url,
|
|
696
|
-
lineNumber: callFrame.lineNumber,
|
|
697
|
-
columnNumber: callFrame.columnNumber,
|
|
698
|
-
});
|
|
709
|
+
const hasPageConsoleListeners = this.listenerCount("console" /* PageEvent.Console */) > 0;
|
|
710
|
+
const hasWorkerConsoleListeners = world.environment instanceof WebWorker_js_1.WebWorker &&
|
|
711
|
+
world.environment.listenerCount(WebWorker_js_1.WebWorkerEvent.Console) > 0;
|
|
712
|
+
if (!hasPageConsoleListeners) {
|
|
713
|
+
if (!hasWorkerConsoleListeners) {
|
|
714
|
+
// eslint-disable-next-line max-len -- The comment is long.
|
|
715
|
+
// eslint-disable-next-line @puppeteer/use-using -- These are not owned by this function.
|
|
716
|
+
for (const value of values) {
|
|
717
|
+
void value.dispose().catch(util_js_1.debugError);
|
|
718
|
+
}
|
|
699
719
|
}
|
|
720
|
+
return;
|
|
700
721
|
}
|
|
701
722
|
let targetId;
|
|
702
723
|
if (world.environment.client instanceof CdpSession_js_1.CdpCDPSession) {
|
|
703
724
|
targetId = world.environment.client.target()._targetId;
|
|
704
725
|
}
|
|
705
|
-
|
|
706
|
-
this.emit("console" /* PageEvent.Console */, message);
|
|
726
|
+
this.emit("console" /* PageEvent.Console */, (0, utils_js_1.createConsoleMessage)(event, values, targetId));
|
|
707
727
|
}
|
|
708
728
|
async #onBindingCalled(world, event) {
|
|
709
729
|
let payload;
|
|
@@ -775,6 +795,9 @@ class CdpPage extends Page_js_1.Page {
|
|
|
775
795
|
async setBypassCSP(enabled) {
|
|
776
796
|
await this.#primaryTargetClient.send('Page.setBypassCSP', { enabled });
|
|
777
797
|
}
|
|
798
|
+
async triggerExtensionAction(extension) {
|
|
799
|
+
return await extension.triggerAction(this);
|
|
800
|
+
}
|
|
778
801
|
async emulateMediaType(type) {
|
|
779
802
|
return await this.#emulationManager.emulateMediaType(type);
|
|
780
803
|
}
|
|
@@ -962,6 +985,9 @@ class CdpPage extends Page_js_1.Page {
|
|
|
962
985
|
get bluetooth() {
|
|
963
986
|
return this.#cdpBluetoothEmulation;
|
|
964
987
|
}
|
|
988
|
+
extensionRealms() {
|
|
989
|
+
return this.mainFrame().extensionRealms();
|
|
990
|
+
}
|
|
965
991
|
}
|
|
966
992
|
exports.CdpPage = CdpPage;
|
|
967
993
|
const supportedMetrics = new Set([
|
|
@@ -32,6 +32,9 @@ class CdpTarget extends Target_js_1.Target {
|
|
|
32
32
|
_initializedDeferred = Deferred_js_1.Deferred.create();
|
|
33
33
|
_isClosedDeferred = Deferred_js_1.Deferred.create();
|
|
34
34
|
_targetId;
|
|
35
|
+
_asPagePromise;
|
|
36
|
+
/** @internal */
|
|
37
|
+
pagePromise;
|
|
35
38
|
/**
|
|
36
39
|
* To initialize the target for use, call initialize.
|
|
37
40
|
*
|
|
@@ -50,13 +53,21 @@ class CdpTarget extends Target_js_1.Target {
|
|
|
50
53
|
}
|
|
51
54
|
}
|
|
52
55
|
async asPage() {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
+
if (this.pagePromise) {
|
|
57
|
+
const page = await this.pagePromise;
|
|
58
|
+
if (page) {
|
|
59
|
+
return page;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
if (!this._asPagePromise) {
|
|
63
|
+
const session = this._session();
|
|
64
|
+
this._asPagePromise = (session
|
|
65
|
+
? Promise.resolve(session)
|
|
66
|
+
: this._sessionFactory()(/* isAutoAttachEmulated=*/ false)).then(client => {
|
|
56
67
|
return Page_js_1.CdpPage._create(client, this, null);
|
|
57
68
|
});
|
|
58
69
|
}
|
|
59
|
-
return await
|
|
70
|
+
return (await this._asPagePromise) ?? null;
|
|
60
71
|
}
|
|
61
72
|
_subtype() {
|
|
62
73
|
return this.#targetInfo.subtype;
|
|
@@ -166,7 +177,6 @@ exports.CdpTarget = CdpTarget;
|
|
|
166
177
|
*/
|
|
167
178
|
class PageTarget extends CdpTarget {
|
|
168
179
|
#defaultViewport;
|
|
169
|
-
pagePromise;
|
|
170
180
|
constructor(targetInfo, session, browserContext, targetManager, sessionFactory, defaultViewport) {
|
|
171
181
|
super(targetInfo, session, browserContext, targetManager, sessionFactory);
|
|
172
182
|
this.#defaultViewport = defaultViewport ?? undefined;
|
|
@@ -231,11 +241,10 @@ class WorkerTarget extends CdpTarget {
|
|
|
231
241
|
async worker() {
|
|
232
242
|
if (!this.#workerPromise) {
|
|
233
243
|
const session = this._session();
|
|
234
|
-
// TODO(einbinder): Make workers send their console logs.
|
|
235
244
|
this.#workerPromise = (session
|
|
236
245
|
? Promise.resolve(session)
|
|
237
246
|
: this._sessionFactory()(/* isAutoAttachEmulated=*/ false)).then(client => {
|
|
238
|
-
return new WebWorker_js_1.CdpWebWorker(client, this._getTargetInfo().url, this._targetId, this.type(), () => { } /*
|
|
247
|
+
return new WebWorker_js_1.CdpWebWorker(client, this._getTargetInfo().url, this._targetId, this.type(), () => { } /* exceptionThrown */, undefined /* networkManager */);
|
|
239
248
|
});
|
|
240
249
|
}
|
|
241
250
|
return await this.#workerPromise;
|
package/web/.next/standalone/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManager.js
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.TargetManager = void 0;
|
|
9
|
+
const urlpattern_polyfill_js_1 = require("../../third_party/urlpattern-polyfill/urlpattern-polyfill.js");
|
|
9
10
|
const CDPSession_js_1 = require("../api/CDPSession.js");
|
|
10
11
|
const EventEmitter_js_1 = require("../common/EventEmitter.js");
|
|
11
12
|
const util_js_1 = require("../common/util.js");
|
|
@@ -73,12 +74,19 @@ class TargetManager extends EventEmitter_js_1.EventEmitter {
|
|
|
73
74
|
// done. It indicates whethere we are running the initial auto-attach step or
|
|
74
75
|
// if we are handling targets after that.
|
|
75
76
|
#initialAttachDone = false;
|
|
76
|
-
|
|
77
|
+
#blocklist = [];
|
|
78
|
+
#allowlist = [];
|
|
79
|
+
constructor(connection, targetFactory, targetFilterCallback, waitForInitiallyDiscoveredTargets = true, blocklist, allowlist) {
|
|
77
80
|
super();
|
|
81
|
+
if (blocklist && allowlist) {
|
|
82
|
+
throw new Error('Cannot specify both blockList and allowList');
|
|
83
|
+
}
|
|
78
84
|
this.#connection = connection;
|
|
79
85
|
this.#targetFilterCallback = targetFilterCallback;
|
|
80
86
|
this.#targetFactory = targetFactory;
|
|
81
87
|
this.#waitForInitiallyDiscoveredTargets = waitForInitiallyDiscoveredTargets;
|
|
88
|
+
this.#blocklist = this.#mapPatterns(blocklist);
|
|
89
|
+
this.#allowlist = this.#mapPatterns(allowlist);
|
|
82
90
|
this.#connection.on('Target.targetCreated', this.#onTargetCreated);
|
|
83
91
|
this.#connection.on('Target.targetDestroyed', this.#onTargetDestroyed);
|
|
84
92
|
this.#connection.on('Target.targetInfoChanged', this.#onTargetInfoChanged);
|
|
@@ -106,6 +114,9 @@ class TargetManager extends EventEmitter_js_1.EventEmitter {
|
|
|
106
114
|
this.#finishInitializationIfReady();
|
|
107
115
|
await this.#initializeDeferred.valueOrThrow();
|
|
108
116
|
}
|
|
117
|
+
addToIgnoreTarget(targetId) {
|
|
118
|
+
this.#ignoredTargets.add(targetId);
|
|
119
|
+
}
|
|
109
120
|
getChildTargets(target) {
|
|
110
121
|
return target._childTargets();
|
|
111
122
|
}
|
|
@@ -119,6 +130,9 @@ class TargetManager extends EventEmitter_js_1.EventEmitter {
|
|
|
119
130
|
getAvailableTargets() {
|
|
120
131
|
return this.#attachedTargetsByTargetId;
|
|
121
132
|
}
|
|
133
|
+
getDiscoveredTargetInfos() {
|
|
134
|
+
return this.#discoveredTargetsByTargetId;
|
|
135
|
+
}
|
|
122
136
|
#setupAttachmentListeners(session) {
|
|
123
137
|
const listener = (event) => {
|
|
124
138
|
void this.#onAttachedToTarget(session, event);
|
|
@@ -227,6 +241,12 @@ class TargetManager extends EventEmitter_js_1.EventEmitter {
|
|
|
227
241
|
if (!this.#connection.isAutoAttached(targetInfo.targetId)) {
|
|
228
242
|
return;
|
|
229
243
|
}
|
|
244
|
+
// If we connect to a browser that is already open,
|
|
245
|
+
// immediately detach from any tab that is on the blocklist.
|
|
246
|
+
if (!this.#initialAttachDone && !this.isUrlAllowed(targetInfo.url)) {
|
|
247
|
+
await this.#silentDetach(session, parentSession);
|
|
248
|
+
return;
|
|
249
|
+
}
|
|
230
250
|
// Special case for service workers: being attached to service workers will
|
|
231
251
|
// prevent them from ever being destroyed. Therefore, we silently detach
|
|
232
252
|
// from service workers unless the connection was manually created via
|
|
@@ -236,7 +256,9 @@ class TargetManager extends EventEmitter_js_1.EventEmitter {
|
|
|
236
256
|
// CDP.
|
|
237
257
|
if (targetInfo.type === 'service_worker') {
|
|
238
258
|
await this.#silentDetach(session, parentSession);
|
|
239
|
-
if (this.#attachedTargetsByTargetId.has(targetInfo.targetId)
|
|
259
|
+
if (this.#attachedTargetsByTargetId.has(targetInfo.targetId) ||
|
|
260
|
+
this.#ignoredTargets.has(targetInfo.targetId) ||
|
|
261
|
+
!this.#discoveredTargetsByTargetId.has(targetInfo.targetId)) {
|
|
240
262
|
return;
|
|
241
263
|
}
|
|
242
264
|
const target = this.#targetFactory(targetInfo);
|
|
@@ -291,6 +313,7 @@ class TargetManager extends EventEmitter_js_1.EventEmitter {
|
|
|
291
313
|
autoAttach: true,
|
|
292
314
|
filter: this.#discoveryFilter,
|
|
293
315
|
}),
|
|
316
|
+
this.#maybeSetupNetworkConditions(session),
|
|
294
317
|
session.send('Runtime.runIfWaitingForDebugger'),
|
|
295
318
|
]).catch(util_js_1.debugError);
|
|
296
319
|
};
|
|
@@ -319,6 +342,77 @@ class TargetManager extends EventEmitter_js_1.EventEmitter {
|
|
|
319
342
|
this.#attachedTargetsByTargetId.delete(target._targetId);
|
|
320
343
|
this.emit("targetGone" /* TargetManagerEvent.TargetGone */, target);
|
|
321
344
|
};
|
|
345
|
+
/**
|
|
346
|
+
* Helper to validate URL against blocklist patterns
|
|
347
|
+
*/
|
|
348
|
+
isUrlAllowed = (url) => {
|
|
349
|
+
if (this.#blocklist.length === 0 && this.#allowlist.length === 0) {
|
|
350
|
+
return true;
|
|
351
|
+
}
|
|
352
|
+
// Always allow internal or setup pages
|
|
353
|
+
if (!url || url === 'about:blank') {
|
|
354
|
+
return true;
|
|
355
|
+
}
|
|
356
|
+
for (const item of this.#blocklist) {
|
|
357
|
+
if (item.pattern.test(url)) {
|
|
358
|
+
return false;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
if (this.#allowlist.length > 0) {
|
|
362
|
+
for (const item of this.#allowlist) {
|
|
363
|
+
if (item.pattern.test(url)) {
|
|
364
|
+
return true;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
return false;
|
|
368
|
+
}
|
|
369
|
+
return true;
|
|
370
|
+
};
|
|
371
|
+
#mapPatterns(rules) {
|
|
372
|
+
const result = [];
|
|
373
|
+
for (const rule of rules ?? []) {
|
|
374
|
+
result.push({ pattern: new urlpattern_polyfill_js_1.URLPattern(rule), rule });
|
|
375
|
+
}
|
|
376
|
+
return result;
|
|
377
|
+
}
|
|
378
|
+
#maybeSetupNetworkConditions = async (session) => {
|
|
379
|
+
if (this.#blocklist.length === 0 && this.#allowlist.length === 0) {
|
|
380
|
+
return;
|
|
381
|
+
}
|
|
382
|
+
const matchedNetworkConditions = [];
|
|
383
|
+
for (const item of this.#blocklist) {
|
|
384
|
+
matchedNetworkConditions.push({
|
|
385
|
+
urlPattern: item.rule,
|
|
386
|
+
offline: true,
|
|
387
|
+
latency: 0,
|
|
388
|
+
downloadThroughput: -1,
|
|
389
|
+
uploadThroughput: -1,
|
|
390
|
+
});
|
|
391
|
+
}
|
|
392
|
+
if (this.#allowlist.length > 0) {
|
|
393
|
+
for (const item of this.#allowlist) {
|
|
394
|
+
matchedNetworkConditions.push({
|
|
395
|
+
urlPattern: item.rule,
|
|
396
|
+
offline: false,
|
|
397
|
+
latency: 0,
|
|
398
|
+
downloadThroughput: -1,
|
|
399
|
+
uploadThroughput: -1,
|
|
400
|
+
});
|
|
401
|
+
}
|
|
402
|
+
matchedNetworkConditions.push({
|
|
403
|
+
urlPattern: '',
|
|
404
|
+
offline: true,
|
|
405
|
+
latency: 0,
|
|
406
|
+
downloadThroughput: -1,
|
|
407
|
+
uploadThroughput: -1,
|
|
408
|
+
});
|
|
409
|
+
}
|
|
410
|
+
await session.send('Network.emulateNetworkConditionsByRule', {
|
|
411
|
+
// @ts-expect-error offline cannot be undefined before M149.
|
|
412
|
+
offline: this.#blocklist.length > 0 ? true : undefined,
|
|
413
|
+
matchedNetworkConditions,
|
|
414
|
+
});
|
|
415
|
+
};
|
|
322
416
|
}
|
|
323
417
|
exports.TargetManager = TargetManager;
|
|
324
418
|
//# sourceMappingURL=TargetManager.js.map
|