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
|
@@ -46,6 +46,11 @@ exports.TYPES = {
|
|
|
46
46
|
'::1/128': 'Loopback',
|
|
47
47
|
'ff00::/8': 'Multicast',
|
|
48
48
|
'fe80::/10': 'Link-local unicast',
|
|
49
|
+
'fc00::/7': 'Unique local',
|
|
50
|
+
'2002::/16': '6to4',
|
|
51
|
+
'2001:db8::/32': 'Documentation',
|
|
52
|
+
'64:ff9b::/96': 'NAT64 (well-known)',
|
|
53
|
+
'64:ff9b:1::/48': 'NAT64 (local-use)',
|
|
49
54
|
};
|
|
50
55
|
/**
|
|
51
56
|
* A regular expression that matches bad characters in an IPv6 address
|
|
@@ -1,14 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.escapeHtml = escapeHtml;
|
|
3
4
|
exports.spanAllZeroes = spanAllZeroes;
|
|
4
5
|
exports.spanAll = spanAll;
|
|
5
6
|
exports.spanLeadingZeroes = spanLeadingZeroes;
|
|
6
7
|
exports.simpleGroup = simpleGroup;
|
|
8
|
+
function escapeHtml(s) {
|
|
9
|
+
return s
|
|
10
|
+
.replace(/&/g, '&')
|
|
11
|
+
.replace(/</g, '<')
|
|
12
|
+
.replace(/>/g, '>')
|
|
13
|
+
.replace(/"/g, '"')
|
|
14
|
+
.replace(/'/g, ''');
|
|
15
|
+
}
|
|
7
16
|
/**
|
|
8
17
|
* @returns {String} the string with all zeroes contained in a <span>
|
|
9
18
|
*/
|
|
10
19
|
function spanAllZeroes(s) {
|
|
11
|
-
return s.replace(/(0+)/g, '<span class="zero">$1</span>');
|
|
20
|
+
return escapeHtml(s).replace(/(0+)/g, '<span class="zero">$1</span>');
|
|
12
21
|
}
|
|
13
22
|
/**
|
|
14
23
|
* @returns {String} the string with each character contained in a <span>
|
|
@@ -16,11 +25,11 @@ function spanAllZeroes(s) {
|
|
|
16
25
|
function spanAll(s, offset = 0) {
|
|
17
26
|
const letters = s.split('');
|
|
18
27
|
return letters
|
|
19
|
-
.map((n, i) => `<span class="digit value-${n} position-${i + offset}">${spanAllZeroes(n)}</span>`)
|
|
28
|
+
.map((n, i) => `<span class="digit value-${escapeHtml(n)} position-${i + offset}">${spanAllZeroes(n)}</span>`)
|
|
20
29
|
.join('');
|
|
21
30
|
}
|
|
22
31
|
function spanLeadingZeroesSimple(group) {
|
|
23
|
-
return group.replace(/^(0+)/, '<span class="zero">$1</span>');
|
|
32
|
+
return escapeHtml(group).replace(/^(0+)/, '<span class="zero">$1</span>');
|
|
24
33
|
}
|
|
25
34
|
/**
|
|
26
35
|
* @returns {String} the string with leading zeroes contained in a <span>
|
|
@@ -2,77 +2,87 @@
|
|
|
2
2
|
"name": "ip-address",
|
|
3
3
|
"description": "A library for parsing IPv4 and IPv6 IP addresses in node and the browser.",
|
|
4
4
|
"keywords": [
|
|
5
|
-
"
|
|
5
|
+
"ip",
|
|
6
6
|
"ipv4",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
7
|
+
"ipv6",
|
|
8
|
+
"address",
|
|
9
|
+
"cidr",
|
|
10
|
+
"subnet",
|
|
11
|
+
"netmask",
|
|
12
|
+
"validate",
|
|
13
|
+
"validation",
|
|
14
|
+
"parse",
|
|
15
|
+
"arpa",
|
|
16
|
+
"bigint",
|
|
17
|
+
"browser"
|
|
9
18
|
],
|
|
10
|
-
"version": "10.
|
|
19
|
+
"version": "10.2.0",
|
|
11
20
|
"author": "Beau Gunderson <beau@beaugunderson.com> (https://beaugunderson.com/)",
|
|
12
21
|
"license": "MIT",
|
|
13
22
|
"main": "dist/ip-address.js",
|
|
14
23
|
"types": "dist/ip-address.d.ts",
|
|
15
24
|
"scripts": {
|
|
16
|
-
"docs": "
|
|
25
|
+
"docs": "tsx scripts/build-readme.ts",
|
|
17
26
|
"build": "rm -rf dist; mkdir dist; tsc",
|
|
18
|
-
"prepack": "npm run build",
|
|
19
|
-
"
|
|
20
|
-
"test-ci": "nyc mocha",
|
|
27
|
+
"prepack": "npm run docs && npm run build",
|
|
28
|
+
"test-ci": "c8 --experimental-monocart mocha",
|
|
21
29
|
"test": "mocha",
|
|
22
30
|
"watch": "mocha --watch"
|
|
23
31
|
},
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
32
|
+
"c8": {
|
|
33
|
+
"include": [
|
|
34
|
+
"src/**/*.ts"
|
|
27
35
|
],
|
|
28
36
|
"exclude": [
|
|
29
37
|
"**/*.d.ts",
|
|
30
|
-
".
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"test/",
|
|
34
|
-
"tmp/"
|
|
38
|
+
"src/ip-address.ts",
|
|
39
|
+
"src/v4/constants.ts",
|
|
40
|
+
"src/v6/constants.ts"
|
|
35
41
|
],
|
|
36
42
|
"reporter": [
|
|
37
43
|
"html",
|
|
38
44
|
"lcov",
|
|
39
45
|
"text"
|
|
40
|
-
]
|
|
41
|
-
"all": true
|
|
46
|
+
]
|
|
42
47
|
},
|
|
43
48
|
"engines": {
|
|
44
49
|
"node": ">= 12"
|
|
45
50
|
},
|
|
51
|
+
"sideEffects": false,
|
|
46
52
|
"files": [
|
|
47
|
-
"src",
|
|
48
53
|
"dist"
|
|
49
54
|
],
|
|
50
55
|
"repository": {
|
|
51
56
|
"type": "git",
|
|
52
57
|
"url": "git://github.com/beaugunderson/ip-address.git"
|
|
53
58
|
},
|
|
59
|
+
"overrides": {
|
|
60
|
+
"diff": "^8.0.3",
|
|
61
|
+
"serialize-javascript": "^7.0.5",
|
|
62
|
+
"@eslint/plugin-kit": "^0.7.1"
|
|
63
|
+
},
|
|
54
64
|
"devDependencies": {
|
|
55
|
-
"@types/chai": "^5.
|
|
56
|
-
"@types/mocha": "^10.0.
|
|
57
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
58
|
-
"@typescript-eslint/parser": "^8.
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"eslint": "^8.
|
|
65
|
+
"@types/chai": "^5.2.3",
|
|
66
|
+
"@types/mocha": "^10.0.10",
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "^8.59.1",
|
|
68
|
+
"@typescript-eslint/parser": "^8.59.1",
|
|
69
|
+
"c8": "^11.0.0",
|
|
70
|
+
"chai": "^6.2.2",
|
|
71
|
+
"eslint": "^8.57.1",
|
|
62
72
|
"eslint_d": "^14.0.4",
|
|
63
73
|
"eslint-config-airbnb": "^19.0.4",
|
|
64
|
-
"eslint-config-prettier": "^
|
|
74
|
+
"eslint-config-prettier": "^10.1.8",
|
|
65
75
|
"eslint-plugin-filenames": "^1.3.2",
|
|
66
|
-
"eslint-plugin-import": "^2.
|
|
67
|
-
"eslint-plugin-jsx-a11y": "^6.10.
|
|
68
|
-
"eslint-plugin-prettier": "^5.
|
|
76
|
+
"eslint-plugin-import": "^2.32.0",
|
|
77
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
78
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
69
79
|
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
|
|
70
|
-
"mocha": "^
|
|
71
|
-
"
|
|
72
|
-
"prettier": "^3.
|
|
73
|
-
"release-it": "^17.6.0",
|
|
80
|
+
"mocha": "^11.7.5",
|
|
81
|
+
"monocart-coverage-reports": "^2.12.11",
|
|
82
|
+
"prettier": "^3.8.3",
|
|
74
83
|
"source-map-support": "^0.5.21",
|
|
75
|
-
"tsx": "^4.
|
|
84
|
+
"tsx": "^4.21.0",
|
|
85
|
+
"typedoc": "^0.28.19",
|
|
76
86
|
"typescript": "<5.6.0"
|
|
77
87
|
}
|
|
78
88
|
}
|
|
@@ -43,6 +43,7 @@ const _trytoparsepath = require("../../lib/try-to-parse-path");
|
|
|
43
43
|
const _isapiroute = require("../../lib/is-api-route");
|
|
44
44
|
const _isedgeruntime = require("../../lib/is-edge-runtime");
|
|
45
45
|
const _constants1 = require("../../shared/lib/constants");
|
|
46
|
+
const _escaperegexp = require("../../shared/lib/escape-regexp");
|
|
46
47
|
const _pagetypes = require("../../lib/page-types");
|
|
47
48
|
const _appsegmentconfig = require("../segment-config/app/app-segment-config");
|
|
48
49
|
const _zod = require("../../shared/lib/zod");
|
|
@@ -93,6 +94,12 @@ function _interop_require_wildcard(obj, nodeInterop) {
|
|
|
93
94
|
return newObj;
|
|
94
95
|
}
|
|
95
96
|
const PARSE_PATTERN = /(?<!(_jsx|jsx-))runtime|preferredRegion|getStaticProps|getServerSideProps|generateStaticParams|export const|generateImageMetadata|generateSitemaps|middleware|proxy/;
|
|
97
|
+
const APP_ROUTE_RSC_SUFFIX_MATCHER = (0, _escaperegexp.escapeStringRegexp)(_constants.RSC_SUFFIX);
|
|
98
|
+
const APP_ROUTE_SEGMENT_PREFETCH_SUFFIX_MATCHER = `${(0, _escaperegexp.escapeStringRegexp)(_constants.RSC_SEGMENTS_DIR_SUFFIX)}/.+${(0, _escaperegexp.escapeStringRegexp)(_constants.RSC_SEGMENT_SUFFIX)}`;
|
|
99
|
+
const APP_ROUTE_TRANSPORT_SUFFIX_MATCHER = `${APP_ROUTE_RSC_SUFFIX_MATCHER}|${APP_ROUTE_SEGMENT_PREFETCH_SUFFIX_MATCHER}`;
|
|
100
|
+
const ROOT_APP_ROUTE_TRANSPORT_MATCHER = `/?index(?:${APP_ROUTE_TRANSPORT_SUFFIX_MATCHER})`;
|
|
101
|
+
const MIDDLEWARE_DATA_SUFFIX_MATCHER = `\\.json|${APP_ROUTE_TRANSPORT_SUFFIX_MATCHER}`;
|
|
102
|
+
const OPTIONAL_MIDDLEWARE_NEXT_DATA_PREFIX = '/:nextData(_next/data/[^/]{1,})?';
|
|
96
103
|
const CLIENT_MODULE_LABEL = /\/\* __next_internal_client_entry_do_not_use__ ([^ ]*) (cjs|auto) \*\//;
|
|
97
104
|
// Match JSON object that may contain nested objects (for loc info)
|
|
98
105
|
// The JSON ends right before the closing " */"
|
|
@@ -337,7 +344,11 @@ function getMiddlewareMatchers(matcherOrMatchers, nextConfig) {
|
|
|
337
344
|
if ((i18n == null ? void 0 : i18n.locales) && matcher.locale !== false) {
|
|
338
345
|
source = `/:nextInternalLocale((?!_next/)[^/.]{1,})${isRoot ? '' : source}`;
|
|
339
346
|
}
|
|
340
|
-
|
|
347
|
+
// Match transport-specific route forms that resolve to the same page.
|
|
348
|
+
// - Pages Router data routes: /_next/data/<build-id>/...
|
|
349
|
+
// - App Router transport routes: .rsc, ...segments/...segment.rsc
|
|
350
|
+
const sourceSuffix = `${isRoot ? `(${nextConfig.i18n ? '|\\.json|' : ''}/?index|/?index\\.json|${ROOT_APP_ROUTE_TRANSPORT_MATCHER})?` : `{(${MIDDLEWARE_DATA_SUFFIX_MATCHER})}?`}`;
|
|
351
|
+
source = `${OPTIONAL_MIDDLEWARE_NEXT_DATA_PREFIX}${source}${sourceSuffix}`;
|
|
341
352
|
if (nextConfig.basePath) {
|
|
342
353
|
source = `${nextConfig.basePath}${source}`;
|
|
343
354
|
}
|
|
@@ -531,7 +531,7 @@ function createReplacements(segment, paramValue) {
|
|
|
531
531
|
encodeURIComponent)
|
|
532
532
|
};
|
|
533
533
|
}
|
|
534
|
-
async function buildAppStaticPaths({ dir, page, route, distDir, cacheComponents, authInterrupts, segments, isrFlushToDisk, cacheHandler, cacheLifeProfiles, requestHeaders, cacheHandlers, cacheMaxMemorySize, fetchCacheKeyPrefix, nextConfigOutput, ComponentMod, isRoutePPREnabled = false, partialFallbacksEnabled = false, buildId, rootParamKeys }) {
|
|
534
|
+
async function buildAppStaticPaths({ dir, page, route, distDir, cacheComponents, authInterrupts, segments, isrFlushToDisk, cacheHandler, cacheLifeProfiles, requestHeaders, cacheHandlers, cacheMaxMemorySize, fetchCacheKeyPrefix, nextConfigOutput, ComponentMod, isRoutePPREnabled = false, partialFallbacksEnabled = false, buildId, deploymentId, rootParamKeys }) {
|
|
535
535
|
if (segments.some((generate)=>{
|
|
536
536
|
var _generate_config;
|
|
537
537
|
return ((_generate_config = generate.config) == null ? void 0 : _generate_config.dynamicParams) === true;
|
|
@@ -574,6 +574,7 @@ async function buildAppStaticPaths({ dir, page, route, distDir, cacheComponents,
|
|
|
574
574
|
onAfterTaskError: afterRunner.context.onTaskError
|
|
575
575
|
},
|
|
576
576
|
buildId,
|
|
577
|
+
deploymentId,
|
|
577
578
|
previouslyRevalidatedTags: []
|
|
578
579
|
});
|
|
579
580
|
const routeParams = await ComponentMod.workAsyncStorage.run(store, generateRouteStaticParams, segments, store, ComponentMod.workUnitAsyncStorage, isRoutePPREnabled, rootParamKeys);
|
|
@@ -134,7 +134,7 @@ var HmrTarget = /*#__PURE__*/ function(HmrTarget) {
|
|
|
134
134
|
HmrTarget["Server"] = "server";
|
|
135
135
|
return HmrTarget;
|
|
136
136
|
}({});
|
|
137
|
-
const nextVersion = "16.2.
|
|
137
|
+
const nextVersion = "16.2.6";
|
|
138
138
|
const ArchName = (0, _os.arch)();
|
|
139
139
|
const PlatformName = (0, _os.platform)();
|
|
140
140
|
function infoLog(...args) {
|
|
@@ -565,7 +565,7 @@ function printCustomRoutes({ redirects, rewrites, headers, onMatchHeaders }) {
|
|
|
565
565
|
printRoutes(combinedRewrites, 'Rewrites');
|
|
566
566
|
}
|
|
567
567
|
}
|
|
568
|
-
async function isPageStatic({ dir, page, distDir, configFileName, httpAgentOptions, locales, defaultLocale, parentId, pageRuntime, edgeInfo, pageType, cacheComponents, authInterrupts, originalAppPath, isrFlushToDisk, cacheMaxMemorySize, nextConfigOutput, cacheHandler, cacheHandlers, cacheLifeProfiles, pprConfig, partialFallbacksEnabled, buildId, clientAssetToken, sriEnabled }) {
|
|
568
|
+
async function isPageStatic({ dir, page, distDir, configFileName, httpAgentOptions, locales, defaultLocale, parentId, pageRuntime, edgeInfo, pageType, cacheComponents, authInterrupts, originalAppPath, isrFlushToDisk, cacheMaxMemorySize, nextConfigOutput, cacheHandler, cacheHandlers, cacheLifeProfiles, pprConfig, partialFallbacksEnabled, buildId, deploymentId, clientAssetToken, sriEnabled }) {
|
|
569
569
|
// Skip page data collection for synthetic _global-error routes
|
|
570
570
|
if (page === _constants1.UNDERSCORE_GLOBAL_ERROR_ROUTE) {
|
|
571
571
|
return {
|
|
@@ -700,6 +700,7 @@ async function isPageStatic({ dir, page, distDir, configFileName, httpAgentOptio
|
|
|
700
700
|
isRoutePPREnabled,
|
|
701
701
|
partialFallbacksEnabled,
|
|
702
702
|
buildId,
|
|
703
|
+
deploymentId,
|
|
703
704
|
rootParamKeys
|
|
704
705
|
}));
|
|
705
706
|
}
|
|
@@ -1734,7 +1734,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
|
1734
1734
|
isClient && new _copyfileplugin.CopyFilePlugin({
|
|
1735
1735
|
// file path to build output of `@next/polyfill-nomodule`
|
|
1736
1736
|
filePath: require.resolve('./polyfills/polyfill-nomodule'),
|
|
1737
|
-
cacheKey: "16.2.
|
|
1737
|
+
cacheKey: "16.2.6",
|
|
1738
1738
|
name: `static/chunks/polyfills${dev ? '' : '-[hash]'}.js`,
|
|
1739
1739
|
minimize: false,
|
|
1740
1740
|
info: {
|
|
@@ -1928,7 +1928,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
|
1928
1928
|
// - Next.js location on disk (some loaders use absolute paths and some resolve options depend on absolute paths)
|
|
1929
1929
|
// - Next.js version
|
|
1930
1930
|
// - next.config.js keys that affect compilation
|
|
1931
|
-
version: `${__dirname}|${"16.2.
|
|
1931
|
+
version: `${__dirname}|${"16.2.6"}|${configVars}`,
|
|
1932
1932
|
cacheDirectory: _path.default.join(distDir, 'cache', 'webpack'),
|
|
1933
1933
|
// For production builds, it's more efficient to compress all cache files together instead of compression each one individually.
|
|
1934
1934
|
// So we disable compression here and allow the build runner to take care of compressing the cache as a whole.
|
|
@@ -1984,7 +1984,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
|
1984
1984
|
type: 'filesystem',
|
|
1985
1985
|
directory: cache.cacheDirectory
|
|
1986
1986
|
},
|
|
1987
|
-
version: `${__dirname}|${"16.2.
|
|
1987
|
+
version: `${__dirname}|${"16.2.6"}|${configVars}`
|
|
1988
1988
|
};
|
|
1989
1989
|
}
|
|
1990
1990
|
if (process.env.NEXT_WEBPACK_LOGGING) {
|
|
@@ -312,7 +312,7 @@ async function createFetch(url, headers, fetchPriority, shouldImmediatelyDecode,
|
|
|
312
312
|
// search param to it. This should not leak outside of this function, so we
|
|
313
313
|
// track them separately.
|
|
314
314
|
let fetchUrl = new URL(url);
|
|
315
|
-
(0, _setcachebustingsearchparam.setCacheBustingSearchParam)(fetchUrl, headers);
|
|
315
|
+
await (0, _setcachebustingsearchparam.setCacheBustingSearchParam)(fetchUrl, headers);
|
|
316
316
|
let processed = fetch(fetchUrl, fetchOptions).then(processFetch);
|
|
317
317
|
let fetchPromise = processed.then(({ response })=>response);
|
|
318
318
|
// Immediately pass the fetch promise to the Flight client so that the debug
|
|
@@ -367,7 +367,7 @@ async function createFetch(url, headers, fetchPriority, shouldImmediatelyDecode,
|
|
|
367
367
|
// fetch again.
|
|
368
368
|
// TODO: We should abort the previous request.
|
|
369
369
|
fetchUrl = new URL(responseUrl);
|
|
370
|
-
(0, _setcachebustingsearchparam.setCacheBustingSearchParam)(fetchUrl, headers);
|
|
370
|
+
await (0, _setcachebustingsearchparam.setCacheBustingSearchParam)(fetchUrl, headers);
|
|
371
371
|
processed = fetch(fetchUrl, fetchOptions).then(processFetch);
|
|
372
372
|
fetchPromise = processed.then(({ response })=>response);
|
|
373
373
|
flightResponsePromise = shouldImmediatelyDecode ? createFromNextFetch(fetchPromise, headers) : null;
|
|
@@ -23,8 +23,14 @@ _export(exports, {
|
|
|
23
23
|
});
|
|
24
24
|
const _cachebustingsearchparam = require("../../../shared/lib/router/utils/cache-busting-search-param");
|
|
25
25
|
const _approuterheaders = require("../app-router-headers");
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
async function computeClientCacheBustingSearchParam(headers) {
|
|
27
|
+
if (typeof globalThis.crypto?.subtle?.digest === 'function') {
|
|
28
|
+
return (0, _cachebustingsearchparam.computeCacheBustingSearchParam)(headers[_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER], headers[_approuterheaders.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER], headers[_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER], headers[_approuterheaders.NEXT_URL]);
|
|
29
|
+
}
|
|
30
|
+
return (0, _cachebustingsearchparam.computeLegacyCacheBustingSearchParam)(headers[_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER], headers[_approuterheaders.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER], headers[_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER], headers[_approuterheaders.NEXT_URL]);
|
|
31
|
+
}
|
|
32
|
+
const setCacheBustingSearchParam = async (url, headers)=>{
|
|
33
|
+
const uniqueCacheKey = await computeClientCacheBustingSearchParam(headers);
|
|
28
34
|
setCacheBustingSearchParamWithHash(url, uniqueCacheKey);
|
|
29
35
|
};
|
|
30
36
|
const setCacheBustingSearchParamWithHash = (url, hash)=>{
|
|
@@ -66,6 +66,23 @@ function getRenderedPathname(response) {
|
|
|
66
66
|
const rewrittenPath = response.headers.get(_approuterheaders.NEXT_REWRITTEN_PATH_HEADER);
|
|
67
67
|
return rewrittenPath ?? urlToUrlWithoutFlightMarker(new URL(response.url)).pathname;
|
|
68
68
|
}
|
|
69
|
+
// Pathname parts come from `URL.pathname.split('/')`, so they are already
|
|
70
|
+
// in the encoded form the URL parser produces. The server-side equivalent
|
|
71
|
+
// (`get-dynamic-param.ts`) starts from a decoded param value and applies
|
|
72
|
+
// `encodeURIComponent` once. The two encodings are not the same — for
|
|
73
|
+
// example, the URL parser leaves `,` and `:` untouched while
|
|
74
|
+
// `encodeURIComponent` percent-encodes them. To produce the same canonical
|
|
75
|
+
// form on the client (and avoid double-encoding `%xx` sequences such as
|
|
76
|
+
// `%2F` → `%252F`), we decode the URL part first and re-encode it.
|
|
77
|
+
function canonicalizeURLPart(part) {
|
|
78
|
+
try {
|
|
79
|
+
return encodeURIComponent(decodeURIComponent(part));
|
|
80
|
+
} catch {
|
|
81
|
+
// `decodeURIComponent` throws on malformed sequences. Fall back to the
|
|
82
|
+
// already-encoded form rather than failing the navigation.
|
|
83
|
+
return part;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
69
86
|
function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) {
|
|
70
87
|
// This needs to match the behavior in get-dynamic-param.ts.
|
|
71
88
|
switch(paramType){
|
|
@@ -74,7 +91,7 @@ function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) {
|
|
|
74
91
|
{
|
|
75
92
|
// Catchalls receive all the remaining URL parts. If there are no
|
|
76
93
|
// remaining pathname parts, return an empty array.
|
|
77
|
-
return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>
|
|
94
|
+
return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>canonicalizeURLPart(s)) : [];
|
|
78
95
|
}
|
|
79
96
|
// Catchall intercepted
|
|
80
97
|
case 'ci(..)(..)':
|
|
@@ -85,9 +102,9 @@ function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) {
|
|
|
85
102
|
const prefix = paramType.length - 2;
|
|
86
103
|
return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s, i)=>{
|
|
87
104
|
if (i === 0) {
|
|
88
|
-
return
|
|
105
|
+
return canonicalizeURLPart(s.slice(prefix));
|
|
89
106
|
}
|
|
90
|
-
return
|
|
107
|
+
return canonicalizeURLPart(s);
|
|
91
108
|
}) : [];
|
|
92
109
|
}
|
|
93
110
|
// Optional catchalls
|
|
@@ -95,7 +112,7 @@ function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) {
|
|
|
95
112
|
{
|
|
96
113
|
// Optional catchalls receive all the remaining URL parts, unless this is
|
|
97
114
|
// the end of the pathname, in which case they return null.
|
|
98
|
-
return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>
|
|
115
|
+
return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>canonicalizeURLPart(s)) : null;
|
|
99
116
|
}
|
|
100
117
|
// Dynamic
|
|
101
118
|
case 'd':
|
|
@@ -110,7 +127,7 @@ function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) {
|
|
|
110
127
|
// recovery options.
|
|
111
128
|
return '';
|
|
112
129
|
}
|
|
113
|
-
return
|
|
130
|
+
return canonicalizeURLPart(pathnameParts[partIndex]);
|
|
114
131
|
}
|
|
115
132
|
// Dynamic intercepted
|
|
116
133
|
case 'di(..)(..)':
|
|
@@ -129,7 +146,7 @@ function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) {
|
|
|
129
146
|
// recovery options.
|
|
130
147
|
return '';
|
|
131
148
|
}
|
|
132
|
-
return
|
|
149
|
+
return canonicalizeURLPart(pathnameParts[partIndex].slice(prefix));
|
|
133
150
|
}
|
|
134
151
|
default:
|
|
135
152
|
paramType;
|
|
@@ -33,6 +33,7 @@ const _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
|
|
|
33
33
|
const _headmanagercontextsharedruntime = require("../shared/lib/head-manager-context.shared-runtime");
|
|
34
34
|
const _setattributesfromprops = require("./set-attributes-from-props");
|
|
35
35
|
const _requestidlecallback = require("./request-idle-callback");
|
|
36
|
+
const _htmlescape = require("../shared/lib/htmlescape");
|
|
36
37
|
const ScriptCache = new Map();
|
|
37
38
|
const LoadCache = new Set();
|
|
38
39
|
const insertStylesheets = (stylesheets)=>{
|
|
@@ -281,13 +282,13 @@ function initScriptLoader(scriptLoaderItems) {
|
|
|
281
282
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)("script", {
|
|
282
283
|
nonce: nonce,
|
|
283
284
|
dangerouslySetInnerHTML: {
|
|
284
|
-
__html: `(self.__next_s=self.__next_s||[]).push(${JSON.stringify([
|
|
285
|
+
__html: `(self.__next_s=self.__next_s||[]).push(${(0, _htmlescape.htmlEscapeJsonString)(JSON.stringify([
|
|
285
286
|
0,
|
|
286
287
|
{
|
|
287
288
|
...restProps,
|
|
288
289
|
id
|
|
289
290
|
}
|
|
290
|
-
])})`
|
|
291
|
+
]))})`
|
|
291
292
|
}
|
|
292
293
|
});
|
|
293
294
|
} else {
|
|
@@ -305,13 +306,13 @@ function initScriptLoader(scriptLoaderItems) {
|
|
|
305
306
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)("script", {
|
|
306
307
|
nonce: nonce,
|
|
307
308
|
dangerouslySetInnerHTML: {
|
|
308
|
-
__html: `(self.__next_s=self.__next_s||[]).push(${JSON.stringify([
|
|
309
|
+
__html: `(self.__next_s=self.__next_s||[]).push(${(0, _htmlescape.htmlEscapeJsonString)(JSON.stringify([
|
|
309
310
|
src,
|
|
310
311
|
{
|
|
311
312
|
...restProps,
|
|
312
313
|
id
|
|
313
314
|
}
|
|
314
|
-
])})`
|
|
315
|
+
]))})`
|
|
315
316
|
}
|
|
316
317
|
});
|
|
317
318
|
}
|