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
|
@@ -28,9 +28,9 @@ exports.Address4 = void 0;
|
|
|
28
28
|
const common = __importStar(require("./common"));
|
|
29
29
|
const constants = __importStar(require("./v4/constants"));
|
|
30
30
|
const address_error_1 = require("./address-error");
|
|
31
|
+
const isCorrect4 = common.isCorrect(constants.BITS);
|
|
31
32
|
/**
|
|
32
33
|
* Represents an IPv4 address
|
|
33
|
-
* @class Address4
|
|
34
34
|
* @param {string} address - An IPv4 address string
|
|
35
35
|
*/
|
|
36
36
|
class Address4 {
|
|
@@ -43,15 +43,11 @@ class Address4 {
|
|
|
43
43
|
this.v4 = true;
|
|
44
44
|
/**
|
|
45
45
|
* Returns true if the address is correct, false otherwise
|
|
46
|
-
* @memberof Address4
|
|
47
|
-
* @instance
|
|
48
46
|
* @returns {Boolean}
|
|
49
47
|
*/
|
|
50
|
-
this.isCorrect =
|
|
48
|
+
this.isCorrect = isCorrect4;
|
|
51
49
|
/**
|
|
52
50
|
* Returns true if the given address is in the subnet of the current address
|
|
53
|
-
* @memberof Address4
|
|
54
|
-
* @instance
|
|
55
51
|
* @returns {boolean}
|
|
56
52
|
*/
|
|
57
53
|
this.isInSubnet = common.isInSubnet;
|
|
@@ -69,6 +65,13 @@ class Address4 {
|
|
|
69
65
|
this.addressMinusSuffix = address;
|
|
70
66
|
this.parsedAddress = this.parse(address);
|
|
71
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* Returns true if the given string is a valid IPv4 address (with optional
|
|
70
|
+
* CIDR subnet), false otherwise. Host bits in the subnet portion are
|
|
71
|
+
* allowed (e.g. `192.168.1.5/24` is valid); for strict network-address
|
|
72
|
+
* validation compare `correctForm()` to `startAddress().correctForm()`,
|
|
73
|
+
* or use `networkForm()`.
|
|
74
|
+
*/
|
|
72
75
|
static isValid(address) {
|
|
73
76
|
try {
|
|
74
77
|
// eslint-disable-next-line no-new
|
|
@@ -79,8 +82,11 @@ class Address4 {
|
|
|
79
82
|
return false;
|
|
80
83
|
}
|
|
81
84
|
}
|
|
82
|
-
|
|
83
|
-
* Parses
|
|
85
|
+
/**
|
|
86
|
+
* Parses an IPv4 address string into its four octet groups and stores the
|
|
87
|
+
* result on `this.parsedAddress`. Called automatically by the constructor;
|
|
88
|
+
* you typically don't need to call it directly. Throws `AddressError` if
|
|
89
|
+
* the input is not a valid IPv4 address.
|
|
84
90
|
*/
|
|
85
91
|
parse(address) {
|
|
86
92
|
const groups = address.split('.');
|
|
@@ -90,45 +96,110 @@ class Address4 {
|
|
|
90
96
|
return groups;
|
|
91
97
|
}
|
|
92
98
|
/**
|
|
93
|
-
* Returns the correct form
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
* @returns {String}
|
|
99
|
+
* Returns the address in correct form: octets joined with `.` and any
|
|
100
|
+
* leading zeros stripped (e.g. `192.168.1.1`). For IPv4 this matches the
|
|
101
|
+
* canonical dotted-decimal representation.
|
|
97
102
|
*/
|
|
98
103
|
correctForm() {
|
|
99
104
|
return this.parsedAddress.map((part) => parseInt(part, 10)).join('.');
|
|
100
105
|
}
|
|
101
106
|
/**
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
107
|
+
* Construct an `Address4` from an address and a dotted-decimal subnet
|
|
108
|
+
* mask given as separate strings (e.g. as returned by Node's
|
|
109
|
+
* `os.networkInterfaces()`). Throws `AddressError` if the mask is
|
|
110
|
+
* non-contiguous (e.g. `255.0.255.0`).
|
|
111
|
+
* @example
|
|
112
|
+
* var address = Address4.fromAddressAndMask('192.168.1.1', '255.255.255.0');
|
|
113
|
+
* address.subnetMask; // 24
|
|
114
|
+
*/
|
|
115
|
+
static fromAddressAndMask(address, mask) {
|
|
116
|
+
const bits = common.prefixLengthFromMask(new Address4(mask).bigInt(), constants.BITS);
|
|
117
|
+
return new Address4(`${address}/${bits}`);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Construct an `Address4` from an address and a Cisco-style wildcard mask
|
|
121
|
+
* given as separate strings (e.g. `0.0.0.255` for a `/24`). The wildcard
|
|
122
|
+
* mask is the bitwise inverse of the subnet mask. Throws `AddressError`
|
|
123
|
+
* if the mask is non-contiguous (e.g. `0.255.0.255`).
|
|
124
|
+
* @example
|
|
125
|
+
* var address = Address4.fromAddressAndWildcardMask('10.0.0.1', '0.0.0.255');
|
|
126
|
+
* address.subnetMask; // 24
|
|
127
|
+
*/
|
|
128
|
+
static fromAddressAndWildcardMask(address, wildcardMask) {
|
|
129
|
+
const wildcard = new Address4(wildcardMask).bigInt();
|
|
130
|
+
const allOnes = (BigInt(1) << BigInt(constants.BITS)) - BigInt(1);
|
|
131
|
+
// eslint-disable-next-line no-bitwise
|
|
132
|
+
const mask = wildcard ^ allOnes;
|
|
133
|
+
const bits = common.prefixLengthFromMask(mask, constants.BITS);
|
|
134
|
+
return new Address4(`${address}/${bits}`);
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Construct an `Address4` from a wildcard pattern with trailing `*`
|
|
138
|
+
* octets. The number of trailing wildcards determines the prefix
|
|
139
|
+
* length: each `*` represents 8 bits.
|
|
140
|
+
*
|
|
141
|
+
* Only trailing whole-octet wildcards are supported. Partial-octet
|
|
142
|
+
* wildcards (e.g. `192.168.0.1*`) and interior wildcards (e.g.
|
|
143
|
+
* `192.*.0.1`) throw `AddressError`.
|
|
144
|
+
* @example
|
|
145
|
+
* Address4.fromWildcard('192.168.0.*').subnet; // '/24'
|
|
146
|
+
* Address4.fromWildcard('192.168.*.*').subnet; // '/16'
|
|
147
|
+
* Address4.fromWildcard('*.*.*.*').subnet; // '/0'
|
|
148
|
+
*/
|
|
149
|
+
static fromWildcard(input) {
|
|
150
|
+
const groups = input.split('.');
|
|
151
|
+
if (groups.length !== constants.GROUPS) {
|
|
152
|
+
throw new address_error_1.AddressError('Wildcard pattern must have 4 octets');
|
|
153
|
+
}
|
|
154
|
+
let firstWildcard = -1;
|
|
155
|
+
for (let i = 0; i < groups.length; i++) {
|
|
156
|
+
if (groups[i] === '*') {
|
|
157
|
+
if (firstWildcard === -1) {
|
|
158
|
+
firstWildcard = i;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
else if (firstWildcard !== -1) {
|
|
162
|
+
throw new address_error_1.AddressError('Wildcard `*` must only appear in trailing octets (e.g. `192.168.0.*`)');
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
const trailing = firstWildcard === -1 ? 0 : groups.length - firstWildcard;
|
|
166
|
+
const replaced = groups.map((g) => (g === '*' ? '0' : g));
|
|
167
|
+
const subnetBits = constants.BITS - trailing * 8;
|
|
168
|
+
return new Address4(`${replaced.join('.')}/${subnetBits}`);
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* Converts a hex string to an IPv4 address object. Accepts 8 hex digits
|
|
172
|
+
* with optional `:` separators (e.g. `'7f000001'` or `'7f:00:00:01'`).
|
|
173
|
+
* Throws `AddressError` for any other length or for non-hex characters.
|
|
105
174
|
* @param {string} hex - a hex string to convert
|
|
106
175
|
* @returns {Address4}
|
|
107
176
|
*/
|
|
108
177
|
static fromHex(hex) {
|
|
109
|
-
const
|
|
178
|
+
const stripped = hex.replace(/:/g, '');
|
|
179
|
+
if (!/^[0-9a-fA-F]{8}$/.test(stripped)) {
|
|
180
|
+
throw new address_error_1.AddressError('IPv4 hex must be exactly 8 hex digits');
|
|
181
|
+
}
|
|
110
182
|
const groups = [];
|
|
111
|
-
let i;
|
|
112
|
-
|
|
113
|
-
const h = padded.slice(i, i + 2);
|
|
114
|
-
groups.push(parseInt(h, 16));
|
|
183
|
+
for (let i = 0; i < 8; i += 2) {
|
|
184
|
+
groups.push(parseInt(stripped.slice(i, i + 2), 16));
|
|
115
185
|
}
|
|
116
186
|
return new Address4(groups.join('.'));
|
|
117
187
|
}
|
|
118
188
|
/**
|
|
119
|
-
* Converts an integer into a IPv4 address object
|
|
120
|
-
*
|
|
121
|
-
*
|
|
189
|
+
* Converts an integer into a IPv4 address object. The integer must be a
|
|
190
|
+
* non-negative safe integer in the range `[0, 2**32 - 1]`; otherwise
|
|
191
|
+
* `AddressError` is thrown.
|
|
122
192
|
* @param {integer} integer - a number to convert
|
|
123
193
|
* @returns {Address4}
|
|
124
194
|
*/
|
|
125
195
|
static fromInteger(integer) {
|
|
126
|
-
|
|
196
|
+
if (!Number.isInteger(integer) || integer < 0 || integer > 0xffffffff) {
|
|
197
|
+
throw new address_error_1.AddressError('IPv4 integer must be in the range 0 to 2**32 - 1');
|
|
198
|
+
}
|
|
199
|
+
return Address4.fromHex(integer.toString(16).padStart(8, '0'));
|
|
127
200
|
}
|
|
128
201
|
/**
|
|
129
202
|
* Return an address from in-addr.arpa form
|
|
130
|
-
* @memberof Address4
|
|
131
|
-
* @static
|
|
132
203
|
* @param {string} arpaFormAddress - an 'in-addr.arpa' form ipv4 address
|
|
133
204
|
* @returns {Adress4}
|
|
134
205
|
* @example
|
|
@@ -143,17 +214,15 @@ class Address4 {
|
|
|
143
214
|
}
|
|
144
215
|
/**
|
|
145
216
|
* Converts an IPv4 address object to a hex string
|
|
146
|
-
* @memberof Address4
|
|
147
|
-
* @instance
|
|
148
217
|
* @returns {String}
|
|
149
218
|
*/
|
|
150
219
|
toHex() {
|
|
151
220
|
return this.parsedAddress.map((part) => common.stringToPaddedHex(part)).join(':');
|
|
152
221
|
}
|
|
153
222
|
/**
|
|
154
|
-
* Converts an IPv4 address object to an array of bytes
|
|
155
|
-
*
|
|
156
|
-
*
|
|
223
|
+
* Converts an IPv4 address object to an array of bytes.
|
|
224
|
+
*
|
|
225
|
+
* To get a Node.js `Buffer`, wrap the result: `Buffer.from(address.toArray())`.
|
|
157
226
|
* @returns {Array}
|
|
158
227
|
*/
|
|
159
228
|
toArray() {
|
|
@@ -161,8 +230,6 @@ class Address4 {
|
|
|
161
230
|
}
|
|
162
231
|
/**
|
|
163
232
|
* Converts an IPv4 address object to an IPv6 address group
|
|
164
|
-
* @memberof Address4
|
|
165
|
-
* @instance
|
|
166
233
|
* @returns {String}
|
|
167
234
|
*/
|
|
168
235
|
toGroup6() {
|
|
@@ -175,8 +242,6 @@ class Address4 {
|
|
|
175
242
|
}
|
|
176
243
|
/**
|
|
177
244
|
* Returns the address as a `bigint`
|
|
178
|
-
* @memberof Address4
|
|
179
|
-
* @instance
|
|
180
245
|
* @returns {bigint}
|
|
181
246
|
*/
|
|
182
247
|
bigInt() {
|
|
@@ -184,8 +249,6 @@ class Address4 {
|
|
|
184
249
|
}
|
|
185
250
|
/**
|
|
186
251
|
* Helper function getting start address.
|
|
187
|
-
* @memberof Address4
|
|
188
|
-
* @instance
|
|
189
252
|
* @returns {bigint}
|
|
190
253
|
*/
|
|
191
254
|
_startAddress() {
|
|
@@ -194,8 +257,6 @@ class Address4 {
|
|
|
194
257
|
/**
|
|
195
258
|
* The first address in the range given by this address' subnet.
|
|
196
259
|
* Often referred to as the Network Address.
|
|
197
|
-
* @memberof Address4
|
|
198
|
-
* @instance
|
|
199
260
|
* @returns {Address4}
|
|
200
261
|
*/
|
|
201
262
|
startAddress() {
|
|
@@ -204,8 +265,6 @@ class Address4 {
|
|
|
204
265
|
/**
|
|
205
266
|
* The first host address in the range given by this address's subnet ie
|
|
206
267
|
* the first address after the Network Address
|
|
207
|
-
* @memberof Address4
|
|
208
|
-
* @instance
|
|
209
268
|
* @returns {Address4}
|
|
210
269
|
*/
|
|
211
270
|
startAddressExclusive() {
|
|
@@ -214,8 +273,6 @@ class Address4 {
|
|
|
214
273
|
}
|
|
215
274
|
/**
|
|
216
275
|
* Helper function getting end address.
|
|
217
|
-
* @memberof Address4
|
|
218
|
-
* @instance
|
|
219
276
|
* @returns {bigint}
|
|
220
277
|
*/
|
|
221
278
|
_endAddress() {
|
|
@@ -224,8 +281,6 @@ class Address4 {
|
|
|
224
281
|
/**
|
|
225
282
|
* The last address in the range given by this address' subnet
|
|
226
283
|
* Often referred to as the Broadcast
|
|
227
|
-
* @memberof Address4
|
|
228
|
-
* @instance
|
|
229
284
|
* @returns {Address4}
|
|
230
285
|
*/
|
|
231
286
|
endAddress() {
|
|
@@ -234,8 +289,6 @@ class Address4 {
|
|
|
234
289
|
/**
|
|
235
290
|
* The last host address in the range given by this address's subnet ie
|
|
236
291
|
* the last address prior to the Broadcast Address
|
|
237
|
-
* @memberof Address4
|
|
238
|
-
* @instance
|
|
239
292
|
* @returns {Address4}
|
|
240
293
|
*/
|
|
241
294
|
endAddressExclusive() {
|
|
@@ -243,19 +296,47 @@ class Address4 {
|
|
|
243
296
|
return Address4.fromBigInt(this._endAddress() - adjust);
|
|
244
297
|
}
|
|
245
298
|
/**
|
|
246
|
-
*
|
|
247
|
-
*
|
|
248
|
-
* @
|
|
299
|
+
* The dotted-decimal form of the subnet mask, e.g. `255.255.240.0` for
|
|
300
|
+
* a `/20`. Returns an `Address4`; call `.correctForm()` for the string.
|
|
301
|
+
* @returns {Address4}
|
|
302
|
+
*/
|
|
303
|
+
subnetMaskAddress() {
|
|
304
|
+
return Address4.fromBigInt(BigInt(`0b${'1'.repeat(this.subnetMask)}${'0'.repeat(constants.BITS - this.subnetMask)}`));
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* The Cisco-style wildcard mask, e.g. `0.0.0.255` for a `/24`. This is
|
|
308
|
+
* the bitwise inverse of `subnetMaskAddress()`. Returns an `Address4`;
|
|
309
|
+
* call `.correctForm()` for the string.
|
|
310
|
+
* @returns {Address4}
|
|
311
|
+
*/
|
|
312
|
+
wildcardMask() {
|
|
313
|
+
return Address4.fromBigInt(BigInt(`0b${'0'.repeat(this.subnetMask)}${'1'.repeat(constants.BITS - this.subnetMask)}`));
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* The network address in CIDR string form, e.g. `192.168.1.0/24` for
|
|
317
|
+
* `192.168.1.5/24`. For an address with no explicit subnet the prefix is
|
|
318
|
+
* `/32`, e.g. `networkForm()` on `192.168.1.5` returns `192.168.1.5/32`.
|
|
319
|
+
* @returns {string}
|
|
320
|
+
*/
|
|
321
|
+
networkForm() {
|
|
322
|
+
return `${this.startAddress().correctForm()}/${this.subnetMask}`;
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* Converts a BigInt to a v4 address object. The value must be in the
|
|
326
|
+
* range `[0, 2**32 - 1]`; otherwise `AddressError` is thrown.
|
|
249
327
|
* @param {bigint} bigInt - a BigInt to convert
|
|
250
328
|
* @returns {Address4}
|
|
251
329
|
*/
|
|
252
330
|
static fromBigInt(bigInt) {
|
|
253
|
-
|
|
331
|
+
if (bigInt < 0n || bigInt > 0xffffffffn) {
|
|
332
|
+
throw new address_error_1.AddressError('IPv4 BigInt must be in the range 0 to 2**32 - 1');
|
|
333
|
+
}
|
|
334
|
+
return Address4.fromHex(bigInt.toString(16).padStart(8, '0'));
|
|
254
335
|
}
|
|
255
336
|
/**
|
|
256
|
-
* Convert a byte array to an Address4 object
|
|
257
|
-
*
|
|
258
|
-
*
|
|
337
|
+
* Convert a byte array to an Address4 object.
|
|
338
|
+
*
|
|
339
|
+
* To convert from a Node.js `Buffer`, spread it: `Address4.fromByteArray([...buf])`.
|
|
259
340
|
* @param {Array<number>} bytes - an array of 4 bytes (0-255)
|
|
260
341
|
* @returns {Address4}
|
|
261
342
|
*/
|
|
@@ -273,8 +354,6 @@ class Address4 {
|
|
|
273
354
|
}
|
|
274
355
|
/**
|
|
275
356
|
* Convert an unsigned byte array to an Address4 object
|
|
276
|
-
* @memberof Address4
|
|
277
|
-
* @static
|
|
278
357
|
* @param {Array<number>} bytes - an array of 4 unsigned bytes (0-255)
|
|
279
358
|
* @returns {Address4}
|
|
280
359
|
*/
|
|
@@ -288,8 +367,6 @@ class Address4 {
|
|
|
288
367
|
/**
|
|
289
368
|
* Returns the first n bits of the address, defaulting to the
|
|
290
369
|
* subnet mask
|
|
291
|
-
* @memberof Address4
|
|
292
|
-
* @instance
|
|
293
370
|
* @returns {String}
|
|
294
371
|
*/
|
|
295
372
|
mask(mask) {
|
|
@@ -300,8 +377,6 @@ class Address4 {
|
|
|
300
377
|
}
|
|
301
378
|
/**
|
|
302
379
|
* Returns the bits in the given range as a base-2 string
|
|
303
|
-
* @memberof Address4
|
|
304
|
-
* @instance
|
|
305
380
|
* @returns {string}
|
|
306
381
|
*/
|
|
307
382
|
getBitsBase2(start, end) {
|
|
@@ -309,10 +384,8 @@ class Address4 {
|
|
|
309
384
|
}
|
|
310
385
|
/**
|
|
311
386
|
* Return the reversed ip6.arpa form of the address
|
|
312
|
-
* @memberof Address4
|
|
313
387
|
* @param {Object} options
|
|
314
388
|
* @param {boolean} options.omitSuffix - omit the "in-addr.arpa" suffix
|
|
315
|
-
* @instance
|
|
316
389
|
* @returns {String}
|
|
317
390
|
*/
|
|
318
391
|
reverseForm(options) {
|
|
@@ -327,21 +400,62 @@ class Address4 {
|
|
|
327
400
|
}
|
|
328
401
|
/**
|
|
329
402
|
* Returns true if the given address is a multicast address
|
|
330
|
-
* @memberof Address4
|
|
331
|
-
* @instance
|
|
332
403
|
* @returns {boolean}
|
|
333
404
|
*/
|
|
334
405
|
isMulticast() {
|
|
335
|
-
return this.isInSubnet(
|
|
406
|
+
return this.isInSubnet(MULTICAST_V4);
|
|
407
|
+
}
|
|
408
|
+
/**
|
|
409
|
+
* Returns true if the address is in one of the [RFC 1918](https://datatracker.ietf.org/doc/html/rfc1918) private address ranges (`10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`).
|
|
410
|
+
* @returns {boolean}
|
|
411
|
+
*/
|
|
412
|
+
isPrivate() {
|
|
413
|
+
return PRIVATE_V4.some((subnet) => this.isInSubnet(subnet));
|
|
414
|
+
}
|
|
415
|
+
/**
|
|
416
|
+
* Returns true if the address is in the loopback range `127.0.0.0/8` ([RFC 1122](https://datatracker.ietf.org/doc/html/rfc1122)).
|
|
417
|
+
* @returns {boolean}
|
|
418
|
+
*/
|
|
419
|
+
isLoopback() {
|
|
420
|
+
return this.isInSubnet(LOOPBACK_V4);
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* Returns true if the address is in the link-local range `169.254.0.0/16` ([RFC 3927](https://datatracker.ietf.org/doc/html/rfc3927)).
|
|
424
|
+
* @returns {boolean}
|
|
425
|
+
*/
|
|
426
|
+
isLinkLocal() {
|
|
427
|
+
return this.isInSubnet(LINK_LOCAL_V4);
|
|
428
|
+
}
|
|
429
|
+
/**
|
|
430
|
+
* Returns true if the address is the unspecified address `0.0.0.0`.
|
|
431
|
+
* @returns {boolean}
|
|
432
|
+
*/
|
|
433
|
+
isUnspecified() {
|
|
434
|
+
return this.isInSubnet(UNSPECIFIED_V4);
|
|
435
|
+
}
|
|
436
|
+
/**
|
|
437
|
+
* Returns true if the address is the limited broadcast address `255.255.255.255` ([RFC 919](https://datatracker.ietf.org/doc/html/rfc919)).
|
|
438
|
+
* @returns {boolean}
|
|
439
|
+
*/
|
|
440
|
+
isBroadcast() {
|
|
441
|
+
return this.isInSubnet(BROADCAST_V4);
|
|
442
|
+
}
|
|
443
|
+
/**
|
|
444
|
+
* Returns true if the address is in the carrier-grade NAT range `100.64.0.0/10` ([RFC 6598](https://datatracker.ietf.org/doc/html/rfc6598)).
|
|
445
|
+
* @returns {boolean}
|
|
446
|
+
*/
|
|
447
|
+
isCGNAT() {
|
|
448
|
+
return this.isInSubnet(CGNAT_V4);
|
|
336
449
|
}
|
|
337
450
|
/**
|
|
338
451
|
* Returns a zero-padded base-2 string representation of the address
|
|
339
|
-
* @memberof Address4
|
|
340
|
-
* @instance
|
|
341
452
|
* @returns {string}
|
|
342
453
|
*/
|
|
343
454
|
binaryZeroPad() {
|
|
344
|
-
|
|
455
|
+
if (this._binaryZeroPad === undefined) {
|
|
456
|
+
this._binaryZeroPad = this.bigInt().toString(2).padStart(constants.BITS, '0');
|
|
457
|
+
}
|
|
458
|
+
return this._binaryZeroPad;
|
|
345
459
|
}
|
|
346
460
|
/**
|
|
347
461
|
* Groups an IPv4 address for inclusion at the end of an IPv6 address
|
|
@@ -357,4 +471,15 @@ class Address4 {
|
|
|
357
471
|
}
|
|
358
472
|
}
|
|
359
473
|
exports.Address4 = Address4;
|
|
474
|
+
const MULTICAST_V4 = new Address4('224.0.0.0/4');
|
|
475
|
+
const PRIVATE_V4 = [
|
|
476
|
+
new Address4('10.0.0.0/8'),
|
|
477
|
+
new Address4('172.16.0.0/12'),
|
|
478
|
+
new Address4('192.168.0.0/16'),
|
|
479
|
+
];
|
|
480
|
+
const LOOPBACK_V4 = new Address4('127.0.0.0/8');
|
|
481
|
+
const LINK_LOCAL_V4 = new Address4('169.254.0.0/16');
|
|
482
|
+
const UNSPECIFIED_V4 = new Address4('0.0.0.0/32');
|
|
483
|
+
const BROADCAST_V4 = new Address4('255.255.255.255/32');
|
|
484
|
+
const CGNAT_V4 = new Address4('100.64.0.0/10');
|
|
360
485
|
//# sourceMappingURL=ipv4.js.map
|