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
package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/IsolatedWorld.js
CHANGED
|
@@ -9,17 +9,22 @@ import { EventEmitter } from '../common/EventEmitter.js';
|
|
|
9
9
|
import { fromEmitterEvent, timeout, withSourcePuppeteerURLIfNone, } from '../common/util.js';
|
|
10
10
|
import { disposeSymbol } from '../util/disposable.js';
|
|
11
11
|
import { CdpElementHandle } from './ElementHandle.js';
|
|
12
|
+
import { MAIN_WORLD } from './IsolatedWorlds.js';
|
|
12
13
|
import { CdpJSHandle } from './JSHandle.js';
|
|
14
|
+
import { CdpWebWorker } from './WebWorker.js';
|
|
13
15
|
/**
|
|
14
16
|
* @internal
|
|
15
17
|
*/
|
|
16
18
|
export class IsolatedWorld extends Realm {
|
|
17
19
|
#context;
|
|
18
20
|
#emitter = new EventEmitter();
|
|
21
|
+
#worldId;
|
|
22
|
+
#origin;
|
|
19
23
|
#frameOrWorker;
|
|
20
|
-
constructor(frameOrWorker, timeoutSettings) {
|
|
24
|
+
constructor(frameOrWorker, timeoutSettings, worldId) {
|
|
21
25
|
super(timeoutSettings);
|
|
22
26
|
this.#frameOrWorker = frameOrWorker;
|
|
27
|
+
this.#worldId = worldId;
|
|
23
28
|
}
|
|
24
29
|
get environment() {
|
|
25
30
|
return this.#frameOrWorker;
|
|
@@ -150,8 +155,33 @@ export class IsolatedWorld extends Realm {
|
|
|
150
155
|
[disposeSymbol]() {
|
|
151
156
|
this.#context?.[disposeSymbol]();
|
|
152
157
|
this.#emitter.emit('disposed', undefined);
|
|
153
|
-
super[disposeSymbol]();
|
|
154
158
|
this.#emitter.removeAllListeners();
|
|
159
|
+
super[disposeSymbol]();
|
|
160
|
+
}
|
|
161
|
+
get origin() {
|
|
162
|
+
return this.#origin;
|
|
163
|
+
}
|
|
164
|
+
set origin(origin) {
|
|
165
|
+
this.#origin = origin;
|
|
166
|
+
}
|
|
167
|
+
setWorldId(worldId) {
|
|
168
|
+
this.#worldId = worldId;
|
|
169
|
+
}
|
|
170
|
+
async extension() {
|
|
171
|
+
if (this.#frameOrWorker instanceof CdpWebWorker) {
|
|
172
|
+
throw new Error('Unable to get extension from Realm');
|
|
173
|
+
}
|
|
174
|
+
if (this.#worldId === MAIN_WORLD) {
|
|
175
|
+
return null;
|
|
176
|
+
}
|
|
177
|
+
if (typeof this.#worldId === 'string') {
|
|
178
|
+
const extensions = await this.#frameOrWorker._frameManager
|
|
179
|
+
.page()
|
|
180
|
+
.browser()
|
|
181
|
+
.extensions();
|
|
182
|
+
return extensions.get(this.#worldId) ?? null;
|
|
183
|
+
}
|
|
184
|
+
return null;
|
|
155
185
|
}
|
|
156
186
|
}
|
|
157
187
|
//# sourceMappingURL=IsolatedWorld.js.map
|
|
@@ -58,7 +58,8 @@ var __disposeResources = (this && this.__disposeResources) || (function (Suppres
|
|
|
58
58
|
import { firstValueFrom, from, raceWith } from '../../third_party/rxjs/rxjs.js';
|
|
59
59
|
import { CDPSessionEvent } from '../api/CDPSession.js';
|
|
60
60
|
import { Page, } from '../api/Page.js';
|
|
61
|
-
import {
|
|
61
|
+
import { WebWorker, WebWorkerEvent } from '../api/WebWorker.js';
|
|
62
|
+
import { ConsoleMessage } from '../common/ConsoleMessage.js';
|
|
62
63
|
import { TargetCloseError } from '../common/Errors.js';
|
|
63
64
|
import { EventEmitter } from '../common/EventEmitter.js';
|
|
64
65
|
import { FileChooser } from '../common/FileChooser.js';
|
|
@@ -82,16 +83,9 @@ import { CdpKeyboard, CdpMouse, CdpTouchscreen } from './Input.js';
|
|
|
82
83
|
import { MAIN_WORLD } from './IsolatedWorlds.js';
|
|
83
84
|
import { releaseObject } from './JSHandle.js';
|
|
84
85
|
import { Tracing } from './Tracing.js';
|
|
85
|
-
import { createClientError,
|
|
86
|
+
import { convertConsoleMessageLevel, createClientError, createConsoleMessage, pageBindingInitString, } from './utils.js';
|
|
87
|
+
import { WebMCP } from './WebMCP.js';
|
|
86
88
|
import { CdpWebWorker } from './WebWorker.js';
|
|
87
|
-
function convertConsoleMessageLevel(method) {
|
|
88
|
-
switch (method) {
|
|
89
|
-
case 'warning':
|
|
90
|
-
return 'warn';
|
|
91
|
-
default:
|
|
92
|
-
return method;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
89
|
/**
|
|
96
90
|
* @internal
|
|
97
91
|
*/
|
|
@@ -140,6 +134,7 @@ export class CdpPage extends Page {
|
|
|
140
134
|
#frameManager;
|
|
141
135
|
#emulationManager;
|
|
142
136
|
#tracing;
|
|
137
|
+
#webmcp;
|
|
143
138
|
#bindings = new Map();
|
|
144
139
|
#exposedFunctions = new Map();
|
|
145
140
|
#coverage;
|
|
@@ -165,6 +160,7 @@ export class CdpPage extends Page {
|
|
|
165
160
|
this.#frameManager = new FrameManager(client, this, this._timeoutSettings);
|
|
166
161
|
this.#emulationManager = new EmulationManager(client);
|
|
167
162
|
this.#tracing = new Tracing(client);
|
|
163
|
+
this.#webmcp = new WebMCP(client, this.#frameManager);
|
|
168
164
|
this.#coverage = new Coverage(client);
|
|
169
165
|
this.#viewport = null;
|
|
170
166
|
// Use browser context's connection, as current Bluetooth emulation in Chromium is
|
|
@@ -245,6 +241,7 @@ export class CdpPage extends Page {
|
|
|
245
241
|
this.#touchscreen.updateClient(newSession);
|
|
246
242
|
this.#emulationManager.updateClient(newSession);
|
|
247
243
|
this.#tracing.updateClient(newSession);
|
|
244
|
+
this.#webmcp.updateClient(newSession);
|
|
248
245
|
this.#coverage.updateClient(newSession);
|
|
249
246
|
await this.#frameManager.swapFrameTree(newSession);
|
|
250
247
|
this.#setupPrimaryTargetListeners();
|
|
@@ -295,8 +292,23 @@ export class CdpPage extends Page {
|
|
|
295
292
|
assert(session instanceof CdpCDPSession);
|
|
296
293
|
this.#frameManager.onAttachedToTarget(session.target());
|
|
297
294
|
if (session.target()._getTargetInfo().type === 'worker') {
|
|
298
|
-
const worker = new CdpWebWorker(session, session.target().url(), session.target()._targetId, session.target().type(), this.#
|
|
295
|
+
const worker = new CdpWebWorker(session, session.target().url(), session.target()._targetId, session.target().type(), this.#handleException.bind(this), this.#frameManager.networkManager);
|
|
299
296
|
this.#workers.set(session.id(), worker);
|
|
297
|
+
worker.internalEmitter.on(WebWorkerEvent.Console, message => {
|
|
298
|
+
const noListenersForConsoleOnPage = this.listenerCount("console" /* PageEvent.Console */) === 0;
|
|
299
|
+
const noListenersForConsoleOnWorker = worker.listenerCount(WebWorkerEvent.Console) === 0;
|
|
300
|
+
if (noListenersForConsoleOnPage && noListenersForConsoleOnWorker) {
|
|
301
|
+
// eslint-disable-next-line max-len -- The comment is long.
|
|
302
|
+
// eslint-disable-next-line @puppeteer/use-using -- These are not owned by this function.
|
|
303
|
+
for (const arg of message.args()) {
|
|
304
|
+
void arg.dispose().catch(debugError);
|
|
305
|
+
}
|
|
306
|
+
return;
|
|
307
|
+
}
|
|
308
|
+
if (!noListenersForConsoleOnPage) {
|
|
309
|
+
this.emit("console" /* PageEvent.Console */, message);
|
|
310
|
+
}
|
|
311
|
+
});
|
|
300
312
|
this.emit("workercreated" /* PageEvent.WorkerCreated */, worker);
|
|
301
313
|
}
|
|
302
314
|
session.on(CDPSessionEvent.Ready, this.#onAttachedToTarget);
|
|
@@ -307,6 +319,7 @@ export class CdpPage extends Page {
|
|
|
307
319
|
this.#frameManager.initialize(this.#primaryTargetClient),
|
|
308
320
|
this.#primaryTargetClient.send('Performance.enable'),
|
|
309
321
|
this.#primaryTargetClient.send('Log.enable'),
|
|
322
|
+
this.#webmcp.initialize(),
|
|
310
323
|
]);
|
|
311
324
|
}
|
|
312
325
|
catch (err) {
|
|
@@ -357,6 +370,9 @@ export class CdpPage extends Page {
|
|
|
357
370
|
_client() {
|
|
358
371
|
return this.#primaryTargetClient;
|
|
359
372
|
}
|
|
373
|
+
_isUrlAllowed(url) {
|
|
374
|
+
return this.#targetManager.isUrlAllowed(url);
|
|
375
|
+
}
|
|
360
376
|
isServiceWorkerBypassed() {
|
|
361
377
|
return this.#serviceWorkerBypassed;
|
|
362
378
|
}
|
|
@@ -369,9 +385,18 @@ export class CdpPage extends Page {
|
|
|
369
385
|
async openDevTools() {
|
|
370
386
|
const pageTargetId = this.target()._targetId;
|
|
371
387
|
const browser = this.browser();
|
|
388
|
+
const devtoolsTargetId = await browser._hasDevToolsTarget(this.target()._targetId);
|
|
389
|
+
if (devtoolsTargetId) {
|
|
390
|
+
return await browser._getDevToolsTargetPage(devtoolsTargetId);
|
|
391
|
+
}
|
|
372
392
|
const devtoolsPage = await browser._createDevToolsPage(pageTargetId);
|
|
373
393
|
return devtoolsPage;
|
|
374
394
|
}
|
|
395
|
+
async hasDevTools() {
|
|
396
|
+
const browser = this.browser();
|
|
397
|
+
const targetId = await browser._hasDevToolsTarget(this.target()._targetId);
|
|
398
|
+
return Boolean(targetId);
|
|
399
|
+
}
|
|
375
400
|
async waitForFileChooser(options = {}) {
|
|
376
401
|
const needsEnable = this.#fileChooserDeferreds.size === 0;
|
|
377
402
|
const { timeout = this._timeoutSettings.timeout() } = options;
|
|
@@ -444,6 +469,9 @@ export class CdpPage extends Page {
|
|
|
444
469
|
get tracing() {
|
|
445
470
|
return this.#tracing;
|
|
446
471
|
}
|
|
472
|
+
get webmcp() {
|
|
473
|
+
return this.#webmcp;
|
|
474
|
+
}
|
|
447
475
|
frames() {
|
|
448
476
|
return this.#frameManager.frames();
|
|
449
477
|
}
|
|
@@ -667,38 +695,30 @@ export class CdpPage extends Page {
|
|
|
667
695
|
#handleException(exception) {
|
|
668
696
|
this.emit("pageerror" /* PageEvent.PageError */, createClientError(exception.exceptionDetails));
|
|
669
697
|
}
|
|
670
|
-
#onConsoleAPI(world, event) {
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
if (!this.listenerCount("console" /* PageEvent.Console */)) {
|
|
675
|
-
values.forEach(arg => {
|
|
676
|
-
return arg.dispose();
|
|
698
|
+
#onConsoleAPI(world, event, values) {
|
|
699
|
+
if (!values) {
|
|
700
|
+
values = event.args.map(arg => {
|
|
701
|
+
return world.createCdpHandle(arg);
|
|
677
702
|
});
|
|
678
|
-
return;
|
|
679
703
|
}
|
|
680
|
-
const
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
url: callFrame.url,
|
|
691
|
-
lineNumber: callFrame.lineNumber,
|
|
692
|
-
columnNumber: callFrame.columnNumber,
|
|
693
|
-
});
|
|
704
|
+
const hasPageConsoleListeners = this.listenerCount("console" /* PageEvent.Console */) > 0;
|
|
705
|
+
const hasWorkerConsoleListeners = world.environment instanceof WebWorker &&
|
|
706
|
+
world.environment.listenerCount(WebWorkerEvent.Console) > 0;
|
|
707
|
+
if (!hasPageConsoleListeners) {
|
|
708
|
+
if (!hasWorkerConsoleListeners) {
|
|
709
|
+
// eslint-disable-next-line max-len -- The comment is long.
|
|
710
|
+
// eslint-disable-next-line @puppeteer/use-using -- These are not owned by this function.
|
|
711
|
+
for (const value of values) {
|
|
712
|
+
void value.dispose().catch(debugError);
|
|
713
|
+
}
|
|
694
714
|
}
|
|
715
|
+
return;
|
|
695
716
|
}
|
|
696
717
|
let targetId;
|
|
697
718
|
if (world.environment.client instanceof CdpCDPSession) {
|
|
698
719
|
targetId = world.environment.client.target()._targetId;
|
|
699
720
|
}
|
|
700
|
-
|
|
701
|
-
this.emit("console" /* PageEvent.Console */, message);
|
|
721
|
+
this.emit("console" /* PageEvent.Console */, createConsoleMessage(event, values, targetId));
|
|
702
722
|
}
|
|
703
723
|
async #onBindingCalled(world, event) {
|
|
704
724
|
let payload;
|
|
@@ -770,6 +790,9 @@ export class CdpPage extends Page {
|
|
|
770
790
|
async setBypassCSP(enabled) {
|
|
771
791
|
await this.#primaryTargetClient.send('Page.setBypassCSP', { enabled });
|
|
772
792
|
}
|
|
793
|
+
async triggerExtensionAction(extension) {
|
|
794
|
+
return await extension.triggerAction(this);
|
|
795
|
+
}
|
|
773
796
|
async emulateMediaType(type) {
|
|
774
797
|
return await this.#emulationManager.emulateMediaType(type);
|
|
775
798
|
}
|
|
@@ -957,6 +980,9 @@ export class CdpPage extends Page {
|
|
|
957
980
|
get bluetooth() {
|
|
958
981
|
return this.#cdpBluetoothEmulation;
|
|
959
982
|
}
|
|
983
|
+
extensionRealms() {
|
|
984
|
+
return this.mainFrame().extensionRealms();
|
|
985
|
+
}
|
|
960
986
|
}
|
|
961
987
|
const supportedMetrics = new Set([
|
|
962
988
|
'Timestamp',
|
|
@@ -29,6 +29,9 @@ export class CdpTarget extends Target {
|
|
|
29
29
|
_initializedDeferred = Deferred.create();
|
|
30
30
|
_isClosedDeferred = Deferred.create();
|
|
31
31
|
_targetId;
|
|
32
|
+
_asPagePromise;
|
|
33
|
+
/** @internal */
|
|
34
|
+
pagePromise;
|
|
32
35
|
/**
|
|
33
36
|
* To initialize the target for use, call initialize.
|
|
34
37
|
*
|
|
@@ -47,13 +50,21 @@ export class CdpTarget extends Target {
|
|
|
47
50
|
}
|
|
48
51
|
}
|
|
49
52
|
async asPage() {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
if (this.pagePromise) {
|
|
54
|
+
const page = await this.pagePromise;
|
|
55
|
+
if (page) {
|
|
56
|
+
return page;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
if (!this._asPagePromise) {
|
|
60
|
+
const session = this._session();
|
|
61
|
+
this._asPagePromise = (session
|
|
62
|
+
? Promise.resolve(session)
|
|
63
|
+
: this._sessionFactory()(/* isAutoAttachEmulated=*/ false)).then(client => {
|
|
53
64
|
return CdpPage._create(client, this, null);
|
|
54
65
|
});
|
|
55
66
|
}
|
|
56
|
-
return await
|
|
67
|
+
return (await this._asPagePromise) ?? null;
|
|
57
68
|
}
|
|
58
69
|
_subtype() {
|
|
59
70
|
return this.#targetInfo.subtype;
|
|
@@ -162,7 +173,6 @@ export class CdpTarget extends Target {
|
|
|
162
173
|
*/
|
|
163
174
|
export class PageTarget extends CdpTarget {
|
|
164
175
|
#defaultViewport;
|
|
165
|
-
pagePromise;
|
|
166
176
|
constructor(targetInfo, session, browserContext, targetManager, sessionFactory, defaultViewport) {
|
|
167
177
|
super(targetInfo, session, browserContext, targetManager, sessionFactory);
|
|
168
178
|
this.#defaultViewport = defaultViewport ?? undefined;
|
|
@@ -225,11 +235,10 @@ export class WorkerTarget extends CdpTarget {
|
|
|
225
235
|
async worker() {
|
|
226
236
|
if (!this.#workerPromise) {
|
|
227
237
|
const session = this._session();
|
|
228
|
-
// TODO(einbinder): Make workers send their console logs.
|
|
229
238
|
this.#workerPromise = (session
|
|
230
239
|
? Promise.resolve(session)
|
|
231
240
|
: this._sessionFactory()(/* isAutoAttachEmulated=*/ false)).then(client => {
|
|
232
|
-
return new CdpWebWorker(client, this._getTargetInfo().url, this._targetId, this.type(), () => { } /*
|
|
241
|
+
return new CdpWebWorker(client, this._getTargetInfo().url, this._targetId, this.type(), () => { } /* exceptionThrown */, undefined /* networkManager */);
|
|
233
242
|
});
|
|
234
243
|
}
|
|
235
244
|
return await this.#workerPromise;
|
package/web/.next/standalone/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/TargetManager.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Copyright 2022 Google Inc.
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
+
import { URLPattern } from '../../third_party/urlpattern-polyfill/urlpattern-polyfill.js';
|
|
6
7
|
import { CDPSessionEvent } from '../api/CDPSession.js';
|
|
7
8
|
import { EventEmitter } from '../common/EventEmitter.js';
|
|
8
9
|
import { debugError } from '../common/util.js';
|
|
@@ -70,12 +71,19 @@ export class TargetManager extends EventEmitter {
|
|
|
70
71
|
// done. It indicates whethere we are running the initial auto-attach step or
|
|
71
72
|
// if we are handling targets after that.
|
|
72
73
|
#initialAttachDone = false;
|
|
73
|
-
|
|
74
|
+
#blocklist = [];
|
|
75
|
+
#allowlist = [];
|
|
76
|
+
constructor(connection, targetFactory, targetFilterCallback, waitForInitiallyDiscoveredTargets = true, blocklist, allowlist) {
|
|
74
77
|
super();
|
|
78
|
+
if (blocklist && allowlist) {
|
|
79
|
+
throw new Error('Cannot specify both blockList and allowList');
|
|
80
|
+
}
|
|
75
81
|
this.#connection = connection;
|
|
76
82
|
this.#targetFilterCallback = targetFilterCallback;
|
|
77
83
|
this.#targetFactory = targetFactory;
|
|
78
84
|
this.#waitForInitiallyDiscoveredTargets = waitForInitiallyDiscoveredTargets;
|
|
85
|
+
this.#blocklist = this.#mapPatterns(blocklist);
|
|
86
|
+
this.#allowlist = this.#mapPatterns(allowlist);
|
|
79
87
|
this.#connection.on('Target.targetCreated', this.#onTargetCreated);
|
|
80
88
|
this.#connection.on('Target.targetDestroyed', this.#onTargetDestroyed);
|
|
81
89
|
this.#connection.on('Target.targetInfoChanged', this.#onTargetInfoChanged);
|
|
@@ -103,6 +111,9 @@ export class TargetManager extends EventEmitter {
|
|
|
103
111
|
this.#finishInitializationIfReady();
|
|
104
112
|
await this.#initializeDeferred.valueOrThrow();
|
|
105
113
|
}
|
|
114
|
+
addToIgnoreTarget(targetId) {
|
|
115
|
+
this.#ignoredTargets.add(targetId);
|
|
116
|
+
}
|
|
106
117
|
getChildTargets(target) {
|
|
107
118
|
return target._childTargets();
|
|
108
119
|
}
|
|
@@ -116,6 +127,9 @@ export class TargetManager extends EventEmitter {
|
|
|
116
127
|
getAvailableTargets() {
|
|
117
128
|
return this.#attachedTargetsByTargetId;
|
|
118
129
|
}
|
|
130
|
+
getDiscoveredTargetInfos() {
|
|
131
|
+
return this.#discoveredTargetsByTargetId;
|
|
132
|
+
}
|
|
119
133
|
#setupAttachmentListeners(session) {
|
|
120
134
|
const listener = (event) => {
|
|
121
135
|
void this.#onAttachedToTarget(session, event);
|
|
@@ -224,6 +238,12 @@ export class TargetManager extends EventEmitter {
|
|
|
224
238
|
if (!this.#connection.isAutoAttached(targetInfo.targetId)) {
|
|
225
239
|
return;
|
|
226
240
|
}
|
|
241
|
+
// If we connect to a browser that is already open,
|
|
242
|
+
// immediately detach from any tab that is on the blocklist.
|
|
243
|
+
if (!this.#initialAttachDone && !this.isUrlAllowed(targetInfo.url)) {
|
|
244
|
+
await this.#silentDetach(session, parentSession);
|
|
245
|
+
return;
|
|
246
|
+
}
|
|
227
247
|
// Special case for service workers: being attached to service workers will
|
|
228
248
|
// prevent them from ever being destroyed. Therefore, we silently detach
|
|
229
249
|
// from service workers unless the connection was manually created via
|
|
@@ -233,7 +253,9 @@ export class TargetManager extends EventEmitter {
|
|
|
233
253
|
// CDP.
|
|
234
254
|
if (targetInfo.type === 'service_worker') {
|
|
235
255
|
await this.#silentDetach(session, parentSession);
|
|
236
|
-
if (this.#attachedTargetsByTargetId.has(targetInfo.targetId)
|
|
256
|
+
if (this.#attachedTargetsByTargetId.has(targetInfo.targetId) ||
|
|
257
|
+
this.#ignoredTargets.has(targetInfo.targetId) ||
|
|
258
|
+
!this.#discoveredTargetsByTargetId.has(targetInfo.targetId)) {
|
|
237
259
|
return;
|
|
238
260
|
}
|
|
239
261
|
const target = this.#targetFactory(targetInfo);
|
|
@@ -288,6 +310,7 @@ export class TargetManager extends EventEmitter {
|
|
|
288
310
|
autoAttach: true,
|
|
289
311
|
filter: this.#discoveryFilter,
|
|
290
312
|
}),
|
|
313
|
+
this.#maybeSetupNetworkConditions(session),
|
|
291
314
|
session.send('Runtime.runIfWaitingForDebugger'),
|
|
292
315
|
]).catch(debugError);
|
|
293
316
|
};
|
|
@@ -316,5 +339,76 @@ export class TargetManager extends EventEmitter {
|
|
|
316
339
|
this.#attachedTargetsByTargetId.delete(target._targetId);
|
|
317
340
|
this.emit("targetGone" /* TargetManagerEvent.TargetGone */, target);
|
|
318
341
|
};
|
|
342
|
+
/**
|
|
343
|
+
* Helper to validate URL against blocklist patterns
|
|
344
|
+
*/
|
|
345
|
+
isUrlAllowed = (url) => {
|
|
346
|
+
if (this.#blocklist.length === 0 && this.#allowlist.length === 0) {
|
|
347
|
+
return true;
|
|
348
|
+
}
|
|
349
|
+
// Always allow internal or setup pages
|
|
350
|
+
if (!url || url === 'about:blank') {
|
|
351
|
+
return true;
|
|
352
|
+
}
|
|
353
|
+
for (const item of this.#blocklist) {
|
|
354
|
+
if (item.pattern.test(url)) {
|
|
355
|
+
return false;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
if (this.#allowlist.length > 0) {
|
|
359
|
+
for (const item of this.#allowlist) {
|
|
360
|
+
if (item.pattern.test(url)) {
|
|
361
|
+
return true;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
return false;
|
|
365
|
+
}
|
|
366
|
+
return true;
|
|
367
|
+
};
|
|
368
|
+
#mapPatterns(rules) {
|
|
369
|
+
const result = [];
|
|
370
|
+
for (const rule of rules ?? []) {
|
|
371
|
+
result.push({ pattern: new URLPattern(rule), rule });
|
|
372
|
+
}
|
|
373
|
+
return result;
|
|
374
|
+
}
|
|
375
|
+
#maybeSetupNetworkConditions = async (session) => {
|
|
376
|
+
if (this.#blocklist.length === 0 && this.#allowlist.length === 0) {
|
|
377
|
+
return;
|
|
378
|
+
}
|
|
379
|
+
const matchedNetworkConditions = [];
|
|
380
|
+
for (const item of this.#blocklist) {
|
|
381
|
+
matchedNetworkConditions.push({
|
|
382
|
+
urlPattern: item.rule,
|
|
383
|
+
offline: true,
|
|
384
|
+
latency: 0,
|
|
385
|
+
downloadThroughput: -1,
|
|
386
|
+
uploadThroughput: -1,
|
|
387
|
+
});
|
|
388
|
+
}
|
|
389
|
+
if (this.#allowlist.length > 0) {
|
|
390
|
+
for (const item of this.#allowlist) {
|
|
391
|
+
matchedNetworkConditions.push({
|
|
392
|
+
urlPattern: item.rule,
|
|
393
|
+
offline: false,
|
|
394
|
+
latency: 0,
|
|
395
|
+
downloadThroughput: -1,
|
|
396
|
+
uploadThroughput: -1,
|
|
397
|
+
});
|
|
398
|
+
}
|
|
399
|
+
matchedNetworkConditions.push({
|
|
400
|
+
urlPattern: '',
|
|
401
|
+
offline: true,
|
|
402
|
+
latency: 0,
|
|
403
|
+
downloadThroughput: -1,
|
|
404
|
+
uploadThroughput: -1,
|
|
405
|
+
});
|
|
406
|
+
}
|
|
407
|
+
await session.send('Network.emulateNetworkConditionsByRule', {
|
|
408
|
+
// @ts-expect-error offline cannot be undefined before M149.
|
|
409
|
+
offline: this.#blocklist.length > 0 ? true : undefined,
|
|
410
|
+
matchedNetworkConditions,
|
|
411
|
+
});
|
|
412
|
+
};
|
|
319
413
|
}
|
|
320
414
|
//# sourceMappingURL=TargetManager.js.map
|